ext.pb.go 68 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: extensions/ext/ext.proto
  3. package ext
  4. import (
  5. base "google.golang.org/protobuf/cmd/protoc-gen-go/testdata/extensions/base"
  6. extra "google.golang.org/protobuf/cmd/protoc-gen-go/testdata/extensions/extra"
  7. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  8. prototype "google.golang.org/protobuf/reflect/prototype"
  9. protoiface "google.golang.org/protobuf/runtime/protoiface"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that runtime/protoimpl is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 0)
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(0 - protoimpl.MinVersion)
  18. )
  19. type Enum int32
  20. const (
  21. Enum_ZERO Enum = 0
  22. )
  23. var Enum_name = map[int32]string{
  24. 0: "ZERO",
  25. }
  26. var Enum_value = map[string]int32{
  27. "ZERO": 0,
  28. }
  29. func (x Enum) Enum() *Enum {
  30. p := new(Enum)
  31. *p = x
  32. return p
  33. }
  34. func (x Enum) String() string {
  35. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  36. }
  37. func (Enum) Descriptor() protoreflect.EnumDescriptor {
  38. return file_extensions_ext_ext_proto_enumTypes[0].EnumDescriptor
  39. }
  40. func (x Enum) Number() protoreflect.EnumNumber {
  41. return protoreflect.EnumNumber(x)
  42. }
  43. // Deprecated: Do not use.
  44. func (x *Enum) UnmarshalJSON(b []byte) error {
  45. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  46. if err != nil {
  47. return err
  48. }
  49. *x = Enum(num)
  50. return nil
  51. }
  52. // Deprecated: Use Enum.Type instead.
  53. func (Enum) EnumDescriptor() ([]byte, []int) {
  54. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{0}
  55. }
  56. type Message struct {
  57. Data []byte `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"`
  58. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  59. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  60. XXX_sizecache protoimpl.SizeCache `json:"-"`
  61. }
  62. func (x *Message) Reset() {
  63. *x = Message{}
  64. }
  65. func (x *Message) String() string {
  66. return protoimpl.X.MessageStringOf(x)
  67. }
  68. func (*Message) ProtoMessage() {}
  69. func (x *Message) ProtoReflect() protoreflect.Message {
  70. return file_extensions_ext_ext_proto_msgTypes[0].MessageOf(x)
  71. }
  72. func (m *Message) XXX_Methods() *protoiface.Methods {
  73. return file_extensions_ext_ext_proto_msgTypes[0].Methods()
  74. }
  75. // Deprecated: Use Message.ProtoReflect.Type instead.
  76. func (*Message) Descriptor() ([]byte, []int) {
  77. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{0}
  78. }
  79. func (x *Message) GetData() []byte {
  80. if x != nil {
  81. return x.Data
  82. }
  83. return nil
  84. }
  85. type ExtensionGroup struct {
  86. ExtensionGroup *string `protobuf:"bytes,120,opt,name=extension_group,json=extensionGroup" json:"extension_group,omitempty"`
  87. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  88. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  89. XXX_sizecache protoimpl.SizeCache `json:"-"`
  90. }
  91. func (x *ExtensionGroup) Reset() {
  92. *x = ExtensionGroup{}
  93. }
  94. func (x *ExtensionGroup) String() string {
  95. return protoimpl.X.MessageStringOf(x)
  96. }
  97. func (*ExtensionGroup) ProtoMessage() {}
  98. func (x *ExtensionGroup) ProtoReflect() protoreflect.Message {
  99. return file_extensions_ext_ext_proto_msgTypes[1].MessageOf(x)
  100. }
  101. func (m *ExtensionGroup) XXX_Methods() *protoiface.Methods {
  102. return file_extensions_ext_ext_proto_msgTypes[1].Methods()
  103. }
  104. // Deprecated: Use ExtensionGroup.ProtoReflect.Type instead.
  105. func (*ExtensionGroup) Descriptor() ([]byte, []int) {
  106. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{1}
  107. }
  108. func (x *ExtensionGroup) GetExtensionGroup() string {
  109. if x != nil && x.ExtensionGroup != nil {
  110. return *x.ExtensionGroup
  111. }
  112. return ""
  113. }
  114. // Extend in the scope of another type.
  115. type ExtendingMessage struct {
  116. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  117. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  118. XXX_sizecache protoimpl.SizeCache `json:"-"`
  119. }
  120. func (x *ExtendingMessage) Reset() {
  121. *x = ExtendingMessage{}
  122. }
  123. func (x *ExtendingMessage) String() string {
  124. return protoimpl.X.MessageStringOf(x)
  125. }
  126. func (*ExtendingMessage) ProtoMessage() {}
  127. func (x *ExtendingMessage) ProtoReflect() protoreflect.Message {
  128. return file_extensions_ext_ext_proto_msgTypes[2].MessageOf(x)
  129. }
  130. func (m *ExtendingMessage) XXX_Methods() *protoiface.Methods {
  131. return file_extensions_ext_ext_proto_msgTypes[2].Methods()
  132. }
  133. // Deprecated: Use ExtendingMessage.ProtoReflect.Type instead.
  134. func (*ExtendingMessage) Descriptor() ([]byte, []int) {
  135. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{2}
  136. }
  137. type RepeatedGroup struct {
  138. RepeatedXGroup []string `protobuf:"bytes,319,rep,name=repeated_x_group,json=repeatedXGroup" json:"repeated_x_group,omitempty"`
  139. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  140. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  141. XXX_sizecache protoimpl.SizeCache `json:"-"`
  142. }
  143. func (x *RepeatedGroup) Reset() {
  144. *x = RepeatedGroup{}
  145. }
  146. func (x *RepeatedGroup) String() string {
  147. return protoimpl.X.MessageStringOf(x)
  148. }
  149. func (*RepeatedGroup) ProtoMessage() {}
  150. func (x *RepeatedGroup) ProtoReflect() protoreflect.Message {
  151. return file_extensions_ext_ext_proto_msgTypes[3].MessageOf(x)
  152. }
  153. func (m *RepeatedGroup) XXX_Methods() *protoiface.Methods {
  154. return file_extensions_ext_ext_proto_msgTypes[3].Methods()
  155. }
  156. // Deprecated: Use RepeatedGroup.ProtoReflect.Type instead.
  157. func (*RepeatedGroup) Descriptor() ([]byte, []int) {
  158. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{3}
  159. }
  160. func (x *RepeatedGroup) GetRepeatedXGroup() []string {
  161. if x != nil {
  162. return x.RepeatedXGroup
  163. }
  164. return nil
  165. }
  166. // An extension of an extension.
  167. type Extendable struct {
  168. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  169. XXX_InternalExtensions protoimpl.ExtensionFields `json:"-"`
  170. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  171. XXX_sizecache protoimpl.SizeCache `json:"-"`
  172. }
  173. func (x *Extendable) Reset() {
  174. *x = Extendable{}
  175. }
  176. func (x *Extendable) String() string {
  177. return protoimpl.X.MessageStringOf(x)
  178. }
  179. func (*Extendable) ProtoMessage() {}
  180. func (x *Extendable) ProtoReflect() protoreflect.Message {
  181. return file_extensions_ext_ext_proto_msgTypes[4].MessageOf(x)
  182. }
  183. func (m *Extendable) XXX_Methods() *protoiface.Methods {
  184. return file_extensions_ext_ext_proto_msgTypes[4].Methods()
  185. }
  186. // Deprecated: Use Extendable.ProtoReflect.Type instead.
  187. func (*Extendable) Descriptor() ([]byte, []int) {
  188. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{4}
  189. }
  190. var extRange_Extendable = []protoiface.ExtensionRangeV1{
  191. {Start: 1, End: 536870911},
  192. }
  193. // Deprecated: Use Extendable.ProtoReflect.Type.ExtensionRanges instead.
  194. func (*Extendable) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  195. return extRange_Extendable
  196. }
  197. // Message set wire format.
  198. type MessageSetWireFormatExtension struct {
  199. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  200. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  201. XXX_sizecache protoimpl.SizeCache `json:"-"`
  202. }
  203. func (x *MessageSetWireFormatExtension) Reset() {
  204. *x = MessageSetWireFormatExtension{}
  205. }
  206. func (x *MessageSetWireFormatExtension) String() string {
  207. return protoimpl.X.MessageStringOf(x)
  208. }
  209. func (*MessageSetWireFormatExtension) ProtoMessage() {}
  210. func (x *MessageSetWireFormatExtension) ProtoReflect() protoreflect.Message {
  211. return file_extensions_ext_ext_proto_msgTypes[5].MessageOf(x)
  212. }
  213. func (m *MessageSetWireFormatExtension) XXX_Methods() *protoiface.Methods {
  214. return file_extensions_ext_ext_proto_msgTypes[5].Methods()
  215. }
  216. // Deprecated: Use MessageSetWireFormatExtension.ProtoReflect.Type instead.
  217. func (*MessageSetWireFormatExtension) Descriptor() ([]byte, []int) {
  218. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{5}
  219. }
  220. type Message_M struct {
  221. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  222. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  223. XXX_sizecache protoimpl.SizeCache `json:"-"`
  224. }
  225. func (x *Message_M) Reset() {
  226. *x = Message_M{}
  227. }
  228. func (x *Message_M) String() string {
  229. return protoimpl.X.MessageStringOf(x)
  230. }
  231. func (*Message_M) ProtoMessage() {}
  232. func (x *Message_M) ProtoReflect() protoreflect.Message {
  233. return file_extensions_ext_ext_proto_msgTypes[6].MessageOf(x)
  234. }
  235. func (m *Message_M) XXX_Methods() *protoiface.Methods {
  236. return file_extensions_ext_ext_proto_msgTypes[6].Methods()
  237. }
  238. // Deprecated: Use Message_M.ProtoReflect.Type instead.
  239. func (*Message_M) Descriptor() ([]byte, []int) {
  240. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{0, 0}
  241. }
  242. type ExtendingMessage_ExtendingMessageSubmessage struct {
  243. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  244. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  245. XXX_sizecache protoimpl.SizeCache `json:"-"`
  246. }
  247. func (x *ExtendingMessage_ExtendingMessageSubmessage) Reset() {
  248. *x = ExtendingMessage_ExtendingMessageSubmessage{}
  249. }
  250. func (x *ExtendingMessage_ExtendingMessageSubmessage) String() string {
  251. return protoimpl.X.MessageStringOf(x)
  252. }
  253. func (*ExtendingMessage_ExtendingMessageSubmessage) ProtoMessage() {}
  254. func (x *ExtendingMessage_ExtendingMessageSubmessage) ProtoReflect() protoreflect.Message {
  255. return file_extensions_ext_ext_proto_msgTypes[7].MessageOf(x)
  256. }
  257. func (m *ExtendingMessage_ExtendingMessageSubmessage) XXX_Methods() *protoiface.Methods {
  258. return file_extensions_ext_ext_proto_msgTypes[7].Methods()
  259. }
  260. // Deprecated: Use ExtendingMessage_ExtendingMessageSubmessage.ProtoReflect.Type instead.
  261. func (*ExtendingMessage_ExtendingMessageSubmessage) Descriptor() ([]byte, []int) {
  262. return file_extensions_ext_ext_proto_rawDescGZIP(), []int{2, 0}
  263. }
  264. var file_extensions_ext_ext_proto_extDescs = []protoiface.ExtensionDescV1{
  265. {
  266. ExtendedType: (*base.BaseMessage)(nil),
  267. ExtensionType: (*bool)(nil),
  268. Field: 101,
  269. Name: "goproto.protoc.extension.ext.extension_bool",
  270. Tag: "varint,101,opt,name=extension_bool",
  271. Filename: "extensions/ext/ext.proto",
  272. },
  273. {
  274. ExtendedType: (*base.BaseMessage)(nil),
  275. ExtensionType: (*Enum)(nil),
  276. Field: 102,
  277. Name: "goproto.protoc.extension.ext.extension_enum",
  278. Tag: "varint,102,opt,name=extension_enum,enum=goproto.protoc.extension.ext.Enum",
  279. Filename: "extensions/ext/ext.proto",
  280. },
  281. {
  282. ExtendedType: (*base.BaseMessage)(nil),
  283. ExtensionType: (*int32)(nil),
  284. Field: 103,
  285. Name: "goproto.protoc.extension.ext.extension_int32",
  286. Tag: "varint,103,opt,name=extension_int32",
  287. Filename: "extensions/ext/ext.proto",
  288. },
  289. {
  290. ExtendedType: (*base.BaseMessage)(nil),
  291. ExtensionType: (*int32)(nil),
  292. Field: 104,
  293. Name: "goproto.protoc.extension.ext.extension_sint32",
  294. Tag: "zigzag32,104,opt,name=extension_sint32",
  295. Filename: "extensions/ext/ext.proto",
  296. },
  297. {
  298. ExtendedType: (*base.BaseMessage)(nil),
  299. ExtensionType: (*uint32)(nil),
  300. Field: 105,
  301. Name: "goproto.protoc.extension.ext.extension_uint32",
  302. Tag: "varint,105,opt,name=extension_uint32",
  303. Filename: "extensions/ext/ext.proto",
  304. },
  305. {
  306. ExtendedType: (*base.BaseMessage)(nil),
  307. ExtensionType: (*int64)(nil),
  308. Field: 106,
  309. Name: "goproto.protoc.extension.ext.extension_int64",
  310. Tag: "varint,106,opt,name=extension_int64",
  311. Filename: "extensions/ext/ext.proto",
  312. },
  313. {
  314. ExtendedType: (*base.BaseMessage)(nil),
  315. ExtensionType: (*int64)(nil),
  316. Field: 107,
  317. Name: "goproto.protoc.extension.ext.extension_sint64",
  318. Tag: "zigzag64,107,opt,name=extension_sint64",
  319. Filename: "extensions/ext/ext.proto",
  320. },
  321. {
  322. ExtendedType: (*base.BaseMessage)(nil),
  323. ExtensionType: (*uint64)(nil),
  324. Field: 108,
  325. Name: "goproto.protoc.extension.ext.extension_uint64",
  326. Tag: "varint,108,opt,name=extension_uint64",
  327. Filename: "extensions/ext/ext.proto",
  328. },
  329. {
  330. ExtendedType: (*base.BaseMessage)(nil),
  331. ExtensionType: (*int32)(nil),
  332. Field: 109,
  333. Name: "goproto.protoc.extension.ext.extension_sfixed32",
  334. Tag: "fixed32,109,opt,name=extension_sfixed32",
  335. Filename: "extensions/ext/ext.proto",
  336. },
  337. {
  338. ExtendedType: (*base.BaseMessage)(nil),
  339. ExtensionType: (*uint32)(nil),
  340. Field: 110,
  341. Name: "goproto.protoc.extension.ext.extension_fixed32",
  342. Tag: "fixed32,110,opt,name=extension_fixed32",
  343. Filename: "extensions/ext/ext.proto",
  344. },
  345. {
  346. ExtendedType: (*base.BaseMessage)(nil),
  347. ExtensionType: (*float32)(nil),
  348. Field: 111,
  349. Name: "goproto.protoc.extension.ext.extension_float",
  350. Tag: "fixed32,111,opt,name=extension_float",
  351. Filename: "extensions/ext/ext.proto",
  352. },
  353. {
  354. ExtendedType: (*base.BaseMessage)(nil),
  355. ExtensionType: (*int64)(nil),
  356. Field: 112,
  357. Name: "goproto.protoc.extension.ext.extension_sfixed64",
  358. Tag: "fixed64,112,opt,name=extension_sfixed64",
  359. Filename: "extensions/ext/ext.proto",
  360. },
  361. {
  362. ExtendedType: (*base.BaseMessage)(nil),
  363. ExtensionType: (*uint64)(nil),
  364. Field: 113,
  365. Name: "goproto.protoc.extension.ext.extension_fixed64",
  366. Tag: "fixed64,113,opt,name=extension_fixed64",
  367. Filename: "extensions/ext/ext.proto",
  368. },
  369. {
  370. ExtendedType: (*base.BaseMessage)(nil),
  371. ExtensionType: (*float64)(nil),
  372. Field: 114,
  373. Name: "goproto.protoc.extension.ext.extension_double",
  374. Tag: "fixed64,114,opt,name=extension_double",
  375. Filename: "extensions/ext/ext.proto",
  376. },
  377. {
  378. ExtendedType: (*base.BaseMessage)(nil),
  379. ExtensionType: (*string)(nil),
  380. Field: 115,
  381. Name: "goproto.protoc.extension.ext.extension_string",
  382. Tag: "bytes,115,opt,name=extension_string",
  383. Filename: "extensions/ext/ext.proto",
  384. },
  385. {
  386. ExtendedType: (*base.BaseMessage)(nil),
  387. ExtensionType: ([]byte)(nil),
  388. Field: 116,
  389. Name: "goproto.protoc.extension.ext.extension_bytes",
  390. Tag: "bytes,116,opt,name=extension_bytes",
  391. Filename: "extensions/ext/ext.proto",
  392. },
  393. {
  394. ExtendedType: (*base.BaseMessage)(nil),
  395. ExtensionType: (*Message)(nil),
  396. Field: 117,
  397. Name: "goproto.protoc.extension.ext.extension_Message",
  398. Tag: "bytes,117,opt,name=extension_Message",
  399. Filename: "extensions/ext/ext.proto",
  400. },
  401. {
  402. ExtendedType: (*base.BaseMessage)(nil),
  403. ExtensionType: (*Message_M)(nil),
  404. Field: 118,
  405. Name: "goproto.protoc.extension.ext.extension_MessageM",
  406. Tag: "bytes,118,opt,name=extension_MessageM",
  407. Filename: "extensions/ext/ext.proto",
  408. },
  409. {
  410. ExtendedType: (*base.BaseMessage)(nil),
  411. ExtensionType: (*ExtensionGroup)(nil),
  412. Field: 119,
  413. Name: "goproto.protoc.extension.ext.extensiongroup",
  414. Tag: "group,119,opt,name=ExtensionGroup",
  415. Filename: "extensions/ext/ext.proto",
  416. },
  417. {
  418. ExtendedType: (*base.BaseMessage)(nil),
  419. ExtensionType: (*extra.ExtraMessage)(nil),
  420. Field: 9,
  421. Name: "goproto.protoc.extension.ext.extra_message",
  422. Tag: "bytes,9,opt,name=extra_message",
  423. Filename: "extensions/ext/ext.proto",
  424. },
  425. {
  426. ExtendedType: (*base.BaseMessage)(nil),
  427. ExtensionType: ([]bool)(nil),
  428. Field: 301,
  429. Name: "goproto.protoc.extension.ext.repeated_x_bool",
  430. Tag: "varint,301,rep,name=repeated_x_bool",
  431. Filename: "extensions/ext/ext.proto",
  432. },
  433. {
  434. ExtendedType: (*base.BaseMessage)(nil),
  435. ExtensionType: ([]Enum)(nil),
  436. Field: 302,
  437. Name: "goproto.protoc.extension.ext.repeated_x_enum",
  438. Tag: "varint,302,rep,name=repeated_x_enum,enum=goproto.protoc.extension.ext.Enum",
  439. Filename: "extensions/ext/ext.proto",
  440. },
  441. {
  442. ExtendedType: (*base.BaseMessage)(nil),
  443. ExtensionType: ([]int32)(nil),
  444. Field: 303,
  445. Name: "goproto.protoc.extension.ext.repeated_x_int32",
  446. Tag: "varint,303,rep,name=repeated_x_int32",
  447. Filename: "extensions/ext/ext.proto",
  448. },
  449. {
  450. ExtendedType: (*base.BaseMessage)(nil),
  451. ExtensionType: ([]int32)(nil),
  452. Field: 304,
  453. Name: "goproto.protoc.extension.ext.repeated_x_sint32",
  454. Tag: "zigzag32,304,rep,name=repeated_x_sint32",
  455. Filename: "extensions/ext/ext.proto",
  456. },
  457. {
  458. ExtendedType: (*base.BaseMessage)(nil),
  459. ExtensionType: ([]uint32)(nil),
  460. Field: 305,
  461. Name: "goproto.protoc.extension.ext.repeated_x_uint32",
  462. Tag: "varint,305,rep,name=repeated_x_uint32",
  463. Filename: "extensions/ext/ext.proto",
  464. },
  465. {
  466. ExtendedType: (*base.BaseMessage)(nil),
  467. ExtensionType: ([]int64)(nil),
  468. Field: 306,
  469. Name: "goproto.protoc.extension.ext.repeated_x_int64",
  470. Tag: "varint,306,rep,name=repeated_x_int64",
  471. Filename: "extensions/ext/ext.proto",
  472. },
  473. {
  474. ExtendedType: (*base.BaseMessage)(nil),
  475. ExtensionType: ([]int64)(nil),
  476. Field: 307,
  477. Name: "goproto.protoc.extension.ext.repeated_x_sint64",
  478. Tag: "zigzag64,307,rep,name=repeated_x_sint64",
  479. Filename: "extensions/ext/ext.proto",
  480. },
  481. {
  482. ExtendedType: (*base.BaseMessage)(nil),
  483. ExtensionType: ([]uint64)(nil),
  484. Field: 308,
  485. Name: "goproto.protoc.extension.ext.repeated_x_uint64",
  486. Tag: "varint,308,rep,name=repeated_x_uint64",
  487. Filename: "extensions/ext/ext.proto",
  488. },
  489. {
  490. ExtendedType: (*base.BaseMessage)(nil),
  491. ExtensionType: ([]int32)(nil),
  492. Field: 309,
  493. Name: "goproto.protoc.extension.ext.repeated_x_sfixed32",
  494. Tag: "fixed32,309,rep,name=repeated_x_sfixed32",
  495. Filename: "extensions/ext/ext.proto",
  496. },
  497. {
  498. ExtendedType: (*base.BaseMessage)(nil),
  499. ExtensionType: ([]uint32)(nil),
  500. Field: 310,
  501. Name: "goproto.protoc.extension.ext.repeated_x_fixed32",
  502. Tag: "fixed32,310,rep,name=repeated_x_fixed32",
  503. Filename: "extensions/ext/ext.proto",
  504. },
  505. {
  506. ExtendedType: (*base.BaseMessage)(nil),
  507. ExtensionType: ([]float32)(nil),
  508. Field: 311,
  509. Name: "goproto.protoc.extension.ext.repeated_x_float",
  510. Tag: "fixed32,311,rep,name=repeated_x_float",
  511. Filename: "extensions/ext/ext.proto",
  512. },
  513. {
  514. ExtendedType: (*base.BaseMessage)(nil),
  515. ExtensionType: ([]int64)(nil),
  516. Field: 312,
  517. Name: "goproto.protoc.extension.ext.repeated_x_sfixed64",
  518. Tag: "fixed64,312,rep,name=repeated_x_sfixed64",
  519. Filename: "extensions/ext/ext.proto",
  520. },
  521. {
  522. ExtendedType: (*base.BaseMessage)(nil),
  523. ExtensionType: ([]uint64)(nil),
  524. Field: 313,
  525. Name: "goproto.protoc.extension.ext.repeated_x_fixed64",
  526. Tag: "fixed64,313,rep,name=repeated_x_fixed64",
  527. Filename: "extensions/ext/ext.proto",
  528. },
  529. {
  530. ExtendedType: (*base.BaseMessage)(nil),
  531. ExtensionType: ([]float64)(nil),
  532. Field: 314,
  533. Name: "goproto.protoc.extension.ext.repeated_x_double",
  534. Tag: "fixed64,314,rep,name=repeated_x_double",
  535. Filename: "extensions/ext/ext.proto",
  536. },
  537. {
  538. ExtendedType: (*base.BaseMessage)(nil),
  539. ExtensionType: ([]string)(nil),
  540. Field: 315,
  541. Name: "goproto.protoc.extension.ext.repeated_x_string",
  542. Tag: "bytes,315,rep,name=repeated_x_string",
  543. Filename: "extensions/ext/ext.proto",
  544. },
  545. {
  546. ExtendedType: (*base.BaseMessage)(nil),
  547. ExtensionType: ([][]byte)(nil),
  548. Field: 316,
  549. Name: "goproto.protoc.extension.ext.repeated_x_bytes",
  550. Tag: "bytes,316,rep,name=repeated_x_bytes",
  551. Filename: "extensions/ext/ext.proto",
  552. },
  553. {
  554. ExtendedType: (*base.BaseMessage)(nil),
  555. ExtensionType: ([]*Message)(nil),
  556. Field: 317,
  557. Name: "goproto.protoc.extension.ext.repeated_x_Message",
  558. Tag: "bytes,317,rep,name=repeated_x_Message",
  559. Filename: "extensions/ext/ext.proto",
  560. },
  561. {
  562. ExtendedType: (*base.BaseMessage)(nil),
  563. ExtensionType: ([]*RepeatedGroup)(nil),
  564. Field: 318,
  565. Name: "goproto.protoc.extension.ext.repeatedgroup",
  566. Tag: "group,318,rep,name=RepeatedGroup",
  567. Filename: "extensions/ext/ext.proto",
  568. },
  569. {
  570. ExtendedType: (*base.BaseMessage)(nil),
  571. ExtensionType: (*Extendable)(nil),
  572. Field: 400,
  573. Name: "goproto.protoc.extension.ext.extendable_field",
  574. Tag: "bytes,400,opt,name=extendable_field",
  575. Filename: "extensions/ext/ext.proto",
  576. },
  577. {
  578. ExtendedType: (*Extendable)(nil),
  579. ExtensionType: (*string)(nil),
  580. Field: 1,
  581. Name: "goproto.protoc.extension.ext.extendable_string_field",
  582. Tag: "bytes,1,opt,name=extendable_string_field",
  583. Filename: "extensions/ext/ext.proto",
  584. },
  585. {
  586. ExtendedType: (*base.MessageSetWireFormatMessage)(nil),
  587. ExtensionType: (*MessageSetWireFormatExtension)(nil),
  588. Field: 101,
  589. Name: "goproto.protoc.extension.ext.",
  590. Tag: "bytes,101,opt,name=message_set_extension",
  591. Filename: "extensions/ext/ext.proto",
  592. },
  593. {
  594. ExtendedType: (*base.BaseMessage)(nil),
  595. ExtensionType: (*string)(nil),
  596. Field: 200,
  597. Name: "goproto.protoc.extension.ext.ExtendingMessage.extending_message_string",
  598. Tag: "bytes,200,opt,name=extending_message_string",
  599. Filename: "extensions/ext/ext.proto",
  600. },
  601. {
  602. ExtendedType: (*base.BaseMessage)(nil),
  603. ExtensionType: (*ExtendingMessage_ExtendingMessageSubmessage)(nil),
  604. Field: 201,
  605. Name: "goproto.protoc.extension.ext.ExtendingMessage.extending_message_submessage",
  606. Tag: "bytes,201,opt,name=extending_message_submessage",
  607. Filename: "extensions/ext/ext.proto",
  608. },
  609. {
  610. ExtendedType: (*base.MessageSetWireFormatMessage)(nil),
  611. ExtensionType: (*MessageSetWireFormatExtension)(nil),
  612. Field: 100,
  613. Name: "goproto.protoc.extension.ext.MessageSetWireFormatExtension",
  614. Tag: "bytes,100,opt,name=message_set_extension",
  615. Filename: "extensions/ext/ext.proto",
  616. },
  617. }
  618. var (
  619. // extend goproto.protoc.extension.base.BaseMessage { optional bool extension_bool = 101; }
  620. E_ExtensionBool = &file_extensions_ext_ext_proto_extDescs[0]
  621. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.ext.Enum extension_enum = 102; }
  622. E_ExtensionEnum = &file_extensions_ext_ext_proto_extDescs[1]
  623. // extend goproto.protoc.extension.base.BaseMessage { optional int32 extension_int32 = 103; }
  624. E_ExtensionInt32 = &file_extensions_ext_ext_proto_extDescs[2]
  625. // extend goproto.protoc.extension.base.BaseMessage { optional sint32 extension_sint32 = 104; }
  626. E_ExtensionSint32 = &file_extensions_ext_ext_proto_extDescs[3]
  627. // extend goproto.protoc.extension.base.BaseMessage { optional uint32 extension_uint32 = 105; }
  628. E_ExtensionUint32 = &file_extensions_ext_ext_proto_extDescs[4]
  629. // extend goproto.protoc.extension.base.BaseMessage { optional int64 extension_int64 = 106; }
  630. E_ExtensionInt64 = &file_extensions_ext_ext_proto_extDescs[5]
  631. // extend goproto.protoc.extension.base.BaseMessage { optional sint64 extension_sint64 = 107; }
  632. E_ExtensionSint64 = &file_extensions_ext_ext_proto_extDescs[6]
  633. // extend goproto.protoc.extension.base.BaseMessage { optional uint64 extension_uint64 = 108; }
  634. E_ExtensionUint64 = &file_extensions_ext_ext_proto_extDescs[7]
  635. // extend goproto.protoc.extension.base.BaseMessage { optional sfixed32 extension_sfixed32 = 109; }
  636. E_ExtensionSfixed32 = &file_extensions_ext_ext_proto_extDescs[8]
  637. // extend goproto.protoc.extension.base.BaseMessage { optional fixed32 extension_fixed32 = 110; }
  638. E_ExtensionFixed32 = &file_extensions_ext_ext_proto_extDescs[9]
  639. // extend goproto.protoc.extension.base.BaseMessage { optional float extension_float = 111; }
  640. E_ExtensionFloat = &file_extensions_ext_ext_proto_extDescs[10]
  641. // extend goproto.protoc.extension.base.BaseMessage { optional sfixed64 extension_sfixed64 = 112; }
  642. E_ExtensionSfixed64 = &file_extensions_ext_ext_proto_extDescs[11]
  643. // extend goproto.protoc.extension.base.BaseMessage { optional fixed64 extension_fixed64 = 113; }
  644. E_ExtensionFixed64 = &file_extensions_ext_ext_proto_extDescs[12]
  645. // extend goproto.protoc.extension.base.BaseMessage { optional double extension_double = 114; }
  646. E_ExtensionDouble = &file_extensions_ext_ext_proto_extDescs[13]
  647. // extend goproto.protoc.extension.base.BaseMessage { optional string extension_string = 115; }
  648. E_ExtensionString = &file_extensions_ext_ext_proto_extDescs[14]
  649. // extend goproto.protoc.extension.base.BaseMessage { optional bytes extension_bytes = 116; }
  650. E_ExtensionBytes = &file_extensions_ext_ext_proto_extDescs[15]
  651. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.ext.Message extension_Message = 117; }
  652. E_Extension_Message = &file_extensions_ext_ext_proto_extDescs[16]
  653. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.ext.Message.M extension_MessageM = 118; }
  654. E_Extension_MessageM = &file_extensions_ext_ext_proto_extDescs[17]
  655. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.ext.ExtensionGroup extensiongroup = 119; }
  656. E_Extensiongroup = &file_extensions_ext_ext_proto_extDescs[18]
  657. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.extra.ExtraMessage extra_message = 9; }
  658. E_ExtraMessage = &file_extensions_ext_ext_proto_extDescs[19]
  659. // extend goproto.protoc.extension.base.BaseMessage { repeated bool repeated_x_bool = 301; }
  660. E_RepeatedXBool = &file_extensions_ext_ext_proto_extDescs[20]
  661. // extend goproto.protoc.extension.base.BaseMessage { repeated goproto.protoc.extension.ext.Enum repeated_x_enum = 302; }
  662. E_RepeatedXEnum = &file_extensions_ext_ext_proto_extDescs[21]
  663. // extend goproto.protoc.extension.base.BaseMessage { repeated int32 repeated_x_int32 = 303; }
  664. E_RepeatedXInt32 = &file_extensions_ext_ext_proto_extDescs[22]
  665. // extend goproto.protoc.extension.base.BaseMessage { repeated sint32 repeated_x_sint32 = 304; }
  666. E_RepeatedXSint32 = &file_extensions_ext_ext_proto_extDescs[23]
  667. // extend goproto.protoc.extension.base.BaseMessage { repeated uint32 repeated_x_uint32 = 305; }
  668. E_RepeatedXUint32 = &file_extensions_ext_ext_proto_extDescs[24]
  669. // extend goproto.protoc.extension.base.BaseMessage { repeated int64 repeated_x_int64 = 306; }
  670. E_RepeatedXInt64 = &file_extensions_ext_ext_proto_extDescs[25]
  671. // extend goproto.protoc.extension.base.BaseMessage { repeated sint64 repeated_x_sint64 = 307; }
  672. E_RepeatedXSint64 = &file_extensions_ext_ext_proto_extDescs[26]
  673. // extend goproto.protoc.extension.base.BaseMessage { repeated uint64 repeated_x_uint64 = 308; }
  674. E_RepeatedXUint64 = &file_extensions_ext_ext_proto_extDescs[27]
  675. // extend goproto.protoc.extension.base.BaseMessage { repeated sfixed32 repeated_x_sfixed32 = 309; }
  676. E_RepeatedXSfixed32 = &file_extensions_ext_ext_proto_extDescs[28]
  677. // extend goproto.protoc.extension.base.BaseMessage { repeated fixed32 repeated_x_fixed32 = 310; }
  678. E_RepeatedXFixed32 = &file_extensions_ext_ext_proto_extDescs[29]
  679. // extend goproto.protoc.extension.base.BaseMessage { repeated float repeated_x_float = 311; }
  680. E_RepeatedXFloat = &file_extensions_ext_ext_proto_extDescs[30]
  681. // extend goproto.protoc.extension.base.BaseMessage { repeated sfixed64 repeated_x_sfixed64 = 312; }
  682. E_RepeatedXSfixed64 = &file_extensions_ext_ext_proto_extDescs[31]
  683. // extend goproto.protoc.extension.base.BaseMessage { repeated fixed64 repeated_x_fixed64 = 313; }
  684. E_RepeatedXFixed64 = &file_extensions_ext_ext_proto_extDescs[32]
  685. // extend goproto.protoc.extension.base.BaseMessage { repeated double repeated_x_double = 314; }
  686. E_RepeatedXDouble = &file_extensions_ext_ext_proto_extDescs[33]
  687. // extend goproto.protoc.extension.base.BaseMessage { repeated string repeated_x_string = 315; }
  688. E_RepeatedXString = &file_extensions_ext_ext_proto_extDescs[34]
  689. // extend goproto.protoc.extension.base.BaseMessage { repeated bytes repeated_x_bytes = 316; }
  690. E_RepeatedXBytes = &file_extensions_ext_ext_proto_extDescs[35]
  691. // extend goproto.protoc.extension.base.BaseMessage { repeated goproto.protoc.extension.ext.Message repeated_x_Message = 317; }
  692. E_RepeatedX_Message = &file_extensions_ext_ext_proto_extDescs[36]
  693. // extend goproto.protoc.extension.base.BaseMessage { repeated goproto.protoc.extension.ext.RepeatedGroup repeatedgroup = 318; }
  694. E_Repeatedgroup = &file_extensions_ext_ext_proto_extDescs[37]
  695. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.ext.Extendable extendable_field = 400; }
  696. E_ExtendableField = &file_extensions_ext_ext_proto_extDescs[38]
  697. // extend goproto.protoc.extension.ext.Extendable { optional string extendable_string_field = 1; }
  698. E_ExtendableStringField = &file_extensions_ext_ext_proto_extDescs[39]
  699. // extend goproto.protoc.extension.base.MessageSetWireFormatMessage { optional goproto.protoc.extension.ext.MessageSetWireFormatExtension message_set_extension = 101; }
  700. E_MessageSetExtension = &file_extensions_ext_ext_proto_extDescs[40]
  701. // extend goproto.protoc.extension.base.BaseMessage { optional string extending_message_string = 200; }
  702. E_ExtendingMessage_ExtendingMessageString = &file_extensions_ext_ext_proto_extDescs[41]
  703. // extend goproto.protoc.extension.base.BaseMessage { optional goproto.protoc.extension.ext.ExtendingMessage.ExtendingMessageSubmessage extending_message_submessage = 201; }
  704. E_ExtendingMessage_ExtendingMessageSubmessage = &file_extensions_ext_ext_proto_extDescs[42]
  705. // extend goproto.protoc.extension.base.MessageSetWireFormatMessage { optional goproto.protoc.extension.ext.MessageSetWireFormatExtension message_set_extension = 100; }
  706. E_MessageSetWireFormatExtension_MessageSetExtension = &file_extensions_ext_ext_proto_extDescs[43]
  707. )
  708. var File_extensions_ext_ext_proto protoreflect.FileDescriptor
  709. var file_extensions_ext_ext_proto_rawDesc = []byte{
  710. 0x0a, 0x18, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x78, 0x74,
  711. 0x2f, 0x65, 0x78, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x67, 0x6f, 0x70, 0x72,
  712. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e,
  713. 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x1a, 0x1a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  714. 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70,
  715. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  716. 0x2f, 0x65, 0x78, 0x74, 0x72, 0x61, 0x2f, 0x65, 0x78, 0x74, 0x72, 0x61, 0x2e, 0x70, 0x72, 0x6f,
  717. 0x74, 0x6f, 0x22, 0x22, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a,
  718. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74,
  719. 0x61, 0x1a, 0x03, 0x0a, 0x01, 0x4d, 0x22, 0x39, 0x0a, 0x0e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  720. 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x27, 0x0a, 0x0f, 0x65, 0x78, 0x74, 0x65,
  721. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x78, 0x20, 0x01, 0x28,
  722. 0x09, 0x52, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75,
  723. 0x70, 0x22, 0xd2, 0x02, 0x0a, 0x10, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4d,
  724. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x1c, 0x0a, 0x1a, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64,
  725. 0x69, 0x6e, 0x67, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x75, 0x62, 0x6d, 0x65, 0x73,
  726. 0x73, 0x61, 0x67, 0x65, 0x32, 0x65, 0x0a, 0x18, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x69, 0x6e,
  727. 0x67, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
  728. 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  729. 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65,
  730. 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xc8, 0x01, 0x20,
  731. 0x01, 0x28, 0x09, 0x52, 0x16, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4d, 0x65,
  732. 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0xb8, 0x01, 0x0a, 0x1c,
  733. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  734. 0x65, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2a, 0x2e, 0x67,
  735. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78,
  736. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73,
  737. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xc9, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  738. 0x49, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  739. 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x45,
  740. 0x78, 0x74, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e,
  741. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  742. 0x53, 0x75, 0x62, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1a, 0x65, 0x78, 0x74, 0x65,
  743. 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x75, 0x62, 0x6d,
  744. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74,
  745. 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61,
  746. 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0xbf, 0x02, 0x20, 0x03,
  747. 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x47, 0x72, 0x6f,
  748. 0x75, 0x70, 0x22, 0x16, 0x0a, 0x0a, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65,
  749. 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0xcd, 0x01, 0x0a, 0x1d, 0x4d,
  750. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x57, 0x69, 0x72, 0x65, 0x46, 0x6f, 0x72,
  751. 0x6d, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0xab, 0x01, 0x0a,
  752. 0x15, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74,
  753. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x3a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  754. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  755. 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65,
  756. 0x74, 0x57, 0x69, 0x72, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  757. 0x67, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  758. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  759. 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53,
  760. 0x65, 0x74, 0x57, 0x69, 0x72, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65,
  761. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65,
  762. 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2a, 0x10, 0x0a, 0x04, 0x45, 0x6e,
  763. 0x75, 0x6d, 0x12, 0x08, 0x0a, 0x04, 0x5a, 0x45, 0x52, 0x4f, 0x10, 0x00, 0x3a, 0x51, 0x0a, 0x0e,
  764. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x12, 0x2a,
  765. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e,
  766. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42,
  767. 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x65, 0x20, 0x01, 0x28, 0x08,
  768. 0x52, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x6f, 0x6f, 0x6c, 0x3a,
  769. 0x75, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x75,
  770. 0x6d, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  771. 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73,
  772. 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x66, 0x20,
  773. 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  774. 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65,
  775. 0x78, 0x74, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  776. 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x53, 0x0a, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  777. 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  778. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e,
  779. 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65,
  780. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x67, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x65, 0x78, 0x74,
  781. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x3a, 0x55, 0x0a, 0x10, 0x65,
  782. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12,
  783. 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  784. 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  785. 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x68, 0x20, 0x01, 0x28,
  786. 0x11, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x6e, 0x74,
  787. 0x33, 0x32, 0x3a, 0x55, 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
  788. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  789. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  790. 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  791. 0x67, 0x65, 0x18, 0x69, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  792. 0x69, 0x6f, 0x6e, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x3a, 0x53, 0x0a, 0x0f, 0x65, 0x78, 0x74,
  793. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67,
  794. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78,
  795. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73,
  796. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x6a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e,
  797. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x3a, 0x55,
  798. 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6e, 0x74,
  799. 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  800. 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61,
  801. 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x6b,
  802. 0x20, 0x01, 0x28, 0x12, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53,
  803. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x3a, 0x55, 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  804. 0x6f, 0x6e, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  805. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e,
  806. 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65,
  807. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x6c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x65, 0x78, 0x74,
  808. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x3a, 0x59, 0x0a, 0x12,
  809. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  810. 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  811. 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61,
  812. 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x6d,
  813. 0x20, 0x01, 0x28, 0x0f, 0x52, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53,
  814. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x3a, 0x57, 0x0a, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e,
  815. 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67,
  816. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78,
  817. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73,
  818. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x6e, 0x20, 0x01, 0x28, 0x07, 0x52, 0x10,
  819. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  820. 0x3a, 0x53, 0x0a, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x6c,
  821. 0x6f, 0x61, 0x74, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  822. 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62,
  823. 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  824. 0x6f, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  825. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x3a, 0x59, 0x0a, 0x12, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  826. 0x6f, 0x6e, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f,
  827. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74,
  828. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65,
  829. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x70, 0x20, 0x01, 0x28, 0x10, 0x52, 0x11, 0x65,
  830. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  831. 0x3a, 0x57, 0x0a, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69,
  832. 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  833. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  834. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  835. 0x65, 0x18, 0x71, 0x20, 0x01, 0x28, 0x06, 0x52, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  836. 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x3a, 0x55, 0x0a, 0x10, 0x65, 0x78, 0x74,
  837. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x2a, 0x2e,
  838. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65,
  839. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61,
  840. 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x72, 0x20, 0x01, 0x28, 0x01, 0x52,
  841. 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  842. 0x3a, 0x55, 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74,
  843. 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  844. 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e,
  845. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  846. 0x18, 0x73, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  847. 0x6e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x3a, 0x53, 0x0a, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  848. 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70,
  849. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65,
  850. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d,
  851. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x74, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x65, 0x78,
  852. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x3a, 0x7e, 0x0a, 0x11,
  853. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  854. 0x65, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  855. 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73,
  856. 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x75, 0x20,
  857. 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  858. 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65,
  859. 0x78, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x10, 0x65, 0x78, 0x74, 0x65,
  860. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x82, 0x01, 0x0a,
  861. 0x12, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x4d, 0x65, 0x73, 0x73, 0x61,
  862. 0x67, 0x65, 0x4d, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  863. 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62,
  864. 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  865. 0x76, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  866. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  867. 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x52, 0x11,
  868. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  869. 0x4d, 0x3a, 0x80, 0x01, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x67,
  870. 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  871. 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e,
  872. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  873. 0x18, 0x77, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  874. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  875. 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x47,
  876. 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x67,
  877. 0x72, 0x6f, 0x75, 0x70, 0x3a, 0x7d, 0x0a, 0x0d, 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f, 0x6d, 0x65,
  878. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  879. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  880. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  881. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  882. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  883. 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x72, 0x61, 0x2e, 0x45, 0x78, 0x74, 0x72, 0x61, 0x4d, 0x65,
  884. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0c, 0x65, 0x78, 0x74, 0x72, 0x61, 0x4d, 0x65, 0x73, 0x73,
  885. 0x61, 0x67, 0x65, 0x3a, 0x53, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  886. 0x78, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  887. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  888. 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  889. 0x67, 0x65, 0x18, 0xad, 0x02, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61,
  890. 0x74, 0x65, 0x64, 0x58, 0x42, 0x6f, 0x6f, 0x6c, 0x3a, 0x77, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65,
  891. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x2a, 0x2e, 0x67, 0x6f,
  892. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74,
  893. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65,
  894. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xae, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x22,
  895. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e,
  896. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x45, 0x6e,
  897. 0x75, 0x6d, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x45, 0x6e, 0x75,
  898. 0x6d, 0x3a, 0x55, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f,
  899. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  900. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  901. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  902. 0x65, 0x18, 0xaf, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  903. 0x65, 0x64, 0x58, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x3a, 0x57, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65,
  904. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2a, 0x2e,
  905. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65,
  906. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61,
  907. 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xb0, 0x02, 0x20, 0x03, 0x28, 0x11,
  908. 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x53, 0x69, 0x6e, 0x74, 0x33,
  909. 0x32, 0x3a, 0x57, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f,
  910. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  911. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  912. 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  913. 0x67, 0x65, 0x18, 0xb1, 0x02, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61,
  914. 0x74, 0x65, 0x64, 0x58, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x3a, 0x55, 0x0a, 0x10, 0x72, 0x65,
  915. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a,
  916. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e,
  917. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42,
  918. 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xb2, 0x02, 0x20, 0x03, 0x28,
  919. 0x03, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x49, 0x6e, 0x74, 0x36,
  920. 0x34, 0x3a, 0x57, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f,
  921. 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  922. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  923. 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  924. 0x67, 0x65, 0x18, 0xb3, 0x02, 0x20, 0x03, 0x28, 0x12, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61,
  925. 0x74, 0x65, 0x64, 0x58, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x3a, 0x57, 0x0a, 0x11, 0x72, 0x65,
  926. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12,
  927. 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  928. 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  929. 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xb4, 0x02, 0x20, 0x03,
  930. 0x28, 0x04, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x55, 0x69, 0x6e,
  931. 0x74, 0x36, 0x34, 0x3a, 0x5b, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  932. 0x78, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70,
  933. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65,
  934. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d,
  935. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xb5, 0x02, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x11, 0x72,
  936. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  937. 0x3a, 0x59, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x66,
  938. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  939. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  940. 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  941. 0x67, 0x65, 0x18, 0xb6, 0x02, 0x20, 0x03, 0x28, 0x07, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61,
  942. 0x74, 0x65, 0x64, 0x58, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x3a, 0x55, 0x0a, 0x10, 0x72,
  943. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x12,
  944. 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  945. 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  946. 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xb7, 0x02, 0x20, 0x03,
  947. 0x28, 0x02, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x46, 0x6c, 0x6f,
  948. 0x61, 0x74, 0x3a, 0x5b, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78,
  949. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  950. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e,
  951. 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65,
  952. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xb8, 0x02, 0x20, 0x03, 0x28, 0x10, 0x52, 0x11, 0x72, 0x65,
  953. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x3a,
  954. 0x59, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x66, 0x69,
  955. 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  956. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  957. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  958. 0x65, 0x18, 0xb9, 0x02, 0x20, 0x03, 0x28, 0x06, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  959. 0x65, 0x64, 0x58, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x3a, 0x57, 0x0a, 0x11, 0x72, 0x65,
  960. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12,
  961. 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  962. 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  963. 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xba, 0x02, 0x20, 0x03,
  964. 0x28, 0x01, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x44, 0x6f, 0x75,
  965. 0x62, 0x6c, 0x65, 0x3a, 0x57, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  966. 0x78, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  967. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  968. 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73,
  969. 0x73, 0x61, 0x67, 0x65, 0x18, 0xbb, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x70,
  970. 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x3a, 0x55, 0x0a, 0x10,
  971. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x78, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  972. 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  973. 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65,
  974. 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xbc, 0x02, 0x20,
  975. 0x03, 0x28, 0x0c, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x42, 0x79,
  976. 0x74, 0x65, 0x73, 0x3a, 0x80, 0x01, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  977. 0x5f, 0x78, 0x5f, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70,
  978. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65,
  979. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d,
  980. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0xbd, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e,
  981. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65,
  982. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x4d, 0x65, 0x73,
  983. 0x73, 0x61, 0x67, 0x65, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x58, 0x4d,
  984. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x7e, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  985. 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  986. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  987. 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x73, 0x73,
  988. 0x61, 0x67, 0x65, 0x18, 0xbe, 0x02, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70,
  989. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65,
  990. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74,
  991. 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  992. 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3a, 0x80, 0x01, 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e,
  993. 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x2a, 0x2e, 0x67, 0x6f,
  994. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74,
  995. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x42, 0x61, 0x73, 0x65,
  996. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x90, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28,
  997. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e,
  998. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x45, 0x78,
  999. 0x74, 0x65, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64,
  1000. 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x3a, 0x60, 0x0a, 0x17, 0x65, 0x78, 0x74,
  1001. 0x65, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66,
  1002. 0x69, 0x65, 0x6c, 0x64, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  1003. 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e,
  1004. 0x65, 0x78, 0x74, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01,
  1005. 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65,
  1006. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x3a, 0xab, 0x01, 0x0a, 0x15,
  1007. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65,
  1008. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x3a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  1009. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  1010. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1011. 0x57, 0x69, 0x72, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1012. 0x65, 0x18, 0x65, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  1013. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1014. 0x6f, 0x6e, 0x2e, 0x65, 0x78, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65,
  1015. 0x74, 0x57, 0x69, 0x72, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e,
  1016. 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1017. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x46, 0x5a, 0x44, 0x67, 0x6f, 0x6f,
  1018. 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x70,
  1019. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x6d, 0x64, 0x2f, 0x70, 0x72, 0x6f, 0x74,
  1020. 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x67, 0x6f, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61,
  1021. 0x74, 0x61, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x78,
  1022. 0x74,
  1023. }
  1024. var (
  1025. file_extensions_ext_ext_proto_rawDescOnce sync.Once
  1026. file_extensions_ext_ext_proto_rawDescData = file_extensions_ext_ext_proto_rawDesc
  1027. )
  1028. func file_extensions_ext_ext_proto_rawDescGZIP() []byte {
  1029. file_extensions_ext_ext_proto_rawDescOnce.Do(func() {
  1030. file_extensions_ext_ext_proto_rawDescData = protoimpl.X.CompressGZIP(file_extensions_ext_ext_proto_rawDescData)
  1031. })
  1032. return file_extensions_ext_ext_proto_rawDescData
  1033. }
  1034. var file_extensions_ext_ext_proto_enumTypes = make([]prototype.Enum, 1)
  1035. var file_extensions_ext_ext_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  1036. var file_extensions_ext_ext_proto_goTypes = []interface{}{
  1037. (Enum)(0), // 0: goproto.protoc.extension.ext.Enum
  1038. (*Message)(nil), // 1: goproto.protoc.extension.ext.Message
  1039. (*ExtensionGroup)(nil), // 2: goproto.protoc.extension.ext.ExtensionGroup
  1040. (*ExtendingMessage)(nil), // 3: goproto.protoc.extension.ext.ExtendingMessage
  1041. (*RepeatedGroup)(nil), // 4: goproto.protoc.extension.ext.RepeatedGroup
  1042. (*Extendable)(nil), // 5: goproto.protoc.extension.ext.Extendable
  1043. (*MessageSetWireFormatExtension)(nil), // 6: goproto.protoc.extension.ext.MessageSetWireFormatExtension
  1044. (*Message_M)(nil), // 7: goproto.protoc.extension.ext.Message.M
  1045. (*ExtendingMessage_ExtendingMessageSubmessage)(nil), // 8: goproto.protoc.extension.ext.ExtendingMessage.ExtendingMessageSubmessage
  1046. (*base.BaseMessage)(nil), // 9: goproto.protoc.extension.base.BaseMessage
  1047. (*base.MessageSetWireFormatMessage)(nil), // 10: goproto.protoc.extension.base.MessageSetWireFormatMessage
  1048. (*extra.ExtraMessage)(nil), // 11: goproto.protoc.extension.extra.ExtraMessage
  1049. }
  1050. var file_extensions_ext_ext_proto_depIdxs = []int32{
  1051. 9, // goproto.protoc.extension.ext.extension_bool:extendee -> goproto.protoc.extension.base.BaseMessage
  1052. 9, // goproto.protoc.extension.ext.extension_enum:extendee -> goproto.protoc.extension.base.BaseMessage
  1053. 9, // goproto.protoc.extension.ext.extension_int32:extendee -> goproto.protoc.extension.base.BaseMessage
  1054. 9, // goproto.protoc.extension.ext.extension_sint32:extendee -> goproto.protoc.extension.base.BaseMessage
  1055. 9, // goproto.protoc.extension.ext.extension_uint32:extendee -> goproto.protoc.extension.base.BaseMessage
  1056. 9, // goproto.protoc.extension.ext.extension_int64:extendee -> goproto.protoc.extension.base.BaseMessage
  1057. 9, // goproto.protoc.extension.ext.extension_sint64:extendee -> goproto.protoc.extension.base.BaseMessage
  1058. 9, // goproto.protoc.extension.ext.extension_uint64:extendee -> goproto.protoc.extension.base.BaseMessage
  1059. 9, // goproto.protoc.extension.ext.extension_sfixed32:extendee -> goproto.protoc.extension.base.BaseMessage
  1060. 9, // goproto.protoc.extension.ext.extension_fixed32:extendee -> goproto.protoc.extension.base.BaseMessage
  1061. 9, // goproto.protoc.extension.ext.extension_float:extendee -> goproto.protoc.extension.base.BaseMessage
  1062. 9, // goproto.protoc.extension.ext.extension_sfixed64:extendee -> goproto.protoc.extension.base.BaseMessage
  1063. 9, // goproto.protoc.extension.ext.extension_fixed64:extendee -> goproto.protoc.extension.base.BaseMessage
  1064. 9, // goproto.protoc.extension.ext.extension_double:extendee -> goproto.protoc.extension.base.BaseMessage
  1065. 9, // goproto.protoc.extension.ext.extension_string:extendee -> goproto.protoc.extension.base.BaseMessage
  1066. 9, // goproto.protoc.extension.ext.extension_bytes:extendee -> goproto.protoc.extension.base.BaseMessage
  1067. 9, // goproto.protoc.extension.ext.extension_Message:extendee -> goproto.protoc.extension.base.BaseMessage
  1068. 9, // goproto.protoc.extension.ext.extension_MessageM:extendee -> goproto.protoc.extension.base.BaseMessage
  1069. 9, // goproto.protoc.extension.ext.extensiongroup:extendee -> goproto.protoc.extension.base.BaseMessage
  1070. 9, // goproto.protoc.extension.ext.extra_message:extendee -> goproto.protoc.extension.base.BaseMessage
  1071. 9, // goproto.protoc.extension.ext.repeated_x_bool:extendee -> goproto.protoc.extension.base.BaseMessage
  1072. 9, // goproto.protoc.extension.ext.repeated_x_enum:extendee -> goproto.protoc.extension.base.BaseMessage
  1073. 9, // goproto.protoc.extension.ext.repeated_x_int32:extendee -> goproto.protoc.extension.base.BaseMessage
  1074. 9, // goproto.protoc.extension.ext.repeated_x_sint32:extendee -> goproto.protoc.extension.base.BaseMessage
  1075. 9, // goproto.protoc.extension.ext.repeated_x_uint32:extendee -> goproto.protoc.extension.base.BaseMessage
  1076. 9, // goproto.protoc.extension.ext.repeated_x_int64:extendee -> goproto.protoc.extension.base.BaseMessage
  1077. 9, // goproto.protoc.extension.ext.repeated_x_sint64:extendee -> goproto.protoc.extension.base.BaseMessage
  1078. 9, // goproto.protoc.extension.ext.repeated_x_uint64:extendee -> goproto.protoc.extension.base.BaseMessage
  1079. 9, // goproto.protoc.extension.ext.repeated_x_sfixed32:extendee -> goproto.protoc.extension.base.BaseMessage
  1080. 9, // goproto.protoc.extension.ext.repeated_x_fixed32:extendee -> goproto.protoc.extension.base.BaseMessage
  1081. 9, // goproto.protoc.extension.ext.repeated_x_float:extendee -> goproto.protoc.extension.base.BaseMessage
  1082. 9, // goproto.protoc.extension.ext.repeated_x_sfixed64:extendee -> goproto.protoc.extension.base.BaseMessage
  1083. 9, // goproto.protoc.extension.ext.repeated_x_fixed64:extendee -> goproto.protoc.extension.base.BaseMessage
  1084. 9, // goproto.protoc.extension.ext.repeated_x_double:extendee -> goproto.protoc.extension.base.BaseMessage
  1085. 9, // goproto.protoc.extension.ext.repeated_x_string:extendee -> goproto.protoc.extension.base.BaseMessage
  1086. 9, // goproto.protoc.extension.ext.repeated_x_bytes:extendee -> goproto.protoc.extension.base.BaseMessage
  1087. 9, // goproto.protoc.extension.ext.repeated_x_Message:extendee -> goproto.protoc.extension.base.BaseMessage
  1088. 9, // goproto.protoc.extension.ext.repeatedgroup:extendee -> goproto.protoc.extension.base.BaseMessage
  1089. 9, // goproto.protoc.extension.ext.extendable_field:extendee -> goproto.protoc.extension.base.BaseMessage
  1090. 5, // goproto.protoc.extension.ext.extendable_string_field:extendee -> goproto.protoc.extension.ext.Extendable
  1091. 10, // goproto.protoc.extension.ext.message_set_extension:extendee -> goproto.protoc.extension.base.MessageSetWireFormatMessage
  1092. 9, // goproto.protoc.extension.ext.ExtendingMessage.extending_message_string:extendee -> goproto.protoc.extension.base.BaseMessage
  1093. 9, // goproto.protoc.extension.ext.ExtendingMessage.extending_message_submessage:extendee -> goproto.protoc.extension.base.BaseMessage
  1094. 10, // goproto.protoc.extension.ext.MessageSetWireFormatExtension.message_set_extension:extendee -> goproto.protoc.extension.base.MessageSetWireFormatMessage
  1095. 0, // goproto.protoc.extension.ext.extension_enum:type_name -> goproto.protoc.extension.ext.Enum
  1096. 1, // goproto.protoc.extension.ext.extension_Message:type_name -> goproto.protoc.extension.ext.Message
  1097. 7, // goproto.protoc.extension.ext.extension_MessageM:type_name -> goproto.protoc.extension.ext.Message.M
  1098. 2, // goproto.protoc.extension.ext.extensiongroup:type_name -> goproto.protoc.extension.ext.ExtensionGroup
  1099. 11, // goproto.protoc.extension.ext.extra_message:type_name -> goproto.protoc.extension.extra.ExtraMessage
  1100. 0, // goproto.protoc.extension.ext.repeated_x_enum:type_name -> goproto.protoc.extension.ext.Enum
  1101. 1, // goproto.protoc.extension.ext.repeated_x_Message:type_name -> goproto.protoc.extension.ext.Message
  1102. 4, // goproto.protoc.extension.ext.repeatedgroup:type_name -> goproto.protoc.extension.ext.RepeatedGroup
  1103. 5, // goproto.protoc.extension.ext.extendable_field:type_name -> goproto.protoc.extension.ext.Extendable
  1104. 6, // goproto.protoc.extension.ext.message_set_extension:type_name -> goproto.protoc.extension.ext.MessageSetWireFormatExtension
  1105. 8, // goproto.protoc.extension.ext.ExtendingMessage.extending_message_submessage:type_name -> goproto.protoc.extension.ext.ExtendingMessage.ExtendingMessageSubmessage
  1106. 6, // goproto.protoc.extension.ext.MessageSetWireFormatExtension.message_set_extension:type_name -> goproto.protoc.extension.ext.MessageSetWireFormatExtension
  1107. 56, // starting offset of method output_type sub-list
  1108. 56, // starting offset of method input_type sub-list
  1109. 44, // starting offset of extension type_name sub-list
  1110. 0, // starting offset of extension extendee sub-list
  1111. 0, // starting offset of field type_name sub-list
  1112. }
  1113. func init() { file_extensions_ext_ext_proto_init() }
  1114. func file_extensions_ext_ext_proto_init() {
  1115. if File_extensions_ext_ext_proto != nil {
  1116. return
  1117. }
  1118. out := protoimpl.TypeBuilder{
  1119. File: protoimpl.DescBuilder{
  1120. RawDescriptor: file_extensions_ext_ext_proto_rawDesc,
  1121. NumEnums: 1,
  1122. NumMessages: 8,
  1123. NumExtensions: 44,
  1124. NumServices: 0,
  1125. },
  1126. GoTypes: file_extensions_ext_ext_proto_goTypes,
  1127. DependencyIndexes: file_extensions_ext_ext_proto_depIdxs,
  1128. MessageInfos: file_extensions_ext_ext_proto_msgTypes,
  1129. LegacyExtensions: file_extensions_ext_ext_proto_extDescs,
  1130. }.Build()
  1131. File_extensions_ext_ext_proto = out.File
  1132. file_extensions_ext_ext_proto_enumTypes = out.Enums
  1133. file_extensions_ext_ext_proto_rawDesc = nil
  1134. file_extensions_ext_ext_proto_goTypes = nil
  1135. file_extensions_ext_ext_proto_depIdxs = nil
  1136. }