http.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. // Code generated by protoc-gen-go.
  2. // source: google/api/http.proto
  3. // DO NOT EDIT!
  4. package annotations
  5. import proto "github.com/golang/protobuf/proto"
  6. import fmt "fmt"
  7. import math "math"
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // Defines the HTTP configuration for a service. It contains a list of
  13. // [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method
  14. // to one or more HTTP REST API methods.
  15. type Http struct {
  16. // A list of HTTP configuration rules that apply to individual API methods.
  17. //
  18. // **NOTE:** All service configuration rules follow "last one wins" order.
  19. Rules []*HttpRule `protobuf:"bytes,1,rep,name=rules" json:"rules,omitempty"`
  20. }
  21. func (m *Http) Reset() { *m = Http{} }
  22. func (m *Http) String() string { return proto.CompactTextString(m) }
  23. func (*Http) ProtoMessage() {}
  24. func (*Http) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
  25. func (m *Http) GetRules() []*HttpRule {
  26. if m != nil {
  27. return m.Rules
  28. }
  29. return nil
  30. }
  31. // `HttpRule` defines the mapping of an RPC method to one or more HTTP
  32. // REST APIs. The mapping determines what portions of the request
  33. // message are populated from the path, query parameters, or body of
  34. // the HTTP request. The mapping is typically specified as an
  35. // `google.api.http` annotation, see "google/api/annotations.proto"
  36. // for details.
  37. //
  38. // The mapping consists of a field specifying the path template and
  39. // method kind. The path template can refer to fields in the request
  40. // message, as in the example below which describes a REST GET
  41. // operation on a resource collection of messages:
  42. //
  43. //
  44. // service Messaging {
  45. // rpc GetMessage(GetMessageRequest) returns (Message) {
  46. // option (google.api.http).get = "/v1/messages/{message_id}/{sub.subfield}";
  47. // }
  48. // }
  49. // message GetMessageRequest {
  50. // message SubMessage {
  51. // string subfield = 1;
  52. // }
  53. // string message_id = 1; // mapped to the URL
  54. // SubMessage sub = 2; // `sub.subfield` is url-mapped
  55. // }
  56. // message Message {
  57. // string text = 1; // content of the resource
  58. // }
  59. //
  60. // The same http annotation can alternatively be expressed inside the
  61. // `GRPC API Configuration` YAML file.
  62. //
  63. // http:
  64. // rules:
  65. // - selector: <proto_package_name>.Messaging.GetMessage
  66. // get: /v1/messages/{message_id}/{sub.subfield}
  67. //
  68. // This definition enables an automatic, bidrectional mapping of HTTP
  69. // JSON to RPC. Example:
  70. //
  71. // HTTP | RPC
  72. // -----|-----
  73. // `GET /v1/messages/123456/foo` | `GetMessage(message_id: "123456" sub: SubMessage(subfield: "foo"))`
  74. //
  75. // In general, not only fields but also field paths can be referenced
  76. // from a path pattern. Fields mapped to the path pattern cannot be
  77. // repeated and must have a primitive (non-message) type.
  78. //
  79. // Any fields in the request message which are not bound by the path
  80. // pattern automatically become (optional) HTTP query
  81. // parameters. Assume the following definition of the request message:
  82. //
  83. //
  84. // message GetMessageRequest {
  85. // message SubMessage {
  86. // string subfield = 1;
  87. // }
  88. // string message_id = 1; // mapped to the URL
  89. // int64 revision = 2; // becomes a parameter
  90. // SubMessage sub = 3; // `sub.subfield` becomes a parameter
  91. // }
  92. //
  93. //
  94. // This enables a HTTP JSON to RPC mapping as below:
  95. //
  96. // HTTP | RPC
  97. // -----|-----
  98. // `GET /v1/messages/123456?revision=2&sub.subfield=foo` | `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield: "foo"))`
  99. //
  100. // Note that fields which are mapped to HTTP parameters must have a
  101. // primitive type or a repeated primitive type. Message types are not
  102. // allowed. In the case of a repeated type, the parameter can be
  103. // repeated in the URL, as in `...?param=A&param=B`.
  104. //
  105. // For HTTP method kinds which allow a request body, the `body` field
  106. // specifies the mapping. Consider a REST update method on the
  107. // message resource collection:
  108. //
  109. //
  110. // service Messaging {
  111. // rpc UpdateMessage(UpdateMessageRequest) returns (Message) {
  112. // option (google.api.http) = {
  113. // put: "/v1/messages/{message_id}"
  114. // body: "message"
  115. // };
  116. // }
  117. // }
  118. // message UpdateMessageRequest {
  119. // string message_id = 1; // mapped to the URL
  120. // Message message = 2; // mapped to the body
  121. // }
  122. //
  123. //
  124. // The following HTTP JSON to RPC mapping is enabled, where the
  125. // representation of the JSON in the request body is determined by
  126. // protos JSON encoding:
  127. //
  128. // HTTP | RPC
  129. // -----|-----
  130. // `PUT /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456" message { text: "Hi!" })`
  131. //
  132. // The special name `*` can be used in the body mapping to define that
  133. // every field not bound by the path template should be mapped to the
  134. // request body. This enables the following alternative definition of
  135. // the update method:
  136. //
  137. // service Messaging {
  138. // rpc UpdateMessage(Message) returns (Message) {
  139. // option (google.api.http) = {
  140. // put: "/v1/messages/{message_id}"
  141. // body: "*"
  142. // };
  143. // }
  144. // }
  145. // message Message {
  146. // string message_id = 1;
  147. // string text = 2;
  148. // }
  149. //
  150. //
  151. // The following HTTP JSON to RPC mapping is enabled:
  152. //
  153. // HTTP | RPC
  154. // -----|-----
  155. // `PUT /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456" text: "Hi!")`
  156. //
  157. // Note that when using `*` in the body mapping, it is not possible to
  158. // have HTTP parameters, as all fields not bound by the path end in
  159. // the body. This makes this option more rarely used in practice of
  160. // defining REST APIs. The common usage of `*` is in custom methods
  161. // which don't use the URL at all for transferring data.
  162. //
  163. // It is possible to define multiple HTTP methods for one RPC by using
  164. // the `additional_bindings` option. Example:
  165. //
  166. // service Messaging {
  167. // rpc GetMessage(GetMessageRequest) returns (Message) {
  168. // option (google.api.http) = {
  169. // get: "/v1/messages/{message_id}"
  170. // additional_bindings {
  171. // get: "/v1/users/{user_id}/messages/{message_id}"
  172. // }
  173. // };
  174. // }
  175. // }
  176. // message GetMessageRequest {
  177. // string message_id = 1;
  178. // string user_id = 2;
  179. // }
  180. //
  181. //
  182. // This enables the following two alternative HTTP JSON to RPC
  183. // mappings:
  184. //
  185. // HTTP | RPC
  186. // -----|-----
  187. // `GET /v1/messages/123456` | `GetMessage(message_id: "123456")`
  188. // `GET /v1/users/me/messages/123456` | `GetMessage(user_id: "me" message_id: "123456")`
  189. //
  190. // # Rules for HTTP mapping
  191. //
  192. // The rules for mapping HTTP path, query parameters, and body fields
  193. // to the request message are as follows:
  194. //
  195. // 1. The `body` field specifies either `*` or a field path, or is
  196. // omitted. If omitted, it assumes there is no HTTP body.
  197. // 2. Leaf fields (recursive expansion of nested messages in the
  198. // request) can be classified into three types:
  199. // (a) Matched in the URL template.
  200. // (b) Covered by body (if body is `*`, everything except (a) fields;
  201. // else everything under the body field)
  202. // (c) All other fields.
  203. // 3. URL query parameters found in the HTTP request are mapped to (c) fields.
  204. // 4. Any body sent with an HTTP request can contain only (b) fields.
  205. //
  206. // The syntax of the path template is as follows:
  207. //
  208. // Template = "/" Segments [ Verb ] ;
  209. // Segments = Segment { "/" Segment } ;
  210. // Segment = "*" | "**" | LITERAL | Variable ;
  211. // Variable = "{" FieldPath [ "=" Segments ] "}" ;
  212. // FieldPath = IDENT { "." IDENT } ;
  213. // Verb = ":" LITERAL ;
  214. //
  215. // The syntax `*` matches a single path segment. It follows the semantics of
  216. // [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
  217. // Expansion.
  218. //
  219. // The syntax `**` matches zero or more path segments. It follows the semantics
  220. // of [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.3 Reserved
  221. // Expansion. NOTE: it must be the last segment in the path except the Verb.
  222. //
  223. // The syntax `LITERAL` matches literal text in the URL path.
  224. //
  225. // The syntax `Variable` matches the entire path as specified by its template;
  226. // this nested template must not contain further variables. If a variable
  227. // matches a single path segment, its template may be omitted, e.g. `{var}`
  228. // is equivalent to `{var=*}`.
  229. //
  230. // NOTE: the field paths in variables and in the `body` must not refer to
  231. // repeated fields or map fields.
  232. //
  233. // Use CustomHttpPattern to specify any HTTP method that is not included in the
  234. // `pattern` field, such as HEAD, or "*" to leave the HTTP method unspecified for
  235. // a given URL path rule. The wild-card rule is useful for services that provide
  236. // content to Web (HTML) clients.
  237. type HttpRule struct {
  238. // Selects methods to which this rule applies.
  239. //
  240. // Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
  241. Selector string `protobuf:"bytes,1,opt,name=selector" json:"selector,omitempty"`
  242. // Determines the URL pattern is matched by this rules. This pattern can be
  243. // used with any of the {get|put|post|delete|patch} methods. A custom method
  244. // can be defined using the 'custom' field.
  245. //
  246. // Types that are valid to be assigned to Pattern:
  247. // *HttpRule_Get
  248. // *HttpRule_Put
  249. // *HttpRule_Post
  250. // *HttpRule_Delete
  251. // *HttpRule_Patch
  252. // *HttpRule_Custom
  253. Pattern isHttpRule_Pattern `protobuf_oneof:"pattern"`
  254. // The name of the request field whose value is mapped to the HTTP body, or
  255. // `*` for mapping all fields not captured by the path pattern to the HTTP
  256. // body. NOTE: the referred field must not be a repeated field and must be
  257. // present at the top-level of request message type.
  258. Body string `protobuf:"bytes,7,opt,name=body" json:"body,omitempty"`
  259. // Additional HTTP bindings for the selector. Nested bindings must
  260. // not contain an `additional_bindings` field themselves (that is,
  261. // the nesting may only be one level deep).
  262. AdditionalBindings []*HttpRule `protobuf:"bytes,11,rep,name=additional_bindings,json=additionalBindings" json:"additional_bindings,omitempty"`
  263. }
  264. func (m *HttpRule) Reset() { *m = HttpRule{} }
  265. func (m *HttpRule) String() string { return proto.CompactTextString(m) }
  266. func (*HttpRule) ProtoMessage() {}
  267. func (*HttpRule) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{1} }
  268. type isHttpRule_Pattern interface {
  269. isHttpRule_Pattern()
  270. }
  271. type HttpRule_Get struct {
  272. Get string `protobuf:"bytes,2,opt,name=get,oneof"`
  273. }
  274. type HttpRule_Put struct {
  275. Put string `protobuf:"bytes,3,opt,name=put,oneof"`
  276. }
  277. type HttpRule_Post struct {
  278. Post string `protobuf:"bytes,4,opt,name=post,oneof"`
  279. }
  280. type HttpRule_Delete struct {
  281. Delete string `protobuf:"bytes,5,opt,name=delete,oneof"`
  282. }
  283. type HttpRule_Patch struct {
  284. Patch string `protobuf:"bytes,6,opt,name=patch,oneof"`
  285. }
  286. type HttpRule_Custom struct {
  287. Custom *CustomHttpPattern `protobuf:"bytes,8,opt,name=custom,oneof"`
  288. }
  289. func (*HttpRule_Get) isHttpRule_Pattern() {}
  290. func (*HttpRule_Put) isHttpRule_Pattern() {}
  291. func (*HttpRule_Post) isHttpRule_Pattern() {}
  292. func (*HttpRule_Delete) isHttpRule_Pattern() {}
  293. func (*HttpRule_Patch) isHttpRule_Pattern() {}
  294. func (*HttpRule_Custom) isHttpRule_Pattern() {}
  295. func (m *HttpRule) GetPattern() isHttpRule_Pattern {
  296. if m != nil {
  297. return m.Pattern
  298. }
  299. return nil
  300. }
  301. func (m *HttpRule) GetSelector() string {
  302. if m != nil {
  303. return m.Selector
  304. }
  305. return ""
  306. }
  307. func (m *HttpRule) GetGet() string {
  308. if x, ok := m.GetPattern().(*HttpRule_Get); ok {
  309. return x.Get
  310. }
  311. return ""
  312. }
  313. func (m *HttpRule) GetPut() string {
  314. if x, ok := m.GetPattern().(*HttpRule_Put); ok {
  315. return x.Put
  316. }
  317. return ""
  318. }
  319. func (m *HttpRule) GetPost() string {
  320. if x, ok := m.GetPattern().(*HttpRule_Post); ok {
  321. return x.Post
  322. }
  323. return ""
  324. }
  325. func (m *HttpRule) GetDelete() string {
  326. if x, ok := m.GetPattern().(*HttpRule_Delete); ok {
  327. return x.Delete
  328. }
  329. return ""
  330. }
  331. func (m *HttpRule) GetPatch() string {
  332. if x, ok := m.GetPattern().(*HttpRule_Patch); ok {
  333. return x.Patch
  334. }
  335. return ""
  336. }
  337. func (m *HttpRule) GetCustom() *CustomHttpPattern {
  338. if x, ok := m.GetPattern().(*HttpRule_Custom); ok {
  339. return x.Custom
  340. }
  341. return nil
  342. }
  343. func (m *HttpRule) GetBody() string {
  344. if m != nil {
  345. return m.Body
  346. }
  347. return ""
  348. }
  349. func (m *HttpRule) GetAdditionalBindings() []*HttpRule {
  350. if m != nil {
  351. return m.AdditionalBindings
  352. }
  353. return nil
  354. }
  355. // XXX_OneofFuncs is for the internal use of the proto package.
  356. func (*HttpRule) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  357. return _HttpRule_OneofMarshaler, _HttpRule_OneofUnmarshaler, _HttpRule_OneofSizer, []interface{}{
  358. (*HttpRule_Get)(nil),
  359. (*HttpRule_Put)(nil),
  360. (*HttpRule_Post)(nil),
  361. (*HttpRule_Delete)(nil),
  362. (*HttpRule_Patch)(nil),
  363. (*HttpRule_Custom)(nil),
  364. }
  365. }
  366. func _HttpRule_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  367. m := msg.(*HttpRule)
  368. // pattern
  369. switch x := m.Pattern.(type) {
  370. case *HttpRule_Get:
  371. b.EncodeVarint(2<<3 | proto.WireBytes)
  372. b.EncodeStringBytes(x.Get)
  373. case *HttpRule_Put:
  374. b.EncodeVarint(3<<3 | proto.WireBytes)
  375. b.EncodeStringBytes(x.Put)
  376. case *HttpRule_Post:
  377. b.EncodeVarint(4<<3 | proto.WireBytes)
  378. b.EncodeStringBytes(x.Post)
  379. case *HttpRule_Delete:
  380. b.EncodeVarint(5<<3 | proto.WireBytes)
  381. b.EncodeStringBytes(x.Delete)
  382. case *HttpRule_Patch:
  383. b.EncodeVarint(6<<3 | proto.WireBytes)
  384. b.EncodeStringBytes(x.Patch)
  385. case *HttpRule_Custom:
  386. b.EncodeVarint(8<<3 | proto.WireBytes)
  387. if err := b.EncodeMessage(x.Custom); err != nil {
  388. return err
  389. }
  390. case nil:
  391. default:
  392. return fmt.Errorf("HttpRule.Pattern has unexpected type %T", x)
  393. }
  394. return nil
  395. }
  396. func _HttpRule_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  397. m := msg.(*HttpRule)
  398. switch tag {
  399. case 2: // pattern.get
  400. if wire != proto.WireBytes {
  401. return true, proto.ErrInternalBadWireType
  402. }
  403. x, err := b.DecodeStringBytes()
  404. m.Pattern = &HttpRule_Get{x}
  405. return true, err
  406. case 3: // pattern.put
  407. if wire != proto.WireBytes {
  408. return true, proto.ErrInternalBadWireType
  409. }
  410. x, err := b.DecodeStringBytes()
  411. m.Pattern = &HttpRule_Put{x}
  412. return true, err
  413. case 4: // pattern.post
  414. if wire != proto.WireBytes {
  415. return true, proto.ErrInternalBadWireType
  416. }
  417. x, err := b.DecodeStringBytes()
  418. m.Pattern = &HttpRule_Post{x}
  419. return true, err
  420. case 5: // pattern.delete
  421. if wire != proto.WireBytes {
  422. return true, proto.ErrInternalBadWireType
  423. }
  424. x, err := b.DecodeStringBytes()
  425. m.Pattern = &HttpRule_Delete{x}
  426. return true, err
  427. case 6: // pattern.patch
  428. if wire != proto.WireBytes {
  429. return true, proto.ErrInternalBadWireType
  430. }
  431. x, err := b.DecodeStringBytes()
  432. m.Pattern = &HttpRule_Patch{x}
  433. return true, err
  434. case 8: // pattern.custom
  435. if wire != proto.WireBytes {
  436. return true, proto.ErrInternalBadWireType
  437. }
  438. msg := new(CustomHttpPattern)
  439. err := b.DecodeMessage(msg)
  440. m.Pattern = &HttpRule_Custom{msg}
  441. return true, err
  442. default:
  443. return false, nil
  444. }
  445. }
  446. func _HttpRule_OneofSizer(msg proto.Message) (n int) {
  447. m := msg.(*HttpRule)
  448. // pattern
  449. switch x := m.Pattern.(type) {
  450. case *HttpRule_Get:
  451. n += proto.SizeVarint(2<<3 | proto.WireBytes)
  452. n += proto.SizeVarint(uint64(len(x.Get)))
  453. n += len(x.Get)
  454. case *HttpRule_Put:
  455. n += proto.SizeVarint(3<<3 | proto.WireBytes)
  456. n += proto.SizeVarint(uint64(len(x.Put)))
  457. n += len(x.Put)
  458. case *HttpRule_Post:
  459. n += proto.SizeVarint(4<<3 | proto.WireBytes)
  460. n += proto.SizeVarint(uint64(len(x.Post)))
  461. n += len(x.Post)
  462. case *HttpRule_Delete:
  463. n += proto.SizeVarint(5<<3 | proto.WireBytes)
  464. n += proto.SizeVarint(uint64(len(x.Delete)))
  465. n += len(x.Delete)
  466. case *HttpRule_Patch:
  467. n += proto.SizeVarint(6<<3 | proto.WireBytes)
  468. n += proto.SizeVarint(uint64(len(x.Patch)))
  469. n += len(x.Patch)
  470. case *HttpRule_Custom:
  471. s := proto.Size(x.Custom)
  472. n += proto.SizeVarint(8<<3 | proto.WireBytes)
  473. n += proto.SizeVarint(uint64(s))
  474. n += s
  475. case nil:
  476. default:
  477. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  478. }
  479. return n
  480. }
  481. // A custom pattern is used for defining custom HTTP verb.
  482. type CustomHttpPattern struct {
  483. // The name of this custom HTTP verb.
  484. Kind string `protobuf:"bytes,1,opt,name=kind" json:"kind,omitempty"`
  485. // The path matched by this custom verb.
  486. Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
  487. }
  488. func (m *CustomHttpPattern) Reset() { *m = CustomHttpPattern{} }
  489. func (m *CustomHttpPattern) String() string { return proto.CompactTextString(m) }
  490. func (*CustomHttpPattern) ProtoMessage() {}
  491. func (*CustomHttpPattern) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{2} }
  492. func (m *CustomHttpPattern) GetKind() string {
  493. if m != nil {
  494. return m.Kind
  495. }
  496. return ""
  497. }
  498. func (m *CustomHttpPattern) GetPath() string {
  499. if m != nil {
  500. return m.Path
  501. }
  502. return ""
  503. }
  504. func init() {
  505. proto.RegisterType((*Http)(nil), "google.api.Http")
  506. proto.RegisterType((*HttpRule)(nil), "google.api.HttpRule")
  507. proto.RegisterType((*CustomHttpPattern)(nil), "google.api.CustomHttpPattern")
  508. }
  509. func init() { proto.RegisterFile("google/api/http.proto", fileDescriptor1) }
  510. var fileDescriptor1 = []byte{
  511. // 359 bytes of a gzipped FileDescriptorProto
  512. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xcf, 0x6a, 0xe3, 0x30,
  513. 0x10, 0xc6, 0xd7, 0x89, 0xe3, 0x24, 0x13, 0x58, 0x58, 0x6d, 0x76, 0x11, 0x85, 0x42, 0xc8, 0x29,
  514. 0xf4, 0x60, 0x43, 0x7a, 0xe8, 0x21, 0xa7, 0xb8, 0x94, 0xa6, 0xb7, 0xe0, 0x63, 0x2f, 0x45, 0xb1,
  515. 0x85, 0xa2, 0xd6, 0x91, 0x84, 0x3d, 0x3e, 0xf4, 0x75, 0xfa, 0x0e, 0x7d, 0xb7, 0x1e, 0x8b, 0xfe,
  516. 0xa4, 0x09, 0x14, 0x7a, 0x9b, 0xef, 0x37, 0x9f, 0x34, 0xa3, 0x19, 0xc1, 0x3f, 0xa1, 0xb5, 0xa8,
  517. 0x79, 0xc6, 0x8c, 0xcc, 0xf6, 0x88, 0x26, 0x35, 0x8d, 0x46, 0x4d, 0xc0, 0xe3, 0x94, 0x19, 0x39,
  518. 0x5f, 0x42, 0xbc, 0x41, 0x34, 0xe4, 0x0a, 0x06, 0x4d, 0x57, 0xf3, 0x96, 0x46, 0xb3, 0xfe, 0x62,
  519. 0xb2, 0x9c, 0xa6, 0x27, 0x4f, 0x6a, 0x0d, 0x45, 0x57, 0xf3, 0xc2, 0x5b, 0xe6, 0xef, 0x3d, 0x18,
  520. 0x1d, 0x19, 0xb9, 0x80, 0x51, 0xcb, 0x6b, 0x5e, 0xa2, 0x6e, 0x68, 0x34, 0x8b, 0x16, 0xe3, 0xe2,
  521. 0x4b, 0x13, 0x02, 0x7d, 0xc1, 0x91, 0xf6, 0x2c, 0xde, 0xfc, 0x2a, 0xac, 0xb0, 0xcc, 0x74, 0x48,
  522. 0xfb, 0x47, 0x66, 0x3a, 0x24, 0x53, 0x88, 0x8d, 0x6e, 0x91, 0xc6, 0x01, 0x3a, 0x45, 0x28, 0x24,
  523. 0x15, 0xaf, 0x39, 0x72, 0x3a, 0x08, 0x3c, 0x68, 0xf2, 0x1f, 0x06, 0x86, 0x61, 0xb9, 0xa7, 0x49,
  524. 0x48, 0x78, 0x49, 0x6e, 0x20, 0x29, 0xbb, 0x16, 0xf5, 0x81, 0x8e, 0x66, 0xd1, 0x62, 0xb2, 0xbc,
  525. 0x3c, 0x7f, 0xc5, 0xad, 0xcb, 0xd8, 0xbe, 0xb7, 0x0c, 0x91, 0x37, 0xca, 0x5e, 0xe8, 0xed, 0x84,
  526. 0x40, 0xbc, 0xd3, 0xd5, 0x2b, 0x1d, 0xba, 0x07, 0xb8, 0x98, 0xdc, 0xc1, 0x5f, 0x56, 0x55, 0x12,
  527. 0xa5, 0x56, 0xac, 0x7e, 0xda, 0x49, 0x55, 0x49, 0x25, 0x5a, 0x3a, 0xf9, 0x61, 0x3e, 0xe4, 0x74,
  528. 0x20, 0x0f, 0xfe, 0x7c, 0x0c, 0x43, 0xe3, 0xeb, 0xcd, 0x57, 0xf0, 0xe7, 0x5b, 0x13, 0xb6, 0xf4,
  529. 0x8b, 0x54, 0x55, 0x98, 0x9d, 0x8b, 0x2d, 0x33, 0x0c, 0xf7, 0x7e, 0x70, 0x85, 0x8b, 0xf3, 0x67,
  530. 0xf8, 0x5d, 0xea, 0xc3, 0x59, 0xd9, 0x7c, 0xec, 0xae, 0xb1, 0x1b, 0xdd, 0x46, 0x8f, 0xeb, 0x90,
  531. 0x10, 0xba, 0x66, 0x4a, 0xa4, 0xba, 0x11, 0x99, 0xe0, 0xca, 0xed, 0x3b, 0xf3, 0x29, 0x66, 0x64,
  532. 0xeb, 0x7e, 0x02, 0x53, 0x4a, 0x23, 0xb3, 0x6d, 0xb6, 0xab, 0xb3, 0xf8, 0x23, 0x8a, 0xde, 0x7a,
  533. 0xf1, 0xfd, 0x7a, 0xfb, 0xb0, 0x4b, 0xdc, 0xb9, 0xeb, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x68,
  534. 0x15, 0x60, 0x5b, 0x40, 0x02, 0x00, 0x00,
  535. }