user.pb.go 244 KB

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