| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.25.0
- // protoc v3.14.0
- // source: base.proto
- package base
- import (
- proto "github.com/golang/protobuf/proto"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- // This is a compile-time assertion that a sufficiently up-to-date version
- // of the legacy proto package is being used.
- const _ = proto.ProtoPackageIsVersion4
- type ErrorCode int32
- const (
- ErrorCode_OK ErrorCode = 0
- ErrorCode_PGErr ErrorCode = 100
- ErrorCode_PmsnError ErrorCode = 110
- ErrorCode_J2MError ErrorCode = 120
- ErrorCode_WebStatusError ErrorCode = 121
- ErrorCode_WebToImStatusError ErrorCode = 122
- ErrorCode_ImToWebtatusError ErrorCode = 123
- )
- // Enum value maps for ErrorCode.
- var (
- ErrorCode_name = map[int32]string{
- 0: "OK",
- 100: "PGErr",
- 110: "PmsnError",
- 120: "J2MError",
- 121: "WebStatusError",
- 122: "WebToImStatusError",
- 123: "ImToWebtatusError",
- }
- ErrorCode_value = map[string]int32{
- "OK": 0,
- "PGErr": 100,
- "PmsnError": 110,
- "J2MError": 120,
- "WebStatusError": 121,
- "WebToImStatusError": 122,
- "ImToWebtatusError": 123,
- }
- )
- func (x ErrorCode) Enum() *ErrorCode {
- p := new(ErrorCode)
- *p = x
- return p
- }
- func (x ErrorCode) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (ErrorCode) Descriptor() protoreflect.EnumDescriptor {
- return file_base_proto_enumTypes[0].Descriptor()
- }
- func (ErrorCode) Type() protoreflect.EnumType {
- return &file_base_proto_enumTypes[0]
- }
- func (x ErrorCode) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Use ErrorCode.Descriptor instead.
- func (ErrorCode) EnumDescriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{0}
- }
- type WebStatus int32
- const (
- WebStatus_Ban WebStatus = 0
- WebStatus_On WebStatus = 1
- WebStatus_Delete WebStatus = 9
- WebStatus_All WebStatus = 99
- )
- // Enum value maps for WebStatus.
- var (
- WebStatus_name = map[int32]string{
- 0: "Ban",
- 1: "On",
- 9: "Delete",
- 99: "All",
- }
- WebStatus_value = map[string]int32{
- "Ban": 0,
- "On": 1,
- "Delete": 9,
- "All": 99,
- }
- )
- func (x WebStatus) Enum() *WebStatus {
- p := new(WebStatus)
- *p = x
- return p
- }
- func (x WebStatus) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (WebStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_base_proto_enumTypes[1].Descriptor()
- }
- func (WebStatus) Type() protoreflect.EnumType {
- return &file_base_proto_enumTypes[1]
- }
- func (x WebStatus) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Use WebStatus.Descriptor instead.
- func (WebStatus) EnumDescriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{1}
- }
- type DefaultRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- }
- func (x *DefaultRequest) Reset() {
- *x = DefaultRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *DefaultRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DefaultRequest) ProtoMessage() {}
- func (x *DefaultRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DefaultRequest.ProtoReflect.Descriptor instead.
- func (*DefaultRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{0}
- }
- type DefaultReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- }
- func (x *DefaultReply) Reset() {
- *x = DefaultReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *DefaultReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DefaultReply) ProtoMessage() {}
- func (x *DefaultReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DefaultReply.ProtoReflect.Descriptor instead.
- func (*DefaultReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{1}
- }
- type StandardRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ShopID int64 `protobuf:"varint,1,opt,name=shopID,proto3" json:"shopID,omitempty"`
- JsonStr string `protobuf:"bytes,2,opt,name=jsonStr,proto3" json:"jsonStr,omitempty"`
- Sign string `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign,omitempty"`
- }
- func (x *StandardRequest) Reset() {
- *x = StandardRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *StandardRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StandardRequest) ProtoMessage() {}
- func (x *StandardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StandardRequest.ProtoReflect.Descriptor instead.
- func (*StandardRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{2}
- }
- func (x *StandardRequest) GetShopID() int64 {
- if x != nil {
- return x.ShopID
- }
- return 0
- }
- func (x *StandardRequest) GetJsonStr() string {
- if x != nil {
- return x.JsonStr
- }
- return ""
- }
- func (x *StandardRequest) GetSign() string {
- if x != nil {
- return x.Sign
- }
- return ""
- }
- type StandardReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- JsonRst string `protobuf:"bytes,1,opt,name=jsonRst,proto3" json:"jsonRst,omitempty"`
- Sign string `protobuf:"bytes,2,opt,name=sign,proto3" json:"sign,omitempty"`
- }
- func (x *StandardReply) Reset() {
- *x = StandardReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *StandardReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StandardReply) ProtoMessage() {}
- func (x *StandardReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StandardReply.ProtoReflect.Descriptor instead.
- func (*StandardReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{3}
- }
- func (x *StandardReply) GetJsonRst() string {
- if x != nil {
- return x.JsonRst
- }
- return ""
- }
- func (x *StandardReply) GetSign() string {
- if x != nil {
- return x.Sign
- }
- return ""
- }
- type SignUpRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
- }
- func (x *SignUpRequest) Reset() {
- *x = SignUpRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SignUpRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SignUpRequest) ProtoMessage() {}
- func (x *SignUpRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SignUpRequest.ProtoReflect.Descriptor instead.
- func (*SignUpRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{4}
- }
- func (x *SignUpRequest) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *SignUpRequest) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
- }
- type SignInReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
- }
- func (x *SignInReply) Reset() {
- *x = SignInReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SignInReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SignInReply) ProtoMessage() {}
- func (x *SignInReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SignInReply.ProtoReflect.Descriptor instead.
- func (*SignInReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{5}
- }
- func (x *SignInReply) GetToken() string {
- if x != nil {
- return x.Token
- }
- return ""
- }
- type SignInRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
- CodeId string `protobuf:"bytes,3,opt,name=codeId,proto3" json:"codeId,omitempty"`
- VerifyCode string `protobuf:"bytes,4,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
- }
- func (x *SignInRequest) Reset() {
- *x = SignInRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SignInRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SignInRequest) ProtoMessage() {}
- func (x *SignInRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SignInRequest.ProtoReflect.Descriptor instead.
- func (*SignInRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{6}
- }
- func (x *SignInRequest) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *SignInRequest) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
- }
- func (x *SignInRequest) GetCodeId() string {
- if x != nil {
- return x.CodeId
- }
- return ""
- }
- func (x *SignInRequest) GetVerifyCode() string {
- if x != nil {
- return x.VerifyCode
- }
- return ""
- }
- type GenVerifyImageRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
- Width int32 `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
- }
- func (x *GenVerifyImageRequest) Reset() {
- *x = GenVerifyImageRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GenVerifyImageRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GenVerifyImageRequest) ProtoMessage() {}
- func (x *GenVerifyImageRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GenVerifyImageRequest.ProtoReflect.Descriptor instead.
- func (*GenVerifyImageRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{7}
- }
- func (x *GenVerifyImageRequest) GetHeight() int32 {
- if x != nil {
- return x.Height
- }
- return 0
- }
- func (x *GenVerifyImageRequest) GetWidth() int32 {
- if x != nil {
- return x.Width
- }
- return 0
- }
- type GenVerifyImageReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- CodeId string `protobuf:"bytes,1,opt,name=codeId,proto3" json:"codeId,omitempty"`
- ImageBase64 string `protobuf:"bytes,2,opt,name=imageBase64,proto3" json:"imageBase64,omitempty"`
- }
- func (x *GenVerifyImageReply) Reset() {
- *x = GenVerifyImageReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GenVerifyImageReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GenVerifyImageReply) ProtoMessage() {}
- func (x *GenVerifyImageReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GenVerifyImageReply.ProtoReflect.Descriptor instead.
- func (*GenVerifyImageReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{8}
- }
- func (x *GenVerifyImageReply) GetCodeId() string {
- if x != nil {
- return x.CodeId
- }
- return ""
- }
- func (x *GenVerifyImageReply) GetImageBase64() string {
- if x != nil {
- return x.ImageBase64
- }
- return ""
- }
- type ShopInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
- Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr,omitempty"`
- Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
- Contacts string `protobuf:"bytes,6,opt,name=contacts,proto3" json:"contacts,omitempty"`
- Status WebStatus `protobuf:"varint,7,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
- CreatedAt int64 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
- CreatedUser int64 `protobuf:"varint,9,opt,name=created_user,json=createdUser,proto3" json:"created_user,omitempty"`
- UpdatedAt int64 `protobuf:"varint,10,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
- UpdatedUser int64 `protobuf:"varint,11,opt,name=updated_user,json=updatedUser,proto3" json:"updated_user,omitempty"`
- }
- func (x *ShopInfo) Reset() {
- *x = ShopInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ShopInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ShopInfo) ProtoMessage() {}
- func (x *ShopInfo) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ShopInfo.ProtoReflect.Descriptor instead.
- func (*ShopInfo) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{9}
- }
- func (x *ShopInfo) GetShopId() int64 {
- if x != nil {
- return x.ShopId
- }
- return 0
- }
- func (x *ShopInfo) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ShopInfo) GetSId() int64 {
- if x != nil {
- return x.SId
- }
- return 0
- }
- func (x *ShopInfo) GetAddr() string {
- if x != nil {
- return x.Addr
- }
- return ""
- }
- func (x *ShopInfo) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *ShopInfo) GetContacts() string {
- if x != nil {
- return x.Contacts
- }
- return ""
- }
- func (x *ShopInfo) GetStatus() WebStatus {
- if x != nil {
- return x.Status
- }
- return WebStatus_Ban
- }
- func (x *ShopInfo) GetCreatedAt() int64 {
- if x != nil {
- return x.CreatedAt
- }
- return 0
- }
- func (x *ShopInfo) GetCreatedUser() int64 {
- if x != nil {
- return x.CreatedUser
- }
- return 0
- }
- func (x *ShopInfo) GetUpdatedAt() int64 {
- if x != nil {
- return x.UpdatedAt
- }
- return 0
- }
- func (x *ShopInfo) GetUpdatedUser() int64 {
- if x != nil {
- return x.UpdatedUser
- }
- return 0
- }
- type ShopListRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- // 模糊查询
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- // Status_Null查询全部
- Status WebStatus `protobuf:"varint,2,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
- //上级商家Id, -1 时查询全部
- SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
- }
- func (x *ShopListRequest) Reset() {
- *x = ShopListRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ShopListRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ShopListRequest) ProtoMessage() {}
- func (x *ShopListRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ShopListRequest.ProtoReflect.Descriptor instead.
- func (*ShopListRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{10}
- }
- func (x *ShopListRequest) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ShopListRequest) GetStatus() WebStatus {
- if x != nil {
- return x.Status
- }
- return WebStatus_Ban
- }
- func (x *ShopListRequest) GetSId() int64 {
- if x != nil {
- return x.SId
- }
- return 0
- }
- type ShopListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- List []*ShopInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
- }
- func (x *ShopListReply) Reset() {
- *x = ShopListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ShopListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ShopListReply) ProtoMessage() {}
- func (x *ShopListReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ShopListReply.ProtoReflect.Descriptor instead.
- func (*ShopListReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{11}
- }
- func (x *ShopListReply) GetList() []*ShopInfo {
- if x != nil {
- return x.List
- }
- return nil
- }
- type GetShopNaviRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
- // 最顶层为0
- ParentId int32 `protobuf:"varint,2,opt,name=parentId,proto3" json:"parentId,omitempty"`
- }
- func (x *GetShopNaviRequest) Reset() {
- *x = GetShopNaviRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetShopNaviRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetShopNaviRequest) ProtoMessage() {}
- func (x *GetShopNaviRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetShopNaviRequest.ProtoReflect.Descriptor instead.
- func (*GetShopNaviRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{12}
- }
- func (x *GetShopNaviRequest) GetShopId() int64 {
- if x != nil {
- return x.ShopId
- }
- return 0
- }
- func (x *GetShopNaviRequest) GetParentId() int32 {
- if x != nil {
- return x.ParentId
- }
- return 0
- }
- type Column struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
- Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
- // 顺序
- Sn int32 `protobuf:"varint,4,opt,name=sn,proto3" json:"sn,omitempty"`
- Status WebStatus `protobuf:"varint,5,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
- NavShow bool `protobuf:"varint,6,opt,name=navShow,proto3" json:"navShow,omitempty"`
- Id int64 `protobuf:"varint,7,opt,name=id,proto3" json:"id,omitempty"`
- }
- func (x *Column) Reset() {
- *x = Column{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Column) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Column) ProtoMessage() {}
- func (x *Column) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Column.ProtoReflect.Descriptor instead.
- func (*Column) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{13}
- }
- func (x *Column) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *Column) GetUrl() string {
- if x != nil {
- return x.Url
- }
- return ""
- }
- func (x *Column) GetCode() string {
- if x != nil {
- return x.Code
- }
- return ""
- }
- func (x *Column) GetSn() int32 {
- if x != nil {
- return x.Sn
- }
- return 0
- }
- func (x *Column) GetStatus() WebStatus {
- if x != nil {
- return x.Status
- }
- return WebStatus_Ban
- }
- func (x *Column) GetNavShow() bool {
- if x != nil {
- return x.NavShow
- }
- return false
- }
- func (x *Column) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- type GetShopNaviReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- List []*Column `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
- }
- func (x *GetShopNaviReply) Reset() {
- *x = GetShopNaviReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetShopNaviReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetShopNaviReply) ProtoMessage() {}
- func (x *GetShopNaviReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetShopNaviReply.ProtoReflect.Descriptor instead.
- func (*GetShopNaviReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{14}
- }
- func (x *GetShopNaviReply) GetList() []*Column {
- if x != nil {
- return x.List
- }
- return nil
- }
- type GetOverlayImgRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- FileName string `protobuf:"bytes,1,opt,name=fileName,proto3" json:"fileName,omitempty"`
- }
- func (x *GetOverlayImgRequest) Reset() {
- *x = GetOverlayImgRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetOverlayImgRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetOverlayImgRequest) ProtoMessage() {}
- func (x *GetOverlayImgRequest) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[15]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetOverlayImgRequest.ProtoReflect.Descriptor instead.
- func (*GetOverlayImgRequest) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{15}
- }
- func (x *GetOverlayImgRequest) GetFileName() string {
- if x != nil {
- return x.FileName
- }
- return ""
- }
- type QiNiuTokenReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
- }
- func (x *QiNiuTokenReply) Reset() {
- *x = QiNiuTokenReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_base_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *QiNiuTokenReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*QiNiuTokenReply) ProtoMessage() {}
- func (x *QiNiuTokenReply) ProtoReflect() protoreflect.Message {
- mi := &file_base_proto_msgTypes[16]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use QiNiuTokenReply.ProtoReflect.Descriptor instead.
- func (*QiNiuTokenReply) Descriptor() ([]byte, []int) {
- return file_base_proto_rawDescGZIP(), []int{16}
- }
- func (x *QiNiuTokenReply) GetToken() string {
- if x != nil {
- return x.Token
- }
- return ""
- }
- var File_base_proto protoreflect.FileDescriptor
- var file_base_proto_rawDesc = []byte{
- 0x0a, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x04, 0x62, 0x61,
- 0x73, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x22, 0x0e, 0x0a, 0x0c, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x57, 0x0a, 0x0f, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49,
- 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12,
- 0x18, 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67,
- 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x3d, 0x0a,
- 0x0d, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18,
- 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x3f, 0x0a, 0x0d,
- 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x23, 0x0a,
- 0x0b, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05,
- 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b,
- 0x65, 0x6e, 0x22, 0x77, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x76,
- 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x45, 0x0a, 0x15, 0x47,
- 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05,
- 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x77, 0x69, 0x64,
- 0x74, 0x68, 0x22, 0x4f, 0x0a, 0x13, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49,
- 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64,
- 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49,
- 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x36, 0x34,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73,
- 0x65, 0x36, 0x34, 0x22, 0xbb, 0x02, 0x0a, 0x08, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f,
- 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03,
- 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x12, 0x12,
- 0x0a, 0x04, 0x61, 0x64, 0x64, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64,
- 0x64, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74,
- 0x61, 0x63, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74,
- 0x61, 0x63, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a,
- 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21, 0x0a, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12,
- 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21,
- 0x0a, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0b,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65,
- 0x72, 0x22, 0x60, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
- 0x73, 0x49, 0x64, 0x22, 0x33, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e,
- 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x48, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x53,
- 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
- 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
- 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
- 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
- 0x49, 0x64, 0x22, 0xa5, 0x01, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
- 0x75, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x6e, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x05, 0x52, 0x02, 0x73, 0x6e, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57,
- 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x61, 0x76, 0x53, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x07, 0x6e, 0x61, 0x76, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x34, 0x0a, 0x10, 0x47, 0x65,
- 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20,
- 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
- 0x22, 0x32, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49, 0x6d,
- 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65,
- 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65,
- 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x27, 0x0a, 0x0f, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b,
- 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x2a, 0x7e, 0x0a,
- 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b,
- 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x47, 0x45, 0x72, 0x72, 0x10, 0x64, 0x12, 0x0d, 0x0a,
- 0x09, 0x50, 0x6d, 0x73, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x6e, 0x12, 0x0c, 0x0a, 0x08,
- 0x4a, 0x32, 0x4d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x78, 0x12, 0x12, 0x0a, 0x0e, 0x57, 0x65,
- 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x79, 0x12, 0x16,
- 0x0a, 0x12, 0x57, 0x65, 0x62, 0x54, 0x6f, 0x49, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7a, 0x12, 0x15, 0x0a, 0x11, 0x49, 0x6d, 0x54, 0x6f, 0x57, 0x65,
- 0x62, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7b, 0x2a, 0x31, 0x0a,
- 0x09, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x61,
- 0x6e, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x6e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x44,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x10, 0x09, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x6c, 0x6c, 0x10, 0x63,
- 0x32, 0xdf, 0x34, 0x0a, 0x03, 0x41, 0x70, 0x69, 0x12, 0x33, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e,
- 0x55, 0x70, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44,
- 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x32, 0x0a,
- 0x06, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
- 0x00, 0x12, 0x35, 0x0a, 0x07, 0x53, 0x69, 0x67, 0x6e, 0x4f, 0x75, 0x74, 0x12, 0x14, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c,
- 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0e, 0x47, 0x65, 0x6e, 0x56,
- 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47,
- 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x48, 0x72,
- 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x55,
- 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12,
- 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
- 0x12, 0x46, 0x0a, 0x16, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53,
- 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
- 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x4d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
- 0x12, 0x40, 0x0a, 0x10, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x53, 0x69, 0x6d, 0x70,
- 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x61,
- 0x62, 0x6c, 0x65, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69,
- 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0b, 0x47, 0x65, 0x74,
- 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x12, 0x18, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f,
- 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e,
- 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c,
- 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68,
- 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f,
- 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74,
- 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45,
- 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68,
- 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x68,
- 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70,
- 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x56,
- 0x65, 0x6e, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13,
- 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
- 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71,
- 0x75, 0x69, 0x70, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75,
- 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x18, 0x53, 0x68, 0x6f, 0x70,
- 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45,
- 0x71, 0x75, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53,
- 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a,
- 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a,
- 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74,
- 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45,
- 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69,
- 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70,
- 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
- 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53, 0x68, 0x6f,
- 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64,
- 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
- 0x12, 0x42, 0x0a, 0x12, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65,
- 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69,
- 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73,
- 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x56, 0x69, 0x70, 0x50,
- 0x68, 0x6f, 0x6e, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x4d, 0x61,
- 0x69, 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x56, 0x69,
- 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
- 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x45, 0x64, 0x69,
- 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
- 0x47, 0x0a, 0x17, 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x54, 0x65, 0x6d, 0x70,
- 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x54, 0x65,
- 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x54, 0x65,
- 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x54,
- 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x45, 0x64, 0x69,
- 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
- 0x43, 0x0a, 0x13, 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x4c, 0x69, 0x73,
- 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75,
- 0x6d, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x56,
- 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
- 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
- 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x43, 0x68, 0x67, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
- 0x49, 0x6d, 0x67, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1a, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49,
- 0x6d, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x44, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51,
- 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65,
- 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x43, 0x6c, 0x61, 0x73,
- 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x00, 0x12, 0x38, 0x0a, 0x08, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x41, 0x64, 0x64,
- 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x39,
- 0x0a, 0x09, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61,
- 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x43, 0x6c,
- 0x61, 0x73, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x43, 0x6c,
- 0x61, 0x73, 0x73, 0x57, 0x78, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x45, 0x64, 0x69, 0x74,
- 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c,
- 0x0a, 0x0c, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x56, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
- 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72,
- 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
- 0x3f, 0x0a, 0x0f, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41,
- 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
- 0x12, 0x40, 0x0a, 0x10, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63,
- 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73,
- 0x69, 0x63, 0x53, 0x68, 0x6f, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50,
- 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64,
- 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
- 0x12, 0x43, 0x0a, 0x13, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63,
- 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e,
- 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e,
- 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61,
- 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65,
- 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d,
- 0x0a, 0x0d, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a,
- 0x0b, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x54,
- 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x42,
- 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f,
- 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a,
- 0x0c, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53,
- 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x64,
- 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
- 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x4c, 0x69, 0x73,
- 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63,
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a,
- 0x16, 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x44,
- 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x44,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65,
- 0x72, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65,
- 0x72, 0x41, 0x64, 0x64, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x4f,
- 0x72, 0x64, 0x65, 0x72, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
- 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
- 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
- 0x74, 0x69, 0x63, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
- 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
- 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72,
- 0x64, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73,
- 0x6f, 0x72, 0x73, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
- 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x50, 0x76, 0x74, 0x51, 0x75, 0x65, 0x72,
- 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
- 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
- 0x3c, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a,
- 0x0f, 0x41, 0x64, 0x64, 0x50, 0x76, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73,
- 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d,
- 0x0a, 0x0d, 0x45, 0x64, 0x69, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12,
- 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a,
- 0x0c, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e,
- 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x50,
- 0x4b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x67, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x42, 0x69, 0x6e, 0x64, 0x48,
- 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x55, 0x6e, 0x42, 0x69, 0x6e, 0x64, 0x48,
- 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
- 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
- 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x00, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x3b, 0x62, 0x61, 0x73, 0x65, 0x62, 0x06, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_base_proto_rawDescOnce sync.Once
- file_base_proto_rawDescData = file_base_proto_rawDesc
- )
- func file_base_proto_rawDescGZIP() []byte {
- file_base_proto_rawDescOnce.Do(func() {
- file_base_proto_rawDescData = protoimpl.X.CompressGZIP(file_base_proto_rawDescData)
- })
- return file_base_proto_rawDescData
- }
- var file_base_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
- var file_base_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
- var file_base_proto_goTypes = []interface{}{
- (ErrorCode)(0), // 0: base.ErrorCode
- (WebStatus)(0), // 1: base.WebStatus
- (*DefaultRequest)(nil), // 2: base.DefaultRequest
- (*DefaultReply)(nil), // 3: base.DefaultReply
- (*StandardRequest)(nil), // 4: base.StandardRequest
- (*StandardReply)(nil), // 5: base.StandardReply
- (*SignUpRequest)(nil), // 6: base.SignUpRequest
- (*SignInReply)(nil), // 7: base.SignInReply
- (*SignInRequest)(nil), // 8: base.SignInRequest
- (*GenVerifyImageRequest)(nil), // 9: base.GenVerifyImageRequest
- (*GenVerifyImageReply)(nil), // 10: base.GenVerifyImageReply
- (*ShopInfo)(nil), // 11: base.ShopInfo
- (*ShopListRequest)(nil), // 12: base.ShopListRequest
- (*ShopListReply)(nil), // 13: base.ShopListReply
- (*GetShopNaviRequest)(nil), // 14: base.GetShopNaviRequest
- (*Column)(nil), // 15: base.Column
- (*GetShopNaviReply)(nil), // 16: base.GetShopNaviReply
- (*GetOverlayImgRequest)(nil), // 17: base.GetOverlayImgRequest
- (*QiNiuTokenReply)(nil), // 18: base.QiNiuTokenReply
- }
- var file_base_proto_depIdxs = []int32{
- 1, // 0: base.ShopInfo.status:type_name -> base.WebStatus
- 1, // 1: base.ShopListRequest.status:type_name -> base.WebStatus
- 11, // 2: base.ShopListReply.list:type_name -> base.ShopInfo
- 1, // 3: base.Column.status:type_name -> base.WebStatus
- 15, // 4: base.GetShopNaviReply.list:type_name -> base.Column
- 6, // 5: base.Api.SignUp:input_type -> base.SignUpRequest
- 8, // 6: base.Api.SignIn:input_type -> base.SignInRequest
- 2, // 7: base.Api.SignOut:input_type -> base.DefaultRequest
- 9, // 8: base.Api.GenVerifyImage:input_type -> base.GenVerifyImageRequest
- 4, // 9: base.Api.SelectHrSensors:input_type -> base.StandardRequest
- 4, // 10: base.Api.AcrossUserSimpleQuery:input_type -> base.StandardRequest
- 4, // 11: base.Api.VipUserSimpleQuery:input_type -> base.StandardRequest
- 4, // 12: base.Api.TempVipUserSimpleQuery:input_type -> base.StandardRequest
- 4, // 13: base.Api.ShopSimpleQuery:input_type -> base.StandardRequest
- 4, // 14: base.Api.ManageableSimpleQuery:input_type -> base.StandardRequest
- 4, // 15: base.Api.ClassSimpleQuery:input_type -> base.StandardRequest
- 4, // 16: base.Api.ScreenSimpleQuery:input_type -> base.StandardRequest
- 12, // 17: base.Api.ManageableShopList:input_type -> base.ShopListRequest
- 14, // 18: base.Api.GetShopNavi:input_type -> base.GetShopNaviRequest
- 4, // 19: base.Api.ShopGroupQuery:input_type -> base.StandardRequest
- 4, // 20: base.Api.ShopGroupAdd:input_type -> base.StandardRequest
- 4, // 21: base.Api.ShopGroupEdit:input_type -> base.StandardRequest
- 4, // 22: base.Api.ShopGroupStatusEdit:input_type -> base.StandardRequest
- 4, // 23: base.Api.ShopGroupDetailsQuery:input_type -> base.StandardRequest
- 4, // 24: base.Api.ShopGroupDetailsAdd:input_type -> base.StandardRequest
- 4, // 25: base.Api.ShopVenueQuery:input_type -> base.StandardRequest
- 4, // 26: base.Api.ShopVenueAdd:input_type -> base.StandardRequest
- 4, // 27: base.Api.ShopVenueEdit:input_type -> base.StandardRequest
- 4, // 28: base.Api.ShopVenueStatusEdit:input_type -> base.StandardRequest
- 4, // 29: base.Api.ShopVenueEquipQuery:input_type -> base.StandardRequest
- 4, // 30: base.Api.ShopVenueEquipAdd:input_type -> base.StandardRequest
- 4, // 31: base.Api.ShopVenueEquipEdit:input_type -> base.StandardRequest
- 4, // 32: base.Api.ShopVenueEquipStatusEdit:input_type -> base.StandardRequest
- 4, // 33: base.Api.ShopVenueEquipStatusDel:input_type -> base.StandardRequest
- 4, // 34: base.Api.ShopManagerQuery:input_type -> base.StandardRequest
- 4, // 35: base.Api.ShopManagerAdd:input_type -> base.StandardRequest
- 4, // 36: base.Api.ShopManagerEdit:input_type -> base.StandardRequest
- 4, // 37: base.Api.ShopManagerStatusEdit:input_type -> base.StandardRequest
- 4, // 38: base.Api.ShopConfigQuery:input_type -> base.StandardRequest
- 4, // 39: base.Api.ShopConfigEdit:input_type -> base.StandardRequest
- 4, // 40: base.Api.ShopVipUserQuery:input_type -> base.StandardRequest
- 4, // 41: base.Api.ShopVipUserAdd:input_type -> base.StandardRequest
- 4, // 42: base.Api.ShopVipUserEdit:input_type -> base.StandardRequest
- 4, // 43: base.Api.ShopVipUserStatusEdit:input_type -> base.StandardRequest
- 4, // 44: base.Api.AcrossVipUserQuery:input_type -> base.StandardRequest
- 4, // 45: base.Api.AcrossVipUserAdd:input_type -> base.StandardRequest
- 4, // 46: base.Api.AcrossVipUserDel:input_type -> base.StandardRequest
- 4, // 47: base.Api.VipPhoneQuery:input_type -> base.StandardRequest
- 4, // 48: base.Api.VipMainPhoneCheck:input_type -> base.StandardRequest
- 4, // 49: base.Api.VipOtherPhoneAdd:input_type -> base.StandardRequest
- 4, // 50: base.Api.VipOtherPhoneEdit:input_type -> base.StandardRequest
- 4, // 51: base.Api.VipOtherPhoneStatusEdit:input_type -> base.StandardRequest
- 4, // 52: base.Api.TempVipUserQuery:input_type -> base.StandardRequest
- 4, // 53: base.Api.TempVipUserAdd:input_type -> base.StandardRequest
- 4, // 54: base.Api.TempVipUserEdit:input_type -> base.StandardRequest
- 4, // 55: base.Api.TempVipUserStatusEdit:input_type -> base.StandardRequest
- 4, // 56: base.Api.VipHourEdit:input_type -> base.StandardRequest
- 4, // 57: base.Api.VipConsumeListQuery:input_type -> base.StandardRequest
- 4, // 58: base.Api.VipConsumeDetailQuery:input_type -> base.StandardRequest
- 4, // 59: base.Api.VipClassRelationEdit:input_type -> base.StandardRequest
- 4, // 60: base.Api.VipHourChgQuery:input_type -> base.StandardRequest
- 17, // 61: base.Api.GetOverlayImgQiNiuToken:input_type -> base.GetOverlayImgRequest
- 2, // 62: base.Api.GetSimpleQiNiuToken:input_type -> base.DefaultRequest
- 4, // 63: base.Api.ClassQuery:input_type -> base.StandardRequest
- 4, // 64: base.Api.ClassAdd:input_type -> base.StandardRequest
- 4, // 65: base.Api.ClassEdit:input_type -> base.StandardRequest
- 4, // 66: base.Api.ClassStatusEdit:input_type -> base.StandardRequest
- 4, // 67: base.Api.ClassColorEdit:input_type -> base.StandardRequest
- 4, // 68: base.Api.ClassWxVisibleEdit:input_type -> base.StandardRequest
- 4, // 69: base.Api.ClassVipEdit:input_type -> base.StandardRequest
- 4, // 70: base.Api.SttPlanBasicQuery:input_type -> base.StandardRequest
- 4, // 71: base.Api.SttPlanBasicAdd:input_type -> base.StandardRequest
- 4, // 72: base.Api.SttPlanBasicEdit:input_type -> base.StandardRequest
- 4, // 73: base.Api.SttPlanBasicShopEdit:input_type -> base.StandardRequest
- 4, // 74: base.Api.SttPlanBasicStatusEdit:input_type -> base.StandardRequest
- 4, // 75: base.Api.SttPlanBasicPublish:input_type -> base.StandardRequest
- 4, // 76: base.Api.SttPlanPreview:input_type -> base.StandardRequest
- 4, // 77: base.Api.SttPlanCopy:input_type -> base.StandardRequest
- 4, // 78: base.Api.SttPlanDetailQuery:input_type -> base.StandardRequest
- 4, // 79: base.Api.SttPlanDetailBatchSave:input_type -> base.StandardRequest
- 4, // 80: base.Api.STTBasicQuery:input_type -> base.StandardRequest
- 4, // 81: base.Api.STTBasicAdd:input_type -> base.StandardRequest
- 4, // 82: base.Api.STTBasicEdit:input_type -> base.StandardRequest
- 4, // 83: base.Api.STTBasicStatusEdit:input_type -> base.StandardRequest
- 4, // 84: base.Api.STTBasicPreview:input_type -> base.StandardRequest
- 4, // 85: base.Api.STTBasicCopy:input_type -> base.StandardRequest
- 4, // 86: base.Api.STTBasicOfflineEdit:input_type -> base.StandardRequest
- 4, // 87: base.Api.STTDetailListQuery:input_type -> base.StandardRequest
- 4, // 88: base.Api.STTBasicDetailBatchSave:input_type -> base.StandardRequest
- 4, // 89: base.Api.STTDetailAllowDelCheck:input_type -> base.StandardRequest
- 4, // 90: base.Api.CourseDetailQuery:input_type -> base.StandardRequest
- 4, // 91: base.Api.OrderListQuery:input_type -> base.StandardRequest
- 4, // 92: base.Api.OrderAddByManager:input_type -> base.StandardRequest
- 4, // 93: base.Api.OrderCancelByManager:input_type -> base.StandardRequest
- 4, // 94: base.Api.OrderStatistics:input_type -> base.StandardRequest
- 4, // 95: base.Api.ClassOrderQuery:input_type -> base.StandardRequest
- 4, // 96: base.Api.VipUserOrderQuery:input_type -> base.StandardRequest
- 4, // 97: base.Api.HrSensorsPublicQuery:input_type -> base.StandardRequest
- 4, // 98: base.Api.HrSensorsPvtQuery:input_type -> base.StandardRequest
- 4, // 99: base.Api.AddHrSensors:input_type -> base.StandardRequest
- 4, // 100: base.Api.AddPvtHrSensors:input_type -> base.StandardRequest
- 4, // 101: base.Api.EditHrSensors:input_type -> base.StandardRequest
- 4, // 102: base.Api.HrSensorsDel:input_type -> base.StandardRequest
- 4, // 103: base.Api.PKGroupChg:input_type -> base.StandardRequest
- 4, // 104: base.Api.BindHrSensor:input_type -> base.StandardRequest
- 4, // 105: base.Api.UnBindHrSensor:input_type -> base.StandardRequest
- 4, // 106: base.Api.ActionQuery:input_type -> base.StandardRequest
- 3, // 107: base.Api.SignUp:output_type -> base.DefaultReply
- 7, // 108: base.Api.SignIn:output_type -> base.SignInReply
- 3, // 109: base.Api.SignOut:output_type -> base.DefaultReply
- 10, // 110: base.Api.GenVerifyImage:output_type -> base.GenVerifyImageReply
- 5, // 111: base.Api.SelectHrSensors:output_type -> base.StandardReply
- 5, // 112: base.Api.AcrossUserSimpleQuery:output_type -> base.StandardReply
- 5, // 113: base.Api.VipUserSimpleQuery:output_type -> base.StandardReply
- 5, // 114: base.Api.TempVipUserSimpleQuery:output_type -> base.StandardReply
- 5, // 115: base.Api.ShopSimpleQuery:output_type -> base.StandardReply
- 5, // 116: base.Api.ManageableSimpleQuery:output_type -> base.StandardReply
- 5, // 117: base.Api.ClassSimpleQuery:output_type -> base.StandardReply
- 5, // 118: base.Api.ScreenSimpleQuery:output_type -> base.StandardReply
- 13, // 119: base.Api.ManageableShopList:output_type -> base.ShopListReply
- 16, // 120: base.Api.GetShopNavi:output_type -> base.GetShopNaviReply
- 5, // 121: base.Api.ShopGroupQuery:output_type -> base.StandardReply
- 5, // 122: base.Api.ShopGroupAdd:output_type -> base.StandardReply
- 5, // 123: base.Api.ShopGroupEdit:output_type -> base.StandardReply
- 5, // 124: base.Api.ShopGroupStatusEdit:output_type -> base.StandardReply
- 5, // 125: base.Api.ShopGroupDetailsQuery:output_type -> base.StandardReply
- 5, // 126: base.Api.ShopGroupDetailsAdd:output_type -> base.StandardReply
- 5, // 127: base.Api.ShopVenueQuery:output_type -> base.StandardReply
- 5, // 128: base.Api.ShopVenueAdd:output_type -> base.StandardReply
- 5, // 129: base.Api.ShopVenueEdit:output_type -> base.StandardReply
- 5, // 130: base.Api.ShopVenueStatusEdit:output_type -> base.StandardReply
- 5, // 131: base.Api.ShopVenueEquipQuery:output_type -> base.StandardReply
- 5, // 132: base.Api.ShopVenueEquipAdd:output_type -> base.StandardReply
- 5, // 133: base.Api.ShopVenueEquipEdit:output_type -> base.StandardReply
- 5, // 134: base.Api.ShopVenueEquipStatusEdit:output_type -> base.StandardReply
- 5, // 135: base.Api.ShopVenueEquipStatusDel:output_type -> base.StandardReply
- 5, // 136: base.Api.ShopManagerQuery:output_type -> base.StandardReply
- 5, // 137: base.Api.ShopManagerAdd:output_type -> base.StandardReply
- 5, // 138: base.Api.ShopManagerEdit:output_type -> base.StandardReply
- 5, // 139: base.Api.ShopManagerStatusEdit:output_type -> base.StandardReply
- 5, // 140: base.Api.ShopConfigQuery:output_type -> base.StandardReply
- 5, // 141: base.Api.ShopConfigEdit:output_type -> base.StandardReply
- 5, // 142: base.Api.ShopVipUserQuery:output_type -> base.StandardReply
- 5, // 143: base.Api.ShopVipUserAdd:output_type -> base.StandardReply
- 5, // 144: base.Api.ShopVipUserEdit:output_type -> base.StandardReply
- 5, // 145: base.Api.ShopVipUserStatusEdit:output_type -> base.StandardReply
- 5, // 146: base.Api.AcrossVipUserQuery:output_type -> base.StandardReply
- 5, // 147: base.Api.AcrossVipUserAdd:output_type -> base.StandardReply
- 5, // 148: base.Api.AcrossVipUserDel:output_type -> base.StandardReply
- 5, // 149: base.Api.VipPhoneQuery:output_type -> base.StandardReply
- 5, // 150: base.Api.VipMainPhoneCheck:output_type -> base.StandardReply
- 5, // 151: base.Api.VipOtherPhoneAdd:output_type -> base.StandardReply
- 5, // 152: base.Api.VipOtherPhoneEdit:output_type -> base.StandardReply
- 5, // 153: base.Api.VipOtherPhoneStatusEdit:output_type -> base.StandardReply
- 5, // 154: base.Api.TempVipUserQuery:output_type -> base.StandardReply
- 5, // 155: base.Api.TempVipUserAdd:output_type -> base.StandardReply
- 5, // 156: base.Api.TempVipUserEdit:output_type -> base.StandardReply
- 5, // 157: base.Api.TempVipUserStatusEdit:output_type -> base.StandardReply
- 5, // 158: base.Api.VipHourEdit:output_type -> base.StandardReply
- 5, // 159: base.Api.VipConsumeListQuery:output_type -> base.StandardReply
- 5, // 160: base.Api.VipConsumeDetailQuery:output_type -> base.StandardReply
- 5, // 161: base.Api.VipClassRelationEdit:output_type -> base.StandardReply
- 5, // 162: base.Api.VipHourChgQuery:output_type -> base.StandardReply
- 18, // 163: base.Api.GetOverlayImgQiNiuToken:output_type -> base.QiNiuTokenReply
- 18, // 164: base.Api.GetSimpleQiNiuToken:output_type -> base.QiNiuTokenReply
- 5, // 165: base.Api.ClassQuery:output_type -> base.StandardReply
- 5, // 166: base.Api.ClassAdd:output_type -> base.StandardReply
- 5, // 167: base.Api.ClassEdit:output_type -> base.StandardReply
- 5, // 168: base.Api.ClassStatusEdit:output_type -> base.StandardReply
- 5, // 169: base.Api.ClassColorEdit:output_type -> base.StandardReply
- 5, // 170: base.Api.ClassWxVisibleEdit:output_type -> base.StandardReply
- 5, // 171: base.Api.ClassVipEdit:output_type -> base.StandardReply
- 5, // 172: base.Api.SttPlanBasicQuery:output_type -> base.StandardReply
- 5, // 173: base.Api.SttPlanBasicAdd:output_type -> base.StandardReply
- 5, // 174: base.Api.SttPlanBasicEdit:output_type -> base.StandardReply
- 5, // 175: base.Api.SttPlanBasicShopEdit:output_type -> base.StandardReply
- 5, // 176: base.Api.SttPlanBasicStatusEdit:output_type -> base.StandardReply
- 5, // 177: base.Api.SttPlanBasicPublish:output_type -> base.StandardReply
- 5, // 178: base.Api.SttPlanPreview:output_type -> base.StandardReply
- 5, // 179: base.Api.SttPlanCopy:output_type -> base.StandardReply
- 5, // 180: base.Api.SttPlanDetailQuery:output_type -> base.StandardReply
- 5, // 181: base.Api.SttPlanDetailBatchSave:output_type -> base.StandardReply
- 5, // 182: base.Api.STTBasicQuery:output_type -> base.StandardReply
- 5, // 183: base.Api.STTBasicAdd:output_type -> base.StandardReply
- 5, // 184: base.Api.STTBasicEdit:output_type -> base.StandardReply
- 5, // 185: base.Api.STTBasicStatusEdit:output_type -> base.StandardReply
- 5, // 186: base.Api.STTBasicPreview:output_type -> base.StandardReply
- 5, // 187: base.Api.STTBasicCopy:output_type -> base.StandardReply
- 5, // 188: base.Api.STTBasicOfflineEdit:output_type -> base.StandardReply
- 5, // 189: base.Api.STTDetailListQuery:output_type -> base.StandardReply
- 5, // 190: base.Api.STTBasicDetailBatchSave:output_type -> base.StandardReply
- 5, // 191: base.Api.STTDetailAllowDelCheck:output_type -> base.StandardReply
- 5, // 192: base.Api.CourseDetailQuery:output_type -> base.StandardReply
- 5, // 193: base.Api.OrderListQuery:output_type -> base.StandardReply
- 5, // 194: base.Api.OrderAddByManager:output_type -> base.StandardReply
- 5, // 195: base.Api.OrderCancelByManager:output_type -> base.StandardReply
- 5, // 196: base.Api.OrderStatistics:output_type -> base.StandardReply
- 5, // 197: base.Api.ClassOrderQuery:output_type -> base.StandardReply
- 5, // 198: base.Api.VipUserOrderQuery:output_type -> base.StandardReply
- 5, // 199: base.Api.HrSensorsPublicQuery:output_type -> base.StandardReply
- 5, // 200: base.Api.HrSensorsPvtQuery:output_type -> base.StandardReply
- 5, // 201: base.Api.AddHrSensors:output_type -> base.StandardReply
- 5, // 202: base.Api.AddPvtHrSensors:output_type -> base.StandardReply
- 5, // 203: base.Api.EditHrSensors:output_type -> base.StandardReply
- 5, // 204: base.Api.HrSensorsDel:output_type -> base.StandardReply
- 5, // 205: base.Api.PKGroupChg:output_type -> base.StandardReply
- 5, // 206: base.Api.BindHrSensor:output_type -> base.StandardReply
- 5, // 207: base.Api.UnBindHrSensor:output_type -> base.StandardReply
- 5, // 208: base.Api.ActionQuery:output_type -> base.StandardReply
- 107, // [107:209] is the sub-list for method output_type
- 5, // [5:107] is the sub-list for method input_type
- 5, // [5:5] is the sub-list for extension type_name
- 5, // [5:5] is the sub-list for extension extendee
- 0, // [0:5] is the sub-list for field type_name
- }
- func init() { file_base_proto_init() }
- func file_base_proto_init() {
- if File_base_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_base_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DefaultRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DefaultReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*StandardRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*StandardReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SignUpRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SignInReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SignInRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GenVerifyImageRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GenVerifyImageReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ShopInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ShopListRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ShopListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetShopNaviRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Column); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetShopNaviReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetOverlayImgRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_base_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*QiNiuTokenReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_base_proto_rawDesc,
- NumEnums: 2,
- NumMessages: 17,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_base_proto_goTypes,
- DependencyIndexes: file_base_proto_depIdxs,
- EnumInfos: file_base_proto_enumTypes,
- MessageInfos: file_base_proto_msgTypes,
- }.Build()
- File_base_proto = out.File
- file_base_proto_rawDesc = nil
- file_base_proto_goTypes = nil
- file_base_proto_depIdxs = nil
- }
|