user.pb.go 224 KB

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