test.pb.go 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: test/test.proto
  3. package test
  4. import (
  5. weak "github.com/golang/protobuf/v2/internal/testprotos/test/weak"
  6. protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect"
  7. protoregistry "github.com/golang/protobuf/v2/reflect/protoregistry"
  8. protoiface "github.com/golang/protobuf/v2/runtime/protoiface"
  9. protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl"
  10. sync "sync"
  11. )
  12. const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
  13. type ForeignEnum int32
  14. const (
  15. ForeignEnum_FOREIGN_FOO ForeignEnum = 4
  16. ForeignEnum_FOREIGN_BAR ForeignEnum = 5
  17. ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
  18. )
  19. // Deprecated: Use ForeignEnum.Type.Values instead.
  20. var ForeignEnum_name = map[int32]string{
  21. 4: "FOREIGN_FOO",
  22. 5: "FOREIGN_BAR",
  23. 6: "FOREIGN_BAZ",
  24. }
  25. // Deprecated: Use ForeignEnum.Type.Values instead.
  26. var ForeignEnum_value = map[string]int32{
  27. "FOREIGN_FOO": 4,
  28. "FOREIGN_BAR": 5,
  29. "FOREIGN_BAZ": 6,
  30. }
  31. func (x ForeignEnum) Enum() *ForeignEnum {
  32. p := new(ForeignEnum)
  33. *p = x
  34. return p
  35. }
  36. func (x ForeignEnum) String() string {
  37. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  38. }
  39. func (ForeignEnum) Type() protoreflect.EnumType {
  40. return file_test_test_proto_enumTypes[0]
  41. }
  42. func (x ForeignEnum) Number() protoreflect.EnumNumber {
  43. return protoreflect.EnumNumber(x)
  44. }
  45. // Deprecated: Do not use.
  46. func (x *ForeignEnum) UnmarshalJSON(b []byte) error {
  47. num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
  48. if err != nil {
  49. return err
  50. }
  51. *x = ForeignEnum(num)
  52. return nil
  53. }
  54. // Deprecated: Use ForeignEnum.Type instead.
  55. func (ForeignEnum) EnumDescriptor() ([]byte, []int) {
  56. return file_test_test_proto_rawDescGZIP(), []int{0}
  57. }
  58. type TestReservedEnumFields int32
  59. const (
  60. TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0
  61. )
  62. // Deprecated: Use TestReservedEnumFields.Type.Values instead.
  63. var TestReservedEnumFields_name = map[int32]string{
  64. 0: "RESERVED_ENUM",
  65. }
  66. // Deprecated: Use TestReservedEnumFields.Type.Values instead.
  67. var TestReservedEnumFields_value = map[string]int32{
  68. "RESERVED_ENUM": 0,
  69. }
  70. func (x TestReservedEnumFields) Enum() *TestReservedEnumFields {
  71. p := new(TestReservedEnumFields)
  72. *p = x
  73. return p
  74. }
  75. func (x TestReservedEnumFields) String() string {
  76. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  77. }
  78. func (TestReservedEnumFields) Type() protoreflect.EnumType {
  79. return file_test_test_proto_enumTypes[1]
  80. }
  81. func (x TestReservedEnumFields) Number() protoreflect.EnumNumber {
  82. return protoreflect.EnumNumber(x)
  83. }
  84. // Deprecated: Do not use.
  85. func (x *TestReservedEnumFields) UnmarshalJSON(b []byte) error {
  86. num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
  87. if err != nil {
  88. return err
  89. }
  90. *x = TestReservedEnumFields(num)
  91. return nil
  92. }
  93. // Deprecated: Use TestReservedEnumFields.Type instead.
  94. func (TestReservedEnumFields) EnumDescriptor() ([]byte, []int) {
  95. return file_test_test_proto_rawDescGZIP(), []int{1}
  96. }
  97. type TestAllTypes_NestedEnum int32
  98. const (
  99. TestAllTypes_FOO TestAllTypes_NestedEnum = 0
  100. TestAllTypes_BAR TestAllTypes_NestedEnum = 1
  101. TestAllTypes_BAZ TestAllTypes_NestedEnum = 2
  102. TestAllTypes_NEG TestAllTypes_NestedEnum = -1
  103. )
  104. // Deprecated: Use TestAllTypes_NestedEnum.Type.Values instead.
  105. var TestAllTypes_NestedEnum_name = map[int32]string{
  106. 0: "FOO",
  107. 1: "BAR",
  108. 2: "BAZ",
  109. -1: "NEG",
  110. }
  111. // Deprecated: Use TestAllTypes_NestedEnum.Type.Values instead.
  112. var TestAllTypes_NestedEnum_value = map[string]int32{
  113. "FOO": 0,
  114. "BAR": 1,
  115. "BAZ": 2,
  116. "NEG": -1,
  117. }
  118. func (x TestAllTypes_NestedEnum) Enum() *TestAllTypes_NestedEnum {
  119. p := new(TestAllTypes_NestedEnum)
  120. *p = x
  121. return p
  122. }
  123. func (x TestAllTypes_NestedEnum) String() string {
  124. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  125. }
  126. func (TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
  127. return file_test_test_proto_enumTypes[2]
  128. }
  129. func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
  130. return protoreflect.EnumNumber(x)
  131. }
  132. // Deprecated: Do not use.
  133. func (x *TestAllTypes_NestedEnum) UnmarshalJSON(b []byte) error {
  134. num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
  135. if err != nil {
  136. return err
  137. }
  138. *x = TestAllTypes_NestedEnum(num)
  139. return nil
  140. }
  141. // Deprecated: Use TestAllTypes_NestedEnum.Type instead.
  142. func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) {
  143. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  144. }
  145. type TestDeprecatedMessage_DeprecatedEnum int32 // Deprecated: Do not use.
  146. const (
  147. TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0 // Deprecated: Do not use.
  148. )
  149. // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type.Values instead.
  150. var TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{
  151. 0: "DEPRECATED",
  152. }
  153. // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type.Values instead.
  154. var TestDeprecatedMessage_DeprecatedEnum_value = map[string]int32{
  155. "DEPRECATED": 0,
  156. }
  157. func (x TestDeprecatedMessage_DeprecatedEnum) Enum() *TestDeprecatedMessage_DeprecatedEnum {
  158. p := new(TestDeprecatedMessage_DeprecatedEnum)
  159. *p = x
  160. return p
  161. }
  162. func (x TestDeprecatedMessage_DeprecatedEnum) String() string {
  163. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  164. }
  165. func (TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType {
  166. return file_test_test_proto_enumTypes[3]
  167. }
  168. func (x TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
  169. return protoreflect.EnumNumber(x)
  170. }
  171. // Deprecated: Do not use.
  172. func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(b []byte) error {
  173. num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
  174. if err != nil {
  175. return err
  176. }
  177. *x = TestDeprecatedMessage_DeprecatedEnum(num)
  178. return nil
  179. }
  180. // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type instead.
  181. func (TestDeprecatedMessage_DeprecatedEnum) EnumDescriptor() ([]byte, []int) {
  182. return file_test_test_proto_rawDescGZIP(), []int{1, 0}
  183. }
  184. type TestAllTypes struct {
  185. OptionalInt32 *int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
  186. OptionalInt64 *int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
  187. OptionalUint32 *uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
  188. OptionalUint64 *uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
  189. OptionalSint32 *int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
  190. OptionalSint64 *int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
  191. OptionalFixed32 *uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
  192. OptionalFixed64 *uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
  193. OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
  194. OptionalSfixed64 *int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
  195. OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
  196. OptionalDouble *float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
  197. OptionalBool *bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
  198. OptionalString *string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
  199. OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"`
  200. Optionalgroup *TestAllTypes_OptionalGroup `protobuf:"group,16,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  201. OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"`
  202. OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"`
  203. OptionalImportMessage *ImportMessage `protobuf:"bytes,20,opt,name=optional_import_message,json=optionalImportMessage" json:"optional_import_message,omitempty"`
  204. OptionalNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"`
  205. OptionalForeignEnum *ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"optional_foreign_enum,omitempty"`
  206. OptionalImportEnum *ImportEnum `protobuf:"varint,23,opt,name=optional_import_enum,json=optionalImportEnum,enum=goproto.proto.test.ImportEnum" json:"optional_import_enum,omitempty"`
  207. RepeatedInt32 []int32 `protobuf:"varint,31,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
  208. RepeatedInt64 []int64 `protobuf:"varint,32,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
  209. RepeatedUint32 []uint32 `protobuf:"varint,33,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
  210. RepeatedUint64 []uint64 `protobuf:"varint,34,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
  211. RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
  212. RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
  213. RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
  214. RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
  215. RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
  216. RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
  217. RepeatedFloat []float32 `protobuf:"fixed32,41,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
  218. RepeatedDouble []float64 `protobuf:"fixed64,42,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
  219. RepeatedBool []bool `protobuf:"varint,43,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
  220. RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
  221. RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"`
  222. Repeatedgroup []*TestAllTypes_RepeatedGroup `protobuf:"group,46,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  223. RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"`
  224. RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"`
  225. RepeatedImportmessage []*ImportMessage `protobuf:"bytes,50,rep,name=repeated_importmessage,json=repeatedImportmessage" json:"repeated_importmessage,omitempty"`
  226. RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,name=repeated_nested_enum,json=repeatedNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"`
  227. RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"repeated_foreign_enum,omitempty"`
  228. RepeatedImportenum []ImportEnum `protobuf:"varint,53,rep,name=repeated_importenum,json=repeatedImportenum,enum=goproto.proto.test.ImportEnum" json:"repeated_importenum,omitempty"`
  229. 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"`
  230. 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"`
  231. 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"`
  232. 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"`
  233. 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"`
  234. 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"`
  235. 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"`
  236. 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"`
  237. 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"`
  238. 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"`
  239. 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"`
  240. 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"`
  241. 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"`
  242. 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"`
  243. 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"`
  244. 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"`
  245. 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"`
  246. // Singular with defaults
  247. DefaultInt32 *int32 `protobuf:"varint,81,opt,name=default_int32,json=defaultInt32,def=81" json:"default_int32,omitempty"`
  248. DefaultInt64 *int64 `protobuf:"varint,82,opt,name=default_int64,json=defaultInt64,def=82" json:"default_int64,omitempty"`
  249. DefaultUint32 *uint32 `protobuf:"varint,83,opt,name=default_uint32,json=defaultUint32,def=83" json:"default_uint32,omitempty"`
  250. DefaultUint64 *uint64 `protobuf:"varint,84,opt,name=default_uint64,json=defaultUint64,def=84" json:"default_uint64,omitempty"`
  251. DefaultSint32 *int32 `protobuf:"zigzag32,85,opt,name=default_sint32,json=defaultSint32,def=-85" json:"default_sint32,omitempty"`
  252. DefaultSint64 *int64 `protobuf:"zigzag64,86,opt,name=default_sint64,json=defaultSint64,def=86" json:"default_sint64,omitempty"`
  253. DefaultFixed32 *uint32 `protobuf:"fixed32,87,opt,name=default_fixed32,json=defaultFixed32,def=87" json:"default_fixed32,omitempty"`
  254. DefaultFixed64 *uint64 `protobuf:"fixed64,88,opt,name=default_fixed64,json=defaultFixed64,def=88" json:"default_fixed64,omitempty"`
  255. DefaultSfixed32 *int32 `protobuf:"fixed32,89,opt,name=default_sfixed32,json=defaultSfixed32,def=89" json:"default_sfixed32,omitempty"`
  256. DefaultSfixed64 *int64 `protobuf:"fixed64,80,opt,name=default_sfixed64,json=defaultSfixed64,def=-90" json:"default_sfixed64,omitempty"`
  257. DefaultFloat *float32 `protobuf:"fixed32,91,opt,name=default_float,json=defaultFloat,def=91.5" json:"default_float,omitempty"`
  258. DefaultDouble *float64 `protobuf:"fixed64,92,opt,name=default_double,json=defaultDouble,def=92000" json:"default_double,omitempty"`
  259. DefaultBool *bool `protobuf:"varint,93,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"`
  260. DefaultString *string `protobuf:"bytes,94,opt,name=default_string,json=defaultString,def=hello" json:"default_string,omitempty"`
  261. DefaultBytes []byte `protobuf:"bytes,95,opt,name=default_bytes,json=defaultBytes,def=world" json:"default_bytes,omitempty"`
  262. 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"`
  263. DefaultForeignEnum *ForeignEnum `protobuf:"varint,97,opt,name=default_foreign_enum,json=defaultForeignEnum,enum=goproto.proto.test.ForeignEnum,def=5" json:"default_foreign_enum,omitempty"`
  264. // Types that are valid to be assigned to OneofField:
  265. // *TestAllTypes_OneofUint32
  266. // *TestAllTypes_OneofNestedMessage
  267. // *TestAllTypes_OneofString
  268. // *TestAllTypes_OneofBytes
  269. // *TestAllTypes_OneofBool
  270. // *TestAllTypes_OneofUint64
  271. // *TestAllTypes_OneofFloat
  272. // *TestAllTypes_OneofDouble
  273. // *TestAllTypes_OneofEnum
  274. OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"`
  275. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  276. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  277. XXX_sizecache protoimpl.SizeCache `json:"-"`
  278. }
  279. func (x *TestAllTypes) Reset() {
  280. *x = TestAllTypes{}
  281. }
  282. func (x *TestAllTypes) String() string {
  283. return protoimpl.X.MessageStringOf(x)
  284. }
  285. func (*TestAllTypes) ProtoMessage() {}
  286. func (x *TestAllTypes) ProtoReflect() protoreflect.Message {
  287. return file_test_test_proto_msgTypes[0].MessageOf(x)
  288. }
  289. func (m *TestAllTypes) XXX_Methods() *protoiface.Methods {
  290. return file_test_test_proto_msgTypes[0].Methods()
  291. }
  292. // Deprecated: Use TestAllTypes.ProtoReflect.Type instead.
  293. func (*TestAllTypes) Descriptor() ([]byte, []int) {
  294. return file_test_test_proto_rawDescGZIP(), []int{0}
  295. }
  296. const Default_TestAllTypes_DefaultInt32 int32 = 81
  297. const Default_TestAllTypes_DefaultInt64 int64 = 82
  298. const Default_TestAllTypes_DefaultUint32 uint32 = 83
  299. const Default_TestAllTypes_DefaultUint64 uint64 = 84
  300. const Default_TestAllTypes_DefaultSint32 int32 = -85
  301. const Default_TestAllTypes_DefaultSint64 int64 = 86
  302. const Default_TestAllTypes_DefaultFixed32 uint32 = 87
  303. const Default_TestAllTypes_DefaultFixed64 uint64 = 88
  304. const Default_TestAllTypes_DefaultSfixed32 int32 = 89
  305. const Default_TestAllTypes_DefaultSfixed64 int64 = -90
  306. const Default_TestAllTypes_DefaultFloat float32 = 91.5
  307. const Default_TestAllTypes_DefaultDouble float64 = 92000
  308. const Default_TestAllTypes_DefaultBool bool = true
  309. const Default_TestAllTypes_DefaultString string = "hello"
  310. var Default_TestAllTypes_DefaultBytes []byte = []byte("world")
  311. const Default_TestAllTypes_DefaultNestedEnum TestAllTypes_NestedEnum = TestAllTypes_BAR
  312. const Default_TestAllTypes_DefaultForeignEnum ForeignEnum = ForeignEnum_FOREIGN_BAR
  313. func (x *TestAllTypes) GetOptionalInt32() int32 {
  314. if x != nil && x.OptionalInt32 != nil {
  315. return *x.OptionalInt32
  316. }
  317. return 0
  318. }
  319. func (x *TestAllTypes) GetOptionalInt64() int64 {
  320. if x != nil && x.OptionalInt64 != nil {
  321. return *x.OptionalInt64
  322. }
  323. return 0
  324. }
  325. func (x *TestAllTypes) GetOptionalUint32() uint32 {
  326. if x != nil && x.OptionalUint32 != nil {
  327. return *x.OptionalUint32
  328. }
  329. return 0
  330. }
  331. func (x *TestAllTypes) GetOptionalUint64() uint64 {
  332. if x != nil && x.OptionalUint64 != nil {
  333. return *x.OptionalUint64
  334. }
  335. return 0
  336. }
  337. func (x *TestAllTypes) GetOptionalSint32() int32 {
  338. if x != nil && x.OptionalSint32 != nil {
  339. return *x.OptionalSint32
  340. }
  341. return 0
  342. }
  343. func (x *TestAllTypes) GetOptionalSint64() int64 {
  344. if x != nil && x.OptionalSint64 != nil {
  345. return *x.OptionalSint64
  346. }
  347. return 0
  348. }
  349. func (x *TestAllTypes) GetOptionalFixed32() uint32 {
  350. if x != nil && x.OptionalFixed32 != nil {
  351. return *x.OptionalFixed32
  352. }
  353. return 0
  354. }
  355. func (x *TestAllTypes) GetOptionalFixed64() uint64 {
  356. if x != nil && x.OptionalFixed64 != nil {
  357. return *x.OptionalFixed64
  358. }
  359. return 0
  360. }
  361. func (x *TestAllTypes) GetOptionalSfixed32() int32 {
  362. if x != nil && x.OptionalSfixed32 != nil {
  363. return *x.OptionalSfixed32
  364. }
  365. return 0
  366. }
  367. func (x *TestAllTypes) GetOptionalSfixed64() int64 {
  368. if x != nil && x.OptionalSfixed64 != nil {
  369. return *x.OptionalSfixed64
  370. }
  371. return 0
  372. }
  373. func (x *TestAllTypes) GetOptionalFloat() float32 {
  374. if x != nil && x.OptionalFloat != nil {
  375. return *x.OptionalFloat
  376. }
  377. return 0
  378. }
  379. func (x *TestAllTypes) GetOptionalDouble() float64 {
  380. if x != nil && x.OptionalDouble != nil {
  381. return *x.OptionalDouble
  382. }
  383. return 0
  384. }
  385. func (x *TestAllTypes) GetOptionalBool() bool {
  386. if x != nil && x.OptionalBool != nil {
  387. return *x.OptionalBool
  388. }
  389. return false
  390. }
  391. func (x *TestAllTypes) GetOptionalString() string {
  392. if x != nil && x.OptionalString != nil {
  393. return *x.OptionalString
  394. }
  395. return ""
  396. }
  397. func (x *TestAllTypes) GetOptionalBytes() []byte {
  398. if x != nil {
  399. return x.OptionalBytes
  400. }
  401. return nil
  402. }
  403. func (x *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
  404. if x != nil {
  405. return x.Optionalgroup
  406. }
  407. return nil
  408. }
  409. func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
  410. if x != nil {
  411. return x.OptionalNestedMessage
  412. }
  413. return nil
  414. }
  415. func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
  416. if x != nil {
  417. return x.OptionalForeignMessage
  418. }
  419. return nil
  420. }
  421. func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
  422. if x != nil {
  423. return x.OptionalImportMessage
  424. }
  425. return nil
  426. }
  427. func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
  428. if x != nil && x.OptionalNestedEnum != nil {
  429. return *x.OptionalNestedEnum
  430. }
  431. return TestAllTypes_FOO
  432. }
  433. func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
  434. if x != nil && x.OptionalForeignEnum != nil {
  435. return *x.OptionalForeignEnum
  436. }
  437. return ForeignEnum_FOREIGN_FOO
  438. }
  439. func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum {
  440. if x != nil && x.OptionalImportEnum != nil {
  441. return *x.OptionalImportEnum
  442. }
  443. return ImportEnum_IMPORT_ZERO
  444. }
  445. func (x *TestAllTypes) GetRepeatedInt32() []int32 {
  446. if x != nil {
  447. return x.RepeatedInt32
  448. }
  449. return nil
  450. }
  451. func (x *TestAllTypes) GetRepeatedInt64() []int64 {
  452. if x != nil {
  453. return x.RepeatedInt64
  454. }
  455. return nil
  456. }
  457. func (x *TestAllTypes) GetRepeatedUint32() []uint32 {
  458. if x != nil {
  459. return x.RepeatedUint32
  460. }
  461. return nil
  462. }
  463. func (x *TestAllTypes) GetRepeatedUint64() []uint64 {
  464. if x != nil {
  465. return x.RepeatedUint64
  466. }
  467. return nil
  468. }
  469. func (x *TestAllTypes) GetRepeatedSint32() []int32 {
  470. if x != nil {
  471. return x.RepeatedSint32
  472. }
  473. return nil
  474. }
  475. func (x *TestAllTypes) GetRepeatedSint64() []int64 {
  476. if x != nil {
  477. return x.RepeatedSint64
  478. }
  479. return nil
  480. }
  481. func (x *TestAllTypes) GetRepeatedFixed32() []uint32 {
  482. if x != nil {
  483. return x.RepeatedFixed32
  484. }
  485. return nil
  486. }
  487. func (x *TestAllTypes) GetRepeatedFixed64() []uint64 {
  488. if x != nil {
  489. return x.RepeatedFixed64
  490. }
  491. return nil
  492. }
  493. func (x *TestAllTypes) GetRepeatedSfixed32() []int32 {
  494. if x != nil {
  495. return x.RepeatedSfixed32
  496. }
  497. return nil
  498. }
  499. func (x *TestAllTypes) GetRepeatedSfixed64() []int64 {
  500. if x != nil {
  501. return x.RepeatedSfixed64
  502. }
  503. return nil
  504. }
  505. func (x *TestAllTypes) GetRepeatedFloat() []float32 {
  506. if x != nil {
  507. return x.RepeatedFloat
  508. }
  509. return nil
  510. }
  511. func (x *TestAllTypes) GetRepeatedDouble() []float64 {
  512. if x != nil {
  513. return x.RepeatedDouble
  514. }
  515. return nil
  516. }
  517. func (x *TestAllTypes) GetRepeatedBool() []bool {
  518. if x != nil {
  519. return x.RepeatedBool
  520. }
  521. return nil
  522. }
  523. func (x *TestAllTypes) GetRepeatedString() []string {
  524. if x != nil {
  525. return x.RepeatedString
  526. }
  527. return nil
  528. }
  529. func (x *TestAllTypes) GetRepeatedBytes() [][]byte {
  530. if x != nil {
  531. return x.RepeatedBytes
  532. }
  533. return nil
  534. }
  535. func (x *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
  536. if x != nil {
  537. return x.Repeatedgroup
  538. }
  539. return nil
  540. }
  541. func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
  542. if x != nil {
  543. return x.RepeatedNestedMessage
  544. }
  545. return nil
  546. }
  547. func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
  548. if x != nil {
  549. return x.RepeatedForeignMessage
  550. }
  551. return nil
  552. }
  553. func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
  554. if x != nil {
  555. return x.RepeatedImportmessage
  556. }
  557. return nil
  558. }
  559. func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
  560. if x != nil {
  561. return x.RepeatedNestedEnum
  562. }
  563. return nil
  564. }
  565. func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
  566. if x != nil {
  567. return x.RepeatedForeignEnum
  568. }
  569. return nil
  570. }
  571. func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
  572. if x != nil {
  573. return x.RepeatedImportenum
  574. }
  575. return nil
  576. }
  577. func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
  578. if x != nil {
  579. return x.MapInt32Int32
  580. }
  581. return nil
  582. }
  583. func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
  584. if x != nil {
  585. return x.MapInt64Int64
  586. }
  587. return nil
  588. }
  589. func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
  590. if x != nil {
  591. return x.MapUint32Uint32
  592. }
  593. return nil
  594. }
  595. func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
  596. if x != nil {
  597. return x.MapUint64Uint64
  598. }
  599. return nil
  600. }
  601. func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
  602. if x != nil {
  603. return x.MapSint32Sint32
  604. }
  605. return nil
  606. }
  607. func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
  608. if x != nil {
  609. return x.MapSint64Sint64
  610. }
  611. return nil
  612. }
  613. func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
  614. if x != nil {
  615. return x.MapFixed32Fixed32
  616. }
  617. return nil
  618. }
  619. func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
  620. if x != nil {
  621. return x.MapFixed64Fixed64
  622. }
  623. return nil
  624. }
  625. func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
  626. if x != nil {
  627. return x.MapSfixed32Sfixed32
  628. }
  629. return nil
  630. }
  631. func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
  632. if x != nil {
  633. return x.MapSfixed64Sfixed64
  634. }
  635. return nil
  636. }
  637. func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 {
  638. if x != nil {
  639. return x.MapInt32Float
  640. }
  641. return nil
  642. }
  643. func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 {
  644. if x != nil {
  645. return x.MapInt32Double
  646. }
  647. return nil
  648. }
  649. func (x *TestAllTypes) GetMapBoolBool() map[bool]bool {
  650. if x != nil {
  651. return x.MapBoolBool
  652. }
  653. return nil
  654. }
  655. func (x *TestAllTypes) GetMapStringString() map[string]string {
  656. if x != nil {
  657. return x.MapStringString
  658. }
  659. return nil
  660. }
  661. func (x *TestAllTypes) GetMapStringBytes() map[string][]byte {
  662. if x != nil {
  663. return x.MapStringBytes
  664. }
  665. return nil
  666. }
  667. func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
  668. if x != nil {
  669. return x.MapStringNestedMessage
  670. }
  671. return nil
  672. }
  673. func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
  674. if x != nil {
  675. return x.MapStringNestedEnum
  676. }
  677. return nil
  678. }
  679. func (x *TestAllTypes) GetDefaultInt32() int32 {
  680. if x != nil && x.DefaultInt32 != nil {
  681. return *x.DefaultInt32
  682. }
  683. return Default_TestAllTypes_DefaultInt32
  684. }
  685. func (x *TestAllTypes) GetDefaultInt64() int64 {
  686. if x != nil && x.DefaultInt64 != nil {
  687. return *x.DefaultInt64
  688. }
  689. return Default_TestAllTypes_DefaultInt64
  690. }
  691. func (x *TestAllTypes) GetDefaultUint32() uint32 {
  692. if x != nil && x.DefaultUint32 != nil {
  693. return *x.DefaultUint32
  694. }
  695. return Default_TestAllTypes_DefaultUint32
  696. }
  697. func (x *TestAllTypes) GetDefaultUint64() uint64 {
  698. if x != nil && x.DefaultUint64 != nil {
  699. return *x.DefaultUint64
  700. }
  701. return Default_TestAllTypes_DefaultUint64
  702. }
  703. func (x *TestAllTypes) GetDefaultSint32() int32 {
  704. if x != nil && x.DefaultSint32 != nil {
  705. return *x.DefaultSint32
  706. }
  707. return Default_TestAllTypes_DefaultSint32
  708. }
  709. func (x *TestAllTypes) GetDefaultSint64() int64 {
  710. if x != nil && x.DefaultSint64 != nil {
  711. return *x.DefaultSint64
  712. }
  713. return Default_TestAllTypes_DefaultSint64
  714. }
  715. func (x *TestAllTypes) GetDefaultFixed32() uint32 {
  716. if x != nil && x.DefaultFixed32 != nil {
  717. return *x.DefaultFixed32
  718. }
  719. return Default_TestAllTypes_DefaultFixed32
  720. }
  721. func (x *TestAllTypes) GetDefaultFixed64() uint64 {
  722. if x != nil && x.DefaultFixed64 != nil {
  723. return *x.DefaultFixed64
  724. }
  725. return Default_TestAllTypes_DefaultFixed64
  726. }
  727. func (x *TestAllTypes) GetDefaultSfixed32() int32 {
  728. if x != nil && x.DefaultSfixed32 != nil {
  729. return *x.DefaultSfixed32
  730. }
  731. return Default_TestAllTypes_DefaultSfixed32
  732. }
  733. func (x *TestAllTypes) GetDefaultSfixed64() int64 {
  734. if x != nil && x.DefaultSfixed64 != nil {
  735. return *x.DefaultSfixed64
  736. }
  737. return Default_TestAllTypes_DefaultSfixed64
  738. }
  739. func (x *TestAllTypes) GetDefaultFloat() float32 {
  740. if x != nil && x.DefaultFloat != nil {
  741. return *x.DefaultFloat
  742. }
  743. return Default_TestAllTypes_DefaultFloat
  744. }
  745. func (x *TestAllTypes) GetDefaultDouble() float64 {
  746. if x != nil && x.DefaultDouble != nil {
  747. return *x.DefaultDouble
  748. }
  749. return Default_TestAllTypes_DefaultDouble
  750. }
  751. func (x *TestAllTypes) GetDefaultBool() bool {
  752. if x != nil && x.DefaultBool != nil {
  753. return *x.DefaultBool
  754. }
  755. return Default_TestAllTypes_DefaultBool
  756. }
  757. func (x *TestAllTypes) GetDefaultString() string {
  758. if x != nil && x.DefaultString != nil {
  759. return *x.DefaultString
  760. }
  761. return Default_TestAllTypes_DefaultString
  762. }
  763. func (x *TestAllTypes) GetDefaultBytes() []byte {
  764. if x != nil && x.DefaultBytes != nil {
  765. return x.DefaultBytes
  766. }
  767. return append([]byte(nil), Default_TestAllTypes_DefaultBytes...)
  768. }
  769. func (x *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
  770. if x != nil && x.DefaultNestedEnum != nil {
  771. return *x.DefaultNestedEnum
  772. }
  773. return Default_TestAllTypes_DefaultNestedEnum
  774. }
  775. func (x *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
  776. if x != nil && x.DefaultForeignEnum != nil {
  777. return *x.DefaultForeignEnum
  778. }
  779. return Default_TestAllTypes_DefaultForeignEnum
  780. }
  781. func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField {
  782. if m != nil {
  783. return m.OneofField
  784. }
  785. return nil
  786. }
  787. func (x *TestAllTypes) GetOneofUint32() uint32 {
  788. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok {
  789. return x.OneofUint32
  790. }
  791. return 0
  792. }
  793. func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
  794. if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
  795. return x.OneofNestedMessage
  796. }
  797. return nil
  798. }
  799. func (x *TestAllTypes) GetOneofString() string {
  800. if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok {
  801. return x.OneofString
  802. }
  803. return ""
  804. }
  805. func (x *TestAllTypes) GetOneofBytes() []byte {
  806. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok {
  807. return x.OneofBytes
  808. }
  809. return nil
  810. }
  811. func (x *TestAllTypes) GetOneofBool() bool {
  812. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok {
  813. return x.OneofBool
  814. }
  815. return false
  816. }
  817. func (x *TestAllTypes) GetOneofUint64() uint64 {
  818. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok {
  819. return x.OneofUint64
  820. }
  821. return 0
  822. }
  823. func (x *TestAllTypes) GetOneofFloat() float32 {
  824. if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok {
  825. return x.OneofFloat
  826. }
  827. return 0
  828. }
  829. func (x *TestAllTypes) GetOneofDouble() float64 {
  830. if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok {
  831. return x.OneofDouble
  832. }
  833. return 0
  834. }
  835. func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
  836. if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok {
  837. return x.OneofEnum
  838. }
  839. return TestAllTypes_FOO
  840. }
  841. // XXX_OneofWrappers is for the internal use of the proto package.
  842. func (*TestAllTypes) XXX_OneofWrappers() []interface{} {
  843. return []interface{}{
  844. (*TestAllTypes_OneofUint32)(nil),
  845. (*TestAllTypes_OneofNestedMessage)(nil),
  846. (*TestAllTypes_OneofString)(nil),
  847. (*TestAllTypes_OneofBytes)(nil),
  848. (*TestAllTypes_OneofBool)(nil),
  849. (*TestAllTypes_OneofUint64)(nil),
  850. (*TestAllTypes_OneofFloat)(nil),
  851. (*TestAllTypes_OneofDouble)(nil),
  852. (*TestAllTypes_OneofEnum)(nil),
  853. }
  854. }
  855. type isTestAllTypes_OneofField interface {
  856. isTestAllTypes_OneofField()
  857. }
  858. type TestAllTypes_OneofUint32 struct {
  859. OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,oneof"`
  860. }
  861. type TestAllTypes_OneofNestedMessage struct {
  862. OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"`
  863. }
  864. type TestAllTypes_OneofString struct {
  865. OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,oneof"`
  866. }
  867. type TestAllTypes_OneofBytes struct {
  868. OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,oneof"`
  869. }
  870. type TestAllTypes_OneofBool struct {
  871. OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,oneof"`
  872. }
  873. type TestAllTypes_OneofUint64 struct {
  874. OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,oneof"`
  875. }
  876. type TestAllTypes_OneofFloat struct {
  877. OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,oneof"`
  878. }
  879. type TestAllTypes_OneofDouble struct {
  880. OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,oneof"`
  881. }
  882. type TestAllTypes_OneofEnum struct {
  883. OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,oneof"`
  884. }
  885. func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {}
  886. func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {}
  887. func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {}
  888. func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {}
  889. func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {}
  890. func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {}
  891. func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {}
  892. func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {}
  893. func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {}
  894. // Deprecated: Do not use.
  895. type TestDeprecatedMessage struct {
  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. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  901. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  902. XXX_sizecache protoimpl.SizeCache `json:"-"`
  903. }
  904. func (x *TestDeprecatedMessage) Reset() {
  905. *x = TestDeprecatedMessage{}
  906. }
  907. func (x *TestDeprecatedMessage) String() string {
  908. return protoimpl.X.MessageStringOf(x)
  909. }
  910. func (*TestDeprecatedMessage) ProtoMessage() {}
  911. func (x *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
  912. return file_test_test_proto_msgTypes[1].MessageOf(x)
  913. }
  914. func (m *TestDeprecatedMessage) XXX_Methods() *protoiface.Methods {
  915. return file_test_test_proto_msgTypes[1].Methods()
  916. }
  917. // Deprecated: Use TestDeprecatedMessage.ProtoReflect.Type instead.
  918. func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) {
  919. return file_test_test_proto_rawDescGZIP(), []int{1}
  920. }
  921. // Deprecated: Do not use.
  922. func (x *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
  923. if x != nil && x.DeprecatedInt32 != nil {
  924. return *x.DeprecatedInt32
  925. }
  926. return 0
  927. }
  928. func (m *TestDeprecatedMessage) GetDeprecatedOneof() isTestDeprecatedMessage_DeprecatedOneof {
  929. if m != nil {
  930. return m.DeprecatedOneof
  931. }
  932. return nil
  933. }
  934. // Deprecated: Do not use.
  935. func (x *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
  936. if x, ok := x.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
  937. return x.DeprecatedOneofField
  938. }
  939. return 0
  940. }
  941. // XXX_OneofWrappers is for the internal use of the proto package.
  942. func (*TestDeprecatedMessage) XXX_OneofWrappers() []interface{} {
  943. return []interface{}{
  944. (*TestDeprecatedMessage_DeprecatedOneofField)(nil),
  945. }
  946. }
  947. type isTestDeprecatedMessage_DeprecatedOneof interface {
  948. isTestDeprecatedMessage_DeprecatedOneof()
  949. }
  950. type TestDeprecatedMessage_DeprecatedOneofField struct {
  951. DeprecatedOneofField int32 `protobuf:"varint,2,opt,name=deprecated_oneof_field,json=deprecatedOneofField,oneof"`
  952. }
  953. func (*TestDeprecatedMessage_DeprecatedOneofField) isTestDeprecatedMessage_DeprecatedOneof() {}
  954. type ForeignMessage struct {
  955. C *int32 `protobuf:"varint,1,opt,name=c" json:"c,omitempty"`
  956. D *int32 `protobuf:"varint,2,opt,name=d" json:"d,omitempty"`
  957. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  958. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  959. XXX_sizecache protoimpl.SizeCache `json:"-"`
  960. }
  961. func (x *ForeignMessage) Reset() {
  962. *x = ForeignMessage{}
  963. }
  964. func (x *ForeignMessage) String() string {
  965. return protoimpl.X.MessageStringOf(x)
  966. }
  967. func (*ForeignMessage) ProtoMessage() {}
  968. func (x *ForeignMessage) ProtoReflect() protoreflect.Message {
  969. return file_test_test_proto_msgTypes[2].MessageOf(x)
  970. }
  971. func (m *ForeignMessage) XXX_Methods() *protoiface.Methods {
  972. return file_test_test_proto_msgTypes[2].Methods()
  973. }
  974. // Deprecated: Use ForeignMessage.ProtoReflect.Type instead.
  975. func (*ForeignMessage) Descriptor() ([]byte, []int) {
  976. return file_test_test_proto_rawDescGZIP(), []int{2}
  977. }
  978. func (x *ForeignMessage) GetC() int32 {
  979. if x != nil && x.C != nil {
  980. return *x.C
  981. }
  982. return 0
  983. }
  984. func (x *ForeignMessage) GetD() int32 {
  985. if x != nil && x.D != nil {
  986. return *x.D
  987. }
  988. return 0
  989. }
  990. type TestReservedFields struct {
  991. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  992. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  993. XXX_sizecache protoimpl.SizeCache `json:"-"`
  994. }
  995. func (x *TestReservedFields) Reset() {
  996. *x = TestReservedFields{}
  997. }
  998. func (x *TestReservedFields) String() string {
  999. return protoimpl.X.MessageStringOf(x)
  1000. }
  1001. func (*TestReservedFields) ProtoMessage() {}
  1002. func (x *TestReservedFields) ProtoReflect() protoreflect.Message {
  1003. return file_test_test_proto_msgTypes[3].MessageOf(x)
  1004. }
  1005. func (m *TestReservedFields) XXX_Methods() *protoiface.Methods {
  1006. return file_test_test_proto_msgTypes[3].Methods()
  1007. }
  1008. // Deprecated: Use TestReservedFields.ProtoReflect.Type instead.
  1009. func (*TestReservedFields) Descriptor() ([]byte, []int) {
  1010. return file_test_test_proto_rawDescGZIP(), []int{3}
  1011. }
  1012. type TestAllExtensions struct {
  1013. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1014. XXX_InternalExtensions protoimpl.ExtensionFields `json:"-"`
  1015. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1016. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1017. }
  1018. func (x *TestAllExtensions) Reset() {
  1019. *x = TestAllExtensions{}
  1020. }
  1021. func (x *TestAllExtensions) String() string {
  1022. return protoimpl.X.MessageStringOf(x)
  1023. }
  1024. func (*TestAllExtensions) ProtoMessage() {}
  1025. func (x *TestAllExtensions) ProtoReflect() protoreflect.Message {
  1026. return file_test_test_proto_msgTypes[4].MessageOf(x)
  1027. }
  1028. func (m *TestAllExtensions) XXX_Methods() *protoiface.Methods {
  1029. return file_test_test_proto_msgTypes[4].Methods()
  1030. }
  1031. // Deprecated: Use TestAllExtensions.ProtoReflect.Type instead.
  1032. func (*TestAllExtensions) Descriptor() ([]byte, []int) {
  1033. return file_test_test_proto_rawDescGZIP(), []int{4}
  1034. }
  1035. var extRange_TestAllExtensions = []protoiface.ExtensionRangeV1{
  1036. {Start: 1, End: 536870911},
  1037. }
  1038. // Deprecated: Use TestAllExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1039. func (*TestAllExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1040. return extRange_TestAllExtensions
  1041. }
  1042. type OptionalGroupExtension struct {
  1043. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1044. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1045. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1046. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1047. }
  1048. func (x *OptionalGroupExtension) Reset() {
  1049. *x = OptionalGroupExtension{}
  1050. }
  1051. func (x *OptionalGroupExtension) String() string {
  1052. return protoimpl.X.MessageStringOf(x)
  1053. }
  1054. func (*OptionalGroupExtension) ProtoMessage() {}
  1055. func (x *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
  1056. return file_test_test_proto_msgTypes[5].MessageOf(x)
  1057. }
  1058. func (m *OptionalGroupExtension) XXX_Methods() *protoiface.Methods {
  1059. return file_test_test_proto_msgTypes[5].Methods()
  1060. }
  1061. // Deprecated: Use OptionalGroupExtension.ProtoReflect.Type instead.
  1062. func (*OptionalGroupExtension) Descriptor() ([]byte, []int) {
  1063. return file_test_test_proto_rawDescGZIP(), []int{5}
  1064. }
  1065. func (x *OptionalGroupExtension) GetA() int32 {
  1066. if x != nil && x.A != nil {
  1067. return *x.A
  1068. }
  1069. return 0
  1070. }
  1071. type RepeatedGroupExtension struct {
  1072. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1073. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1074. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1075. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1076. }
  1077. func (x *RepeatedGroupExtension) Reset() {
  1078. *x = RepeatedGroupExtension{}
  1079. }
  1080. func (x *RepeatedGroupExtension) String() string {
  1081. return protoimpl.X.MessageStringOf(x)
  1082. }
  1083. func (*RepeatedGroupExtension) ProtoMessage() {}
  1084. func (x *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
  1085. return file_test_test_proto_msgTypes[6].MessageOf(x)
  1086. }
  1087. func (m *RepeatedGroupExtension) XXX_Methods() *protoiface.Methods {
  1088. return file_test_test_proto_msgTypes[6].Methods()
  1089. }
  1090. // Deprecated: Use RepeatedGroupExtension.ProtoReflect.Type instead.
  1091. func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) {
  1092. return file_test_test_proto_rawDescGZIP(), []int{6}
  1093. }
  1094. func (x *RepeatedGroupExtension) GetA() int32 {
  1095. if x != nil && x.A != nil {
  1096. return *x.A
  1097. }
  1098. return 0
  1099. }
  1100. type TestNestedExtension struct {
  1101. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1102. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1103. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1104. }
  1105. func (x *TestNestedExtension) Reset() {
  1106. *x = TestNestedExtension{}
  1107. }
  1108. func (x *TestNestedExtension) String() string {
  1109. return protoimpl.X.MessageStringOf(x)
  1110. }
  1111. func (*TestNestedExtension) ProtoMessage() {}
  1112. func (x *TestNestedExtension) ProtoReflect() protoreflect.Message {
  1113. return file_test_test_proto_msgTypes[7].MessageOf(x)
  1114. }
  1115. func (m *TestNestedExtension) XXX_Methods() *protoiface.Methods {
  1116. return file_test_test_proto_msgTypes[7].Methods()
  1117. }
  1118. // Deprecated: Use TestNestedExtension.ProtoReflect.Type instead.
  1119. func (*TestNestedExtension) Descriptor() ([]byte, []int) {
  1120. return file_test_test_proto_rawDescGZIP(), []int{7}
  1121. }
  1122. type TestRequired struct {
  1123. RequiredField *int32 `protobuf:"varint,1,req,name=required_field,json=requiredField" json:"required_field,omitempty"`
  1124. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1125. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1126. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1127. }
  1128. func (x *TestRequired) Reset() {
  1129. *x = TestRequired{}
  1130. }
  1131. func (x *TestRequired) String() string {
  1132. return protoimpl.X.MessageStringOf(x)
  1133. }
  1134. func (*TestRequired) ProtoMessage() {}
  1135. func (x *TestRequired) ProtoReflect() protoreflect.Message {
  1136. return file_test_test_proto_msgTypes[8].MessageOf(x)
  1137. }
  1138. func (m *TestRequired) XXX_Methods() *protoiface.Methods {
  1139. return file_test_test_proto_msgTypes[8].Methods()
  1140. }
  1141. // Deprecated: Use TestRequired.ProtoReflect.Type instead.
  1142. func (*TestRequired) Descriptor() ([]byte, []int) {
  1143. return file_test_test_proto_rawDescGZIP(), []int{8}
  1144. }
  1145. func (x *TestRequired) GetRequiredField() int32 {
  1146. if x != nil && x.RequiredField != nil {
  1147. return *x.RequiredField
  1148. }
  1149. return 0
  1150. }
  1151. type TestRequiredForeign struct {
  1152. OptionalMessage *TestRequired `protobuf:"bytes,1,opt,name=optional_message,json=optionalMessage" json:"optional_message,omitempty"`
  1153. RepeatedMessage []*TestRequired `protobuf:"bytes,2,rep,name=repeated_message,json=repeatedMessage" json:"repeated_message,omitempty"`
  1154. 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"`
  1155. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1156. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1157. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1158. }
  1159. func (x *TestRequiredForeign) Reset() {
  1160. *x = TestRequiredForeign{}
  1161. }
  1162. func (x *TestRequiredForeign) String() string {
  1163. return protoimpl.X.MessageStringOf(x)
  1164. }
  1165. func (*TestRequiredForeign) ProtoMessage() {}
  1166. func (x *TestRequiredForeign) ProtoReflect() protoreflect.Message {
  1167. return file_test_test_proto_msgTypes[9].MessageOf(x)
  1168. }
  1169. func (m *TestRequiredForeign) XXX_Methods() *protoiface.Methods {
  1170. return file_test_test_proto_msgTypes[9].Methods()
  1171. }
  1172. // Deprecated: Use TestRequiredForeign.ProtoReflect.Type instead.
  1173. func (*TestRequiredForeign) Descriptor() ([]byte, []int) {
  1174. return file_test_test_proto_rawDescGZIP(), []int{9}
  1175. }
  1176. func (x *TestRequiredForeign) GetOptionalMessage() *TestRequired {
  1177. if x != nil {
  1178. return x.OptionalMessage
  1179. }
  1180. return nil
  1181. }
  1182. func (x *TestRequiredForeign) GetRepeatedMessage() []*TestRequired {
  1183. if x != nil {
  1184. return x.RepeatedMessage
  1185. }
  1186. return nil
  1187. }
  1188. func (x *TestRequiredForeign) GetMapMessage() map[int32]*TestRequired {
  1189. if x != nil {
  1190. return x.MapMessage
  1191. }
  1192. return nil
  1193. }
  1194. type TestRequiredGroupFields struct {
  1195. Optionalgroup *TestRequiredGroupFields_OptionalGroup `protobuf:"group,1,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  1196. Repeatedgroup []*TestRequiredGroupFields_RepeatedGroup `protobuf:"group,3,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  1197. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1198. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1199. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1200. }
  1201. func (x *TestRequiredGroupFields) Reset() {
  1202. *x = TestRequiredGroupFields{}
  1203. }
  1204. func (x *TestRequiredGroupFields) String() string {
  1205. return protoimpl.X.MessageStringOf(x)
  1206. }
  1207. func (*TestRequiredGroupFields) ProtoMessage() {}
  1208. func (x *TestRequiredGroupFields) ProtoReflect() protoreflect.Message {
  1209. return file_test_test_proto_msgTypes[10].MessageOf(x)
  1210. }
  1211. func (m *TestRequiredGroupFields) XXX_Methods() *protoiface.Methods {
  1212. return file_test_test_proto_msgTypes[10].Methods()
  1213. }
  1214. // Deprecated: Use TestRequiredGroupFields.ProtoReflect.Type instead.
  1215. func (*TestRequiredGroupFields) Descriptor() ([]byte, []int) {
  1216. return file_test_test_proto_rawDescGZIP(), []int{10}
  1217. }
  1218. func (x *TestRequiredGroupFields) GetOptionalgroup() *TestRequiredGroupFields_OptionalGroup {
  1219. if x != nil {
  1220. return x.Optionalgroup
  1221. }
  1222. return nil
  1223. }
  1224. func (x *TestRequiredGroupFields) GetRepeatedgroup() []*TestRequiredGroupFields_RepeatedGroup {
  1225. if x != nil {
  1226. return x.Repeatedgroup
  1227. }
  1228. return nil
  1229. }
  1230. type TestWeak struct {
  1231. WeakMessage *weak.WeakImportMessage `protobuf:"bytes,1,opt,name=weak_message,json=weakMessage" json:"weak_message,omitempty"`
  1232. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1233. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1234. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1235. }
  1236. func (x *TestWeak) Reset() {
  1237. *x = TestWeak{}
  1238. }
  1239. func (x *TestWeak) String() string {
  1240. return protoimpl.X.MessageStringOf(x)
  1241. }
  1242. func (*TestWeak) ProtoMessage() {}
  1243. func (x *TestWeak) ProtoReflect() protoreflect.Message {
  1244. return file_test_test_proto_msgTypes[11].MessageOf(x)
  1245. }
  1246. func (m *TestWeak) XXX_Methods() *protoiface.Methods {
  1247. return file_test_test_proto_msgTypes[11].Methods()
  1248. }
  1249. // Deprecated: Use TestWeak.ProtoReflect.Type instead.
  1250. func (*TestWeak) Descriptor() ([]byte, []int) {
  1251. return file_test_test_proto_rawDescGZIP(), []int{11}
  1252. }
  1253. func (x *TestWeak) GetWeakMessage() *weak.WeakImportMessage {
  1254. if x != nil {
  1255. return x.WeakMessage
  1256. }
  1257. return nil
  1258. }
  1259. // Test that RPC services work.
  1260. type FooRequest struct {
  1261. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1262. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1263. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1264. }
  1265. func (x *FooRequest) Reset() {
  1266. *x = FooRequest{}
  1267. }
  1268. func (x *FooRequest) String() string {
  1269. return protoimpl.X.MessageStringOf(x)
  1270. }
  1271. func (*FooRequest) ProtoMessage() {}
  1272. func (x *FooRequest) ProtoReflect() protoreflect.Message {
  1273. return file_test_test_proto_msgTypes[12].MessageOf(x)
  1274. }
  1275. func (m *FooRequest) XXX_Methods() *protoiface.Methods {
  1276. return file_test_test_proto_msgTypes[12].Methods()
  1277. }
  1278. // Deprecated: Use FooRequest.ProtoReflect.Type instead.
  1279. func (*FooRequest) Descriptor() ([]byte, []int) {
  1280. return file_test_test_proto_rawDescGZIP(), []int{12}
  1281. }
  1282. type FooResponse struct {
  1283. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1284. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1285. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1286. }
  1287. func (x *FooResponse) Reset() {
  1288. *x = FooResponse{}
  1289. }
  1290. func (x *FooResponse) String() string {
  1291. return protoimpl.X.MessageStringOf(x)
  1292. }
  1293. func (*FooResponse) ProtoMessage() {}
  1294. func (x *FooResponse) ProtoReflect() protoreflect.Message {
  1295. return file_test_test_proto_msgTypes[13].MessageOf(x)
  1296. }
  1297. func (m *FooResponse) XXX_Methods() *protoiface.Methods {
  1298. return file_test_test_proto_msgTypes[13].Methods()
  1299. }
  1300. // Deprecated: Use FooResponse.ProtoReflect.Type instead.
  1301. func (*FooResponse) Descriptor() ([]byte, []int) {
  1302. return file_test_test_proto_rawDescGZIP(), []int{13}
  1303. }
  1304. type TestAllTypes_NestedMessage struct {
  1305. A *int32 `protobuf:"varint,1,opt,name=a" json:"a,omitempty"`
  1306. Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"`
  1307. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1308. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1309. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1310. }
  1311. func (x *TestAllTypes_NestedMessage) Reset() {
  1312. *x = TestAllTypes_NestedMessage{}
  1313. }
  1314. func (x *TestAllTypes_NestedMessage) String() string {
  1315. return protoimpl.X.MessageStringOf(x)
  1316. }
  1317. func (*TestAllTypes_NestedMessage) ProtoMessage() {}
  1318. func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
  1319. return file_test_test_proto_msgTypes[14].MessageOf(x)
  1320. }
  1321. func (m *TestAllTypes_NestedMessage) XXX_Methods() *protoiface.Methods {
  1322. return file_test_test_proto_msgTypes[14].Methods()
  1323. }
  1324. // Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Type instead.
  1325. func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
  1326. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  1327. }
  1328. func (x *TestAllTypes_NestedMessage) GetA() int32 {
  1329. if x != nil && x.A != nil {
  1330. return *x.A
  1331. }
  1332. return 0
  1333. }
  1334. func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
  1335. if x != nil {
  1336. return x.Corecursive
  1337. }
  1338. return nil
  1339. }
  1340. type TestAllTypes_OptionalGroup struct {
  1341. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1342. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1343. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1344. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1345. }
  1346. func (x *TestAllTypes_OptionalGroup) Reset() {
  1347. *x = TestAllTypes_OptionalGroup{}
  1348. }
  1349. func (x *TestAllTypes_OptionalGroup) String() string {
  1350. return protoimpl.X.MessageStringOf(x)
  1351. }
  1352. func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
  1353. func (x *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
  1354. return file_test_test_proto_msgTypes[15].MessageOf(x)
  1355. }
  1356. func (m *TestAllTypes_OptionalGroup) XXX_Methods() *protoiface.Methods {
  1357. return file_test_test_proto_msgTypes[15].Methods()
  1358. }
  1359. // Deprecated: Use TestAllTypes_OptionalGroup.ProtoReflect.Type instead.
  1360. func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) {
  1361. return file_test_test_proto_rawDescGZIP(), []int{0, 1}
  1362. }
  1363. func (x *TestAllTypes_OptionalGroup) GetA() int32 {
  1364. if x != nil && x.A != nil {
  1365. return *x.A
  1366. }
  1367. return 0
  1368. }
  1369. type TestAllTypes_RepeatedGroup struct {
  1370. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1371. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1372. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1373. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1374. }
  1375. func (x *TestAllTypes_RepeatedGroup) Reset() {
  1376. *x = TestAllTypes_RepeatedGroup{}
  1377. }
  1378. func (x *TestAllTypes_RepeatedGroup) String() string {
  1379. return protoimpl.X.MessageStringOf(x)
  1380. }
  1381. func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
  1382. func (x *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1383. return file_test_test_proto_msgTypes[16].MessageOf(x)
  1384. }
  1385. func (m *TestAllTypes_RepeatedGroup) XXX_Methods() *protoiface.Methods {
  1386. return file_test_test_proto_msgTypes[16].Methods()
  1387. }
  1388. // Deprecated: Use TestAllTypes_RepeatedGroup.ProtoReflect.Type instead.
  1389. func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) {
  1390. return file_test_test_proto_rawDescGZIP(), []int{0, 2}
  1391. }
  1392. func (x *TestAllTypes_RepeatedGroup) GetA() int32 {
  1393. if x != nil && x.A != nil {
  1394. return *x.A
  1395. }
  1396. return 0
  1397. }
  1398. type TestRequiredGroupFields_OptionalGroup struct {
  1399. A *int32 `protobuf:"varint,2,req,name=a" json:"a,omitempty"`
  1400. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1401. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1402. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1403. }
  1404. func (x *TestRequiredGroupFields_OptionalGroup) Reset() {
  1405. *x = TestRequiredGroupFields_OptionalGroup{}
  1406. }
  1407. func (x *TestRequiredGroupFields_OptionalGroup) String() string {
  1408. return protoimpl.X.MessageStringOf(x)
  1409. }
  1410. func (*TestRequiredGroupFields_OptionalGroup) ProtoMessage() {}
  1411. func (x *TestRequiredGroupFields_OptionalGroup) ProtoReflect() protoreflect.Message {
  1412. return file_test_test_proto_msgTypes[35].MessageOf(x)
  1413. }
  1414. func (m *TestRequiredGroupFields_OptionalGroup) XXX_Methods() *protoiface.Methods {
  1415. return file_test_test_proto_msgTypes[35].Methods()
  1416. }
  1417. // Deprecated: Use TestRequiredGroupFields_OptionalGroup.ProtoReflect.Type instead.
  1418. func (*TestRequiredGroupFields_OptionalGroup) Descriptor() ([]byte, []int) {
  1419. return file_test_test_proto_rawDescGZIP(), []int{10, 0}
  1420. }
  1421. func (x *TestRequiredGroupFields_OptionalGroup) GetA() int32 {
  1422. if x != nil && x.A != nil {
  1423. return *x.A
  1424. }
  1425. return 0
  1426. }
  1427. type TestRequiredGroupFields_RepeatedGroup struct {
  1428. A *int32 `protobuf:"varint,4,req,name=a" json:"a,omitempty"`
  1429. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1430. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  1431. XXX_sizecache protoimpl.SizeCache `json:"-"`
  1432. }
  1433. func (x *TestRequiredGroupFields_RepeatedGroup) Reset() {
  1434. *x = TestRequiredGroupFields_RepeatedGroup{}
  1435. }
  1436. func (x *TestRequiredGroupFields_RepeatedGroup) String() string {
  1437. return protoimpl.X.MessageStringOf(x)
  1438. }
  1439. func (*TestRequiredGroupFields_RepeatedGroup) ProtoMessage() {}
  1440. func (x *TestRequiredGroupFields_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1441. return file_test_test_proto_msgTypes[36].MessageOf(x)
  1442. }
  1443. func (m *TestRequiredGroupFields_RepeatedGroup) XXX_Methods() *protoiface.Methods {
  1444. return file_test_test_proto_msgTypes[36].Methods()
  1445. }
  1446. // Deprecated: Use TestRequiredGroupFields_RepeatedGroup.ProtoReflect.Type instead.
  1447. func (*TestRequiredGroupFields_RepeatedGroup) Descriptor() ([]byte, []int) {
  1448. return file_test_test_proto_rawDescGZIP(), []int{10, 1}
  1449. }
  1450. func (x *TestRequiredGroupFields_RepeatedGroup) GetA() int32 {
  1451. if x != nil && x.A != nil {
  1452. return *x.A
  1453. }
  1454. return 0
  1455. }
  1456. var file_test_test_proto_extDescs = []protoiface.ExtensionDescV1{
  1457. {
  1458. ExtendedType: (*TestAllExtensions)(nil),
  1459. ExtensionType: (*int32)(nil),
  1460. Field: 1,
  1461. Name: "goproto.proto.test.optional_int32_extension",
  1462. Tag: "varint,1,opt,name=optional_int32_extension",
  1463. Filename: "test/test.proto",
  1464. },
  1465. {
  1466. ExtendedType: (*TestAllExtensions)(nil),
  1467. ExtensionType: (*int64)(nil),
  1468. Field: 2,
  1469. Name: "goproto.proto.test.optional_int64_extension",
  1470. Tag: "varint,2,opt,name=optional_int64_extension",
  1471. Filename: "test/test.proto",
  1472. },
  1473. {
  1474. ExtendedType: (*TestAllExtensions)(nil),
  1475. ExtensionType: (*uint32)(nil),
  1476. Field: 3,
  1477. Name: "goproto.proto.test.optional_uint32_extension",
  1478. Tag: "varint,3,opt,name=optional_uint32_extension",
  1479. Filename: "test/test.proto",
  1480. },
  1481. {
  1482. ExtendedType: (*TestAllExtensions)(nil),
  1483. ExtensionType: (*uint64)(nil),
  1484. Field: 4,
  1485. Name: "goproto.proto.test.optional_uint64_extension",
  1486. Tag: "varint,4,opt,name=optional_uint64_extension",
  1487. Filename: "test/test.proto",
  1488. },
  1489. {
  1490. ExtendedType: (*TestAllExtensions)(nil),
  1491. ExtensionType: (*int32)(nil),
  1492. Field: 5,
  1493. Name: "goproto.proto.test.optional_sint32_extension",
  1494. Tag: "zigzag32,5,opt,name=optional_sint32_extension",
  1495. Filename: "test/test.proto",
  1496. },
  1497. {
  1498. ExtendedType: (*TestAllExtensions)(nil),
  1499. ExtensionType: (*int64)(nil),
  1500. Field: 6,
  1501. Name: "goproto.proto.test.optional_sint64_extension",
  1502. Tag: "zigzag64,6,opt,name=optional_sint64_extension",
  1503. Filename: "test/test.proto",
  1504. },
  1505. {
  1506. ExtendedType: (*TestAllExtensions)(nil),
  1507. ExtensionType: (*uint32)(nil),
  1508. Field: 7,
  1509. Name: "goproto.proto.test.optional_fixed32_extension",
  1510. Tag: "fixed32,7,opt,name=optional_fixed32_extension",
  1511. Filename: "test/test.proto",
  1512. },
  1513. {
  1514. ExtendedType: (*TestAllExtensions)(nil),
  1515. ExtensionType: (*uint64)(nil),
  1516. Field: 8,
  1517. Name: "goproto.proto.test.optional_fixed64_extension",
  1518. Tag: "fixed64,8,opt,name=optional_fixed64_extension",
  1519. Filename: "test/test.proto",
  1520. },
  1521. {
  1522. ExtendedType: (*TestAllExtensions)(nil),
  1523. ExtensionType: (*int32)(nil),
  1524. Field: 9,
  1525. Name: "goproto.proto.test.optional_sfixed32_extension",
  1526. Tag: "fixed32,9,opt,name=optional_sfixed32_extension",
  1527. Filename: "test/test.proto",
  1528. },
  1529. {
  1530. ExtendedType: (*TestAllExtensions)(nil),
  1531. ExtensionType: (*int64)(nil),
  1532. Field: 10,
  1533. Name: "goproto.proto.test.optional_sfixed64_extension",
  1534. Tag: "fixed64,10,opt,name=optional_sfixed64_extension",
  1535. Filename: "test/test.proto",
  1536. },
  1537. {
  1538. ExtendedType: (*TestAllExtensions)(nil),
  1539. ExtensionType: (*float32)(nil),
  1540. Field: 11,
  1541. Name: "goproto.proto.test.optional_float_extension",
  1542. Tag: "fixed32,11,opt,name=optional_float_extension",
  1543. Filename: "test/test.proto",
  1544. },
  1545. {
  1546. ExtendedType: (*TestAllExtensions)(nil),
  1547. ExtensionType: (*float64)(nil),
  1548. Field: 12,
  1549. Name: "goproto.proto.test.optional_double_extension",
  1550. Tag: "fixed64,12,opt,name=optional_double_extension",
  1551. Filename: "test/test.proto",
  1552. },
  1553. {
  1554. ExtendedType: (*TestAllExtensions)(nil),
  1555. ExtensionType: (*bool)(nil),
  1556. Field: 13,
  1557. Name: "goproto.proto.test.optional_bool_extension",
  1558. Tag: "varint,13,opt,name=optional_bool_extension",
  1559. Filename: "test/test.proto",
  1560. },
  1561. {
  1562. ExtendedType: (*TestAllExtensions)(nil),
  1563. ExtensionType: (*string)(nil),
  1564. Field: 14,
  1565. Name: "goproto.proto.test.optional_string_extension",
  1566. Tag: "bytes,14,opt,name=optional_string_extension",
  1567. Filename: "test/test.proto",
  1568. },
  1569. {
  1570. ExtendedType: (*TestAllExtensions)(nil),
  1571. ExtensionType: ([]byte)(nil),
  1572. Field: 15,
  1573. Name: "goproto.proto.test.optional_bytes_extension",
  1574. Tag: "bytes,15,opt,name=optional_bytes_extension",
  1575. Filename: "test/test.proto",
  1576. },
  1577. {
  1578. ExtendedType: (*TestAllExtensions)(nil),
  1579. ExtensionType: (*OptionalGroupExtension)(nil),
  1580. Field: 16,
  1581. Name: "goproto.proto.test.optionalgroup_extension",
  1582. Tag: "group,16,opt,name=OptionalGroup_extension",
  1583. Filename: "test/test.proto",
  1584. },
  1585. {
  1586. ExtendedType: (*TestAllExtensions)(nil),
  1587. ExtensionType: (*TestAllTypes_NestedMessage)(nil),
  1588. Field: 18,
  1589. Name: "goproto.proto.test.optional_nested_message_extension",
  1590. Tag: "bytes,18,opt,name=optional_nested_message_extension",
  1591. Filename: "test/test.proto",
  1592. },
  1593. {
  1594. ExtendedType: (*TestAllExtensions)(nil),
  1595. ExtensionType: (*TestAllTypes_NestedEnum)(nil),
  1596. Field: 21,
  1597. Name: "goproto.proto.test.optional_nested_enum_extension",
  1598. Tag: "varint,21,opt,name=optional_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  1599. Filename: "test/test.proto",
  1600. },
  1601. {
  1602. ExtendedType: (*TestAllExtensions)(nil),
  1603. ExtensionType: ([]int32)(nil),
  1604. Field: 31,
  1605. Name: "goproto.proto.test.repeated_int32_extension",
  1606. Tag: "varint,31,rep,name=repeated_int32_extension",
  1607. Filename: "test/test.proto",
  1608. },
  1609. {
  1610. ExtendedType: (*TestAllExtensions)(nil),
  1611. ExtensionType: ([]int64)(nil),
  1612. Field: 32,
  1613. Name: "goproto.proto.test.repeated_int64_extension",
  1614. Tag: "varint,32,rep,name=repeated_int64_extension",
  1615. Filename: "test/test.proto",
  1616. },
  1617. {
  1618. ExtendedType: (*TestAllExtensions)(nil),
  1619. ExtensionType: ([]uint32)(nil),
  1620. Field: 33,
  1621. Name: "goproto.proto.test.repeated_uint32_extension",
  1622. Tag: "varint,33,rep,name=repeated_uint32_extension",
  1623. Filename: "test/test.proto",
  1624. },
  1625. {
  1626. ExtendedType: (*TestAllExtensions)(nil),
  1627. ExtensionType: ([]uint64)(nil),
  1628. Field: 34,
  1629. Name: "goproto.proto.test.repeated_uint64_extension",
  1630. Tag: "varint,34,rep,name=repeated_uint64_extension",
  1631. Filename: "test/test.proto",
  1632. },
  1633. {
  1634. ExtendedType: (*TestAllExtensions)(nil),
  1635. ExtensionType: ([]int32)(nil),
  1636. Field: 35,
  1637. Name: "goproto.proto.test.repeated_sint32_extension",
  1638. Tag: "zigzag32,35,rep,name=repeated_sint32_extension",
  1639. Filename: "test/test.proto",
  1640. },
  1641. {
  1642. ExtendedType: (*TestAllExtensions)(nil),
  1643. ExtensionType: ([]int64)(nil),
  1644. Field: 36,
  1645. Name: "goproto.proto.test.repeated_sint64_extension",
  1646. Tag: "zigzag64,36,rep,name=repeated_sint64_extension",
  1647. Filename: "test/test.proto",
  1648. },
  1649. {
  1650. ExtendedType: (*TestAllExtensions)(nil),
  1651. ExtensionType: ([]uint32)(nil),
  1652. Field: 37,
  1653. Name: "goproto.proto.test.repeated_fixed32_extension",
  1654. Tag: "fixed32,37,rep,name=repeated_fixed32_extension",
  1655. Filename: "test/test.proto",
  1656. },
  1657. {
  1658. ExtendedType: (*TestAllExtensions)(nil),
  1659. ExtensionType: ([]uint64)(nil),
  1660. Field: 38,
  1661. Name: "goproto.proto.test.repeated_fixed64_extension",
  1662. Tag: "fixed64,38,rep,name=repeated_fixed64_extension",
  1663. Filename: "test/test.proto",
  1664. },
  1665. {
  1666. ExtendedType: (*TestAllExtensions)(nil),
  1667. ExtensionType: ([]int32)(nil),
  1668. Field: 39,
  1669. Name: "goproto.proto.test.repeated_sfixed32_extension",
  1670. Tag: "fixed32,39,rep,name=repeated_sfixed32_extension",
  1671. Filename: "test/test.proto",
  1672. },
  1673. {
  1674. ExtendedType: (*TestAllExtensions)(nil),
  1675. ExtensionType: ([]int64)(nil),
  1676. Field: 40,
  1677. Name: "goproto.proto.test.repeated_sfixed64_extension",
  1678. Tag: "fixed64,40,rep,name=repeated_sfixed64_extension",
  1679. Filename: "test/test.proto",
  1680. },
  1681. {
  1682. ExtendedType: (*TestAllExtensions)(nil),
  1683. ExtensionType: ([]float32)(nil),
  1684. Field: 41,
  1685. Name: "goproto.proto.test.repeated_float_extension",
  1686. Tag: "fixed32,41,rep,name=repeated_float_extension",
  1687. Filename: "test/test.proto",
  1688. },
  1689. {
  1690. ExtendedType: (*TestAllExtensions)(nil),
  1691. ExtensionType: ([]float64)(nil),
  1692. Field: 42,
  1693. Name: "goproto.proto.test.repeated_double_extension",
  1694. Tag: "fixed64,42,rep,name=repeated_double_extension",
  1695. Filename: "test/test.proto",
  1696. },
  1697. {
  1698. ExtendedType: (*TestAllExtensions)(nil),
  1699. ExtensionType: ([]bool)(nil),
  1700. Field: 43,
  1701. Name: "goproto.proto.test.repeated_bool_extension",
  1702. Tag: "varint,43,rep,name=repeated_bool_extension",
  1703. Filename: "test/test.proto",
  1704. },
  1705. {
  1706. ExtendedType: (*TestAllExtensions)(nil),
  1707. ExtensionType: ([]string)(nil),
  1708. Field: 44,
  1709. Name: "goproto.proto.test.repeated_string_extension",
  1710. Tag: "bytes,44,rep,name=repeated_string_extension",
  1711. Filename: "test/test.proto",
  1712. },
  1713. {
  1714. ExtendedType: (*TestAllExtensions)(nil),
  1715. ExtensionType: ([][]byte)(nil),
  1716. Field: 45,
  1717. Name: "goproto.proto.test.repeated_bytes_extension",
  1718. Tag: "bytes,45,rep,name=repeated_bytes_extension",
  1719. Filename: "test/test.proto",
  1720. },
  1721. {
  1722. ExtendedType: (*TestAllExtensions)(nil),
  1723. ExtensionType: ([]*RepeatedGroupExtension)(nil),
  1724. Field: 46,
  1725. Name: "goproto.proto.test.repeatedgroup_extension",
  1726. Tag: "group,46,rep,name=RepeatedGroup_extension",
  1727. Filename: "test/test.proto",
  1728. },
  1729. {
  1730. ExtendedType: (*TestAllExtensions)(nil),
  1731. ExtensionType: ([]*TestAllTypes_NestedMessage)(nil),
  1732. Field: 48,
  1733. Name: "goproto.proto.test.repeated_nested_message_extension",
  1734. Tag: "bytes,48,rep,name=repeated_nested_message_extension",
  1735. Filename: "test/test.proto",
  1736. },
  1737. {
  1738. ExtendedType: (*TestAllExtensions)(nil),
  1739. ExtensionType: ([]TestAllTypes_NestedEnum)(nil),
  1740. Field: 51,
  1741. Name: "goproto.proto.test.repeated_nested_enum_extension",
  1742. Tag: "varint,51,rep,name=repeated_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  1743. Filename: "test/test.proto",
  1744. },
  1745. {
  1746. ExtendedType: (*TestAllExtensions)(nil),
  1747. ExtensionType: (*int32)(nil),
  1748. Field: 81,
  1749. Name: "goproto.proto.test.default_int32_extension",
  1750. Tag: "varint,81,opt,name=default_int32_extension,def=81",
  1751. Filename: "test/test.proto",
  1752. },
  1753. {
  1754. ExtendedType: (*TestAllExtensions)(nil),
  1755. ExtensionType: (*int64)(nil),
  1756. Field: 82,
  1757. Name: "goproto.proto.test.default_int64_extension",
  1758. Tag: "varint,82,opt,name=default_int64_extension,def=82",
  1759. Filename: "test/test.proto",
  1760. },
  1761. {
  1762. ExtendedType: (*TestAllExtensions)(nil),
  1763. ExtensionType: (*uint32)(nil),
  1764. Field: 83,
  1765. Name: "goproto.proto.test.default_uint32_extension",
  1766. Tag: "varint,83,opt,name=default_uint32_extension,def=83",
  1767. Filename: "test/test.proto",
  1768. },
  1769. {
  1770. ExtendedType: (*TestAllExtensions)(nil),
  1771. ExtensionType: (*uint64)(nil),
  1772. Field: 84,
  1773. Name: "goproto.proto.test.default_uint64_extension",
  1774. Tag: "varint,84,opt,name=default_uint64_extension,def=84",
  1775. Filename: "test/test.proto",
  1776. },
  1777. {
  1778. ExtendedType: (*TestAllExtensions)(nil),
  1779. ExtensionType: (*int32)(nil),
  1780. Field: 85,
  1781. Name: "goproto.proto.test.default_sint32_extension",
  1782. Tag: "zigzag32,85,opt,name=default_sint32_extension,def=-85",
  1783. Filename: "test/test.proto",
  1784. },
  1785. {
  1786. ExtendedType: (*TestAllExtensions)(nil),
  1787. ExtensionType: (*int64)(nil),
  1788. Field: 86,
  1789. Name: "goproto.proto.test.default_sint64_extension",
  1790. Tag: "zigzag64,86,opt,name=default_sint64_extension,def=86",
  1791. Filename: "test/test.proto",
  1792. },
  1793. {
  1794. ExtendedType: (*TestAllExtensions)(nil),
  1795. ExtensionType: (*uint32)(nil),
  1796. Field: 87,
  1797. Name: "goproto.proto.test.default_fixed32_extension",
  1798. Tag: "fixed32,87,opt,name=default_fixed32_extension,def=87",
  1799. Filename: "test/test.proto",
  1800. },
  1801. {
  1802. ExtendedType: (*TestAllExtensions)(nil),
  1803. ExtensionType: (*uint64)(nil),
  1804. Field: 88,
  1805. Name: "goproto.proto.test.default_fixed64_extension",
  1806. Tag: "fixed64,88,opt,name=default_fixed64_extension,def=88",
  1807. Filename: "test/test.proto",
  1808. },
  1809. {
  1810. ExtendedType: (*TestAllExtensions)(nil),
  1811. ExtensionType: (*int32)(nil),
  1812. Field: 89,
  1813. Name: "goproto.proto.test.default_sfixed32_extension",
  1814. Tag: "fixed32,89,opt,name=default_sfixed32_extension,def=89",
  1815. Filename: "test/test.proto",
  1816. },
  1817. {
  1818. ExtendedType: (*TestAllExtensions)(nil),
  1819. ExtensionType: (*int64)(nil),
  1820. Field: 80,
  1821. Name: "goproto.proto.test.default_sfixed64_extension",
  1822. Tag: "fixed64,80,opt,name=default_sfixed64_extension,def=-90",
  1823. Filename: "test/test.proto",
  1824. },
  1825. {
  1826. ExtendedType: (*TestAllExtensions)(nil),
  1827. ExtensionType: (*float32)(nil),
  1828. Field: 91,
  1829. Name: "goproto.proto.test.default_float_extension",
  1830. Tag: "fixed32,91,opt,name=default_float_extension,def=91.5",
  1831. Filename: "test/test.proto",
  1832. },
  1833. {
  1834. ExtendedType: (*TestAllExtensions)(nil),
  1835. ExtensionType: (*float64)(nil),
  1836. Field: 92,
  1837. Name: "goproto.proto.test.default_double_extension",
  1838. Tag: "fixed64,92,opt,name=default_double_extension,def=92000",
  1839. Filename: "test/test.proto",
  1840. },
  1841. {
  1842. ExtendedType: (*TestAllExtensions)(nil),
  1843. ExtensionType: (*bool)(nil),
  1844. Field: 93,
  1845. Name: "goproto.proto.test.default_bool_extension",
  1846. Tag: "varint,93,opt,name=default_bool_extension,def=1",
  1847. Filename: "test/test.proto",
  1848. },
  1849. {
  1850. ExtendedType: (*TestAllExtensions)(nil),
  1851. ExtensionType: (*string)(nil),
  1852. Field: 94,
  1853. Name: "goproto.proto.test.default_string_extension",
  1854. Tag: "bytes,94,opt,name=default_string_extension,def=hello",
  1855. Filename: "test/test.proto",
  1856. },
  1857. {
  1858. ExtendedType: (*TestAllExtensions)(nil),
  1859. ExtensionType: ([]byte)(nil),
  1860. Field: 95,
  1861. Name: "goproto.proto.test.default_bytes_extension",
  1862. Tag: "bytes,95,opt,name=default_bytes_extension,def=world",
  1863. Filename: "test/test.proto",
  1864. },
  1865. {
  1866. ExtendedType: (*TestAllExtensions)(nil),
  1867. ExtensionType: (*string)(nil),
  1868. Field: 1003,
  1869. Name: "goproto.proto.test.TestNestedExtension.nested_string_extension",
  1870. Tag: "bytes,1003,opt,name=nested_string_extension",
  1871. Filename: "test/test.proto",
  1872. },
  1873. {
  1874. ExtendedType: (*TestAllExtensions)(nil),
  1875. ExtensionType: (*TestRequired)(nil),
  1876. Field: 1000,
  1877. Name: "goproto.proto.test.TestRequired.single",
  1878. Tag: "bytes,1000,opt,name=single",
  1879. Filename: "test/test.proto",
  1880. },
  1881. {
  1882. ExtendedType: (*TestAllExtensions)(nil),
  1883. ExtensionType: ([]*TestRequired)(nil),
  1884. Field: 1001,
  1885. Name: "goproto.proto.test.TestRequired.multi",
  1886. Tag: "bytes,1001,rep,name=multi",
  1887. Filename: "test/test.proto",
  1888. },
  1889. }
  1890. var (
  1891. // extend goproto.proto.test.TestAllExtensions { optional int32 optional_int32_extension = 1; }
  1892. E_OptionalInt32Extension = &file_test_test_proto_extDescs[0]
  1893. // extend goproto.proto.test.TestAllExtensions { optional int64 optional_int64_extension = 2; }
  1894. E_OptionalInt64Extension = &file_test_test_proto_extDescs[1]
  1895. // extend goproto.proto.test.TestAllExtensions { optional uint32 optional_uint32_extension = 3; }
  1896. E_OptionalUint32Extension = &file_test_test_proto_extDescs[2]
  1897. // extend goproto.proto.test.TestAllExtensions { optional uint64 optional_uint64_extension = 4; }
  1898. E_OptionalUint64Extension = &file_test_test_proto_extDescs[3]
  1899. // extend goproto.proto.test.TestAllExtensions { optional sint32 optional_sint32_extension = 5; }
  1900. E_OptionalSint32Extension = &file_test_test_proto_extDescs[4]
  1901. // extend goproto.proto.test.TestAllExtensions { optional sint64 optional_sint64_extension = 6; }
  1902. E_OptionalSint64Extension = &file_test_test_proto_extDescs[5]
  1903. // extend goproto.proto.test.TestAllExtensions { optional fixed32 optional_fixed32_extension = 7; }
  1904. E_OptionalFixed32Extension = &file_test_test_proto_extDescs[6]
  1905. // extend goproto.proto.test.TestAllExtensions { optional fixed64 optional_fixed64_extension = 8; }
  1906. E_OptionalFixed64Extension = &file_test_test_proto_extDescs[7]
  1907. // extend goproto.proto.test.TestAllExtensions { optional sfixed32 optional_sfixed32_extension = 9; }
  1908. E_OptionalSfixed32Extension = &file_test_test_proto_extDescs[8]
  1909. // extend goproto.proto.test.TestAllExtensions { optional sfixed64 optional_sfixed64_extension = 10; }
  1910. E_OptionalSfixed64Extension = &file_test_test_proto_extDescs[9]
  1911. // extend goproto.proto.test.TestAllExtensions { optional float optional_float_extension = 11; }
  1912. E_OptionalFloatExtension = &file_test_test_proto_extDescs[10]
  1913. // extend goproto.proto.test.TestAllExtensions { optional double optional_double_extension = 12; }
  1914. E_OptionalDoubleExtension = &file_test_test_proto_extDescs[11]
  1915. // extend goproto.proto.test.TestAllExtensions { optional bool optional_bool_extension = 13; }
  1916. E_OptionalBoolExtension = &file_test_test_proto_extDescs[12]
  1917. // extend goproto.proto.test.TestAllExtensions { optional string optional_string_extension = 14; }
  1918. E_OptionalStringExtension = &file_test_test_proto_extDescs[13]
  1919. // extend goproto.proto.test.TestAllExtensions { optional bytes optional_bytes_extension = 15; }
  1920. E_OptionalBytesExtension = &file_test_test_proto_extDescs[14]
  1921. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.OptionalGroup_extension optionalgroup_extension = 16; }
  1922. E_OptionalgroupExtension = &file_test_test_proto_extDescs[15]
  1923. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedMessage optional_nested_message_extension = 18; }
  1924. E_OptionalNestedMessageExtension = &file_test_test_proto_extDescs[16]
  1925. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedEnum optional_nested_enum_extension = 21; }
  1926. E_OptionalNestedEnumExtension = &file_test_test_proto_extDescs[17]
  1927. // extend goproto.proto.test.TestAllExtensions { repeated int32 repeated_int32_extension = 31; }
  1928. E_RepeatedInt32Extension = &file_test_test_proto_extDescs[18]
  1929. // extend goproto.proto.test.TestAllExtensions { repeated int64 repeated_int64_extension = 32; }
  1930. E_RepeatedInt64Extension = &file_test_test_proto_extDescs[19]
  1931. // extend goproto.proto.test.TestAllExtensions { repeated uint32 repeated_uint32_extension = 33; }
  1932. E_RepeatedUint32Extension = &file_test_test_proto_extDescs[20]
  1933. // extend goproto.proto.test.TestAllExtensions { repeated uint64 repeated_uint64_extension = 34; }
  1934. E_RepeatedUint64Extension = &file_test_test_proto_extDescs[21]
  1935. // extend goproto.proto.test.TestAllExtensions { repeated sint32 repeated_sint32_extension = 35; }
  1936. E_RepeatedSint32Extension = &file_test_test_proto_extDescs[22]
  1937. // extend goproto.proto.test.TestAllExtensions { repeated sint64 repeated_sint64_extension = 36; }
  1938. E_RepeatedSint64Extension = &file_test_test_proto_extDescs[23]
  1939. // extend goproto.proto.test.TestAllExtensions { repeated fixed32 repeated_fixed32_extension = 37; }
  1940. E_RepeatedFixed32Extension = &file_test_test_proto_extDescs[24]
  1941. // extend goproto.proto.test.TestAllExtensions { repeated fixed64 repeated_fixed64_extension = 38; }
  1942. E_RepeatedFixed64Extension = &file_test_test_proto_extDescs[25]
  1943. // extend goproto.proto.test.TestAllExtensions { repeated sfixed32 repeated_sfixed32_extension = 39; }
  1944. E_RepeatedSfixed32Extension = &file_test_test_proto_extDescs[26]
  1945. // extend goproto.proto.test.TestAllExtensions { repeated sfixed64 repeated_sfixed64_extension = 40; }
  1946. E_RepeatedSfixed64Extension = &file_test_test_proto_extDescs[27]
  1947. // extend goproto.proto.test.TestAllExtensions { repeated float repeated_float_extension = 41; }
  1948. E_RepeatedFloatExtension = &file_test_test_proto_extDescs[28]
  1949. // extend goproto.proto.test.TestAllExtensions { repeated double repeated_double_extension = 42; }
  1950. E_RepeatedDoubleExtension = &file_test_test_proto_extDescs[29]
  1951. // extend goproto.proto.test.TestAllExtensions { repeated bool repeated_bool_extension = 43; }
  1952. E_RepeatedBoolExtension = &file_test_test_proto_extDescs[30]
  1953. // extend goproto.proto.test.TestAllExtensions { repeated string repeated_string_extension = 44; }
  1954. E_RepeatedStringExtension = &file_test_test_proto_extDescs[31]
  1955. // extend goproto.proto.test.TestAllExtensions { repeated bytes repeated_bytes_extension = 45; }
  1956. E_RepeatedBytesExtension = &file_test_test_proto_extDescs[32]
  1957. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.RepeatedGroup_extension repeatedgroup_extension = 46; }
  1958. E_RepeatedgroupExtension = &file_test_test_proto_extDescs[33]
  1959. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedMessage repeated_nested_message_extension = 48; }
  1960. E_RepeatedNestedMessageExtension = &file_test_test_proto_extDescs[34]
  1961. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedEnum repeated_nested_enum_extension = 51; }
  1962. E_RepeatedNestedEnumExtension = &file_test_test_proto_extDescs[35]
  1963. // extend goproto.proto.test.TestAllExtensions { optional int32 default_int32_extension = 81; }
  1964. E_DefaultInt32Extension = &file_test_test_proto_extDescs[36]
  1965. // extend goproto.proto.test.TestAllExtensions { optional int64 default_int64_extension = 82; }
  1966. E_DefaultInt64Extension = &file_test_test_proto_extDescs[37]
  1967. // extend goproto.proto.test.TestAllExtensions { optional uint32 default_uint32_extension = 83; }
  1968. E_DefaultUint32Extension = &file_test_test_proto_extDescs[38]
  1969. // extend goproto.proto.test.TestAllExtensions { optional uint64 default_uint64_extension = 84; }
  1970. E_DefaultUint64Extension = &file_test_test_proto_extDescs[39]
  1971. // extend goproto.proto.test.TestAllExtensions { optional sint32 default_sint32_extension = 85; }
  1972. E_DefaultSint32Extension = &file_test_test_proto_extDescs[40]
  1973. // extend goproto.proto.test.TestAllExtensions { optional sint64 default_sint64_extension = 86; }
  1974. E_DefaultSint64Extension = &file_test_test_proto_extDescs[41]
  1975. // extend goproto.proto.test.TestAllExtensions { optional fixed32 default_fixed32_extension = 87; }
  1976. E_DefaultFixed32Extension = &file_test_test_proto_extDescs[42]
  1977. // extend goproto.proto.test.TestAllExtensions { optional fixed64 default_fixed64_extension = 88; }
  1978. E_DefaultFixed64Extension = &file_test_test_proto_extDescs[43]
  1979. // extend goproto.proto.test.TestAllExtensions { optional sfixed32 default_sfixed32_extension = 89; }
  1980. E_DefaultSfixed32Extension = &file_test_test_proto_extDescs[44]
  1981. // extend goproto.proto.test.TestAllExtensions { optional sfixed64 default_sfixed64_extension = 80; }
  1982. E_DefaultSfixed64Extension = &file_test_test_proto_extDescs[45]
  1983. // extend goproto.proto.test.TestAllExtensions { optional float default_float_extension = 91; }
  1984. E_DefaultFloatExtension = &file_test_test_proto_extDescs[46]
  1985. // extend goproto.proto.test.TestAllExtensions { optional double default_double_extension = 92; }
  1986. E_DefaultDoubleExtension = &file_test_test_proto_extDescs[47]
  1987. // extend goproto.proto.test.TestAllExtensions { optional bool default_bool_extension = 93; }
  1988. E_DefaultBoolExtension = &file_test_test_proto_extDescs[48]
  1989. // extend goproto.proto.test.TestAllExtensions { optional string default_string_extension = 94; }
  1990. E_DefaultStringExtension = &file_test_test_proto_extDescs[49]
  1991. // extend goproto.proto.test.TestAllExtensions { optional bytes default_bytes_extension = 95; }
  1992. E_DefaultBytesExtension = &file_test_test_proto_extDescs[50]
  1993. // extend goproto.proto.test.TestAllExtensions { optional string nested_string_extension = 1003; }
  1994. E_TestNestedExtension_NestedStringExtension = &file_test_test_proto_extDescs[51]
  1995. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestRequired single = 1000; }
  1996. E_TestRequired_Single = &file_test_test_proto_extDescs[52]
  1997. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestRequired multi = 1001; }
  1998. E_TestRequired_Multi = &file_test_test_proto_extDescs[53]
  1999. )
  2000. var File_test_test_proto protoreflect.FileDescriptor
  2001. var file_test_test_proto_rawDesc = []byte{
  2002. 0x0a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2003. 0x6f, 0x12, 0x12, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2004. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74,
  2005. 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x74,
  2006. 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2e,
  2007. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x77, 0x65, 0x61, 0x6b,
  2008. 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2009. 0x22, 0xe4, 0x36, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2010. 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e,
  2011. 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2012. 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  2013. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2014. 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12,
  2015. 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  2016. 0x33, 0x32, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2017. 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  2018. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28,
  2019. 0x04, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2020. 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69,
  2021. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  2022. 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70,
  2023. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x06, 0x20,
  2024. 0x01, 0x28, 0x12, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e,
  2025. 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2026. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x6f,
  2027. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29,
  2028. 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  2029. 0x36, 0x34, 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2030. 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74,
  2031. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x09,
  2032. 0x20, 0x01, 0x28, 0x0f, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66,
  2033. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2034. 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2035. 0x10, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65,
  2036. 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2037. 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74,
  2038. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70,
  2039. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x0c, 0x20,
  2040. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75,
  2041. 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2042. 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x69,
  2043. 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  2044. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28,
  2045. 0x09, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e,
  2046. 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79,
  2047. 0x74, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2048. 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69,
  2049. 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32,
  2050. 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2051. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2052. 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52,
  2053. 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66,
  2054. 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65,
  2055. 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2056. 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2057. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2058. 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
  2059. 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d,
  2060. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2061. 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2062. 0x67, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2063. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  2064. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x6f, 0x70,
  2065. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73,
  2066. 0x73, 0x61, 0x67, 0x65, 0x12, 0x59, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2067. 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2068. 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2069. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2070. 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2071. 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2072. 0x5d, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2073. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
  2074. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2075. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2076. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69,
  2077. 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53,
  2078. 0x0a, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69,
  2079. 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e,
  2080. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2081. 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13,
  2082. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45,
  2083. 0x6e, 0x75, 0x6d, 0x12, 0x50, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2084. 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28,
  2085. 0x0e, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2086. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75,
  2087. 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2088. 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2089. 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0d, 0x72,
  2090. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e,
  2091. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x20,
  2092. 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
  2093. 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2094. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65,
  2095. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f,
  2096. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18,
  2097. 0x22, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55,
  2098. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2099. 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x0e,
  2100. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27,
  2101. 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36,
  2102. 0x34, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2103. 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61,
  2104. 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x25, 0x20, 0x03, 0x28,
  2105. 0x07, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64,
  2106. 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66,
  2107. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x0f, 0x72, 0x65,
  2108. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a,
  2109. 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  2110. 0x33, 0x32, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2111. 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65,
  2112. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18,
  2113. 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2114. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61,
  2115. 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52,
  2116. 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27,
  2117. 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c,
  2118. 0x65, 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2119. 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61,
  2120. 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0c,
  2121. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f,
  2122. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18,
  2123. 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2124. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2125. 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x72,
  2126. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d,
  2127. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x2e, 0x20,
  2128. 0x03, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2129. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2130. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72,
  2131. 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f,
  2132. 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e,
  2133. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x30, 0x20,
  2134. 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2135. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2136. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2137. 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73,
  2138. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x72, 0x65,
  2139. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d,
  2140. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x31, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67,
  2141. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2142. 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2143. 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67,
  2144. 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x58, 0x0a, 0x16, 0x72, 0x65, 0x70, 0x65,
  2145. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2146. 0x67, 0x65, 0x18, 0x32, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2147. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d,
  2148. 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70,
  2149. 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2150. 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e,
  2151. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e,
  2152. 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2153. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2154. 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72,
  2155. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75,
  2156. 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f,
  2157. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x34, 0x20, 0x03, 0x28, 0x0e,
  2158. 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2159. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75,
  2160. 0x6d, 0x52, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69,
  2161. 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x4f, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2162. 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x35, 0x20,
  2163. 0x03, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2164. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45,
  2165. 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70,
  2166. 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69,
  2167. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x38, 0x20, 0x03, 0x28, 0x0b,
  2168. 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2169. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2170. 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32,
  2171. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49,
  2172. 0x6e, 0x74, 0x33, 0x32, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x36,
  2173. 0x34, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x39, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e,
  2174. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2175. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2176. 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74,
  2177. 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36,
  2178. 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f,
  2179. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  2180. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2181. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  2182. 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e,
  2183. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69,
  2184. 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  2185. 0x36, 0x34, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3b, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2186. 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2187. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2188. 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2189. 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2190. 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73,
  2191. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3c, 0x20, 0x03,
  2192. 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2193. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  2194. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69,
  2195. 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69,
  2196. 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61,
  2197. 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18,
  2198. 0x3d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2199. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2200. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36,
  2201. 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61,
  2202. 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x67, 0x0a,
  2203. 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x78,
  2204. 0x65, 0x64, 0x33, 0x32, 0x18, 0x3e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70,
  2205. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2206. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  2207. 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e,
  2208. 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46,
  2209. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69,
  2210. 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x3f, 0x20,
  2211. 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2212. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2213. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2214. 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61,
  2215. 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12,
  2216. 0x6d, 0x0a, 0x15, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f,
  2217. 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x40, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39,
  2218. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2219. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2220. 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78,
  2221. 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66,
  2222. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x6d,
  2223. 0x0a, 0x15, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x73,
  2224. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x41, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e,
  2225. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2226. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2227. 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65,
  2228. 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69,
  2229. 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x5b, 0x0a,
  2230. 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  2231. 0x18, 0x42, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2232. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2233. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33,
  2234. 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70,
  2235. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61,
  2236. 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x43,
  2237. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2238. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2239. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44,
  2240. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x49,
  2241. 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6d, 0x61,
  2242. 0x70, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x44, 0x20, 0x03, 0x28,
  2243. 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2244. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  2245. 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45,
  2246. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x6d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f,
  2247. 0x6c, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  2248. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x45, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  2249. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2250. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  2251. 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e,
  2252. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74,
  2253. 0x72, 0x69, 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69,
  2254. 0x6e, 0x67, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x46, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34,
  2255. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2256. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2257. 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45,
  2258. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42,
  2259. 0x79, 0x74, 0x65, 0x73, 0x12, 0x77, 0x0a, 0x19, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69,
  2260. 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2261. 0x65, 0x18, 0x47, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2262. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2263. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72,
  2264. 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2265. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x16, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  2266. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x6e, 0x0a,
  2267. 0x16, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2268. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x49, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e,
  2269. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2270. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2271. 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  2272. 0x6e, 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72,
  2273. 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x27, 0x0a,
  2274. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x51,
  2275. 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  2276. 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  2277. 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38,
  2278. 0x32, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12,
  2279. 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33,
  2280. 0x32, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x0d, 0x64, 0x65, 0x66,
  2281. 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65,
  2282. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x54, 0x20, 0x01,
  2283. 0x28, 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55,
  2284. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2285. 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d,
  2286. 0x38, 0x35, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33,
  2287. 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e,
  2288. 0x74, 0x36, 0x34, 0x18, 0x56, 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x0d, 0x64,
  2289. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f,
  2290. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  2291. 0x57, 0x20, 0x01, 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  2292. 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66,
  2293. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x58, 0x20, 0x01,
  2294. 0x28, 0x06, 0x3a, 0x02, 0x38, 0x38, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46,
  2295. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  2296. 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f,
  2297. 0x3a, 0x02, 0x38, 0x39, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69,
  2298. 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2e, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2299. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a,
  2300. 0x03, 0x2d, 0x39, 0x30, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69,
  2301. 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2302. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31,
  2303. 0x2e, 0x35, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74,
  2304. 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62,
  2305. 0x6c, 0x65, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52,
  2306. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27,
  2307. 0x0a, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x5d,
  2308. 0x20, 0x01, 0x28, 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61,
  2309. 0x75, 0x6c, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  2310. 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a,
  2311. 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53,
  2312. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2313. 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f,
  2314. 0x72, 0x6c, 0x64, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65,
  2315. 0x73, 0x12, 0x60, 0x0a, 0x13, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x6e, 0x65, 0x73,
  2316. 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b,
  2317. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2318. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2319. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x03, 0x42, 0x41, 0x52,
  2320. 0x52, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  2321. 0x6e, 0x75, 0x6d, 0x12, 0x5e, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66,
  2322. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x61, 0x20, 0x01, 0x28,
  2323. 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2324. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e,
  2325. 0x75, 0x6d, 0x3a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x52,
  2326. 0x12, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45,
  2327. 0x6e, 0x75, 0x6d, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e,
  2328. 0x74, 0x33, 0x32, 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65,
  2329. 0x6f, 0x66, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x62, 0x0a, 0x14, 0x6f, 0x6e, 0x65, 0x6f,
  2330. 0x66, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2331. 0x18, 0x70, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2332. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2333. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d,
  2334. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e,
  2335. 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0c,
  2336. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x71, 0x20, 0x01,
  2337. 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x53, 0x74, 0x72, 0x69, 0x6e,
  2338. 0x67, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  2339. 0x18, 0x72, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42,
  2340. 0x79, 0x74, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x6f,
  2341. 0x6f, 0x6c, 0x18, 0x73, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f,
  2342. 0x66, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75,
  2343. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x74, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x6f,
  2344. 0x6e, 0x65, 0x6f, 0x66, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e,
  2345. 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x75, 0x20, 0x01, 0x28, 0x02, 0x48,
  2346. 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x23, 0x0a,
  2347. 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x76, 0x20,
  2348. 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x44, 0x6f, 0x75, 0x62,
  2349. 0x6c, 0x65, 0x12, 0x4c, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d,
  2350. 0x18, 0x77, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2351. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2352. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  2353. 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d,
  2354. 0x1a, 0x61, 0x0a, 0x0d, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2355. 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x12,
  2356. 0x42, 0x0a, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02,
  2357. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2358. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2359. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73,
  2360. 0x69, 0x76, 0x65, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47,
  2361. 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52,
  2362. 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72,
  2363. 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01,
  2364. 0x61, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74,
  2365. 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  2366. 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  2367. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  2368. 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49,
  2369. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  2370. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  2371. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  2372. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74,
  2373. 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  2374. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  2375. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05,
  2376. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70,
  2377. 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72,
  2378. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03,
  2379. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  2380. 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a,
  2381. 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32,
  2382. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2383. 0x28, 0x11, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2384. 0x18, 0x02, 0x20, 0x01, 0x28, 0x11, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2385. 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69,
  2386. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  2387. 0x18, 0x01, 0x20, 0x01, 0x28, 0x12, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  2388. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x12, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  2389. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65,
  2390. 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  2391. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x07, 0x52, 0x03, 0x6b, 0x65,
  2392. 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07,
  2393. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d,
  2394. 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2395. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2396. 0x28, 0x06, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2397. 0x18, 0x02, 0x20, 0x01, 0x28, 0x06, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2398. 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  2399. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  2400. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  2401. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x05,
  2402. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70,
  2403. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2404. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2405. 0x28, 0x10, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2406. 0x18, 0x02, 0x20, 0x01, 0x28, 0x10, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2407. 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f,
  2408. 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  2409. 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  2410. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  2411. 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44,
  2412. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  2413. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  2414. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c,
  2415. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f,
  2416. 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  2417. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  2418. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c,
  2419. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72,
  2420. 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  2421. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  2422. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2423. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61,
  2424. 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,
  2425. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  2426. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  2427. 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x79, 0x0a,
  2428. 0x1b, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  2429. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  2430. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44,
  2431. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
  2432. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2433. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2434. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76,
  2435. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x73, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53,
  2436. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45,
  2437. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  2438. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x41, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  2439. 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2440. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2441. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  2442. 0x75, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x39, 0x0a,
  2443. 0x0a, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x46,
  2444. 0x4f, 0x4f, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x52, 0x10, 0x01, 0x12, 0x07, 0x0a,
  2445. 0x03, 0x42, 0x41, 0x5a, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x45, 0x47, 0x10, 0xff, 0xff,
  2446. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f,
  2447. 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0xc4, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74,
  2448. 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2449. 0x65, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2450. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x52,
  2451. 0x0f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32,
  2452. 0x12, 0x3a, 0x0a, 0x16, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f,
  2453. 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  2454. 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x14, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74,
  2455. 0x65, 0x64, 0x4f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x28, 0x0a, 0x0e,
  2456. 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x12,
  2457. 0x0a, 0x0a, 0x44, 0x45, 0x50, 0x52, 0x45, 0x43, 0x41, 0x54, 0x45, 0x44, 0x10, 0x00, 0x1a, 0x02,
  2458. 0x08, 0x01, 0x1a, 0x02, 0x18, 0x01, 0x3a, 0x02, 0x18, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x64, 0x65,
  2459. 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x22, 0x2c,
  2460. 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2461. 0x12, 0x0c, 0x0a, 0x01, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x63, 0x12, 0x0c,
  2462. 0x0a, 0x01, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x64, 0x22, 0x30, 0x0a, 0x12,
  2463. 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c,
  2464. 0x64, 0x73, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x0f, 0x10, 0x10, 0x4a, 0x04,
  2465. 0x08, 0x09, 0x10, 0x0c, 0x52, 0x03, 0x62, 0x61, 0x72, 0x52, 0x03, 0x62, 0x61, 0x7a, 0x22, 0x1d,
  2466. 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2467. 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x27, 0x0a,
  2468. 0x17, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65,
  2469. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20,
  2470. 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x27, 0x0a, 0x17, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74,
  2471. 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2472. 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22,
  2473. 0x75, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x78, 0x74,
  2474. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x5e, 0x0a, 0x17, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  2475. 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2476. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2477. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2478. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xeb, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  2479. 0x15, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74,
  2480. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x52,
  2481. 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x71, 0x75, 0x69,
  2482. 0x72, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x02, 0x28, 0x05, 0x52,
  2483. 0x0d, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x60,
  2484. 0x0a, 0x06, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2485. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2486. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2487. 0xe8, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2488. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2489. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x06, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65,
  2490. 0x32, 0x5e, 0x0a, 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2491. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2492. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2493. 0x18, 0xe9, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2494. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2495. 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69,
  2496. 0x22, 0xea, 0x02, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
  2497. 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x12, 0x4b, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69,
  2498. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01,
  2499. 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2500. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  2501. 0x69, 0x72, 0x65, 0x64, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4d, 0x65,
  2502. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x4b, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2503. 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2504. 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2505. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
  2506. 0x64, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2507. 0x67, 0x65, 0x12, 0x58, 0x0a, 0x0b, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2508. 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2509. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2510. 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e,
  2511. 0x2e, 0x4d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2512. 0x52, 0x0a, 0x6d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x5f, 0x0a, 0x0f,
  2513. 0x4d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  2514. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65,
  2515. 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  2516. 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2517. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  2518. 0x65, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x99, 0x02,
  2519. 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72,
  2520. 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x5f, 0x0a, 0x0d, 0x6f, 0x70, 0x74,
  2521. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0a,
  2522. 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2523. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  2524. 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2e, 0x4f, 0x70,
  2525. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70, 0x74,
  2526. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x5f, 0x0a, 0x0d, 0x72, 0x65,
  2527. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28,
  2528. 0x0a, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2529. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69,
  2530. 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2e, 0x52,
  2531. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65,
  2532. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f,
  2533. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01,
  2534. 0x61, 0x18, 0x02, 0x20, 0x02, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65,
  2535. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61,
  2536. 0x18, 0x04, 0x20, 0x02, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x5d, 0x0a, 0x08, 0x54, 0x65, 0x73,
  2537. 0x74, 0x57, 0x65, 0x61, 0x6b, 0x12, 0x51, 0x0a, 0x0c, 0x77, 0x65, 0x61, 0x6b, 0x5f, 0x6d, 0x65,
  2538. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f,
  2539. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2540. 0x2e, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x57, 0x65, 0x61, 0x6b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2541. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x42, 0x02, 0x50, 0x01, 0x52, 0x0b, 0x77, 0x65, 0x61,
  2542. 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x0c, 0x0a, 0x0a, 0x46, 0x6f, 0x6f, 0x52,
  2543. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x0d, 0x0a, 0x0b, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73,
  2544. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x40, 0x0a, 0x0b, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e,
  2545. 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f,
  2546. 0x46, 0x4f, 0x4f, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e,
  2547. 0x5f, 0x42, 0x41, 0x52, 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47,
  2548. 0x4e, 0x5f, 0x42, 0x41, 0x5a, 0x10, 0x06, 0x2a, 0x47, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x52,
  2549. 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64,
  2550. 0x73, 0x12, 0x11, 0x0a, 0x0d, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x5f, 0x45, 0x4e,
  2551. 0x55, 0x4d, 0x10, 0x00, 0x22, 0x04, 0x08, 0x02, 0x10, 0x02, 0x22, 0x04, 0x08, 0x0f, 0x10, 0x0f,
  2552. 0x22, 0x04, 0x08, 0x09, 0x10, 0x0b, 0x2a, 0x03, 0x42, 0x41, 0x52, 0x2a, 0x03, 0x42, 0x41, 0x5a,
  2553. 0x32, 0xa8, 0x01, 0x0a, 0x0b, 0x54, 0x65, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  2554. 0x12, 0x46, 0x0a, 0x03, 0x46, 0x6f, 0x6f, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2555. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f,
  2556. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2557. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f,
  2558. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0a, 0x54, 0x65, 0x73, 0x74,
  2559. 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2560. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52,
  2561. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2562. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52,
  2563. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x01, 0x30, 0x01, 0x32, 0x85, 0x01, 0x0a, 0x15,
  2564. 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x53, 0x65,
  2565. 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
  2566. 0x74, 0x65, 0x64, 0x12, 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2567. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70,
  2568. 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x29,
  2569. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2570. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74,
  2571. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x1a, 0x03,
  2572. 0x88, 0x02, 0x01, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2573. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2574. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2575. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  2576. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x6f, 0x70,
  2577. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2578. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2579. 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2580. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2581. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  2582. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16, 0x6f,
  2583. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65,
  2584. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2585. 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2586. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2587. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  2588. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
  2589. 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45,
  2590. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69,
  2591. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2592. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2593. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2594. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01,
  2595. 0x28, 0x04, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74,
  2596. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f,
  2597. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65,
  2598. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2599. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2600. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2601. 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53,
  2602. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61,
  2603. 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36,
  2604. 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  2605. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2606. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2607. 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2608. 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2609. 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69,
  2610. 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2611. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2612. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  2613. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x18, 0x6f, 0x70,
  2614. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74,
  2615. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2616. 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2617. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2618. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2619. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28,
  2620. 0x06, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64,
  2621. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f,
  2622. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  2623. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2624. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2625. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2626. 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2627. 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2628. 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73,
  2629. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2630. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2631. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2632. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x19,
  2633. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2634. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74,
  2635. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2636. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2637. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2638. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01,
  2639. 0x28, 0x02, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61,
  2640. 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70,
  2641. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78,
  2642. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2643. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2644. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c,
  2645. 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f,
  2646. 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a,
  2647. 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65,
  2648. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2649. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2650. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2651. 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42,
  2652. 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19,
  2653. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  2654. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2655. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2656. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2657. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2658. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  2659. 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65,
  2660. 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  2661. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2662. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2663. 0x6e, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2664. 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2665. 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f,
  2666. 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2667. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2668. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2669. 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2670. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f,
  2671. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74,
  2672. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2673. 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0,
  2674. 0x01, 0x0a, 0x21, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2675. 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2676. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2677. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2678. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28,
  2679. 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2680. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  2681. 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2682. 0x65, 0x52, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65,
  2683. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2684. 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e,
  2685. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2686. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2687. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2688. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28,
  2689. 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2690. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  2691. 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b,
  2692. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  2693. 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72,
  2694. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78,
  2695. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2696. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2697. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1f,
  2698. 0x20, 0x03, 0x28, 0x05, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
  2699. 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18,
  2700. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65,
  2701. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2702. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2703. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2704. 0x20, 0x20, 0x03, 0x28, 0x03, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49,
  2705. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a,
  2706. 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
  2707. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2708. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2709. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2710. 0x73, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2711. 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2712. 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e,
  2713. 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  2714. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2715. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2716. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x22, 0x20, 0x03, 0x28, 0x04, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65,
  2717. 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2718. 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2719. 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2720. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2721. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  2722. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x17, 0x72,
  2723. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74,
  2724. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2725. 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2726. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2727. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2728. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12,
  2729. 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34,
  2730. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70,
  2731. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78,
  2732. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2733. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2734. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x25,
  2735. 0x20, 0x03, 0x28, 0x07, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69,
  2736. 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63,
  2737. 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  2738. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2739. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2740. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2741. 0x6f, 0x6e, 0x73, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61,
  2742. 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2743. 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2744. 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2745. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2746. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  2747. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52,
  2748. 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  2749. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65,
  2750. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f,
  2751. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2752. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2753. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2754. 0x18, 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2755. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2756. 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c,
  2757. 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  2758. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2759. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2760. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65,
  2761. 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2762. 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64,
  2763. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2764. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2765. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  2766. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x17, 0x72, 0x65,
  2767. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65,
  2768. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2769. 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2770. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2771. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  2772. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x15, 0x72,
  2773. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2774. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2775. 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2776. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2777. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2778. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x17,
  2779. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78,
  2780. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61,
  2781. 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2782. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2783. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2784. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c,
  2785. 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45,
  2786. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x72, 0x65, 0x70,
  2787. 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2788. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2789. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2790. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2e, 0x20, 0x03, 0x28,
  2791. 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2792. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47,
  2793. 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16,
  2794. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74,
  2795. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x70, 0x65, 0x61,
  2796. 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2797. 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2798. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2799. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2800. 0x6f, 0x6e, 0x73, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2801. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2802. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74,
  2803. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61,
  2804. 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2805. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x72, 0x65,
  2806. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e,
  2807. 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2808. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2809. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2810. 0x6f, 0x6e, 0x73, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2811. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2812. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74,
  2813. 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2814. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2815. 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69,
  2816. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  2817. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2818. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2819. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x51, 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52,
  2820. 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74,
  2821. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  2822. 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2823. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2824. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2825. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02,
  2826. 0x38, 0x32, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34,
  2827. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66,
  2828. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2829. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2830. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2831. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x53, 0x20, 0x01,
  2832. 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55,
  2833. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63,
  2834. 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34,
  2835. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2836. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2837. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2838. 0x73, 0x18, 0x54, 0x20, 0x01, 0x28, 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x16, 0x64, 0x65, 0x66,
  2839. 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2840. 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73,
  2841. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2842. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2843. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  2844. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38,
  2845. 0x35, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32,
  2846. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66,
  2847. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2848. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2849. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2850. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x56, 0x20, 0x01,
  2851. 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53,
  2852. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65,
  2853. 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  2854. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  2855. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2856. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2857. 0x6e, 0x73, 0x18, 0x57, 0x20, 0x01, 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x17, 0x64, 0x65,
  2858. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  2859. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2860. 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2861. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2862. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  2863. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a,
  2864. 0x02, 0x38, 0x38, 0x52, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65,
  2865. 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x67, 0x0a, 0x1a,
  2866. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  2867. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2868. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2869. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2870. 0x73, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38, 0x39, 0x52, 0x18, 0x64, 0x65, 0x66,
  2871. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  2872. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x1a, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2873. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2874. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2875. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2876. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10,
  2877. 0x3a, 0x03, 0x2d, 0x39, 0x30, 0x52, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66,
  2878. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  2879. 0x63, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  2880. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2881. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2882. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2883. 0x73, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52, 0x15, 0x64,
  2884. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2885. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
  2886. 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2887. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2888. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  2889. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39,
  2890. 0x32, 0x30, 0x30, 0x30, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75,
  2891. 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x16,
  2892. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74,
  2893. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2894. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2895. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20,
  2896. 0x01, 0x28, 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75,
  2897. 0x6c, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  2898. 0x66, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
  2899. 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  2900. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2901. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2902. 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x52,
  2903. 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78,
  2904. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75,
  2905. 0x6c, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2906. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2907. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  2908. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a,
  2909. 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42,
  2910. 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x38, 0x5a,
  2911. 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6c, 0x61,
  2912. 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x32, 0x2f, 0x69,
  2913. 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x72, 0x6f, 0x74,
  2914. 0x6f, 0x73, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x50, 0x01, 0x58, 0x02,
  2915. }
  2916. var (
  2917. file_test_test_proto_rawDescOnce sync.Once
  2918. file_test_test_proto_rawDescData = file_test_test_proto_rawDesc
  2919. )
  2920. func file_test_test_proto_rawDescGZIP() []byte {
  2921. file_test_test_proto_rawDescOnce.Do(func() {
  2922. file_test_test_proto_rawDescData = protoimpl.X.CompressGZIP(file_test_test_proto_rawDescData)
  2923. })
  2924. return file_test_test_proto_rawDescData
  2925. }
  2926. var file_test_test_proto_enumTypes = make([]protoreflect.EnumType, 4)
  2927. var file_test_test_proto_msgTypes = make([]protoimpl.MessageType, 37)
  2928. var file_test_test_proto_goTypes = []interface{}{
  2929. (ForeignEnum)(0), // 0: goproto.proto.test.ForeignEnum
  2930. (TestReservedEnumFields)(0), // 1: goproto.proto.test.TestReservedEnumFields
  2931. (TestAllTypes_NestedEnum)(0), // 2: goproto.proto.test.TestAllTypes.NestedEnum
  2932. (TestDeprecatedMessage_DeprecatedEnum)(0), // 3: goproto.proto.test.TestDeprecatedMessage.DeprecatedEnum
  2933. (*TestAllTypes)(nil), // 4: goproto.proto.test.TestAllTypes
  2934. (*TestDeprecatedMessage)(nil), // 5: goproto.proto.test.TestDeprecatedMessage
  2935. (*ForeignMessage)(nil), // 6: goproto.proto.test.ForeignMessage
  2936. (*TestReservedFields)(nil), // 7: goproto.proto.test.TestReservedFields
  2937. (*TestAllExtensions)(nil), // 8: goproto.proto.test.TestAllExtensions
  2938. (*OptionalGroupExtension)(nil), // 9: goproto.proto.test.OptionalGroup_extension
  2939. (*RepeatedGroupExtension)(nil), // 10: goproto.proto.test.RepeatedGroup_extension
  2940. (*TestNestedExtension)(nil), // 11: goproto.proto.test.TestNestedExtension
  2941. (*TestRequired)(nil), // 12: goproto.proto.test.TestRequired
  2942. (*TestRequiredForeign)(nil), // 13: goproto.proto.test.TestRequiredForeign
  2943. (*TestRequiredGroupFields)(nil), // 14: goproto.proto.test.TestRequiredGroupFields
  2944. (*TestWeak)(nil), // 15: goproto.proto.test.TestWeak
  2945. (*FooRequest)(nil), // 16: goproto.proto.test.FooRequest
  2946. (*FooResponse)(nil), // 17: goproto.proto.test.FooResponse
  2947. (*TestAllTypes_NestedMessage)(nil), // 18: goproto.proto.test.TestAllTypes.NestedMessage
  2948. (*TestAllTypes_OptionalGroup)(nil), // 19: goproto.proto.test.TestAllTypes.OptionalGroup
  2949. (*TestAllTypes_RepeatedGroup)(nil), // 20: goproto.proto.test.TestAllTypes.RepeatedGroup
  2950. nil, // 21: goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  2951. nil, // 22: goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  2952. nil, // 23: goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  2953. nil, // 24: goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  2954. nil, // 25: goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  2955. nil, // 26: goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  2956. nil, // 27: goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  2957. nil, // 28: goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  2958. nil, // 29: goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  2959. nil, // 30: goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  2960. nil, // 31: goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  2961. nil, // 32: goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  2962. nil, // 33: goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  2963. nil, // 34: goproto.proto.test.TestAllTypes.MapStringStringEntry
  2964. nil, // 35: goproto.proto.test.TestAllTypes.MapStringBytesEntry
  2965. nil, // 36: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  2966. nil, // 37: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  2967. nil, // 38: goproto.proto.test.TestRequiredForeign.MapMessageEntry
  2968. (*TestRequiredGroupFields_OptionalGroup)(nil), // 39: goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  2969. (*TestRequiredGroupFields_RepeatedGroup)(nil), // 40: goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  2970. (*ImportMessage)(nil), // 41: goproto.proto.test.ImportMessage
  2971. (ImportEnum)(0), // 42: goproto.proto.test.ImportEnum
  2972. }
  2973. var file_test_test_proto_depIdxs = []int32{
  2974. 8, // goproto.proto.test.optional_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2975. 8, // goproto.proto.test.optional_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2976. 8, // goproto.proto.test.optional_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2977. 8, // goproto.proto.test.optional_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2978. 8, // goproto.proto.test.optional_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2979. 8, // goproto.proto.test.optional_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2980. 8, // goproto.proto.test.optional_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2981. 8, // goproto.proto.test.optional_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2982. 8, // goproto.proto.test.optional_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2983. 8, // goproto.proto.test.optional_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2984. 8, // goproto.proto.test.optional_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  2985. 8, // goproto.proto.test.optional_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  2986. 8, // goproto.proto.test.optional_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  2987. 8, // goproto.proto.test.optional_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  2988. 8, // goproto.proto.test.optional_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  2989. 8, // goproto.proto.test.optionalgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  2990. 8, // goproto.proto.test.optional_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  2991. 8, // goproto.proto.test.optional_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  2992. 8, // goproto.proto.test.repeated_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2993. 8, // goproto.proto.test.repeated_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2994. 8, // goproto.proto.test.repeated_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2995. 8, // goproto.proto.test.repeated_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2996. 8, // goproto.proto.test.repeated_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2997. 8, // goproto.proto.test.repeated_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2998. 8, // goproto.proto.test.repeated_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2999. 8, // goproto.proto.test.repeated_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3000. 8, // goproto.proto.test.repeated_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  3001. 8, // goproto.proto.test.repeated_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3002. 8, // goproto.proto.test.repeated_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  3003. 8, // goproto.proto.test.repeated_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  3004. 8, // goproto.proto.test.repeated_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  3005. 8, // goproto.proto.test.repeated_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  3006. 8, // goproto.proto.test.repeated_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  3007. 8, // goproto.proto.test.repeatedgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  3008. 8, // goproto.proto.test.repeated_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  3009. 8, // goproto.proto.test.repeated_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  3010. 8, // goproto.proto.test.default_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  3011. 8, // goproto.proto.test.default_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3012. 8, // goproto.proto.test.default_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  3013. 8, // goproto.proto.test.default_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3014. 8, // goproto.proto.test.default_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  3015. 8, // goproto.proto.test.default_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3016. 8, // goproto.proto.test.default_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  3017. 8, // goproto.proto.test.default_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3018. 8, // goproto.proto.test.default_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  3019. 8, // goproto.proto.test.default_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  3020. 8, // goproto.proto.test.default_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  3021. 8, // goproto.proto.test.default_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  3022. 8, // goproto.proto.test.default_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  3023. 8, // goproto.proto.test.default_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  3024. 8, // goproto.proto.test.default_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  3025. 8, // goproto.proto.test.TestNestedExtension.nested_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  3026. 8, // goproto.proto.test.TestRequired.single:extendee -> goproto.proto.test.TestAllExtensions
  3027. 8, // goproto.proto.test.TestRequired.multi:extendee -> goproto.proto.test.TestAllExtensions
  3028. 19, // goproto.proto.test.TestAllTypes.optionalgroup:type_name -> goproto.proto.test.TestAllTypes.OptionalGroup
  3029. 18, // goproto.proto.test.TestAllTypes.optional_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  3030. 6, // goproto.proto.test.TestAllTypes.optional_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  3031. 41, // goproto.proto.test.TestAllTypes.optional_import_message:type_name -> goproto.proto.test.ImportMessage
  3032. 2, // goproto.proto.test.TestAllTypes.optional_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3033. 0, // goproto.proto.test.TestAllTypes.optional_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  3034. 42, // goproto.proto.test.TestAllTypes.optional_import_enum:type_name -> goproto.proto.test.ImportEnum
  3035. 20, // goproto.proto.test.TestAllTypes.repeatedgroup:type_name -> goproto.proto.test.TestAllTypes.RepeatedGroup
  3036. 18, // goproto.proto.test.TestAllTypes.repeated_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  3037. 6, // goproto.proto.test.TestAllTypes.repeated_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  3038. 41, // goproto.proto.test.TestAllTypes.repeated_importmessage:type_name -> goproto.proto.test.ImportMessage
  3039. 2, // goproto.proto.test.TestAllTypes.repeated_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3040. 0, // goproto.proto.test.TestAllTypes.repeated_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  3041. 42, // goproto.proto.test.TestAllTypes.repeated_importenum:type_name -> goproto.proto.test.ImportEnum
  3042. 21, // goproto.proto.test.TestAllTypes.map_int32_int32:type_name -> goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  3043. 22, // goproto.proto.test.TestAllTypes.map_int64_int64:type_name -> goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  3044. 23, // goproto.proto.test.TestAllTypes.map_uint32_uint32:type_name -> goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  3045. 24, // goproto.proto.test.TestAllTypes.map_uint64_uint64:type_name -> goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  3046. 25, // goproto.proto.test.TestAllTypes.map_sint32_sint32:type_name -> goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  3047. 26, // goproto.proto.test.TestAllTypes.map_sint64_sint64:type_name -> goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  3048. 27, // goproto.proto.test.TestAllTypes.map_fixed32_fixed32:type_name -> goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  3049. 28, // goproto.proto.test.TestAllTypes.map_fixed64_fixed64:type_name -> goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  3050. 29, // goproto.proto.test.TestAllTypes.map_sfixed32_sfixed32:type_name -> goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  3051. 30, // goproto.proto.test.TestAllTypes.map_sfixed64_sfixed64:type_name -> goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  3052. 31, // goproto.proto.test.TestAllTypes.map_int32_float:type_name -> goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  3053. 32, // goproto.proto.test.TestAllTypes.map_int32_double:type_name -> goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  3054. 33, // goproto.proto.test.TestAllTypes.map_bool_bool:type_name -> goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  3055. 34, // goproto.proto.test.TestAllTypes.map_string_string:type_name -> goproto.proto.test.TestAllTypes.MapStringStringEntry
  3056. 35, // goproto.proto.test.TestAllTypes.map_string_bytes:type_name -> goproto.proto.test.TestAllTypes.MapStringBytesEntry
  3057. 36, // goproto.proto.test.TestAllTypes.map_string_nested_message:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  3058. 37, // goproto.proto.test.TestAllTypes.map_string_nested_enum:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  3059. 2, // goproto.proto.test.TestAllTypes.default_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3060. 0, // goproto.proto.test.TestAllTypes.default_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  3061. 18, // goproto.proto.test.TestAllTypes.oneof_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  3062. 2, // goproto.proto.test.TestAllTypes.oneof_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3063. 12, // goproto.proto.test.TestRequiredForeign.optional_message:type_name -> goproto.proto.test.TestRequired
  3064. 12, // goproto.proto.test.TestRequiredForeign.repeated_message:type_name -> goproto.proto.test.TestRequired
  3065. 38, // goproto.proto.test.TestRequiredForeign.map_message:type_name -> goproto.proto.test.TestRequiredForeign.MapMessageEntry
  3066. 39, // goproto.proto.test.TestRequiredGroupFields.optionalgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  3067. 40, // goproto.proto.test.TestRequiredGroupFields.repeatedgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  3068. 4, // goproto.proto.test.TestAllTypes.NestedMessage.corecursive:type_name -> goproto.proto.test.TestAllTypes
  3069. 18, // goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  3070. 2, // goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3071. 12, // goproto.proto.test.TestRequiredForeign.MapMessageEntry.value:type_name -> goproto.proto.test.TestRequired
  3072. 9, // goproto.proto.test.optionalgroup_extension:type_name -> goproto.proto.test.OptionalGroup_extension
  3073. 18, // goproto.proto.test.optional_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  3074. 2, // goproto.proto.test.optional_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3075. 10, // goproto.proto.test.repeatedgroup_extension:type_name -> goproto.proto.test.RepeatedGroup_extension
  3076. 18, // goproto.proto.test.repeated_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  3077. 2, // goproto.proto.test.repeated_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  3078. 12, // goproto.proto.test.TestRequired.single:type_name -> goproto.proto.test.TestRequired
  3079. 12, // goproto.proto.test.TestRequired.multi:type_name -> goproto.proto.test.TestRequired
  3080. 16, // goproto.proto.test.TestService.Foo:input_type -> goproto.proto.test.FooRequest
  3081. 17, // goproto.proto.test.TestService.Foo:output_type -> goproto.proto.test.FooResponse
  3082. 16, // goproto.proto.test.TestService.TestStream:input_type -> goproto.proto.test.FooRequest
  3083. 17, // goproto.proto.test.TestService.TestStream:output_type -> goproto.proto.test.FooResponse
  3084. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:input_type -> goproto.proto.test.TestDeprecatedMessage
  3085. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:output_type -> goproto.proto.test.TestDeprecatedMessage
  3086. }
  3087. func init() { file_test_test_proto_init() }
  3088. func file_test_test_proto_init() {
  3089. if File_test_test_proto != nil {
  3090. return
  3091. }
  3092. file_test_test_import_proto_init()
  3093. file_test_test_public_proto_init()
  3094. extensionTypes := make([]protoreflect.ExtensionType, 54)
  3095. File_test_test_proto = protoimpl.FileBuilder{
  3096. RawDescriptor: file_test_test_proto_rawDesc,
  3097. GoTypes: file_test_test_proto_goTypes,
  3098. DependencyIndexes: file_test_test_proto_depIdxs,
  3099. LegacyExtensions: file_test_test_proto_extDescs,
  3100. EnumOutputTypes: file_test_test_proto_enumTypes,
  3101. MessageOutputTypes: file_test_test_proto_msgTypes,
  3102. ExtensionOutputTypes: extensionTypes,
  3103. FilesRegistry: protoregistry.GlobalFiles,
  3104. TypesRegistry: protoregistry.GlobalTypes,
  3105. }.Init()
  3106. file_test_test_proto_rawDesc = nil
  3107. file_test_test_proto_goTypes = nil
  3108. file_test_test_proto_depIdxs = nil
  3109. }