base.pb.go 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.25.0
  4. // protoc v3.14.0
  5. // source: base.proto
  6. package base
  7. import (
  8. proto "github.com/golang/protobuf/proto"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. // This is a compile-time assertion that a sufficiently up-to-date version
  21. // of the legacy proto package is being used.
  22. const _ = proto.ProtoPackageIsVersion4
  23. type ErrorCode int32
  24. const (
  25. ErrorCode_OK ErrorCode = 0
  26. ErrorCode_PGErr ErrorCode = 100
  27. ErrorCode_PmsnError ErrorCode = 110
  28. ErrorCode_J2MError ErrorCode = 120
  29. ErrorCode_WebStatusError ErrorCode = 121
  30. ErrorCode_WebToImStatusError ErrorCode = 122
  31. ErrorCode_ImToWebtatusError ErrorCode = 123
  32. ErrorCode_M2JError ErrorCode = 124
  33. ErrorCode_PARAM ErrorCode = 150
  34. ErrorCode_Token ErrorCode = 200
  35. ErrorCode_VerifyCode ErrorCode = 201
  36. ErrorCode_PasswordWrongTooMuch ErrorCode = 202
  37. )
  38. // Enum value maps for ErrorCode.
  39. var (
  40. ErrorCode_name = map[int32]string{
  41. 0: "OK",
  42. 100: "PGErr",
  43. 110: "PmsnError",
  44. 120: "J2MError",
  45. 121: "WebStatusError",
  46. 122: "WebToImStatusError",
  47. 123: "ImToWebtatusError",
  48. 124: "M2JError",
  49. 150: "PARAM",
  50. 200: "Token",
  51. 201: "VerifyCode",
  52. 202: "PasswordWrongTooMuch",
  53. }
  54. ErrorCode_value = map[string]int32{
  55. "OK": 0,
  56. "PGErr": 100,
  57. "PmsnError": 110,
  58. "J2MError": 120,
  59. "WebStatusError": 121,
  60. "WebToImStatusError": 122,
  61. "ImToWebtatusError": 123,
  62. "M2JError": 124,
  63. "PARAM": 150,
  64. "Token": 200,
  65. "VerifyCode": 201,
  66. "PasswordWrongTooMuch": 202,
  67. }
  68. )
  69. func (x ErrorCode) Enum() *ErrorCode {
  70. p := new(ErrorCode)
  71. *p = x
  72. return p
  73. }
  74. func (x ErrorCode) String() string {
  75. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  76. }
  77. func (ErrorCode) Descriptor() protoreflect.EnumDescriptor {
  78. return file_base_proto_enumTypes[0].Descriptor()
  79. }
  80. func (ErrorCode) Type() protoreflect.EnumType {
  81. return &file_base_proto_enumTypes[0]
  82. }
  83. func (x ErrorCode) Number() protoreflect.EnumNumber {
  84. return protoreflect.EnumNumber(x)
  85. }
  86. // Deprecated: Use ErrorCode.Descriptor instead.
  87. func (ErrorCode) EnumDescriptor() ([]byte, []int) {
  88. return file_base_proto_rawDescGZIP(), []int{0}
  89. }
  90. type WebStatus int32
  91. const (
  92. WebStatus_Ban WebStatus = 0
  93. WebStatus_On WebStatus = 1
  94. WebStatus_Delete WebStatus = 9
  95. WebStatus_All WebStatus = 99
  96. )
  97. // Enum value maps for WebStatus.
  98. var (
  99. WebStatus_name = map[int32]string{
  100. 0: "Ban",
  101. 1: "On",
  102. 9: "Delete",
  103. 99: "All",
  104. }
  105. WebStatus_value = map[string]int32{
  106. "Ban": 0,
  107. "On": 1,
  108. "Delete": 9,
  109. "All": 99,
  110. }
  111. )
  112. func (x WebStatus) Enum() *WebStatus {
  113. p := new(WebStatus)
  114. *p = x
  115. return p
  116. }
  117. func (x WebStatus) String() string {
  118. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  119. }
  120. func (WebStatus) Descriptor() protoreflect.EnumDescriptor {
  121. return file_base_proto_enumTypes[1].Descriptor()
  122. }
  123. func (WebStatus) Type() protoreflect.EnumType {
  124. return &file_base_proto_enumTypes[1]
  125. }
  126. func (x WebStatus) Number() protoreflect.EnumNumber {
  127. return protoreflect.EnumNumber(x)
  128. }
  129. // Deprecated: Use WebStatus.Descriptor instead.
  130. func (WebStatus) EnumDescriptor() ([]byte, []int) {
  131. return file_base_proto_rawDescGZIP(), []int{1}
  132. }
  133. type VerifyType int32
  134. const (
  135. VerifyType_Undefined VerifyType = 0
  136. VerifyType_SignUp VerifyType = 1
  137. VerifyType_SignIn VerifyType = 2
  138. VerifyType_ChangePassword VerifyType = 3
  139. )
  140. // Enum value maps for VerifyType.
  141. var (
  142. VerifyType_name = map[int32]string{
  143. 0: "Undefined",
  144. 1: "SignUp",
  145. 2: "SignIn",
  146. 3: "ChangePassword",
  147. }
  148. VerifyType_value = map[string]int32{
  149. "Undefined": 0,
  150. "SignUp": 1,
  151. "SignIn": 2,
  152. "ChangePassword": 3,
  153. }
  154. )
  155. func (x VerifyType) Enum() *VerifyType {
  156. p := new(VerifyType)
  157. *p = x
  158. return p
  159. }
  160. func (x VerifyType) String() string {
  161. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  162. }
  163. func (VerifyType) Descriptor() protoreflect.EnumDescriptor {
  164. return file_base_proto_enumTypes[2].Descriptor()
  165. }
  166. func (VerifyType) Type() protoreflect.EnumType {
  167. return &file_base_proto_enumTypes[2]
  168. }
  169. func (x VerifyType) Number() protoreflect.EnumNumber {
  170. return protoreflect.EnumNumber(x)
  171. }
  172. // Deprecated: Use VerifyType.Descriptor instead.
  173. func (VerifyType) EnumDescriptor() ([]byte, []int) {
  174. return file_base_proto_rawDescGZIP(), []int{2}
  175. }
  176. type DefaultRequest struct {
  177. state protoimpl.MessageState
  178. sizeCache protoimpl.SizeCache
  179. unknownFields protoimpl.UnknownFields
  180. }
  181. func (x *DefaultRequest) Reset() {
  182. *x = DefaultRequest{}
  183. if protoimpl.UnsafeEnabled {
  184. mi := &file_base_proto_msgTypes[0]
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. ms.StoreMessageInfo(mi)
  187. }
  188. }
  189. func (x *DefaultRequest) String() string {
  190. return protoimpl.X.MessageStringOf(x)
  191. }
  192. func (*DefaultRequest) ProtoMessage() {}
  193. func (x *DefaultRequest) ProtoReflect() protoreflect.Message {
  194. mi := &file_base_proto_msgTypes[0]
  195. if protoimpl.UnsafeEnabled && x != nil {
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. if ms.LoadMessageInfo() == nil {
  198. ms.StoreMessageInfo(mi)
  199. }
  200. return ms
  201. }
  202. return mi.MessageOf(x)
  203. }
  204. // Deprecated: Use DefaultRequest.ProtoReflect.Descriptor instead.
  205. func (*DefaultRequest) Descriptor() ([]byte, []int) {
  206. return file_base_proto_rawDescGZIP(), []int{0}
  207. }
  208. type DefaultReply struct {
  209. state protoimpl.MessageState
  210. sizeCache protoimpl.SizeCache
  211. unknownFields protoimpl.UnknownFields
  212. }
  213. func (x *DefaultReply) Reset() {
  214. *x = DefaultReply{}
  215. if protoimpl.UnsafeEnabled {
  216. mi := &file_base_proto_msgTypes[1]
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. ms.StoreMessageInfo(mi)
  219. }
  220. }
  221. func (x *DefaultReply) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*DefaultReply) ProtoMessage() {}
  225. func (x *DefaultReply) ProtoReflect() protoreflect.Message {
  226. mi := &file_base_proto_msgTypes[1]
  227. if protoimpl.UnsafeEnabled && x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use DefaultReply.ProtoReflect.Descriptor instead.
  237. func (*DefaultReply) Descriptor() ([]byte, []int) {
  238. return file_base_proto_rawDescGZIP(), []int{1}
  239. }
  240. type StandardRequest struct {
  241. state protoimpl.MessageState
  242. sizeCache protoimpl.SizeCache
  243. unknownFields protoimpl.UnknownFields
  244. ShopID int64 `protobuf:"varint,1,opt,name=shopID,proto3" json:"shopID,omitempty"`
  245. JsonStr string `protobuf:"bytes,2,opt,name=jsonStr,proto3" json:"jsonStr,omitempty"`
  246. Sign string `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign,omitempty"`
  247. }
  248. func (x *StandardRequest) Reset() {
  249. *x = StandardRequest{}
  250. if protoimpl.UnsafeEnabled {
  251. mi := &file_base_proto_msgTypes[2]
  252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  253. ms.StoreMessageInfo(mi)
  254. }
  255. }
  256. func (x *StandardRequest) String() string {
  257. return protoimpl.X.MessageStringOf(x)
  258. }
  259. func (*StandardRequest) ProtoMessage() {}
  260. func (x *StandardRequest) ProtoReflect() protoreflect.Message {
  261. mi := &file_base_proto_msgTypes[2]
  262. if protoimpl.UnsafeEnabled && x != nil {
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. if ms.LoadMessageInfo() == nil {
  265. ms.StoreMessageInfo(mi)
  266. }
  267. return ms
  268. }
  269. return mi.MessageOf(x)
  270. }
  271. // Deprecated: Use StandardRequest.ProtoReflect.Descriptor instead.
  272. func (*StandardRequest) Descriptor() ([]byte, []int) {
  273. return file_base_proto_rawDescGZIP(), []int{2}
  274. }
  275. func (x *StandardRequest) GetShopID() int64 {
  276. if x != nil {
  277. return x.ShopID
  278. }
  279. return 0
  280. }
  281. func (x *StandardRequest) GetJsonStr() string {
  282. if x != nil {
  283. return x.JsonStr
  284. }
  285. return ""
  286. }
  287. func (x *StandardRequest) GetSign() string {
  288. if x != nil {
  289. return x.Sign
  290. }
  291. return ""
  292. }
  293. type CourseStandardRequest struct {
  294. state protoimpl.MessageState
  295. sizeCache protoimpl.SizeCache
  296. unknownFields protoimpl.UnknownFields
  297. ShopID int64 `protobuf:"varint,1,opt,name=shopID,proto3" json:"shopID,omitempty"`
  298. JsonStr string `protobuf:"bytes,2,opt,name=jsonStr,proto3" json:"jsonStr,omitempty"`
  299. Sign string `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign,omitempty"`
  300. IsHr int32 `protobuf:"varint,4,opt,name=isHr,proto3" json:"isHr,omitempty"`
  301. IsScore int32 `protobuf:"varint,5,opt,name=isScore,proto3" json:"isScore,omitempty"`
  302. }
  303. func (x *CourseStandardRequest) Reset() {
  304. *x = CourseStandardRequest{}
  305. if protoimpl.UnsafeEnabled {
  306. mi := &file_base_proto_msgTypes[3]
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. ms.StoreMessageInfo(mi)
  309. }
  310. }
  311. func (x *CourseStandardRequest) String() string {
  312. return protoimpl.X.MessageStringOf(x)
  313. }
  314. func (*CourseStandardRequest) ProtoMessage() {}
  315. func (x *CourseStandardRequest) ProtoReflect() protoreflect.Message {
  316. mi := &file_base_proto_msgTypes[3]
  317. if protoimpl.UnsafeEnabled && x != nil {
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. if ms.LoadMessageInfo() == nil {
  320. ms.StoreMessageInfo(mi)
  321. }
  322. return ms
  323. }
  324. return mi.MessageOf(x)
  325. }
  326. // Deprecated: Use CourseStandardRequest.ProtoReflect.Descriptor instead.
  327. func (*CourseStandardRequest) Descriptor() ([]byte, []int) {
  328. return file_base_proto_rawDescGZIP(), []int{3}
  329. }
  330. func (x *CourseStandardRequest) GetShopID() int64 {
  331. if x != nil {
  332. return x.ShopID
  333. }
  334. return 0
  335. }
  336. func (x *CourseStandardRequest) GetJsonStr() string {
  337. if x != nil {
  338. return x.JsonStr
  339. }
  340. return ""
  341. }
  342. func (x *CourseStandardRequest) GetSign() string {
  343. if x != nil {
  344. return x.Sign
  345. }
  346. return ""
  347. }
  348. func (x *CourseStandardRequest) GetIsHr() int32 {
  349. if x != nil {
  350. return x.IsHr
  351. }
  352. return 0
  353. }
  354. func (x *CourseStandardRequest) GetIsScore() int32 {
  355. if x != nil {
  356. return x.IsScore
  357. }
  358. return 0
  359. }
  360. type StandardReply struct {
  361. state protoimpl.MessageState
  362. sizeCache protoimpl.SizeCache
  363. unknownFields protoimpl.UnknownFields
  364. JsonRst string `protobuf:"bytes,1,opt,name=jsonRst,proto3" json:"jsonRst,omitempty"`
  365. Sign string `protobuf:"bytes,2,opt,name=sign,proto3" json:"sign,omitempty"`
  366. }
  367. func (x *StandardReply) Reset() {
  368. *x = StandardReply{}
  369. if protoimpl.UnsafeEnabled {
  370. mi := &file_base_proto_msgTypes[4]
  371. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  372. ms.StoreMessageInfo(mi)
  373. }
  374. }
  375. func (x *StandardReply) String() string {
  376. return protoimpl.X.MessageStringOf(x)
  377. }
  378. func (*StandardReply) ProtoMessage() {}
  379. func (x *StandardReply) ProtoReflect() protoreflect.Message {
  380. mi := &file_base_proto_msgTypes[4]
  381. if protoimpl.UnsafeEnabled && x != nil {
  382. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  383. if ms.LoadMessageInfo() == nil {
  384. ms.StoreMessageInfo(mi)
  385. }
  386. return ms
  387. }
  388. return mi.MessageOf(x)
  389. }
  390. // Deprecated: Use StandardReply.ProtoReflect.Descriptor instead.
  391. func (*StandardReply) Descriptor() ([]byte, []int) {
  392. return file_base_proto_rawDescGZIP(), []int{4}
  393. }
  394. func (x *StandardReply) GetJsonRst() string {
  395. if x != nil {
  396. return x.JsonRst
  397. }
  398. return ""
  399. }
  400. func (x *StandardReply) GetSign() string {
  401. if x != nil {
  402. return x.Sign
  403. }
  404. return ""
  405. }
  406. type SignUpRequest struct {
  407. state protoimpl.MessageState
  408. sizeCache protoimpl.SizeCache
  409. unknownFields protoimpl.UnknownFields
  410. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  411. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  412. }
  413. func (x *SignUpRequest) Reset() {
  414. *x = SignUpRequest{}
  415. if protoimpl.UnsafeEnabled {
  416. mi := &file_base_proto_msgTypes[5]
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. ms.StoreMessageInfo(mi)
  419. }
  420. }
  421. func (x *SignUpRequest) String() string {
  422. return protoimpl.X.MessageStringOf(x)
  423. }
  424. func (*SignUpRequest) ProtoMessage() {}
  425. func (x *SignUpRequest) ProtoReflect() protoreflect.Message {
  426. mi := &file_base_proto_msgTypes[5]
  427. if protoimpl.UnsafeEnabled && x != nil {
  428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  429. if ms.LoadMessageInfo() == nil {
  430. ms.StoreMessageInfo(mi)
  431. }
  432. return ms
  433. }
  434. return mi.MessageOf(x)
  435. }
  436. // Deprecated: Use SignUpRequest.ProtoReflect.Descriptor instead.
  437. func (*SignUpRequest) Descriptor() ([]byte, []int) {
  438. return file_base_proto_rawDescGZIP(), []int{5}
  439. }
  440. func (x *SignUpRequest) GetName() string {
  441. if x != nil {
  442. return x.Name
  443. }
  444. return ""
  445. }
  446. func (x *SignUpRequest) GetPassword() string {
  447. if x != nil {
  448. return x.Password
  449. }
  450. return ""
  451. }
  452. type SignInReply struct {
  453. state protoimpl.MessageState
  454. sizeCache protoimpl.SizeCache
  455. unknownFields protoimpl.UnknownFields
  456. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  457. }
  458. func (x *SignInReply) Reset() {
  459. *x = SignInReply{}
  460. if protoimpl.UnsafeEnabled {
  461. mi := &file_base_proto_msgTypes[6]
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. ms.StoreMessageInfo(mi)
  464. }
  465. }
  466. func (x *SignInReply) String() string {
  467. return protoimpl.X.MessageStringOf(x)
  468. }
  469. func (*SignInReply) ProtoMessage() {}
  470. func (x *SignInReply) ProtoReflect() protoreflect.Message {
  471. mi := &file_base_proto_msgTypes[6]
  472. if protoimpl.UnsafeEnabled && x != nil {
  473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  474. if ms.LoadMessageInfo() == nil {
  475. ms.StoreMessageInfo(mi)
  476. }
  477. return ms
  478. }
  479. return mi.MessageOf(x)
  480. }
  481. // Deprecated: Use SignInReply.ProtoReflect.Descriptor instead.
  482. func (*SignInReply) Descriptor() ([]byte, []int) {
  483. return file_base_proto_rawDescGZIP(), []int{6}
  484. }
  485. func (x *SignInReply) GetToken() string {
  486. if x != nil {
  487. return x.Token
  488. }
  489. return ""
  490. }
  491. type SignInRequest struct {
  492. state protoimpl.MessageState
  493. sizeCache protoimpl.SizeCache
  494. unknownFields protoimpl.UnknownFields
  495. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  496. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  497. CodeId string `protobuf:"bytes,3,opt,name=codeId,proto3" json:"codeId,omitempty"`
  498. VerifyCode string `protobuf:"bytes,4,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
  499. }
  500. func (x *SignInRequest) Reset() {
  501. *x = SignInRequest{}
  502. if protoimpl.UnsafeEnabled {
  503. mi := &file_base_proto_msgTypes[7]
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. ms.StoreMessageInfo(mi)
  506. }
  507. }
  508. func (x *SignInRequest) String() string {
  509. return protoimpl.X.MessageStringOf(x)
  510. }
  511. func (*SignInRequest) ProtoMessage() {}
  512. func (x *SignInRequest) ProtoReflect() protoreflect.Message {
  513. mi := &file_base_proto_msgTypes[7]
  514. if protoimpl.UnsafeEnabled && x != nil {
  515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  516. if ms.LoadMessageInfo() == nil {
  517. ms.StoreMessageInfo(mi)
  518. }
  519. return ms
  520. }
  521. return mi.MessageOf(x)
  522. }
  523. // Deprecated: Use SignInRequest.ProtoReflect.Descriptor instead.
  524. func (*SignInRequest) Descriptor() ([]byte, []int) {
  525. return file_base_proto_rawDescGZIP(), []int{7}
  526. }
  527. func (x *SignInRequest) GetName() string {
  528. if x != nil {
  529. return x.Name
  530. }
  531. return ""
  532. }
  533. func (x *SignInRequest) GetPassword() string {
  534. if x != nil {
  535. return x.Password
  536. }
  537. return ""
  538. }
  539. func (x *SignInRequest) GetCodeId() string {
  540. if x != nil {
  541. return x.CodeId
  542. }
  543. return ""
  544. }
  545. func (x *SignInRequest) GetVerifyCode() string {
  546. if x != nil {
  547. return x.VerifyCode
  548. }
  549. return ""
  550. }
  551. type GenVerifyImageRequest struct {
  552. state protoimpl.MessageState
  553. sizeCache protoimpl.SizeCache
  554. unknownFields protoimpl.UnknownFields
  555. Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
  556. Width int32 `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
  557. }
  558. func (x *GenVerifyImageRequest) Reset() {
  559. *x = GenVerifyImageRequest{}
  560. if protoimpl.UnsafeEnabled {
  561. mi := &file_base_proto_msgTypes[8]
  562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  563. ms.StoreMessageInfo(mi)
  564. }
  565. }
  566. func (x *GenVerifyImageRequest) String() string {
  567. return protoimpl.X.MessageStringOf(x)
  568. }
  569. func (*GenVerifyImageRequest) ProtoMessage() {}
  570. func (x *GenVerifyImageRequest) ProtoReflect() protoreflect.Message {
  571. mi := &file_base_proto_msgTypes[8]
  572. if protoimpl.UnsafeEnabled && x != nil {
  573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  574. if ms.LoadMessageInfo() == nil {
  575. ms.StoreMessageInfo(mi)
  576. }
  577. return ms
  578. }
  579. return mi.MessageOf(x)
  580. }
  581. // Deprecated: Use GenVerifyImageRequest.ProtoReflect.Descriptor instead.
  582. func (*GenVerifyImageRequest) Descriptor() ([]byte, []int) {
  583. return file_base_proto_rawDescGZIP(), []int{8}
  584. }
  585. func (x *GenVerifyImageRequest) GetHeight() int32 {
  586. if x != nil {
  587. return x.Height
  588. }
  589. return 0
  590. }
  591. func (x *GenVerifyImageRequest) GetWidth() int32 {
  592. if x != nil {
  593. return x.Width
  594. }
  595. return 0
  596. }
  597. type GenVerifyImageReply struct {
  598. state protoimpl.MessageState
  599. sizeCache protoimpl.SizeCache
  600. unknownFields protoimpl.UnknownFields
  601. CodeId string `protobuf:"bytes,1,opt,name=codeId,proto3" json:"codeId,omitempty"`
  602. ImageBase64 string `protobuf:"bytes,2,opt,name=imageBase64,proto3" json:"imageBase64,omitempty"`
  603. }
  604. func (x *GenVerifyImageReply) Reset() {
  605. *x = GenVerifyImageReply{}
  606. if protoimpl.UnsafeEnabled {
  607. mi := &file_base_proto_msgTypes[9]
  608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  609. ms.StoreMessageInfo(mi)
  610. }
  611. }
  612. func (x *GenVerifyImageReply) String() string {
  613. return protoimpl.X.MessageStringOf(x)
  614. }
  615. func (*GenVerifyImageReply) ProtoMessage() {}
  616. func (x *GenVerifyImageReply) ProtoReflect() protoreflect.Message {
  617. mi := &file_base_proto_msgTypes[9]
  618. if protoimpl.UnsafeEnabled && x != nil {
  619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  620. if ms.LoadMessageInfo() == nil {
  621. ms.StoreMessageInfo(mi)
  622. }
  623. return ms
  624. }
  625. return mi.MessageOf(x)
  626. }
  627. // Deprecated: Use GenVerifyImageReply.ProtoReflect.Descriptor instead.
  628. func (*GenVerifyImageReply) Descriptor() ([]byte, []int) {
  629. return file_base_proto_rawDescGZIP(), []int{9}
  630. }
  631. func (x *GenVerifyImageReply) GetCodeId() string {
  632. if x != nil {
  633. return x.CodeId
  634. }
  635. return ""
  636. }
  637. func (x *GenVerifyImageReply) GetImageBase64() string {
  638. if x != nil {
  639. return x.ImageBase64
  640. }
  641. return ""
  642. }
  643. type ShopInfo struct {
  644. state protoimpl.MessageState
  645. sizeCache protoimpl.SizeCache
  646. unknownFields protoimpl.UnknownFields
  647. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  648. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  649. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  650. Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr,omitempty"`
  651. Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
  652. Contacts string `protobuf:"bytes,6,opt,name=contacts,proto3" json:"contacts,omitempty"`
  653. Status WebStatus `protobuf:"varint,7,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  654. CreatedAt string `protobuf:"bytes,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
  655. CreatedUser int64 `protobuf:"varint,9,opt,name=created_user,json=createdUser,proto3" json:"created_user,omitempty"`
  656. UpdatedAt string `protobuf:"bytes,10,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
  657. UpdatedUser int64 `protobuf:"varint,11,opt,name=updated_user,json=updatedUser,proto3" json:"updated_user,omitempty"`
  658. IsHr int64 `protobuf:"varint,12,opt,name=is_hr,json=isHr,proto3" json:"is_hr,omitempty"`
  659. IsScore int64 `protobuf:"varint,13,opt,name=is_score,json=isScore,proto3" json:"is_score,omitempty"`
  660. ShopUUID string `protobuf:"bytes,14,opt,name=shopUUID,proto3" json:"shopUUID,omitempty"`
  661. }
  662. func (x *ShopInfo) Reset() {
  663. *x = ShopInfo{}
  664. if protoimpl.UnsafeEnabled {
  665. mi := &file_base_proto_msgTypes[10]
  666. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  667. ms.StoreMessageInfo(mi)
  668. }
  669. }
  670. func (x *ShopInfo) String() string {
  671. return protoimpl.X.MessageStringOf(x)
  672. }
  673. func (*ShopInfo) ProtoMessage() {}
  674. func (x *ShopInfo) ProtoReflect() protoreflect.Message {
  675. mi := &file_base_proto_msgTypes[10]
  676. if protoimpl.UnsafeEnabled && x != nil {
  677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  678. if ms.LoadMessageInfo() == nil {
  679. ms.StoreMessageInfo(mi)
  680. }
  681. return ms
  682. }
  683. return mi.MessageOf(x)
  684. }
  685. // Deprecated: Use ShopInfo.ProtoReflect.Descriptor instead.
  686. func (*ShopInfo) Descriptor() ([]byte, []int) {
  687. return file_base_proto_rawDescGZIP(), []int{10}
  688. }
  689. func (x *ShopInfo) GetShopId() int64 {
  690. if x != nil {
  691. return x.ShopId
  692. }
  693. return 0
  694. }
  695. func (x *ShopInfo) GetName() string {
  696. if x != nil {
  697. return x.Name
  698. }
  699. return ""
  700. }
  701. func (x *ShopInfo) GetSId() int64 {
  702. if x != nil {
  703. return x.SId
  704. }
  705. return 0
  706. }
  707. func (x *ShopInfo) GetAddr() string {
  708. if x != nil {
  709. return x.Addr
  710. }
  711. return ""
  712. }
  713. func (x *ShopInfo) GetPhone() string {
  714. if x != nil {
  715. return x.Phone
  716. }
  717. return ""
  718. }
  719. func (x *ShopInfo) GetContacts() string {
  720. if x != nil {
  721. return x.Contacts
  722. }
  723. return ""
  724. }
  725. func (x *ShopInfo) GetStatus() WebStatus {
  726. if x != nil {
  727. return x.Status
  728. }
  729. return WebStatus_Ban
  730. }
  731. func (x *ShopInfo) GetCreatedAt() string {
  732. if x != nil {
  733. return x.CreatedAt
  734. }
  735. return ""
  736. }
  737. func (x *ShopInfo) GetCreatedUser() int64 {
  738. if x != nil {
  739. return x.CreatedUser
  740. }
  741. return 0
  742. }
  743. func (x *ShopInfo) GetUpdatedAt() string {
  744. if x != nil {
  745. return x.UpdatedAt
  746. }
  747. return ""
  748. }
  749. func (x *ShopInfo) GetUpdatedUser() int64 {
  750. if x != nil {
  751. return x.UpdatedUser
  752. }
  753. return 0
  754. }
  755. func (x *ShopInfo) GetIsHr() int64 {
  756. if x != nil {
  757. return x.IsHr
  758. }
  759. return 0
  760. }
  761. func (x *ShopInfo) GetIsScore() int64 {
  762. if x != nil {
  763. return x.IsScore
  764. }
  765. return 0
  766. }
  767. func (x *ShopInfo) GetShopUUID() string {
  768. if x != nil {
  769. return x.ShopUUID
  770. }
  771. return ""
  772. }
  773. type ShopDetailRequest struct {
  774. state protoimpl.MessageState
  775. sizeCache protoimpl.SizeCache
  776. unknownFields protoimpl.UnknownFields
  777. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  778. }
  779. func (x *ShopDetailRequest) Reset() {
  780. *x = ShopDetailRequest{}
  781. if protoimpl.UnsafeEnabled {
  782. mi := &file_base_proto_msgTypes[11]
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. ms.StoreMessageInfo(mi)
  785. }
  786. }
  787. func (x *ShopDetailRequest) String() string {
  788. return protoimpl.X.MessageStringOf(x)
  789. }
  790. func (*ShopDetailRequest) ProtoMessage() {}
  791. func (x *ShopDetailRequest) ProtoReflect() protoreflect.Message {
  792. mi := &file_base_proto_msgTypes[11]
  793. if protoimpl.UnsafeEnabled && x != nil {
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. if ms.LoadMessageInfo() == nil {
  796. ms.StoreMessageInfo(mi)
  797. }
  798. return ms
  799. }
  800. return mi.MessageOf(x)
  801. }
  802. // Deprecated: Use ShopDetailRequest.ProtoReflect.Descriptor instead.
  803. func (*ShopDetailRequest) Descriptor() ([]byte, []int) {
  804. return file_base_proto_rawDescGZIP(), []int{11}
  805. }
  806. func (x *ShopDetailRequest) GetShopId() int64 {
  807. if x != nil {
  808. return x.ShopId
  809. }
  810. return 0
  811. }
  812. type ShopListRequest struct {
  813. state protoimpl.MessageState
  814. sizeCache protoimpl.SizeCache
  815. unknownFields protoimpl.UnknownFields
  816. // 模糊查询
  817. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  818. // Status_Null查询全部
  819. Status WebStatus `protobuf:"varint,2,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  820. //上级商家Id, -1 时查询全部
  821. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  822. }
  823. func (x *ShopListRequest) Reset() {
  824. *x = ShopListRequest{}
  825. if protoimpl.UnsafeEnabled {
  826. mi := &file_base_proto_msgTypes[12]
  827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  828. ms.StoreMessageInfo(mi)
  829. }
  830. }
  831. func (x *ShopListRequest) String() string {
  832. return protoimpl.X.MessageStringOf(x)
  833. }
  834. func (*ShopListRequest) ProtoMessage() {}
  835. func (x *ShopListRequest) ProtoReflect() protoreflect.Message {
  836. mi := &file_base_proto_msgTypes[12]
  837. if protoimpl.UnsafeEnabled && x != nil {
  838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  839. if ms.LoadMessageInfo() == nil {
  840. ms.StoreMessageInfo(mi)
  841. }
  842. return ms
  843. }
  844. return mi.MessageOf(x)
  845. }
  846. // Deprecated: Use ShopListRequest.ProtoReflect.Descriptor instead.
  847. func (*ShopListRequest) Descriptor() ([]byte, []int) {
  848. return file_base_proto_rawDescGZIP(), []int{12}
  849. }
  850. func (x *ShopListRequest) GetName() string {
  851. if x != nil {
  852. return x.Name
  853. }
  854. return ""
  855. }
  856. func (x *ShopListRequest) GetStatus() WebStatus {
  857. if x != nil {
  858. return x.Status
  859. }
  860. return WebStatus_Ban
  861. }
  862. func (x *ShopListRequest) GetSId() int64 {
  863. if x != nil {
  864. return x.SId
  865. }
  866. return 0
  867. }
  868. type ShopListReply struct {
  869. state protoimpl.MessageState
  870. sizeCache protoimpl.SizeCache
  871. unknownFields protoimpl.UnknownFields
  872. List []*ShopInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  873. }
  874. func (x *ShopListReply) Reset() {
  875. *x = ShopListReply{}
  876. if protoimpl.UnsafeEnabled {
  877. mi := &file_base_proto_msgTypes[13]
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. ms.StoreMessageInfo(mi)
  880. }
  881. }
  882. func (x *ShopListReply) String() string {
  883. return protoimpl.X.MessageStringOf(x)
  884. }
  885. func (*ShopListReply) ProtoMessage() {}
  886. func (x *ShopListReply) ProtoReflect() protoreflect.Message {
  887. mi := &file_base_proto_msgTypes[13]
  888. if protoimpl.UnsafeEnabled && x != nil {
  889. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  890. if ms.LoadMessageInfo() == nil {
  891. ms.StoreMessageInfo(mi)
  892. }
  893. return ms
  894. }
  895. return mi.MessageOf(x)
  896. }
  897. // Deprecated: Use ShopListReply.ProtoReflect.Descriptor instead.
  898. func (*ShopListReply) Descriptor() ([]byte, []int) {
  899. return file_base_proto_rawDescGZIP(), []int{13}
  900. }
  901. func (x *ShopListReply) GetList() []*ShopInfo {
  902. if x != nil {
  903. return x.List
  904. }
  905. return nil
  906. }
  907. type GetShopNaviRequest struct {
  908. state protoimpl.MessageState
  909. sizeCache protoimpl.SizeCache
  910. unknownFields protoimpl.UnknownFields
  911. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  912. // 最顶层为0
  913. ParentId int64 `protobuf:"varint,2,opt,name=parentId,proto3" json:"parentId,omitempty"`
  914. }
  915. func (x *GetShopNaviRequest) Reset() {
  916. *x = GetShopNaviRequest{}
  917. if protoimpl.UnsafeEnabled {
  918. mi := &file_base_proto_msgTypes[14]
  919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  920. ms.StoreMessageInfo(mi)
  921. }
  922. }
  923. func (x *GetShopNaviRequest) String() string {
  924. return protoimpl.X.MessageStringOf(x)
  925. }
  926. func (*GetShopNaviRequest) ProtoMessage() {}
  927. func (x *GetShopNaviRequest) ProtoReflect() protoreflect.Message {
  928. mi := &file_base_proto_msgTypes[14]
  929. if protoimpl.UnsafeEnabled && x != nil {
  930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  931. if ms.LoadMessageInfo() == nil {
  932. ms.StoreMessageInfo(mi)
  933. }
  934. return ms
  935. }
  936. return mi.MessageOf(x)
  937. }
  938. // Deprecated: Use GetShopNaviRequest.ProtoReflect.Descriptor instead.
  939. func (*GetShopNaviRequest) Descriptor() ([]byte, []int) {
  940. return file_base_proto_rawDescGZIP(), []int{14}
  941. }
  942. func (x *GetShopNaviRequest) GetShopId() int64 {
  943. if x != nil {
  944. return x.ShopId
  945. }
  946. return 0
  947. }
  948. func (x *GetShopNaviRequest) GetParentId() int64 {
  949. if x != nil {
  950. return x.ParentId
  951. }
  952. return 0
  953. }
  954. type GetShopNaviAllRequest struct {
  955. state protoimpl.MessageState
  956. sizeCache protoimpl.SizeCache
  957. unknownFields protoimpl.UnknownFields
  958. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  959. }
  960. func (x *GetShopNaviAllRequest) Reset() {
  961. *x = GetShopNaviAllRequest{}
  962. if protoimpl.UnsafeEnabled {
  963. mi := &file_base_proto_msgTypes[15]
  964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  965. ms.StoreMessageInfo(mi)
  966. }
  967. }
  968. func (x *GetShopNaviAllRequest) String() string {
  969. return protoimpl.X.MessageStringOf(x)
  970. }
  971. func (*GetShopNaviAllRequest) ProtoMessage() {}
  972. func (x *GetShopNaviAllRequest) ProtoReflect() protoreflect.Message {
  973. mi := &file_base_proto_msgTypes[15]
  974. if protoimpl.UnsafeEnabled && x != nil {
  975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  976. if ms.LoadMessageInfo() == nil {
  977. ms.StoreMessageInfo(mi)
  978. }
  979. return ms
  980. }
  981. return mi.MessageOf(x)
  982. }
  983. // Deprecated: Use GetShopNaviAllRequest.ProtoReflect.Descriptor instead.
  984. func (*GetShopNaviAllRequest) Descriptor() ([]byte, []int) {
  985. return file_base_proto_rawDescGZIP(), []int{15}
  986. }
  987. func (x *GetShopNaviAllRequest) GetShopId() int64 {
  988. if x != nil {
  989. return x.ShopId
  990. }
  991. return 0
  992. }
  993. type Column struct {
  994. state protoimpl.MessageState
  995. sizeCache protoimpl.SizeCache
  996. unknownFields protoimpl.UnknownFields
  997. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  998. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  999. Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
  1000. // 顺序
  1001. Sn int32 `protobuf:"varint,4,opt,name=sn,proto3" json:"sn,omitempty"`
  1002. Status WebStatus `protobuf:"varint,5,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  1003. NavShow bool `protobuf:"varint,6,opt,name=navShow,proto3" json:"navShow,omitempty"`
  1004. Id string `protobuf:"bytes,7,opt,name=id,proto3" json:"id,omitempty"`
  1005. Icon string `protobuf:"bytes,8,opt,name=icon,proto3" json:"icon,omitempty"`
  1006. }
  1007. func (x *Column) Reset() {
  1008. *x = Column{}
  1009. if protoimpl.UnsafeEnabled {
  1010. mi := &file_base_proto_msgTypes[16]
  1011. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1012. ms.StoreMessageInfo(mi)
  1013. }
  1014. }
  1015. func (x *Column) String() string {
  1016. return protoimpl.X.MessageStringOf(x)
  1017. }
  1018. func (*Column) ProtoMessage() {}
  1019. func (x *Column) ProtoReflect() protoreflect.Message {
  1020. mi := &file_base_proto_msgTypes[16]
  1021. if protoimpl.UnsafeEnabled && x != nil {
  1022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1023. if ms.LoadMessageInfo() == nil {
  1024. ms.StoreMessageInfo(mi)
  1025. }
  1026. return ms
  1027. }
  1028. return mi.MessageOf(x)
  1029. }
  1030. // Deprecated: Use Column.ProtoReflect.Descriptor instead.
  1031. func (*Column) Descriptor() ([]byte, []int) {
  1032. return file_base_proto_rawDescGZIP(), []int{16}
  1033. }
  1034. func (x *Column) GetName() string {
  1035. if x != nil {
  1036. return x.Name
  1037. }
  1038. return ""
  1039. }
  1040. func (x *Column) GetUrl() string {
  1041. if x != nil {
  1042. return x.Url
  1043. }
  1044. return ""
  1045. }
  1046. func (x *Column) GetCode() string {
  1047. if x != nil {
  1048. return x.Code
  1049. }
  1050. return ""
  1051. }
  1052. func (x *Column) GetSn() int32 {
  1053. if x != nil {
  1054. return x.Sn
  1055. }
  1056. return 0
  1057. }
  1058. func (x *Column) GetStatus() WebStatus {
  1059. if x != nil {
  1060. return x.Status
  1061. }
  1062. return WebStatus_Ban
  1063. }
  1064. func (x *Column) GetNavShow() bool {
  1065. if x != nil {
  1066. return x.NavShow
  1067. }
  1068. return false
  1069. }
  1070. func (x *Column) GetId() string {
  1071. if x != nil {
  1072. return x.Id
  1073. }
  1074. return ""
  1075. }
  1076. func (x *Column) GetIcon() string {
  1077. if x != nil {
  1078. return x.Icon
  1079. }
  1080. return ""
  1081. }
  1082. type GetShopNaviReply struct {
  1083. state protoimpl.MessageState
  1084. sizeCache protoimpl.SizeCache
  1085. unknownFields protoimpl.UnknownFields
  1086. List []*Column `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1087. }
  1088. func (x *GetShopNaviReply) Reset() {
  1089. *x = GetShopNaviReply{}
  1090. if protoimpl.UnsafeEnabled {
  1091. mi := &file_base_proto_msgTypes[17]
  1092. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1093. ms.StoreMessageInfo(mi)
  1094. }
  1095. }
  1096. func (x *GetShopNaviReply) String() string {
  1097. return protoimpl.X.MessageStringOf(x)
  1098. }
  1099. func (*GetShopNaviReply) ProtoMessage() {}
  1100. func (x *GetShopNaviReply) ProtoReflect() protoreflect.Message {
  1101. mi := &file_base_proto_msgTypes[17]
  1102. if protoimpl.UnsafeEnabled && x != nil {
  1103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1104. if ms.LoadMessageInfo() == nil {
  1105. ms.StoreMessageInfo(mi)
  1106. }
  1107. return ms
  1108. }
  1109. return mi.MessageOf(x)
  1110. }
  1111. // Deprecated: Use GetShopNaviReply.ProtoReflect.Descriptor instead.
  1112. func (*GetShopNaviReply) Descriptor() ([]byte, []int) {
  1113. return file_base_proto_rawDescGZIP(), []int{17}
  1114. }
  1115. func (x *GetShopNaviReply) GetList() []*Column {
  1116. if x != nil {
  1117. return x.List
  1118. }
  1119. return nil
  1120. }
  1121. type GetShopNaviAllReply struct {
  1122. state protoimpl.MessageState
  1123. sizeCache protoimpl.SizeCache
  1124. unknownFields protoimpl.UnknownFields
  1125. ColumnRs string `protobuf:"bytes,1,opt,name=ColumnRs,proto3" json:"ColumnRs,omitempty"`
  1126. }
  1127. func (x *GetShopNaviAllReply) Reset() {
  1128. *x = GetShopNaviAllReply{}
  1129. if protoimpl.UnsafeEnabled {
  1130. mi := &file_base_proto_msgTypes[18]
  1131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1132. ms.StoreMessageInfo(mi)
  1133. }
  1134. }
  1135. func (x *GetShopNaviAllReply) String() string {
  1136. return protoimpl.X.MessageStringOf(x)
  1137. }
  1138. func (*GetShopNaviAllReply) ProtoMessage() {}
  1139. func (x *GetShopNaviAllReply) ProtoReflect() protoreflect.Message {
  1140. mi := &file_base_proto_msgTypes[18]
  1141. if protoimpl.UnsafeEnabled && x != nil {
  1142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1143. if ms.LoadMessageInfo() == nil {
  1144. ms.StoreMessageInfo(mi)
  1145. }
  1146. return ms
  1147. }
  1148. return mi.MessageOf(x)
  1149. }
  1150. // Deprecated: Use GetShopNaviAllReply.ProtoReflect.Descriptor instead.
  1151. func (*GetShopNaviAllReply) Descriptor() ([]byte, []int) {
  1152. return file_base_proto_rawDescGZIP(), []int{18}
  1153. }
  1154. func (x *GetShopNaviAllReply) GetColumnRs() string {
  1155. if x != nil {
  1156. return x.ColumnRs
  1157. }
  1158. return ""
  1159. }
  1160. type GetOverlayImgRequest struct {
  1161. state protoimpl.MessageState
  1162. sizeCache protoimpl.SizeCache
  1163. unknownFields protoimpl.UnknownFields
  1164. FileName string `protobuf:"bytes,1,opt,name=fileName,proto3" json:"fileName,omitempty"`
  1165. }
  1166. func (x *GetOverlayImgRequest) Reset() {
  1167. *x = GetOverlayImgRequest{}
  1168. if protoimpl.UnsafeEnabled {
  1169. mi := &file_base_proto_msgTypes[19]
  1170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1171. ms.StoreMessageInfo(mi)
  1172. }
  1173. }
  1174. func (x *GetOverlayImgRequest) String() string {
  1175. return protoimpl.X.MessageStringOf(x)
  1176. }
  1177. func (*GetOverlayImgRequest) ProtoMessage() {}
  1178. func (x *GetOverlayImgRequest) ProtoReflect() protoreflect.Message {
  1179. mi := &file_base_proto_msgTypes[19]
  1180. if protoimpl.UnsafeEnabled && x != nil {
  1181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1182. if ms.LoadMessageInfo() == nil {
  1183. ms.StoreMessageInfo(mi)
  1184. }
  1185. return ms
  1186. }
  1187. return mi.MessageOf(x)
  1188. }
  1189. // Deprecated: Use GetOverlayImgRequest.ProtoReflect.Descriptor instead.
  1190. func (*GetOverlayImgRequest) Descriptor() ([]byte, []int) {
  1191. return file_base_proto_rawDescGZIP(), []int{19}
  1192. }
  1193. func (x *GetOverlayImgRequest) GetFileName() string {
  1194. if x != nil {
  1195. return x.FileName
  1196. }
  1197. return ""
  1198. }
  1199. type QiNiuTokenReply struct {
  1200. state protoimpl.MessageState
  1201. sizeCache protoimpl.SizeCache
  1202. unknownFields protoimpl.UnknownFields
  1203. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  1204. }
  1205. func (x *QiNiuTokenReply) Reset() {
  1206. *x = QiNiuTokenReply{}
  1207. if protoimpl.UnsafeEnabled {
  1208. mi := &file_base_proto_msgTypes[20]
  1209. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1210. ms.StoreMessageInfo(mi)
  1211. }
  1212. }
  1213. func (x *QiNiuTokenReply) String() string {
  1214. return protoimpl.X.MessageStringOf(x)
  1215. }
  1216. func (*QiNiuTokenReply) ProtoMessage() {}
  1217. func (x *QiNiuTokenReply) ProtoReflect() protoreflect.Message {
  1218. mi := &file_base_proto_msgTypes[20]
  1219. if protoimpl.UnsafeEnabled && x != nil {
  1220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1221. if ms.LoadMessageInfo() == nil {
  1222. ms.StoreMessageInfo(mi)
  1223. }
  1224. return ms
  1225. }
  1226. return mi.MessageOf(x)
  1227. }
  1228. // Deprecated: Use QiNiuTokenReply.ProtoReflect.Descriptor instead.
  1229. func (*QiNiuTokenReply) Descriptor() ([]byte, []int) {
  1230. return file_base_proto_rawDescGZIP(), []int{20}
  1231. }
  1232. func (x *QiNiuTokenReply) GetToken() string {
  1233. if x != nil {
  1234. return x.Token
  1235. }
  1236. return ""
  1237. }
  1238. type License struct {
  1239. state protoimpl.MessageState
  1240. sizeCache protoimpl.SizeCache
  1241. unknownFields protoimpl.UnknownFields
  1242. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1243. ShopId int64 `protobuf:"varint,2,opt,name=shopId,proto3" json:"shopId,omitempty"`
  1244. LcsTypeId int64 `protobuf:"varint,3,opt,name=lcsTypeId,proto3" json:"lcsTypeId,omitempty"`
  1245. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  1246. // nanoSec
  1247. ValidPeriod int64 `protobuf:"varint,5,opt,name=validPeriod,proto3" json:"validPeriod,omitempty"`
  1248. // 分
  1249. LcsPrice int64 `protobuf:"varint,6,opt,name=lcsPrice,proto3" json:"lcsPrice,omitempty"`
  1250. // nanoSec
  1251. LcsBeginTime int64 `protobuf:"varint,7,opt,name=lcsBeginTime,proto3" json:"lcsBeginTime,omitempty"`
  1252. // nanoSec
  1253. LcsEndTime int64 `protobuf:"varint,8,opt,name=lcsEndTime,proto3" json:"lcsEndTime,omitempty"`
  1254. FeeId int64 `protobuf:"varint,9,opt,name=feeId,proto3" json:"feeId,omitempty"`
  1255. Status WebStatus `protobuf:"varint,10,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  1256. Memo string `protobuf:"bytes,11,opt,name=memo,proto3" json:"memo,omitempty"`
  1257. // nanoSec
  1258. CreatedAt int64 `protobuf:"varint,12,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
  1259. CreatedUser int64 `protobuf:"varint,13,opt,name=createdUser,proto3" json:"createdUser,omitempty"`
  1260. // nanoSec
  1261. UpdatedAt int64 `protobuf:"varint,14,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
  1262. UpdatedUser int64 `protobuf:"varint,15,opt,name=updatedUser,proto3" json:"updatedUser,omitempty"`
  1263. }
  1264. func (x *License) Reset() {
  1265. *x = License{}
  1266. if protoimpl.UnsafeEnabled {
  1267. mi := &file_base_proto_msgTypes[21]
  1268. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1269. ms.StoreMessageInfo(mi)
  1270. }
  1271. }
  1272. func (x *License) String() string {
  1273. return protoimpl.X.MessageStringOf(x)
  1274. }
  1275. func (*License) ProtoMessage() {}
  1276. func (x *License) ProtoReflect() protoreflect.Message {
  1277. mi := &file_base_proto_msgTypes[21]
  1278. if protoimpl.UnsafeEnabled && x != nil {
  1279. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1280. if ms.LoadMessageInfo() == nil {
  1281. ms.StoreMessageInfo(mi)
  1282. }
  1283. return ms
  1284. }
  1285. return mi.MessageOf(x)
  1286. }
  1287. // Deprecated: Use License.ProtoReflect.Descriptor instead.
  1288. func (*License) Descriptor() ([]byte, []int) {
  1289. return file_base_proto_rawDescGZIP(), []int{21}
  1290. }
  1291. func (x *License) GetId() int64 {
  1292. if x != nil {
  1293. return x.Id
  1294. }
  1295. return 0
  1296. }
  1297. func (x *License) GetShopId() int64 {
  1298. if x != nil {
  1299. return x.ShopId
  1300. }
  1301. return 0
  1302. }
  1303. func (x *License) GetLcsTypeId() int64 {
  1304. if x != nil {
  1305. return x.LcsTypeId
  1306. }
  1307. return 0
  1308. }
  1309. func (x *License) GetName() string {
  1310. if x != nil {
  1311. return x.Name
  1312. }
  1313. return ""
  1314. }
  1315. func (x *License) GetValidPeriod() int64 {
  1316. if x != nil {
  1317. return x.ValidPeriod
  1318. }
  1319. return 0
  1320. }
  1321. func (x *License) GetLcsPrice() int64 {
  1322. if x != nil {
  1323. return x.LcsPrice
  1324. }
  1325. return 0
  1326. }
  1327. func (x *License) GetLcsBeginTime() int64 {
  1328. if x != nil {
  1329. return x.LcsBeginTime
  1330. }
  1331. return 0
  1332. }
  1333. func (x *License) GetLcsEndTime() int64 {
  1334. if x != nil {
  1335. return x.LcsEndTime
  1336. }
  1337. return 0
  1338. }
  1339. func (x *License) GetFeeId() int64 {
  1340. if x != nil {
  1341. return x.FeeId
  1342. }
  1343. return 0
  1344. }
  1345. func (x *License) GetStatus() WebStatus {
  1346. if x != nil {
  1347. return x.Status
  1348. }
  1349. return WebStatus_Ban
  1350. }
  1351. func (x *License) GetMemo() string {
  1352. if x != nil {
  1353. return x.Memo
  1354. }
  1355. return ""
  1356. }
  1357. func (x *License) GetCreatedAt() int64 {
  1358. if x != nil {
  1359. return x.CreatedAt
  1360. }
  1361. return 0
  1362. }
  1363. func (x *License) GetCreatedUser() int64 {
  1364. if x != nil {
  1365. return x.CreatedUser
  1366. }
  1367. return 0
  1368. }
  1369. func (x *License) GetUpdatedAt() int64 {
  1370. if x != nil {
  1371. return x.UpdatedAt
  1372. }
  1373. return 0
  1374. }
  1375. func (x *License) GetUpdatedUser() int64 {
  1376. if x != nil {
  1377. return x.UpdatedUser
  1378. }
  1379. return 0
  1380. }
  1381. type LicenseList struct {
  1382. state protoimpl.MessageState
  1383. sizeCache protoimpl.SizeCache
  1384. unknownFields protoimpl.UnknownFields
  1385. List []*License `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1386. }
  1387. func (x *LicenseList) Reset() {
  1388. *x = LicenseList{}
  1389. if protoimpl.UnsafeEnabled {
  1390. mi := &file_base_proto_msgTypes[22]
  1391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1392. ms.StoreMessageInfo(mi)
  1393. }
  1394. }
  1395. func (x *LicenseList) String() string {
  1396. return protoimpl.X.MessageStringOf(x)
  1397. }
  1398. func (*LicenseList) ProtoMessage() {}
  1399. func (x *LicenseList) ProtoReflect() protoreflect.Message {
  1400. mi := &file_base_proto_msgTypes[22]
  1401. if protoimpl.UnsafeEnabled && x != nil {
  1402. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1403. if ms.LoadMessageInfo() == nil {
  1404. ms.StoreMessageInfo(mi)
  1405. }
  1406. return ms
  1407. }
  1408. return mi.MessageOf(x)
  1409. }
  1410. // Deprecated: Use LicenseList.ProtoReflect.Descriptor instead.
  1411. func (*LicenseList) Descriptor() ([]byte, []int) {
  1412. return file_base_proto_rawDescGZIP(), []int{22}
  1413. }
  1414. func (x *LicenseList) GetList() []*License {
  1415. if x != nil {
  1416. return x.List
  1417. }
  1418. return nil
  1419. }
  1420. type IdList struct {
  1421. state protoimpl.MessageState
  1422. sizeCache protoimpl.SizeCache
  1423. unknownFields protoimpl.UnknownFields
  1424. IdList []int64 `protobuf:"varint,1,rep,packed,name=idList,proto3" json:"idList,omitempty"`
  1425. }
  1426. func (x *IdList) Reset() {
  1427. *x = IdList{}
  1428. if protoimpl.UnsafeEnabled {
  1429. mi := &file_base_proto_msgTypes[23]
  1430. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1431. ms.StoreMessageInfo(mi)
  1432. }
  1433. }
  1434. func (x *IdList) String() string {
  1435. return protoimpl.X.MessageStringOf(x)
  1436. }
  1437. func (*IdList) ProtoMessage() {}
  1438. func (x *IdList) ProtoReflect() protoreflect.Message {
  1439. mi := &file_base_proto_msgTypes[23]
  1440. if protoimpl.UnsafeEnabled && x != nil {
  1441. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1442. if ms.LoadMessageInfo() == nil {
  1443. ms.StoreMessageInfo(mi)
  1444. }
  1445. return ms
  1446. }
  1447. return mi.MessageOf(x)
  1448. }
  1449. // Deprecated: Use IdList.ProtoReflect.Descriptor instead.
  1450. func (*IdList) Descriptor() ([]byte, []int) {
  1451. return file_base_proto_rawDescGZIP(), []int{23}
  1452. }
  1453. func (x *IdList) GetIdList() []int64 {
  1454. if x != nil {
  1455. return x.IdList
  1456. }
  1457. return nil
  1458. }
  1459. type LicenseType struct {
  1460. state protoimpl.MessageState
  1461. sizeCache protoimpl.SizeCache
  1462. unknownFields protoimpl.UnknownFields
  1463. TypeId int64 `protobuf:"varint,1,opt,name=typeId,proto3" json:"typeId,omitempty"`
  1464. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1465. // 有效期时长,单位毫秒
  1466. ValidPeriodMs int64 `protobuf:"varint,3,opt,name=validPeriodMs,proto3" json:"validPeriodMs,omitempty"`
  1467. // 单位:分
  1468. Price int32 `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
  1469. Memo string `protobuf:"bytes,5,opt,name=memo,proto3" json:"memo,omitempty"`
  1470. ExecUser int64 `protobuf:"varint,6,opt,name=execUser,proto3" json:"execUser,omitempty"`
  1471. Status WebStatus `protobuf:"varint,7,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  1472. }
  1473. func (x *LicenseType) Reset() {
  1474. *x = LicenseType{}
  1475. if protoimpl.UnsafeEnabled {
  1476. mi := &file_base_proto_msgTypes[24]
  1477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1478. ms.StoreMessageInfo(mi)
  1479. }
  1480. }
  1481. func (x *LicenseType) String() string {
  1482. return protoimpl.X.MessageStringOf(x)
  1483. }
  1484. func (*LicenseType) ProtoMessage() {}
  1485. func (x *LicenseType) ProtoReflect() protoreflect.Message {
  1486. mi := &file_base_proto_msgTypes[24]
  1487. if protoimpl.UnsafeEnabled && x != nil {
  1488. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1489. if ms.LoadMessageInfo() == nil {
  1490. ms.StoreMessageInfo(mi)
  1491. }
  1492. return ms
  1493. }
  1494. return mi.MessageOf(x)
  1495. }
  1496. // Deprecated: Use LicenseType.ProtoReflect.Descriptor instead.
  1497. func (*LicenseType) Descriptor() ([]byte, []int) {
  1498. return file_base_proto_rawDescGZIP(), []int{24}
  1499. }
  1500. func (x *LicenseType) GetTypeId() int64 {
  1501. if x != nil {
  1502. return x.TypeId
  1503. }
  1504. return 0
  1505. }
  1506. func (x *LicenseType) GetName() string {
  1507. if x != nil {
  1508. return x.Name
  1509. }
  1510. return ""
  1511. }
  1512. func (x *LicenseType) GetValidPeriodMs() int64 {
  1513. if x != nil {
  1514. return x.ValidPeriodMs
  1515. }
  1516. return 0
  1517. }
  1518. func (x *LicenseType) GetPrice() int32 {
  1519. if x != nil {
  1520. return x.Price
  1521. }
  1522. return 0
  1523. }
  1524. func (x *LicenseType) GetMemo() string {
  1525. if x != nil {
  1526. return x.Memo
  1527. }
  1528. return ""
  1529. }
  1530. func (x *LicenseType) GetExecUser() int64 {
  1531. if x != nil {
  1532. return x.ExecUser
  1533. }
  1534. return 0
  1535. }
  1536. func (x *LicenseType) GetStatus() WebStatus {
  1537. if x != nil {
  1538. return x.Status
  1539. }
  1540. return WebStatus_Ban
  1541. }
  1542. type LicenseTypeMapReply struct {
  1543. state protoimpl.MessageState
  1544. sizeCache protoimpl.SizeCache
  1545. unknownFields protoimpl.UnknownFields
  1546. LicenseMap map[int64]*LicenseType `protobuf:"bytes,1,rep,name=licenseMap,proto3" json:"licenseMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1547. }
  1548. func (x *LicenseTypeMapReply) Reset() {
  1549. *x = LicenseTypeMapReply{}
  1550. if protoimpl.UnsafeEnabled {
  1551. mi := &file_base_proto_msgTypes[25]
  1552. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1553. ms.StoreMessageInfo(mi)
  1554. }
  1555. }
  1556. func (x *LicenseTypeMapReply) String() string {
  1557. return protoimpl.X.MessageStringOf(x)
  1558. }
  1559. func (*LicenseTypeMapReply) ProtoMessage() {}
  1560. func (x *LicenseTypeMapReply) ProtoReflect() protoreflect.Message {
  1561. mi := &file_base_proto_msgTypes[25]
  1562. if protoimpl.UnsafeEnabled && x != nil {
  1563. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1564. if ms.LoadMessageInfo() == nil {
  1565. ms.StoreMessageInfo(mi)
  1566. }
  1567. return ms
  1568. }
  1569. return mi.MessageOf(x)
  1570. }
  1571. // Deprecated: Use LicenseTypeMapReply.ProtoReflect.Descriptor instead.
  1572. func (*LicenseTypeMapReply) Descriptor() ([]byte, []int) {
  1573. return file_base_proto_rawDescGZIP(), []int{25}
  1574. }
  1575. func (x *LicenseTypeMapReply) GetLicenseMap() map[int64]*LicenseType {
  1576. if x != nil {
  1577. return x.LicenseMap
  1578. }
  1579. return nil
  1580. }
  1581. type GenPhoneVerifyCodeRequestWX struct {
  1582. state protoimpl.MessageState
  1583. sizeCache protoimpl.SizeCache
  1584. unknownFields protoimpl.UnknownFields
  1585. VerifyType VerifyType `protobuf:"varint,1,opt,name=verifyType,proto3,enum=base.VerifyType" json:"verifyType,omitempty"`
  1586. Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
  1587. //上级商家ID,必传,写入到微信代码中
  1588. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  1589. CodeId string `protobuf:"bytes,4,opt,name=codeId,proto3" json:"codeId,omitempty"`
  1590. ImgCode string `protobuf:"bytes,5,opt,name=imgCode,proto3" json:"imgCode,omitempty"`
  1591. }
  1592. func (x *GenPhoneVerifyCodeRequestWX) Reset() {
  1593. *x = GenPhoneVerifyCodeRequestWX{}
  1594. if protoimpl.UnsafeEnabled {
  1595. mi := &file_base_proto_msgTypes[26]
  1596. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1597. ms.StoreMessageInfo(mi)
  1598. }
  1599. }
  1600. func (x *GenPhoneVerifyCodeRequestWX) String() string {
  1601. return protoimpl.X.MessageStringOf(x)
  1602. }
  1603. func (*GenPhoneVerifyCodeRequestWX) ProtoMessage() {}
  1604. func (x *GenPhoneVerifyCodeRequestWX) ProtoReflect() protoreflect.Message {
  1605. mi := &file_base_proto_msgTypes[26]
  1606. if protoimpl.UnsafeEnabled && x != nil {
  1607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1608. if ms.LoadMessageInfo() == nil {
  1609. ms.StoreMessageInfo(mi)
  1610. }
  1611. return ms
  1612. }
  1613. return mi.MessageOf(x)
  1614. }
  1615. // Deprecated: Use GenPhoneVerifyCodeRequestWX.ProtoReflect.Descriptor instead.
  1616. func (*GenPhoneVerifyCodeRequestWX) Descriptor() ([]byte, []int) {
  1617. return file_base_proto_rawDescGZIP(), []int{26}
  1618. }
  1619. func (x *GenPhoneVerifyCodeRequestWX) GetVerifyType() VerifyType {
  1620. if x != nil {
  1621. return x.VerifyType
  1622. }
  1623. return VerifyType_Undefined
  1624. }
  1625. func (x *GenPhoneVerifyCodeRequestWX) GetAccount() string {
  1626. if x != nil {
  1627. return x.Account
  1628. }
  1629. return ""
  1630. }
  1631. func (x *GenPhoneVerifyCodeRequestWX) GetSId() int64 {
  1632. if x != nil {
  1633. return x.SId
  1634. }
  1635. return 0
  1636. }
  1637. func (x *GenPhoneVerifyCodeRequestWX) GetCodeId() string {
  1638. if x != nil {
  1639. return x.CodeId
  1640. }
  1641. return ""
  1642. }
  1643. func (x *GenPhoneVerifyCodeRequestWX) GetImgCode() string {
  1644. if x != nil {
  1645. return x.ImgCode
  1646. }
  1647. return ""
  1648. }
  1649. type CheckVerifyCodeRequest struct {
  1650. state protoimpl.MessageState
  1651. sizeCache protoimpl.SizeCache
  1652. unknownFields protoimpl.UnknownFields
  1653. VerifyType VerifyType `protobuf:"varint,1,opt,name=verifyType,proto3,enum=base.VerifyType" json:"verifyType,omitempty"`
  1654. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
  1655. Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
  1656. }
  1657. func (x *CheckVerifyCodeRequest) Reset() {
  1658. *x = CheckVerifyCodeRequest{}
  1659. if protoimpl.UnsafeEnabled {
  1660. mi := &file_base_proto_msgTypes[27]
  1661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1662. ms.StoreMessageInfo(mi)
  1663. }
  1664. }
  1665. func (x *CheckVerifyCodeRequest) String() string {
  1666. return protoimpl.X.MessageStringOf(x)
  1667. }
  1668. func (*CheckVerifyCodeRequest) ProtoMessage() {}
  1669. func (x *CheckVerifyCodeRequest) ProtoReflect() protoreflect.Message {
  1670. mi := &file_base_proto_msgTypes[27]
  1671. if protoimpl.UnsafeEnabled && x != nil {
  1672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1673. if ms.LoadMessageInfo() == nil {
  1674. ms.StoreMessageInfo(mi)
  1675. }
  1676. return ms
  1677. }
  1678. return mi.MessageOf(x)
  1679. }
  1680. // Deprecated: Use CheckVerifyCodeRequest.ProtoReflect.Descriptor instead.
  1681. func (*CheckVerifyCodeRequest) Descriptor() ([]byte, []int) {
  1682. return file_base_proto_rawDescGZIP(), []int{27}
  1683. }
  1684. func (x *CheckVerifyCodeRequest) GetVerifyType() VerifyType {
  1685. if x != nil {
  1686. return x.VerifyType
  1687. }
  1688. return VerifyType_Undefined
  1689. }
  1690. func (x *CheckVerifyCodeRequest) GetCode() string {
  1691. if x != nil {
  1692. return x.Code
  1693. }
  1694. return ""
  1695. }
  1696. func (x *CheckVerifyCodeRequest) GetAccount() string {
  1697. if x != nil {
  1698. return x.Account
  1699. }
  1700. return ""
  1701. }
  1702. type WeiXinSignInRequest struct {
  1703. state protoimpl.MessageState
  1704. sizeCache protoimpl.SizeCache
  1705. unknownFields protoimpl.UnknownFields
  1706. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  1707. Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
  1708. //上级商家ID,必传,写入到微信代码中
  1709. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  1710. }
  1711. func (x *WeiXinSignInRequest) Reset() {
  1712. *x = WeiXinSignInRequest{}
  1713. if protoimpl.UnsafeEnabled {
  1714. mi := &file_base_proto_msgTypes[28]
  1715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1716. ms.StoreMessageInfo(mi)
  1717. }
  1718. }
  1719. func (x *WeiXinSignInRequest) String() string {
  1720. return protoimpl.X.MessageStringOf(x)
  1721. }
  1722. func (*WeiXinSignInRequest) ProtoMessage() {}
  1723. func (x *WeiXinSignInRequest) ProtoReflect() protoreflect.Message {
  1724. mi := &file_base_proto_msgTypes[28]
  1725. if protoimpl.UnsafeEnabled && x != nil {
  1726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1727. if ms.LoadMessageInfo() == nil {
  1728. ms.StoreMessageInfo(mi)
  1729. }
  1730. return ms
  1731. }
  1732. return mi.MessageOf(x)
  1733. }
  1734. // Deprecated: Use WeiXinSignInRequest.ProtoReflect.Descriptor instead.
  1735. func (*WeiXinSignInRequest) Descriptor() ([]byte, []int) {
  1736. return file_base_proto_rawDescGZIP(), []int{28}
  1737. }
  1738. func (x *WeiXinSignInRequest) GetCode() string {
  1739. if x != nil {
  1740. return x.Code
  1741. }
  1742. return ""
  1743. }
  1744. func (x *WeiXinSignInRequest) GetAccount() string {
  1745. if x != nil {
  1746. return x.Account
  1747. }
  1748. return ""
  1749. }
  1750. func (x *WeiXinSignInRequest) GetSId() int64 {
  1751. if x != nil {
  1752. return x.SId
  1753. }
  1754. return 0
  1755. }
  1756. var File_base_proto protoreflect.FileDescriptor
  1757. var file_base_proto_rawDesc = []byte{
  1758. 0x0a, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x04, 0x62, 0x61,
  1759. 0x73, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71,
  1760. 0x75, 0x65, 0x73, 0x74, 0x22, 0x0e, 0x0a, 0x0c, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52,
  1761. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x57, 0x0a, 0x0f, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1762. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49,
  1763. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12,
  1764. 0x18, 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1765. 0x52, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67,
  1766. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x8b, 0x01,
  1767. 0x0a, 0x15, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1768. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49,
  1769. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12,
  1770. 0x18, 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1771. 0x52, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67,
  1772. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x12, 0x12, 0x0a,
  1773. 0x04, 0x69, 0x73, 0x48, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x69, 0x73, 0x48,
  1774. 0x72, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01,
  1775. 0x28, 0x05, 0x52, 0x07, 0x69, 0x73, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x3d, 0x0a, 0x0d, 0x53,
  1776. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07,
  1777. 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a,
  1778. 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x18, 0x02,
  1779. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x3f, 0x0a, 0x0d, 0x53, 0x69,
  1780. 0x67, 0x6e, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  1781. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1782. 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1783. 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x23, 0x0a, 0x0b, 0x53,
  1784. 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  1785. 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
  1786. 0x22, 0x77, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1787. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1788. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
  1789. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
  1790. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  1791. 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x76, 0x65, 0x72,
  1792. 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x76,
  1793. 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x45, 0x0a, 0x15, 0x47, 0x65, 0x6e,
  1794. 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1795. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x01, 0x20, 0x01,
  1796. 0x28, 0x05, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x77, 0x69,
  1797. 0x64, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68,
  1798. 0x22, 0x4f, 0x0a, 0x13, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61,
  1799. 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49,
  1800. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12,
  1801. 0x20, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x36, 0x34, 0x18, 0x02,
  1802. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x36,
  1803. 0x34, 0x22, 0x87, 0x03, 0x0a, 0x08, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16,
  1804. 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1805. 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  1806. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49,
  1807. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04,
  1808. 0x61, 0x64, 0x64, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64, 0x64, 0x72,
  1809. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1810. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  1811. 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  1812. 0x74, 0x73, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01,
  1813. 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61,
  1814. 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x63,
  1815. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
  1816. 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x72,
  1817. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03,
  1818. 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1d, 0x0a,
  1819. 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28,
  1820. 0x09, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21, 0x0a, 0x0c,
  1821. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01,
  1822. 0x28, 0x03, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12,
  1823. 0x13, 0x0a, 0x05, 0x69, 0x73, 0x5f, 0x68, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  1824. 0x69, 0x73, 0x48, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65,
  1825. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x69, 0x73, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x12,
  1826. 0x1a, 0x0a, 0x08, 0x73, 0x68, 0x6f, 0x70, 0x55, 0x55, 0x49, 0x44, 0x18, 0x0e, 0x20, 0x01, 0x28,
  1827. 0x09, 0x52, 0x08, 0x73, 0x68, 0x6f, 0x70, 0x55, 0x55, 0x49, 0x44, 0x22, 0x2b, 0x0a, 0x11, 0x53,
  1828. 0x68, 0x6f, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1829. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1830. 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x22, 0x60, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
  1831. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  1832. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1833. 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1834. 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1835. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49, 0x64, 0x18,
  1836. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x22, 0x33, 0x0a, 0x0d, 0x53, 0x68,
  1837. 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x04, 0x6c,
  1838. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1839. 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  1840. 0x48, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65,
  1841. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18,
  1842. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a,
  1843. 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1844. 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x15, 0x47, 0x65, 0x74,
  1845. 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
  1846. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  1847. 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x22, 0xb9, 0x01, 0x0a, 0x06, 0x43,
  1848. 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  1849. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c,
  1850. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x63,
  1851. 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  1852. 0x0e, 0x0a, 0x02, 0x73, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x73, 0x6e, 0x12,
  1853. 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1854. 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1855. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x61, 0x76, 0x53,
  1856. 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6e, 0x61, 0x76, 0x53, 0x68,
  1857. 0x6f, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  1858. 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  1859. 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x22, 0x34, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f,
  1860. 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x04, 0x6c, 0x69,
  1861. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1862. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x31, 0x0a, 0x13,
  1863. 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x52, 0x65,
  1864. 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x73, 0x18,
  1865. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x73, 0x22,
  1866. 0x32, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49, 0x6d, 0x67,
  1867. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e,
  1868. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e,
  1869. 0x61, 0x6d, 0x65, 0x22, 0x27, 0x0a, 0x0f, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65,
  1870. 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18,
  1871. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xb8, 0x03, 0x0a,
  1872. 0x07, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1873. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70,
  1874. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64,
  1875. 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x63, 0x73, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20,
  1876. 0x01, 0x28, 0x03, 0x52, 0x09, 0x6c, 0x63, 0x73, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x12,
  1877. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  1878. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x65, 0x72, 0x69, 0x6f,
  1879. 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x65,
  1880. 0x72, 0x69, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x63, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65,
  1881. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x63, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65,
  1882. 0x12, 0x22, 0x0a, 0x0c, 0x6c, 0x63, 0x73, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65,
  1883. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6c, 0x63, 0x73, 0x42, 0x65, 0x67, 0x69, 0x6e,
  1884. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6c, 0x63, 0x73, 0x45, 0x6e, 0x64, 0x54, 0x69,
  1885. 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6c, 0x63, 0x73, 0x45, 0x6e, 0x64,
  1886. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x65, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20,
  1887. 0x01, 0x28, 0x03, 0x52, 0x05, 0x66, 0x65, 0x65, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74,
  1888. 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73,
  1889. 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61,
  1890. 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x18, 0x0b, 0x20, 0x01, 0x28,
  1891. 0x09, 0x52, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74,
  1892. 0x65, 0x64, 0x41, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61,
  1893. 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
  1894. 0x55, 0x73, 0x65, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61,
  1895. 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74,
  1896. 0x65, 0x64, 0x41, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61,
  1897. 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
  1898. 0x55, 0x73, 0x65, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61,
  1899. 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x22, 0x30, 0x0a, 0x0b, 0x4c, 0x69, 0x63, 0x65, 0x6e,
  1900. 0x73, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  1901. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65,
  1902. 0x6e, 0x73, 0x65, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x20, 0x0a, 0x06, 0x49, 0x64, 0x4c,
  1903. 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  1904. 0x03, 0x28, 0x03, 0x52, 0x06, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xce, 0x01, 0x0a, 0x0b,
  1905. 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74,
  1906. 0x79, 0x70, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x74, 0x79, 0x70,
  1907. 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1908. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64,
  1909. 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x4d, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
  1910. 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x4d, 0x73, 0x12, 0x14, 0x0a,
  1911. 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x72,
  1912. 0x69, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28,
  1913. 0x09, 0x52, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x78, 0x65, 0x63, 0x55,
  1914. 0x73, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x55,
  1915. 0x73, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20,
  1916. 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74,
  1917. 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb2, 0x01, 0x0a,
  1918. 0x13, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x52,
  1919. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x49, 0x0a, 0x0a, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d,
  1920. 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1921. 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x52, 0x65,
  1922. 0x70, 0x6c, 0x79, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x45, 0x6e,
  1923. 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x1a,
  1924. 0x50, 0x0a, 0x0f, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74,
  1925. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1926. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x27, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  1927. 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e,
  1928. 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  1929. 0x01, 0x22, 0xad, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65,
  1930. 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x57,
  1931. 0x58, 0x12, 0x30, 0x0a, 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18,
  1932. 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x10, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x56, 0x65, 0x72,
  1933. 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54,
  1934. 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02,
  1935. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a,
  1936. 0x03, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x12,
  1937. 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  1938. 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x6d, 0x67, 0x43, 0x6f,
  1939. 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x69, 0x6d, 0x67, 0x43, 0x6f, 0x64,
  1940. 0x65, 0x22, 0x78, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79,
  1941. 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x0a, 0x76,
  1942. 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1943. 0x10, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70,
  1944. 0x65, 0x52, 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a,
  1945. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64,
  1946. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01,
  1947. 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x55, 0x0a, 0x13, 0x57,
  1948. 0x65, 0x69, 0x58, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  1949. 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1950. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  1951. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  1952. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  1953. 0x49, 0x64, 0x2a, 0xd0, 0x01, 0x0a, 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  1954. 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x47, 0x45, 0x72,
  1955. 0x72, 0x10, 0x64, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x6d, 0x73, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
  1956. 0x10, 0x6e, 0x12, 0x0c, 0x0a, 0x08, 0x4a, 0x32, 0x4d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x78,
  1957. 0x12, 0x12, 0x0a, 0x0e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72,
  1958. 0x6f, 0x72, 0x10, 0x79, 0x12, 0x16, 0x0a, 0x12, 0x57, 0x65, 0x62, 0x54, 0x6f, 0x49, 0x6d, 0x53,
  1959. 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7a, 0x12, 0x15, 0x0a, 0x11,
  1960. 0x49, 0x6d, 0x54, 0x6f, 0x57, 0x65, 0x62, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f,
  1961. 0x72, 0x10, 0x7b, 0x12, 0x0c, 0x0a, 0x08, 0x4d, 0x32, 0x4a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10,
  1962. 0x7c, 0x12, 0x0a, 0x0a, 0x05, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x10, 0x96, 0x01, 0x12, 0x0a, 0x0a,
  1963. 0x05, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x10, 0xc8, 0x01, 0x12, 0x0f, 0x0a, 0x0a, 0x56, 0x65, 0x72,
  1964. 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x10, 0xc9, 0x01, 0x12, 0x19, 0x0a, 0x14, 0x50, 0x61,
  1965. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x57, 0x72, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x6f, 0x4d, 0x75,
  1966. 0x63, 0x68, 0x10, 0xca, 0x01, 0x2a, 0x31, 0x0a, 0x09, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74,
  1967. 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x61, 0x6e, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f,
  1968. 0x6e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x10, 0x09, 0x12,
  1969. 0x07, 0x0a, 0x03, 0x41, 0x6c, 0x6c, 0x10, 0x63, 0x2a, 0x47, 0x0a, 0x0a, 0x56, 0x65, 0x72, 0x69,
  1970. 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x6e, 0x64, 0x65, 0x66, 0x69,
  1971. 0x6e, 0x65, 0x64, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70, 0x10,
  1972. 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x10, 0x02, 0x12, 0x12, 0x0a,
  1973. 0x0e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x10,
  1974. 0x03, 0x32, 0xe3, 0x41, 0x0a, 0x03, 0x41, 0x70, 0x69, 0x12, 0x33, 0x0a, 0x06, 0x53, 0x69, 0x67,
  1975. 0x6e, 0x55, 0x70, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x55,
  1976. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1977. 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x32,
  1978. 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1979. 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e,
  1980. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1981. 0x22, 0x00, 0x12, 0x35, 0x0a, 0x07, 0x53, 0x69, 0x67, 0x6e, 0x4f, 0x75, 0x74, 0x12, 0x14, 0x2e,
  1982. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75,
  1983. 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75,
  1984. 0x6c, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0e, 0x47, 0x65, 0x6e,
  1985. 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x62, 0x61,
  1986. 0x73, 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67,
  1987. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1988. 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65,
  1989. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x48,
  1990. 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1991. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1992. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1993. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73,
  1994. 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  1995. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1996. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1997. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a,
  1998. 0x12, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75,
  1999. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2000. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2001. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2002. 0x00, 0x12, 0x46, 0x0a, 0x16, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72,
  2003. 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2004. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2005. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2006. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f,
  2007. 0x70, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
  2008. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2009. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2010. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x4d, 0x61,
  2011. 0x6e, 0x61, 0x67, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75,
  2012. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2013. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2014. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2015. 0x00, 0x12, 0x40, 0x0a, 0x10, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
  2016. 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2017. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2018. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2019. 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x53, 0x69, 0x6d,
  2020. 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2021. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2022. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2023. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x18, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53,
  2024. 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x79, 0x53, 0x68, 0x6f, 0x70,
  2025. 0x49, 0x44, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2026. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2027. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2028. 0x12, 0x42, 0x0a, 0x12, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x68,
  2029. 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68,
  2030. 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2031. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2032. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x61, 0x62,
  2033. 0x6c, 0x65, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e,
  2034. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
  2035. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68,
  2036. 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
  2037. 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x17, 0x2e, 0x62, 0x61,
  2038. 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71,
  2039. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65,
  2040. 0x6e, 0x73, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x12, 0x53, 0x68, 0x6f,
  2041. 0x70, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x12,
  2042. 0x0c, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e,
  2043. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65,
  2044. 0x4d, 0x61, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0b, 0x47, 0x65,
  2045. 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x12, 0x18, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2046. 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x71, 0x75,
  2047. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68,
  2048. 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a,
  2049. 0x0e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x12,
  2050. 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61,
  2051. 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62,
  2052. 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41,
  2053. 0x6c, 0x6c, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f,
  2054. 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2055. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2056. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2057. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x68, 0x6f,
  2058. 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2059. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2060. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2061. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70, 0x47,
  2062. 0x72, 0x6f, 0x75, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2063. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2064. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2065. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72,
  2066. 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e,
  2067. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2068. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2069. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53,
  2070. 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x51,
  2071. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2072. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2073. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2074. 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44,
  2075. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2076. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2077. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2078. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x56,
  2079. 0x65, 0x6e, 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2080. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2081. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2082. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x68, 0x6f, 0x70, 0x56,
  2083. 0x65, 0x6e, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2084. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2085. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2086. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e,
  2087. 0x75, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2088. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2089. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2090. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75,
  2091. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2092. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2093. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2094. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f,
  2095. 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x51, 0x75, 0x65, 0x72, 0x79,
  2096. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2097. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2098. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41,
  2099. 0x0a, 0x11, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70,
  2100. 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2101. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2102. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2103. 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71,
  2104. 0x75, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2105. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2106. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2107. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x18, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e,
  2108. 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69,
  2109. 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2110. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2111. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2112. 0x47, 0x0a, 0x17, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69,
  2113. 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2114. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2115. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2116. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53, 0x68, 0x6f, 0x70,
  2117. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
  2118. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2119. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2120. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68,
  2121. 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  2122. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2123. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2124. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68,
  2125. 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e,
  2126. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2127. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2128. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53,
  2129. 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2130. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2131. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2132. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2133. 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  2134. 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2135. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2136. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2137. 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  2138. 0x67, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2139. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2140. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2141. 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73,
  2142. 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2143. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2144. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2145. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70,
  2146. 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2147. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2148. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2149. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70,
  2150. 0x55, 0x73, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2151. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2152. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2153. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69,
  2154. 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12,
  2155. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2156. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2157. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a,
  2158. 0x12, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75,
  2159. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2160. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2161. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2162. 0x00, 0x12, 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73,
  2163. 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2164. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2165. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2166. 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70,
  2167. 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2168. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2169. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2170. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x56, 0x69, 0x70, 0x50, 0x68, 0x6f, 0x6e,
  2171. 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2172. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2173. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2174. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x69, 0x6e, 0x50,
  2175. 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2176. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2177. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2178. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x56, 0x69, 0x70, 0x4f, 0x74,
  2179. 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2180. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2181. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2182. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70,
  2183. 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  2184. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2185. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2186. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17,
  2187. 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x53, 0x74, 0x61,
  2188. 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2189. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2190. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2191. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70,
  2192. 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2193. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2194. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2195. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x54, 0x65, 0x6d, 0x70, 0x56,
  2196. 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2197. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2198. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2199. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x54, 0x65, 0x6d, 0x70, 0x56,
  2200. 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2201. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2202. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2203. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x54, 0x65, 0x6d, 0x70,
  2204. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69,
  2205. 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2206. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2207. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2208. 0x3b, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  2209. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2210. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2211. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13,
  2212. 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75,
  2213. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2214. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2215. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2216. 0x00, 0x12, 0x45, 0x0a, 0x15, 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x44,
  2217. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2218. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2219. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2220. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x56, 0x69, 0x70, 0x43,
  2221. 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x64, 0x69, 0x74,
  2222. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2223. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2224. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f,
  2225. 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x43, 0x68, 0x67, 0x51, 0x75, 0x65, 0x72,
  2226. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2227. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2228. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2229. 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x51,
  2230. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2231. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2232. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2233. 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
  2234. 0x49, 0x6d, 0x67, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1a, 0x2e,
  2235. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49,
  2236. 0x6d, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2237. 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2238. 0x22, 0x00, 0x12, 0x44, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51,
  2239. 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2240. 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2241. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65,
  2242. 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x43, 0x6c, 0x61, 0x73,
  2243. 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2244. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2245. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2246. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x38, 0x0a, 0x08, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x41, 0x64, 0x64,
  2247. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2248. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2249. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x39,
  2250. 0x0a, 0x09, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2251. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2252. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2253. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61,
  2254. 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
  2255. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2256. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2257. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x43, 0x6c,
  2258. 0x61, 0x73, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
  2259. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2260. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2261. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x43, 0x6c,
  2262. 0x61, 0x73, 0x73, 0x57, 0x78, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x45, 0x64, 0x69, 0x74,
  2263. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2264. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2265. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c,
  2266. 0x0a, 0x0c, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x56, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  2267. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2268. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2269. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
  2270. 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72,
  2271. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2272. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2273. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2274. 0x3f, 0x0a, 0x0f, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41,
  2275. 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2276. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2277. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2278. 0x12, 0x40, 0x0a, 0x10, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63,
  2279. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2280. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2281. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2282. 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73,
  2283. 0x69, 0x63, 0x53, 0x68, 0x6f, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2284. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2285. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2286. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50,
  2287. 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64,
  2288. 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2289. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2290. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2291. 0x12, 0x43, 0x0a, 0x13, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63,
  2292. 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2293. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2294. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2295. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e,
  2296. 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2297. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2298. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2299. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e,
  2300. 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2301. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2302. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2303. 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x74,
  2304. 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2305. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2306. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2307. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61,
  2308. 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65,
  2309. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2310. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2311. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d,
  2312. 0x0a, 0x0d, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  2313. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2314. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2315. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a,
  2316. 0x0b, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  2317. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2318. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2319. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x54,
  2320. 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2321. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2322. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2323. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x42,
  2324. 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  2325. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2326. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2327. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f,
  2328. 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12,
  2329. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2330. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2331. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a,
  2332. 0x0c, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e,
  2333. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2334. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2335. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53,
  2336. 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x64,
  2337. 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2338. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2339. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2340. 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x4c, 0x69, 0x73,
  2341. 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2342. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2343. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2344. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63,
  2345. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65, 0x12,
  2346. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2347. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2348. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a,
  2349. 0x16, 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x44,
  2350. 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2351. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2352. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2353. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x44,
  2354. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2355. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2356. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2357. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x43, 0x6c, 0x61, 0x73,
  2358. 0x73, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x61, 0x74, 0x65,
  2359. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2360. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2361. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47,
  2362. 0x0a, 0x11, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x50, 0x72, 0x65, 0x70,
  2363. 0x61, 0x72, 0x65, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73,
  2364. 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2365. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2366. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x56, 0x69, 0x70, 0x43, 0x6c,
  2367. 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
  2368. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2369. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2370. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11,
  2371. 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x64,
  2372. 0x64, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53,
  2373. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2374. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2375. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73,
  2376. 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x44, 0x65, 0x6c, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73,
  2377. 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2378. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2379. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47,
  2380. 0x0a, 0x11, 0x54, 0x6d, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
  2381. 0x41, 0x64, 0x64, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73,
  2382. 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2383. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2384. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11, 0x54, 0x6d, 0x70, 0x43, 0x6c,
  2385. 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x44, 0x65, 0x6c, 0x12, 0x1b, 0x2e, 0x62,
  2386. 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2387. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2388. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2389. 0x12, 0x4e, 0x0a, 0x18, 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61,
  2390. 0x69, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x1b, 0x2e, 0x62,
  2391. 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2392. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2393. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2394. 0x12, 0x47, 0x0a, 0x11, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x43, 0x6f,
  2395. 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75,
  2396. 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2397. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2398. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x43, 0x6c, 0x61,
  2399. 0x73, 0x73, 0x4f, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x12, 0x15, 0x2e,
  2400. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2401. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2402. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x12, 0x43,
  2403. 0x6c, 0x61, 0x73, 0x73, 0x47, 0x69, 0x76, 0x65, 0x55, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72,
  2404. 0x6d, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53,
  2405. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2406. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2407. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x18, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6c,
  2408. 0x61, 0x73, 0x73, 0x41, 0x64, 0x64, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69,
  2409. 0x6c, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53,
  2410. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2411. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2412. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  2413. 0x73, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2414. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2415. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2416. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64,
  2417. 0x64, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2418. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2419. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2420. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65,
  2421. 0x72, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2422. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2423. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2424. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f,
  2425. 0x0a, 0x0f, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  2426. 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2427. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2428. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2429. 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x75, 0x65,
  2430. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2431. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2432. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2433. 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2434. 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2435. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2436. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2437. 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2438. 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x79, 0x53, 0x74, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2439. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2440. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2441. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x48, 0x72, 0x53, 0x65,
  2442. 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79,
  2443. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2444. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2445. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41,
  2446. 0x0a, 0x11, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x50, 0x76, 0x74, 0x51, 0x75,
  2447. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2448. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2449. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2450. 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72,
  2451. 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2452. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2453. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2454. 0x3f, 0x0a, 0x0f, 0x41, 0x64, 0x64, 0x50, 0x76, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f,
  2455. 0x72, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2456. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2457. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2458. 0x12, 0x3d, 0x0a, 0x0d, 0x45, 0x64, 0x69, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72,
  2459. 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2460. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2461. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2462. 0x3c, 0x0a, 0x0c, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x44, 0x65, 0x6c, 0x12,
  2463. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2464. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2465. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a,
  2466. 0x0a, 0x50, 0x4b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x67, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2467. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2468. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2469. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x42, 0x69, 0x6e,
  2470. 0x64, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2471. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2472. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2473. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x55, 0x6e, 0x42, 0x69, 0x6e,
  2474. 0x64, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2475. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2476. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2477. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x41, 0x63, 0x74, 0x69, 0x6f,
  2478. 0x6e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2479. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2480. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2481. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x16, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66,
  2482. 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x79, 0x57, 0x69, 0x6e, 0x58, 0x69, 0x6e, 0x12, 0x1b,
  2483. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49,
  2484. 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61,
  2485. 0x73, 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67,
  2486. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x1a, 0x47, 0x65, 0x6e, 0x50,
  2487. 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x42, 0x79,
  2488. 0x57, 0x65, 0x69, 0x58, 0x69, 0x6e, 0x12, 0x21, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65,
  2489. 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65,
  2490. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x57, 0x58, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2491. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2492. 0x12, 0x45, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43,
  2493. 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
  2494. 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2495. 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2496. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0c, 0x57, 0x65, 0x69, 0x58, 0x69,
  2497. 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x12, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57,
  2498. 0x65, 0x69, 0x58, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  2499. 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e,
  2500. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x3b, 0x62, 0x61, 0x73,
  2501. 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2502. }
  2503. var (
  2504. file_base_proto_rawDescOnce sync.Once
  2505. file_base_proto_rawDescData = file_base_proto_rawDesc
  2506. )
  2507. func file_base_proto_rawDescGZIP() []byte {
  2508. file_base_proto_rawDescOnce.Do(func() {
  2509. file_base_proto_rawDescData = protoimpl.X.CompressGZIP(file_base_proto_rawDescData)
  2510. })
  2511. return file_base_proto_rawDescData
  2512. }
  2513. var file_base_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
  2514. var file_base_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
  2515. var file_base_proto_goTypes = []interface{}{
  2516. (ErrorCode)(0), // 0: base.ErrorCode
  2517. (WebStatus)(0), // 1: base.WebStatus
  2518. (VerifyType)(0), // 2: base.VerifyType
  2519. (*DefaultRequest)(nil), // 3: base.DefaultRequest
  2520. (*DefaultReply)(nil), // 4: base.DefaultReply
  2521. (*StandardRequest)(nil), // 5: base.StandardRequest
  2522. (*CourseStandardRequest)(nil), // 6: base.CourseStandardRequest
  2523. (*StandardReply)(nil), // 7: base.StandardReply
  2524. (*SignUpRequest)(nil), // 8: base.SignUpRequest
  2525. (*SignInReply)(nil), // 9: base.SignInReply
  2526. (*SignInRequest)(nil), // 10: base.SignInRequest
  2527. (*GenVerifyImageRequest)(nil), // 11: base.GenVerifyImageRequest
  2528. (*GenVerifyImageReply)(nil), // 12: base.GenVerifyImageReply
  2529. (*ShopInfo)(nil), // 13: base.ShopInfo
  2530. (*ShopDetailRequest)(nil), // 14: base.ShopDetailRequest
  2531. (*ShopListRequest)(nil), // 15: base.ShopListRequest
  2532. (*ShopListReply)(nil), // 16: base.ShopListReply
  2533. (*GetShopNaviRequest)(nil), // 17: base.GetShopNaviRequest
  2534. (*GetShopNaviAllRequest)(nil), // 18: base.GetShopNaviAllRequest
  2535. (*Column)(nil), // 19: base.Column
  2536. (*GetShopNaviReply)(nil), // 20: base.GetShopNaviReply
  2537. (*GetShopNaviAllReply)(nil), // 21: base.GetShopNaviAllReply
  2538. (*GetOverlayImgRequest)(nil), // 22: base.GetOverlayImgRequest
  2539. (*QiNiuTokenReply)(nil), // 23: base.QiNiuTokenReply
  2540. (*License)(nil), // 24: base.License
  2541. (*LicenseList)(nil), // 25: base.LicenseList
  2542. (*IdList)(nil), // 26: base.IdList
  2543. (*LicenseType)(nil), // 27: base.LicenseType
  2544. (*LicenseTypeMapReply)(nil), // 28: base.LicenseTypeMapReply
  2545. (*GenPhoneVerifyCodeRequestWX)(nil), // 29: base.GenPhoneVerifyCodeRequestWX
  2546. (*CheckVerifyCodeRequest)(nil), // 30: base.CheckVerifyCodeRequest
  2547. (*WeiXinSignInRequest)(nil), // 31: base.WeiXinSignInRequest
  2548. nil, // 32: base.LicenseTypeMapReply.LicenseMapEntry
  2549. }
  2550. var file_base_proto_depIdxs = []int32{
  2551. 1, // 0: base.ShopInfo.status:type_name -> base.WebStatus
  2552. 1, // 1: base.ShopListRequest.status:type_name -> base.WebStatus
  2553. 13, // 2: base.ShopListReply.list:type_name -> base.ShopInfo
  2554. 1, // 3: base.Column.status:type_name -> base.WebStatus
  2555. 19, // 4: base.GetShopNaviReply.list:type_name -> base.Column
  2556. 1, // 5: base.License.status:type_name -> base.WebStatus
  2557. 24, // 6: base.LicenseList.list:type_name -> base.License
  2558. 1, // 7: base.LicenseType.status:type_name -> base.WebStatus
  2559. 32, // 8: base.LicenseTypeMapReply.licenseMap:type_name -> base.LicenseTypeMapReply.LicenseMapEntry
  2560. 2, // 9: base.GenPhoneVerifyCodeRequestWX.verifyType:type_name -> base.VerifyType
  2561. 2, // 10: base.CheckVerifyCodeRequest.verifyType:type_name -> base.VerifyType
  2562. 27, // 11: base.LicenseTypeMapReply.LicenseMapEntry.value:type_name -> base.LicenseType
  2563. 8, // 12: base.Api.SignUp:input_type -> base.SignUpRequest
  2564. 10, // 13: base.Api.SignIn:input_type -> base.SignInRequest
  2565. 3, // 14: base.Api.SignOut:input_type -> base.DefaultRequest
  2566. 11, // 15: base.Api.GenVerifyImage:input_type -> base.GenVerifyImageRequest
  2567. 5, // 16: base.Api.SelectHrSensors:input_type -> base.StandardRequest
  2568. 5, // 17: base.Api.AcrossUserSimpleQuery:input_type -> base.StandardRequest
  2569. 5, // 18: base.Api.VipUserSimpleQuery:input_type -> base.StandardRequest
  2570. 5, // 19: base.Api.TempVipUserSimpleQuery:input_type -> base.StandardRequest
  2571. 5, // 20: base.Api.ShopSimpleQuery:input_type -> base.StandardRequest
  2572. 5, // 21: base.Api.ManageableSimpleQuery:input_type -> base.StandardRequest
  2573. 5, // 22: base.Api.ClassSimpleQuery:input_type -> base.StandardRequest
  2574. 5, // 23: base.Api.ScreenSimpleQuery:input_type -> base.StandardRequest
  2575. 5, // 24: base.Api.GroupSimpleQueryByShopID:input_type -> base.StandardRequest
  2576. 15, // 25: base.Api.ManageableShopList:input_type -> base.ShopListRequest
  2577. 14, // 26: base.Api.ManageableGetShopInfo:input_type -> base.ShopDetailRequest
  2578. 14, // 27: base.Api.ShopLicenseList:input_type -> base.ShopDetailRequest
  2579. 26, // 28: base.Api.ShopLicenseTypeMap:input_type -> base.IdList
  2580. 17, // 29: base.Api.GetShopNavi:input_type -> base.GetShopNaviRequest
  2581. 18, // 30: base.Api.GetShopNaviAll:input_type -> base.GetShopNaviAllRequest
  2582. 5, // 31: base.Api.ShopGroupQuery:input_type -> base.StandardRequest
  2583. 5, // 32: base.Api.ShopGroupAdd:input_type -> base.StandardRequest
  2584. 5, // 33: base.Api.ShopGroupEdit:input_type -> base.StandardRequest
  2585. 5, // 34: base.Api.ShopGroupStatusEdit:input_type -> base.StandardRequest
  2586. 5, // 35: base.Api.ShopGroupDetailsQuery:input_type -> base.StandardRequest
  2587. 5, // 36: base.Api.ShopGroupDetailsAdd:input_type -> base.StandardRequest
  2588. 5, // 37: base.Api.ShopVenueQuery:input_type -> base.StandardRequest
  2589. 5, // 38: base.Api.ShopVenueAdd:input_type -> base.StandardRequest
  2590. 5, // 39: base.Api.ShopVenueEdit:input_type -> base.StandardRequest
  2591. 5, // 40: base.Api.ShopVenueStatusEdit:input_type -> base.StandardRequest
  2592. 5, // 41: base.Api.ShopVenueEquipQuery:input_type -> base.StandardRequest
  2593. 5, // 42: base.Api.ShopVenueEquipAdd:input_type -> base.StandardRequest
  2594. 5, // 43: base.Api.ShopVenueEquipEdit:input_type -> base.StandardRequest
  2595. 5, // 44: base.Api.ShopVenueEquipStatusEdit:input_type -> base.StandardRequest
  2596. 5, // 45: base.Api.ShopVenueEquipStatusDel:input_type -> base.StandardRequest
  2597. 5, // 46: base.Api.ShopManagerQuery:input_type -> base.StandardRequest
  2598. 5, // 47: base.Api.ShopManagerAdd:input_type -> base.StandardRequest
  2599. 5, // 48: base.Api.ShopManagerEdit:input_type -> base.StandardRequest
  2600. 5, // 49: base.Api.ShopManagerStatusEdit:input_type -> base.StandardRequest
  2601. 5, // 50: base.Api.ShopConfigQuery:input_type -> base.StandardRequest
  2602. 5, // 51: base.Api.ShopConfigEdit:input_type -> base.StandardRequest
  2603. 5, // 52: base.Api.ShopVipUserQuery:input_type -> base.StandardRequest
  2604. 5, // 53: base.Api.ShopVipUserAdd:input_type -> base.StandardRequest
  2605. 5, // 54: base.Api.ShopVipUserEdit:input_type -> base.StandardRequest
  2606. 5, // 55: base.Api.ShopVipUserStatusEdit:input_type -> base.StandardRequest
  2607. 5, // 56: base.Api.AcrossVipUserQuery:input_type -> base.StandardRequest
  2608. 5, // 57: base.Api.AcrossVipUserAdd:input_type -> base.StandardRequest
  2609. 5, // 58: base.Api.AcrossVipUserDel:input_type -> base.StandardRequest
  2610. 5, // 59: base.Api.VipPhoneQuery:input_type -> base.StandardRequest
  2611. 5, // 60: base.Api.VipMainPhoneCheck:input_type -> base.StandardRequest
  2612. 5, // 61: base.Api.VipOtherPhoneAdd:input_type -> base.StandardRequest
  2613. 5, // 62: base.Api.VipOtherPhoneEdit:input_type -> base.StandardRequest
  2614. 5, // 63: base.Api.VipOtherPhoneStatusEdit:input_type -> base.StandardRequest
  2615. 5, // 64: base.Api.TempVipUserQuery:input_type -> base.StandardRequest
  2616. 5, // 65: base.Api.TempVipUserAdd:input_type -> base.StandardRequest
  2617. 5, // 66: base.Api.TempVipUserEdit:input_type -> base.StandardRequest
  2618. 5, // 67: base.Api.TempVipUserStatusEdit:input_type -> base.StandardRequest
  2619. 5, // 68: base.Api.VipHourEdit:input_type -> base.StandardRequest
  2620. 5, // 69: base.Api.VipConsumeListQuery:input_type -> base.StandardRequest
  2621. 5, // 70: base.Api.VipConsumeDetailQuery:input_type -> base.StandardRequest
  2622. 5, // 71: base.Api.VipClassRelationEdit:input_type -> base.StandardRequest
  2623. 5, // 72: base.Api.VipHourChgQuery:input_type -> base.StandardRequest
  2624. 5, // 73: base.Api.VipUserClassQuery:input_type -> base.StandardRequest
  2625. 22, // 74: base.Api.GetOverlayImgQiNiuToken:input_type -> base.GetOverlayImgRequest
  2626. 3, // 75: base.Api.GetSimpleQiNiuToken:input_type -> base.DefaultRequest
  2627. 5, // 76: base.Api.ClassQuery:input_type -> base.StandardRequest
  2628. 5, // 77: base.Api.ClassAdd:input_type -> base.StandardRequest
  2629. 5, // 78: base.Api.ClassEdit:input_type -> base.StandardRequest
  2630. 5, // 79: base.Api.ClassStatusEdit:input_type -> base.StandardRequest
  2631. 5, // 80: base.Api.ClassColorEdit:input_type -> base.StandardRequest
  2632. 5, // 81: base.Api.ClassWxVisibleEdit:input_type -> base.StandardRequest
  2633. 5, // 82: base.Api.ClassVipEdit:input_type -> base.StandardRequest
  2634. 5, // 83: base.Api.SttPlanBasicQuery:input_type -> base.StandardRequest
  2635. 5, // 84: base.Api.SttPlanBasicAdd:input_type -> base.StandardRequest
  2636. 5, // 85: base.Api.SttPlanBasicEdit:input_type -> base.StandardRequest
  2637. 5, // 86: base.Api.SttPlanBasicShopEdit:input_type -> base.StandardRequest
  2638. 5, // 87: base.Api.SttPlanBasicStatusEdit:input_type -> base.StandardRequest
  2639. 5, // 88: base.Api.SttPlanBasicPublish:input_type -> base.StandardRequest
  2640. 5, // 89: base.Api.SttPlanPreview:input_type -> base.StandardRequest
  2641. 5, // 90: base.Api.SttPlanCopy:input_type -> base.StandardRequest
  2642. 5, // 91: base.Api.SttPlanDetailQuery:input_type -> base.StandardRequest
  2643. 5, // 92: base.Api.SttPlanDetailBatchSave:input_type -> base.StandardRequest
  2644. 5, // 93: base.Api.STTBasicQuery:input_type -> base.StandardRequest
  2645. 5, // 94: base.Api.STTBasicAdd:input_type -> base.StandardRequest
  2646. 5, // 95: base.Api.STTBasicEdit:input_type -> base.StandardRequest
  2647. 5, // 96: base.Api.STTBasicStatusEdit:input_type -> base.StandardRequest
  2648. 5, // 97: base.Api.STTBasicPreview:input_type -> base.StandardRequest
  2649. 5, // 98: base.Api.STTBasicCopy:input_type -> base.StandardRequest
  2650. 5, // 99: base.Api.STTBasicOfflineEdit:input_type -> base.StandardRequest
  2651. 5, // 100: base.Api.STTDetailListQuery:input_type -> base.StandardRequest
  2652. 5, // 101: base.Api.STTBasicDetailBatchSave:input_type -> base.StandardRequest
  2653. 5, // 102: base.Api.STTDetailAllowDelCheck:input_type -> base.StandardRequest
  2654. 5, // 103: base.Api.CourseDetailQuery:input_type -> base.StandardRequest
  2655. 5, // 104: base.Api.ClassListByOrderDate:input_type -> base.StandardRequest
  2656. 6, // 105: base.Api.ClassStartPrepare:input_type -> base.CourseStandardRequest
  2657. 5, // 106: base.Api.VipClassDetailQuery:input_type -> base.StandardRequest
  2658. 6, // 107: base.Api.VipClassDetailAdd:input_type -> base.CourseStandardRequest
  2659. 6, // 108: base.Api.VipClassDetailDel:input_type -> base.CourseStandardRequest
  2660. 6, // 109: base.Api.TmpClassDetailAdd:input_type -> base.CourseStandardRequest
  2661. 6, // 110: base.Api.TmpClassDetailDel:input_type -> base.CourseStandardRequest
  2662. 6, // 111: base.Api.VipClassDetailStatueEdit:input_type -> base.CourseStandardRequest
  2663. 6, // 112: base.Api.ClassStartConfirm:input_type -> base.CourseStandardRequest
  2664. 5, // 113: base.Api.ClassOverConfirm:input_type -> base.StandardRequest
  2665. 6, // 114: base.Api.ClassGiveUpConfirm:input_type -> base.CourseStandardRequest
  2666. 6, // 115: base.Api.AfterClassAddClassDetail:input_type -> base.CourseStandardRequest
  2667. 5, // 116: base.Api.OrderListQuery:input_type -> base.StandardRequest
  2668. 5, // 117: base.Api.OrderAddByManager:input_type -> base.StandardRequest
  2669. 5, // 118: base.Api.OrderCancelByManager:input_type -> base.StandardRequest
  2670. 5, // 119: base.Api.OrderStatistics:input_type -> base.StandardRequest
  2671. 5, // 120: base.Api.ClassOrderQuery:input_type -> base.StandardRequest
  2672. 5, // 121: base.Api.VipUserOrderQuery:input_type -> base.StandardRequest
  2673. 5, // 122: base.Api.UserOrderQueryByStd:input_type -> base.StandardRequest
  2674. 5, // 123: base.Api.HrSensorsPublicQuery:input_type -> base.StandardRequest
  2675. 5, // 124: base.Api.HrSensorsPvtQuery:input_type -> base.StandardRequest
  2676. 5, // 125: base.Api.AddHrSensors:input_type -> base.StandardRequest
  2677. 5, // 126: base.Api.AddPvtHrSensors:input_type -> base.StandardRequest
  2678. 5, // 127: base.Api.EditHrSensors:input_type -> base.StandardRequest
  2679. 5, // 128: base.Api.HrSensorsDel:input_type -> base.StandardRequest
  2680. 5, // 129: base.Api.PKGroupChg:input_type -> base.StandardRequest
  2681. 5, // 130: base.Api.BindHrSensor:input_type -> base.StandardRequest
  2682. 5, // 131: base.Api.UnBindHrSensor:input_type -> base.StandardRequest
  2683. 5, // 132: base.Api.ActionQuery:input_type -> base.StandardRequest
  2684. 11, // 133: base.Api.GenVerifyImageByWinXin:input_type -> base.GenVerifyImageRequest
  2685. 29, // 134: base.Api.GenPhoneVerifyCodeByWeiXin:input_type -> base.GenPhoneVerifyCodeRequestWX
  2686. 30, // 135: base.Api.CheckVerifyCode:input_type -> base.CheckVerifyCodeRequest
  2687. 31, // 136: base.Api.WeiXinSignIn:input_type -> base.WeiXinSignInRequest
  2688. 4, // 137: base.Api.SignUp:output_type -> base.DefaultReply
  2689. 9, // 138: base.Api.SignIn:output_type -> base.SignInReply
  2690. 4, // 139: base.Api.SignOut:output_type -> base.DefaultReply
  2691. 12, // 140: base.Api.GenVerifyImage:output_type -> base.GenVerifyImageReply
  2692. 7, // 141: base.Api.SelectHrSensors:output_type -> base.StandardReply
  2693. 7, // 142: base.Api.AcrossUserSimpleQuery:output_type -> base.StandardReply
  2694. 7, // 143: base.Api.VipUserSimpleQuery:output_type -> base.StandardReply
  2695. 7, // 144: base.Api.TempVipUserSimpleQuery:output_type -> base.StandardReply
  2696. 7, // 145: base.Api.ShopSimpleQuery:output_type -> base.StandardReply
  2697. 7, // 146: base.Api.ManageableSimpleQuery:output_type -> base.StandardReply
  2698. 7, // 147: base.Api.ClassSimpleQuery:output_type -> base.StandardReply
  2699. 7, // 148: base.Api.ScreenSimpleQuery:output_type -> base.StandardReply
  2700. 7, // 149: base.Api.GroupSimpleQueryByShopID:output_type -> base.StandardReply
  2701. 16, // 150: base.Api.ManageableShopList:output_type -> base.ShopListReply
  2702. 13, // 151: base.Api.ManageableGetShopInfo:output_type -> base.ShopInfo
  2703. 25, // 152: base.Api.ShopLicenseList:output_type -> base.LicenseList
  2704. 28, // 153: base.Api.ShopLicenseTypeMap:output_type -> base.LicenseTypeMapReply
  2705. 20, // 154: base.Api.GetShopNavi:output_type -> base.GetShopNaviReply
  2706. 21, // 155: base.Api.GetShopNaviAll:output_type -> base.GetShopNaviAllReply
  2707. 7, // 156: base.Api.ShopGroupQuery:output_type -> base.StandardReply
  2708. 7, // 157: base.Api.ShopGroupAdd:output_type -> base.StandardReply
  2709. 7, // 158: base.Api.ShopGroupEdit:output_type -> base.StandardReply
  2710. 7, // 159: base.Api.ShopGroupStatusEdit:output_type -> base.StandardReply
  2711. 7, // 160: base.Api.ShopGroupDetailsQuery:output_type -> base.StandardReply
  2712. 7, // 161: base.Api.ShopGroupDetailsAdd:output_type -> base.StandardReply
  2713. 7, // 162: base.Api.ShopVenueQuery:output_type -> base.StandardReply
  2714. 7, // 163: base.Api.ShopVenueAdd:output_type -> base.StandardReply
  2715. 7, // 164: base.Api.ShopVenueEdit:output_type -> base.StandardReply
  2716. 7, // 165: base.Api.ShopVenueStatusEdit:output_type -> base.StandardReply
  2717. 7, // 166: base.Api.ShopVenueEquipQuery:output_type -> base.StandardReply
  2718. 7, // 167: base.Api.ShopVenueEquipAdd:output_type -> base.StandardReply
  2719. 7, // 168: base.Api.ShopVenueEquipEdit:output_type -> base.StandardReply
  2720. 7, // 169: base.Api.ShopVenueEquipStatusEdit:output_type -> base.StandardReply
  2721. 7, // 170: base.Api.ShopVenueEquipStatusDel:output_type -> base.StandardReply
  2722. 7, // 171: base.Api.ShopManagerQuery:output_type -> base.StandardReply
  2723. 7, // 172: base.Api.ShopManagerAdd:output_type -> base.StandardReply
  2724. 7, // 173: base.Api.ShopManagerEdit:output_type -> base.StandardReply
  2725. 7, // 174: base.Api.ShopManagerStatusEdit:output_type -> base.StandardReply
  2726. 7, // 175: base.Api.ShopConfigQuery:output_type -> base.StandardReply
  2727. 7, // 176: base.Api.ShopConfigEdit:output_type -> base.StandardReply
  2728. 7, // 177: base.Api.ShopVipUserQuery:output_type -> base.StandardReply
  2729. 7, // 178: base.Api.ShopVipUserAdd:output_type -> base.StandardReply
  2730. 7, // 179: base.Api.ShopVipUserEdit:output_type -> base.StandardReply
  2731. 7, // 180: base.Api.ShopVipUserStatusEdit:output_type -> base.StandardReply
  2732. 7, // 181: base.Api.AcrossVipUserQuery:output_type -> base.StandardReply
  2733. 7, // 182: base.Api.AcrossVipUserAdd:output_type -> base.StandardReply
  2734. 7, // 183: base.Api.AcrossVipUserDel:output_type -> base.StandardReply
  2735. 7, // 184: base.Api.VipPhoneQuery:output_type -> base.StandardReply
  2736. 7, // 185: base.Api.VipMainPhoneCheck:output_type -> base.StandardReply
  2737. 7, // 186: base.Api.VipOtherPhoneAdd:output_type -> base.StandardReply
  2738. 7, // 187: base.Api.VipOtherPhoneEdit:output_type -> base.StandardReply
  2739. 7, // 188: base.Api.VipOtherPhoneStatusEdit:output_type -> base.StandardReply
  2740. 7, // 189: base.Api.TempVipUserQuery:output_type -> base.StandardReply
  2741. 7, // 190: base.Api.TempVipUserAdd:output_type -> base.StandardReply
  2742. 7, // 191: base.Api.TempVipUserEdit:output_type -> base.StandardReply
  2743. 7, // 192: base.Api.TempVipUserStatusEdit:output_type -> base.StandardReply
  2744. 7, // 193: base.Api.VipHourEdit:output_type -> base.StandardReply
  2745. 7, // 194: base.Api.VipConsumeListQuery:output_type -> base.StandardReply
  2746. 7, // 195: base.Api.VipConsumeDetailQuery:output_type -> base.StandardReply
  2747. 7, // 196: base.Api.VipClassRelationEdit:output_type -> base.StandardReply
  2748. 7, // 197: base.Api.VipHourChgQuery:output_type -> base.StandardReply
  2749. 7, // 198: base.Api.VipUserClassQuery:output_type -> base.StandardReply
  2750. 23, // 199: base.Api.GetOverlayImgQiNiuToken:output_type -> base.QiNiuTokenReply
  2751. 23, // 200: base.Api.GetSimpleQiNiuToken:output_type -> base.QiNiuTokenReply
  2752. 7, // 201: base.Api.ClassQuery:output_type -> base.StandardReply
  2753. 7, // 202: base.Api.ClassAdd:output_type -> base.StandardReply
  2754. 7, // 203: base.Api.ClassEdit:output_type -> base.StandardReply
  2755. 7, // 204: base.Api.ClassStatusEdit:output_type -> base.StandardReply
  2756. 7, // 205: base.Api.ClassColorEdit:output_type -> base.StandardReply
  2757. 7, // 206: base.Api.ClassWxVisibleEdit:output_type -> base.StandardReply
  2758. 7, // 207: base.Api.ClassVipEdit:output_type -> base.StandardReply
  2759. 7, // 208: base.Api.SttPlanBasicQuery:output_type -> base.StandardReply
  2760. 7, // 209: base.Api.SttPlanBasicAdd:output_type -> base.StandardReply
  2761. 7, // 210: base.Api.SttPlanBasicEdit:output_type -> base.StandardReply
  2762. 7, // 211: base.Api.SttPlanBasicShopEdit:output_type -> base.StandardReply
  2763. 7, // 212: base.Api.SttPlanBasicStatusEdit:output_type -> base.StandardReply
  2764. 7, // 213: base.Api.SttPlanBasicPublish:output_type -> base.StandardReply
  2765. 7, // 214: base.Api.SttPlanPreview:output_type -> base.StandardReply
  2766. 7, // 215: base.Api.SttPlanCopy:output_type -> base.StandardReply
  2767. 7, // 216: base.Api.SttPlanDetailQuery:output_type -> base.StandardReply
  2768. 7, // 217: base.Api.SttPlanDetailBatchSave:output_type -> base.StandardReply
  2769. 7, // 218: base.Api.STTBasicQuery:output_type -> base.StandardReply
  2770. 7, // 219: base.Api.STTBasicAdd:output_type -> base.StandardReply
  2771. 7, // 220: base.Api.STTBasicEdit:output_type -> base.StandardReply
  2772. 7, // 221: base.Api.STTBasicStatusEdit:output_type -> base.StandardReply
  2773. 7, // 222: base.Api.STTBasicPreview:output_type -> base.StandardReply
  2774. 7, // 223: base.Api.STTBasicCopy:output_type -> base.StandardReply
  2775. 7, // 224: base.Api.STTBasicOfflineEdit:output_type -> base.StandardReply
  2776. 7, // 225: base.Api.STTDetailListQuery:output_type -> base.StandardReply
  2777. 7, // 226: base.Api.STTBasicDetailBatchSave:output_type -> base.StandardReply
  2778. 7, // 227: base.Api.STTDetailAllowDelCheck:output_type -> base.StandardReply
  2779. 7, // 228: base.Api.CourseDetailQuery:output_type -> base.StandardReply
  2780. 7, // 229: base.Api.ClassListByOrderDate:output_type -> base.StandardReply
  2781. 7, // 230: base.Api.ClassStartPrepare:output_type -> base.StandardReply
  2782. 7, // 231: base.Api.VipClassDetailQuery:output_type -> base.StandardReply
  2783. 7, // 232: base.Api.VipClassDetailAdd:output_type -> base.StandardReply
  2784. 7, // 233: base.Api.VipClassDetailDel:output_type -> base.StandardReply
  2785. 7, // 234: base.Api.TmpClassDetailAdd:output_type -> base.StandardReply
  2786. 7, // 235: base.Api.TmpClassDetailDel:output_type -> base.StandardReply
  2787. 7, // 236: base.Api.VipClassDetailStatueEdit:output_type -> base.StandardReply
  2788. 7, // 237: base.Api.ClassStartConfirm:output_type -> base.StandardReply
  2789. 7, // 238: base.Api.ClassOverConfirm:output_type -> base.StandardReply
  2790. 7, // 239: base.Api.ClassGiveUpConfirm:output_type -> base.StandardReply
  2791. 7, // 240: base.Api.AfterClassAddClassDetail:output_type -> base.StandardReply
  2792. 7, // 241: base.Api.OrderListQuery:output_type -> base.StandardReply
  2793. 7, // 242: base.Api.OrderAddByManager:output_type -> base.StandardReply
  2794. 7, // 243: base.Api.OrderCancelByManager:output_type -> base.StandardReply
  2795. 7, // 244: base.Api.OrderStatistics:output_type -> base.StandardReply
  2796. 7, // 245: base.Api.ClassOrderQuery:output_type -> base.StandardReply
  2797. 7, // 246: base.Api.VipUserOrderQuery:output_type -> base.StandardReply
  2798. 7, // 247: base.Api.UserOrderQueryByStd:output_type -> base.StandardReply
  2799. 7, // 248: base.Api.HrSensorsPublicQuery:output_type -> base.StandardReply
  2800. 7, // 249: base.Api.HrSensorsPvtQuery:output_type -> base.StandardReply
  2801. 7, // 250: base.Api.AddHrSensors:output_type -> base.StandardReply
  2802. 7, // 251: base.Api.AddPvtHrSensors:output_type -> base.StandardReply
  2803. 7, // 252: base.Api.EditHrSensors:output_type -> base.StandardReply
  2804. 7, // 253: base.Api.HrSensorsDel:output_type -> base.StandardReply
  2805. 7, // 254: base.Api.PKGroupChg:output_type -> base.StandardReply
  2806. 7, // 255: base.Api.BindHrSensor:output_type -> base.StandardReply
  2807. 7, // 256: base.Api.UnBindHrSensor:output_type -> base.StandardReply
  2808. 7, // 257: base.Api.ActionQuery:output_type -> base.StandardReply
  2809. 12, // 258: base.Api.GenVerifyImageByWinXin:output_type -> base.GenVerifyImageReply
  2810. 7, // 259: base.Api.GenPhoneVerifyCodeByWeiXin:output_type -> base.StandardReply
  2811. 4, // 260: base.Api.CheckVerifyCode:output_type -> base.DefaultReply
  2812. 9, // 261: base.Api.WeiXinSignIn:output_type -> base.SignInReply
  2813. 137, // [137:262] is the sub-list for method output_type
  2814. 12, // [12:137] is the sub-list for method input_type
  2815. 12, // [12:12] is the sub-list for extension type_name
  2816. 12, // [12:12] is the sub-list for extension extendee
  2817. 0, // [0:12] is the sub-list for field type_name
  2818. }
  2819. func init() { file_base_proto_init() }
  2820. func file_base_proto_init() {
  2821. if File_base_proto != nil {
  2822. return
  2823. }
  2824. if !protoimpl.UnsafeEnabled {
  2825. file_base_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2826. switch v := v.(*DefaultRequest); i {
  2827. case 0:
  2828. return &v.state
  2829. case 1:
  2830. return &v.sizeCache
  2831. case 2:
  2832. return &v.unknownFields
  2833. default:
  2834. return nil
  2835. }
  2836. }
  2837. file_base_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2838. switch v := v.(*DefaultReply); i {
  2839. case 0:
  2840. return &v.state
  2841. case 1:
  2842. return &v.sizeCache
  2843. case 2:
  2844. return &v.unknownFields
  2845. default:
  2846. return nil
  2847. }
  2848. }
  2849. file_base_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2850. switch v := v.(*StandardRequest); i {
  2851. case 0:
  2852. return &v.state
  2853. case 1:
  2854. return &v.sizeCache
  2855. case 2:
  2856. return &v.unknownFields
  2857. default:
  2858. return nil
  2859. }
  2860. }
  2861. file_base_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2862. switch v := v.(*CourseStandardRequest); i {
  2863. case 0:
  2864. return &v.state
  2865. case 1:
  2866. return &v.sizeCache
  2867. case 2:
  2868. return &v.unknownFields
  2869. default:
  2870. return nil
  2871. }
  2872. }
  2873. file_base_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2874. switch v := v.(*StandardReply); i {
  2875. case 0:
  2876. return &v.state
  2877. case 1:
  2878. return &v.sizeCache
  2879. case 2:
  2880. return &v.unknownFields
  2881. default:
  2882. return nil
  2883. }
  2884. }
  2885. file_base_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2886. switch v := v.(*SignUpRequest); i {
  2887. case 0:
  2888. return &v.state
  2889. case 1:
  2890. return &v.sizeCache
  2891. case 2:
  2892. return &v.unknownFields
  2893. default:
  2894. return nil
  2895. }
  2896. }
  2897. file_base_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2898. switch v := v.(*SignInReply); i {
  2899. case 0:
  2900. return &v.state
  2901. case 1:
  2902. return &v.sizeCache
  2903. case 2:
  2904. return &v.unknownFields
  2905. default:
  2906. return nil
  2907. }
  2908. }
  2909. file_base_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2910. switch v := v.(*SignInRequest); i {
  2911. case 0:
  2912. return &v.state
  2913. case 1:
  2914. return &v.sizeCache
  2915. case 2:
  2916. return &v.unknownFields
  2917. default:
  2918. return nil
  2919. }
  2920. }
  2921. file_base_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2922. switch v := v.(*GenVerifyImageRequest); i {
  2923. case 0:
  2924. return &v.state
  2925. case 1:
  2926. return &v.sizeCache
  2927. case 2:
  2928. return &v.unknownFields
  2929. default:
  2930. return nil
  2931. }
  2932. }
  2933. file_base_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2934. switch v := v.(*GenVerifyImageReply); i {
  2935. case 0:
  2936. return &v.state
  2937. case 1:
  2938. return &v.sizeCache
  2939. case 2:
  2940. return &v.unknownFields
  2941. default:
  2942. return nil
  2943. }
  2944. }
  2945. file_base_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2946. switch v := v.(*ShopInfo); i {
  2947. case 0:
  2948. return &v.state
  2949. case 1:
  2950. return &v.sizeCache
  2951. case 2:
  2952. return &v.unknownFields
  2953. default:
  2954. return nil
  2955. }
  2956. }
  2957. file_base_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2958. switch v := v.(*ShopDetailRequest); i {
  2959. case 0:
  2960. return &v.state
  2961. case 1:
  2962. return &v.sizeCache
  2963. case 2:
  2964. return &v.unknownFields
  2965. default:
  2966. return nil
  2967. }
  2968. }
  2969. file_base_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2970. switch v := v.(*ShopListRequest); i {
  2971. case 0:
  2972. return &v.state
  2973. case 1:
  2974. return &v.sizeCache
  2975. case 2:
  2976. return &v.unknownFields
  2977. default:
  2978. return nil
  2979. }
  2980. }
  2981. file_base_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2982. switch v := v.(*ShopListReply); i {
  2983. case 0:
  2984. return &v.state
  2985. case 1:
  2986. return &v.sizeCache
  2987. case 2:
  2988. return &v.unknownFields
  2989. default:
  2990. return nil
  2991. }
  2992. }
  2993. file_base_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2994. switch v := v.(*GetShopNaviRequest); i {
  2995. case 0:
  2996. return &v.state
  2997. case 1:
  2998. return &v.sizeCache
  2999. case 2:
  3000. return &v.unknownFields
  3001. default:
  3002. return nil
  3003. }
  3004. }
  3005. file_base_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3006. switch v := v.(*GetShopNaviAllRequest); i {
  3007. case 0:
  3008. return &v.state
  3009. case 1:
  3010. return &v.sizeCache
  3011. case 2:
  3012. return &v.unknownFields
  3013. default:
  3014. return nil
  3015. }
  3016. }
  3017. file_base_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3018. switch v := v.(*Column); i {
  3019. case 0:
  3020. return &v.state
  3021. case 1:
  3022. return &v.sizeCache
  3023. case 2:
  3024. return &v.unknownFields
  3025. default:
  3026. return nil
  3027. }
  3028. }
  3029. file_base_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3030. switch v := v.(*GetShopNaviReply); i {
  3031. case 0:
  3032. return &v.state
  3033. case 1:
  3034. return &v.sizeCache
  3035. case 2:
  3036. return &v.unknownFields
  3037. default:
  3038. return nil
  3039. }
  3040. }
  3041. file_base_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3042. switch v := v.(*GetShopNaviAllReply); i {
  3043. case 0:
  3044. return &v.state
  3045. case 1:
  3046. return &v.sizeCache
  3047. case 2:
  3048. return &v.unknownFields
  3049. default:
  3050. return nil
  3051. }
  3052. }
  3053. file_base_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3054. switch v := v.(*GetOverlayImgRequest); i {
  3055. case 0:
  3056. return &v.state
  3057. case 1:
  3058. return &v.sizeCache
  3059. case 2:
  3060. return &v.unknownFields
  3061. default:
  3062. return nil
  3063. }
  3064. }
  3065. file_base_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3066. switch v := v.(*QiNiuTokenReply); i {
  3067. case 0:
  3068. return &v.state
  3069. case 1:
  3070. return &v.sizeCache
  3071. case 2:
  3072. return &v.unknownFields
  3073. default:
  3074. return nil
  3075. }
  3076. }
  3077. file_base_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3078. switch v := v.(*License); i {
  3079. case 0:
  3080. return &v.state
  3081. case 1:
  3082. return &v.sizeCache
  3083. case 2:
  3084. return &v.unknownFields
  3085. default:
  3086. return nil
  3087. }
  3088. }
  3089. file_base_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3090. switch v := v.(*LicenseList); i {
  3091. case 0:
  3092. return &v.state
  3093. case 1:
  3094. return &v.sizeCache
  3095. case 2:
  3096. return &v.unknownFields
  3097. default:
  3098. return nil
  3099. }
  3100. }
  3101. file_base_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3102. switch v := v.(*IdList); i {
  3103. case 0:
  3104. return &v.state
  3105. case 1:
  3106. return &v.sizeCache
  3107. case 2:
  3108. return &v.unknownFields
  3109. default:
  3110. return nil
  3111. }
  3112. }
  3113. file_base_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3114. switch v := v.(*LicenseType); i {
  3115. case 0:
  3116. return &v.state
  3117. case 1:
  3118. return &v.sizeCache
  3119. case 2:
  3120. return &v.unknownFields
  3121. default:
  3122. return nil
  3123. }
  3124. }
  3125. file_base_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3126. switch v := v.(*LicenseTypeMapReply); i {
  3127. case 0:
  3128. return &v.state
  3129. case 1:
  3130. return &v.sizeCache
  3131. case 2:
  3132. return &v.unknownFields
  3133. default:
  3134. return nil
  3135. }
  3136. }
  3137. file_base_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3138. switch v := v.(*GenPhoneVerifyCodeRequestWX); i {
  3139. case 0:
  3140. return &v.state
  3141. case 1:
  3142. return &v.sizeCache
  3143. case 2:
  3144. return &v.unknownFields
  3145. default:
  3146. return nil
  3147. }
  3148. }
  3149. file_base_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3150. switch v := v.(*CheckVerifyCodeRequest); i {
  3151. case 0:
  3152. return &v.state
  3153. case 1:
  3154. return &v.sizeCache
  3155. case 2:
  3156. return &v.unknownFields
  3157. default:
  3158. return nil
  3159. }
  3160. }
  3161. file_base_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3162. switch v := v.(*WeiXinSignInRequest); i {
  3163. case 0:
  3164. return &v.state
  3165. case 1:
  3166. return &v.sizeCache
  3167. case 2:
  3168. return &v.unknownFields
  3169. default:
  3170. return nil
  3171. }
  3172. }
  3173. }
  3174. type x struct{}
  3175. out := protoimpl.TypeBuilder{
  3176. File: protoimpl.DescBuilder{
  3177. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3178. RawDescriptor: file_base_proto_rawDesc,
  3179. NumEnums: 3,
  3180. NumMessages: 30,
  3181. NumExtensions: 0,
  3182. NumServices: 1,
  3183. },
  3184. GoTypes: file_base_proto_goTypes,
  3185. DependencyIndexes: file_base_proto_depIdxs,
  3186. EnumInfos: file_base_proto_enumTypes,
  3187. MessageInfos: file_base_proto_msgTypes,
  3188. }.Build()
  3189. File_base_proto = out.File
  3190. file_base_proto_rawDesc = nil
  3191. file_base_proto_goTypes = nil
  3192. file_base_proto_depIdxs = nil
  3193. }