user.pb.go 192 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.8
  5. // source: user.proto
  6. package user
  7. import (
  8. chat "git.ikuban.com/server/pw-protobuf/api/chat"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  13. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. structpb "google.golang.org/protobuf/types/known/structpb"
  16. reflect "reflect"
  17. sync "sync"
  18. )
  19. const (
  20. // Verify that this generated code is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  22. // Verify that runtime/protoimpl is sufficiently up-to-date.
  23. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  24. )
  25. type AddUserCreditRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  30. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  31. Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail"`
  32. }
  33. func (x *AddUserCreditRequest) Reset() {
  34. *x = AddUserCreditRequest{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_user_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *AddUserCreditRequest) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*AddUserCreditRequest) ProtoMessage() {}
  45. func (x *AddUserCreditRequest) ProtoReflect() protoreflect.Message {
  46. mi := &file_user_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use AddUserCreditRequest.ProtoReflect.Descriptor instead.
  57. func (*AddUserCreditRequest) Descriptor() ([]byte, []int) {
  58. return file_user_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *AddUserCreditRequest) GetId() string {
  61. if x != nil {
  62. return x.Id
  63. }
  64. return ""
  65. }
  66. func (x *AddUserCreditRequest) GetCredit() int64 {
  67. if x != nil {
  68. return x.Credit
  69. }
  70. return 0
  71. }
  72. func (x *AddUserCreditRequest) GetDetail() string {
  73. if x != nil {
  74. return x.Detail
  75. }
  76. return ""
  77. }
  78. type ReportUserBlackRequest struct {
  79. state protoimpl.MessageState
  80. sizeCache protoimpl.SizeCache
  81. unknownFields protoimpl.UnknownFields
  82. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  83. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  84. }
  85. func (x *ReportUserBlackRequest) Reset() {
  86. *x = ReportUserBlackRequest{}
  87. if protoimpl.UnsafeEnabled {
  88. mi := &file_user_proto_msgTypes[1]
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. ms.StoreMessageInfo(mi)
  91. }
  92. }
  93. func (x *ReportUserBlackRequest) String() string {
  94. return protoimpl.X.MessageStringOf(x)
  95. }
  96. func (*ReportUserBlackRequest) ProtoMessage() {}
  97. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  98. mi := &file_user_proto_msgTypes[1]
  99. if protoimpl.UnsafeEnabled && x != nil {
  100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  101. if ms.LoadMessageInfo() == nil {
  102. ms.StoreMessageInfo(mi)
  103. }
  104. return ms
  105. }
  106. return mi.MessageOf(x)
  107. }
  108. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  109. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  110. return file_user_proto_rawDescGZIP(), []int{1}
  111. }
  112. func (x *ReportUserBlackRequest) GetPersonId() string {
  113. if x != nil {
  114. return x.PersonId
  115. }
  116. return ""
  117. }
  118. func (x *ReportUserBlackRequest) GetResult() string {
  119. if x != nil {
  120. return x.Result
  121. }
  122. return ""
  123. }
  124. type SendMessageRequest struct {
  125. state protoimpl.MessageState
  126. sizeCache protoimpl.SizeCache
  127. unknownFields protoimpl.UnknownFields
  128. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  129. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  130. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  131. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  132. }
  133. func (x *SendMessageRequest) Reset() {
  134. *x = SendMessageRequest{}
  135. if protoimpl.UnsafeEnabled {
  136. mi := &file_user_proto_msgTypes[2]
  137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  138. ms.StoreMessageInfo(mi)
  139. }
  140. }
  141. func (x *SendMessageRequest) String() string {
  142. return protoimpl.X.MessageStringOf(x)
  143. }
  144. func (*SendMessageRequest) ProtoMessage() {}
  145. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  146. mi := &file_user_proto_msgTypes[2]
  147. if protoimpl.UnsafeEnabled && x != nil {
  148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  149. if ms.LoadMessageInfo() == nil {
  150. ms.StoreMessageInfo(mi)
  151. }
  152. return ms
  153. }
  154. return mi.MessageOf(x)
  155. }
  156. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  157. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  158. return file_user_proto_rawDescGZIP(), []int{2}
  159. }
  160. func (x *SendMessageRequest) GetRoomId() int64 {
  161. if x != nil {
  162. return x.RoomId
  163. }
  164. return 0
  165. }
  166. func (x *SendMessageRequest) GetMessage() *common.Message {
  167. if x != nil && x.Message != nil {
  168. return x.Message
  169. }
  170. return &common.Message{}
  171. }
  172. func (x *SendMessageRequest) GetMsgType() string {
  173. if x != nil {
  174. return x.MsgType
  175. }
  176. return ""
  177. }
  178. func (x *SendMessageRequest) GetWebsocketTag() string {
  179. if x != nil {
  180. return x.WebsocketTag
  181. }
  182. return ""
  183. }
  184. type ManagerFindIsCheckQualityUserListRequest struct {
  185. state protoimpl.MessageState
  186. sizeCache protoimpl.SizeCache
  187. unknownFields protoimpl.UnknownFields
  188. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  189. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  190. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  191. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  192. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  193. }
  194. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  195. *x = ManagerFindIsCheckQualityUserListRequest{}
  196. if protoimpl.UnsafeEnabled {
  197. mi := &file_user_proto_msgTypes[3]
  198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  199. ms.StoreMessageInfo(mi)
  200. }
  201. }
  202. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  203. return protoimpl.X.MessageStringOf(x)
  204. }
  205. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  206. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  207. mi := &file_user_proto_msgTypes[3]
  208. if protoimpl.UnsafeEnabled && x != nil {
  209. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  210. if ms.LoadMessageInfo() == nil {
  211. ms.StoreMessageInfo(mi)
  212. }
  213. return ms
  214. }
  215. return mi.MessageOf(x)
  216. }
  217. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  218. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  219. return file_user_proto_rawDescGZIP(), []int{3}
  220. }
  221. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  222. if x != nil {
  223. return x.Page
  224. }
  225. return 0
  226. }
  227. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  228. if x != nil {
  229. return x.PageSize
  230. }
  231. return 0
  232. }
  233. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  234. if x != nil {
  235. return x.Id
  236. }
  237. return 0
  238. }
  239. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  240. if x != nil {
  241. return x.Name
  242. }
  243. return ""
  244. }
  245. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  246. if x != nil {
  247. return x.Sex
  248. }
  249. return 0
  250. }
  251. type ManagerUpdateUserCreditRequest struct {
  252. state protoimpl.MessageState
  253. sizeCache protoimpl.SizeCache
  254. unknownFields protoimpl.UnknownFields
  255. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  256. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  257. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  258. }
  259. func (x *ManagerUpdateUserCreditRequest) Reset() {
  260. *x = ManagerUpdateUserCreditRequest{}
  261. if protoimpl.UnsafeEnabled {
  262. mi := &file_user_proto_msgTypes[4]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. }
  267. func (x *ManagerUpdateUserCreditRequest) String() string {
  268. return protoimpl.X.MessageStringOf(x)
  269. }
  270. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  271. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  272. mi := &file_user_proto_msgTypes[4]
  273. if protoimpl.UnsafeEnabled && x != nil {
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. if ms.LoadMessageInfo() == nil {
  276. ms.StoreMessageInfo(mi)
  277. }
  278. return ms
  279. }
  280. return mi.MessageOf(x)
  281. }
  282. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  283. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  284. return file_user_proto_rawDescGZIP(), []int{4}
  285. }
  286. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  287. if x != nil {
  288. return x.PersonId
  289. }
  290. return ""
  291. }
  292. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  293. if x != nil {
  294. return x.Num
  295. }
  296. return 0
  297. }
  298. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  299. if x != nil {
  300. return x.Title
  301. }
  302. return ""
  303. }
  304. type ManagerMarkHighQualityUserRequest struct {
  305. state protoimpl.MessageState
  306. sizeCache protoimpl.SizeCache
  307. unknownFields protoimpl.UnknownFields
  308. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  309. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  310. }
  311. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  312. *x = ManagerMarkHighQualityUserRequest{}
  313. if protoimpl.UnsafeEnabled {
  314. mi := &file_user_proto_msgTypes[5]
  315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  316. ms.StoreMessageInfo(mi)
  317. }
  318. }
  319. func (x *ManagerMarkHighQualityUserRequest) String() string {
  320. return protoimpl.X.MessageStringOf(x)
  321. }
  322. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  323. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  324. mi := &file_user_proto_msgTypes[5]
  325. if protoimpl.UnsafeEnabled && x != nil {
  326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  327. if ms.LoadMessageInfo() == nil {
  328. ms.StoreMessageInfo(mi)
  329. }
  330. return ms
  331. }
  332. return mi.MessageOf(x)
  333. }
  334. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  335. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  336. return file_user_proto_rawDescGZIP(), []int{5}
  337. }
  338. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  339. if x != nil {
  340. return x.PassIds
  341. }
  342. return make([]string, 0)
  343. }
  344. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  345. if x != nil {
  346. return x.UnPassIds
  347. }
  348. return make([]string, 0)
  349. }
  350. type GetRecommendUserDBRequest struct {
  351. state protoimpl.MessageState
  352. sizeCache protoimpl.SizeCache
  353. unknownFields protoimpl.UnknownFields
  354. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  355. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  356. }
  357. func (x *GetRecommendUserDBRequest) Reset() {
  358. *x = GetRecommendUserDBRequest{}
  359. if protoimpl.UnsafeEnabled {
  360. mi := &file_user_proto_msgTypes[6]
  361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  362. ms.StoreMessageInfo(mi)
  363. }
  364. }
  365. func (x *GetRecommendUserDBRequest) String() string {
  366. return protoimpl.X.MessageStringOf(x)
  367. }
  368. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  369. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  370. mi := &file_user_proto_msgTypes[6]
  371. if protoimpl.UnsafeEnabled && x != nil {
  372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  373. if ms.LoadMessageInfo() == nil {
  374. ms.StoreMessageInfo(mi)
  375. }
  376. return ms
  377. }
  378. return mi.MessageOf(x)
  379. }
  380. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  381. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  382. return file_user_proto_rawDescGZIP(), []int{6}
  383. }
  384. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  385. if x != nil {
  386. return x.Sex
  387. }
  388. return 0
  389. }
  390. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  391. if x != nil {
  392. return x.PersonIds
  393. }
  394. return make([]string, 0)
  395. }
  396. type FindRecommendHighQualityUserRequest struct {
  397. state protoimpl.MessageState
  398. sizeCache protoimpl.SizeCache
  399. unknownFields protoimpl.UnknownFields
  400. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  401. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  402. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  403. }
  404. func (x *FindRecommendHighQualityUserRequest) Reset() {
  405. *x = FindRecommendHighQualityUserRequest{}
  406. if protoimpl.UnsafeEnabled {
  407. mi := &file_user_proto_msgTypes[7]
  408. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  409. ms.StoreMessageInfo(mi)
  410. }
  411. }
  412. func (x *FindRecommendHighQualityUserRequest) String() string {
  413. return protoimpl.X.MessageStringOf(x)
  414. }
  415. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  416. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  417. mi := &file_user_proto_msgTypes[7]
  418. if protoimpl.UnsafeEnabled && x != nil {
  419. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  420. if ms.LoadMessageInfo() == nil {
  421. ms.StoreMessageInfo(mi)
  422. }
  423. return ms
  424. }
  425. return mi.MessageOf(x)
  426. }
  427. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  428. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  429. return file_user_proto_rawDescGZIP(), []int{7}
  430. }
  431. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  432. if x != nil {
  433. return x.Num
  434. }
  435. return 0
  436. }
  437. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  438. if x != nil {
  439. return x.Sex
  440. }
  441. return 0
  442. }
  443. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  444. if x != nil {
  445. return x.PersonId
  446. }
  447. return ""
  448. }
  449. type FindRecommendHighQualityUserReply struct {
  450. state protoimpl.MessageState
  451. sizeCache protoimpl.SizeCache
  452. unknownFields protoimpl.UnknownFields
  453. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  454. }
  455. func (x *FindRecommendHighQualityUserReply) Reset() {
  456. *x = FindRecommendHighQualityUserReply{}
  457. if protoimpl.UnsafeEnabled {
  458. mi := &file_user_proto_msgTypes[8]
  459. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  460. ms.StoreMessageInfo(mi)
  461. }
  462. }
  463. func (x *FindRecommendHighQualityUserReply) String() string {
  464. return protoimpl.X.MessageStringOf(x)
  465. }
  466. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  467. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  468. mi := &file_user_proto_msgTypes[8]
  469. if protoimpl.UnsafeEnabled && x != nil {
  470. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  471. if ms.LoadMessageInfo() == nil {
  472. ms.StoreMessageInfo(mi)
  473. }
  474. return ms
  475. }
  476. return mi.MessageOf(x)
  477. }
  478. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  479. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  480. return file_user_proto_rawDescGZIP(), []int{8}
  481. }
  482. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  483. if x != nil {
  484. return x.PersonIdList
  485. }
  486. return make([]string, 0)
  487. }
  488. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  489. state protoimpl.MessageState
  490. sizeCache protoimpl.SizeCache
  491. unknownFields protoimpl.UnknownFields
  492. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  493. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  494. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  495. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  496. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  497. City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city"` //城市
  498. }
  499. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  500. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  501. if protoimpl.UnsafeEnabled {
  502. mi := &file_user_proto_msgTypes[9]
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. ms.StoreMessageInfo(mi)
  505. }
  506. }
  507. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  508. return protoimpl.X.MessageStringOf(x)
  509. }
  510. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  511. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  512. mi := &file_user_proto_msgTypes[9]
  513. if protoimpl.UnsafeEnabled && x != nil {
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. if ms.LoadMessageInfo() == nil {
  516. ms.StoreMessageInfo(mi)
  517. }
  518. return ms
  519. }
  520. return mi.MessageOf(x)
  521. }
  522. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  523. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  524. return file_user_proto_rawDescGZIP(), []int{9}
  525. }
  526. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  527. if x != nil {
  528. return x.TodayMatchedNum
  529. }
  530. return 0
  531. }
  532. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  533. if x != nil {
  534. return x.Nickname
  535. }
  536. return ""
  537. }
  538. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  539. if x != nil {
  540. return x.AvatarUrl
  541. }
  542. return ""
  543. }
  544. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  545. if x != nil {
  546. return x.Sex
  547. }
  548. return 0
  549. }
  550. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  551. if x != nil {
  552. return x.Age
  553. }
  554. return 0
  555. }
  556. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetCity() string {
  557. if x != nil {
  558. return x.City
  559. }
  560. return ""
  561. }
  562. type GetUserDBMsgFromWebsocketReply struct {
  563. state protoimpl.MessageState
  564. sizeCache protoimpl.SizeCache
  565. unknownFields protoimpl.UnknownFields
  566. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  567. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  568. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  569. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  570. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  571. }
  572. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  573. *x = GetUserDBMsgFromWebsocketReply{}
  574. if protoimpl.UnsafeEnabled {
  575. mi := &file_user_proto_msgTypes[10]
  576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  577. ms.StoreMessageInfo(mi)
  578. }
  579. }
  580. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  581. return protoimpl.X.MessageStringOf(x)
  582. }
  583. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  584. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  585. mi := &file_user_proto_msgTypes[10]
  586. if protoimpl.UnsafeEnabled && x != nil {
  587. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  588. if ms.LoadMessageInfo() == nil {
  589. ms.StoreMessageInfo(mi)
  590. }
  591. return ms
  592. }
  593. return mi.MessageOf(x)
  594. }
  595. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  596. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  597. return file_user_proto_rawDescGZIP(), []int{10}
  598. }
  599. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  600. if x != nil {
  601. return x.Id
  602. }
  603. return ""
  604. }
  605. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  606. if x != nil {
  607. return x.Sex
  608. }
  609. return 0
  610. }
  611. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  612. if x != nil {
  613. return x.Weight
  614. }
  615. return 0
  616. }
  617. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  618. if x != nil {
  619. return x.WorkingStatus
  620. }
  621. return ""
  622. }
  623. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  624. if x != nil {
  625. return x.TodayMatchedNum
  626. }
  627. return 0
  628. }
  629. type UpdateUserMatchedNumRequest struct {
  630. state protoimpl.MessageState
  631. sizeCache protoimpl.SizeCache
  632. unknownFields protoimpl.UnknownFields
  633. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  634. }
  635. func (x *UpdateUserMatchedNumRequest) Reset() {
  636. *x = UpdateUserMatchedNumRequest{}
  637. if protoimpl.UnsafeEnabled {
  638. mi := &file_user_proto_msgTypes[11]
  639. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  640. ms.StoreMessageInfo(mi)
  641. }
  642. }
  643. func (x *UpdateUserMatchedNumRequest) String() string {
  644. return protoimpl.X.MessageStringOf(x)
  645. }
  646. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  647. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  648. mi := &file_user_proto_msgTypes[11]
  649. if protoimpl.UnsafeEnabled && x != nil {
  650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  651. if ms.LoadMessageInfo() == nil {
  652. ms.StoreMessageInfo(mi)
  653. }
  654. return ms
  655. }
  656. return mi.MessageOf(x)
  657. }
  658. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  659. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  660. return file_user_proto_rawDescGZIP(), []int{11}
  661. }
  662. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  663. if x != nil {
  664. return x.UserId
  665. }
  666. return ""
  667. }
  668. type SendNewMessageUnreadReminderRequest struct {
  669. state protoimpl.MessageState
  670. sizeCache protoimpl.SizeCache
  671. unknownFields protoimpl.UnknownFields
  672. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  673. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  674. }
  675. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  676. *x = SendNewMessageUnreadReminderRequest{}
  677. if protoimpl.UnsafeEnabled {
  678. mi := &file_user_proto_msgTypes[12]
  679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  680. ms.StoreMessageInfo(mi)
  681. }
  682. }
  683. func (x *SendNewMessageUnreadReminderRequest) String() string {
  684. return protoimpl.X.MessageStringOf(x)
  685. }
  686. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  687. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  688. mi := &file_user_proto_msgTypes[12]
  689. if protoimpl.UnsafeEnabled && x != nil {
  690. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  691. if ms.LoadMessageInfo() == nil {
  692. ms.StoreMessageInfo(mi)
  693. }
  694. return ms
  695. }
  696. return mi.MessageOf(x)
  697. }
  698. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  699. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  700. return file_user_proto_rawDescGZIP(), []int{12}
  701. }
  702. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  703. if x != nil {
  704. return x.PersonId
  705. }
  706. return ""
  707. }
  708. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  709. if x != nil {
  710. return x.SendPersonId
  711. }
  712. return ""
  713. }
  714. type SendMsgReduceCreditReply struct {
  715. state protoimpl.MessageState
  716. sizeCache protoimpl.SizeCache
  717. unknownFields protoimpl.UnknownFields
  718. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  719. }
  720. func (x *SendMsgReduceCreditReply) Reset() {
  721. *x = SendMsgReduceCreditReply{}
  722. if protoimpl.UnsafeEnabled {
  723. mi := &file_user_proto_msgTypes[13]
  724. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  725. ms.StoreMessageInfo(mi)
  726. }
  727. }
  728. func (x *SendMsgReduceCreditReply) String() string {
  729. return protoimpl.X.MessageStringOf(x)
  730. }
  731. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  732. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  733. mi := &file_user_proto_msgTypes[13]
  734. if protoimpl.UnsafeEnabled && x != nil {
  735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  736. if ms.LoadMessageInfo() == nil {
  737. ms.StoreMessageInfo(mi)
  738. }
  739. return ms
  740. }
  741. return mi.MessageOf(x)
  742. }
  743. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  744. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  745. return file_user_proto_rawDescGZIP(), []int{13}
  746. }
  747. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  748. if x != nil {
  749. return x.IsSendReminder
  750. }
  751. return false
  752. }
  753. type UserFreeNum struct {
  754. state protoimpl.MessageState
  755. sizeCache protoimpl.SizeCache
  756. unknownFields protoimpl.UnknownFields
  757. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  758. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  759. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  760. }
  761. func (x *UserFreeNum) Reset() {
  762. *x = UserFreeNum{}
  763. if protoimpl.UnsafeEnabled {
  764. mi := &file_user_proto_msgTypes[14]
  765. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  766. ms.StoreMessageInfo(mi)
  767. }
  768. }
  769. func (x *UserFreeNum) String() string {
  770. return protoimpl.X.MessageStringOf(x)
  771. }
  772. func (*UserFreeNum) ProtoMessage() {}
  773. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  774. mi := &file_user_proto_msgTypes[14]
  775. if protoimpl.UnsafeEnabled && x != nil {
  776. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  777. if ms.LoadMessageInfo() == nil {
  778. ms.StoreMessageInfo(mi)
  779. }
  780. return ms
  781. }
  782. return mi.MessageOf(x)
  783. }
  784. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  785. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  786. return file_user_proto_rawDescGZIP(), []int{14}
  787. }
  788. func (x *UserFreeNum) GetReplyScripNum() int64 {
  789. if x != nil {
  790. return x.ReplyScripNum
  791. }
  792. return 0
  793. }
  794. func (x *UserFreeNum) GetCreateScripNum() int64 {
  795. if x != nil {
  796. return x.CreateScripNum
  797. }
  798. return 0
  799. }
  800. func (x *UserFreeNum) GetMatchingNum() int64 {
  801. if x != nil {
  802. return x.MatchingNum
  803. }
  804. return 0
  805. }
  806. type ReplyScripRequest struct {
  807. state protoimpl.MessageState
  808. sizeCache protoimpl.SizeCache
  809. unknownFields protoimpl.UnknownFields
  810. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  811. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  812. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  813. }
  814. func (x *ReplyScripRequest) Reset() {
  815. *x = ReplyScripRequest{}
  816. if protoimpl.UnsafeEnabled {
  817. mi := &file_user_proto_msgTypes[15]
  818. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  819. ms.StoreMessageInfo(mi)
  820. }
  821. }
  822. func (x *ReplyScripRequest) String() string {
  823. return protoimpl.X.MessageStringOf(x)
  824. }
  825. func (*ReplyScripRequest) ProtoMessage() {}
  826. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  827. mi := &file_user_proto_msgTypes[15]
  828. if protoimpl.UnsafeEnabled && x != nil {
  829. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  830. if ms.LoadMessageInfo() == nil {
  831. ms.StoreMessageInfo(mi)
  832. }
  833. return ms
  834. }
  835. return mi.MessageOf(x)
  836. }
  837. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  838. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  839. return file_user_proto_rawDescGZIP(), []int{15}
  840. }
  841. func (x *ReplyScripRequest) GetScripId() int64 {
  842. if x != nil {
  843. return x.ScripId
  844. }
  845. return 0
  846. }
  847. func (x *ReplyScripRequest) GetMessage() *common.Message {
  848. if x != nil && x.Message != nil {
  849. return x.Message
  850. }
  851. return &common.Message{}
  852. }
  853. func (x *ReplyScripRequest) GetMsgType() string {
  854. if x != nil {
  855. return x.MsgType
  856. }
  857. return ""
  858. }
  859. type PersonLookScripRequest struct {
  860. state protoimpl.MessageState
  861. sizeCache protoimpl.SizeCache
  862. unknownFields protoimpl.UnknownFields
  863. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  864. }
  865. func (x *PersonLookScripRequest) Reset() {
  866. *x = PersonLookScripRequest{}
  867. if protoimpl.UnsafeEnabled {
  868. mi := &file_user_proto_msgTypes[16]
  869. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  870. ms.StoreMessageInfo(mi)
  871. }
  872. }
  873. func (x *PersonLookScripRequest) String() string {
  874. return protoimpl.X.MessageStringOf(x)
  875. }
  876. func (*PersonLookScripRequest) ProtoMessage() {}
  877. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  878. mi := &file_user_proto_msgTypes[16]
  879. if protoimpl.UnsafeEnabled && x != nil {
  880. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  881. if ms.LoadMessageInfo() == nil {
  882. ms.StoreMessageInfo(mi)
  883. }
  884. return ms
  885. }
  886. return mi.MessageOf(x)
  887. }
  888. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  889. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  890. return file_user_proto_rawDescGZIP(), []int{16}
  891. }
  892. func (x *PersonLookScripRequest) GetScripId() int64 {
  893. if x != nil {
  894. return x.ScripId
  895. }
  896. return 0
  897. }
  898. type UserFindScripRequest struct {
  899. state protoimpl.MessageState
  900. sizeCache protoimpl.SizeCache
  901. unknownFields protoimpl.UnknownFields
  902. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  903. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  904. }
  905. func (x *UserFindScripRequest) Reset() {
  906. *x = UserFindScripRequest{}
  907. if protoimpl.UnsafeEnabled {
  908. mi := &file_user_proto_msgTypes[17]
  909. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  910. ms.StoreMessageInfo(mi)
  911. }
  912. }
  913. func (x *UserFindScripRequest) String() string {
  914. return protoimpl.X.MessageStringOf(x)
  915. }
  916. func (*UserFindScripRequest) ProtoMessage() {}
  917. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  918. mi := &file_user_proto_msgTypes[17]
  919. if protoimpl.UnsafeEnabled && x != nil {
  920. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  921. if ms.LoadMessageInfo() == nil {
  922. ms.StoreMessageInfo(mi)
  923. }
  924. return ms
  925. }
  926. return mi.MessageOf(x)
  927. }
  928. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  929. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  930. return file_user_proto_rawDescGZIP(), []int{17}
  931. }
  932. func (x *UserFindScripRequest) GetNextId() int64 {
  933. if x != nil {
  934. return x.NextId
  935. }
  936. return 0
  937. }
  938. func (x *UserFindScripRequest) GetOffset() int64 {
  939. if x != nil {
  940. return x.Offset
  941. }
  942. return 0
  943. }
  944. type DeleteScripRequest struct {
  945. state protoimpl.MessageState
  946. sizeCache protoimpl.SizeCache
  947. unknownFields protoimpl.UnknownFields
  948. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  949. }
  950. func (x *DeleteScripRequest) Reset() {
  951. *x = DeleteScripRequest{}
  952. if protoimpl.UnsafeEnabled {
  953. mi := &file_user_proto_msgTypes[18]
  954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  955. ms.StoreMessageInfo(mi)
  956. }
  957. }
  958. func (x *DeleteScripRequest) String() string {
  959. return protoimpl.X.MessageStringOf(x)
  960. }
  961. func (*DeleteScripRequest) ProtoMessage() {}
  962. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  963. mi := &file_user_proto_msgTypes[18]
  964. if protoimpl.UnsafeEnabled && x != nil {
  965. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  966. if ms.LoadMessageInfo() == nil {
  967. ms.StoreMessageInfo(mi)
  968. }
  969. return ms
  970. }
  971. return mi.MessageOf(x)
  972. }
  973. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  974. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  975. return file_user_proto_rawDescGZIP(), []int{18}
  976. }
  977. func (x *DeleteScripRequest) GetScripId() int64 {
  978. if x != nil {
  979. return x.ScripId
  980. }
  981. return 0
  982. }
  983. type CreateScripRequest struct {
  984. state protoimpl.MessageState
  985. sizeCache protoimpl.SizeCache
  986. unknownFields protoimpl.UnknownFields
  987. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  988. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  989. }
  990. func (x *CreateScripRequest) Reset() {
  991. *x = CreateScripRequest{}
  992. if protoimpl.UnsafeEnabled {
  993. mi := &file_user_proto_msgTypes[19]
  994. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  995. ms.StoreMessageInfo(mi)
  996. }
  997. }
  998. func (x *CreateScripRequest) String() string {
  999. return protoimpl.X.MessageStringOf(x)
  1000. }
  1001. func (*CreateScripRequest) ProtoMessage() {}
  1002. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  1003. mi := &file_user_proto_msgTypes[19]
  1004. if protoimpl.UnsafeEnabled && x != nil {
  1005. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1006. if ms.LoadMessageInfo() == nil {
  1007. ms.StoreMessageInfo(mi)
  1008. }
  1009. return ms
  1010. }
  1011. return mi.MessageOf(x)
  1012. }
  1013. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  1014. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  1015. return file_user_proto_rawDescGZIP(), []int{19}
  1016. }
  1017. func (x *CreateScripRequest) GetText() string {
  1018. if x != nil {
  1019. return x.Text
  1020. }
  1021. return ""
  1022. }
  1023. func (x *CreateScripRequest) GetPictureUrl() string {
  1024. if x != nil {
  1025. return x.PictureUrl
  1026. }
  1027. return ""
  1028. }
  1029. type FindMatchingAvatarAndNumReply struct {
  1030. state protoimpl.MessageState
  1031. sizeCache protoimpl.SizeCache
  1032. unknownFields protoimpl.UnknownFields
  1033. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  1034. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  1035. }
  1036. func (x *FindMatchingAvatarAndNumReply) Reset() {
  1037. *x = FindMatchingAvatarAndNumReply{}
  1038. if protoimpl.UnsafeEnabled {
  1039. mi := &file_user_proto_msgTypes[20]
  1040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1041. ms.StoreMessageInfo(mi)
  1042. }
  1043. }
  1044. func (x *FindMatchingAvatarAndNumReply) String() string {
  1045. return protoimpl.X.MessageStringOf(x)
  1046. }
  1047. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  1048. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  1049. mi := &file_user_proto_msgTypes[20]
  1050. if protoimpl.UnsafeEnabled && x != nil {
  1051. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1052. if ms.LoadMessageInfo() == nil {
  1053. ms.StoreMessageInfo(mi)
  1054. }
  1055. return ms
  1056. }
  1057. return mi.MessageOf(x)
  1058. }
  1059. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1060. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1061. return file_user_proto_rawDescGZIP(), []int{20}
  1062. }
  1063. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1064. if x != nil {
  1065. return x.Num
  1066. }
  1067. return 0
  1068. }
  1069. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1070. if x != nil {
  1071. return x.List
  1072. }
  1073. return make([]string, 0)
  1074. }
  1075. type UserRechargeRequest struct {
  1076. state protoimpl.MessageState
  1077. sizeCache protoimpl.SizeCache
  1078. unknownFields protoimpl.UnknownFields
  1079. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1080. }
  1081. func (x *UserRechargeRequest) Reset() {
  1082. *x = UserRechargeRequest{}
  1083. if protoimpl.UnsafeEnabled {
  1084. mi := &file_user_proto_msgTypes[21]
  1085. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1086. ms.StoreMessageInfo(mi)
  1087. }
  1088. }
  1089. func (x *UserRechargeRequest) String() string {
  1090. return protoimpl.X.MessageStringOf(x)
  1091. }
  1092. func (*UserRechargeRequest) ProtoMessage() {}
  1093. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1094. mi := &file_user_proto_msgTypes[21]
  1095. if protoimpl.UnsafeEnabled && x != nil {
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. if ms.LoadMessageInfo() == nil {
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. return ms
  1101. }
  1102. return mi.MessageOf(x)
  1103. }
  1104. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1105. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1106. return file_user_proto_rawDescGZIP(), []int{21}
  1107. }
  1108. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1109. if x != nil {
  1110. return x.RechargeTemplateId
  1111. }
  1112. return 0
  1113. }
  1114. type RechargeList struct {
  1115. state protoimpl.MessageState
  1116. sizeCache protoimpl.SizeCache
  1117. unknownFields protoimpl.UnknownFields
  1118. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1119. }
  1120. func (x *RechargeList) Reset() {
  1121. *x = RechargeList{}
  1122. if protoimpl.UnsafeEnabled {
  1123. mi := &file_user_proto_msgTypes[22]
  1124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1125. ms.StoreMessageInfo(mi)
  1126. }
  1127. }
  1128. func (x *RechargeList) String() string {
  1129. return protoimpl.X.MessageStringOf(x)
  1130. }
  1131. func (*RechargeList) ProtoMessage() {}
  1132. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1133. mi := &file_user_proto_msgTypes[22]
  1134. if protoimpl.UnsafeEnabled && x != nil {
  1135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1136. if ms.LoadMessageInfo() == nil {
  1137. ms.StoreMessageInfo(mi)
  1138. }
  1139. return ms
  1140. }
  1141. return mi.MessageOf(x)
  1142. }
  1143. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1144. func (*RechargeList) Descriptor() ([]byte, []int) {
  1145. return file_user_proto_rawDescGZIP(), []int{22}
  1146. }
  1147. func (x *RechargeList) GetList() []*RechargeInfo {
  1148. if x != nil {
  1149. return x.List
  1150. }
  1151. return make([]*RechargeInfo, 0)
  1152. }
  1153. type RechargeInfo struct {
  1154. state protoimpl.MessageState
  1155. sizeCache protoimpl.SizeCache
  1156. unknownFields protoimpl.UnknownFields
  1157. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1158. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1159. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1160. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1161. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1162. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1163. }
  1164. func (x *RechargeInfo) Reset() {
  1165. *x = RechargeInfo{}
  1166. if protoimpl.UnsafeEnabled {
  1167. mi := &file_user_proto_msgTypes[23]
  1168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1169. ms.StoreMessageInfo(mi)
  1170. }
  1171. }
  1172. func (x *RechargeInfo) String() string {
  1173. return protoimpl.X.MessageStringOf(x)
  1174. }
  1175. func (*RechargeInfo) ProtoMessage() {}
  1176. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1177. mi := &file_user_proto_msgTypes[23]
  1178. if protoimpl.UnsafeEnabled && x != nil {
  1179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1180. if ms.LoadMessageInfo() == nil {
  1181. ms.StoreMessageInfo(mi)
  1182. }
  1183. return ms
  1184. }
  1185. return mi.MessageOf(x)
  1186. }
  1187. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1188. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1189. return file_user_proto_rawDescGZIP(), []int{23}
  1190. }
  1191. func (x *RechargeInfo) GetId() int64 {
  1192. if x != nil {
  1193. return x.Id
  1194. }
  1195. return 0
  1196. }
  1197. func (x *RechargeInfo) GetPrice() int64 {
  1198. if x != nil {
  1199. return x.Price
  1200. }
  1201. return 0
  1202. }
  1203. func (x *RechargeInfo) GetCredit() int64 {
  1204. if x != nil {
  1205. return x.Credit
  1206. }
  1207. return 0
  1208. }
  1209. func (x *RechargeInfo) GetGiveCredit() int64 {
  1210. if x != nil {
  1211. return x.GiveCredit
  1212. }
  1213. return 0
  1214. }
  1215. func (x *RechargeInfo) GetDescription() string {
  1216. if x != nil {
  1217. return x.Description
  1218. }
  1219. return ""
  1220. }
  1221. func (x *RechargeInfo) GetTitle() string {
  1222. if x != nil {
  1223. return x.Title
  1224. }
  1225. return ""
  1226. }
  1227. type InformationStatus struct {
  1228. state protoimpl.MessageState
  1229. sizeCache protoimpl.SizeCache
  1230. unknownFields protoimpl.UnknownFields
  1231. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  1232. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  1233. }
  1234. func (x *InformationStatus) Reset() {
  1235. *x = InformationStatus{}
  1236. if protoimpl.UnsafeEnabled {
  1237. mi := &file_user_proto_msgTypes[24]
  1238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1239. ms.StoreMessageInfo(mi)
  1240. }
  1241. }
  1242. func (x *InformationStatus) String() string {
  1243. return protoimpl.X.MessageStringOf(x)
  1244. }
  1245. func (*InformationStatus) ProtoMessage() {}
  1246. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  1247. mi := &file_user_proto_msgTypes[24]
  1248. if protoimpl.UnsafeEnabled && x != nil {
  1249. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1250. if ms.LoadMessageInfo() == nil {
  1251. ms.StoreMessageInfo(mi)
  1252. }
  1253. return ms
  1254. }
  1255. return mi.MessageOf(x)
  1256. }
  1257. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  1258. func (*InformationStatus) Descriptor() ([]byte, []int) {
  1259. return file_user_proto_rawDescGZIP(), []int{24}
  1260. }
  1261. func (x *InformationStatus) GetIsFinishInformation() bool {
  1262. if x != nil {
  1263. return x.IsFinishInformation
  1264. }
  1265. return false
  1266. }
  1267. func (x *InformationStatus) GetIsGetAward() bool {
  1268. if x != nil {
  1269. return x.IsGetAward
  1270. }
  1271. return false
  1272. }
  1273. type UserBalance struct {
  1274. state protoimpl.MessageState
  1275. sizeCache protoimpl.SizeCache
  1276. unknownFields protoimpl.UnknownFields
  1277. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1278. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  1279. }
  1280. func (x *UserBalance) Reset() {
  1281. *x = UserBalance{}
  1282. if protoimpl.UnsafeEnabled {
  1283. mi := &file_user_proto_msgTypes[25]
  1284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1285. ms.StoreMessageInfo(mi)
  1286. }
  1287. }
  1288. func (x *UserBalance) String() string {
  1289. return protoimpl.X.MessageStringOf(x)
  1290. }
  1291. func (*UserBalance) ProtoMessage() {}
  1292. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  1293. mi := &file_user_proto_msgTypes[25]
  1294. if protoimpl.UnsafeEnabled && x != nil {
  1295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1296. if ms.LoadMessageInfo() == nil {
  1297. ms.StoreMessageInfo(mi)
  1298. }
  1299. return ms
  1300. }
  1301. return mi.MessageOf(x)
  1302. }
  1303. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  1304. func (*UserBalance) Descriptor() ([]byte, []int) {
  1305. return file_user_proto_rawDescGZIP(), []int{25}
  1306. }
  1307. func (x *UserBalance) GetId() string {
  1308. if x != nil {
  1309. return x.Id
  1310. }
  1311. return ""
  1312. }
  1313. func (x *UserBalance) GetCredit() int64 {
  1314. if x != nil {
  1315. return x.Credit
  1316. }
  1317. return 0
  1318. }
  1319. type UserFindChatListReply struct {
  1320. state protoimpl.MessageState
  1321. sizeCache protoimpl.SizeCache
  1322. unknownFields protoimpl.UnknownFields
  1323. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1324. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1325. }
  1326. func (x *UserFindChatListReply) Reset() {
  1327. *x = UserFindChatListReply{}
  1328. if protoimpl.UnsafeEnabled {
  1329. mi := &file_user_proto_msgTypes[26]
  1330. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1331. ms.StoreMessageInfo(mi)
  1332. }
  1333. }
  1334. func (x *UserFindChatListReply) String() string {
  1335. return protoimpl.X.MessageStringOf(x)
  1336. }
  1337. func (*UserFindChatListReply) ProtoMessage() {}
  1338. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  1339. mi := &file_user_proto_msgTypes[26]
  1340. if protoimpl.UnsafeEnabled && x != nil {
  1341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1342. if ms.LoadMessageInfo() == nil {
  1343. ms.StoreMessageInfo(mi)
  1344. }
  1345. return ms
  1346. }
  1347. return mi.MessageOf(x)
  1348. }
  1349. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  1350. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  1351. return file_user_proto_rawDescGZIP(), []int{26}
  1352. }
  1353. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  1354. if x != nil {
  1355. return x.List
  1356. }
  1357. return make([]*UserChatInfo, 0)
  1358. }
  1359. func (x *UserFindChatListReply) GetNextId() int64 {
  1360. if x != nil {
  1361. return x.NextId
  1362. }
  1363. return 0
  1364. }
  1365. type UserChatInfo struct {
  1366. state protoimpl.MessageState
  1367. sizeCache protoimpl.SizeCache
  1368. unknownFields protoimpl.UnknownFields
  1369. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  1370. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  1371. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  1372. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  1373. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1374. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  1375. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1376. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1377. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  1378. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  1379. }
  1380. func (x *UserChatInfo) Reset() {
  1381. *x = UserChatInfo{}
  1382. if protoimpl.UnsafeEnabled {
  1383. mi := &file_user_proto_msgTypes[27]
  1384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1385. ms.StoreMessageInfo(mi)
  1386. }
  1387. }
  1388. func (x *UserChatInfo) String() string {
  1389. return protoimpl.X.MessageStringOf(x)
  1390. }
  1391. func (*UserChatInfo) ProtoMessage() {}
  1392. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  1393. mi := &file_user_proto_msgTypes[27]
  1394. if protoimpl.UnsafeEnabled && x != nil {
  1395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1396. if ms.LoadMessageInfo() == nil {
  1397. ms.StoreMessageInfo(mi)
  1398. }
  1399. return ms
  1400. }
  1401. return mi.MessageOf(x)
  1402. }
  1403. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  1404. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  1405. return file_user_proto_rawDescGZIP(), []int{27}
  1406. }
  1407. func (x *UserChatInfo) GetPersonId() string {
  1408. if x != nil {
  1409. return x.PersonId
  1410. }
  1411. return ""
  1412. }
  1413. func (x *UserChatInfo) GetUnreadNum() int64 {
  1414. if x != nil {
  1415. return x.UnreadNum
  1416. }
  1417. return 0
  1418. }
  1419. func (x *UserChatInfo) GetLastContent() string {
  1420. if x != nil {
  1421. return x.LastContent
  1422. }
  1423. return ""
  1424. }
  1425. func (x *UserChatInfo) GetLastTime() int64 {
  1426. if x != nil {
  1427. return x.LastTime
  1428. }
  1429. return 0
  1430. }
  1431. func (x *UserChatInfo) GetLikeability() int64 {
  1432. if x != nil {
  1433. return x.Likeability
  1434. }
  1435. return 0
  1436. }
  1437. func (x *UserChatInfo) GetSex() int64 {
  1438. if x != nil {
  1439. return x.Sex
  1440. }
  1441. return 0
  1442. }
  1443. func (x *UserChatInfo) GetAvatarUrl() string {
  1444. if x != nil {
  1445. return x.AvatarUrl
  1446. }
  1447. return ""
  1448. }
  1449. func (x *UserChatInfo) GetNickname() string {
  1450. if x != nil {
  1451. return x.Nickname
  1452. }
  1453. return ""
  1454. }
  1455. func (x *UserChatInfo) GetAge() int64 {
  1456. if x != nil {
  1457. return x.Age
  1458. }
  1459. return 0
  1460. }
  1461. func (x *UserChatInfo) GetRoomId() int64 {
  1462. if x != nil {
  1463. return x.RoomId
  1464. }
  1465. return 0
  1466. }
  1467. type UserInfo struct {
  1468. state protoimpl.MessageState
  1469. sizeCache protoimpl.SizeCache
  1470. unknownFields protoimpl.UnknownFields
  1471. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1472. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1473. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1474. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1475. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1476. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1477. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  1478. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1479. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1480. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1481. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1482. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1483. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1484. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  1485. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1486. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  1487. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  1488. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  1489. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  1490. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  1491. }
  1492. func (x *UserInfo) Reset() {
  1493. *x = UserInfo{}
  1494. if protoimpl.UnsafeEnabled {
  1495. mi := &file_user_proto_msgTypes[28]
  1496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1497. ms.StoreMessageInfo(mi)
  1498. }
  1499. }
  1500. func (x *UserInfo) String() string {
  1501. return protoimpl.X.MessageStringOf(x)
  1502. }
  1503. func (*UserInfo) ProtoMessage() {}
  1504. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  1505. mi := &file_user_proto_msgTypes[28]
  1506. if protoimpl.UnsafeEnabled && x != nil {
  1507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1508. if ms.LoadMessageInfo() == nil {
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. return ms
  1512. }
  1513. return mi.MessageOf(x)
  1514. }
  1515. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  1516. func (*UserInfo) Descriptor() ([]byte, []int) {
  1517. return file_user_proto_rawDescGZIP(), []int{28}
  1518. }
  1519. func (x *UserInfo) GetId() string {
  1520. if x != nil {
  1521. return x.Id
  1522. }
  1523. return ""
  1524. }
  1525. func (x *UserInfo) GetNickname() string {
  1526. if x != nil {
  1527. return x.Nickname
  1528. }
  1529. return ""
  1530. }
  1531. func (x *UserInfo) GetAvatarUrl() string {
  1532. if x != nil {
  1533. return x.AvatarUrl
  1534. }
  1535. return ""
  1536. }
  1537. func (x *UserInfo) GetAge() int64 {
  1538. if x != nil {
  1539. return x.Age
  1540. }
  1541. return 0
  1542. }
  1543. func (x *UserInfo) GetSex() int64 {
  1544. if x != nil {
  1545. return x.Sex
  1546. }
  1547. return 0
  1548. }
  1549. func (x *UserInfo) GetConstellation() string {
  1550. if x != nil {
  1551. return x.Constellation
  1552. }
  1553. return ""
  1554. }
  1555. func (x *UserInfo) GetCredit() int64 {
  1556. if x != nil {
  1557. return x.Credit
  1558. }
  1559. return 0
  1560. }
  1561. func (x *UserInfo) GetTagList() []int64 {
  1562. if x != nil {
  1563. return x.TagList
  1564. }
  1565. return make([]int64, 0)
  1566. }
  1567. func (x *UserInfo) GetSignature() string {
  1568. if x != nil {
  1569. return x.Signature
  1570. }
  1571. return ""
  1572. }
  1573. func (x *UserInfo) GetIntroduceVoice() string {
  1574. if x != nil {
  1575. return x.IntroduceVoice
  1576. }
  1577. return ""
  1578. }
  1579. func (x *UserInfo) GetProvince() string {
  1580. if x != nil {
  1581. return x.Province
  1582. }
  1583. return ""
  1584. }
  1585. func (x *UserInfo) GetCity() string {
  1586. if x != nil {
  1587. return x.City
  1588. }
  1589. return ""
  1590. }
  1591. func (x *UserInfo) GetArea() string {
  1592. if x != nil {
  1593. return x.Area
  1594. }
  1595. return ""
  1596. }
  1597. func (x *UserInfo) GetUserId() int64 {
  1598. if x != nil {
  1599. return x.UserId
  1600. }
  1601. return 0
  1602. }
  1603. func (x *UserInfo) GetIsBlack() bool {
  1604. if x != nil {
  1605. return x.IsBlack
  1606. }
  1607. return false
  1608. }
  1609. func (x *UserInfo) GetIsRegister() bool {
  1610. if x != nil {
  1611. return x.IsRegister
  1612. }
  1613. return false
  1614. }
  1615. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  1616. if x != nil {
  1617. return x.UpdateNicknameNum
  1618. }
  1619. return 0
  1620. }
  1621. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  1622. if x != nil {
  1623. return x.UpdateAvatarUrlNum
  1624. }
  1625. return 0
  1626. }
  1627. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  1628. if x != nil {
  1629. return x.UpdatePicturesNum
  1630. }
  1631. return 0
  1632. }
  1633. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  1634. if x != nil {
  1635. return x.UpdateSignatureNum
  1636. }
  1637. return 0
  1638. }
  1639. type KeyRequest struct {
  1640. state protoimpl.MessageState
  1641. sizeCache protoimpl.SizeCache
  1642. unknownFields protoimpl.UnknownFields
  1643. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  1644. }
  1645. func (x *KeyRequest) Reset() {
  1646. *x = KeyRequest{}
  1647. if protoimpl.UnsafeEnabled {
  1648. mi := &file_user_proto_msgTypes[29]
  1649. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. }
  1653. func (x *KeyRequest) String() string {
  1654. return protoimpl.X.MessageStringOf(x)
  1655. }
  1656. func (*KeyRequest) ProtoMessage() {}
  1657. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  1658. mi := &file_user_proto_msgTypes[29]
  1659. if protoimpl.UnsafeEnabled && x != nil {
  1660. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1661. if ms.LoadMessageInfo() == nil {
  1662. ms.StoreMessageInfo(mi)
  1663. }
  1664. return ms
  1665. }
  1666. return mi.MessageOf(x)
  1667. }
  1668. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  1669. func (*KeyRequest) Descriptor() ([]byte, []int) {
  1670. return file_user_proto_rawDescGZIP(), []int{29}
  1671. }
  1672. func (x *KeyRequest) GetKey() string {
  1673. if x != nil {
  1674. return x.Key
  1675. }
  1676. return ""
  1677. }
  1678. type CreatePayRequest struct {
  1679. state protoimpl.MessageState
  1680. sizeCache protoimpl.SizeCache
  1681. unknownFields protoimpl.UnknownFields
  1682. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  1683. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  1684. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  1685. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  1686. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  1687. }
  1688. func (x *CreatePayRequest) Reset() {
  1689. *x = CreatePayRequest{}
  1690. if protoimpl.UnsafeEnabled {
  1691. mi := &file_user_proto_msgTypes[30]
  1692. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1693. ms.StoreMessageInfo(mi)
  1694. }
  1695. }
  1696. func (x *CreatePayRequest) String() string {
  1697. return protoimpl.X.MessageStringOf(x)
  1698. }
  1699. func (*CreatePayRequest) ProtoMessage() {}
  1700. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  1701. mi := &file_user_proto_msgTypes[30]
  1702. if protoimpl.UnsafeEnabled && x != nil {
  1703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1704. if ms.LoadMessageInfo() == nil {
  1705. ms.StoreMessageInfo(mi)
  1706. }
  1707. return ms
  1708. }
  1709. return mi.MessageOf(x)
  1710. }
  1711. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  1712. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  1713. return file_user_proto_rawDescGZIP(), []int{30}
  1714. }
  1715. func (x *CreatePayRequest) GetMoney() int64 {
  1716. if x != nil {
  1717. return x.Money
  1718. }
  1719. return 0
  1720. }
  1721. func (x *CreatePayRequest) GetType() string {
  1722. if x != nil {
  1723. return x.Type
  1724. }
  1725. return ""
  1726. }
  1727. func (x *CreatePayRequest) GetOpenId() string {
  1728. if x != nil {
  1729. return x.OpenId
  1730. }
  1731. return ""
  1732. }
  1733. func (x *CreatePayRequest) GetDescription() string {
  1734. if x != nil {
  1735. return x.Description
  1736. }
  1737. return ""
  1738. }
  1739. func (x *CreatePayRequest) GetAttach() string {
  1740. if x != nil {
  1741. return x.Attach
  1742. }
  1743. return ""
  1744. }
  1745. type PayInfo struct {
  1746. state protoimpl.MessageState
  1747. sizeCache protoimpl.SizeCache
  1748. unknownFields protoimpl.UnknownFields
  1749. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1750. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1751. }
  1752. func (x *PayInfo) Reset() {
  1753. *x = PayInfo{}
  1754. if protoimpl.UnsafeEnabled {
  1755. mi := &file_user_proto_msgTypes[31]
  1756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1757. ms.StoreMessageInfo(mi)
  1758. }
  1759. }
  1760. func (x *PayInfo) String() string {
  1761. return protoimpl.X.MessageStringOf(x)
  1762. }
  1763. func (*PayInfo) ProtoMessage() {}
  1764. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1765. mi := &file_user_proto_msgTypes[31]
  1766. if protoimpl.UnsafeEnabled && x != nil {
  1767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1768. if ms.LoadMessageInfo() == nil {
  1769. ms.StoreMessageInfo(mi)
  1770. }
  1771. return ms
  1772. }
  1773. return mi.MessageOf(x)
  1774. }
  1775. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1776. func (*PayInfo) Descriptor() ([]byte, []int) {
  1777. return file_user_proto_rawDescGZIP(), []int{31}
  1778. }
  1779. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1780. if x != nil && x.PayInfo != nil {
  1781. return x.PayInfo
  1782. }
  1783. return &structpb.Value{}
  1784. }
  1785. func (x *PayInfo) GetOrderId() int64 {
  1786. if x != nil {
  1787. return x.OrderId
  1788. }
  1789. return 0
  1790. }
  1791. type PayOrderInfo struct {
  1792. state protoimpl.MessageState
  1793. sizeCache protoimpl.SizeCache
  1794. unknownFields protoimpl.UnknownFields
  1795. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1796. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1797. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1798. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1799. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1800. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1801. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1802. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1803. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1804. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1805. }
  1806. func (x *PayOrderInfo) Reset() {
  1807. *x = PayOrderInfo{}
  1808. if protoimpl.UnsafeEnabled {
  1809. mi := &file_user_proto_msgTypes[32]
  1810. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1811. ms.StoreMessageInfo(mi)
  1812. }
  1813. }
  1814. func (x *PayOrderInfo) String() string {
  1815. return protoimpl.X.MessageStringOf(x)
  1816. }
  1817. func (*PayOrderInfo) ProtoMessage() {}
  1818. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1819. mi := &file_user_proto_msgTypes[32]
  1820. if protoimpl.UnsafeEnabled && x != nil {
  1821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1822. if ms.LoadMessageInfo() == nil {
  1823. ms.StoreMessageInfo(mi)
  1824. }
  1825. return ms
  1826. }
  1827. return mi.MessageOf(x)
  1828. }
  1829. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1830. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1831. return file_user_proto_rawDescGZIP(), []int{32}
  1832. }
  1833. func (x *PayOrderInfo) GetUserID() string {
  1834. if x != nil {
  1835. return x.UserID
  1836. }
  1837. return ""
  1838. }
  1839. func (x *PayOrderInfo) GetOrderID() int64 {
  1840. if x != nil {
  1841. return x.OrderID
  1842. }
  1843. return 0
  1844. }
  1845. func (x *PayOrderInfo) GetMoney() int64 {
  1846. if x != nil {
  1847. return x.Money
  1848. }
  1849. return 0
  1850. }
  1851. func (x *PayOrderInfo) GetType() string {
  1852. if x != nil {
  1853. return x.Type
  1854. }
  1855. return ""
  1856. }
  1857. func (x *PayOrderInfo) GetTransactionID() string {
  1858. if x != nil {
  1859. return x.TransactionID
  1860. }
  1861. return ""
  1862. }
  1863. func (x *PayOrderInfo) GetOpenId() string {
  1864. if x != nil {
  1865. return x.OpenId
  1866. }
  1867. return ""
  1868. }
  1869. func (x *PayOrderInfo) GetDescription() string {
  1870. if x != nil {
  1871. return x.Description
  1872. }
  1873. return ""
  1874. }
  1875. func (x *PayOrderInfo) GetStatus() string {
  1876. if x != nil {
  1877. return x.Status
  1878. }
  1879. return ""
  1880. }
  1881. func (x *PayOrderInfo) GetPayTime() int64 {
  1882. if x != nil {
  1883. return x.PayTime
  1884. }
  1885. return 0
  1886. }
  1887. func (x *PayOrderInfo) GetCreateTime() int64 {
  1888. if x != nil {
  1889. return x.CreateTime
  1890. }
  1891. return 0
  1892. }
  1893. type PayOrderList struct {
  1894. state protoimpl.MessageState
  1895. sizeCache protoimpl.SizeCache
  1896. unknownFields protoimpl.UnknownFields
  1897. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1898. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1899. }
  1900. func (x *PayOrderList) Reset() {
  1901. *x = PayOrderList{}
  1902. if protoimpl.UnsafeEnabled {
  1903. mi := &file_user_proto_msgTypes[33]
  1904. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1905. ms.StoreMessageInfo(mi)
  1906. }
  1907. }
  1908. func (x *PayOrderList) String() string {
  1909. return protoimpl.X.MessageStringOf(x)
  1910. }
  1911. func (*PayOrderList) ProtoMessage() {}
  1912. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1913. mi := &file_user_proto_msgTypes[33]
  1914. if protoimpl.UnsafeEnabled && x != nil {
  1915. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1916. if ms.LoadMessageInfo() == nil {
  1917. ms.StoreMessageInfo(mi)
  1918. }
  1919. return ms
  1920. }
  1921. return mi.MessageOf(x)
  1922. }
  1923. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1924. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1925. return file_user_proto_rawDescGZIP(), []int{33}
  1926. }
  1927. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1928. if x != nil {
  1929. return x.List
  1930. }
  1931. return make([]*PayOrderInfo, 0)
  1932. }
  1933. func (x *PayOrderList) GetNextId() int64 {
  1934. if x != nil {
  1935. return x.NextId
  1936. }
  1937. return 0
  1938. }
  1939. type FindPayOrderListRequest struct {
  1940. state protoimpl.MessageState
  1941. sizeCache protoimpl.SizeCache
  1942. unknownFields protoimpl.UnknownFields
  1943. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1944. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1945. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1946. }
  1947. func (x *FindPayOrderListRequest) Reset() {
  1948. *x = FindPayOrderListRequest{}
  1949. if protoimpl.UnsafeEnabled {
  1950. mi := &file_user_proto_msgTypes[34]
  1951. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1952. ms.StoreMessageInfo(mi)
  1953. }
  1954. }
  1955. func (x *FindPayOrderListRequest) String() string {
  1956. return protoimpl.X.MessageStringOf(x)
  1957. }
  1958. func (*FindPayOrderListRequest) ProtoMessage() {}
  1959. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1960. mi := &file_user_proto_msgTypes[34]
  1961. if protoimpl.UnsafeEnabled && x != nil {
  1962. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1963. if ms.LoadMessageInfo() == nil {
  1964. ms.StoreMessageInfo(mi)
  1965. }
  1966. return ms
  1967. }
  1968. return mi.MessageOf(x)
  1969. }
  1970. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1971. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1972. return file_user_proto_rawDescGZIP(), []int{34}
  1973. }
  1974. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1975. if x != nil {
  1976. return x.NextId
  1977. }
  1978. return 0
  1979. }
  1980. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1981. if x != nil {
  1982. return x.Offset
  1983. }
  1984. return 0
  1985. }
  1986. func (x *FindPayOrderListRequest) GetStatus() string {
  1987. if x != nil {
  1988. return x.Status
  1989. }
  1990. return ""
  1991. }
  1992. type PayCallbackReply struct {
  1993. state protoimpl.MessageState
  1994. sizeCache protoimpl.SizeCache
  1995. unknownFields protoimpl.UnknownFields
  1996. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1997. }
  1998. func (x *PayCallbackReply) Reset() {
  1999. *x = PayCallbackReply{}
  2000. if protoimpl.UnsafeEnabled {
  2001. mi := &file_user_proto_msgTypes[35]
  2002. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2003. ms.StoreMessageInfo(mi)
  2004. }
  2005. }
  2006. func (x *PayCallbackReply) String() string {
  2007. return protoimpl.X.MessageStringOf(x)
  2008. }
  2009. func (*PayCallbackReply) ProtoMessage() {}
  2010. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  2011. mi := &file_user_proto_msgTypes[35]
  2012. if protoimpl.UnsafeEnabled && x != nil {
  2013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2014. if ms.LoadMessageInfo() == nil {
  2015. ms.StoreMessageInfo(mi)
  2016. }
  2017. return ms
  2018. }
  2019. return mi.MessageOf(x)
  2020. }
  2021. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  2022. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  2023. return file_user_proto_rawDescGZIP(), []int{35}
  2024. }
  2025. func (x *PayCallbackReply) GetResult() []byte {
  2026. if x != nil {
  2027. return x.Result
  2028. }
  2029. return make([]byte, 0)
  2030. }
  2031. var File_user_proto protoreflect.FileDescriptor
  2032. var file_user_proto_rawDesc = []byte{
  2033. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  2034. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  2035. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  2036. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  2037. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2038. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2039. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  2040. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  2041. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2042. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  2043. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  2044. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x56,
  2045. 0x0a, 0x14, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52,
  2046. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2047. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  2048. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16,
  2049. 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2050. 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x4c, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
  2051. 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2052. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2053. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  2054. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
  2055. 0x73, 0x75, 0x6c, 0x74, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73,
  2056. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72,
  2057. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f,
  2058. 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
  2059. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2060. 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2061. 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
  2062. 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c,
  2063. 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01,
  2064. 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67,
  2065. 0x22, 0x90, 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  2066. 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  2067. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
  2068. 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67,
  2069. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  2070. 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x0e, 0x0a,
  2071. 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a,
  2072. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  2073. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2074. 0x73, 0x65, 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2075. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65,
  2076. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2077. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2078. 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2079. 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01,
  2080. 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x5b, 0x0a, 0x21, 0x4d, 0x61, 0x6e,
  2081. 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c,
  2082. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  2083. 0x0a, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  2084. 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x50, 0x61,
  2085. 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x6e, 0x50,
  2086. 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63,
  2087. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75,
  2088. 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2089. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2090. 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2091. 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  2092. 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  2093. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75,
  2094. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03,
  2095. 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a,
  2096. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2097. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x21, 0x46, 0x69,
  2098. 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51,
  2099. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  2100. 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18,
  2101. 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c,
  2102. 0x69, 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2103. 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52,
  2104. 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c,
  2105. 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  2106. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61,
  2107. 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e,
  2108. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e,
  2109. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  2110. 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74,
  2111. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01,
  2112. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05,
  2113. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  2114. 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0xaa, 0x01,
  2115. 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72,
  2116. 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2117. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  2118. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2119. 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20, 0x01,
  2120. 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f,
  2121. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
  2122. 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2123. 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  2124. 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79,
  2125. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x35, 0x0a, 0x1b, 0x55, 0x70,
  2126. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e,
  2127. 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65,
  2128. 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2129. 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73,
  2130. 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65,
  2131. 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
  2132. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
  2133. 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  2134. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65, 0x6e, 0x64,
  2135. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64,
  2136. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52,
  2137. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65,
  2138. 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73,
  2139. 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d, 0x0a, 0x0b,
  2140. 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72,
  2141. 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01,
  2142. 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75,
  2143. 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  2144. 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74,
  2145. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74,
  2146. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  2147. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x11, 0x52,
  2148. 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2149. 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  2150. 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65,
  2151. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70,
  2152. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2153. 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67,
  2154. 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54,
  2155. 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f,
  2156. 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a,
  2157. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  2158. 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x46,
  2159. 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2160. 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2161. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  2162. 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22,
  2163. 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2164. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64,
  2165. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22,
  2166. 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2167. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20,
  2168. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63,
  2169. 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70,
  2170. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46, 0x69, 0x6e,
  2171. 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41,
  2172. 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75,
  2173. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x04,
  2174. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2175. 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  2176. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61,
  2177. 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20,
  2178. 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d,
  2179. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61,
  2180. 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  2181. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2182. 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  2183. 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  2184. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2185. 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20,
  2186. 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72,
  2187. 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64,
  2188. 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  2189. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64,
  2190. 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  2191. 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  2192. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20,
  2193. 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x65, 0x0a, 0x11, 0x49, 0x6e,
  2194. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2195. 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  2196. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73,
  2197. 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2198. 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x18,
  2199. 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72,
  2200. 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  2201. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  2202. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2203. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72,
  2204. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  2205. 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2206. 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43,
  2207. 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a,
  2208. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  2209. 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68,
  2210. 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2211. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2212. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18,
  2213. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  2214. 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18,
  2215. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
  2216. 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05,
  2217. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20,
  2218. 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20,
  2219. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  2220. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2221. 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
  2222. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2223. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01,
  2224. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03,
  2225. 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x16,
  2226. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2227. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xe8, 0x04, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49,
  2228. 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2229. 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2230. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  2231. 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01,
  2232. 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a,
  2233. 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12,
  2234. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  2235. 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  2236. 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65,
  2237. 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  2238. 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  2239. 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03,
  2240. 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67,
  2241. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69,
  2242. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f,
  2243. 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  2244. 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12,
  2245. 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
  2246. 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2247. 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12,
  2248. 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61,
  2249. 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20,
  2250. 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69,
  2251. 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73,
  2252. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73,
  2253. 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67,
  2254. 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e,
  2255. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03,
  2256. 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  2257. 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61,
  2258. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52,
  2259. 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2260. 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63,
  2261. 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11,
  2262. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75,
  2263. 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61,
  2264. 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55,
  2265. 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75,
  2266. 0x6d, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2267. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  2268. 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52,
  2269. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18,
  2270. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04,
  2271. 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
  2272. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2273. 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
  2274. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
  2275. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74,
  2276. 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61,
  2277. 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a,
  2278. 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
  2279. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2280. 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  2281. 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2282. 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61,
  2283. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  2284. 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  2285. 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20,
  2286. 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05,
  2287. 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e,
  2288. 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2289. 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
  2290. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54,
  2291. 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  2292. 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70,
  2293. 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  2294. 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  2295. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2296. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18,
  2297. 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52,
  2298. 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61,
  2299. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72,
  2300. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f,
  2301. 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2302. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2303. 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  2304. 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02,
  2305. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17,
  2306. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2307. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  2308. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12,
  2309. 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2310. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  2311. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
  2312. 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65,
  2313. 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20,
  2314. 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xc3, 0x56, 0x0a, 0x04,
  2315. 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49,
  2316. 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2317. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70,
  2318. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  2319. 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2320. 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65,
  2321. 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70,
  2322. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f,
  2323. 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2324. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2325. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f,
  2326. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65,
  2327. 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68,
  2328. 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2329. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43,
  2330. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2331. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2332. 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69,
  2333. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b,
  2334. 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2335. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61,
  2336. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2337. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  2338. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2339. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
  2340. 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70,
  2341. 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2342. 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2343. 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70,
  2344. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43,
  2345. 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61,
  2346. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c,
  2347. 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2348. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d,
  2349. 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61,
  2350. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2351. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e,
  2352. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c,
  2353. 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61,
  2354. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a,
  2355. 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d,
  2356. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2357. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14,
  2358. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65,
  2359. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61,
  2360. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2361. 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2362. 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17,
  2363. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2364. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2365. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  2366. 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d,
  2367. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a,
  2368. 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74,
  2369. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  2370. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
  2371. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c,
  2372. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2373. 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70,
  2374. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b,
  2375. 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e,
  2376. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e,
  2377. 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2378. 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  2379. 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77,
  2380. 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01,
  2381. 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  2382. 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2383. 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2384. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2385. 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70,
  2386. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a,
  2387. 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65,
  2388. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2389. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65,
  2390. 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2391. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  2392. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  2393. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  2394. 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46,
  2395. 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61,
  2396. 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2397. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52,
  2398. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2399. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69,
  2400. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22,
  2401. 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  2402. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d,
  2403. 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44,
  2404. 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  2405. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  2406. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2407. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c,
  2408. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d,
  2409. 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  2410. 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a,
  2411. 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  2412. 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2413. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  2414. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69,
  2415. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f,
  2416. 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4,
  2417. 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  2418. 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a,
  2419. 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67,
  2420. 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  2421. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71,
  2422. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2423. 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82,
  2424. 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2425. 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01,
  2426. 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69,
  2427. 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2428. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70,
  2429. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22,
  2430. 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2431. 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e,
  2432. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17,
  2433. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65,
  2434. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2435. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82,
  2436. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2437. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a,
  2438. 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  2439. 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2440. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65,
  2441. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2442. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74,
  2443. 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2444. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01,
  2445. 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12,
  2446. 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e,
  2447. 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2448. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69,
  2449. 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  2450. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  2451. 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e,
  2452. 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2453. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e,
  2454. 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61,
  2455. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2456. 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20,
  2457. 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  2458. 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a,
  2459. 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c,
  2460. 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2461. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2462. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65,
  2463. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  2464. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d,
  2465. 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73,
  2466. 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e,
  2467. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2468. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2469. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f,
  2470. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2471. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a,
  2472. 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  2473. 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2474. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19,
  2475. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65,
  2476. 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2477. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  2478. 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2479. 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70,
  2480. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  2481. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2482. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3,
  2483. 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2484. 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55,
  2485. 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2486. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  2487. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2488. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10,
  2489. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65,
  2490. 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e,
  2491. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72,
  2492. 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2493. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2494. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61,
  2495. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01,
  2496. 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65,
  2497. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67,
  2498. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2499. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2500. 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44,
  2501. 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82,
  2502. 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2503. 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  2504. 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
  2505. 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2506. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73,
  2507. 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2508. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2509. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22,
  2510. 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70,
  2511. 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2512. 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c,
  2513. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  2514. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61,
  2515. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  2516. 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2517. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74,
  2518. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63,
  2519. 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44,
  2520. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2521. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2522. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2523. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
  2524. 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b,
  2525. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70,
  2526. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53,
  2527. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70,
  2528. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2529. 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  2530. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e,
  2531. 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e,
  2532. 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70,
  2533. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  2534. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2535. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
  2536. 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2537. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  2538. 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64,
  2539. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e,
  2540. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69,
  2541. 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2542. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69,
  2543. 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e,
  2544. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2545. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01,
  2546. 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53,
  2547. 0x63, 0x72, 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2548. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2549. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2550. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f,
  2551. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2552. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  2553. 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f,
  2554. 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2555. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15,
  2556. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69,
  2557. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f,
  2558. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c,
  2559. 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50,
  2560. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  2561. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2562. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61,
  2563. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  2564. 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  2565. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  2566. 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73,
  2567. 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61,
  2568. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44,
  2569. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2570. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2571. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2572. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01,
  2573. 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55,
  2574. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2575. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2576. 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65,
  2577. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  2578. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
  2579. 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a,
  2580. 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42,
  2581. 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2582. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2583. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2584. 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18,
  2585. 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d,
  2586. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64,
  2587. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2588. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  2589. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  2590. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  2591. 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4,
  2592. 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  2593. 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46,
  2594. 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61,
  2595. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
  2596. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2597. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41,
  2598. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2599. 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2600. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a,
  2601. 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b,
  2602. 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2603. 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2604. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2605. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22,
  2606. 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62,
  2607. 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63,
  2608. 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65,
  2609. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  2610. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  2611. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2612. 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2613. 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,
  2614. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  2615. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72,
  2616. 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70,
  2617. 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63,
  2618. 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2619. 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61,
  2620. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69,
  2621. 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20,
  2622. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2623. 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a,
  2624. 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c,
  2625. 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73,
  2626. 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2627. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61,
  2628. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f,
  2629. 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2630. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f,
  2631. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b,
  2632. 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74,
  2633. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  2634. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2635. 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  2636. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2637. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f,
  2638. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75,
  2639. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69,
  2640. 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e,
  2641. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2642. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2643. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82,
  2644. 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2645. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e,
  2646. 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  2647. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2648. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2649. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2650. 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
  2651. 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  2652. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2653. 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a,
  2654. 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2655. 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2656. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2657. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2658. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20,
  2659. 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  2660. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a,
  2661. 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65,
  2662. 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2663. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2664. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2665. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f,
  2666. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e,
  2667. 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52,
  2668. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2669. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52,
  2670. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2671. 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2672. 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63,
  2673. 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64,
  2674. 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67,
  2675. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2676. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2677. 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3,
  2678. 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2679. 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  2680. 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2681. 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x50,
  2682. 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  2683. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61,
  2684. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  2685. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x61,
  2686. 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x17, 0x46, 0x69, 0x6e,
  2687. 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2688. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2689. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x24, 0x2e, 0x61,
  2690. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2691. 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2692. 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69,
  2693. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d,
  2694. 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64,
  2695. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e,
  2696. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2697. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61,
  2698. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63,
  2699. 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d,
  2700. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f,
  2701. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e,
  2702. 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0d,
  2703. 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e,
  2704. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2705. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2706. 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4,
  2707. 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  2708. 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01,
  2709. 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65,
  2710. 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2711. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70,
  2712. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e,
  2713. 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69,
  2714. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01,
  2715. 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61,
  2716. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2717. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69,
  2718. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d,
  2719. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3,
  2720. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2721. 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a,
  2722. 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63,
  2723. 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  2724. 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2725. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2726. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61,
  2727. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x76,
  2728. 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d, 0x55, 0x6e, 0x6c, 0x6f, 0x63,
  2729. 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2730. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  2731. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2732. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4,
  2733. 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75,
  2734. 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x01, 0x2a,
  2735. 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73,
  2736. 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2737. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2738. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2739. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e,
  2740. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61,
  2741. 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77,
  2742. 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74,
  2743. 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2744. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  2745. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2746. 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82,
  2747. 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2748. 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x70, 0x61, 0x72,
  2749. 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x4d,
  2750. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2751. 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  2752. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2753. 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70,
  2754. 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  2755. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x65,
  2756. 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2757. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e,
  2758. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2759. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  2760. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2761. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  2762. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2763. 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  2764. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a,
  2765. 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  2766. 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x73, 0x65,
  2767. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2768. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65,
  2769. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2770. 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  2771. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  2772. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22,
  2773. 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73,
  2774. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2775. 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xb2, 0x01, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2776. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61,
  2777. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x61,
  2778. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  2779. 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  2780. 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2781. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2782. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  2783. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x32, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2784. 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  2785. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x73, 0x63, 0x68, 0x65, 0x63,
  2786. 0x6b, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x9d, 0x01, 0x0a, 0x1e,
  2787. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51,
  2788. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28,
  2789. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2790. 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  2791. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2792. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  2793. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2794. 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2795. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75,
  2796. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x1a,
  2797. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51,
  2798. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69,
  2799. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72,
  2800. 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72,
  2801. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2802. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2803. 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  2804. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73,
  2805. 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x1d, 0x4d, 0x61,
  2806. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61,
  2807. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70,
  2808. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2809. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2810. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c,
  2811. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2812. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65,
  2813. 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13,
  2814. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c,
  2815. 0x61, 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2816. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2817. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2818. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  2819. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63,
  2820. 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x7e,
  2821. 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x48,
  2822. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x19,
  2823. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2824. 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2825. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2826. 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2827. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f,
  2828. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x88,
  2829. 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2830. 0x55, 0x73, 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2831. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2832. 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52,
  2833. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2834. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29,
  2835. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2836. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f,
  2837. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x91, 0x01, 0x0a, 0x19, 0x4d, 0x61,
  2838. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50,
  2839. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2840. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2841. 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
  2842. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2843. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2844. 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  2845. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75,
  2846. 0x72, 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01,
  2847. 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  2848. 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61,
  2849. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2850. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67,
  2851. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2852. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2853. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f,
  2854. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2855. 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  2856. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2857. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  2858. 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2859. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2860. 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2861. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2862. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f,
  2863. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65,
  2864. 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a,
  2865. 0x01, 0x2a, 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2866. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x2e, 0x61,
  2867. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2868. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x61, 0x6d,
  2869. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2870. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2871. 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2872. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65,
  2873. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d,
  2874. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  2875. 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2876. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  2877. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x52, 0x65, 0x71,
  2878. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2879. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3,
  2880. 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  2881. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75,
  2882. 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e,
  2883. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73,
  2884. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2885. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2886. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71,
  2887. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2888. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3,
  2889. 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  2890. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x70,
  2891. 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61,
  2892. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65,
  2893. 0x64, 0x69, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d,
  2894. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  2895. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2896. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2897. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  2898. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2899. 0x2f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x64, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x40,
  2900. 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19,
  2901. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2902. 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2903. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67,
  2904. 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69,
  2905. 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2906. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  2907. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2908. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74,
  2909. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26,
  2910. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61,
  2911. 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52,
  2912. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2913. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  2914. 0x12, 0x58, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  2915. 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70,
  2916. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63,
  2917. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e,
  2918. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2919. 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70,
  2920. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69,
  2921. 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2922. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2923. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2924. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65,
  2925. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f,
  2926. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2927. 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69,
  2928. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73,
  2929. 0x67, 0x12, 0x82, 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2930. 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  2931. 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2932. 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  2933. 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72,
  2934. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2935. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  2936. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  2937. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2938. 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63,
  2939. 0x6b, 0x65, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2940. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28,
  2941. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2942. 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63,
  2943. 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x46, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64,
  2944. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  2945. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2946. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2947. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2948. 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69,
  2949. 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e,
  2950. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2951. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2952. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a,
  2953. 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64,
  2954. 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2955. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  2956. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2957. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65,
  2958. 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72,
  2959. 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2960. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2961. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2962. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e,
  2963. 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2964. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2965. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2966. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c, 0x53, 0x65, 0x6e, 0x64,
  2967. 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2968. 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2969. 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2970. 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72,
  2971. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2972. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2973. 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69,
  2974. 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x69, 0x6e,
  2975. 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2976. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  2977. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2978. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x24, 0x55, 0x70, 0x64,
  2979. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75,
  2980. 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73,
  2981. 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64,
  2982. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75,
  2983. 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2984. 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61,
  2985. 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72,
  2986. 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2987. 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55,
  2988. 0x73, 0x65, 0x72, 0x44, 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2989. 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2990. 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69,
  2991. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42,
  2992. 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0f, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72,
  2993. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2994. 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b,
  2995. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2996. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2997. 0x00, 0x12, 0x49, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64,
  2998. 0x69, 0x74, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x41, 0x64,
  2999. 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  3000. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3001. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x17,
  3002. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
  3003. 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x42, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3004. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  3005. 0x61, 0x6d, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e,
  3006. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
  3007. 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a,
  3008. 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  3009. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3010. 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72,
  3011. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3012. }
  3013. var (
  3014. file_user_proto_rawDescOnce sync.Once
  3015. file_user_proto_rawDescData = file_user_proto_rawDesc
  3016. )
  3017. func file_user_proto_rawDescGZIP() []byte {
  3018. file_user_proto_rawDescOnce.Do(func() {
  3019. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  3020. })
  3021. return file_user_proto_rawDescData
  3022. }
  3023. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 36)
  3024. var file_user_proto_goTypes = []interface{}{
  3025. (*AddUserCreditRequest)(nil), // 0: api.user.AddUserCreditRequest
  3026. (*ReportUserBlackRequest)(nil), // 1: api.user.ReportUserBlackRequest
  3027. (*SendMessageRequest)(nil), // 2: api.user.SendMessageRequest
  3028. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 3: api.user.ManagerFindIsCheckQualityUserListRequest
  3029. (*ManagerUpdateUserCreditRequest)(nil), // 4: api.user.ManagerUpdateUserCreditRequest
  3030. (*ManagerMarkHighQualityUserRequest)(nil), // 5: api.user.ManagerMarkHighQualityUserRequest
  3031. (*GetRecommendUserDBRequest)(nil), // 6: api.user.GetRecommendUserDBRequest
  3032. (*FindRecommendHighQualityUserRequest)(nil), // 7: api.user.FindRecommendHighQualityUserRequest
  3033. (*FindRecommendHighQualityUserReply)(nil), // 8: api.user.FindRecommendHighQualityUserReply
  3034. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 9: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  3035. (*GetUserDBMsgFromWebsocketReply)(nil), // 10: api.user.GetUserDBMsgFromWebsocketReply
  3036. (*UpdateUserMatchedNumRequest)(nil), // 11: api.user.UpdateUserMatchedNumRequest
  3037. (*SendNewMessageUnreadReminderRequest)(nil), // 12: api.user.SendNewMessageUnreadReminderRequest
  3038. (*SendMsgReduceCreditReply)(nil), // 13: api.user.SendMsgReduceCreditReply
  3039. (*UserFreeNum)(nil), // 14: api.user.UserFreeNum
  3040. (*ReplyScripRequest)(nil), // 15: api.user.ReplyScripRequest
  3041. (*PersonLookScripRequest)(nil), // 16: api.user.PersonLookScripRequest
  3042. (*UserFindScripRequest)(nil), // 17: api.user.UserFindScripRequest
  3043. (*DeleteScripRequest)(nil), // 18: api.user.DeleteScripRequest
  3044. (*CreateScripRequest)(nil), // 19: api.user.CreateScripRequest
  3045. (*FindMatchingAvatarAndNumReply)(nil), // 20: api.user.FindMatchingAvatarAndNumReply
  3046. (*UserRechargeRequest)(nil), // 21: api.user.UserRechargeRequest
  3047. (*RechargeList)(nil), // 22: api.user.RechargeList
  3048. (*RechargeInfo)(nil), // 23: api.user.RechargeInfo
  3049. (*InformationStatus)(nil), // 24: api.user.InformationStatus
  3050. (*UserBalance)(nil), // 25: api.user.UserBalance
  3051. (*UserFindChatListReply)(nil), // 26: api.user.UserFindChatListReply
  3052. (*UserChatInfo)(nil), // 27: api.user.UserChatInfo
  3053. (*UserInfo)(nil), // 28: api.user.UserInfo
  3054. (*KeyRequest)(nil), // 29: api.user.KeyRequest
  3055. (*CreatePayRequest)(nil), // 30: api.user.CreatePayRequest
  3056. (*PayInfo)(nil), // 31: api.user.PayInfo
  3057. (*PayOrderInfo)(nil), // 32: api.user.PayOrderInfo
  3058. (*PayOrderList)(nil), // 33: api.user.PayOrderList
  3059. (*FindPayOrderListRequest)(nil), // 34: api.user.FindPayOrderListRequest
  3060. (*PayCallbackReply)(nil), // 35: api.user.PayCallbackReply
  3061. (*common.Message)(nil), // 36: api.common.Message
  3062. (*structpb.Value)(nil), // 37: google.protobuf.Value
  3063. (*emptypb.Empty)(nil), // 38: google.protobuf.Empty
  3064. (*common.SendPhoneCodeRequest)(nil), // 39: api.common.SendPhoneCodeRequest
  3065. (*common.CheckPhoneCodeRequest)(nil), // 40: api.common.CheckPhoneCodeRequest
  3066. (*common.UpdateInformationRequest)(nil), // 41: api.common.UpdateInformationRequest
  3067. (*common.CreateChatRoomParam)(nil), // 42: api.common.CreateChatRoomParam
  3068. (*common.PersonParam)(nil), // 43: api.common.PersonParam
  3069. (*common.ListPageRequest)(nil), // 44: api.common.ListPageRequest
  3070. (*common.WxConfReq)(nil), // 45: api.common.WxConfReq
  3071. (*common.SexReq)(nil), // 46: api.common.SexReq
  3072. (*common.ListPage2Request)(nil), // 47: api.common.ListPage2Request
  3073. (*common.FindChatRecordListRequest)(nil), // 48: api.common.FindChatRecordListRequest
  3074. (*common.FindChatRoomMsgRequest)(nil), // 49: api.common.FindChatRoomMsgRequest
  3075. (*common.MemeRequest)(nil), // 50: api.common.MemeRequest
  3076. (*common.FindChatTopicRequest)(nil), // 51: api.common.FindChatTopicRequest
  3077. (*common.RandomNum)(nil), // 52: api.common.RandomNum
  3078. (*common.RandomNumAndSex)(nil), // 53: api.common.RandomNumAndSex
  3079. (*common.ReportChatRequest)(nil), // 54: api.common.ReportChatRequest
  3080. (*common.UpdateLastScripIDRequest)(nil), // 55: api.common.UpdateLastScripIDRequest
  3081. (*common.FindScripRequest)(nil), // 56: api.common.FindScripRequest
  3082. (*common.RoomIDRequest)(nil), // 57: api.common.RoomIDRequest
  3083. (*common.PartnerIDParam)(nil), // 58: api.common.PartnerIDParam
  3084. (*common.ManagerFindPersonListRequest)(nil), // 59: api.common.ManagerFindPersonListRequest
  3085. (*common.PersonIDParam)(nil), // 60: api.common.PersonIDParam
  3086. (*common.PersonIDList)(nil), // 61: api.common.PersonIDList
  3087. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 62: api.common.ManagerUpdatePersonVoiceRequest
  3088. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 63: api.common.ManagerUpdatePersonPicturesRequest
  3089. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 64: api.common.ManagerUpdatePersonSignatureRequest
  3090. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 65: api.common.ManagerUpdatePersonAvatarRequest
  3091. (*common.ManagerUpdatePersonNameRequest)(nil), // 66: api.common.ManagerUpdatePersonNameRequest
  3092. (*common.ManagerUpdatePersonWeightRequest)(nil), // 67: api.common.ManagerUpdatePersonWeightRequest
  3093. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 68: api.common.ManagerUpdatePersonIsBlackRequest
  3094. (*common.UpdateLastScripIDDBRequest)(nil), // 69: api.common.UpdateLastScripIDDBRequest
  3095. (*common.FindRecommendRequest)(nil), // 70: api.common.FindRecommendRequest
  3096. (*common.IDParam)(nil), // 71: api.common.IDParam
  3097. (*chat.RoomReply)(nil), // 72: api.chat.RoomReply
  3098. (*common.HomeInfo)(nil), // 73: api.common.HomeInfo
  3099. (*common.LookedAndLikedNum)(nil), // 74: api.common.LookedAndLikedNum
  3100. (*statistics.LookAndLikeListReply)(nil), // 75: api.statistics.LookAndLikeListReply
  3101. (*common.WxConfResponse)(nil), // 76: api.common.WxConfResponse
  3102. (*common.TagListReply)(nil), // 77: api.common.TagListReply
  3103. (*common.RecommendPersonListReply)(nil), // 78: api.common.RecommendPersonListReply
  3104. (*common.ChatRecordListReply)(nil), // 79: api.common.ChatRecordListReply
  3105. (*common.ChatRoomMsg)(nil), // 80: api.common.ChatRoomMsg
  3106. (*common.IsLike)(nil), // 81: api.common.IsLike
  3107. (*common.MemeList)(nil), // 82: api.common.MemeList
  3108. (*common.ChatTopicList)(nil), // 83: api.common.ChatTopicList
  3109. (*common.CommonTextList)(nil), // 84: api.common.CommonTextList
  3110. (*common.MemeTitleList)(nil), // 85: api.common.MemeTitleList
  3111. (*common.ChatCardInfo)(nil), // 86: api.common.ChatCardInfo
  3112. (*common.FindOverSevenDayAvatarReply)(nil), // 87: api.common.FindOverSevenDayAvatarReply
  3113. (*common.ScripID)(nil), // 88: api.common.ScripID
  3114. (*common.ScripReply)(nil), // 89: api.common.ScripReply
  3115. (*common.ScripInfo)(nil), // 90: api.common.ScripInfo
  3116. (*common.ChatRecordInfo)(nil), // 91: api.common.ChatRecordInfo
  3117. (*chat.UnreadNumReply)(nil), // 92: api.chat.UnreadNumReply
  3118. (*chat.UserRoomInfo)(nil), // 93: api.chat.UserRoomInfo
  3119. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 94: api.chat.CheckUserPartnerIsRelationshipReply
  3120. (*common.AddFriendMessageInfo)(nil), // 95: api.common.AddFriendMessageInfo
  3121. (*statistics.LookAndLikeMessageReply)(nil), // 96: api.statistics.LookAndLikeMessageReply
  3122. (*statistics.LookMessageReply)(nil), // 97: api.statistics.LookMessageReply
  3123. (*chat.WindowInfo)(nil), // 98: api.chat.WindowInfo
  3124. (*chat.GetRandomMatchingReply)(nil), // 99: api.chat.GetRandomMatchingReply
  3125. (*common.SendMessageReply)(nil), // 100: api.common.SendMessageReply
  3126. (*common.ManagerFindPersonListReply)(nil), // 101: api.common.ManagerFindPersonListReply
  3127. (*common.ManagerFindPersonListReply2)(nil), // 102: api.common.ManagerFindPersonListReply2
  3128. (*common.PersonMsg)(nil), // 103: api.common.PersonMsg
  3129. (*common.PersonDBReply)(nil), // 104: api.common.PersonDBReply
  3130. (*common.PersonDB)(nil), // 105: api.common.PersonDB
  3131. }
  3132. var file_user_proto_depIdxs = []int32{
  3133. 36, // 0: api.user.SendMessageRequest.message:type_name -> api.common.Message
  3134. 36, // 1: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  3135. 23, // 2: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  3136. 27, // 3: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  3137. 37, // 4: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  3138. 32, // 5: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  3139. 38, // 6: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  3140. 39, // 7: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  3141. 40, // 8: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  3142. 41, // 9: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  3143. 42, // 10: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  3144. 38, // 11: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  3145. 43, // 12: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  3146. 43, // 13: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  3147. 44, // 14: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  3148. 45, // 15: api.user.User.WxConf:input_type -> api.common.WxConfReq
  3149. 46, // 16: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  3150. 47, // 17: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  3151. 44, // 18: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  3152. 44, // 19: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  3153. 48, // 20: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  3154. 49, // 21: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  3155. 43, // 22: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  3156. 50, // 23: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  3157. 51, // 24: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  3158. 52, // 25: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  3159. 53, // 26: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  3160. 38, // 27: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  3161. 43, // 28: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  3162. 38, // 29: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  3163. 43, // 30: api.user.User.UserLike:input_type -> api.common.PersonParam
  3164. 43, // 31: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  3165. 54, // 32: api.user.User.Report:input_type -> api.common.ReportChatRequest
  3166. 38, // 33: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  3167. 55, // 34: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  3168. 19, // 35: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  3169. 18, // 36: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  3170. 17, // 37: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  3171. 56, // 38: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  3172. 17, // 39: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  3173. 16, // 40: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  3174. 38, // 41: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  3175. 15, // 42: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  3176. 57, // 43: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  3177. 38, // 44: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  3178. 43, // 45: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  3179. 44, // 46: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  3180. 44, // 47: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  3181. 57, // 48: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  3182. 58, // 49: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  3183. 29, // 50: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  3184. 38, // 51: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  3185. 38, // 52: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  3186. 38, // 53: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  3187. 38, // 54: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  3188. 38, // 55: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  3189. 43, // 56: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  3190. 21, // 57: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  3191. 38, // 58: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  3192. 34, // 59: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  3193. 38, // 60: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  3194. 38, // 61: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  3195. 38, // 62: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  3196. 38, // 63: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  3197. 46, // 64: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  3198. 57, // 65: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  3199. 57, // 66: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  3200. 38, // 67: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  3201. 42, // 68: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  3202. 2, // 69: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  3203. 59, // 70: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  3204. 59, // 71: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  3205. 3, // 72: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  3206. 59, // 73: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  3207. 5, // 74: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  3208. 60, // 75: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  3209. 61, // 76: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  3210. 60, // 77: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  3211. 62, // 78: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  3212. 63, // 79: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  3213. 64, // 80: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  3214. 65, // 81: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  3215. 66, // 82: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  3216. 67, // 83: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  3217. 68, // 84: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  3218. 4, // 85: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  3219. 60, // 86: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  3220. 61, // 87: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  3221. 69, // 88: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  3222. 70, // 89: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  3223. 60, // 90: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  3224. 71, // 91: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  3225. 7, // 92: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  3226. 60, // 93: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  3227. 43, // 94: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  3228. 43, // 95: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  3229. 43, // 96: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  3230. 43, // 97: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  3231. 43, // 98: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  3232. 12, // 99: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  3233. 60, // 100: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  3234. 11, // 101: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  3235. 6, // 102: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  3236. 1, // 103: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  3237. 0, // 104: api.user.User.AddUserCredit:input_type -> api.user.AddUserCreditRequest
  3238. 60, // 105: api.user.User.UserInformationStatusDB:input_type -> api.common.PersonIDParam
  3239. 28, // 106: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  3240. 38, // 107: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  3241. 38, // 108: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  3242. 38, // 109: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  3243. 72, // 110: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  3244. 25, // 111: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  3245. 73, // 112: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  3246. 74, // 113: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  3247. 75, // 114: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  3248. 76, // 115: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  3249. 77, // 116: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  3250. 78, // 117: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  3251. 26, // 118: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  3252. 26, // 119: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  3253. 79, // 120: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  3254. 80, // 121: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  3255. 81, // 122: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  3256. 82, // 123: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  3257. 83, // 124: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  3258. 84, // 125: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  3259. 84, // 126: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  3260. 85, // 127: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  3261. 86, // 128: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  3262. 85, // 129: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  3263. 38, // 130: api.user.User.UserLike:output_type -> google.protobuf.Empty
  3264. 38, // 131: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  3265. 38, // 132: api.user.User.Report:output_type -> google.protobuf.Empty
  3266. 87, // 133: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  3267. 38, // 134: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  3268. 88, // 135: api.user.User.CreateScrip:output_type -> api.common.ScripID
  3269. 38, // 136: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  3270. 89, // 137: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  3271. 89, // 138: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  3272. 89, // 139: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  3273. 38, // 140: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  3274. 90, // 141: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  3275. 91, // 142: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  3276. 38, // 143: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  3277. 92, // 144: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  3278. 93, // 145: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  3279. 75, // 146: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  3280. 75, // 147: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  3281. 38, // 148: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  3282. 94, // 149: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  3283. 95, // 150: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  3284. 96, // 151: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  3285. 97, // 152: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  3286. 38, // 153: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  3287. 24, // 154: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  3288. 38, // 155: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  3289. 38, // 156: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  3290. 31, // 157: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  3291. 22, // 158: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  3292. 33, // 159: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  3293. 78, // 160: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  3294. 20, // 161: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  3295. 98, // 162: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  3296. 14, // 163: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  3297. 99, // 164: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  3298. 38, // 165: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  3299. 38, // 166: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  3300. 38, // 167: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  3301. 72, // 168: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  3302. 100, // 169: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  3303. 101, // 170: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  3304. 101, // 171: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  3305. 102, // 172: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  3306. 101, // 173: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  3307. 38, // 174: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  3308. 38, // 175: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  3309. 38, // 176: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  3310. 38, // 177: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  3311. 38, // 178: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  3312. 38, // 179: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  3313. 38, // 180: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  3314. 38, // 181: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  3315. 38, // 182: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  3316. 38, // 183: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  3317. 38, // 184: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  3318. 38, // 185: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  3319. 103, // 186: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  3320. 104, // 187: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  3321. 38, // 188: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  3322. 104, // 189: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  3323. 38, // 190: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  3324. 103, // 191: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  3325. 8, // 192: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  3326. 10, // 193: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  3327. 38, // 194: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  3328. 38, // 195: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  3329. 38, // 196: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  3330. 38, // 197: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  3331. 38, // 198: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  3332. 38, // 199: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  3333. 38, // 200: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  3334. 9, // 201: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  3335. 105, // 202: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  3336. 38, // 203: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  3337. 38, // 204: api.user.User.AddUserCredit:output_type -> google.protobuf.Empty
  3338. 24, // 205: api.user.User.UserInformationStatusDB:output_type -> api.user.InformationStatus
  3339. 106, // [106:206] is the sub-list for method output_type
  3340. 6, // [6:106] is the sub-list for method input_type
  3341. 6, // [6:6] is the sub-list for extension type_name
  3342. 6, // [6:6] is the sub-list for extension extendee
  3343. 0, // [0:6] is the sub-list for field type_name
  3344. }
  3345. func init() { file_user_proto_init() }
  3346. func file_user_proto_init() {
  3347. if File_user_proto != nil {
  3348. return
  3349. }
  3350. if !protoimpl.UnsafeEnabled {
  3351. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3352. switch v := v.(*AddUserCreditRequest); i {
  3353. case 0:
  3354. return &v.state
  3355. case 1:
  3356. return &v.sizeCache
  3357. case 2:
  3358. return &v.unknownFields
  3359. default:
  3360. return nil
  3361. }
  3362. }
  3363. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3364. switch v := v.(*ReportUserBlackRequest); i {
  3365. case 0:
  3366. return &v.state
  3367. case 1:
  3368. return &v.sizeCache
  3369. case 2:
  3370. return &v.unknownFields
  3371. default:
  3372. return nil
  3373. }
  3374. }
  3375. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3376. switch v := v.(*SendMessageRequest); i {
  3377. case 0:
  3378. return &v.state
  3379. case 1:
  3380. return &v.sizeCache
  3381. case 2:
  3382. return &v.unknownFields
  3383. default:
  3384. return nil
  3385. }
  3386. }
  3387. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3388. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  3389. case 0:
  3390. return &v.state
  3391. case 1:
  3392. return &v.sizeCache
  3393. case 2:
  3394. return &v.unknownFields
  3395. default:
  3396. return nil
  3397. }
  3398. }
  3399. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3400. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  3401. case 0:
  3402. return &v.state
  3403. case 1:
  3404. return &v.sizeCache
  3405. case 2:
  3406. return &v.unknownFields
  3407. default:
  3408. return nil
  3409. }
  3410. }
  3411. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3412. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  3413. case 0:
  3414. return &v.state
  3415. case 1:
  3416. return &v.sizeCache
  3417. case 2:
  3418. return &v.unknownFields
  3419. default:
  3420. return nil
  3421. }
  3422. }
  3423. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3424. switch v := v.(*GetRecommendUserDBRequest); i {
  3425. case 0:
  3426. return &v.state
  3427. case 1:
  3428. return &v.sizeCache
  3429. case 2:
  3430. return &v.unknownFields
  3431. default:
  3432. return nil
  3433. }
  3434. }
  3435. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3436. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  3437. case 0:
  3438. return &v.state
  3439. case 1:
  3440. return &v.sizeCache
  3441. case 2:
  3442. return &v.unknownFields
  3443. default:
  3444. return nil
  3445. }
  3446. }
  3447. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3448. switch v := v.(*FindRecommendHighQualityUserReply); i {
  3449. case 0:
  3450. return &v.state
  3451. case 1:
  3452. return &v.sizeCache
  3453. case 2:
  3454. return &v.unknownFields
  3455. default:
  3456. return nil
  3457. }
  3458. }
  3459. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3460. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  3461. case 0:
  3462. return &v.state
  3463. case 1:
  3464. return &v.sizeCache
  3465. case 2:
  3466. return &v.unknownFields
  3467. default:
  3468. return nil
  3469. }
  3470. }
  3471. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3472. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  3473. case 0:
  3474. return &v.state
  3475. case 1:
  3476. return &v.sizeCache
  3477. case 2:
  3478. return &v.unknownFields
  3479. default:
  3480. return nil
  3481. }
  3482. }
  3483. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3484. switch v := v.(*UpdateUserMatchedNumRequest); i {
  3485. case 0:
  3486. return &v.state
  3487. case 1:
  3488. return &v.sizeCache
  3489. case 2:
  3490. return &v.unknownFields
  3491. default:
  3492. return nil
  3493. }
  3494. }
  3495. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3496. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  3497. case 0:
  3498. return &v.state
  3499. case 1:
  3500. return &v.sizeCache
  3501. case 2:
  3502. return &v.unknownFields
  3503. default:
  3504. return nil
  3505. }
  3506. }
  3507. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3508. switch v := v.(*SendMsgReduceCreditReply); i {
  3509. case 0:
  3510. return &v.state
  3511. case 1:
  3512. return &v.sizeCache
  3513. case 2:
  3514. return &v.unknownFields
  3515. default:
  3516. return nil
  3517. }
  3518. }
  3519. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3520. switch v := v.(*UserFreeNum); i {
  3521. case 0:
  3522. return &v.state
  3523. case 1:
  3524. return &v.sizeCache
  3525. case 2:
  3526. return &v.unknownFields
  3527. default:
  3528. return nil
  3529. }
  3530. }
  3531. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3532. switch v := v.(*ReplyScripRequest); i {
  3533. case 0:
  3534. return &v.state
  3535. case 1:
  3536. return &v.sizeCache
  3537. case 2:
  3538. return &v.unknownFields
  3539. default:
  3540. return nil
  3541. }
  3542. }
  3543. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3544. switch v := v.(*PersonLookScripRequest); i {
  3545. case 0:
  3546. return &v.state
  3547. case 1:
  3548. return &v.sizeCache
  3549. case 2:
  3550. return &v.unknownFields
  3551. default:
  3552. return nil
  3553. }
  3554. }
  3555. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3556. switch v := v.(*UserFindScripRequest); i {
  3557. case 0:
  3558. return &v.state
  3559. case 1:
  3560. return &v.sizeCache
  3561. case 2:
  3562. return &v.unknownFields
  3563. default:
  3564. return nil
  3565. }
  3566. }
  3567. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3568. switch v := v.(*DeleteScripRequest); i {
  3569. case 0:
  3570. return &v.state
  3571. case 1:
  3572. return &v.sizeCache
  3573. case 2:
  3574. return &v.unknownFields
  3575. default:
  3576. return nil
  3577. }
  3578. }
  3579. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3580. switch v := v.(*CreateScripRequest); i {
  3581. case 0:
  3582. return &v.state
  3583. case 1:
  3584. return &v.sizeCache
  3585. case 2:
  3586. return &v.unknownFields
  3587. default:
  3588. return nil
  3589. }
  3590. }
  3591. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3592. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  3593. case 0:
  3594. return &v.state
  3595. case 1:
  3596. return &v.sizeCache
  3597. case 2:
  3598. return &v.unknownFields
  3599. default:
  3600. return nil
  3601. }
  3602. }
  3603. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3604. switch v := v.(*UserRechargeRequest); i {
  3605. case 0:
  3606. return &v.state
  3607. case 1:
  3608. return &v.sizeCache
  3609. case 2:
  3610. return &v.unknownFields
  3611. default:
  3612. return nil
  3613. }
  3614. }
  3615. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3616. switch v := v.(*RechargeList); i {
  3617. case 0:
  3618. return &v.state
  3619. case 1:
  3620. return &v.sizeCache
  3621. case 2:
  3622. return &v.unknownFields
  3623. default:
  3624. return nil
  3625. }
  3626. }
  3627. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3628. switch v := v.(*RechargeInfo); i {
  3629. case 0:
  3630. return &v.state
  3631. case 1:
  3632. return &v.sizeCache
  3633. case 2:
  3634. return &v.unknownFields
  3635. default:
  3636. return nil
  3637. }
  3638. }
  3639. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3640. switch v := v.(*InformationStatus); i {
  3641. case 0:
  3642. return &v.state
  3643. case 1:
  3644. return &v.sizeCache
  3645. case 2:
  3646. return &v.unknownFields
  3647. default:
  3648. return nil
  3649. }
  3650. }
  3651. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3652. switch v := v.(*UserBalance); i {
  3653. case 0:
  3654. return &v.state
  3655. case 1:
  3656. return &v.sizeCache
  3657. case 2:
  3658. return &v.unknownFields
  3659. default:
  3660. return nil
  3661. }
  3662. }
  3663. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3664. switch v := v.(*UserFindChatListReply); i {
  3665. case 0:
  3666. return &v.state
  3667. case 1:
  3668. return &v.sizeCache
  3669. case 2:
  3670. return &v.unknownFields
  3671. default:
  3672. return nil
  3673. }
  3674. }
  3675. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3676. switch v := v.(*UserChatInfo); i {
  3677. case 0:
  3678. return &v.state
  3679. case 1:
  3680. return &v.sizeCache
  3681. case 2:
  3682. return &v.unknownFields
  3683. default:
  3684. return nil
  3685. }
  3686. }
  3687. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3688. switch v := v.(*UserInfo); i {
  3689. case 0:
  3690. return &v.state
  3691. case 1:
  3692. return &v.sizeCache
  3693. case 2:
  3694. return &v.unknownFields
  3695. default:
  3696. return nil
  3697. }
  3698. }
  3699. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3700. switch v := v.(*KeyRequest); i {
  3701. case 0:
  3702. return &v.state
  3703. case 1:
  3704. return &v.sizeCache
  3705. case 2:
  3706. return &v.unknownFields
  3707. default:
  3708. return nil
  3709. }
  3710. }
  3711. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3712. switch v := v.(*CreatePayRequest); i {
  3713. case 0:
  3714. return &v.state
  3715. case 1:
  3716. return &v.sizeCache
  3717. case 2:
  3718. return &v.unknownFields
  3719. default:
  3720. return nil
  3721. }
  3722. }
  3723. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3724. switch v := v.(*PayInfo); i {
  3725. case 0:
  3726. return &v.state
  3727. case 1:
  3728. return &v.sizeCache
  3729. case 2:
  3730. return &v.unknownFields
  3731. default:
  3732. return nil
  3733. }
  3734. }
  3735. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3736. switch v := v.(*PayOrderInfo); i {
  3737. case 0:
  3738. return &v.state
  3739. case 1:
  3740. return &v.sizeCache
  3741. case 2:
  3742. return &v.unknownFields
  3743. default:
  3744. return nil
  3745. }
  3746. }
  3747. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3748. switch v := v.(*PayOrderList); i {
  3749. case 0:
  3750. return &v.state
  3751. case 1:
  3752. return &v.sizeCache
  3753. case 2:
  3754. return &v.unknownFields
  3755. default:
  3756. return nil
  3757. }
  3758. }
  3759. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3760. switch v := v.(*FindPayOrderListRequest); i {
  3761. case 0:
  3762. return &v.state
  3763. case 1:
  3764. return &v.sizeCache
  3765. case 2:
  3766. return &v.unknownFields
  3767. default:
  3768. return nil
  3769. }
  3770. }
  3771. file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  3772. switch v := v.(*PayCallbackReply); i {
  3773. case 0:
  3774. return &v.state
  3775. case 1:
  3776. return &v.sizeCache
  3777. case 2:
  3778. return &v.unknownFields
  3779. default:
  3780. return nil
  3781. }
  3782. }
  3783. }
  3784. type x struct{}
  3785. out := protoimpl.TypeBuilder{
  3786. File: protoimpl.DescBuilder{
  3787. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3788. RawDescriptor: file_user_proto_rawDesc,
  3789. NumEnums: 0,
  3790. NumMessages: 36,
  3791. NumExtensions: 0,
  3792. NumServices: 1,
  3793. },
  3794. GoTypes: file_user_proto_goTypes,
  3795. DependencyIndexes: file_user_proto_depIdxs,
  3796. MessageInfos: file_user_proto_msgTypes,
  3797. }.Build()
  3798. File_user_proto = out.File
  3799. file_user_proto_rawDesc = nil
  3800. file_user_proto_goTypes = nil
  3801. file_user_proto_depIdxs = nil
  3802. }