test.pb.go 248 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: test/test.proto
  3. package test
  4. import (
  5. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  6. prototype "google.golang.org/protobuf/reflect/prototype"
  7. protoiface "google.golang.org/protobuf/runtime/protoiface"
  8. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  9. sync "sync"
  10. )
  11. const (
  12. // Verify that runtime/protoimpl is sufficiently up-to-date.
  13. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 0)
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(0 - protoimpl.MinVersion)
  16. )
  17. type ForeignEnum int32
  18. const (
  19. ForeignEnum_FOREIGN_FOO ForeignEnum = 4
  20. ForeignEnum_FOREIGN_BAR ForeignEnum = 5
  21. ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
  22. )
  23. var ForeignEnum_name = map[int32]string{
  24. 4: "FOREIGN_FOO",
  25. 5: "FOREIGN_BAR",
  26. 6: "FOREIGN_BAZ",
  27. }
  28. var ForeignEnum_value = map[string]int32{
  29. "FOREIGN_FOO": 4,
  30. "FOREIGN_BAR": 5,
  31. "FOREIGN_BAZ": 6,
  32. }
  33. func (x ForeignEnum) Enum() *ForeignEnum {
  34. p := new(ForeignEnum)
  35. *p = x
  36. return p
  37. }
  38. func (x ForeignEnum) String() string {
  39. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  40. }
  41. func (ForeignEnum) Descriptor() protoreflect.EnumDescriptor {
  42. return file_test_test_proto_enumTypes[0].EnumDescriptor
  43. }
  44. func (ForeignEnum) Type() protoreflect.EnumType {
  45. return &file_test_test_proto_enumTypes[0]
  46. }
  47. func (x ForeignEnum) Number() protoreflect.EnumNumber {
  48. return protoreflect.EnumNumber(x)
  49. }
  50. // Deprecated: Do not use.
  51. func (x *ForeignEnum) UnmarshalJSON(b []byte) error {
  52. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  53. if err != nil {
  54. return err
  55. }
  56. *x = ForeignEnum(num)
  57. return nil
  58. }
  59. // Deprecated: Use ForeignEnum.Type instead.
  60. func (ForeignEnum) EnumDescriptor() ([]byte, []int) {
  61. return file_test_test_proto_rawDescGZIP(), []int{0}
  62. }
  63. type TestReservedEnumFields int32
  64. const (
  65. TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0
  66. )
  67. var TestReservedEnumFields_name = map[int32]string{
  68. 0: "RESERVED_ENUM",
  69. }
  70. var TestReservedEnumFields_value = map[string]int32{
  71. "RESERVED_ENUM": 0,
  72. }
  73. func (x TestReservedEnumFields) Enum() *TestReservedEnumFields {
  74. p := new(TestReservedEnumFields)
  75. *p = x
  76. return p
  77. }
  78. func (x TestReservedEnumFields) String() string {
  79. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  80. }
  81. func (TestReservedEnumFields) Descriptor() protoreflect.EnumDescriptor {
  82. return file_test_test_proto_enumTypes[1].EnumDescriptor
  83. }
  84. func (TestReservedEnumFields) Type() protoreflect.EnumType {
  85. return &file_test_test_proto_enumTypes[1]
  86. }
  87. func (x TestReservedEnumFields) Number() protoreflect.EnumNumber {
  88. return protoreflect.EnumNumber(x)
  89. }
  90. // Deprecated: Do not use.
  91. func (x *TestReservedEnumFields) UnmarshalJSON(b []byte) error {
  92. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  93. if err != nil {
  94. return err
  95. }
  96. *x = TestReservedEnumFields(num)
  97. return nil
  98. }
  99. // Deprecated: Use TestReservedEnumFields.Type instead.
  100. func (TestReservedEnumFields) EnumDescriptor() ([]byte, []int) {
  101. return file_test_test_proto_rawDescGZIP(), []int{1}
  102. }
  103. type TestAllTypes_NestedEnum int32
  104. const (
  105. TestAllTypes_FOO TestAllTypes_NestedEnum = 0
  106. TestAllTypes_BAR TestAllTypes_NestedEnum = 1
  107. TestAllTypes_BAZ TestAllTypes_NestedEnum = 2
  108. TestAllTypes_NEG TestAllTypes_NestedEnum = -1
  109. )
  110. var TestAllTypes_NestedEnum_name = map[int32]string{
  111. 0: "FOO",
  112. 1: "BAR",
  113. 2: "BAZ",
  114. -1: "NEG",
  115. }
  116. var TestAllTypes_NestedEnum_value = map[string]int32{
  117. "FOO": 0,
  118. "BAR": 1,
  119. "BAZ": 2,
  120. "NEG": -1,
  121. }
  122. func (x TestAllTypes_NestedEnum) Enum() *TestAllTypes_NestedEnum {
  123. p := new(TestAllTypes_NestedEnum)
  124. *p = x
  125. return p
  126. }
  127. func (x TestAllTypes_NestedEnum) String() string {
  128. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  129. }
  130. func (TestAllTypes_NestedEnum) Descriptor() protoreflect.EnumDescriptor {
  131. return file_test_test_proto_enumTypes[2].EnumDescriptor
  132. }
  133. func (TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
  134. return &file_test_test_proto_enumTypes[2]
  135. }
  136. func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
  137. return protoreflect.EnumNumber(x)
  138. }
  139. // Deprecated: Do not use.
  140. func (x *TestAllTypes_NestedEnum) UnmarshalJSON(b []byte) error {
  141. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  142. if err != nil {
  143. return err
  144. }
  145. *x = TestAllTypes_NestedEnum(num)
  146. return nil
  147. }
  148. // Deprecated: Use TestAllTypes_NestedEnum.Type instead.
  149. func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) {
  150. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  151. }
  152. type TestDeprecatedMessage_DeprecatedEnum int32 // Deprecated: Do not use.
  153. const (
  154. TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0 // Deprecated: Do not use.
  155. )
  156. var TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{
  157. 0: "DEPRECATED",
  158. }
  159. var TestDeprecatedMessage_DeprecatedEnum_value = map[string]int32{
  160. "DEPRECATED": 0,
  161. }
  162. func (x TestDeprecatedMessage_DeprecatedEnum) Enum() *TestDeprecatedMessage_DeprecatedEnum {
  163. p := new(TestDeprecatedMessage_DeprecatedEnum)
  164. *p = x
  165. return p
  166. }
  167. func (x TestDeprecatedMessage_DeprecatedEnum) String() string {
  168. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  169. }
  170. func (TestDeprecatedMessage_DeprecatedEnum) Descriptor() protoreflect.EnumDescriptor {
  171. return file_test_test_proto_enumTypes[3].EnumDescriptor
  172. }
  173. func (TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType {
  174. return &file_test_test_proto_enumTypes[3]
  175. }
  176. func (x TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
  177. return protoreflect.EnumNumber(x)
  178. }
  179. // Deprecated: Do not use.
  180. func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(b []byte) error {
  181. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  182. if err != nil {
  183. return err
  184. }
  185. *x = TestDeprecatedMessage_DeprecatedEnum(num)
  186. return nil
  187. }
  188. // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type instead.
  189. func (TestDeprecatedMessage_DeprecatedEnum) EnumDescriptor() ([]byte, []int) {
  190. return file_test_test_proto_rawDescGZIP(), []int{1, 0}
  191. }
  192. type TestAllTypes struct {
  193. state protoimpl.MessageState
  194. OptionalInt32 *int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
  195. OptionalInt64 *int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
  196. OptionalUint32 *uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
  197. OptionalUint64 *uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
  198. OptionalSint32 *int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
  199. OptionalSint64 *int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
  200. OptionalFixed32 *uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
  201. OptionalFixed64 *uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
  202. OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
  203. OptionalSfixed64 *int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
  204. OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
  205. OptionalDouble *float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
  206. OptionalBool *bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
  207. OptionalString *string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
  208. OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"`
  209. Optionalgroup *TestAllTypes_OptionalGroup `protobuf:"group,16,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  210. OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"`
  211. OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"`
  212. OptionalImportMessage *ImportMessage `protobuf:"bytes,20,opt,name=optional_import_message,json=optionalImportMessage" json:"optional_import_message,omitempty"`
  213. OptionalNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"`
  214. OptionalForeignEnum *ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"optional_foreign_enum,omitempty"`
  215. OptionalImportEnum *ImportEnum `protobuf:"varint,23,opt,name=optional_import_enum,json=optionalImportEnum,enum=goproto.proto.test.ImportEnum" json:"optional_import_enum,omitempty"`
  216. RepeatedInt32 []int32 `protobuf:"varint,31,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
  217. RepeatedInt64 []int64 `protobuf:"varint,32,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
  218. RepeatedUint32 []uint32 `protobuf:"varint,33,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
  219. RepeatedUint64 []uint64 `protobuf:"varint,34,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
  220. RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
  221. RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
  222. RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
  223. RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
  224. RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
  225. RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
  226. RepeatedFloat []float32 `protobuf:"fixed32,41,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
  227. RepeatedDouble []float64 `protobuf:"fixed64,42,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
  228. RepeatedBool []bool `protobuf:"varint,43,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
  229. RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
  230. RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"`
  231. Repeatedgroup []*TestAllTypes_RepeatedGroup `protobuf:"group,46,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  232. RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"`
  233. RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"`
  234. RepeatedImportmessage []*ImportMessage `protobuf:"bytes,50,rep,name=repeated_importmessage,json=repeatedImportmessage" json:"repeated_importmessage,omitempty"`
  235. RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,name=repeated_nested_enum,json=repeatedNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"`
  236. RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"repeated_foreign_enum,omitempty"`
  237. RepeatedImportenum []ImportEnum `protobuf:"varint,53,rep,name=repeated_importenum,json=repeatedImportenum,enum=goproto.proto.test.ImportEnum" json:"repeated_importenum,omitempty"`
  238. MapInt32Int32 map[int32]int32 `protobuf:"bytes,56,rep,name=map_int32_int32,json=mapInt32Int32" json:"map_int32_int32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  239. MapInt64Int64 map[int64]int64 `protobuf:"bytes,57,rep,name=map_int64_int64,json=mapInt64Int64" json:"map_int64_int64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  240. MapUint32Uint32 map[uint32]uint32 `protobuf:"bytes,58,rep,name=map_uint32_uint32,json=mapUint32Uint32" json:"map_uint32_uint32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  241. MapUint64Uint64 map[uint64]uint64 `protobuf:"bytes,59,rep,name=map_uint64_uint64,json=mapUint64Uint64" json:"map_uint64_uint64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  242. MapSint32Sint32 map[int32]int32 `protobuf:"bytes,60,rep,name=map_sint32_sint32,json=mapSint32Sint32" json:"map_sint32_sint32,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"`
  243. MapSint64Sint64 map[int64]int64 `protobuf:"bytes,61,rep,name=map_sint64_sint64,json=mapSint64Sint64" json:"map_sint64_sint64,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"`
  244. MapFixed32Fixed32 map[uint32]uint32 `protobuf:"bytes,62,rep,name=map_fixed32_fixed32,json=mapFixed32Fixed32" json:"map_fixed32_fixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  245. MapFixed64Fixed64 map[uint64]uint64 `protobuf:"bytes,63,rep,name=map_fixed64_fixed64,json=mapFixed64Fixed64" json:"map_fixed64_fixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  246. MapSfixed32Sfixed32 map[int32]int32 `protobuf:"bytes,64,rep,name=map_sfixed32_sfixed32,json=mapSfixed32Sfixed32" json:"map_sfixed32_sfixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  247. MapSfixed64Sfixed64 map[int64]int64 `protobuf:"bytes,65,rep,name=map_sfixed64_sfixed64,json=mapSfixed64Sfixed64" json:"map_sfixed64_sfixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  248. MapInt32Float map[int32]float32 `protobuf:"bytes,66,rep,name=map_int32_float,json=mapInt32Float" json:"map_int32_float,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  249. MapInt32Double map[int32]float64 `protobuf:"bytes,67,rep,name=map_int32_double,json=mapInt32Double" json:"map_int32_double,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  250. MapBoolBool map[bool]bool `protobuf:"bytes,68,rep,name=map_bool_bool,json=mapBoolBool" json:"map_bool_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  251. MapStringString map[string]string `protobuf:"bytes,69,rep,name=map_string_string,json=mapStringString" json:"map_string_string,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  252. MapStringBytes map[string][]byte `protobuf:"bytes,70,rep,name=map_string_bytes,json=mapStringBytes" json:"map_string_bytes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  253. MapStringNestedMessage map[string]*TestAllTypes_NestedMessage `protobuf:"bytes,71,rep,name=map_string_nested_message,json=mapStringNestedMessage" json:"map_string_nested_message,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  254. MapStringNestedEnum map[string]TestAllTypes_NestedEnum `protobuf:"bytes,73,rep,name=map_string_nested_enum,json=mapStringNestedEnum" json:"map_string_nested_enum,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=goproto.proto.test.TestAllTypes_NestedEnum"`
  255. // Singular with defaults
  256. DefaultInt32 *int32 `protobuf:"varint,81,opt,name=default_int32,json=defaultInt32,def=81" json:"default_int32,omitempty"`
  257. DefaultInt64 *int64 `protobuf:"varint,82,opt,name=default_int64,json=defaultInt64,def=82" json:"default_int64,omitempty"`
  258. DefaultUint32 *uint32 `protobuf:"varint,83,opt,name=default_uint32,json=defaultUint32,def=83" json:"default_uint32,omitempty"`
  259. DefaultUint64 *uint64 `protobuf:"varint,84,opt,name=default_uint64,json=defaultUint64,def=84" json:"default_uint64,omitempty"`
  260. DefaultSint32 *int32 `protobuf:"zigzag32,85,opt,name=default_sint32,json=defaultSint32,def=-85" json:"default_sint32,omitempty"`
  261. DefaultSint64 *int64 `protobuf:"zigzag64,86,opt,name=default_sint64,json=defaultSint64,def=86" json:"default_sint64,omitempty"`
  262. DefaultFixed32 *uint32 `protobuf:"fixed32,87,opt,name=default_fixed32,json=defaultFixed32,def=87" json:"default_fixed32,omitempty"`
  263. DefaultFixed64 *uint64 `protobuf:"fixed64,88,opt,name=default_fixed64,json=defaultFixed64,def=88" json:"default_fixed64,omitempty"`
  264. DefaultSfixed32 *int32 `protobuf:"fixed32,89,opt,name=default_sfixed32,json=defaultSfixed32,def=89" json:"default_sfixed32,omitempty"`
  265. DefaultSfixed64 *int64 `protobuf:"fixed64,80,opt,name=default_sfixed64,json=defaultSfixed64,def=-90" json:"default_sfixed64,omitempty"`
  266. DefaultFloat *float32 `protobuf:"fixed32,91,opt,name=default_float,json=defaultFloat,def=91.5" json:"default_float,omitempty"`
  267. DefaultDouble *float64 `protobuf:"fixed64,92,opt,name=default_double,json=defaultDouble,def=92000" json:"default_double,omitempty"`
  268. DefaultBool *bool `protobuf:"varint,93,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"`
  269. DefaultString *string `protobuf:"bytes,94,opt,name=default_string,json=defaultString,def=hello" json:"default_string,omitempty"`
  270. DefaultBytes []byte `protobuf:"bytes,95,opt,name=default_bytes,json=defaultBytes,def=world" json:"default_bytes,omitempty"`
  271. DefaultNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,96,opt,name=default_nested_enum,json=defaultNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,def=1" json:"default_nested_enum,omitempty"`
  272. DefaultForeignEnum *ForeignEnum `protobuf:"varint,97,opt,name=default_foreign_enum,json=defaultForeignEnum,enum=goproto.proto.test.ForeignEnum,def=5" json:"default_foreign_enum,omitempty"`
  273. // Types that are valid to be assigned to OneofField:
  274. // *TestAllTypes_OneofUint32
  275. // *TestAllTypes_OneofNestedMessage
  276. // *TestAllTypes_OneofString
  277. // *TestAllTypes_OneofBytes
  278. // *TestAllTypes_OneofBool
  279. // *TestAllTypes_OneofUint64
  280. // *TestAllTypes_OneofFloat
  281. // *TestAllTypes_OneofDouble
  282. // *TestAllTypes_OneofEnum
  283. OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"`
  284. sizeCache protoimpl.SizeCache
  285. unknownFields protoimpl.UnknownFields
  286. }
  287. func (x *TestAllTypes) Reset() {
  288. *x = TestAllTypes{}
  289. }
  290. func (x *TestAllTypes) String() string {
  291. return protoimpl.X.MessageStringOf(x)
  292. }
  293. func (*TestAllTypes) ProtoMessage() {}
  294. func (x *TestAllTypes) ProtoReflect() protoreflect.Message {
  295. mi := &file_test_test_proto_msgTypes[0]
  296. if protoimpl.UnsafeEnabled && x != nil {
  297. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  298. if ms.LoadMessageInfo() == nil {
  299. ms.StoreMessageInfo(mi)
  300. }
  301. return ms
  302. }
  303. return mi.MessageOf(x)
  304. }
  305. // Deprecated: Use TestAllTypes.ProtoReflect.Type instead.
  306. func (*TestAllTypes) Descriptor() ([]byte, []int) {
  307. return file_test_test_proto_rawDescGZIP(), []int{0}
  308. }
  309. const Default_TestAllTypes_DefaultInt32 int32 = 81
  310. const Default_TestAllTypes_DefaultInt64 int64 = 82
  311. const Default_TestAllTypes_DefaultUint32 uint32 = 83
  312. const Default_TestAllTypes_DefaultUint64 uint64 = 84
  313. const Default_TestAllTypes_DefaultSint32 int32 = -85
  314. const Default_TestAllTypes_DefaultSint64 int64 = 86
  315. const Default_TestAllTypes_DefaultFixed32 uint32 = 87
  316. const Default_TestAllTypes_DefaultFixed64 uint64 = 88
  317. const Default_TestAllTypes_DefaultSfixed32 int32 = 89
  318. const Default_TestAllTypes_DefaultSfixed64 int64 = -90
  319. const Default_TestAllTypes_DefaultFloat float32 = 91.5
  320. const Default_TestAllTypes_DefaultDouble float64 = 92000
  321. const Default_TestAllTypes_DefaultBool bool = true
  322. const Default_TestAllTypes_DefaultString string = "hello"
  323. var Default_TestAllTypes_DefaultBytes []byte = []byte("world")
  324. const Default_TestAllTypes_DefaultNestedEnum TestAllTypes_NestedEnum = TestAllTypes_BAR
  325. const Default_TestAllTypes_DefaultForeignEnum ForeignEnum = ForeignEnum_FOREIGN_BAR
  326. func (x *TestAllTypes) GetOptionalInt32() int32 {
  327. if x != nil && x.OptionalInt32 != nil {
  328. return *x.OptionalInt32
  329. }
  330. return 0
  331. }
  332. func (x *TestAllTypes) GetOptionalInt64() int64 {
  333. if x != nil && x.OptionalInt64 != nil {
  334. return *x.OptionalInt64
  335. }
  336. return 0
  337. }
  338. func (x *TestAllTypes) GetOptionalUint32() uint32 {
  339. if x != nil && x.OptionalUint32 != nil {
  340. return *x.OptionalUint32
  341. }
  342. return 0
  343. }
  344. func (x *TestAllTypes) GetOptionalUint64() uint64 {
  345. if x != nil && x.OptionalUint64 != nil {
  346. return *x.OptionalUint64
  347. }
  348. return 0
  349. }
  350. func (x *TestAllTypes) GetOptionalSint32() int32 {
  351. if x != nil && x.OptionalSint32 != nil {
  352. return *x.OptionalSint32
  353. }
  354. return 0
  355. }
  356. func (x *TestAllTypes) GetOptionalSint64() int64 {
  357. if x != nil && x.OptionalSint64 != nil {
  358. return *x.OptionalSint64
  359. }
  360. return 0
  361. }
  362. func (x *TestAllTypes) GetOptionalFixed32() uint32 {
  363. if x != nil && x.OptionalFixed32 != nil {
  364. return *x.OptionalFixed32
  365. }
  366. return 0
  367. }
  368. func (x *TestAllTypes) GetOptionalFixed64() uint64 {
  369. if x != nil && x.OptionalFixed64 != nil {
  370. return *x.OptionalFixed64
  371. }
  372. return 0
  373. }
  374. func (x *TestAllTypes) GetOptionalSfixed32() int32 {
  375. if x != nil && x.OptionalSfixed32 != nil {
  376. return *x.OptionalSfixed32
  377. }
  378. return 0
  379. }
  380. func (x *TestAllTypes) GetOptionalSfixed64() int64 {
  381. if x != nil && x.OptionalSfixed64 != nil {
  382. return *x.OptionalSfixed64
  383. }
  384. return 0
  385. }
  386. func (x *TestAllTypes) GetOptionalFloat() float32 {
  387. if x != nil && x.OptionalFloat != nil {
  388. return *x.OptionalFloat
  389. }
  390. return 0
  391. }
  392. func (x *TestAllTypes) GetOptionalDouble() float64 {
  393. if x != nil && x.OptionalDouble != nil {
  394. return *x.OptionalDouble
  395. }
  396. return 0
  397. }
  398. func (x *TestAllTypes) GetOptionalBool() bool {
  399. if x != nil && x.OptionalBool != nil {
  400. return *x.OptionalBool
  401. }
  402. return false
  403. }
  404. func (x *TestAllTypes) GetOptionalString() string {
  405. if x != nil && x.OptionalString != nil {
  406. return *x.OptionalString
  407. }
  408. return ""
  409. }
  410. func (x *TestAllTypes) GetOptionalBytes() []byte {
  411. if x != nil {
  412. return x.OptionalBytes
  413. }
  414. return nil
  415. }
  416. func (x *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
  417. if x != nil {
  418. return x.Optionalgroup
  419. }
  420. return nil
  421. }
  422. func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
  423. if x != nil {
  424. return x.OptionalNestedMessage
  425. }
  426. return nil
  427. }
  428. func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
  429. if x != nil {
  430. return x.OptionalForeignMessage
  431. }
  432. return nil
  433. }
  434. func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
  435. if x != nil {
  436. return x.OptionalImportMessage
  437. }
  438. return nil
  439. }
  440. func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
  441. if x != nil && x.OptionalNestedEnum != nil {
  442. return *x.OptionalNestedEnum
  443. }
  444. return TestAllTypes_FOO
  445. }
  446. func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
  447. if x != nil && x.OptionalForeignEnum != nil {
  448. return *x.OptionalForeignEnum
  449. }
  450. return ForeignEnum_FOREIGN_FOO
  451. }
  452. func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum {
  453. if x != nil && x.OptionalImportEnum != nil {
  454. return *x.OptionalImportEnum
  455. }
  456. return ImportEnum_IMPORT_ZERO
  457. }
  458. func (x *TestAllTypes) GetRepeatedInt32() []int32 {
  459. if x != nil {
  460. return x.RepeatedInt32
  461. }
  462. return nil
  463. }
  464. func (x *TestAllTypes) GetRepeatedInt64() []int64 {
  465. if x != nil {
  466. return x.RepeatedInt64
  467. }
  468. return nil
  469. }
  470. func (x *TestAllTypes) GetRepeatedUint32() []uint32 {
  471. if x != nil {
  472. return x.RepeatedUint32
  473. }
  474. return nil
  475. }
  476. func (x *TestAllTypes) GetRepeatedUint64() []uint64 {
  477. if x != nil {
  478. return x.RepeatedUint64
  479. }
  480. return nil
  481. }
  482. func (x *TestAllTypes) GetRepeatedSint32() []int32 {
  483. if x != nil {
  484. return x.RepeatedSint32
  485. }
  486. return nil
  487. }
  488. func (x *TestAllTypes) GetRepeatedSint64() []int64 {
  489. if x != nil {
  490. return x.RepeatedSint64
  491. }
  492. return nil
  493. }
  494. func (x *TestAllTypes) GetRepeatedFixed32() []uint32 {
  495. if x != nil {
  496. return x.RepeatedFixed32
  497. }
  498. return nil
  499. }
  500. func (x *TestAllTypes) GetRepeatedFixed64() []uint64 {
  501. if x != nil {
  502. return x.RepeatedFixed64
  503. }
  504. return nil
  505. }
  506. func (x *TestAllTypes) GetRepeatedSfixed32() []int32 {
  507. if x != nil {
  508. return x.RepeatedSfixed32
  509. }
  510. return nil
  511. }
  512. func (x *TestAllTypes) GetRepeatedSfixed64() []int64 {
  513. if x != nil {
  514. return x.RepeatedSfixed64
  515. }
  516. return nil
  517. }
  518. func (x *TestAllTypes) GetRepeatedFloat() []float32 {
  519. if x != nil {
  520. return x.RepeatedFloat
  521. }
  522. return nil
  523. }
  524. func (x *TestAllTypes) GetRepeatedDouble() []float64 {
  525. if x != nil {
  526. return x.RepeatedDouble
  527. }
  528. return nil
  529. }
  530. func (x *TestAllTypes) GetRepeatedBool() []bool {
  531. if x != nil {
  532. return x.RepeatedBool
  533. }
  534. return nil
  535. }
  536. func (x *TestAllTypes) GetRepeatedString() []string {
  537. if x != nil {
  538. return x.RepeatedString
  539. }
  540. return nil
  541. }
  542. func (x *TestAllTypes) GetRepeatedBytes() [][]byte {
  543. if x != nil {
  544. return x.RepeatedBytes
  545. }
  546. return nil
  547. }
  548. func (x *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
  549. if x != nil {
  550. return x.Repeatedgroup
  551. }
  552. return nil
  553. }
  554. func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
  555. if x != nil {
  556. return x.RepeatedNestedMessage
  557. }
  558. return nil
  559. }
  560. func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
  561. if x != nil {
  562. return x.RepeatedForeignMessage
  563. }
  564. return nil
  565. }
  566. func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
  567. if x != nil {
  568. return x.RepeatedImportmessage
  569. }
  570. return nil
  571. }
  572. func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
  573. if x != nil {
  574. return x.RepeatedNestedEnum
  575. }
  576. return nil
  577. }
  578. func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
  579. if x != nil {
  580. return x.RepeatedForeignEnum
  581. }
  582. return nil
  583. }
  584. func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
  585. if x != nil {
  586. return x.RepeatedImportenum
  587. }
  588. return nil
  589. }
  590. func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
  591. if x != nil {
  592. return x.MapInt32Int32
  593. }
  594. return nil
  595. }
  596. func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
  597. if x != nil {
  598. return x.MapInt64Int64
  599. }
  600. return nil
  601. }
  602. func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
  603. if x != nil {
  604. return x.MapUint32Uint32
  605. }
  606. return nil
  607. }
  608. func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
  609. if x != nil {
  610. return x.MapUint64Uint64
  611. }
  612. return nil
  613. }
  614. func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
  615. if x != nil {
  616. return x.MapSint32Sint32
  617. }
  618. return nil
  619. }
  620. func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
  621. if x != nil {
  622. return x.MapSint64Sint64
  623. }
  624. return nil
  625. }
  626. func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
  627. if x != nil {
  628. return x.MapFixed32Fixed32
  629. }
  630. return nil
  631. }
  632. func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
  633. if x != nil {
  634. return x.MapFixed64Fixed64
  635. }
  636. return nil
  637. }
  638. func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
  639. if x != nil {
  640. return x.MapSfixed32Sfixed32
  641. }
  642. return nil
  643. }
  644. func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
  645. if x != nil {
  646. return x.MapSfixed64Sfixed64
  647. }
  648. return nil
  649. }
  650. func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 {
  651. if x != nil {
  652. return x.MapInt32Float
  653. }
  654. return nil
  655. }
  656. func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 {
  657. if x != nil {
  658. return x.MapInt32Double
  659. }
  660. return nil
  661. }
  662. func (x *TestAllTypes) GetMapBoolBool() map[bool]bool {
  663. if x != nil {
  664. return x.MapBoolBool
  665. }
  666. return nil
  667. }
  668. func (x *TestAllTypes) GetMapStringString() map[string]string {
  669. if x != nil {
  670. return x.MapStringString
  671. }
  672. return nil
  673. }
  674. func (x *TestAllTypes) GetMapStringBytes() map[string][]byte {
  675. if x != nil {
  676. return x.MapStringBytes
  677. }
  678. return nil
  679. }
  680. func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
  681. if x != nil {
  682. return x.MapStringNestedMessage
  683. }
  684. return nil
  685. }
  686. func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
  687. if x != nil {
  688. return x.MapStringNestedEnum
  689. }
  690. return nil
  691. }
  692. func (x *TestAllTypes) GetDefaultInt32() int32 {
  693. if x != nil && x.DefaultInt32 != nil {
  694. return *x.DefaultInt32
  695. }
  696. return Default_TestAllTypes_DefaultInt32
  697. }
  698. func (x *TestAllTypes) GetDefaultInt64() int64 {
  699. if x != nil && x.DefaultInt64 != nil {
  700. return *x.DefaultInt64
  701. }
  702. return Default_TestAllTypes_DefaultInt64
  703. }
  704. func (x *TestAllTypes) GetDefaultUint32() uint32 {
  705. if x != nil && x.DefaultUint32 != nil {
  706. return *x.DefaultUint32
  707. }
  708. return Default_TestAllTypes_DefaultUint32
  709. }
  710. func (x *TestAllTypes) GetDefaultUint64() uint64 {
  711. if x != nil && x.DefaultUint64 != nil {
  712. return *x.DefaultUint64
  713. }
  714. return Default_TestAllTypes_DefaultUint64
  715. }
  716. func (x *TestAllTypes) GetDefaultSint32() int32 {
  717. if x != nil && x.DefaultSint32 != nil {
  718. return *x.DefaultSint32
  719. }
  720. return Default_TestAllTypes_DefaultSint32
  721. }
  722. func (x *TestAllTypes) GetDefaultSint64() int64 {
  723. if x != nil && x.DefaultSint64 != nil {
  724. return *x.DefaultSint64
  725. }
  726. return Default_TestAllTypes_DefaultSint64
  727. }
  728. func (x *TestAllTypes) GetDefaultFixed32() uint32 {
  729. if x != nil && x.DefaultFixed32 != nil {
  730. return *x.DefaultFixed32
  731. }
  732. return Default_TestAllTypes_DefaultFixed32
  733. }
  734. func (x *TestAllTypes) GetDefaultFixed64() uint64 {
  735. if x != nil && x.DefaultFixed64 != nil {
  736. return *x.DefaultFixed64
  737. }
  738. return Default_TestAllTypes_DefaultFixed64
  739. }
  740. func (x *TestAllTypes) GetDefaultSfixed32() int32 {
  741. if x != nil && x.DefaultSfixed32 != nil {
  742. return *x.DefaultSfixed32
  743. }
  744. return Default_TestAllTypes_DefaultSfixed32
  745. }
  746. func (x *TestAllTypes) GetDefaultSfixed64() int64 {
  747. if x != nil && x.DefaultSfixed64 != nil {
  748. return *x.DefaultSfixed64
  749. }
  750. return Default_TestAllTypes_DefaultSfixed64
  751. }
  752. func (x *TestAllTypes) GetDefaultFloat() float32 {
  753. if x != nil && x.DefaultFloat != nil {
  754. return *x.DefaultFloat
  755. }
  756. return Default_TestAllTypes_DefaultFloat
  757. }
  758. func (x *TestAllTypes) GetDefaultDouble() float64 {
  759. if x != nil && x.DefaultDouble != nil {
  760. return *x.DefaultDouble
  761. }
  762. return Default_TestAllTypes_DefaultDouble
  763. }
  764. func (x *TestAllTypes) GetDefaultBool() bool {
  765. if x != nil && x.DefaultBool != nil {
  766. return *x.DefaultBool
  767. }
  768. return Default_TestAllTypes_DefaultBool
  769. }
  770. func (x *TestAllTypes) GetDefaultString() string {
  771. if x != nil && x.DefaultString != nil {
  772. return *x.DefaultString
  773. }
  774. return Default_TestAllTypes_DefaultString
  775. }
  776. func (x *TestAllTypes) GetDefaultBytes() []byte {
  777. if x != nil && x.DefaultBytes != nil {
  778. return x.DefaultBytes
  779. }
  780. return append([]byte(nil), Default_TestAllTypes_DefaultBytes...)
  781. }
  782. func (x *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
  783. if x != nil && x.DefaultNestedEnum != nil {
  784. return *x.DefaultNestedEnum
  785. }
  786. return Default_TestAllTypes_DefaultNestedEnum
  787. }
  788. func (x *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
  789. if x != nil && x.DefaultForeignEnum != nil {
  790. return *x.DefaultForeignEnum
  791. }
  792. return Default_TestAllTypes_DefaultForeignEnum
  793. }
  794. func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField {
  795. if m != nil {
  796. return m.OneofField
  797. }
  798. return nil
  799. }
  800. func (x *TestAllTypes) GetOneofUint32() uint32 {
  801. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok {
  802. return x.OneofUint32
  803. }
  804. return 0
  805. }
  806. func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
  807. if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
  808. return x.OneofNestedMessage
  809. }
  810. return nil
  811. }
  812. func (x *TestAllTypes) GetOneofString() string {
  813. if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok {
  814. return x.OneofString
  815. }
  816. return ""
  817. }
  818. func (x *TestAllTypes) GetOneofBytes() []byte {
  819. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok {
  820. return x.OneofBytes
  821. }
  822. return nil
  823. }
  824. func (x *TestAllTypes) GetOneofBool() bool {
  825. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok {
  826. return x.OneofBool
  827. }
  828. return false
  829. }
  830. func (x *TestAllTypes) GetOneofUint64() uint64 {
  831. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok {
  832. return x.OneofUint64
  833. }
  834. return 0
  835. }
  836. func (x *TestAllTypes) GetOneofFloat() float32 {
  837. if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok {
  838. return x.OneofFloat
  839. }
  840. return 0
  841. }
  842. func (x *TestAllTypes) GetOneofDouble() float64 {
  843. if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok {
  844. return x.OneofDouble
  845. }
  846. return 0
  847. }
  848. func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
  849. if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok {
  850. return x.OneofEnum
  851. }
  852. return TestAllTypes_FOO
  853. }
  854. type isTestAllTypes_OneofField interface {
  855. isTestAllTypes_OneofField()
  856. }
  857. type TestAllTypes_OneofUint32 struct {
  858. OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,oneof"`
  859. }
  860. type TestAllTypes_OneofNestedMessage struct {
  861. OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"`
  862. }
  863. type TestAllTypes_OneofString struct {
  864. OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,oneof"`
  865. }
  866. type TestAllTypes_OneofBytes struct {
  867. OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,oneof"`
  868. }
  869. type TestAllTypes_OneofBool struct {
  870. OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,oneof"`
  871. }
  872. type TestAllTypes_OneofUint64 struct {
  873. OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,oneof"`
  874. }
  875. type TestAllTypes_OneofFloat struct {
  876. OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,oneof"`
  877. }
  878. type TestAllTypes_OneofDouble struct {
  879. OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,oneof"`
  880. }
  881. type TestAllTypes_OneofEnum struct {
  882. OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,oneof"`
  883. }
  884. func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {}
  885. func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {}
  886. func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {}
  887. func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {}
  888. func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {}
  889. func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {}
  890. func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {}
  891. func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {}
  892. func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {}
  893. // Deprecated: Do not use.
  894. type TestDeprecatedMessage struct {
  895. state protoimpl.MessageState
  896. DeprecatedInt32 *int32 `protobuf:"varint,1,opt,name=deprecated_int32,json=deprecatedInt32" json:"deprecated_int32,omitempty"` // Deprecated: Do not use.
  897. // Types that are valid to be assigned to DeprecatedOneof:
  898. // *TestDeprecatedMessage_DeprecatedOneofField
  899. DeprecatedOneof isTestDeprecatedMessage_DeprecatedOneof `protobuf_oneof:"deprecated_oneof"`
  900. sizeCache protoimpl.SizeCache
  901. unknownFields protoimpl.UnknownFields
  902. }
  903. func (x *TestDeprecatedMessage) Reset() {
  904. *x = TestDeprecatedMessage{}
  905. }
  906. func (x *TestDeprecatedMessage) String() string {
  907. return protoimpl.X.MessageStringOf(x)
  908. }
  909. func (*TestDeprecatedMessage) ProtoMessage() {}
  910. func (x *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
  911. mi := &file_test_test_proto_msgTypes[1]
  912. if protoimpl.UnsafeEnabled && x != nil {
  913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  914. if ms.LoadMessageInfo() == nil {
  915. ms.StoreMessageInfo(mi)
  916. }
  917. return ms
  918. }
  919. return mi.MessageOf(x)
  920. }
  921. // Deprecated: Use TestDeprecatedMessage.ProtoReflect.Type instead.
  922. func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) {
  923. return file_test_test_proto_rawDescGZIP(), []int{1}
  924. }
  925. // Deprecated: Do not use.
  926. func (x *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
  927. if x != nil && x.DeprecatedInt32 != nil {
  928. return *x.DeprecatedInt32
  929. }
  930. return 0
  931. }
  932. func (m *TestDeprecatedMessage) GetDeprecatedOneof() isTestDeprecatedMessage_DeprecatedOneof {
  933. if m != nil {
  934. return m.DeprecatedOneof
  935. }
  936. return nil
  937. }
  938. // Deprecated: Do not use.
  939. func (x *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
  940. if x, ok := x.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
  941. return x.DeprecatedOneofField
  942. }
  943. return 0
  944. }
  945. type isTestDeprecatedMessage_DeprecatedOneof interface {
  946. isTestDeprecatedMessage_DeprecatedOneof()
  947. }
  948. type TestDeprecatedMessage_DeprecatedOneofField struct {
  949. DeprecatedOneofField int32 `protobuf:"varint,2,opt,name=deprecated_oneof_field,json=deprecatedOneofField,oneof"`
  950. }
  951. func (*TestDeprecatedMessage_DeprecatedOneofField) isTestDeprecatedMessage_DeprecatedOneof() {}
  952. type ForeignMessage struct {
  953. state protoimpl.MessageState
  954. C *int32 `protobuf:"varint,1,opt,name=c" json:"c,omitempty"`
  955. D *int32 `protobuf:"varint,2,opt,name=d" json:"d,omitempty"`
  956. sizeCache protoimpl.SizeCache
  957. unknownFields protoimpl.UnknownFields
  958. }
  959. func (x *ForeignMessage) Reset() {
  960. *x = ForeignMessage{}
  961. }
  962. func (x *ForeignMessage) String() string {
  963. return protoimpl.X.MessageStringOf(x)
  964. }
  965. func (*ForeignMessage) ProtoMessage() {}
  966. func (x *ForeignMessage) ProtoReflect() protoreflect.Message {
  967. mi := &file_test_test_proto_msgTypes[2]
  968. if protoimpl.UnsafeEnabled && x != nil {
  969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  970. if ms.LoadMessageInfo() == nil {
  971. ms.StoreMessageInfo(mi)
  972. }
  973. return ms
  974. }
  975. return mi.MessageOf(x)
  976. }
  977. // Deprecated: Use ForeignMessage.ProtoReflect.Type instead.
  978. func (*ForeignMessage) Descriptor() ([]byte, []int) {
  979. return file_test_test_proto_rawDescGZIP(), []int{2}
  980. }
  981. func (x *ForeignMessage) GetC() int32 {
  982. if x != nil && x.C != nil {
  983. return *x.C
  984. }
  985. return 0
  986. }
  987. func (x *ForeignMessage) GetD() int32 {
  988. if x != nil && x.D != nil {
  989. return *x.D
  990. }
  991. return 0
  992. }
  993. type TestReservedFields struct {
  994. state protoimpl.MessageState
  995. sizeCache protoimpl.SizeCache
  996. unknownFields protoimpl.UnknownFields
  997. }
  998. func (x *TestReservedFields) Reset() {
  999. *x = TestReservedFields{}
  1000. }
  1001. func (x *TestReservedFields) String() string {
  1002. return protoimpl.X.MessageStringOf(x)
  1003. }
  1004. func (*TestReservedFields) ProtoMessage() {}
  1005. func (x *TestReservedFields) ProtoReflect() protoreflect.Message {
  1006. mi := &file_test_test_proto_msgTypes[3]
  1007. if protoimpl.UnsafeEnabled && x != nil {
  1008. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1009. if ms.LoadMessageInfo() == nil {
  1010. ms.StoreMessageInfo(mi)
  1011. }
  1012. return ms
  1013. }
  1014. return mi.MessageOf(x)
  1015. }
  1016. // Deprecated: Use TestReservedFields.ProtoReflect.Type instead.
  1017. func (*TestReservedFields) Descriptor() ([]byte, []int) {
  1018. return file_test_test_proto_rawDescGZIP(), []int{3}
  1019. }
  1020. type TestAllExtensions struct {
  1021. state protoimpl.MessageState
  1022. sizeCache protoimpl.SizeCache
  1023. unknownFields protoimpl.UnknownFields
  1024. extensionFields protoimpl.ExtensionFields
  1025. }
  1026. func (x *TestAllExtensions) Reset() {
  1027. *x = TestAllExtensions{}
  1028. }
  1029. func (x *TestAllExtensions) String() string {
  1030. return protoimpl.X.MessageStringOf(x)
  1031. }
  1032. func (*TestAllExtensions) ProtoMessage() {}
  1033. func (x *TestAllExtensions) ProtoReflect() protoreflect.Message {
  1034. mi := &file_test_test_proto_msgTypes[4]
  1035. if protoimpl.UnsafeEnabled && x != nil {
  1036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1037. if ms.LoadMessageInfo() == nil {
  1038. ms.StoreMessageInfo(mi)
  1039. }
  1040. return ms
  1041. }
  1042. return mi.MessageOf(x)
  1043. }
  1044. // Deprecated: Use TestAllExtensions.ProtoReflect.Type instead.
  1045. func (*TestAllExtensions) Descriptor() ([]byte, []int) {
  1046. return file_test_test_proto_rawDescGZIP(), []int{4}
  1047. }
  1048. var extRange_TestAllExtensions = []protoiface.ExtensionRangeV1{
  1049. {Start: 1, End: 536870911},
  1050. }
  1051. // Deprecated: Use TestAllExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1052. func (*TestAllExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1053. return extRange_TestAllExtensions
  1054. }
  1055. type OptionalGroupExtension struct {
  1056. state protoimpl.MessageState
  1057. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1058. sizeCache protoimpl.SizeCache
  1059. unknownFields protoimpl.UnknownFields
  1060. }
  1061. func (x *OptionalGroupExtension) Reset() {
  1062. *x = OptionalGroupExtension{}
  1063. }
  1064. func (x *OptionalGroupExtension) String() string {
  1065. return protoimpl.X.MessageStringOf(x)
  1066. }
  1067. func (*OptionalGroupExtension) ProtoMessage() {}
  1068. func (x *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
  1069. mi := &file_test_test_proto_msgTypes[5]
  1070. if protoimpl.UnsafeEnabled && x != nil {
  1071. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1072. if ms.LoadMessageInfo() == nil {
  1073. ms.StoreMessageInfo(mi)
  1074. }
  1075. return ms
  1076. }
  1077. return mi.MessageOf(x)
  1078. }
  1079. // Deprecated: Use OptionalGroupExtension.ProtoReflect.Type instead.
  1080. func (*OptionalGroupExtension) Descriptor() ([]byte, []int) {
  1081. return file_test_test_proto_rawDescGZIP(), []int{5}
  1082. }
  1083. func (x *OptionalGroupExtension) GetA() int32 {
  1084. if x != nil && x.A != nil {
  1085. return *x.A
  1086. }
  1087. return 0
  1088. }
  1089. type RepeatedGroupExtension struct {
  1090. state protoimpl.MessageState
  1091. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1092. sizeCache protoimpl.SizeCache
  1093. unknownFields protoimpl.UnknownFields
  1094. }
  1095. func (x *RepeatedGroupExtension) Reset() {
  1096. *x = RepeatedGroupExtension{}
  1097. }
  1098. func (x *RepeatedGroupExtension) String() string {
  1099. return protoimpl.X.MessageStringOf(x)
  1100. }
  1101. func (*RepeatedGroupExtension) ProtoMessage() {}
  1102. func (x *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
  1103. mi := &file_test_test_proto_msgTypes[6]
  1104. if protoimpl.UnsafeEnabled && x != nil {
  1105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1106. if ms.LoadMessageInfo() == nil {
  1107. ms.StoreMessageInfo(mi)
  1108. }
  1109. return ms
  1110. }
  1111. return mi.MessageOf(x)
  1112. }
  1113. // Deprecated: Use RepeatedGroupExtension.ProtoReflect.Type instead.
  1114. func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) {
  1115. return file_test_test_proto_rawDescGZIP(), []int{6}
  1116. }
  1117. func (x *RepeatedGroupExtension) GetA() int32 {
  1118. if x != nil && x.A != nil {
  1119. return *x.A
  1120. }
  1121. return 0
  1122. }
  1123. type TestNestedExtension struct {
  1124. state protoimpl.MessageState
  1125. sizeCache protoimpl.SizeCache
  1126. unknownFields protoimpl.UnknownFields
  1127. }
  1128. func (x *TestNestedExtension) Reset() {
  1129. *x = TestNestedExtension{}
  1130. }
  1131. func (x *TestNestedExtension) String() string {
  1132. return protoimpl.X.MessageStringOf(x)
  1133. }
  1134. func (*TestNestedExtension) ProtoMessage() {}
  1135. func (x *TestNestedExtension) ProtoReflect() protoreflect.Message {
  1136. mi := &file_test_test_proto_msgTypes[7]
  1137. if protoimpl.UnsafeEnabled && x != nil {
  1138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1139. if ms.LoadMessageInfo() == nil {
  1140. ms.StoreMessageInfo(mi)
  1141. }
  1142. return ms
  1143. }
  1144. return mi.MessageOf(x)
  1145. }
  1146. // Deprecated: Use TestNestedExtension.ProtoReflect.Type instead.
  1147. func (*TestNestedExtension) Descriptor() ([]byte, []int) {
  1148. return file_test_test_proto_rawDescGZIP(), []int{7}
  1149. }
  1150. type TestRequired struct {
  1151. state protoimpl.MessageState
  1152. RequiredField *int32 `protobuf:"varint,1,req,name=required_field,json=requiredField" json:"required_field,omitempty"`
  1153. sizeCache protoimpl.SizeCache
  1154. unknownFields protoimpl.UnknownFields
  1155. }
  1156. func (x *TestRequired) Reset() {
  1157. *x = TestRequired{}
  1158. }
  1159. func (x *TestRequired) String() string {
  1160. return protoimpl.X.MessageStringOf(x)
  1161. }
  1162. func (*TestRequired) ProtoMessage() {}
  1163. func (x *TestRequired) ProtoReflect() protoreflect.Message {
  1164. mi := &file_test_test_proto_msgTypes[8]
  1165. if protoimpl.UnsafeEnabled && x != nil {
  1166. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1167. if ms.LoadMessageInfo() == nil {
  1168. ms.StoreMessageInfo(mi)
  1169. }
  1170. return ms
  1171. }
  1172. return mi.MessageOf(x)
  1173. }
  1174. // Deprecated: Use TestRequired.ProtoReflect.Type instead.
  1175. func (*TestRequired) Descriptor() ([]byte, []int) {
  1176. return file_test_test_proto_rawDescGZIP(), []int{8}
  1177. }
  1178. func (x *TestRequired) GetRequiredField() int32 {
  1179. if x != nil && x.RequiredField != nil {
  1180. return *x.RequiredField
  1181. }
  1182. return 0
  1183. }
  1184. type TestRequiredForeign struct {
  1185. state protoimpl.MessageState
  1186. OptionalMessage *TestRequired `protobuf:"bytes,1,opt,name=optional_message,json=optionalMessage" json:"optional_message,omitempty"`
  1187. RepeatedMessage []*TestRequired `protobuf:"bytes,2,rep,name=repeated_message,json=repeatedMessage" json:"repeated_message,omitempty"`
  1188. MapMessage map[int32]*TestRequired `protobuf:"bytes,3,rep,name=map_message,json=mapMessage" json:"map_message,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1189. // Types that are valid to be assigned to OneofField:
  1190. // *TestRequiredForeign_OneofMessage
  1191. OneofField isTestRequiredForeign_OneofField `protobuf_oneof:"oneof_field"`
  1192. sizeCache protoimpl.SizeCache
  1193. unknownFields protoimpl.UnknownFields
  1194. }
  1195. func (x *TestRequiredForeign) Reset() {
  1196. *x = TestRequiredForeign{}
  1197. }
  1198. func (x *TestRequiredForeign) String() string {
  1199. return protoimpl.X.MessageStringOf(x)
  1200. }
  1201. func (*TestRequiredForeign) ProtoMessage() {}
  1202. func (x *TestRequiredForeign) ProtoReflect() protoreflect.Message {
  1203. mi := &file_test_test_proto_msgTypes[9]
  1204. if protoimpl.UnsafeEnabled && x != nil {
  1205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1206. if ms.LoadMessageInfo() == nil {
  1207. ms.StoreMessageInfo(mi)
  1208. }
  1209. return ms
  1210. }
  1211. return mi.MessageOf(x)
  1212. }
  1213. // Deprecated: Use TestRequiredForeign.ProtoReflect.Type instead.
  1214. func (*TestRequiredForeign) Descriptor() ([]byte, []int) {
  1215. return file_test_test_proto_rawDescGZIP(), []int{9}
  1216. }
  1217. func (x *TestRequiredForeign) GetOptionalMessage() *TestRequired {
  1218. if x != nil {
  1219. return x.OptionalMessage
  1220. }
  1221. return nil
  1222. }
  1223. func (x *TestRequiredForeign) GetRepeatedMessage() []*TestRequired {
  1224. if x != nil {
  1225. return x.RepeatedMessage
  1226. }
  1227. return nil
  1228. }
  1229. func (x *TestRequiredForeign) GetMapMessage() map[int32]*TestRequired {
  1230. if x != nil {
  1231. return x.MapMessage
  1232. }
  1233. return nil
  1234. }
  1235. func (m *TestRequiredForeign) GetOneofField() isTestRequiredForeign_OneofField {
  1236. if m != nil {
  1237. return m.OneofField
  1238. }
  1239. return nil
  1240. }
  1241. func (x *TestRequiredForeign) GetOneofMessage() *TestRequired {
  1242. if x, ok := x.GetOneofField().(*TestRequiredForeign_OneofMessage); ok {
  1243. return x.OneofMessage
  1244. }
  1245. return nil
  1246. }
  1247. type isTestRequiredForeign_OneofField interface {
  1248. isTestRequiredForeign_OneofField()
  1249. }
  1250. type TestRequiredForeign_OneofMessage struct {
  1251. OneofMessage *TestRequired `protobuf:"bytes,4,opt,name=oneof_message,json=oneofMessage,oneof"`
  1252. }
  1253. func (*TestRequiredForeign_OneofMessage) isTestRequiredForeign_OneofField() {}
  1254. type TestRequiredGroupFields struct {
  1255. state protoimpl.MessageState
  1256. Optionalgroup *TestRequiredGroupFields_OptionalGroup `protobuf:"group,1,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  1257. Repeatedgroup []*TestRequiredGroupFields_RepeatedGroup `protobuf:"group,3,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  1258. sizeCache protoimpl.SizeCache
  1259. unknownFields protoimpl.UnknownFields
  1260. }
  1261. func (x *TestRequiredGroupFields) Reset() {
  1262. *x = TestRequiredGroupFields{}
  1263. }
  1264. func (x *TestRequiredGroupFields) String() string {
  1265. return protoimpl.X.MessageStringOf(x)
  1266. }
  1267. func (*TestRequiredGroupFields) ProtoMessage() {}
  1268. func (x *TestRequiredGroupFields) ProtoReflect() protoreflect.Message {
  1269. mi := &file_test_test_proto_msgTypes[10]
  1270. if protoimpl.UnsafeEnabled && x != nil {
  1271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1272. if ms.LoadMessageInfo() == nil {
  1273. ms.StoreMessageInfo(mi)
  1274. }
  1275. return ms
  1276. }
  1277. return mi.MessageOf(x)
  1278. }
  1279. // Deprecated: Use TestRequiredGroupFields.ProtoReflect.Type instead.
  1280. func (*TestRequiredGroupFields) Descriptor() ([]byte, []int) {
  1281. return file_test_test_proto_rawDescGZIP(), []int{10}
  1282. }
  1283. func (x *TestRequiredGroupFields) GetOptionalgroup() *TestRequiredGroupFields_OptionalGroup {
  1284. if x != nil {
  1285. return x.Optionalgroup
  1286. }
  1287. return nil
  1288. }
  1289. func (x *TestRequiredGroupFields) GetRepeatedgroup() []*TestRequiredGroupFields_RepeatedGroup {
  1290. if x != nil {
  1291. return x.Repeatedgroup
  1292. }
  1293. return nil
  1294. }
  1295. type TestWeak struct {
  1296. state protoimpl.MessageState
  1297. XXX_weak_WeakMessage1 struct{} `protobuf:"bytes,1,opt,name=weak_message1,json=weakMessage1,weak=goproto.proto.test.weak.WeakImportMessage1" json:"weak_message1,omitempty"`
  1298. XXX_weak_WeakMessage2 struct{} `protobuf:"bytes,2,opt,name=weak_message2,json=weakMessage2,weak=goproto.proto.test.weak.WeakImportMessage2" json:"weak_message2,omitempty"`
  1299. sizeCache protoimpl.SizeCache
  1300. XXX_weak protoimpl.WeakFields `json:"-"`
  1301. unknownFields protoimpl.UnknownFields
  1302. }
  1303. func (x *TestWeak) Reset() {
  1304. *x = TestWeak{}
  1305. }
  1306. func (x *TestWeak) String() string {
  1307. return protoimpl.X.MessageStringOf(x)
  1308. }
  1309. func (*TestWeak) ProtoMessage() {}
  1310. func (x *TestWeak) ProtoReflect() protoreflect.Message {
  1311. mi := &file_test_test_proto_msgTypes[11]
  1312. if protoimpl.UnsafeEnabled && x != nil {
  1313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1314. if ms.LoadMessageInfo() == nil {
  1315. ms.StoreMessageInfo(mi)
  1316. }
  1317. return ms
  1318. }
  1319. return mi.MessageOf(x)
  1320. }
  1321. // Deprecated: Use TestWeak.ProtoReflect.Type instead.
  1322. func (*TestWeak) Descriptor() ([]byte, []int) {
  1323. return file_test_test_proto_rawDescGZIP(), []int{11}
  1324. }
  1325. func (x *TestWeak) GetWeakMessage1() protoiface.MessageV1 {
  1326. if x != nil {
  1327. v := x.XXX_weak[1]
  1328. _ = x.XXX_weak_WeakMessage1
  1329. if v != nil {
  1330. return v
  1331. }
  1332. }
  1333. return protoimpl.X.WeakNil("goproto.proto.test.weak.WeakImportMessage1")
  1334. }
  1335. func (x *TestWeak) GetWeakMessage2() protoiface.MessageV1 {
  1336. if x != nil {
  1337. v := x.XXX_weak[2]
  1338. _ = x.XXX_weak_WeakMessage2
  1339. if v != nil {
  1340. return v
  1341. }
  1342. }
  1343. return protoimpl.X.WeakNil("goproto.proto.test.weak.WeakImportMessage2")
  1344. }
  1345. func (x *TestWeak) SetWeakMessage1(v protoiface.MessageV1) {
  1346. if x.XXX_weak == nil {
  1347. x.XXX_weak = make(protoimpl.WeakFields)
  1348. }
  1349. if v == nil {
  1350. delete(x.XXX_weak, 1)
  1351. } else {
  1352. x.XXX_weak[1] = v
  1353. x.XXX_weak_WeakMessage1 = struct{}{}
  1354. }
  1355. }
  1356. func (x *TestWeak) SetWeakMessage2(v protoiface.MessageV1) {
  1357. if x.XXX_weak == nil {
  1358. x.XXX_weak = make(protoimpl.WeakFields)
  1359. }
  1360. if v == nil {
  1361. delete(x.XXX_weak, 2)
  1362. } else {
  1363. x.XXX_weak[2] = v
  1364. x.XXX_weak_WeakMessage2 = struct{}{}
  1365. }
  1366. }
  1367. type TestPackedTypes struct {
  1368. state protoimpl.MessageState
  1369. PackedInt32 []int32 `protobuf:"varint,90,rep,packed,name=packed_int32,json=packedInt32" json:"packed_int32,omitempty"`
  1370. PackedInt64 []int64 `protobuf:"varint,91,rep,packed,name=packed_int64,json=packedInt64" json:"packed_int64,omitempty"`
  1371. PackedUint32 []uint32 `protobuf:"varint,92,rep,packed,name=packed_uint32,json=packedUint32" json:"packed_uint32,omitempty"`
  1372. PackedUint64 []uint64 `protobuf:"varint,93,rep,packed,name=packed_uint64,json=packedUint64" json:"packed_uint64,omitempty"`
  1373. PackedSint32 []int32 `protobuf:"zigzag32,94,rep,packed,name=packed_sint32,json=packedSint32" json:"packed_sint32,omitempty"`
  1374. PackedSint64 []int64 `protobuf:"zigzag64,95,rep,packed,name=packed_sint64,json=packedSint64" json:"packed_sint64,omitempty"`
  1375. PackedFixed32 []uint32 `protobuf:"fixed32,96,rep,packed,name=packed_fixed32,json=packedFixed32" json:"packed_fixed32,omitempty"`
  1376. PackedFixed64 []uint64 `protobuf:"fixed64,97,rep,packed,name=packed_fixed64,json=packedFixed64" json:"packed_fixed64,omitempty"`
  1377. PackedSfixed32 []int32 `protobuf:"fixed32,98,rep,packed,name=packed_sfixed32,json=packedSfixed32" json:"packed_sfixed32,omitempty"`
  1378. PackedSfixed64 []int64 `protobuf:"fixed64,99,rep,packed,name=packed_sfixed64,json=packedSfixed64" json:"packed_sfixed64,omitempty"`
  1379. PackedFloat []float32 `protobuf:"fixed32,100,rep,packed,name=packed_float,json=packedFloat" json:"packed_float,omitempty"`
  1380. PackedDouble []float64 `protobuf:"fixed64,101,rep,packed,name=packed_double,json=packedDouble" json:"packed_double,omitempty"`
  1381. PackedBool []bool `protobuf:"varint,102,rep,packed,name=packed_bool,json=packedBool" json:"packed_bool,omitempty"`
  1382. PackedEnum []ForeignEnum `protobuf:"varint,103,rep,packed,name=packed_enum,json=packedEnum,enum=goproto.proto.test.ForeignEnum" json:"packed_enum,omitempty"`
  1383. sizeCache protoimpl.SizeCache
  1384. unknownFields protoimpl.UnknownFields
  1385. }
  1386. func (x *TestPackedTypes) Reset() {
  1387. *x = TestPackedTypes{}
  1388. }
  1389. func (x *TestPackedTypes) String() string {
  1390. return protoimpl.X.MessageStringOf(x)
  1391. }
  1392. func (*TestPackedTypes) ProtoMessage() {}
  1393. func (x *TestPackedTypes) ProtoReflect() protoreflect.Message {
  1394. mi := &file_test_test_proto_msgTypes[12]
  1395. if protoimpl.UnsafeEnabled && x != nil {
  1396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1397. if ms.LoadMessageInfo() == nil {
  1398. ms.StoreMessageInfo(mi)
  1399. }
  1400. return ms
  1401. }
  1402. return mi.MessageOf(x)
  1403. }
  1404. // Deprecated: Use TestPackedTypes.ProtoReflect.Type instead.
  1405. func (*TestPackedTypes) Descriptor() ([]byte, []int) {
  1406. return file_test_test_proto_rawDescGZIP(), []int{12}
  1407. }
  1408. func (x *TestPackedTypes) GetPackedInt32() []int32 {
  1409. if x != nil {
  1410. return x.PackedInt32
  1411. }
  1412. return nil
  1413. }
  1414. func (x *TestPackedTypes) GetPackedInt64() []int64 {
  1415. if x != nil {
  1416. return x.PackedInt64
  1417. }
  1418. return nil
  1419. }
  1420. func (x *TestPackedTypes) GetPackedUint32() []uint32 {
  1421. if x != nil {
  1422. return x.PackedUint32
  1423. }
  1424. return nil
  1425. }
  1426. func (x *TestPackedTypes) GetPackedUint64() []uint64 {
  1427. if x != nil {
  1428. return x.PackedUint64
  1429. }
  1430. return nil
  1431. }
  1432. func (x *TestPackedTypes) GetPackedSint32() []int32 {
  1433. if x != nil {
  1434. return x.PackedSint32
  1435. }
  1436. return nil
  1437. }
  1438. func (x *TestPackedTypes) GetPackedSint64() []int64 {
  1439. if x != nil {
  1440. return x.PackedSint64
  1441. }
  1442. return nil
  1443. }
  1444. func (x *TestPackedTypes) GetPackedFixed32() []uint32 {
  1445. if x != nil {
  1446. return x.PackedFixed32
  1447. }
  1448. return nil
  1449. }
  1450. func (x *TestPackedTypes) GetPackedFixed64() []uint64 {
  1451. if x != nil {
  1452. return x.PackedFixed64
  1453. }
  1454. return nil
  1455. }
  1456. func (x *TestPackedTypes) GetPackedSfixed32() []int32 {
  1457. if x != nil {
  1458. return x.PackedSfixed32
  1459. }
  1460. return nil
  1461. }
  1462. func (x *TestPackedTypes) GetPackedSfixed64() []int64 {
  1463. if x != nil {
  1464. return x.PackedSfixed64
  1465. }
  1466. return nil
  1467. }
  1468. func (x *TestPackedTypes) GetPackedFloat() []float32 {
  1469. if x != nil {
  1470. return x.PackedFloat
  1471. }
  1472. return nil
  1473. }
  1474. func (x *TestPackedTypes) GetPackedDouble() []float64 {
  1475. if x != nil {
  1476. return x.PackedDouble
  1477. }
  1478. return nil
  1479. }
  1480. func (x *TestPackedTypes) GetPackedBool() []bool {
  1481. if x != nil {
  1482. return x.PackedBool
  1483. }
  1484. return nil
  1485. }
  1486. func (x *TestPackedTypes) GetPackedEnum() []ForeignEnum {
  1487. if x != nil {
  1488. return x.PackedEnum
  1489. }
  1490. return nil
  1491. }
  1492. type TestUnpackedTypes struct {
  1493. state protoimpl.MessageState
  1494. UnpackedInt32 []int32 `protobuf:"varint,90,rep,name=unpacked_int32,json=unpackedInt32" json:"unpacked_int32,omitempty"`
  1495. UnpackedInt64 []int64 `protobuf:"varint,91,rep,name=unpacked_int64,json=unpackedInt64" json:"unpacked_int64,omitempty"`
  1496. UnpackedUint32 []uint32 `protobuf:"varint,92,rep,name=unpacked_uint32,json=unpackedUint32" json:"unpacked_uint32,omitempty"`
  1497. UnpackedUint64 []uint64 `protobuf:"varint,93,rep,name=unpacked_uint64,json=unpackedUint64" json:"unpacked_uint64,omitempty"`
  1498. UnpackedSint32 []int32 `protobuf:"zigzag32,94,rep,name=unpacked_sint32,json=unpackedSint32" json:"unpacked_sint32,omitempty"`
  1499. UnpackedSint64 []int64 `protobuf:"zigzag64,95,rep,name=unpacked_sint64,json=unpackedSint64" json:"unpacked_sint64,omitempty"`
  1500. UnpackedFixed32 []uint32 `protobuf:"fixed32,96,rep,name=unpacked_fixed32,json=unpackedFixed32" json:"unpacked_fixed32,omitempty"`
  1501. UnpackedFixed64 []uint64 `protobuf:"fixed64,97,rep,name=unpacked_fixed64,json=unpackedFixed64" json:"unpacked_fixed64,omitempty"`
  1502. UnpackedSfixed32 []int32 `protobuf:"fixed32,98,rep,name=unpacked_sfixed32,json=unpackedSfixed32" json:"unpacked_sfixed32,omitempty"`
  1503. UnpackedSfixed64 []int64 `protobuf:"fixed64,99,rep,name=unpacked_sfixed64,json=unpackedSfixed64" json:"unpacked_sfixed64,omitempty"`
  1504. UnpackedFloat []float32 `protobuf:"fixed32,100,rep,name=unpacked_float,json=unpackedFloat" json:"unpacked_float,omitempty"`
  1505. UnpackedDouble []float64 `protobuf:"fixed64,101,rep,name=unpacked_double,json=unpackedDouble" json:"unpacked_double,omitempty"`
  1506. UnpackedBool []bool `protobuf:"varint,102,rep,name=unpacked_bool,json=unpackedBool" json:"unpacked_bool,omitempty"`
  1507. UnpackedEnum []ForeignEnum `protobuf:"varint,103,rep,name=unpacked_enum,json=unpackedEnum,enum=goproto.proto.test.ForeignEnum" json:"unpacked_enum,omitempty"`
  1508. sizeCache protoimpl.SizeCache
  1509. unknownFields protoimpl.UnknownFields
  1510. }
  1511. func (x *TestUnpackedTypes) Reset() {
  1512. *x = TestUnpackedTypes{}
  1513. }
  1514. func (x *TestUnpackedTypes) String() string {
  1515. return protoimpl.X.MessageStringOf(x)
  1516. }
  1517. func (*TestUnpackedTypes) ProtoMessage() {}
  1518. func (x *TestUnpackedTypes) ProtoReflect() protoreflect.Message {
  1519. mi := &file_test_test_proto_msgTypes[13]
  1520. if protoimpl.UnsafeEnabled && x != nil {
  1521. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1522. if ms.LoadMessageInfo() == nil {
  1523. ms.StoreMessageInfo(mi)
  1524. }
  1525. return ms
  1526. }
  1527. return mi.MessageOf(x)
  1528. }
  1529. // Deprecated: Use TestUnpackedTypes.ProtoReflect.Type instead.
  1530. func (*TestUnpackedTypes) Descriptor() ([]byte, []int) {
  1531. return file_test_test_proto_rawDescGZIP(), []int{13}
  1532. }
  1533. func (x *TestUnpackedTypes) GetUnpackedInt32() []int32 {
  1534. if x != nil {
  1535. return x.UnpackedInt32
  1536. }
  1537. return nil
  1538. }
  1539. func (x *TestUnpackedTypes) GetUnpackedInt64() []int64 {
  1540. if x != nil {
  1541. return x.UnpackedInt64
  1542. }
  1543. return nil
  1544. }
  1545. func (x *TestUnpackedTypes) GetUnpackedUint32() []uint32 {
  1546. if x != nil {
  1547. return x.UnpackedUint32
  1548. }
  1549. return nil
  1550. }
  1551. func (x *TestUnpackedTypes) GetUnpackedUint64() []uint64 {
  1552. if x != nil {
  1553. return x.UnpackedUint64
  1554. }
  1555. return nil
  1556. }
  1557. func (x *TestUnpackedTypes) GetUnpackedSint32() []int32 {
  1558. if x != nil {
  1559. return x.UnpackedSint32
  1560. }
  1561. return nil
  1562. }
  1563. func (x *TestUnpackedTypes) GetUnpackedSint64() []int64 {
  1564. if x != nil {
  1565. return x.UnpackedSint64
  1566. }
  1567. return nil
  1568. }
  1569. func (x *TestUnpackedTypes) GetUnpackedFixed32() []uint32 {
  1570. if x != nil {
  1571. return x.UnpackedFixed32
  1572. }
  1573. return nil
  1574. }
  1575. func (x *TestUnpackedTypes) GetUnpackedFixed64() []uint64 {
  1576. if x != nil {
  1577. return x.UnpackedFixed64
  1578. }
  1579. return nil
  1580. }
  1581. func (x *TestUnpackedTypes) GetUnpackedSfixed32() []int32 {
  1582. if x != nil {
  1583. return x.UnpackedSfixed32
  1584. }
  1585. return nil
  1586. }
  1587. func (x *TestUnpackedTypes) GetUnpackedSfixed64() []int64 {
  1588. if x != nil {
  1589. return x.UnpackedSfixed64
  1590. }
  1591. return nil
  1592. }
  1593. func (x *TestUnpackedTypes) GetUnpackedFloat() []float32 {
  1594. if x != nil {
  1595. return x.UnpackedFloat
  1596. }
  1597. return nil
  1598. }
  1599. func (x *TestUnpackedTypes) GetUnpackedDouble() []float64 {
  1600. if x != nil {
  1601. return x.UnpackedDouble
  1602. }
  1603. return nil
  1604. }
  1605. func (x *TestUnpackedTypes) GetUnpackedBool() []bool {
  1606. if x != nil {
  1607. return x.UnpackedBool
  1608. }
  1609. return nil
  1610. }
  1611. func (x *TestUnpackedTypes) GetUnpackedEnum() []ForeignEnum {
  1612. if x != nil {
  1613. return x.UnpackedEnum
  1614. }
  1615. return nil
  1616. }
  1617. type TestPackedExtensions struct {
  1618. state protoimpl.MessageState
  1619. sizeCache protoimpl.SizeCache
  1620. unknownFields protoimpl.UnknownFields
  1621. extensionFields protoimpl.ExtensionFields
  1622. }
  1623. func (x *TestPackedExtensions) Reset() {
  1624. *x = TestPackedExtensions{}
  1625. }
  1626. func (x *TestPackedExtensions) String() string {
  1627. return protoimpl.X.MessageStringOf(x)
  1628. }
  1629. func (*TestPackedExtensions) ProtoMessage() {}
  1630. func (x *TestPackedExtensions) ProtoReflect() protoreflect.Message {
  1631. mi := &file_test_test_proto_msgTypes[14]
  1632. if protoimpl.UnsafeEnabled && x != nil {
  1633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1634. if ms.LoadMessageInfo() == nil {
  1635. ms.StoreMessageInfo(mi)
  1636. }
  1637. return ms
  1638. }
  1639. return mi.MessageOf(x)
  1640. }
  1641. // Deprecated: Use TestPackedExtensions.ProtoReflect.Type instead.
  1642. func (*TestPackedExtensions) Descriptor() ([]byte, []int) {
  1643. return file_test_test_proto_rawDescGZIP(), []int{14}
  1644. }
  1645. var extRange_TestPackedExtensions = []protoiface.ExtensionRangeV1{
  1646. {Start: 1, End: 536870911},
  1647. }
  1648. // Deprecated: Use TestPackedExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1649. func (*TestPackedExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1650. return extRange_TestPackedExtensions
  1651. }
  1652. type TestUnpackedExtensions struct {
  1653. state protoimpl.MessageState
  1654. sizeCache protoimpl.SizeCache
  1655. unknownFields protoimpl.UnknownFields
  1656. extensionFields protoimpl.ExtensionFields
  1657. }
  1658. func (x *TestUnpackedExtensions) Reset() {
  1659. *x = TestUnpackedExtensions{}
  1660. }
  1661. func (x *TestUnpackedExtensions) String() string {
  1662. return protoimpl.X.MessageStringOf(x)
  1663. }
  1664. func (*TestUnpackedExtensions) ProtoMessage() {}
  1665. func (x *TestUnpackedExtensions) ProtoReflect() protoreflect.Message {
  1666. mi := &file_test_test_proto_msgTypes[15]
  1667. if protoimpl.UnsafeEnabled && x != nil {
  1668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1669. if ms.LoadMessageInfo() == nil {
  1670. ms.StoreMessageInfo(mi)
  1671. }
  1672. return ms
  1673. }
  1674. return mi.MessageOf(x)
  1675. }
  1676. // Deprecated: Use TestUnpackedExtensions.ProtoReflect.Type instead.
  1677. func (*TestUnpackedExtensions) Descriptor() ([]byte, []int) {
  1678. return file_test_test_proto_rawDescGZIP(), []int{15}
  1679. }
  1680. var extRange_TestUnpackedExtensions = []protoiface.ExtensionRangeV1{
  1681. {Start: 1, End: 536870911},
  1682. }
  1683. // Deprecated: Use TestUnpackedExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1684. func (*TestUnpackedExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1685. return extRange_TestUnpackedExtensions
  1686. }
  1687. // Test that RPC services work.
  1688. type FooRequest struct {
  1689. state protoimpl.MessageState
  1690. sizeCache protoimpl.SizeCache
  1691. unknownFields protoimpl.UnknownFields
  1692. }
  1693. func (x *FooRequest) Reset() {
  1694. *x = FooRequest{}
  1695. }
  1696. func (x *FooRequest) String() string {
  1697. return protoimpl.X.MessageStringOf(x)
  1698. }
  1699. func (*FooRequest) ProtoMessage() {}
  1700. func (x *FooRequest) ProtoReflect() protoreflect.Message {
  1701. mi := &file_test_test_proto_msgTypes[16]
  1702. if protoimpl.UnsafeEnabled && x != nil {
  1703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1704. if ms.LoadMessageInfo() == nil {
  1705. ms.StoreMessageInfo(mi)
  1706. }
  1707. return ms
  1708. }
  1709. return mi.MessageOf(x)
  1710. }
  1711. // Deprecated: Use FooRequest.ProtoReflect.Type instead.
  1712. func (*FooRequest) Descriptor() ([]byte, []int) {
  1713. return file_test_test_proto_rawDescGZIP(), []int{16}
  1714. }
  1715. type FooResponse struct {
  1716. state protoimpl.MessageState
  1717. sizeCache protoimpl.SizeCache
  1718. unknownFields protoimpl.UnknownFields
  1719. }
  1720. func (x *FooResponse) Reset() {
  1721. *x = FooResponse{}
  1722. }
  1723. func (x *FooResponse) String() string {
  1724. return protoimpl.X.MessageStringOf(x)
  1725. }
  1726. func (*FooResponse) ProtoMessage() {}
  1727. func (x *FooResponse) ProtoReflect() protoreflect.Message {
  1728. mi := &file_test_test_proto_msgTypes[17]
  1729. if protoimpl.UnsafeEnabled && x != nil {
  1730. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1731. if ms.LoadMessageInfo() == nil {
  1732. ms.StoreMessageInfo(mi)
  1733. }
  1734. return ms
  1735. }
  1736. return mi.MessageOf(x)
  1737. }
  1738. // Deprecated: Use FooResponse.ProtoReflect.Type instead.
  1739. func (*FooResponse) Descriptor() ([]byte, []int) {
  1740. return file_test_test_proto_rawDescGZIP(), []int{17}
  1741. }
  1742. type TestAllTypes_NestedMessage struct {
  1743. state protoimpl.MessageState
  1744. A *int32 `protobuf:"varint,1,opt,name=a" json:"a,omitempty"`
  1745. Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"`
  1746. sizeCache protoimpl.SizeCache
  1747. unknownFields protoimpl.UnknownFields
  1748. }
  1749. func (x *TestAllTypes_NestedMessage) Reset() {
  1750. *x = TestAllTypes_NestedMessage{}
  1751. }
  1752. func (x *TestAllTypes_NestedMessage) String() string {
  1753. return protoimpl.X.MessageStringOf(x)
  1754. }
  1755. func (*TestAllTypes_NestedMessage) ProtoMessage() {}
  1756. func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
  1757. mi := &file_test_test_proto_msgTypes[18]
  1758. if protoimpl.UnsafeEnabled && x != nil {
  1759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1760. if ms.LoadMessageInfo() == nil {
  1761. ms.StoreMessageInfo(mi)
  1762. }
  1763. return ms
  1764. }
  1765. return mi.MessageOf(x)
  1766. }
  1767. // Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Type instead.
  1768. func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
  1769. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  1770. }
  1771. func (x *TestAllTypes_NestedMessage) GetA() int32 {
  1772. if x != nil && x.A != nil {
  1773. return *x.A
  1774. }
  1775. return 0
  1776. }
  1777. func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
  1778. if x != nil {
  1779. return x.Corecursive
  1780. }
  1781. return nil
  1782. }
  1783. type TestAllTypes_OptionalGroup struct {
  1784. state protoimpl.MessageState
  1785. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1786. sizeCache protoimpl.SizeCache
  1787. unknownFields protoimpl.UnknownFields
  1788. }
  1789. func (x *TestAllTypes_OptionalGroup) Reset() {
  1790. *x = TestAllTypes_OptionalGroup{}
  1791. }
  1792. func (x *TestAllTypes_OptionalGroup) String() string {
  1793. return protoimpl.X.MessageStringOf(x)
  1794. }
  1795. func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
  1796. func (x *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
  1797. mi := &file_test_test_proto_msgTypes[19]
  1798. if protoimpl.UnsafeEnabled && x != nil {
  1799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1800. if ms.LoadMessageInfo() == nil {
  1801. ms.StoreMessageInfo(mi)
  1802. }
  1803. return ms
  1804. }
  1805. return mi.MessageOf(x)
  1806. }
  1807. // Deprecated: Use TestAllTypes_OptionalGroup.ProtoReflect.Type instead.
  1808. func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) {
  1809. return file_test_test_proto_rawDescGZIP(), []int{0, 1}
  1810. }
  1811. func (x *TestAllTypes_OptionalGroup) GetA() int32 {
  1812. if x != nil && x.A != nil {
  1813. return *x.A
  1814. }
  1815. return 0
  1816. }
  1817. type TestAllTypes_RepeatedGroup struct {
  1818. state protoimpl.MessageState
  1819. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1820. sizeCache protoimpl.SizeCache
  1821. unknownFields protoimpl.UnknownFields
  1822. }
  1823. func (x *TestAllTypes_RepeatedGroup) Reset() {
  1824. *x = TestAllTypes_RepeatedGroup{}
  1825. }
  1826. func (x *TestAllTypes_RepeatedGroup) String() string {
  1827. return protoimpl.X.MessageStringOf(x)
  1828. }
  1829. func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
  1830. func (x *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1831. mi := &file_test_test_proto_msgTypes[20]
  1832. if protoimpl.UnsafeEnabled && x != nil {
  1833. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1834. if ms.LoadMessageInfo() == nil {
  1835. ms.StoreMessageInfo(mi)
  1836. }
  1837. return ms
  1838. }
  1839. return mi.MessageOf(x)
  1840. }
  1841. // Deprecated: Use TestAllTypes_RepeatedGroup.ProtoReflect.Type instead.
  1842. func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) {
  1843. return file_test_test_proto_rawDescGZIP(), []int{0, 2}
  1844. }
  1845. func (x *TestAllTypes_RepeatedGroup) GetA() int32 {
  1846. if x != nil && x.A != nil {
  1847. return *x.A
  1848. }
  1849. return 0
  1850. }
  1851. type TestRequiredGroupFields_OptionalGroup struct {
  1852. state protoimpl.MessageState
  1853. A *int32 `protobuf:"varint,2,req,name=a" json:"a,omitempty"`
  1854. sizeCache protoimpl.SizeCache
  1855. unknownFields protoimpl.UnknownFields
  1856. }
  1857. func (x *TestRequiredGroupFields_OptionalGroup) Reset() {
  1858. *x = TestRequiredGroupFields_OptionalGroup{}
  1859. }
  1860. func (x *TestRequiredGroupFields_OptionalGroup) String() string {
  1861. return protoimpl.X.MessageStringOf(x)
  1862. }
  1863. func (*TestRequiredGroupFields_OptionalGroup) ProtoMessage() {}
  1864. func (x *TestRequiredGroupFields_OptionalGroup) ProtoReflect() protoreflect.Message {
  1865. mi := &file_test_test_proto_msgTypes[39]
  1866. if protoimpl.UnsafeEnabled && x != nil {
  1867. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1868. if ms.LoadMessageInfo() == nil {
  1869. ms.StoreMessageInfo(mi)
  1870. }
  1871. return ms
  1872. }
  1873. return mi.MessageOf(x)
  1874. }
  1875. // Deprecated: Use TestRequiredGroupFields_OptionalGroup.ProtoReflect.Type instead.
  1876. func (*TestRequiredGroupFields_OptionalGroup) Descriptor() ([]byte, []int) {
  1877. return file_test_test_proto_rawDescGZIP(), []int{10, 0}
  1878. }
  1879. func (x *TestRequiredGroupFields_OptionalGroup) GetA() int32 {
  1880. if x != nil && x.A != nil {
  1881. return *x.A
  1882. }
  1883. return 0
  1884. }
  1885. type TestRequiredGroupFields_RepeatedGroup struct {
  1886. state protoimpl.MessageState
  1887. A *int32 `protobuf:"varint,4,req,name=a" json:"a,omitempty"`
  1888. sizeCache protoimpl.SizeCache
  1889. unknownFields protoimpl.UnknownFields
  1890. }
  1891. func (x *TestRequiredGroupFields_RepeatedGroup) Reset() {
  1892. *x = TestRequiredGroupFields_RepeatedGroup{}
  1893. }
  1894. func (x *TestRequiredGroupFields_RepeatedGroup) String() string {
  1895. return protoimpl.X.MessageStringOf(x)
  1896. }
  1897. func (*TestRequiredGroupFields_RepeatedGroup) ProtoMessage() {}
  1898. func (x *TestRequiredGroupFields_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1899. mi := &file_test_test_proto_msgTypes[40]
  1900. if protoimpl.UnsafeEnabled && x != nil {
  1901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1902. if ms.LoadMessageInfo() == nil {
  1903. ms.StoreMessageInfo(mi)
  1904. }
  1905. return ms
  1906. }
  1907. return mi.MessageOf(x)
  1908. }
  1909. // Deprecated: Use TestRequiredGroupFields_RepeatedGroup.ProtoReflect.Type instead.
  1910. func (*TestRequiredGroupFields_RepeatedGroup) Descriptor() ([]byte, []int) {
  1911. return file_test_test_proto_rawDescGZIP(), []int{10, 1}
  1912. }
  1913. func (x *TestRequiredGroupFields_RepeatedGroup) GetA() int32 {
  1914. if x != nil && x.A != nil {
  1915. return *x.A
  1916. }
  1917. return 0
  1918. }
  1919. var file_test_test_proto_extDescs = []protoiface.ExtensionDescV1{
  1920. {
  1921. ExtendedType: (*TestAllExtensions)(nil),
  1922. ExtensionType: (*int32)(nil),
  1923. Field: 1,
  1924. Name: "goproto.proto.test.optional_int32_extension",
  1925. Tag: "varint,1,opt,name=optional_int32_extension",
  1926. Filename: "test/test.proto",
  1927. },
  1928. {
  1929. ExtendedType: (*TestAllExtensions)(nil),
  1930. ExtensionType: (*int64)(nil),
  1931. Field: 2,
  1932. Name: "goproto.proto.test.optional_int64_extension",
  1933. Tag: "varint,2,opt,name=optional_int64_extension",
  1934. Filename: "test/test.proto",
  1935. },
  1936. {
  1937. ExtendedType: (*TestAllExtensions)(nil),
  1938. ExtensionType: (*uint32)(nil),
  1939. Field: 3,
  1940. Name: "goproto.proto.test.optional_uint32_extension",
  1941. Tag: "varint,3,opt,name=optional_uint32_extension",
  1942. Filename: "test/test.proto",
  1943. },
  1944. {
  1945. ExtendedType: (*TestAllExtensions)(nil),
  1946. ExtensionType: (*uint64)(nil),
  1947. Field: 4,
  1948. Name: "goproto.proto.test.optional_uint64_extension",
  1949. Tag: "varint,4,opt,name=optional_uint64_extension",
  1950. Filename: "test/test.proto",
  1951. },
  1952. {
  1953. ExtendedType: (*TestAllExtensions)(nil),
  1954. ExtensionType: (*int32)(nil),
  1955. Field: 5,
  1956. Name: "goproto.proto.test.optional_sint32_extension",
  1957. Tag: "zigzag32,5,opt,name=optional_sint32_extension",
  1958. Filename: "test/test.proto",
  1959. },
  1960. {
  1961. ExtendedType: (*TestAllExtensions)(nil),
  1962. ExtensionType: (*int64)(nil),
  1963. Field: 6,
  1964. Name: "goproto.proto.test.optional_sint64_extension",
  1965. Tag: "zigzag64,6,opt,name=optional_sint64_extension",
  1966. Filename: "test/test.proto",
  1967. },
  1968. {
  1969. ExtendedType: (*TestAllExtensions)(nil),
  1970. ExtensionType: (*uint32)(nil),
  1971. Field: 7,
  1972. Name: "goproto.proto.test.optional_fixed32_extension",
  1973. Tag: "fixed32,7,opt,name=optional_fixed32_extension",
  1974. Filename: "test/test.proto",
  1975. },
  1976. {
  1977. ExtendedType: (*TestAllExtensions)(nil),
  1978. ExtensionType: (*uint64)(nil),
  1979. Field: 8,
  1980. Name: "goproto.proto.test.optional_fixed64_extension",
  1981. Tag: "fixed64,8,opt,name=optional_fixed64_extension",
  1982. Filename: "test/test.proto",
  1983. },
  1984. {
  1985. ExtendedType: (*TestAllExtensions)(nil),
  1986. ExtensionType: (*int32)(nil),
  1987. Field: 9,
  1988. Name: "goproto.proto.test.optional_sfixed32_extension",
  1989. Tag: "fixed32,9,opt,name=optional_sfixed32_extension",
  1990. Filename: "test/test.proto",
  1991. },
  1992. {
  1993. ExtendedType: (*TestAllExtensions)(nil),
  1994. ExtensionType: (*int64)(nil),
  1995. Field: 10,
  1996. Name: "goproto.proto.test.optional_sfixed64_extension",
  1997. Tag: "fixed64,10,opt,name=optional_sfixed64_extension",
  1998. Filename: "test/test.proto",
  1999. },
  2000. {
  2001. ExtendedType: (*TestAllExtensions)(nil),
  2002. ExtensionType: (*float32)(nil),
  2003. Field: 11,
  2004. Name: "goproto.proto.test.optional_float_extension",
  2005. Tag: "fixed32,11,opt,name=optional_float_extension",
  2006. Filename: "test/test.proto",
  2007. },
  2008. {
  2009. ExtendedType: (*TestAllExtensions)(nil),
  2010. ExtensionType: (*float64)(nil),
  2011. Field: 12,
  2012. Name: "goproto.proto.test.optional_double_extension",
  2013. Tag: "fixed64,12,opt,name=optional_double_extension",
  2014. Filename: "test/test.proto",
  2015. },
  2016. {
  2017. ExtendedType: (*TestAllExtensions)(nil),
  2018. ExtensionType: (*bool)(nil),
  2019. Field: 13,
  2020. Name: "goproto.proto.test.optional_bool_extension",
  2021. Tag: "varint,13,opt,name=optional_bool_extension",
  2022. Filename: "test/test.proto",
  2023. },
  2024. {
  2025. ExtendedType: (*TestAllExtensions)(nil),
  2026. ExtensionType: (*string)(nil),
  2027. Field: 14,
  2028. Name: "goproto.proto.test.optional_string_extension",
  2029. Tag: "bytes,14,opt,name=optional_string_extension",
  2030. Filename: "test/test.proto",
  2031. },
  2032. {
  2033. ExtendedType: (*TestAllExtensions)(nil),
  2034. ExtensionType: ([]byte)(nil),
  2035. Field: 15,
  2036. Name: "goproto.proto.test.optional_bytes_extension",
  2037. Tag: "bytes,15,opt,name=optional_bytes_extension",
  2038. Filename: "test/test.proto",
  2039. },
  2040. {
  2041. ExtendedType: (*TestAllExtensions)(nil),
  2042. ExtensionType: (*OptionalGroupExtension)(nil),
  2043. Field: 16,
  2044. Name: "goproto.proto.test.optionalgroup_extension",
  2045. Tag: "group,16,opt,name=OptionalGroup_extension",
  2046. Filename: "test/test.proto",
  2047. },
  2048. {
  2049. ExtendedType: (*TestAllExtensions)(nil),
  2050. ExtensionType: (*TestAllTypes_NestedMessage)(nil),
  2051. Field: 18,
  2052. Name: "goproto.proto.test.optional_nested_message_extension",
  2053. Tag: "bytes,18,opt,name=optional_nested_message_extension",
  2054. Filename: "test/test.proto",
  2055. },
  2056. {
  2057. ExtendedType: (*TestAllExtensions)(nil),
  2058. ExtensionType: (*TestAllTypes_NestedEnum)(nil),
  2059. Field: 21,
  2060. Name: "goproto.proto.test.optional_nested_enum_extension",
  2061. Tag: "varint,21,opt,name=optional_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  2062. Filename: "test/test.proto",
  2063. },
  2064. {
  2065. ExtendedType: (*TestAllExtensions)(nil),
  2066. ExtensionType: ([]int32)(nil),
  2067. Field: 31,
  2068. Name: "goproto.proto.test.repeated_int32_extension",
  2069. Tag: "varint,31,rep,name=repeated_int32_extension",
  2070. Filename: "test/test.proto",
  2071. },
  2072. {
  2073. ExtendedType: (*TestAllExtensions)(nil),
  2074. ExtensionType: ([]int64)(nil),
  2075. Field: 32,
  2076. Name: "goproto.proto.test.repeated_int64_extension",
  2077. Tag: "varint,32,rep,name=repeated_int64_extension",
  2078. Filename: "test/test.proto",
  2079. },
  2080. {
  2081. ExtendedType: (*TestAllExtensions)(nil),
  2082. ExtensionType: ([]uint32)(nil),
  2083. Field: 33,
  2084. Name: "goproto.proto.test.repeated_uint32_extension",
  2085. Tag: "varint,33,rep,name=repeated_uint32_extension",
  2086. Filename: "test/test.proto",
  2087. },
  2088. {
  2089. ExtendedType: (*TestAllExtensions)(nil),
  2090. ExtensionType: ([]uint64)(nil),
  2091. Field: 34,
  2092. Name: "goproto.proto.test.repeated_uint64_extension",
  2093. Tag: "varint,34,rep,name=repeated_uint64_extension",
  2094. Filename: "test/test.proto",
  2095. },
  2096. {
  2097. ExtendedType: (*TestAllExtensions)(nil),
  2098. ExtensionType: ([]int32)(nil),
  2099. Field: 35,
  2100. Name: "goproto.proto.test.repeated_sint32_extension",
  2101. Tag: "zigzag32,35,rep,name=repeated_sint32_extension",
  2102. Filename: "test/test.proto",
  2103. },
  2104. {
  2105. ExtendedType: (*TestAllExtensions)(nil),
  2106. ExtensionType: ([]int64)(nil),
  2107. Field: 36,
  2108. Name: "goproto.proto.test.repeated_sint64_extension",
  2109. Tag: "zigzag64,36,rep,name=repeated_sint64_extension",
  2110. Filename: "test/test.proto",
  2111. },
  2112. {
  2113. ExtendedType: (*TestAllExtensions)(nil),
  2114. ExtensionType: ([]uint32)(nil),
  2115. Field: 37,
  2116. Name: "goproto.proto.test.repeated_fixed32_extension",
  2117. Tag: "fixed32,37,rep,name=repeated_fixed32_extension",
  2118. Filename: "test/test.proto",
  2119. },
  2120. {
  2121. ExtendedType: (*TestAllExtensions)(nil),
  2122. ExtensionType: ([]uint64)(nil),
  2123. Field: 38,
  2124. Name: "goproto.proto.test.repeated_fixed64_extension",
  2125. Tag: "fixed64,38,rep,name=repeated_fixed64_extension",
  2126. Filename: "test/test.proto",
  2127. },
  2128. {
  2129. ExtendedType: (*TestAllExtensions)(nil),
  2130. ExtensionType: ([]int32)(nil),
  2131. Field: 39,
  2132. Name: "goproto.proto.test.repeated_sfixed32_extension",
  2133. Tag: "fixed32,39,rep,name=repeated_sfixed32_extension",
  2134. Filename: "test/test.proto",
  2135. },
  2136. {
  2137. ExtendedType: (*TestAllExtensions)(nil),
  2138. ExtensionType: ([]int64)(nil),
  2139. Field: 40,
  2140. Name: "goproto.proto.test.repeated_sfixed64_extension",
  2141. Tag: "fixed64,40,rep,name=repeated_sfixed64_extension",
  2142. Filename: "test/test.proto",
  2143. },
  2144. {
  2145. ExtendedType: (*TestAllExtensions)(nil),
  2146. ExtensionType: ([]float32)(nil),
  2147. Field: 41,
  2148. Name: "goproto.proto.test.repeated_float_extension",
  2149. Tag: "fixed32,41,rep,name=repeated_float_extension",
  2150. Filename: "test/test.proto",
  2151. },
  2152. {
  2153. ExtendedType: (*TestAllExtensions)(nil),
  2154. ExtensionType: ([]float64)(nil),
  2155. Field: 42,
  2156. Name: "goproto.proto.test.repeated_double_extension",
  2157. Tag: "fixed64,42,rep,name=repeated_double_extension",
  2158. Filename: "test/test.proto",
  2159. },
  2160. {
  2161. ExtendedType: (*TestAllExtensions)(nil),
  2162. ExtensionType: ([]bool)(nil),
  2163. Field: 43,
  2164. Name: "goproto.proto.test.repeated_bool_extension",
  2165. Tag: "varint,43,rep,name=repeated_bool_extension",
  2166. Filename: "test/test.proto",
  2167. },
  2168. {
  2169. ExtendedType: (*TestAllExtensions)(nil),
  2170. ExtensionType: ([]string)(nil),
  2171. Field: 44,
  2172. Name: "goproto.proto.test.repeated_string_extension",
  2173. Tag: "bytes,44,rep,name=repeated_string_extension",
  2174. Filename: "test/test.proto",
  2175. },
  2176. {
  2177. ExtendedType: (*TestAllExtensions)(nil),
  2178. ExtensionType: ([][]byte)(nil),
  2179. Field: 45,
  2180. Name: "goproto.proto.test.repeated_bytes_extension",
  2181. Tag: "bytes,45,rep,name=repeated_bytes_extension",
  2182. Filename: "test/test.proto",
  2183. },
  2184. {
  2185. ExtendedType: (*TestAllExtensions)(nil),
  2186. ExtensionType: ([]*RepeatedGroupExtension)(nil),
  2187. Field: 46,
  2188. Name: "goproto.proto.test.repeatedgroup_extension",
  2189. Tag: "group,46,rep,name=RepeatedGroup_extension",
  2190. Filename: "test/test.proto",
  2191. },
  2192. {
  2193. ExtendedType: (*TestAllExtensions)(nil),
  2194. ExtensionType: ([]*TestAllTypes_NestedMessage)(nil),
  2195. Field: 48,
  2196. Name: "goproto.proto.test.repeated_nested_message_extension",
  2197. Tag: "bytes,48,rep,name=repeated_nested_message_extension",
  2198. Filename: "test/test.proto",
  2199. },
  2200. {
  2201. ExtendedType: (*TestAllExtensions)(nil),
  2202. ExtensionType: ([]TestAllTypes_NestedEnum)(nil),
  2203. Field: 51,
  2204. Name: "goproto.proto.test.repeated_nested_enum_extension",
  2205. Tag: "varint,51,rep,name=repeated_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  2206. Filename: "test/test.proto",
  2207. },
  2208. {
  2209. ExtendedType: (*TestAllExtensions)(nil),
  2210. ExtensionType: (*int32)(nil),
  2211. Field: 81,
  2212. Name: "goproto.proto.test.default_int32_extension",
  2213. Tag: "varint,81,opt,name=default_int32_extension,def=81",
  2214. Filename: "test/test.proto",
  2215. },
  2216. {
  2217. ExtendedType: (*TestAllExtensions)(nil),
  2218. ExtensionType: (*int64)(nil),
  2219. Field: 82,
  2220. Name: "goproto.proto.test.default_int64_extension",
  2221. Tag: "varint,82,opt,name=default_int64_extension,def=82",
  2222. Filename: "test/test.proto",
  2223. },
  2224. {
  2225. ExtendedType: (*TestAllExtensions)(nil),
  2226. ExtensionType: (*uint32)(nil),
  2227. Field: 83,
  2228. Name: "goproto.proto.test.default_uint32_extension",
  2229. Tag: "varint,83,opt,name=default_uint32_extension,def=83",
  2230. Filename: "test/test.proto",
  2231. },
  2232. {
  2233. ExtendedType: (*TestAllExtensions)(nil),
  2234. ExtensionType: (*uint64)(nil),
  2235. Field: 84,
  2236. Name: "goproto.proto.test.default_uint64_extension",
  2237. Tag: "varint,84,opt,name=default_uint64_extension,def=84",
  2238. Filename: "test/test.proto",
  2239. },
  2240. {
  2241. ExtendedType: (*TestAllExtensions)(nil),
  2242. ExtensionType: (*int32)(nil),
  2243. Field: 85,
  2244. Name: "goproto.proto.test.default_sint32_extension",
  2245. Tag: "zigzag32,85,opt,name=default_sint32_extension,def=-85",
  2246. Filename: "test/test.proto",
  2247. },
  2248. {
  2249. ExtendedType: (*TestAllExtensions)(nil),
  2250. ExtensionType: (*int64)(nil),
  2251. Field: 86,
  2252. Name: "goproto.proto.test.default_sint64_extension",
  2253. Tag: "zigzag64,86,opt,name=default_sint64_extension,def=86",
  2254. Filename: "test/test.proto",
  2255. },
  2256. {
  2257. ExtendedType: (*TestAllExtensions)(nil),
  2258. ExtensionType: (*uint32)(nil),
  2259. Field: 87,
  2260. Name: "goproto.proto.test.default_fixed32_extension",
  2261. Tag: "fixed32,87,opt,name=default_fixed32_extension,def=87",
  2262. Filename: "test/test.proto",
  2263. },
  2264. {
  2265. ExtendedType: (*TestAllExtensions)(nil),
  2266. ExtensionType: (*uint64)(nil),
  2267. Field: 88,
  2268. Name: "goproto.proto.test.default_fixed64_extension",
  2269. Tag: "fixed64,88,opt,name=default_fixed64_extension,def=88",
  2270. Filename: "test/test.proto",
  2271. },
  2272. {
  2273. ExtendedType: (*TestAllExtensions)(nil),
  2274. ExtensionType: (*int32)(nil),
  2275. Field: 89,
  2276. Name: "goproto.proto.test.default_sfixed32_extension",
  2277. Tag: "fixed32,89,opt,name=default_sfixed32_extension,def=89",
  2278. Filename: "test/test.proto",
  2279. },
  2280. {
  2281. ExtendedType: (*TestAllExtensions)(nil),
  2282. ExtensionType: (*int64)(nil),
  2283. Field: 80,
  2284. Name: "goproto.proto.test.default_sfixed64_extension",
  2285. Tag: "fixed64,80,opt,name=default_sfixed64_extension,def=-90",
  2286. Filename: "test/test.proto",
  2287. },
  2288. {
  2289. ExtendedType: (*TestAllExtensions)(nil),
  2290. ExtensionType: (*float32)(nil),
  2291. Field: 91,
  2292. Name: "goproto.proto.test.default_float_extension",
  2293. Tag: "fixed32,91,opt,name=default_float_extension,def=91.5",
  2294. Filename: "test/test.proto",
  2295. },
  2296. {
  2297. ExtendedType: (*TestAllExtensions)(nil),
  2298. ExtensionType: (*float64)(nil),
  2299. Field: 92,
  2300. Name: "goproto.proto.test.default_double_extension",
  2301. Tag: "fixed64,92,opt,name=default_double_extension,def=92000",
  2302. Filename: "test/test.proto",
  2303. },
  2304. {
  2305. ExtendedType: (*TestAllExtensions)(nil),
  2306. ExtensionType: (*bool)(nil),
  2307. Field: 93,
  2308. Name: "goproto.proto.test.default_bool_extension",
  2309. Tag: "varint,93,opt,name=default_bool_extension,def=1",
  2310. Filename: "test/test.proto",
  2311. },
  2312. {
  2313. ExtendedType: (*TestAllExtensions)(nil),
  2314. ExtensionType: (*string)(nil),
  2315. Field: 94,
  2316. Name: "goproto.proto.test.default_string_extension",
  2317. Tag: "bytes,94,opt,name=default_string_extension,def=hello",
  2318. Filename: "test/test.proto",
  2319. },
  2320. {
  2321. ExtendedType: (*TestAllExtensions)(nil),
  2322. ExtensionType: ([]byte)(nil),
  2323. Field: 95,
  2324. Name: "goproto.proto.test.default_bytes_extension",
  2325. Tag: "bytes,95,opt,name=default_bytes_extension,def=world",
  2326. Filename: "test/test.proto",
  2327. },
  2328. {
  2329. ExtendedType: (*TestPackedExtensions)(nil),
  2330. ExtensionType: ([]int32)(nil),
  2331. Field: 90,
  2332. Name: "goproto.proto.test.packed_int32_extension",
  2333. Tag: "varint,90,rep,packed,name=packed_int32_extension",
  2334. Filename: "test/test.proto",
  2335. },
  2336. {
  2337. ExtendedType: (*TestPackedExtensions)(nil),
  2338. ExtensionType: ([]int64)(nil),
  2339. Field: 91,
  2340. Name: "goproto.proto.test.packed_int64_extension",
  2341. Tag: "varint,91,rep,packed,name=packed_int64_extension",
  2342. Filename: "test/test.proto",
  2343. },
  2344. {
  2345. ExtendedType: (*TestPackedExtensions)(nil),
  2346. ExtensionType: ([]uint32)(nil),
  2347. Field: 92,
  2348. Name: "goproto.proto.test.packed_uint32_extension",
  2349. Tag: "varint,92,rep,packed,name=packed_uint32_extension",
  2350. Filename: "test/test.proto",
  2351. },
  2352. {
  2353. ExtendedType: (*TestPackedExtensions)(nil),
  2354. ExtensionType: ([]uint64)(nil),
  2355. Field: 93,
  2356. Name: "goproto.proto.test.packed_uint64_extension",
  2357. Tag: "varint,93,rep,packed,name=packed_uint64_extension",
  2358. Filename: "test/test.proto",
  2359. },
  2360. {
  2361. ExtendedType: (*TestPackedExtensions)(nil),
  2362. ExtensionType: ([]int32)(nil),
  2363. Field: 94,
  2364. Name: "goproto.proto.test.packed_sint32_extension",
  2365. Tag: "zigzag32,94,rep,packed,name=packed_sint32_extension",
  2366. Filename: "test/test.proto",
  2367. },
  2368. {
  2369. ExtendedType: (*TestPackedExtensions)(nil),
  2370. ExtensionType: ([]int64)(nil),
  2371. Field: 95,
  2372. Name: "goproto.proto.test.packed_sint64_extension",
  2373. Tag: "zigzag64,95,rep,packed,name=packed_sint64_extension",
  2374. Filename: "test/test.proto",
  2375. },
  2376. {
  2377. ExtendedType: (*TestPackedExtensions)(nil),
  2378. ExtensionType: ([]uint32)(nil),
  2379. Field: 96,
  2380. Name: "goproto.proto.test.packed_fixed32_extension",
  2381. Tag: "fixed32,96,rep,packed,name=packed_fixed32_extension",
  2382. Filename: "test/test.proto",
  2383. },
  2384. {
  2385. ExtendedType: (*TestPackedExtensions)(nil),
  2386. ExtensionType: ([]uint64)(nil),
  2387. Field: 97,
  2388. Name: "goproto.proto.test.packed_fixed64_extension",
  2389. Tag: "fixed64,97,rep,packed,name=packed_fixed64_extension",
  2390. Filename: "test/test.proto",
  2391. },
  2392. {
  2393. ExtendedType: (*TestPackedExtensions)(nil),
  2394. ExtensionType: ([]int32)(nil),
  2395. Field: 98,
  2396. Name: "goproto.proto.test.packed_sfixed32_extension",
  2397. Tag: "fixed32,98,rep,packed,name=packed_sfixed32_extension",
  2398. Filename: "test/test.proto",
  2399. },
  2400. {
  2401. ExtendedType: (*TestPackedExtensions)(nil),
  2402. ExtensionType: ([]int64)(nil),
  2403. Field: 99,
  2404. Name: "goproto.proto.test.packed_sfixed64_extension",
  2405. Tag: "fixed64,99,rep,packed,name=packed_sfixed64_extension",
  2406. Filename: "test/test.proto",
  2407. },
  2408. {
  2409. ExtendedType: (*TestPackedExtensions)(nil),
  2410. ExtensionType: ([]float32)(nil),
  2411. Field: 100,
  2412. Name: "goproto.proto.test.packed_float_extension",
  2413. Tag: "fixed32,100,rep,packed,name=packed_float_extension",
  2414. Filename: "test/test.proto",
  2415. },
  2416. {
  2417. ExtendedType: (*TestPackedExtensions)(nil),
  2418. ExtensionType: ([]float64)(nil),
  2419. Field: 101,
  2420. Name: "goproto.proto.test.packed_double_extension",
  2421. Tag: "fixed64,101,rep,packed,name=packed_double_extension",
  2422. Filename: "test/test.proto",
  2423. },
  2424. {
  2425. ExtendedType: (*TestPackedExtensions)(nil),
  2426. ExtensionType: ([]bool)(nil),
  2427. Field: 102,
  2428. Name: "goproto.proto.test.packed_bool_extension",
  2429. Tag: "varint,102,rep,packed,name=packed_bool_extension",
  2430. Filename: "test/test.proto",
  2431. },
  2432. {
  2433. ExtendedType: (*TestPackedExtensions)(nil),
  2434. ExtensionType: ([]ForeignEnum)(nil),
  2435. Field: 103,
  2436. Name: "goproto.proto.test.packed_enum_extension",
  2437. Tag: "varint,103,rep,packed,name=packed_enum_extension,enum=goproto.proto.test.ForeignEnum",
  2438. Filename: "test/test.proto",
  2439. },
  2440. {
  2441. ExtendedType: (*TestUnpackedExtensions)(nil),
  2442. ExtensionType: ([]int32)(nil),
  2443. Field: 90,
  2444. Name: "goproto.proto.test.unpacked_int32_extension",
  2445. Tag: "varint,90,rep,name=unpacked_int32_extension",
  2446. Filename: "test/test.proto",
  2447. },
  2448. {
  2449. ExtendedType: (*TestUnpackedExtensions)(nil),
  2450. ExtensionType: ([]int64)(nil),
  2451. Field: 91,
  2452. Name: "goproto.proto.test.unpacked_int64_extension",
  2453. Tag: "varint,91,rep,name=unpacked_int64_extension",
  2454. Filename: "test/test.proto",
  2455. },
  2456. {
  2457. ExtendedType: (*TestUnpackedExtensions)(nil),
  2458. ExtensionType: ([]uint32)(nil),
  2459. Field: 92,
  2460. Name: "goproto.proto.test.unpacked_uint32_extension",
  2461. Tag: "varint,92,rep,name=unpacked_uint32_extension",
  2462. Filename: "test/test.proto",
  2463. },
  2464. {
  2465. ExtendedType: (*TestUnpackedExtensions)(nil),
  2466. ExtensionType: ([]uint64)(nil),
  2467. Field: 93,
  2468. Name: "goproto.proto.test.unpacked_uint64_extension",
  2469. Tag: "varint,93,rep,name=unpacked_uint64_extension",
  2470. Filename: "test/test.proto",
  2471. },
  2472. {
  2473. ExtendedType: (*TestUnpackedExtensions)(nil),
  2474. ExtensionType: ([]int32)(nil),
  2475. Field: 94,
  2476. Name: "goproto.proto.test.unpacked_sint32_extension",
  2477. Tag: "zigzag32,94,rep,name=unpacked_sint32_extension",
  2478. Filename: "test/test.proto",
  2479. },
  2480. {
  2481. ExtendedType: (*TestUnpackedExtensions)(nil),
  2482. ExtensionType: ([]int64)(nil),
  2483. Field: 95,
  2484. Name: "goproto.proto.test.unpacked_sint64_extension",
  2485. Tag: "zigzag64,95,rep,name=unpacked_sint64_extension",
  2486. Filename: "test/test.proto",
  2487. },
  2488. {
  2489. ExtendedType: (*TestUnpackedExtensions)(nil),
  2490. ExtensionType: ([]uint32)(nil),
  2491. Field: 96,
  2492. Name: "goproto.proto.test.unpacked_fixed32_extension",
  2493. Tag: "fixed32,96,rep,name=unpacked_fixed32_extension",
  2494. Filename: "test/test.proto",
  2495. },
  2496. {
  2497. ExtendedType: (*TestUnpackedExtensions)(nil),
  2498. ExtensionType: ([]uint64)(nil),
  2499. Field: 97,
  2500. Name: "goproto.proto.test.unpacked_fixed64_extension",
  2501. Tag: "fixed64,97,rep,name=unpacked_fixed64_extension",
  2502. Filename: "test/test.proto",
  2503. },
  2504. {
  2505. ExtendedType: (*TestUnpackedExtensions)(nil),
  2506. ExtensionType: ([]int32)(nil),
  2507. Field: 98,
  2508. Name: "goproto.proto.test.unpacked_sfixed32_extension",
  2509. Tag: "fixed32,98,rep,name=unpacked_sfixed32_extension",
  2510. Filename: "test/test.proto",
  2511. },
  2512. {
  2513. ExtendedType: (*TestUnpackedExtensions)(nil),
  2514. ExtensionType: ([]int64)(nil),
  2515. Field: 99,
  2516. Name: "goproto.proto.test.unpacked_sfixed64_extension",
  2517. Tag: "fixed64,99,rep,name=unpacked_sfixed64_extension",
  2518. Filename: "test/test.proto",
  2519. },
  2520. {
  2521. ExtendedType: (*TestUnpackedExtensions)(nil),
  2522. ExtensionType: ([]float32)(nil),
  2523. Field: 100,
  2524. Name: "goproto.proto.test.unpacked_float_extension",
  2525. Tag: "fixed32,100,rep,name=unpacked_float_extension",
  2526. Filename: "test/test.proto",
  2527. },
  2528. {
  2529. ExtendedType: (*TestUnpackedExtensions)(nil),
  2530. ExtensionType: ([]float64)(nil),
  2531. Field: 101,
  2532. Name: "goproto.proto.test.unpacked_double_extension",
  2533. Tag: "fixed64,101,rep,name=unpacked_double_extension",
  2534. Filename: "test/test.proto",
  2535. },
  2536. {
  2537. ExtendedType: (*TestUnpackedExtensions)(nil),
  2538. ExtensionType: ([]bool)(nil),
  2539. Field: 102,
  2540. Name: "goproto.proto.test.unpacked_bool_extension",
  2541. Tag: "varint,102,rep,name=unpacked_bool_extension",
  2542. Filename: "test/test.proto",
  2543. },
  2544. {
  2545. ExtendedType: (*TestUnpackedExtensions)(nil),
  2546. ExtensionType: ([]ForeignEnum)(nil),
  2547. Field: 103,
  2548. Name: "goproto.proto.test.unpacked_enum_extension",
  2549. Tag: "varint,103,rep,name=unpacked_enum_extension,enum=goproto.proto.test.ForeignEnum",
  2550. Filename: "test/test.proto",
  2551. },
  2552. {
  2553. ExtendedType: (*TestAllExtensions)(nil),
  2554. ExtensionType: (*string)(nil),
  2555. Field: 1003,
  2556. Name: "goproto.proto.test.TestNestedExtension.nested_string_extension",
  2557. Tag: "bytes,1003,opt,name=nested_string_extension",
  2558. Filename: "test/test.proto",
  2559. },
  2560. {
  2561. ExtendedType: (*TestAllExtensions)(nil),
  2562. ExtensionType: (*TestRequired)(nil),
  2563. Field: 1000,
  2564. Name: "goproto.proto.test.TestRequired.single",
  2565. Tag: "bytes,1000,opt,name=single",
  2566. Filename: "test/test.proto",
  2567. },
  2568. {
  2569. ExtendedType: (*TestAllExtensions)(nil),
  2570. ExtensionType: ([]*TestRequired)(nil),
  2571. Field: 1001,
  2572. Name: "goproto.proto.test.TestRequired.multi",
  2573. Tag: "bytes,1001,rep,name=multi",
  2574. Filename: "test/test.proto",
  2575. },
  2576. }
  2577. var (
  2578. // extend goproto.proto.test.TestAllExtensions { optional int32 optional_int32_extension = 1; }
  2579. E_OptionalInt32Extension = &file_test_test_proto_extDescs[0]
  2580. // extend goproto.proto.test.TestAllExtensions { optional int64 optional_int64_extension = 2; }
  2581. E_OptionalInt64Extension = &file_test_test_proto_extDescs[1]
  2582. // extend goproto.proto.test.TestAllExtensions { optional uint32 optional_uint32_extension = 3; }
  2583. E_OptionalUint32Extension = &file_test_test_proto_extDescs[2]
  2584. // extend goproto.proto.test.TestAllExtensions { optional uint64 optional_uint64_extension = 4; }
  2585. E_OptionalUint64Extension = &file_test_test_proto_extDescs[3]
  2586. // extend goproto.proto.test.TestAllExtensions { optional sint32 optional_sint32_extension = 5; }
  2587. E_OptionalSint32Extension = &file_test_test_proto_extDescs[4]
  2588. // extend goproto.proto.test.TestAllExtensions { optional sint64 optional_sint64_extension = 6; }
  2589. E_OptionalSint64Extension = &file_test_test_proto_extDescs[5]
  2590. // extend goproto.proto.test.TestAllExtensions { optional fixed32 optional_fixed32_extension = 7; }
  2591. E_OptionalFixed32Extension = &file_test_test_proto_extDescs[6]
  2592. // extend goproto.proto.test.TestAllExtensions { optional fixed64 optional_fixed64_extension = 8; }
  2593. E_OptionalFixed64Extension = &file_test_test_proto_extDescs[7]
  2594. // extend goproto.proto.test.TestAllExtensions { optional sfixed32 optional_sfixed32_extension = 9; }
  2595. E_OptionalSfixed32Extension = &file_test_test_proto_extDescs[8]
  2596. // extend goproto.proto.test.TestAllExtensions { optional sfixed64 optional_sfixed64_extension = 10; }
  2597. E_OptionalSfixed64Extension = &file_test_test_proto_extDescs[9]
  2598. // extend goproto.proto.test.TestAllExtensions { optional float optional_float_extension = 11; }
  2599. E_OptionalFloatExtension = &file_test_test_proto_extDescs[10]
  2600. // extend goproto.proto.test.TestAllExtensions { optional double optional_double_extension = 12; }
  2601. E_OptionalDoubleExtension = &file_test_test_proto_extDescs[11]
  2602. // extend goproto.proto.test.TestAllExtensions { optional bool optional_bool_extension = 13; }
  2603. E_OptionalBoolExtension = &file_test_test_proto_extDescs[12]
  2604. // extend goproto.proto.test.TestAllExtensions { optional string optional_string_extension = 14; }
  2605. E_OptionalStringExtension = &file_test_test_proto_extDescs[13]
  2606. // extend goproto.proto.test.TestAllExtensions { optional bytes optional_bytes_extension = 15; }
  2607. E_OptionalBytesExtension = &file_test_test_proto_extDescs[14]
  2608. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.OptionalGroup_extension optionalgroup_extension = 16; }
  2609. E_OptionalgroupExtension = &file_test_test_proto_extDescs[15]
  2610. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedMessage optional_nested_message_extension = 18; }
  2611. E_OptionalNestedMessageExtension = &file_test_test_proto_extDescs[16]
  2612. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedEnum optional_nested_enum_extension = 21; }
  2613. E_OptionalNestedEnumExtension = &file_test_test_proto_extDescs[17]
  2614. // extend goproto.proto.test.TestAllExtensions { repeated int32 repeated_int32_extension = 31; }
  2615. E_RepeatedInt32Extension = &file_test_test_proto_extDescs[18]
  2616. // extend goproto.proto.test.TestAllExtensions { repeated int64 repeated_int64_extension = 32; }
  2617. E_RepeatedInt64Extension = &file_test_test_proto_extDescs[19]
  2618. // extend goproto.proto.test.TestAllExtensions { repeated uint32 repeated_uint32_extension = 33; }
  2619. E_RepeatedUint32Extension = &file_test_test_proto_extDescs[20]
  2620. // extend goproto.proto.test.TestAllExtensions { repeated uint64 repeated_uint64_extension = 34; }
  2621. E_RepeatedUint64Extension = &file_test_test_proto_extDescs[21]
  2622. // extend goproto.proto.test.TestAllExtensions { repeated sint32 repeated_sint32_extension = 35; }
  2623. E_RepeatedSint32Extension = &file_test_test_proto_extDescs[22]
  2624. // extend goproto.proto.test.TestAllExtensions { repeated sint64 repeated_sint64_extension = 36; }
  2625. E_RepeatedSint64Extension = &file_test_test_proto_extDescs[23]
  2626. // extend goproto.proto.test.TestAllExtensions { repeated fixed32 repeated_fixed32_extension = 37; }
  2627. E_RepeatedFixed32Extension = &file_test_test_proto_extDescs[24]
  2628. // extend goproto.proto.test.TestAllExtensions { repeated fixed64 repeated_fixed64_extension = 38; }
  2629. E_RepeatedFixed64Extension = &file_test_test_proto_extDescs[25]
  2630. // extend goproto.proto.test.TestAllExtensions { repeated sfixed32 repeated_sfixed32_extension = 39; }
  2631. E_RepeatedSfixed32Extension = &file_test_test_proto_extDescs[26]
  2632. // extend goproto.proto.test.TestAllExtensions { repeated sfixed64 repeated_sfixed64_extension = 40; }
  2633. E_RepeatedSfixed64Extension = &file_test_test_proto_extDescs[27]
  2634. // extend goproto.proto.test.TestAllExtensions { repeated float repeated_float_extension = 41; }
  2635. E_RepeatedFloatExtension = &file_test_test_proto_extDescs[28]
  2636. // extend goproto.proto.test.TestAllExtensions { repeated double repeated_double_extension = 42; }
  2637. E_RepeatedDoubleExtension = &file_test_test_proto_extDescs[29]
  2638. // extend goproto.proto.test.TestAllExtensions { repeated bool repeated_bool_extension = 43; }
  2639. E_RepeatedBoolExtension = &file_test_test_proto_extDescs[30]
  2640. // extend goproto.proto.test.TestAllExtensions { repeated string repeated_string_extension = 44; }
  2641. E_RepeatedStringExtension = &file_test_test_proto_extDescs[31]
  2642. // extend goproto.proto.test.TestAllExtensions { repeated bytes repeated_bytes_extension = 45; }
  2643. E_RepeatedBytesExtension = &file_test_test_proto_extDescs[32]
  2644. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.RepeatedGroup_extension repeatedgroup_extension = 46; }
  2645. E_RepeatedgroupExtension = &file_test_test_proto_extDescs[33]
  2646. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedMessage repeated_nested_message_extension = 48; }
  2647. E_RepeatedNestedMessageExtension = &file_test_test_proto_extDescs[34]
  2648. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedEnum repeated_nested_enum_extension = 51; }
  2649. E_RepeatedNestedEnumExtension = &file_test_test_proto_extDescs[35]
  2650. // extend goproto.proto.test.TestAllExtensions { optional int32 default_int32_extension = 81; }
  2651. E_DefaultInt32Extension = &file_test_test_proto_extDescs[36]
  2652. // extend goproto.proto.test.TestAllExtensions { optional int64 default_int64_extension = 82; }
  2653. E_DefaultInt64Extension = &file_test_test_proto_extDescs[37]
  2654. // extend goproto.proto.test.TestAllExtensions { optional uint32 default_uint32_extension = 83; }
  2655. E_DefaultUint32Extension = &file_test_test_proto_extDescs[38]
  2656. // extend goproto.proto.test.TestAllExtensions { optional uint64 default_uint64_extension = 84; }
  2657. E_DefaultUint64Extension = &file_test_test_proto_extDescs[39]
  2658. // extend goproto.proto.test.TestAllExtensions { optional sint32 default_sint32_extension = 85; }
  2659. E_DefaultSint32Extension = &file_test_test_proto_extDescs[40]
  2660. // extend goproto.proto.test.TestAllExtensions { optional sint64 default_sint64_extension = 86; }
  2661. E_DefaultSint64Extension = &file_test_test_proto_extDescs[41]
  2662. // extend goproto.proto.test.TestAllExtensions { optional fixed32 default_fixed32_extension = 87; }
  2663. E_DefaultFixed32Extension = &file_test_test_proto_extDescs[42]
  2664. // extend goproto.proto.test.TestAllExtensions { optional fixed64 default_fixed64_extension = 88; }
  2665. E_DefaultFixed64Extension = &file_test_test_proto_extDescs[43]
  2666. // extend goproto.proto.test.TestAllExtensions { optional sfixed32 default_sfixed32_extension = 89; }
  2667. E_DefaultSfixed32Extension = &file_test_test_proto_extDescs[44]
  2668. // extend goproto.proto.test.TestAllExtensions { optional sfixed64 default_sfixed64_extension = 80; }
  2669. E_DefaultSfixed64Extension = &file_test_test_proto_extDescs[45]
  2670. // extend goproto.proto.test.TestAllExtensions { optional float default_float_extension = 91; }
  2671. E_DefaultFloatExtension = &file_test_test_proto_extDescs[46]
  2672. // extend goproto.proto.test.TestAllExtensions { optional double default_double_extension = 92; }
  2673. E_DefaultDoubleExtension = &file_test_test_proto_extDescs[47]
  2674. // extend goproto.proto.test.TestAllExtensions { optional bool default_bool_extension = 93; }
  2675. E_DefaultBoolExtension = &file_test_test_proto_extDescs[48]
  2676. // extend goproto.proto.test.TestAllExtensions { optional string default_string_extension = 94; }
  2677. E_DefaultStringExtension = &file_test_test_proto_extDescs[49]
  2678. // extend goproto.proto.test.TestAllExtensions { optional bytes default_bytes_extension = 95; }
  2679. E_DefaultBytesExtension = &file_test_test_proto_extDescs[50]
  2680. // extend goproto.proto.test.TestPackedExtensions { repeated int32 packed_int32_extension = 90; }
  2681. E_PackedInt32Extension = &file_test_test_proto_extDescs[51]
  2682. // extend goproto.proto.test.TestPackedExtensions { repeated int64 packed_int64_extension = 91; }
  2683. E_PackedInt64Extension = &file_test_test_proto_extDescs[52]
  2684. // extend goproto.proto.test.TestPackedExtensions { repeated uint32 packed_uint32_extension = 92; }
  2685. E_PackedUint32Extension = &file_test_test_proto_extDescs[53]
  2686. // extend goproto.proto.test.TestPackedExtensions { repeated uint64 packed_uint64_extension = 93; }
  2687. E_PackedUint64Extension = &file_test_test_proto_extDescs[54]
  2688. // extend goproto.proto.test.TestPackedExtensions { repeated sint32 packed_sint32_extension = 94; }
  2689. E_PackedSint32Extension = &file_test_test_proto_extDescs[55]
  2690. // extend goproto.proto.test.TestPackedExtensions { repeated sint64 packed_sint64_extension = 95; }
  2691. E_PackedSint64Extension = &file_test_test_proto_extDescs[56]
  2692. // extend goproto.proto.test.TestPackedExtensions { repeated fixed32 packed_fixed32_extension = 96; }
  2693. E_PackedFixed32Extension = &file_test_test_proto_extDescs[57]
  2694. // extend goproto.proto.test.TestPackedExtensions { repeated fixed64 packed_fixed64_extension = 97; }
  2695. E_PackedFixed64Extension = &file_test_test_proto_extDescs[58]
  2696. // extend goproto.proto.test.TestPackedExtensions { repeated sfixed32 packed_sfixed32_extension = 98; }
  2697. E_PackedSfixed32Extension = &file_test_test_proto_extDescs[59]
  2698. // extend goproto.proto.test.TestPackedExtensions { repeated sfixed64 packed_sfixed64_extension = 99; }
  2699. E_PackedSfixed64Extension = &file_test_test_proto_extDescs[60]
  2700. // extend goproto.proto.test.TestPackedExtensions { repeated float packed_float_extension = 100; }
  2701. E_PackedFloatExtension = &file_test_test_proto_extDescs[61]
  2702. // extend goproto.proto.test.TestPackedExtensions { repeated double packed_double_extension = 101; }
  2703. E_PackedDoubleExtension = &file_test_test_proto_extDescs[62]
  2704. // extend goproto.proto.test.TestPackedExtensions { repeated bool packed_bool_extension = 102; }
  2705. E_PackedBoolExtension = &file_test_test_proto_extDescs[63]
  2706. // extend goproto.proto.test.TestPackedExtensions { repeated goproto.proto.test.ForeignEnum packed_enum_extension = 103; }
  2707. E_PackedEnumExtension = &file_test_test_proto_extDescs[64]
  2708. // extend goproto.proto.test.TestUnpackedExtensions { repeated int32 unpacked_int32_extension = 90; }
  2709. E_UnpackedInt32Extension = &file_test_test_proto_extDescs[65]
  2710. // extend goproto.proto.test.TestUnpackedExtensions { repeated int64 unpacked_int64_extension = 91; }
  2711. E_UnpackedInt64Extension = &file_test_test_proto_extDescs[66]
  2712. // extend goproto.proto.test.TestUnpackedExtensions { repeated uint32 unpacked_uint32_extension = 92; }
  2713. E_UnpackedUint32Extension = &file_test_test_proto_extDescs[67]
  2714. // extend goproto.proto.test.TestUnpackedExtensions { repeated uint64 unpacked_uint64_extension = 93; }
  2715. E_UnpackedUint64Extension = &file_test_test_proto_extDescs[68]
  2716. // extend goproto.proto.test.TestUnpackedExtensions { repeated sint32 unpacked_sint32_extension = 94; }
  2717. E_UnpackedSint32Extension = &file_test_test_proto_extDescs[69]
  2718. // extend goproto.proto.test.TestUnpackedExtensions { repeated sint64 unpacked_sint64_extension = 95; }
  2719. E_UnpackedSint64Extension = &file_test_test_proto_extDescs[70]
  2720. // extend goproto.proto.test.TestUnpackedExtensions { repeated fixed32 unpacked_fixed32_extension = 96; }
  2721. E_UnpackedFixed32Extension = &file_test_test_proto_extDescs[71]
  2722. // extend goproto.proto.test.TestUnpackedExtensions { repeated fixed64 unpacked_fixed64_extension = 97; }
  2723. E_UnpackedFixed64Extension = &file_test_test_proto_extDescs[72]
  2724. // extend goproto.proto.test.TestUnpackedExtensions { repeated sfixed32 unpacked_sfixed32_extension = 98; }
  2725. E_UnpackedSfixed32Extension = &file_test_test_proto_extDescs[73]
  2726. // extend goproto.proto.test.TestUnpackedExtensions { repeated sfixed64 unpacked_sfixed64_extension = 99; }
  2727. E_UnpackedSfixed64Extension = &file_test_test_proto_extDescs[74]
  2728. // extend goproto.proto.test.TestUnpackedExtensions { repeated float unpacked_float_extension = 100; }
  2729. E_UnpackedFloatExtension = &file_test_test_proto_extDescs[75]
  2730. // extend goproto.proto.test.TestUnpackedExtensions { repeated double unpacked_double_extension = 101; }
  2731. E_UnpackedDoubleExtension = &file_test_test_proto_extDescs[76]
  2732. // extend goproto.proto.test.TestUnpackedExtensions { repeated bool unpacked_bool_extension = 102; }
  2733. E_UnpackedBoolExtension = &file_test_test_proto_extDescs[77]
  2734. // extend goproto.proto.test.TestUnpackedExtensions { repeated goproto.proto.test.ForeignEnum unpacked_enum_extension = 103; }
  2735. E_UnpackedEnumExtension = &file_test_test_proto_extDescs[78]
  2736. // extend goproto.proto.test.TestAllExtensions { optional string nested_string_extension = 1003; }
  2737. E_TestNestedExtension_NestedStringExtension = &file_test_test_proto_extDescs[79]
  2738. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestRequired single = 1000; }
  2739. E_TestRequired_Single = &file_test_test_proto_extDescs[80]
  2740. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestRequired multi = 1001; }
  2741. E_TestRequired_Multi = &file_test_test_proto_extDescs[81]
  2742. )
  2743. var File_test_test_proto protoreflect.FileDescriptor
  2744. var file_test_test_proto_rawDesc = []byte{
  2745. 0x0a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2746. 0x6f, 0x12, 0x12, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2747. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74,
  2748. 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x74,
  2749. 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2e,
  2750. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x77, 0x65, 0x61, 0x6b,
  2751. 0x31, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2752. 0x6f, 0x1a, 0x1a, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x77, 0x65, 0x61, 0x6b, 0x32, 0x2f, 0x74, 0x65,
  2753. 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe4, 0x36,
  2754. 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x25,
  2755. 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32,
  2756. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2757. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2758. 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f,
  2759. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f,
  2760. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18,
  2761. 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55,
  2762. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2763. 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  2764. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27,
  2765. 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33,
  2766. 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2767. 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2768. 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12,
  2769. 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34,
  2770. 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78,
  2771. 0x65, 0x64, 0x33, 0x32, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  2772. 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x6f,
  2773. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18,
  2774. 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46,
  2775. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2776. 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x09, 0x20, 0x01, 0x28,
  2777. 0x0f, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65,
  2778. 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2779. 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x10,
  2780. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2781. 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f,
  2782. 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2783. 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2784. 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01,
  2785. 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  2786. 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f,
  2787. 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2788. 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2789. 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  2790. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25,
  2791. 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  2792. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2793. 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2794. 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67,
  2795. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2796. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4f,
  2797. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70,
  2798. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x6f,
  2799. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d,
  2800. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67,
  2801. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2802. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e,
  2803. 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70,
  2804. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2805. 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2806. 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2807. 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2808. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69,
  2809. 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2810. 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2811. 0x65, 0x12, 0x59, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d,
  2812. 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x14, 0x20, 0x01,
  2813. 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2814. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65,
  2815. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49,
  2816. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14,
  2817. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  2818. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70,
  2819. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2820. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73,
  2821. 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2822. 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x6f,
  2823. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f,
  2824. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70,
  2825. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2826. 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13, 0x6f, 0x70, 0x74,
  2827. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  2828. 0x12, 0x50, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70,
  2829. 0x6f, 0x72, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e,
  2830. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2831. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12,
  2832. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e,
  2833. 0x75, 0x6d, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69,
  2834. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65,
  2835. 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70,
  2836. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x20, 0x20, 0x03, 0x28,
  2837. 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34,
  2838. 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e,
  2839. 0x74, 0x33, 0x32, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61,
  2840. 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70,
  2841. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x22, 0x20, 0x03,
  2842. 0x28, 0x04, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74,
  2843. 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73,
  2844. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x0e, 0x72, 0x65, 0x70,
  2845. 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72,
  2846. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x24,
  2847. 0x20, 0x03, 0x28, 0x12, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69,
  2848. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2849. 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x0f,
  2850. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12,
  2851. 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  2852. 0x64, 0x36, 0x34, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61,
  2853. 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65,
  2854. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  2855. 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2856. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61,
  2857. 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x28, 0x20, 0x03,
  2858. 0x28, 0x10, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78,
  2859. 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2860. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x0d, 0x72, 0x65,
  2861. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x72,
  2862. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x2a,
  2863. 0x20, 0x03, 0x28, 0x01, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f,
  2864. 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2865. 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x70,
  2866. 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70,
  2867. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x2c, 0x20, 0x03,
  2868. 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69,
  2869. 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62,
  2870. 0x79, 0x74, 0x65, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65,
  2871. 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x72, 0x65, 0x70,
  2872. 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a,
  2873. 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2874. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2875. 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  2876. 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12,
  2877. 0x66, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2878. 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b,
  2879. 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2880. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2881. 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2882. 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  2883. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61,
  2884. 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73,
  2885. 0x61, 0x67, 0x65, 0x18, 0x31, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2886. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46,
  2887. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x72,
  2888. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65,
  2889. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x58, 0x0a, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2890. 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2891. 0x32, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2892. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2893. 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2894. 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2895. 0x5d, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2896. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
  2897. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2898. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2899. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65,
  2900. 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53,
  2901. 0x0a, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69,
  2902. 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x34, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e,
  2903. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2904. 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13,
  2905. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45,
  2906. 0x6e, 0x75, 0x6d, 0x12, 0x4f, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2907. 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x35, 0x20, 0x03, 0x28, 0x0e,
  2908. 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2909. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d,
  2910. 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2911. 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33,
  2912. 0x32, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x38, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e,
  2913. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2914. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2915. 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74,
  2916. 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33,
  2917. 0x32, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x69,
  2918. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x39, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70,
  2919. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2920. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  2921. 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  2922. 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61,
  2923. 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x75, 0x69, 0x6e,
  2924. 0x74, 0x33, 0x32, 0x18, 0x3a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2925. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2926. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55,
  2927. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2928. 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33,
  2929. 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f,
  2930. 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  2931. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2932. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  2933. 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e,
  2934. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69,
  2935. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74,
  2936. 0x33, 0x32, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3c, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2937. 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2938. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2939. 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33,
  2940. 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33,
  2941. 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73,
  2942. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3d, 0x20, 0x03,
  2943. 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2944. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  2945. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69,
  2946. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69,
  2947. 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61,
  2948. 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  2949. 0x32, 0x18, 0x3e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2950. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2951. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78,
  2952. 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2953. 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65,
  2954. 0x64, 0x33, 0x32, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  2955. 0x36, 0x34, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0b,
  2956. 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2957. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2958. 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78,
  2959. 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69,
  2960. 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x6d, 0x0a, 0x15,
  2961. 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x73, 0x66, 0x69,
  2962. 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x40, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f,
  2963. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2964. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61,
  2965. 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  2966. 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65,
  2967. 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x6d, 0x0a, 0x15, 0x6d,
  2968. 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x73, 0x66, 0x69, 0x78,
  2969. 0x65, 0x64, 0x36, 0x34, 0x18, 0x41, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70,
  2970. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2971. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  2972. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2973. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  2974. 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61,
  2975. 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x42, 0x20,
  2976. 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2977. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2978. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c,
  2979. 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74,
  2980. 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x69,
  2981. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x43, 0x20, 0x03, 0x28,
  2982. 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2983. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  2984. 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62,
  2985. 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33,
  2986. 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6d, 0x61, 0x70, 0x5f, 0x62,
  2987. 0x6f, 0x6f, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x44, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31,
  2988. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2989. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2990. 0x2e, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72,
  2991. 0x79, 0x52, 0x0b, 0x6d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x61,
  2992. 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72,
  2993. 0x69, 0x6e, 0x67, 0x18, 0x45, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2994. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2995. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53,
  2996. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2997. 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e,
  2998. 0x67, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  2999. 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x46, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f,
  3000. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3001. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61,
  3002. 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,
  3003. 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65,
  3004. 0x73, 0x12, 0x77, 0x0a, 0x19, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  3005. 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x47,
  3006. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3007. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3008. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3009. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74,
  3010. 0x72, 0x79, 0x52, 0x16, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73,
  3011. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x61,
  3012. 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  3013. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x49, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70,
  3014. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3015. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  3016. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3017. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3018. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65,
  3019. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x51, 0x20, 0x01, 0x28,
  3020. 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e,
  3021. 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69,
  3022. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38, 0x32, 0x52, 0x0c,
  3023. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e,
  3024. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x53,
  3025. 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3026. 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  3027. 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x54, 0x20, 0x01, 0x28, 0x04, 0x3a,
  3028. 0x02, 0x38, 0x34, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74,
  3029. 0x36, 0x34, 0x12, 0x2a, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69,
  3030. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38, 0x35, 0x52,
  3031. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29,
  3032. 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3033. 0x18, 0x56, 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61,
  3034. 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66,
  3035. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x57, 0x20, 0x01,
  3036. 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46,
  3037. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3038. 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a,
  3039. 0x02, 0x38, 0x38, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65,
  3040. 0x64, 0x36, 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73,
  3041. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38,
  3042. 0x39, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3043. 0x33, 0x32, 0x12, 0x2e, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66,
  3044. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a, 0x03, 0x2d, 0x39,
  3045. 0x30, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3046. 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c,
  3047. 0x6f, 0x61, 0x74, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52,
  3048. 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x2c, 0x0a,
  3049. 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18,
  3050. 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52, 0x0d, 0x64, 0x65,
  3051. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x0a, 0x0c, 0x64,
  3052. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x5d, 0x20, 0x01, 0x28,
  3053. 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3054. 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
  3055. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65,
  3056. 0x6c, 0x6c, 0x6f, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69,
  3057. 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x79,
  3058. 0x74, 0x65, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64,
  3059. 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x60,
  3060. 0x0a, 0x13, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  3061. 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f,
  3062. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3063. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65,
  3064. 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x03, 0x42, 0x41, 0x52, 0x52, 0x11, 0x64,
  3065. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3066. 0x12, 0x5e, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x65,
  3067. 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x61, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f,
  3068. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3069. 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x3a,
  3070. 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x52, 0x12, 0x64, 0x65,
  3071. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  3072. 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3073. 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x55,
  3074. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x62, 0x0a, 0x14, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6e,
  3075. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x70, 0x20,
  3076. 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3077. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3078. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  3079. 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e, 0x65, 0x73, 0x74,
  3080. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65,
  3081. 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x71, 0x20, 0x01, 0x28, 0x09, 0x48,
  3082. 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x21,
  3083. 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x72, 0x20,
  3084. 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x79, 0x74, 0x65,
  3085. 0x73, 0x12, 0x1f, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18,
  3086. 0x73, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x6f,
  3087. 0x6f, 0x6c, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  3088. 0x36, 0x34, 0x18, 0x74, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f,
  3089. 0x66, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66,
  3090. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x75, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, 0x0a,
  3091. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e,
  3092. 0x65, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x76, 0x20, 0x01, 0x28, 0x01,
  3093. 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12,
  3094. 0x4c, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x77, 0x20,
  3095. 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3096. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3097. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3098. 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x1a, 0x61, 0x0a,
  3099. 0x0d, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c,
  3100. 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x12, 0x42, 0x0a, 0x0b,
  3101. 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3102. 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3103. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  3104. 0x70, 0x65, 0x73, 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65,
  3105. 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75,
  3106. 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a,
  3107. 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  3108. 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x40,
  3109. 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45,
  3110. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3111. 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3112. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  3113. 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36,
  3114. 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  3115. 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  3116. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  3117. 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55,
  3118. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3119. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  3120. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3121. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e,
  3122. 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  3123. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x6b, 0x65, 0x79,
  3124. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  3125. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61,
  3126. 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74,
  3127. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x11, 0x52,
  3128. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  3129. 0x01, 0x28, 0x11, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42,
  3130. 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36,
  3131. 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  3132. 0x01, 0x28, 0x12, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  3133. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x12, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  3134. 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3135. 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  3136. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x07, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  3137. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07, 0x52, 0x05, 0x76,
  3138. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46,
  3139. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74,
  3140. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x06, 0x52,
  3141. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  3142. 0x01, 0x28, 0x06, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46,
  3143. 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69,
  3144. 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3145. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  3146. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3147. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69,
  3148. 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74,
  3149. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x10, 0x52,
  3150. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  3151. 0x01, 0x28, 0x10, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40,
  3152. 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45,
  3153. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3154. 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3155. 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  3156. 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62,
  3157. 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  3158. 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  3159. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  3160. 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f,
  3161. 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  3162. 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  3163. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  3164. 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3165. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
  3166. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
  3167. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
  3168. 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x53, 0x74,
  3169. 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  3170. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  3171. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52,
  3172. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x79, 0x0a, 0x1b, 0x4d, 0x61,
  3173. 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73,
  3174. 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  3175. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x05, 0x76,
  3176. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70,
  3177. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3178. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73,
  3179. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  3180. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x73, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69,
  3181. 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72,
  3182. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3183. 0x6b, 0x65, 0x79, 0x12, 0x41, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  3184. 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3185. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  3186. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52,
  3187. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x39, 0x0a, 0x0a, 0x4e, 0x65,
  3188. 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x46, 0x4f, 0x4f, 0x10,
  3189. 0x00, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x52, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41,
  3190. 0x5a, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x45, 0x47, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff,
  3191. 0xff, 0xff, 0xff, 0xff, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66,
  3192. 0x69, 0x65, 0x6c, 0x64, 0x22, 0xc4, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70,
  3193. 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2d,
  3194. 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
  3195. 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0f, 0x64, 0x65,
  3196. 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x3a, 0x0a,
  3197. 0x16, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f,
  3198. 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18,
  3199. 0x01, 0x48, 0x00, 0x52, 0x14, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4f,
  3200. 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x28, 0x0a, 0x0e, 0x44, 0x65, 0x70,
  3201. 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x0a, 0x44,
  3202. 0x45, 0x50, 0x52, 0x45, 0x43, 0x41, 0x54, 0x45, 0x44, 0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x1a,
  3203. 0x02, 0x18, 0x01, 0x3a, 0x02, 0x18, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65,
  3204. 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x22, 0x2c, 0x0a, 0x0e, 0x46,
  3205. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a,
  3206. 0x01, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x63, 0x12, 0x0c, 0x0a, 0x01, 0x64,
  3207. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x64, 0x22, 0x30, 0x0a, 0x12, 0x54, 0x65, 0x73,
  3208. 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x4a,
  3209. 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x0f, 0x10, 0x10, 0x4a, 0x04, 0x08, 0x09, 0x10,
  3210. 0x0c, 0x52, 0x03, 0x62, 0x61, 0x72, 0x52, 0x03, 0x62, 0x61, 0x7a, 0x22, 0x1d, 0x0a, 0x11, 0x54,
  3211. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3212. 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x27, 0x0a, 0x17, 0x4f, 0x70,
  3213. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3214. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05,
  3215. 0x52, 0x01, 0x61, 0x22, 0x27, 0x0a, 0x17, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47,
  3216. 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c,
  3217. 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x75, 0x0a, 0x13,
  3218. 0x54, 0x65, 0x73, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3219. 0x69, 0x6f, 0x6e, 0x32, 0x5e, 0x0a, 0x17, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74,
  3220. 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3221. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3222. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3223. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xeb, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x6e, 0x65,
  3224. 0x73, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3225. 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3226. 0x69, 0x72, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  3227. 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x02, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65,
  3228. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x60, 0x0a, 0x06, 0x73,
  3229. 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3230. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3231. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe8, 0x07, 0x20,
  3232. 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3233. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71,
  3234. 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x06, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x32, 0x5e, 0x0a,
  3235. 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3236. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3237. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe9, 0x07,
  3238. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3239. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65,
  3240. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x22, 0xc2, 0x03,
  3241. 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x6f,
  3242. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x12, 0x4b, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3243. 0x6c, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3244. 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3245. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
  3246. 0x64, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3247. 0x67, 0x65, 0x12, 0x4b, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6d,
  3248. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67,
  3249. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3250. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x0f,
  3251. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  3252. 0x58, 0x0a, 0x0b, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03,
  3253. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3254. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65,
  3255. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x2e, 0x4d, 0x61,
  3256. 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d,
  3257. 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x47, 0x0a, 0x0d, 0x6f, 0x6e, 0x65,
  3258. 0x6f, 0x66, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
  3259. 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3260. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  3261. 0x65, 0x64, 0x48, 0x00, 0x52, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3262. 0x67, 0x65, 0x1a, 0x5f, 0x0a, 0x0f, 0x4d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3263. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3264. 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3265. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3266. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3267. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  3268. 0x02, 0x38, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65,
  3269. 0x6c, 0x64, 0x22, 0x99, 0x02, 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69,
  3270. 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x5f,
  3271. 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18,
  3272. 0x01, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3273. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52,
  3274. 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c,
  3275. 0x64, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70,
  3276. 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12,
  3277. 0x5f, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70,
  3278. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3279. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3280. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65,
  3281. 0x6c, 0x64, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75,
  3282. 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70,
  3283. 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75,
  3284. 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x02, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a,
  3285. 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  3286. 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x04, 0x20, 0x02, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0xb6,
  3287. 0x01, 0x0a, 0x08, 0x54, 0x65, 0x73, 0x74, 0x57, 0x65, 0x61, 0x6b, 0x12, 0x54, 0x0a, 0x0d, 0x77,
  3288. 0x65, 0x61, 0x6b, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x31, 0x18, 0x01, 0x20, 0x01,
  3289. 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3290. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x57, 0x65, 0x61,
  3291. 0x6b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x31, 0x42,
  3292. 0x02, 0x50, 0x01, 0x52, 0x0c, 0x77, 0x65, 0x61, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3293. 0x31, 0x12, 0x54, 0x0a, 0x0d, 0x77, 0x65, 0x61, 0x6b, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3294. 0x65, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3295. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x77, 0x65,
  3296. 0x61, 0x6b, 0x2e, 0x57, 0x65, 0x61, 0x6b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73,
  3297. 0x73, 0x61, 0x67, 0x65, 0x32, 0x42, 0x02, 0x50, 0x01, 0x52, 0x0c, 0x77, 0x65, 0x61, 0x6b, 0x4d,
  3298. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x22, 0xee, 0x04, 0x0a, 0x0f, 0x54, 0x65, 0x73, 0x74,
  3299. 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0c, 0x70,
  3300. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5a, 0x20, 0x03, 0x28,
  3301. 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74,
  3302. 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
  3303. 0x36, 0x34, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70, 0x61,
  3304. 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63,
  3305. 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d,
  3306. 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74,
  3307. 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e,
  3308. 0x74, 0x36, 0x34, 0x18, 0x5d, 0x20, 0x03, 0x28, 0x04, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70,
  3309. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0d, 0x70,
  3310. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5e, 0x20, 0x03,
  3311. 0x28, 0x11, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69,
  3312. 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73,
  3313. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5f, 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x01, 0x52,
  3314. 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a,
  3315. 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  3316. 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3317. 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b,
  3318. 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06,
  3319. 0x42, 0x02, 0x10, 0x01, 0x52, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65,
  3320. 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66,
  3321. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x01,
  3322. 0x52, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3323. 0x12, 0x2b, 0x0a, 0x0f, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65,
  3324. 0x64, 0x36, 0x34, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0e, 0x70,
  3325. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a,
  3326. 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x64, 0x20,
  3327. 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46,
  3328. 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64,
  3329. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x01, 0x52,
  3330. 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a,
  3331. 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x66, 0x20, 0x03,
  3332. 0x28, 0x08, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0a, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f,
  3333. 0x6f, 0x6c, 0x12, 0x44, 0x0a, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75,
  3334. 0x6d, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3335. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72,
  3336. 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0a, 0x70, 0x61,
  3337. 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa8, 0x05, 0x0a, 0x11, 0x54, 0x65, 0x73,
  3338. 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x29,
  3339. 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3340. 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75, 0x6e, 0x70, 0x61,
  3341. 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70,
  3342. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5b, 0x20, 0x03, 0x28,
  3343. 0x03, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49,
  3344. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3345. 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10,
  3346. 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33,
  3347. 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69,
  3348. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5d, 0x20, 0x03, 0x28, 0x04, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e,
  3349. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b,
  3350. 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33,
  3351. 0x32, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70,
  3352. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x75,
  3353. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5f,
  3354. 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3355. 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x75, 0x6e, 0x70, 0x61,
  3356. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x60, 0x20, 0x03,
  3357. 0x28, 0x07, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3358. 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2d, 0x0a, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3359. 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x61, 0x20, 0x03, 0x28,
  3360. 0x06, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46,
  3361. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2f, 0x0a, 0x11, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3362. 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x62, 0x20, 0x03, 0x28,
  3363. 0x0f, 0x42, 0x02, 0x10, 0x00, 0x52, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53,
  3364. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2f, 0x0a, 0x11, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3365. 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x63, 0x20, 0x03,
  3366. 0x28, 0x10, 0x42, 0x02, 0x10, 0x00, 0x52, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3367. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61,
  3368. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02,
  3369. 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c,
  3370. 0x6f, 0x61, 0x74, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3371. 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x00,
  3372. 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  3373. 0x12, 0x27, 0x0a, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f,
  3374. 0x6c, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0c, 0x75, 0x6e, 0x70,
  3375. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x48, 0x0a, 0x0d, 0x75, 0x6e, 0x70,
  3376. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e,
  3377. 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3378. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75,
  3379. 0x6d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0c, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45,
  3380. 0x6e, 0x75, 0x6d, 0x22, 0x20, 0x0a, 0x14, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65,
  3381. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10,
  3382. 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x22, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70,
  3383. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a,
  3384. 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x0c, 0x0a, 0x0a, 0x46, 0x6f, 0x6f,
  3385. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x0d, 0x0a, 0x0b, 0x46, 0x6f, 0x6f, 0x52, 0x65,
  3386. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x40, 0x0a, 0x0b, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67,
  3387. 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e,
  3388. 0x5f, 0x46, 0x4f, 0x4f, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47,
  3389. 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49,
  3390. 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x5a, 0x10, 0x06, 0x2a, 0x47, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74,
  3391. 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c,
  3392. 0x64, 0x73, 0x12, 0x11, 0x0a, 0x0d, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x5f, 0x45,
  3393. 0x4e, 0x55, 0x4d, 0x10, 0x00, 0x22, 0x04, 0x08, 0x02, 0x10, 0x02, 0x22, 0x04, 0x08, 0x0f, 0x10,
  3394. 0x0f, 0x22, 0x04, 0x08, 0x09, 0x10, 0x0b, 0x2a, 0x03, 0x42, 0x41, 0x52, 0x2a, 0x03, 0x42, 0x41,
  3395. 0x5a, 0x32, 0xa8, 0x01, 0x0a, 0x0b, 0x54, 0x65, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
  3396. 0x65, 0x12, 0x46, 0x0a, 0x03, 0x46, 0x6f, 0x6f, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3397. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  3398. 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3399. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  3400. 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0a, 0x54, 0x65, 0x73,
  3401. 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3402. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f,
  3403. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3404. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f,
  3405. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x01, 0x30, 0x01, 0x32, 0x85, 0x01, 0x0a,
  3406. 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x53,
  3407. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63,
  3408. 0x61, 0x74, 0x65, 0x64, 0x12, 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3409. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65,
  3410. 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a,
  3411. 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3412. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
  3413. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x1a,
  3414. 0x03, 0x88, 0x02, 0x01, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3415. 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3416. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3417. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3418. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x6f,
  3419. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  3420. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3421. 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3422. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3423. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3424. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16,
  3425. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74,
  3426. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3427. 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3428. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3429. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3430. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  3431. 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3432. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74,
  3433. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74,
  3434. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3435. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3436. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20,
  3437. 0x01, 0x28, 0x04, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e,
  3438. 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19,
  3439. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f,
  3440. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3441. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3442. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3443. 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3444. 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3445. 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74,
  3446. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3447. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3448. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3449. 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3450. 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3451. 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66,
  3452. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3453. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3454. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3455. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x18, 0x6f,
  3456. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78,
  3457. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3458. 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3459. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3460. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3461. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01,
  3462. 0x28, 0x06, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65,
  3463. 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b,
  3464. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  3465. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3466. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3467. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3468. 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3469. 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3470. 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  3471. 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3472. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3473. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3474. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52,
  3475. 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36,
  3476. 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70,
  3477. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74,
  3478. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3479. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3480. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0b, 0x20,
  3481. 0x01, 0x28, 0x02, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f,
  3482. 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f,
  3483. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65,
  3484. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3485. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3486. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3487. 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44,
  3488. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d,
  3489. 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f,
  3490. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3491. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3492. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3493. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3494. 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a,
  3495. 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3496. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3497. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3498. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3499. 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3500. 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3501. 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74,
  3502. 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3503. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3504. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3505. 0x6f, 0x6e, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3506. 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3507. 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72,
  3508. 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3509. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3510. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3511. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70,
  3512. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3513. 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78,
  3514. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3515. 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3516. 0xa0, 0x01, 0x0a, 0x21, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73,
  3517. 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3518. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3519. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3520. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x01,
  3521. 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3522. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  3523. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3524. 0x67, 0x65, 0x52, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74,
  3525. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3526. 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  3527. 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3528. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3529. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3530. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15, 0x20, 0x01,
  3531. 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3532. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  3533. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52,
  3534. 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  3535. 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18,
  3536. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65,
  3537. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3538. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3539. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3540. 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49,
  3541. 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a,
  3542. 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f,
  3543. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3544. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3545. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3546. 0x18, 0x20, 0x20, 0x03, 0x28, 0x03, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3547. 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61,
  3548. 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33,
  3549. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3550. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3551. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3552. 0x6e, 0x73, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3553. 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3554. 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69,
  3555. 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3556. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3557. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3558. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x22, 0x20, 0x03, 0x28, 0x04, 0x52, 0x17, 0x72, 0x65, 0x70,
  3559. 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3560. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3561. 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3562. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3563. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3564. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x17,
  3565. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78,
  3566. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61,
  3567. 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3568. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3569. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3570. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x24, 0x20, 0x03, 0x28,
  3571. 0x12, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36,
  3572. 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65,
  3573. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65,
  3574. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3575. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3576. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3577. 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46,
  3578. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3579. 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  3580. 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3581. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3582. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3583. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65,
  3584. 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3585. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3586. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3587. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3588. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3589. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f,
  3590. 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3591. 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72,
  3592. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3593. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3594. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3595. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3596. 0x73, 0x18, 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3597. 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3598. 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66,
  3599. 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3600. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3601. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3602. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x16, 0x72, 0x65, 0x70,
  3603. 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3604. 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  3605. 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3606. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3607. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3608. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x17, 0x72,
  3609. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74,
  3610. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3611. 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3612. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3613. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3614. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x15,
  3615. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3616. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3617. 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3618. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3619. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3620. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52,
  3621. 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45,
  3622. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65,
  3623. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3624. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3625. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3626. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28,
  3627. 0x0c, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73,
  3628. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x72, 0x65,
  3629. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3630. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3631. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3632. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2e, 0x20, 0x03,
  3633. 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3634. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3635. 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52,
  3636. 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78,
  3637. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x70, 0x65,
  3638. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73,
  3639. 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3640. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3641. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3642. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70,
  3643. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3644. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73,
  3645. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x72, 0x65, 0x70, 0x65,
  3646. 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3647. 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x72,
  3648. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65,
  3649. 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3650. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3651. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3652. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70,
  3653. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3654. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73,
  3655. 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3656. 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3657. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
  3658. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3659. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3660. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3661. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x51, 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31,
  3662. 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78,
  3663. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75,
  3664. 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3665. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3666. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3667. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a,
  3668. 0x02, 0x38, 0x32, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36,
  3669. 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65,
  3670. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3671. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3672. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3673. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x53, 0x20,
  3674. 0x01, 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3675. 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3676. 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36,
  3677. 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3678. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3679. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3680. 0x6e, 0x73, 0x18, 0x54, 0x20, 0x01, 0x28, 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x16, 0x64, 0x65,
  3681. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3682. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
  3683. 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3684. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3685. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3686. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d,
  3687. 0x38, 0x35, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33,
  3688. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65,
  3689. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74,
  3690. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3691. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3692. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x56, 0x20,
  3693. 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3694. 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3695. 0x65, 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  3696. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3697. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3698. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3699. 0x6f, 0x6e, 0x73, 0x18, 0x57, 0x20, 0x01, 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x17, 0x64,
  3700. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74,
  3701. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3702. 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3703. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3704. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3705. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06,
  3706. 0x3a, 0x02, 0x38, 0x38, 0x52, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78,
  3707. 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x67, 0x0a,
  3708. 0x1a, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  3709. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3710. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3711. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3712. 0x6e, 0x73, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38, 0x39, 0x52, 0x18, 0x64, 0x65,
  3713. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74,
  3714. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x1a, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3715. 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3716. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3717. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3718. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x50, 0x20, 0x01, 0x28,
  3719. 0x10, 0x3a, 0x03, 0x2d, 0x39, 0x30, 0x52, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53,
  3720. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3721. 0x3a, 0x63, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61,
  3722. 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3723. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3724. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3725. 0x6e, 0x73, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52, 0x15,
  3726. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65,
  3727. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3728. 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3729. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3730. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3731. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05,
  3732. 0x39, 0x32, 0x30, 0x30, 0x30, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f,
  3733. 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a,
  3734. 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78,
  3735. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3736. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3737. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d,
  3738. 0x20, 0x01, 0x28, 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x14, 0x64, 0x65, 0x66, 0x61,
  3739. 0x75, 0x6c, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3740. 0x3a, 0x66, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69,
  3741. 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3742. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3743. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3744. 0x6f, 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f,
  3745. 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45,
  3746. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61,
  3747. 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3748. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3749. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3750. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c,
  3751. 0x3a, 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3752. 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62,
  3753. 0x0a, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65,
  3754. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3755. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3756. 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3757. 0x6e, 0x73, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61,
  3758. 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3759. 0x6f, 0x6e, 0x3a, 0x62, 0x0a, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
  3760. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67,
  3761. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3762. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3763. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x01,
  3764. 0x52, 0x14, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74,
  3765. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3766. 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3767. 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3768. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65,
  3769. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x03, 0x28,
  3770. 0x0d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e,
  3771. 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17,
  3772. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78,
  3773. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3774. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3775. 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3776. 0x73, 0x18, 0x5d, 0x20, 0x03, 0x28, 0x04, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63,
  3777. 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3778. 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e,
  3779. 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e,
  3780. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3781. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74,
  3782. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10,
  3783. 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45,
  3784. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b,
  3785. 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3786. 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3787. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63,
  3788. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20,
  3789. 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53,
  3790. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66,
  3791. 0x0a, 0x18, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3792. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70,
  3793. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3794. 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3795. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x01, 0x52, 0x16,
  3796. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74,
  3797. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3798. 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3799. 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3800. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b,
  3801. 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x61, 0x20, 0x03,
  3802. 0x28, 0x06, 0x42, 0x02, 0x10, 0x01, 0x52, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69,
  3803. 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68,
  3804. 0x0a, 0x19, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  3805. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f,
  3806. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3807. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3808. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x01, 0x52,
  3809. 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45,
  3810. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x19, 0x70, 0x61, 0x63, 0x6b,
  3811. 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3812. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3813. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50,
  3814. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3815. 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02, 0x10, 0x01, 0x52, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3816. 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3817. 0x6f, 0x6e, 0x3a, 0x62, 0x0a, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f,
  3818. 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67,
  3819. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3820. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3821. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x01,
  3822. 0x52, 0x14, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74,
  3823. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3824. 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3825. 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3826. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65,
  3827. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x65, 0x20, 0x03, 0x28,
  3828. 0x01, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75,
  3829. 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x60, 0x0a, 0x15,
  3830. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3831. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3832. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50,
  3833. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3834. 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02, 0x10, 0x01, 0x52, 0x13, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3835. 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x81,
  3836. 0x01, 0x0a, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65,
  3837. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3838. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3839. 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3840. 0x6e, 0x73, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3841. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  3842. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x13, 0x70,
  3843. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3844. 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69,
  3845. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a,
  3846. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3847. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3848. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05,
  3849. 0x42, 0x02, 0x10, 0x00, 0x52, 0x16, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e,
  3850. 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18,
  3851. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65,
  3852. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3853. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3854. 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3855. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x00, 0x52, 0x16,
  3856. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74,
  3857. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3858. 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3859. 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3860. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70,
  3861. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3862. 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3863. 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3864. 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75,
  3865. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3866. 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3867. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3868. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x03, 0x28,
  3869. 0x04, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55,
  3870. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a,
  3871. 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33,
  3872. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f,
  3873. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3874. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74,
  3875. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10,
  3876. 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33,
  3877. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e,
  3878. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78,
  3879. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3880. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3881. 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3882. 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75,
  3883. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74,
  3884. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x0a, 0x1a, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3885. 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3886. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3887. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e,
  3888. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3889. 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x00, 0x52, 0x18, 0x75, 0x6e, 0x70, 0x61,
  3890. 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3891. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x0a, 0x1a, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3892. 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3893. 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3894. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61,
  3895. 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x61,
  3896. 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10, 0x00, 0x52, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3897. 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3898. 0x6f, 0x6e, 0x3a, 0x6e, 0x0a, 0x1b, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73,
  3899. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3900. 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3901. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63,
  3902. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x62, 0x20,
  3903. 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x00, 0x52, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3904. 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3905. 0x6f, 0x6e, 0x3a, 0x6e, 0x0a, 0x1b, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73,
  3906. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3907. 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3908. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63,
  3909. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x63, 0x20,
  3910. 0x03, 0x28, 0x10, 0x42, 0x02, 0x10, 0x00, 0x52, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3911. 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3912. 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66,
  3913. 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a,
  3914. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3915. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3916. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02,
  3917. 0x42, 0x02, 0x10, 0x00, 0x52, 0x16, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c,
  3918. 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19,
  3919. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f,
  3920. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3921. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3922. 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3923. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x00, 0x52,
  3924. 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45,
  3925. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x17, 0x75, 0x6e, 0x70, 0x61,
  3926. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3927. 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3928. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70,
  3929. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3930. 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02, 0x10, 0x00, 0x52, 0x15, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3931. 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3932. 0x3a, 0x87, 0x01, 0x0a, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e,
  3933. 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67,
  3934. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3935. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3936. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f,
  3937. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3938. 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42,
  3939. 0x02, 0x10, 0x00, 0x52, 0x15, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75,
  3940. 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x35, 0x5a, 0x33, 0x67, 0x6f,
  3941. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
  3942. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
  3943. 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x74, 0x65, 0x73,
  3944. 0x74, 0x50, 0x01, 0x58, 0x02, 0x58, 0x03,
  3945. }
  3946. var (
  3947. file_test_test_proto_rawDescOnce sync.Once
  3948. file_test_test_proto_rawDescData = file_test_test_proto_rawDesc
  3949. )
  3950. func file_test_test_proto_rawDescGZIP() []byte {
  3951. file_test_test_proto_rawDescOnce.Do(func() {
  3952. file_test_test_proto_rawDescData = protoimpl.X.CompressGZIP(file_test_test_proto_rawDescData)
  3953. })
  3954. return file_test_test_proto_rawDescData
  3955. }
  3956. var file_test_test_proto_enumTypes = make([]prototype.Enum, 4)
  3957. var file_test_test_proto_msgTypes = make([]protoimpl.MessageInfo, 41)
  3958. var file_test_test_proto_goTypes = []interface{}{
  3959. (ForeignEnum)(0), // 0: goproto.proto.test.ForeignEnum
  3960. (TestReservedEnumFields)(0), // 1: goproto.proto.test.TestReservedEnumFields
  3961. (TestAllTypes_NestedEnum)(0), // 2: goproto.proto.test.TestAllTypes.NestedEnum
  3962. (TestDeprecatedMessage_DeprecatedEnum)(0), // 3: goproto.proto.test.TestDeprecatedMessage.DeprecatedEnum
  3963. (*TestAllTypes)(nil), // 4: goproto.proto.test.TestAllTypes
  3964. (*TestDeprecatedMessage)(nil), // 5: goproto.proto.test.TestDeprecatedMessage
  3965. (*ForeignMessage)(nil), // 6: goproto.proto.test.ForeignMessage
  3966. (*TestReservedFields)(nil), // 7: goproto.proto.test.TestReservedFields
  3967. (*TestAllExtensions)(nil), // 8: goproto.proto.test.TestAllExtensions
  3968. (*OptionalGroupExtension)(nil), // 9: goproto.proto.test.OptionalGroup_extension
  3969. (*RepeatedGroupExtension)(nil), // 10: goproto.proto.test.RepeatedGroup_extension
  3970. (*TestNestedExtension)(nil), // 11: goproto.proto.test.TestNestedExtension
  3971. (*TestRequired)(nil), // 12: goproto.proto.test.TestRequired
  3972. (*TestRequiredForeign)(nil), // 13: goproto.proto.test.TestRequiredForeign
  3973. (*TestRequiredGroupFields)(nil), // 14: goproto.proto.test.TestRequiredGroupFields
  3974. (*TestWeak)(nil), // 15: goproto.proto.test.TestWeak
  3975. (*TestPackedTypes)(nil), // 16: goproto.proto.test.TestPackedTypes
  3976. (*TestUnpackedTypes)(nil), // 17: goproto.proto.test.TestUnpackedTypes
  3977. (*TestPackedExtensions)(nil), // 18: goproto.proto.test.TestPackedExtensions
  3978. (*TestUnpackedExtensions)(nil), // 19: goproto.proto.test.TestUnpackedExtensions
  3979. (*FooRequest)(nil), // 20: goproto.proto.test.FooRequest
  3980. (*FooResponse)(nil), // 21: goproto.proto.test.FooResponse
  3981. (*TestAllTypes_NestedMessage)(nil), // 22: goproto.proto.test.TestAllTypes.NestedMessage
  3982. (*TestAllTypes_OptionalGroup)(nil), // 23: goproto.proto.test.TestAllTypes.OptionalGroup
  3983. (*TestAllTypes_RepeatedGroup)(nil), // 24: goproto.proto.test.TestAllTypes.RepeatedGroup
  3984. nil, // 25: goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  3985. nil, // 26: goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  3986. nil, // 27: goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  3987. nil, // 28: goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  3988. nil, // 29: goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  3989. nil, // 30: goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  3990. nil, // 31: goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  3991. nil, // 32: goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  3992. nil, // 33: goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  3993. nil, // 34: goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  3994. nil, // 35: goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  3995. nil, // 36: goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  3996. nil, // 37: goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  3997. nil, // 38: goproto.proto.test.TestAllTypes.MapStringStringEntry
  3998. nil, // 39: goproto.proto.test.TestAllTypes.MapStringBytesEntry
  3999. nil, // 40: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  4000. nil, // 41: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  4001. nil, // 42: goproto.proto.test.TestRequiredForeign.MapMessageEntry
  4002. (*TestRequiredGroupFields_OptionalGroup)(nil), // 43: goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  4003. (*TestRequiredGroupFields_RepeatedGroup)(nil), // 44: goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  4004. (*ImportMessage)(nil), // 45: goproto.proto.test.ImportMessage
  4005. (ImportEnum)(0), // 46: goproto.proto.test.ImportEnum
  4006. }
  4007. var file_test_test_proto_depIdxs = []int32{
  4008. 23, // goproto.proto.test.TestAllTypes.optionalgroup:type_name -> goproto.proto.test.TestAllTypes.OptionalGroup
  4009. 22, // goproto.proto.test.TestAllTypes.optional_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4010. 6, // goproto.proto.test.TestAllTypes.optional_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  4011. 45, // goproto.proto.test.TestAllTypes.optional_import_message:type_name -> goproto.proto.test.ImportMessage
  4012. 2, // goproto.proto.test.TestAllTypes.optional_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4013. 0, // goproto.proto.test.TestAllTypes.optional_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4014. 46, // goproto.proto.test.TestAllTypes.optional_import_enum:type_name -> goproto.proto.test.ImportEnum
  4015. 24, // goproto.proto.test.TestAllTypes.repeatedgroup:type_name -> goproto.proto.test.TestAllTypes.RepeatedGroup
  4016. 22, // goproto.proto.test.TestAllTypes.repeated_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4017. 6, // goproto.proto.test.TestAllTypes.repeated_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  4018. 45, // goproto.proto.test.TestAllTypes.repeated_importmessage:type_name -> goproto.proto.test.ImportMessage
  4019. 2, // goproto.proto.test.TestAllTypes.repeated_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4020. 0, // goproto.proto.test.TestAllTypes.repeated_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4021. 46, // goproto.proto.test.TestAllTypes.repeated_importenum:type_name -> goproto.proto.test.ImportEnum
  4022. 25, // goproto.proto.test.TestAllTypes.map_int32_int32:type_name -> goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  4023. 26, // goproto.proto.test.TestAllTypes.map_int64_int64:type_name -> goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  4024. 27, // goproto.proto.test.TestAllTypes.map_uint32_uint32:type_name -> goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  4025. 28, // goproto.proto.test.TestAllTypes.map_uint64_uint64:type_name -> goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  4026. 29, // goproto.proto.test.TestAllTypes.map_sint32_sint32:type_name -> goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  4027. 30, // goproto.proto.test.TestAllTypes.map_sint64_sint64:type_name -> goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  4028. 31, // goproto.proto.test.TestAllTypes.map_fixed32_fixed32:type_name -> goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  4029. 32, // goproto.proto.test.TestAllTypes.map_fixed64_fixed64:type_name -> goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  4030. 33, // goproto.proto.test.TestAllTypes.map_sfixed32_sfixed32:type_name -> goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  4031. 34, // goproto.proto.test.TestAllTypes.map_sfixed64_sfixed64:type_name -> goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  4032. 35, // goproto.proto.test.TestAllTypes.map_int32_float:type_name -> goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  4033. 36, // goproto.proto.test.TestAllTypes.map_int32_double:type_name -> goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  4034. 37, // goproto.proto.test.TestAllTypes.map_bool_bool:type_name -> goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  4035. 38, // goproto.proto.test.TestAllTypes.map_string_string:type_name -> goproto.proto.test.TestAllTypes.MapStringStringEntry
  4036. 39, // goproto.proto.test.TestAllTypes.map_string_bytes:type_name -> goproto.proto.test.TestAllTypes.MapStringBytesEntry
  4037. 40, // goproto.proto.test.TestAllTypes.map_string_nested_message:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  4038. 41, // goproto.proto.test.TestAllTypes.map_string_nested_enum:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  4039. 2, // goproto.proto.test.TestAllTypes.default_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4040. 0, // goproto.proto.test.TestAllTypes.default_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4041. 22, // goproto.proto.test.TestAllTypes.oneof_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4042. 2, // goproto.proto.test.TestAllTypes.oneof_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4043. 12, // goproto.proto.test.TestRequiredForeign.optional_message:type_name -> goproto.proto.test.TestRequired
  4044. 12, // goproto.proto.test.TestRequiredForeign.repeated_message:type_name -> goproto.proto.test.TestRequired
  4045. 42, // goproto.proto.test.TestRequiredForeign.map_message:type_name -> goproto.proto.test.TestRequiredForeign.MapMessageEntry
  4046. 12, // goproto.proto.test.TestRequiredForeign.oneof_message:type_name -> goproto.proto.test.TestRequired
  4047. 43, // goproto.proto.test.TestRequiredGroupFields.optionalgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  4048. 44, // goproto.proto.test.TestRequiredGroupFields.repeatedgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  4049. 0, // goproto.proto.test.TestPackedTypes.packed_enum:type_name -> goproto.proto.test.ForeignEnum
  4050. 0, // goproto.proto.test.TestUnpackedTypes.unpacked_enum:type_name -> goproto.proto.test.ForeignEnum
  4051. 4, // goproto.proto.test.TestAllTypes.NestedMessage.corecursive:type_name -> goproto.proto.test.TestAllTypes
  4052. 22, // goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4053. 2, // goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4054. 12, // goproto.proto.test.TestRequiredForeign.MapMessageEntry.value:type_name -> goproto.proto.test.TestRequired
  4055. 8, // goproto.proto.test.optional_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4056. 8, // goproto.proto.test.optional_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4057. 8, // goproto.proto.test.optional_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4058. 8, // goproto.proto.test.optional_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4059. 8, // goproto.proto.test.optional_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4060. 8, // goproto.proto.test.optional_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4061. 8, // goproto.proto.test.optional_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4062. 8, // goproto.proto.test.optional_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4063. 8, // goproto.proto.test.optional_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4064. 8, // goproto.proto.test.optional_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4065. 8, // goproto.proto.test.optional_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4066. 8, // goproto.proto.test.optional_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4067. 8, // goproto.proto.test.optional_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4068. 8, // goproto.proto.test.optional_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4069. 8, // goproto.proto.test.optional_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4070. 8, // goproto.proto.test.optionalgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  4071. 8, // goproto.proto.test.optional_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  4072. 8, // goproto.proto.test.optional_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  4073. 8, // goproto.proto.test.repeated_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4074. 8, // goproto.proto.test.repeated_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4075. 8, // goproto.proto.test.repeated_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4076. 8, // goproto.proto.test.repeated_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4077. 8, // goproto.proto.test.repeated_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4078. 8, // goproto.proto.test.repeated_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4079. 8, // goproto.proto.test.repeated_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4080. 8, // goproto.proto.test.repeated_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4081. 8, // goproto.proto.test.repeated_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4082. 8, // goproto.proto.test.repeated_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4083. 8, // goproto.proto.test.repeated_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4084. 8, // goproto.proto.test.repeated_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4085. 8, // goproto.proto.test.repeated_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4086. 8, // goproto.proto.test.repeated_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4087. 8, // goproto.proto.test.repeated_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4088. 8, // goproto.proto.test.repeatedgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  4089. 8, // goproto.proto.test.repeated_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  4090. 8, // goproto.proto.test.repeated_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  4091. 8, // goproto.proto.test.default_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4092. 8, // goproto.proto.test.default_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4093. 8, // goproto.proto.test.default_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4094. 8, // goproto.proto.test.default_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4095. 8, // goproto.proto.test.default_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4096. 8, // goproto.proto.test.default_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4097. 8, // goproto.proto.test.default_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4098. 8, // goproto.proto.test.default_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4099. 8, // goproto.proto.test.default_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4100. 8, // goproto.proto.test.default_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4101. 8, // goproto.proto.test.default_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4102. 8, // goproto.proto.test.default_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4103. 8, // goproto.proto.test.default_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4104. 8, // goproto.proto.test.default_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4105. 8, // goproto.proto.test.default_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4106. 18, // goproto.proto.test.packed_int32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4107. 18, // goproto.proto.test.packed_int64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4108. 18, // goproto.proto.test.packed_uint32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4109. 18, // goproto.proto.test.packed_uint64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4110. 18, // goproto.proto.test.packed_sint32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4111. 18, // goproto.proto.test.packed_sint64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4112. 18, // goproto.proto.test.packed_fixed32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4113. 18, // goproto.proto.test.packed_fixed64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4114. 18, // goproto.proto.test.packed_sfixed32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4115. 18, // goproto.proto.test.packed_sfixed64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4116. 18, // goproto.proto.test.packed_float_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4117. 18, // goproto.proto.test.packed_double_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4118. 18, // goproto.proto.test.packed_bool_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4119. 18, // goproto.proto.test.packed_enum_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4120. 19, // goproto.proto.test.unpacked_int32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4121. 19, // goproto.proto.test.unpacked_int64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4122. 19, // goproto.proto.test.unpacked_uint32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4123. 19, // goproto.proto.test.unpacked_uint64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4124. 19, // goproto.proto.test.unpacked_sint32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4125. 19, // goproto.proto.test.unpacked_sint64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4126. 19, // goproto.proto.test.unpacked_fixed32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4127. 19, // goproto.proto.test.unpacked_fixed64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4128. 19, // goproto.proto.test.unpacked_sfixed32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4129. 19, // goproto.proto.test.unpacked_sfixed64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4130. 19, // goproto.proto.test.unpacked_float_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4131. 19, // goproto.proto.test.unpacked_double_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4132. 19, // goproto.proto.test.unpacked_bool_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4133. 19, // goproto.proto.test.unpacked_enum_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4134. 8, // goproto.proto.test.TestNestedExtension.nested_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4135. 8, // goproto.proto.test.TestRequired.single:extendee -> goproto.proto.test.TestAllExtensions
  4136. 8, // goproto.proto.test.TestRequired.multi:extendee -> goproto.proto.test.TestAllExtensions
  4137. 9, // goproto.proto.test.optionalgroup_extension:type_name -> goproto.proto.test.OptionalGroup_extension
  4138. 22, // goproto.proto.test.optional_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4139. 2, // goproto.proto.test.optional_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4140. 10, // goproto.proto.test.repeatedgroup_extension:type_name -> goproto.proto.test.RepeatedGroup_extension
  4141. 22, // goproto.proto.test.repeated_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4142. 2, // goproto.proto.test.repeated_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4143. 0, // goproto.proto.test.packed_enum_extension:type_name -> goproto.proto.test.ForeignEnum
  4144. 0, // goproto.proto.test.unpacked_enum_extension:type_name -> goproto.proto.test.ForeignEnum
  4145. 12, // goproto.proto.test.TestRequired.single:type_name -> goproto.proto.test.TestRequired
  4146. 12, // goproto.proto.test.TestRequired.multi:type_name -> goproto.proto.test.TestRequired
  4147. 20, // goproto.proto.test.TestService.Foo:input_type -> goproto.proto.test.FooRequest
  4148. 20, // goproto.proto.test.TestService.TestStream:input_type -> goproto.proto.test.FooRequest
  4149. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:input_type -> goproto.proto.test.TestDeprecatedMessage
  4150. 21, // goproto.proto.test.TestService.Foo:output_type -> goproto.proto.test.FooResponse
  4151. 21, // goproto.proto.test.TestService.TestStream:output_type -> goproto.proto.test.FooResponse
  4152. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:output_type -> goproto.proto.test.TestDeprecatedMessage
  4153. 142, // starting offset of method output_type sub-list
  4154. 139, // starting offset of method input_type sub-list
  4155. 129, // starting offset of extension type_name sub-list
  4156. 47, // starting offset of extension extendee sub-list
  4157. 0, // starting offset of field type_name sub-list
  4158. }
  4159. func init() { file_test_test_proto_init() }
  4160. func file_test_test_proto_init() {
  4161. if File_test_test_proto != nil {
  4162. return
  4163. }
  4164. file_test_test_import_proto_init()
  4165. file_test_test_public_proto_init()
  4166. if !protoimpl.UnsafeEnabled {
  4167. file_test_test_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4168. switch v := v.(*TestAllTypes); i {
  4169. case 0:
  4170. return &v.state
  4171. case 80:
  4172. return &v.sizeCache
  4173. case 81:
  4174. return &v.unknownFields
  4175. default:
  4176. return nil
  4177. }
  4178. }
  4179. file_test_test_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4180. switch v := v.(*TestDeprecatedMessage); i {
  4181. case 0:
  4182. return &v.state
  4183. case 3:
  4184. return &v.sizeCache
  4185. case 4:
  4186. return &v.unknownFields
  4187. default:
  4188. return nil
  4189. }
  4190. }
  4191. file_test_test_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4192. switch v := v.(*ForeignMessage); i {
  4193. case 0:
  4194. return &v.state
  4195. case 3:
  4196. return &v.sizeCache
  4197. case 4:
  4198. return &v.unknownFields
  4199. default:
  4200. return nil
  4201. }
  4202. }
  4203. file_test_test_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4204. switch v := v.(*TestReservedFields); i {
  4205. case 0:
  4206. return &v.state
  4207. case 1:
  4208. return &v.sizeCache
  4209. case 2:
  4210. return &v.unknownFields
  4211. default:
  4212. return nil
  4213. }
  4214. }
  4215. file_test_test_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4216. switch v := v.(*TestAllExtensions); i {
  4217. case 0:
  4218. return &v.state
  4219. case 1:
  4220. return &v.sizeCache
  4221. case 2:
  4222. return &v.unknownFields
  4223. case 3:
  4224. return &v.extensionFields
  4225. default:
  4226. return nil
  4227. }
  4228. }
  4229. file_test_test_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4230. switch v := v.(*OptionalGroupExtension); i {
  4231. case 0:
  4232. return &v.state
  4233. case 2:
  4234. return &v.sizeCache
  4235. case 3:
  4236. return &v.unknownFields
  4237. default:
  4238. return nil
  4239. }
  4240. }
  4241. file_test_test_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4242. switch v := v.(*RepeatedGroupExtension); i {
  4243. case 0:
  4244. return &v.state
  4245. case 2:
  4246. return &v.sizeCache
  4247. case 3:
  4248. return &v.unknownFields
  4249. default:
  4250. return nil
  4251. }
  4252. }
  4253. file_test_test_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4254. switch v := v.(*TestNestedExtension); i {
  4255. case 0:
  4256. return &v.state
  4257. case 1:
  4258. return &v.sizeCache
  4259. case 2:
  4260. return &v.unknownFields
  4261. default:
  4262. return nil
  4263. }
  4264. }
  4265. file_test_test_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4266. switch v := v.(*TestRequired); i {
  4267. case 0:
  4268. return &v.state
  4269. case 2:
  4270. return &v.sizeCache
  4271. case 3:
  4272. return &v.unknownFields
  4273. default:
  4274. return nil
  4275. }
  4276. }
  4277. file_test_test_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4278. switch v := v.(*TestRequiredForeign); i {
  4279. case 0:
  4280. return &v.state
  4281. case 5:
  4282. return &v.sizeCache
  4283. case 6:
  4284. return &v.unknownFields
  4285. default:
  4286. return nil
  4287. }
  4288. }
  4289. file_test_test_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4290. switch v := v.(*TestRequiredGroupFields); i {
  4291. case 0:
  4292. return &v.state
  4293. case 3:
  4294. return &v.sizeCache
  4295. case 4:
  4296. return &v.unknownFields
  4297. default:
  4298. return nil
  4299. }
  4300. }
  4301. file_test_test_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4302. switch v := v.(*TestWeak); i {
  4303. case 0:
  4304. return &v.state
  4305. case 3:
  4306. return &v.sizeCache
  4307. case 5:
  4308. return &v.unknownFields
  4309. default:
  4310. return nil
  4311. }
  4312. }
  4313. file_test_test_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4314. switch v := v.(*TestPackedTypes); i {
  4315. case 0:
  4316. return &v.state
  4317. case 15:
  4318. return &v.sizeCache
  4319. case 16:
  4320. return &v.unknownFields
  4321. default:
  4322. return nil
  4323. }
  4324. }
  4325. file_test_test_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4326. switch v := v.(*TestUnpackedTypes); i {
  4327. case 0:
  4328. return &v.state
  4329. case 15:
  4330. return &v.sizeCache
  4331. case 16:
  4332. return &v.unknownFields
  4333. default:
  4334. return nil
  4335. }
  4336. }
  4337. file_test_test_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4338. switch v := v.(*TestPackedExtensions); i {
  4339. case 0:
  4340. return &v.state
  4341. case 1:
  4342. return &v.sizeCache
  4343. case 2:
  4344. return &v.unknownFields
  4345. case 3:
  4346. return &v.extensionFields
  4347. default:
  4348. return nil
  4349. }
  4350. }
  4351. file_test_test_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4352. switch v := v.(*TestUnpackedExtensions); i {
  4353. case 0:
  4354. return &v.state
  4355. case 1:
  4356. return &v.sizeCache
  4357. case 2:
  4358. return &v.unknownFields
  4359. case 3:
  4360. return &v.extensionFields
  4361. default:
  4362. return nil
  4363. }
  4364. }
  4365. file_test_test_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4366. switch v := v.(*FooRequest); i {
  4367. case 0:
  4368. return &v.state
  4369. case 1:
  4370. return &v.sizeCache
  4371. case 2:
  4372. return &v.unknownFields
  4373. default:
  4374. return nil
  4375. }
  4376. }
  4377. file_test_test_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4378. switch v := v.(*FooResponse); i {
  4379. case 0:
  4380. return &v.state
  4381. case 1:
  4382. return &v.sizeCache
  4383. case 2:
  4384. return &v.unknownFields
  4385. default:
  4386. return nil
  4387. }
  4388. }
  4389. file_test_test_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4390. switch v := v.(*TestAllTypes_NestedMessage); i {
  4391. case 0:
  4392. return &v.state
  4393. case 3:
  4394. return &v.sizeCache
  4395. case 4:
  4396. return &v.unknownFields
  4397. default:
  4398. return nil
  4399. }
  4400. }
  4401. file_test_test_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4402. switch v := v.(*TestAllTypes_OptionalGroup); i {
  4403. case 0:
  4404. return &v.state
  4405. case 2:
  4406. return &v.sizeCache
  4407. case 3:
  4408. return &v.unknownFields
  4409. default:
  4410. return nil
  4411. }
  4412. }
  4413. file_test_test_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4414. switch v := v.(*TestAllTypes_RepeatedGroup); i {
  4415. case 0:
  4416. return &v.state
  4417. case 2:
  4418. return &v.sizeCache
  4419. case 3:
  4420. return &v.unknownFields
  4421. default:
  4422. return nil
  4423. }
  4424. }
  4425. file_test_test_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4426. switch v := v.(*TestRequiredGroupFields_OptionalGroup); i {
  4427. case 0:
  4428. return &v.state
  4429. case 2:
  4430. return &v.sizeCache
  4431. case 3:
  4432. return &v.unknownFields
  4433. default:
  4434. return nil
  4435. }
  4436. }
  4437. file_test_test_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4438. switch v := v.(*TestRequiredGroupFields_RepeatedGroup); i {
  4439. case 0:
  4440. return &v.state
  4441. case 2:
  4442. return &v.sizeCache
  4443. case 3:
  4444. return &v.unknownFields
  4445. default:
  4446. return nil
  4447. }
  4448. }
  4449. }
  4450. file_test_test_proto_msgTypes[0].OneofWrappers = []interface{}{
  4451. (*TestAllTypes_OneofUint32)(nil),
  4452. (*TestAllTypes_OneofNestedMessage)(nil),
  4453. (*TestAllTypes_OneofString)(nil),
  4454. (*TestAllTypes_OneofBytes)(nil),
  4455. (*TestAllTypes_OneofBool)(nil),
  4456. (*TestAllTypes_OneofUint64)(nil),
  4457. (*TestAllTypes_OneofFloat)(nil),
  4458. (*TestAllTypes_OneofDouble)(nil),
  4459. (*TestAllTypes_OneofEnum)(nil),
  4460. }
  4461. file_test_test_proto_msgTypes[1].OneofWrappers = []interface{}{
  4462. (*TestDeprecatedMessage_DeprecatedOneofField)(nil),
  4463. }
  4464. file_test_test_proto_msgTypes[9].OneofWrappers = []interface{}{
  4465. (*TestRequiredForeign_OneofMessage)(nil),
  4466. }
  4467. out := protoimpl.TypeBuilder{
  4468. File: protoimpl.DescBuilder{
  4469. RawDescriptor: file_test_test_proto_rawDesc,
  4470. NumEnums: 4,
  4471. NumMessages: 41,
  4472. NumExtensions: 82,
  4473. NumServices: 2,
  4474. },
  4475. GoTypes: file_test_test_proto_goTypes,
  4476. DependencyIndexes: file_test_test_proto_depIdxs,
  4477. MessageInfos: file_test_test_proto_msgTypes,
  4478. LegacyExtensions: file_test_test_proto_extDescs,
  4479. }.Build()
  4480. File_test_test_proto = out.File
  4481. file_test_test_proto_enumTypes = out.Enums
  4482. file_test_test_proto_rawDesc = nil
  4483. file_test_test_proto_goTypes = nil
  4484. file_test_test_proto_depIdxs = nil
  4485. }