From e1a127c6f7cf2006c77a16dbc0face2a43f2094a Mon Sep 17 00:00:00 2001 From: Josh Giles Date: Mon, 3 Feb 2020 02:39:15 -0500 Subject: [PATCH] Fix #1117: Support response examples. (#1124) * Fix #1117: Support response examples. Add support for examples in operation annotation responses. Merge custom response data into the default 200 response. * Regenerate files. * Documentation improvements. --- README.md | 23 + docs/_docs/usage.md | 23 + examples/clients/abe/api/swagger.yaml | 11 +- .../proto/examplepb/a_bit_of_everything.pb.go | 445 +++++++++--------- .../proto/examplepb/a_bit_of_everything.proto | 9 + .../a_bit_of_everything.swagger.json | 15 + protoc-gen-swagger/genswagger/template.go | 32 +- protoc-gen-swagger/genswagger/types.go | 5 +- protoc-gen-swagger/options/openapiv2.pb.go | 253 +++++----- protoc-gen-swagger/options/openapiv2.proto | 5 +- 10 files changed, 470 insertions(+), 351 deletions(-) diff --git a/README.md b/README.md index 9f7493d9bf2..85aaa7b6b0f 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,10 @@ annotation to your .proto file } ``` + See [a_bit_of_everything.proto](examples/proto/examplepb/a_bit_of_everything.proto) + for examples of more annotations you can add to customize gateway behavior + and generated Swagger output. + If you do not want to modify the proto file for use with grpc-gateway you can alternatively use an external [gRPC Service Configuration](https://cloud.google.com/endpoints/docs/grpc/grpc-service-config) file. @@ -210,6 +214,16 @@ annotation to your .proto file ``` ## Parameters and flags + +During code generation with `protoc`, flags to grpc-gateway tools must be passed +through protoc using the `--_out=:` pattern, for +example: + +```sh +--grpc-gateway_out=logtostderr=true,repeated_path_param_separator=ssv:. +--swagger_out=logtostderr=true,repeated_path_param_separator=ssv:. +``` + `protoc-gen-grpc-gateway` supports custom mapping from Protobuf `import` to Golang import paths. They are compatible to [the parameters with same names in `protoc-gen-go`](https://github.com/golang/protobuf#parameters) @@ -223,6 +237,15 @@ useful to pass request scoped context between the gateway and the gRPC service. logging. You can give these flags together with parameters above. Run `protoc-gen-grpc-gateway --help` for more details about the flags. +Similarly, `protoc-gen-swagger` supports command-line flags to control Swagger +output (for example, `json_names_for_fields` to output JSON names for fields +instead of protobuf names). Run `protoc-gen-swagger --help` for more flag +details. Further Swagger customization is possible by annotating your `.proto` +files with options from +[openapiv2.proto](protoc-gen-swagger/options/openapiv2.proto) - see +[a_bit_of_everything.proto](examples/proto/examplepb/a_bit_of_everything.proto) +for examples. + ## More Examples More examples are available under `examples` directory. * `proto/examplepb/echo_service.proto`, `proto/examplepb/a_bit_of_everything.proto`, `proto/examplepb/unannotated_echo_service.proto`: service definition diff --git a/docs/_docs/usage.md b/docs/_docs/usage.md index 2bb0f22cb3b..7ccf52e0abd 100644 --- a/docs/_docs/usage.md +++ b/docs/_docs/usage.md @@ -68,6 +68,10 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`. } ``` + See [a_bit_of_everything.proto](examples/proto/examplepb/a_bit_of_everything.proto) + for examples of more annotations you can add to customize gateway behavior + and generated Swagger output. + If you do not want to modify the proto file for use with grpc-gateway you can alternatively use an external [gRPC API Configuration](https://cloud.google.com/endpoints/docs/grpc/grpc-service-config) file. [Check our documentation](grpcapiconfiguration.html) for more information. 3. Generate gRPC stub @@ -174,6 +178,16 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`. ``` ## Parameters and flags + +During code generation with `protoc`, flags to grpc-gateway tools must be passed +through protoc using the `--_out=:` pattern, for +example: + +```sh +--grpc-gateway_out=logtostderr=true,repeated_path_param_separator=ssv:. +--swagger_out=logtostderr=true,repeated_path_param_separator=ssv:. +``` + `protoc-gen-grpc-gateway` supports custom mapping from Protobuf `import` to Golang import path. They are compatible to [the parameters with same names in `protoc-gen-go`](https://github.com/golang/protobuf#parameters). @@ -182,6 +196,15 @@ This parameter can be useful to pass request scoped context between the gateway `protoc-gen-grpc-gateway` also supports some more command line flags to control logging. You can give these flags together with parameters above. Run `protoc-gen-grpc-gateway --help` for more details about the flags. +Similarly, `protoc-gen-swagger` supports command-line flags to control Swagger +output (for example, `json_names_for_fields` to output JSON names for fields +instead of protobuf names). Run `protoc-gen-swagger --help` for more flag +details. Further Swagger customization is possible by annotating your `.proto` +files with options from +[openapiv2.proto](protoc-gen-swagger/options/openapiv2.proto) - see +[a_bit_of_everything.proto](examples/proto/examplepb/a_bit_of_everything.proto) +for examples. + # Mapping gRPC to HTTP * [How gRPC error codes map to HTTP status codes in the response](https://github.com/grpc-ecosystem/grpc-gateway/blob/master/runtime/errors.go#L15) diff --git a/examples/clients/abe/api/swagger.yaml b/examples/clients/abe/api/swagger.yaml index ab5f7a80719..91859be58e5 100644 --- a/examples/clients/abe/api/swagger.yaml +++ b/examples/clients/abe/api/swagger.yaml @@ -75,6 +75,9 @@ paths: responses: 200: description: "A successful response." + examples: + application/json: + value: "the input value" schema: $ref: "#/definitions/subStringMessage" 403: @@ -1560,6 +1563,9 @@ paths: responses: 200: description: "A successful response." + examples: + application/json: + value: "the input value" schema: $ref: "#/definitions/subStringMessage" 403: @@ -1598,6 +1604,9 @@ paths: responses: 200: description: "A successful response." + examples: + application/json: + value: "the input value" schema: $ref: "#/definitions/subStringMessage" 403: @@ -2189,8 +2198,6 @@ definitions: properties: value: type: "string" - example: - value: "value" externalDocs: description: "More about gRPC-Gateway" url: "https://github.com/grpc-ecosystem/grpc-gateway" diff --git a/examples/proto/examplepb/a_bit_of_everything.pb.go b/examples/proto/examplepb/a_bit_of_everything.pb.go index bbfbc52d053..78a653b0adb 100644 --- a/examples/proto/examplepb/a_bit_of_everything.pb.go +++ b/examples/proto/examplepb/a_bit_of_everything.pb.go @@ -820,228 +820,229 @@ func init() { } var fileDescriptor_3978364c010e812a = []byte{ - // 3523 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, - 0x7e, 0xd7, 0x72, 0xf5, 0x39, 0xb2, 0xbe, 0x46, 0x96, 0x2d, 0xd3, 0x4a, 0x34, 0xa6, 0x9d, 0x97, - 0x35, 0x9f, 0xc9, 0x95, 0x56, 0x4a, 0x62, 0x33, 0x7d, 0x49, 0x48, 0x49, 0x76, 0x64, 0x27, 0xb2, - 0xb2, 0x76, 0xdc, 0xd4, 0x2f, 0x7e, 0xea, 0x90, 0x1c, 0x8a, 0x6b, 0x71, 0x77, 0xf6, 0xed, 0xce, - 0xca, 0xa2, 0x55, 0xb6, 0x0f, 0x6d, 0xd1, 0x02, 0xef, 0xdd, 0xf8, 0xfa, 0x81, 0xd7, 0x87, 0xf6, - 0x52, 0xf4, 0x52, 0xf4, 0x54, 0xa0, 0xa7, 0x02, 0xed, 0xa5, 0xb7, 0x02, 0x6d, 0x91, 0x02, 0x45, - 0x2f, 0x3d, 0xb5, 0xe7, 0x02, 0x45, 0x8b, 0x00, 0x3d, 0xb4, 0x28, 0x66, 0x76, 0x97, 0xdc, 0x5d, - 0x92, 0x96, 0x69, 0x17, 0x49, 0x0e, 0xf1, 0xce, 0xcc, 0xff, 0xe3, 0xf7, 0x9f, 0xf9, 0xcf, 0xff, - 0x63, 0x28, 0xa0, 0x91, 0x13, 0x6c, 0xda, 0x0d, 0xe2, 0xaa, 0xb6, 0x43, 0x19, 0x55, 0x83, 0xa1, - 0x5d, 0x56, 0xf1, 0x41, 0xd9, 0x60, 0x07, 0xb4, 0x76, 0x40, 0x8e, 0x89, 0xd3, 0x64, 0x75, 0xc3, - 0x3a, 0xcc, 0x0b, 0x1a, 0xb8, 0x7a, 0xe8, 0xd8, 0x95, 0xfc, 0x21, 0x66, 0xe4, 0x19, 0x6e, 0xe6, - 0x43, 0x01, 0xf9, 0x0e, 0x6b, 0x7a, 0xe5, 0x90, 0xd2, 0xc3, 0x06, 0x51, 0xb1, 0x6d, 0xa8, 0xd8, - 0xb2, 0x28, 0xc3, 0xcc, 0xa0, 0x96, 0xeb, 0xb3, 0xa7, 0x51, 0xb0, 0x2a, 0x46, 0x65, 0xaf, 0xa6, - 0xd6, 0x0c, 0xd2, 0xa8, 0x1e, 0x98, 0xd8, 0x3d, 0x0a, 0x28, 0x2e, 0x27, 0x29, 0x88, 0x69, 0xb3, - 0x66, 0xb0, 0xf8, 0x66, 0x72, 0xb1, 0xea, 0x39, 0x42, 0x7e, 0xb0, 0xfe, 0x76, 0xc2, 0x22, 0x1b, - 0xb3, 0x3a, 0xb1, 0x3c, 0x53, 0x7c, 0x1c, 0xf0, 0xaf, 0x10, 0x47, 0x82, 0xd0, 0xf5, 0xca, 0xaa, - 0x49, 0x5c, 0x17, 0x1f, 0x92, 0x80, 0xe2, 0x4a, 0x2f, 0x85, 0x96, 0x20, 0x59, 0x4d, 0xa2, 0x61, - 0x86, 0x49, 0x5c, 0x86, 0x4d, 0x3b, 0x20, 0xb8, 0x21, 0xfe, 0xa9, 0xe4, 0x0e, 0x89, 0x95, 0x73, - 0x9f, 0xe1, 0xc3, 0x43, 0xe2, 0xa8, 0xd4, 0x16, 0xfb, 0xd1, 0xbb, 0x37, 0x99, 0x7f, 0xb8, 0x0c, - 0xe6, 0x8b, 0x25, 0x83, 0xdd, 0xaf, 0xed, 0x74, 0x76, 0x1d, 0x3e, 0x01, 0x33, 0xae, 0x61, 0x1d, - 0x36, 0xc8, 0x81, 0x45, 0x5c, 0x46, 0xaa, 0xcb, 0x97, 0x90, 0xa4, 0x4c, 0x6b, 0x37, 0xf3, 0x67, - 0x9c, 0x43, 0x3e, 0x29, 0x29, 0xbf, 0x27, 0xf8, 0xf5, 0x73, 0xbe, 0x38, 0x7f, 0x04, 0xeb, 0x60, - 0xd4, 0xf3, 0x8c, 0xea, 0xb2, 0x84, 0x24, 0x65, 0xaa, 0xf4, 0xb0, 0x5d, 0xfc, 0xec, 0x47, 0x92, - 0xf4, 0x63, 0xe9, 0xde, 0xf7, 0x71, 0xae, 0x56, 0xcc, 0xdd, 0x5e, 0xcb, 0xdd, 0x7a, 0x72, 0x7a, - 0xb3, 0x95, 0x8b, 0x0e, 0x37, 0x87, 0x19, 0xae, 0x6b, 0x2d, 0x5d, 0x68, 0x80, 0xfb, 0x60, 0x3c, - 0xb0, 0x20, 0x85, 0xe4, 0xd7, 0xb2, 0x20, 0x90, 0x03, 0xef, 0x82, 0xe9, 0x5a, 0x83, 0x62, 0x76, - 0x70, 0x8c, 0x1b, 0x1e, 0x59, 0x96, 0x91, 0xa4, 0xa4, 0x4a, 0xd7, 0xdb, 0xc5, 0xef, 0x68, 0x0b, - 0xb7, 0xf9, 0x3c, 0x12, 0xf3, 0x48, 0x78, 0x58, 0x41, 0x5e, 0xcb, 0x6b, 0x5f, 0x49, 0x51, 0x06, - 0x1d, 0x88, 0xc1, 0x23, 0xfe, 0x0d, 0xaf, 0x80, 0x73, 0x55, 0xea, 0x95, 0x1b, 0x24, 0x10, 0x36, - 0x8a, 0x24, 0x45, 0xd2, 0xa7, 0xfd, 0x39, 0x9f, 0x64, 0x15, 0x4c, 0x1b, 0x16, 0x7b, 0x77, 0x33, - 0xa0, 0x18, 0x43, 0x92, 0x22, 0xeb, 0x40, 0x4c, 0x75, 0x64, 0x78, 0x51, 0x8a, 0x71, 0x24, 0x29, - 0xa3, 0xfa, 0xb4, 0x17, 0x21, 0xf1, 0x65, 0x6c, 0x68, 0x01, 0xc5, 0x04, 0x92, 0x94, 0x31, 0x21, - 0x63, 0x43, 0xf3, 0x09, 0xae, 0x82, 0x99, 0x9a, 0x71, 0x42, 0xaa, 0x1d, 0x21, 0x93, 0x48, 0x52, - 0xc6, 0xf5, 0x73, 0xc1, 0x64, 0x9c, 0xa8, 0x23, 0x67, 0x0a, 0x49, 0xca, 0x44, 0x40, 0x14, 0x4a, - 0x7a, 0x03, 0x80, 0x32, 0xa5, 0x8d, 0x80, 0x02, 0x20, 0x49, 0x99, 0xd4, 0xa7, 0xf8, 0x4c, 0x07, - 0xac, 0xcb, 0x1c, 0xc3, 0x3a, 0x0c, 0x08, 0xa6, 0xb9, 0x03, 0xe8, 0xd3, 0xfe, 0x5c, 0x07, 0x6c, - 0xb9, 0xc9, 0x88, 0x1b, 0x50, 0xbc, 0x81, 0x24, 0xe5, 0x9c, 0x0e, 0xc4, 0x54, 0xcc, 0xe0, 0x0e, - 0x8c, 0x19, 0x24, 0x29, 0x33, 0xbe, 0xc1, 0x21, 0x8a, 0x7b, 0x00, 0xf0, 0x5b, 0x17, 0x10, 0xcc, - 0x22, 0x49, 0x99, 0xd5, 0x6e, 0x9c, 0x79, 0xf2, 0x7b, 0x9e, 0x49, 0x1c, 0xa3, 0xb2, 0x63, 0x79, - 0xa6, 0x3e, 0xc5, 0xf9, 0x7d, 0x61, 0xfb, 0x60, 0xae, 0x73, 0x8f, 0x03, 0x89, 0x6f, 0x0a, 0x89, - 0xca, 0x00, 0x89, 0xe1, 0xf5, 0xcf, 0xef, 0x63, 0x56, 0x17, 0xd2, 0x66, 0xec, 0xe0, 0xcb, 0x97, - 0xe8, 0x82, 0x0b, 0xbe, 0x33, 0x1d, 0x24, 0x05, 0xaf, 0x0a, 0xc1, 0x1f, 0x9c, 0x25, 0xf8, 0x53, - 0x3f, 0x20, 0x84, 0xf2, 0x03, 0x17, 0xed, 0xa8, 0x5b, 0xb4, 0x62, 0x63, 0x5f, 0xe9, 0x5b, 0x60, - 0xd6, 0x8d, 0x9f, 0xdf, 0x1c, 0x92, 0x94, 0x39, 0x7d, 0xc6, 0x8d, 0x1d, 0x60, 0x87, 0xac, 0xe3, - 0x0b, 0xf3, 0x48, 0x52, 0xe6, 0x43, 0xb2, 0x88, 0xd7, 0xb9, 0xd1, 0x43, 0x58, 0x40, 0x92, 0xb2, - 0xa0, 0x4f, 0xbb, 0x91, 0x43, 0x08, 0x48, 0x3a, 0x72, 0x20, 0x92, 0x14, 0xe8, 0x93, 0x84, 0x52, - 0x34, 0xb0, 0xe4, 0x10, 0x9b, 0x60, 0xbe, 0x15, 0x31, 0xbf, 0x58, 0x44, 0xb2, 0x32, 0xa5, 0x2f, - 0x86, 0x8b, 0x0f, 0x22, 0xfe, 0x71, 0x0b, 0x4c, 0x53, 0x8b, 0xf0, 0x24, 0xc1, 0x23, 0xf4, 0xf2, - 0x79, 0x11, 0x98, 0x2e, 0xe4, 0xfd, 0xa0, 0x98, 0x0f, 0x83, 0x62, 0x7e, 0x87, 0xaf, 0x7e, 0x3c, - 0xa2, 0x03, 0x41, 0x2c, 0x46, 0xf0, 0x2a, 0x38, 0xe7, 0xb3, 0xfa, 0xba, 0x96, 0x97, 0xb8, 0xf7, - 0x7d, 0x3c, 0xa2, 0xfb, 0x02, 0x7d, 0x25, 0xf0, 0x4b, 0x30, 0x65, 0x62, 0x3b, 0xc0, 0x71, 0x41, - 0x04, 0x8d, 0x0f, 0x87, 0x0f, 0x1a, 0x9f, 0x62, 0x5b, 0xc0, 0xdd, 0xb1, 0x98, 0xd3, 0xd4, 0x27, - 0xcd, 0x60, 0x08, 0x4f, 0xc0, 0xa2, 0x89, 0x6d, 0x3b, 0x69, 0xef, 0x45, 0xa1, 0xe7, 0xe3, 0x57, - 0xd2, 0x63, 0xc7, 0xf6, 0xc7, 0x57, 0xb8, 0x60, 0x26, 0xe7, 0x23, 0x9a, 0x03, 0xdf, 0xf3, 0x35, - 0x2f, 0xbf, 0x9e, 0x66, 0xdf, 0xf3, 0x7a, 0x35, 0x47, 0xe6, 0x61, 0x01, 0x2c, 0x5b, 0xd4, 0xda, - 0xa2, 0xd6, 0x31, 0xb1, 0x78, 0xe6, 0xc1, 0x8d, 0x3d, 0x6c, 0xfa, 0xe1, 0x6d, 0x39, 0x2d, 0x02, - 0xc0, 0xc0, 0x75, 0xb8, 0x05, 0xe6, 0x3a, 0xe9, 0x2d, 0x40, 0x7c, 0x59, 0x9c, 0x78, 0xba, 0xe7, - 0xc4, 0x1f, 0x86, 0x74, 0xfa, 0x6c, 0x87, 0xc5, 0x17, 0xf2, 0x25, 0xe8, 0x78, 0x52, 0xf4, 0xb2, - 0xad, 0x20, 0x79, 0xe8, 0xb8, 0xb0, 0x10, 0x0a, 0xea, 0x5e, 0xac, 0x3f, 0x93, 0xc0, 0x72, 0x5c, - 0x7c, 0x37, 0xc9, 0x2e, 0xa3, 0xe1, 0x75, 0x94, 0xb6, 0xdb, 0xc5, 0x62, 0xf6, 0xb2, 0x1e, 0x88, - 0x44, 0x96, 0xbf, 0x84, 0xb8, 0x68, 0xc4, 0x0c, 0xd6, 0x20, 0x5a, 0xa6, 0xff, 0x62, 0x95, 0xb8, - 0x15, 0xc7, 0x10, 0x99, 0x3e, 0xaf, 0x5f, 0x88, 0x22, 0x2d, 0x76, 0x10, 0xc1, 0xdf, 0x91, 0xc0, - 0x52, 0x77, 0x13, 0xa2, 0x58, 0xaf, 0x0c, 0x1f, 0x27, 0x4b, 0x5a, 0xbb, 0xa8, 0x66, 0xe1, 0x5e, - 0x2f, 0xc4, 0x4b, 0x7b, 0x03, 0x91, 0x2d, 0x76, 0x62, 0x6b, 0x04, 0xd6, 0x31, 0x48, 0x27, 0x43, - 0x41, 0x04, 0x5a, 0x86, 0xc7, 0x83, 0xd2, 0xcd, 0x76, 0xf1, 0x9d, 0xec, 0x52, 0xc7, 0x76, 0x9f, - 0x2c, 0xd0, 0xb7, 0x92, 0x9c, 0x8e, 0xa9, 0x5c, 0x8e, 0x47, 0x92, 0x88, 0xde, 0xbf, 0x92, 0x22, - 0x8a, 0x83, 0x9b, 0x11, 0x51, 0x7c, 0xf5, 0xf5, 0xaa, 0x86, 0xd2, 0xed, 0x76, 0x71, 0x2b, 0xdb, - 0xc5, 0xe6, 0x2b, 0x40, 0xb4, 0xfc, 0x94, 0x54, 0x58, 0x80, 0xfc, 0xea, 0x80, 0xd5, 0xfe, 0x06, - 0xf8, 0x72, 0x23, 0x06, 0xfc, 0x5c, 0x02, 0x0b, 0xbd, 0xb8, 0xaf, 0xbd, 0x5e, 0xbd, 0x56, 0xda, - 0x6c, 0x17, 0xd7, 0xb3, 0x8b, 0x7b, 0x7d, 0xe0, 0xa6, 0xf7, 0x06, 0xa3, 0x9c, 0xb7, 0x92, 0xe8, - 0xde, 0x03, 0x8b, 0x7e, 0x0e, 0xa0, 0xc7, 0xc4, 0x71, 0x8c, 0x2a, 0x39, 0x60, 0x4d, 0x9b, 0x2c, - 0xbf, 0xc5, 0xcb, 0x98, 0xd2, 0x44, 0xbb, 0x38, 0xfa, 0x07, 0x29, 0x49, 0xd6, 0x17, 0x04, 0xcd, - 0xfd, 0x80, 0xe4, 0x61, 0xd3, 0x26, 0xe9, 0x7f, 0x91, 0xc0, 0x78, 0x50, 0x2d, 0x42, 0x30, 0x6a, - 0x61, 0x93, 0xf8, 0xd5, 0xa2, 0x2e, 0xbe, 0xe1, 0x05, 0x30, 0x8e, 0x4d, 0xea, 0x59, 0x6c, 0x39, - 0x25, 0xd2, 0x7f, 0x30, 0x82, 0x26, 0x48, 0xd1, 0x23, 0x51, 0x94, 0xcd, 0x6a, 0xc5, 0x57, 0xb5, - 0x3e, 0xbf, 0x4d, 0x88, 0x2d, 0xdc, 0x3b, 0xdd, 0x2e, 0x5e, 0xd4, 0x96, 0xc2, 0x61, 0xdc, 0xd8, - 0x14, 0x3d, 0xca, 0xac, 0x82, 0xc9, 0x70, 0x11, 0x4e, 0x81, 0xb1, 0xdb, 0xc5, 0x4f, 0x1e, 0xec, - 0xcc, 0x8f, 0xc0, 0x49, 0x30, 0xfa, 0x50, 0xff, 0x7c, 0x67, 0x5e, 0x2a, 0x5c, 0x6c, 0x17, 0xcf, - 0x6b, 0x10, 0xce, 0x9f, 0xa2, 0x0c, 0x3d, 0xca, 0x14, 0x50, 0x86, 0xcf, 0x67, 0x50, 0x2b, 0x6d, - 0x80, 0x99, 0x58, 0x8e, 0x80, 0xf3, 0x40, 0x3e, 0x22, 0xcd, 0xc0, 0x48, 0xfe, 0x09, 0x4b, 0x60, - 0xcc, 0x0f, 0x54, 0xa9, 0x57, 0x28, 0x60, 0x7c, 0xd6, 0x42, 0xea, 0xa6, 0x94, 0xde, 0x06, 0x17, - 0xfa, 0xa7, 0x89, 0x3e, 0x3a, 0xcf, 0x47, 0x75, 0x4e, 0x45, 0xa5, 0xfc, 0x6a, 0x28, 0x25, 0x19, - 0xf2, 0xfb, 0x48, 0xd9, 0x8b, 0x4a, 0x79, 0x9d, 0xa2, 0xbb, 0xab, 0xbf, 0xf0, 0xb3, 0x54, 0xbb, - 0xf8, 0xbb, 0x29, 0xf0, 0x9b, 0x52, 0x76, 0xb1, 0x88, 0xca, 0x06, 0x43, 0xb4, 0x86, 0xba, 0x7d, - 0xa2, 0xb6, 0xbb, 0x6b, 0xb1, 0x30, 0x7d, 0x34, 0x51, 0x85, 0x9a, 0x76, 0xc3, 0xa8, 0x88, 0x5b, - 0x15, 0x74, 0x4f, 0x88, 0x3b, 0x1e, 0x62, 0x14, 0x55, 0xb8, 0x2b, 0x22, 0x13, 0x5b, 0x4d, 0x54, - 0x23, 0x98, 0x79, 0x0e, 0x71, 0xb9, 0xac, 0xfd, 0x30, 0x8f, 0x7c, 0x25, 0x89, 0xd6, 0xe1, 0x2b, - 0x29, 0x5a, 0x78, 0x7f, 0x25, 0xc5, 0x2a, 0xf5, 0xec, 0x23, 0x70, 0xed, 0xb6, 0x61, 0x55, 0x11, - 0xf5, 0x18, 0x32, 0xa9, 0x43, 0x10, 0x2e, 0xf3, 0xcf, 0x9e, 0x46, 0x2a, 0x5f, 0x67, 0xcc, 0x76, - 0x0b, 0xaa, 0x7a, 0x68, 0xb0, 0xba, 0x57, 0xce, 0x57, 0xa8, 0xa9, 0xf2, 0xcd, 0xc8, 0x91, 0x0a, - 0x75, 0x9b, 0x2e, 0x23, 0xc1, 0x30, 0xd8, 0x1b, 0x6d, 0x13, 0x6a, 0xa7, 0x28, 0xc3, 0xf5, 0x73, - 0x67, 0x59, 0xab, 0xd4, 0x36, 0xde, 0x5d, 0x27, 0xeb, 0xb9, 0xcd, 0xf2, 0xe6, 0x66, 0x6e, 0xf3, - 0xe6, 0x46, 0x35, 0x87, 0xd7, 0xdf, 0xb9, 0x95, 0x7b, 0x67, 0xb3, 0x8a, 0xcb, 0xd5, 0xda, 0x7b, - 0xe4, 0xe6, 0xfa, 0x66, 0x06, 0xb5, 0x4a, 0x33, 0x61, 0x4d, 0x24, 0xc0, 0x65, 0xfe, 0x77, 0x12, - 0x2c, 0x27, 0x91, 0x84, 0x41, 0x06, 0xde, 0x02, 0x97, 0x44, 0xd5, 0xd9, 0x09, 0x7a, 0xd1, 0x6e, - 0x46, 0x42, 0xb2, 0x92, 0xd2, 0x2f, 0x70, 0x82, 0x90, 0xe1, 0x76, 0xb7, 0x5d, 0x79, 0x1f, 0xa4, - 0xe3, 0xac, 0xb1, 0xe6, 0x85, 0x37, 0x58, 0x92, 0x7e, 0x31, 0xca, 0xbb, 0x1d, 0x69, 0x64, 0x7a, - 0xf4, 0x46, 0x6b, 0x43, 0x19, 0xc9, 0x8a, 0x1c, 0xd7, 0xbb, 0xdb, 0x2d, 0x13, 0x7b, 0xf4, 0xc6, - 0x1a, 0x9e, 0x51, 0x24, 0x2b, 0xa3, 0x71, 0xbd, 0x9f, 0x47, 0x6a, 0xcc, 0x7e, 0x7a, 0x3b, 0x65, - 0xeb, 0x18, 0x92, 0x95, 0xb1, 0x1e, 0xbd, 0x61, 0x05, 0xfb, 0x3d, 0x70, 0x39, 0xb1, 0x55, 0xb1, - 0xc2, 0x78, 0x1c, 0xc9, 0xca, 0xb8, 0xbe, 0x1c, 0xdb, 0xac, 0x68, 0x8d, 0xdc, 0x9f, 0x3d, 0xd2, - 0x86, 0xc9, 0xca, 0x44, 0x1f, 0xf6, 0x50, 0xfb, 0x7b, 0x60, 0x39, 0xce, 0x1e, 0x69, 0xac, 0x26, - 0x91, 0xac, 0x4c, 0xea, 0x4b, 0x51, 0xde, 0x52, 0xa7, 0xc9, 0xea, 0xd9, 0xae, 0x58, 0xa9, 0x39, - 0x25, 0x4a, 0xeb, 0xd8, 0x76, 0xc5, 0xcb, 0xeb, 0xc4, 0x76, 0x45, 0x9b, 0x31, 0x80, 0x64, 0xe5, - 0x5c, 0x7c, 0xbb, 0x4a, 0xdd, 0xc6, 0xac, 0xef, 0x31, 0x75, 0xcc, 0x9d, 0x46, 0xb2, 0x32, 0xd3, - 0x7b, 0x4c, 0xa1, 0xb5, 0x24, 0x69, 0x6d, 0xa4, 0x50, 0x3b, 0xf7, 0x0a, 0x85, 0x5a, 0x6c, 0x6f, - 0xba, 0xc5, 0xda, 0x87, 0x60, 0x25, 0xb1, 0x37, 0xf1, 0x43, 0x99, 0x41, 0xb2, 0x32, 0xa7, 0x5f, - 0x8a, 0xed, 0x4e, 0xac, 0x3f, 0x1a, 0x20, 0xa0, 0xe3, 0x14, 0xb3, 0x48, 0x56, 0xe6, 0xfb, 0x09, - 0x18, 0xe8, 0xcc, 0xb1, 0x3e, 0x6a, 0x0e, 0xc9, 0xca, 0x42, 0xe2, 0x74, 0x22, 0xbb, 0xd4, 0x97, - 0x39, 0xd2, 0xa9, 0xc9, 0x0a, 0xec, 0x65, 0x0e, 0x34, 0x17, 0xea, 0xed, 0x22, 0xd1, 0x2a, 0x10, - 0x9f, 0xa2, 0xcc, 0x20, 0xc7, 0xca, 0x14, 0xd0, 0xf7, 0x99, 0xe3, 0x91, 0x1b, 0xc8, 0xff, 0x7f, - 0x0d, 0x37, 0xdc, 0x60, 0xf0, 0xe4, 0x46, 0x92, 0x2d, 0x82, 0x9b, 0xf3, 0xad, 0xdf, 0x40, 0xda, - 0x0d, 0xb4, 0xf1, 0x04, 0xb5, 0x32, 0x69, 0x30, 0x5a, 0xa2, 0xd5, 0x66, 0xbf, 0xcc, 0x9d, 0xf9, - 0x12, 0xcc, 0x05, 0xed, 0xeb, 0x2f, 0x1a, 0xac, 0x2e, 0xc8, 0x66, 0x41, 0x2a, 0x7c, 0x0c, 0xd2, - 0x53, 0x06, 0x0f, 0x51, 0xa3, 0x55, 0xcc, 0x70, 0x90, 0x3d, 0xde, 0x3a, 0xf3, 0xdc, 0xb9, 0x10, - 0x5d, 0xb0, 0x64, 0x7e, 0x2a, 0x81, 0xb9, 0xcf, 0xed, 0x2a, 0x66, 0xe4, 0x91, 0xa6, 0x93, 0x1f, - 0x7a, 0xc4, 0x65, 0x70, 0x0b, 0xc8, 0xb8, 0xec, 0x83, 0x98, 0xd6, 0xd6, 0x87, 0xce, 0x45, 0x3a, - 0xe7, 0x86, 0xef, 0x83, 0x69, 0x4f, 0xc8, 0x15, 0xaf, 0x86, 0x01, 0xb4, 0xde, 0x26, 0xe4, 0xb6, - 0x41, 0x1a, 0xd5, 0x4f, 0xb1, 0x7b, 0xa4, 0x03, 0x9f, 0x9c, 0x7f, 0x67, 0x11, 0x98, 0x8e, 0xf8, - 0x26, 0x2f, 0x0f, 0x1e, 0xef, 0xe8, 0xf7, 0xe7, 0x47, 0xe0, 0x04, 0x90, 0xef, 0xef, 0xed, 0xcc, - 0x4b, 0xda, 0xcf, 0xae, 0x80, 0x8b, 0x49, 0xc5, 0x0f, 0x88, 0x73, 0x6c, 0x54, 0x08, 0xfc, 0x77, - 0x19, 0x8c, 0x6f, 0x39, 0x7c, 0xcf, 0xe1, 0xf0, 0xe8, 0xd3, 0xc3, 0xb3, 0x64, 0xfe, 0x27, 0xf5, - 0xeb, 0xff, 0xf8, 0x6f, 0x3f, 0x4d, 0x7d, 0x9d, 0xca, 0xfc, 0x67, 0x4a, 0x3d, 0x5e, 0x0f, 0x5f, - 0x68, 0xfb, 0xbd, 0xcf, 0xaa, 0xa7, 0x91, 0xf4, 0xd1, 0x52, 0x4f, 0xa3, 0x19, 0xa1, 0xa5, 0x9e, - 0x46, 0xbc, 0xb3, 0xa5, 0xba, 0xc4, 0xc6, 0x0e, 0x66, 0xd4, 0x51, 0x4f, 0xbd, 0xd8, 0xc2, 0x69, - 0xc4, 0x93, 0x5a, 0xea, 0x69, 0xec, 0x42, 0x85, 0xe3, 0xc8, 0x7a, 0xd7, 0x5d, 0x5b, 0xea, 0x69, - 0x34, 0xb6, 0x7d, 0xcf, 0x65, 0x8e, 0xed, 0x90, 0x9a, 0x71, 0xa2, 0x66, 0x5b, 0xbe, 0x92, 0x08, - 0x9b, 0x9b, 0x94, 0xe3, 0x26, 0x15, 0xb9, 0x09, 0x86, 0x38, 0xc8, 0x41, 0x3d, 0x6a, 0x4b, 0x3d, - 0xed, 0xc6, 0xaa, 0x96, 0x7a, 0x9a, 0x78, 0xd3, 0xe1, 0x9c, 0x7d, 0x1f, 0x7b, 0x62, 0x7c, 0x91, - 0xda, 0xbd, 0x05, 0xff, 0x48, 0x02, 0xc0, 0x3f, 0x70, 0x71, 0x3d, 0xbe, 0x99, 0x43, 0xcf, 0x8a, - 0x33, 0xbf, 0x96, 0x59, 0x3d, 0xe3, 0xc4, 0x0b, 0x52, 0x16, 0xfe, 0x0a, 0x18, 0xff, 0x84, 0xd2, - 0x23, 0xcf, 0x86, 0x73, 0x79, 0xd7, 0x2b, 0x6b, 0xf9, 0xdd, 0x6a, 0x70, 0xa7, 0x5f, 0x45, 0x73, - 0x5e, 0x68, 0x56, 0xe0, 0x77, 0xce, 0xf4, 0x35, 0x5e, 0x17, 0xb5, 0xe0, 0x6f, 0x49, 0x60, 0xdc, - 0xbf, 0xe3, 0xaf, 0xb2, 0x35, 0x03, 0x9e, 0x8a, 0x32, 0xeb, 0x02, 0xc5, 0x77, 0xd3, 0x2f, 0x89, - 0x82, 0x6f, 0xc3, 0x7f, 0x49, 0x60, 0x32, 0x0c, 0x36, 0x70, 0xed, 0x4c, 0x28, 0x89, 0xb8, 0x34, - 0x10, 0xc9, 0x1f, 0x4a, 0x02, 0xca, 0xef, 0x49, 0xe9, 0xac, 0x7a, 0xac, 0xbd, 0x18, 0x0b, 0x2e, - 0x93, 0xbc, 0x8f, 0x87, 0x47, 0xa9, 0xc7, 0xeb, 0xda, 0xd0, 0x2c, 0x6b, 0xda, 0x77, 0xd5, 0x63, - 0x0d, 0xbf, 0x2c, 0x8f, 0x94, 0x85, 0x7f, 0x22, 0x81, 0xf1, 0x6d, 0xd2, 0x20, 0x8c, 0xf4, 0x1e, - 0xff, 0x20, 0x9b, 0x9c, 0x76, 0xb1, 0x58, 0xbe, 0x0e, 0x66, 0x01, 0x28, 0xda, 0xc6, 0x3d, 0xd2, - 0x2c, 0x7a, 0xac, 0x0e, 0x47, 0xc0, 0x45, 0x30, 0x7e, 0x9f, 0x7f, 0x6a, 0x70, 0x06, 0x8c, 0x3a, - 0x04, 0x57, 0xc1, 0xd8, 0x33, 0xc7, 0x60, 0xe4, 0xe9, 0x79, 0x30, 0x7b, 0x92, 0x33, 0x1c, 0x87, - 0x83, 0x70, 0x8d, 0x72, 0x83, 0xc0, 0x14, 0xf2, 0xb7, 0x45, 0xc9, 0xbe, 0xac, 0x9f, 0xfc, 0xab, - 0x04, 0x26, 0xef, 0x10, 0xf6, 0x99, 0x47, 0x9c, 0xe6, 0xff, 0xa7, 0xa7, 0xfc, 0x44, 0x6a, 0x17, - 0x1f, 0x66, 0xf6, 0xc0, 0x4a, 0xbf, 0x0e, 0xa0, 0xa3, 0x70, 0xc8, 0xca, 0xff, 0x0b, 0xa9, 0x3c, - 0x22, 0xec, 0xcb, 0xc3, 0x1b, 0x67, 0xd9, 0xf7, 0x43, 0xae, 0x20, 0xb4, 0xf2, 0x27, 0x63, 0x60, - 0xfe, 0x0e, 0x61, 0x61, 0xc2, 0xf7, 0x95, 0xdf, 0x1a, 0x3e, 0xcb, 0x05, 0xfc, 0xe9, 0x57, 0x67, - 0xcd, 0xfc, 0x68, 0x54, 0x58, 0xf0, 0xdf, 0x32, 0xfc, 0x5a, 0x3e, 0xc3, 0x86, 0x4e, 0x15, 0x11, - 0xc4, 0xcb, 0x7e, 0xdd, 0x48, 0x2b, 0xb9, 0x96, 0x48, 0x2e, 0x03, 0xdb, 0x89, 0x9e, 0x35, 0xef, - 0x45, 0x8b, 0xf1, 0xa0, 0xff, 0x82, 0x82, 0xbf, 0xff, 0xea, 0x40, 0xde, 0x58, 0x9a, 0x1a, 0x5c, - 0x90, 0xf7, 0xf2, 0x75, 0x0b, 0xee, 0xbe, 0x86, 0x0c, 0x54, 0xd8, 0x9b, 0x85, 0x06, 0x54, 0xb9, - 0x03, 0x96, 0x07, 0xda, 0xe9, 0xbe, 0x48, 0x6b, 0x2c, 0x4b, 0xc2, 0xbf, 0x93, 0xc1, 0xe8, 0x4e, - 0xa5, 0x4e, 0xe1, 0xa0, 0x1f, 0x47, 0x5c, 0xaf, 0x9c, 0xf7, 0xfb, 0x8d, 0x30, 0x64, 0xbc, 0x34, - 0x65, 0xe6, 0x3f, 0x52, 0xed, 0xe2, 0x8f, 0x53, 0x60, 0x92, 0x54, 0xea, 0x14, 0x39, 0x76, 0x05, - 0x2e, 0x3c, 0xf0, 0x4c, 0x13, 0x3b, 0xcd, 0x02, 0xda, 0x09, 0xa6, 0xd2, 0xf3, 0xdb, 0xdd, 0x37, - 0x1a, 0x31, 0x9b, 0xd9, 0x06, 0x30, 0x7e, 0x51, 0x05, 0xbe, 0x21, 0xaf, 0xe7, 0xdd, 0x47, 0x40, - 0x7e, 0x67, 0x6d, 0x03, 0xde, 0x07, 0xef, 0xea, 0x84, 0x79, 0x8e, 0x45, 0xaa, 0xe8, 0x59, 0x9d, - 0x58, 0x88, 0xd5, 0x09, 0x72, 0x88, 0x4b, 0x3d, 0xa7, 0x42, 0x90, 0xe1, 0x22, 0x46, 0x4c, 0x9b, - 0x3a, 0xd8, 0x31, 0x1a, 0x4d, 0xe4, 0x59, 0xf8, 0x18, 0x1b, 0x0d, 0x5c, 0x6e, 0x90, 0x7c, 0x76, - 0x09, 0x4c, 0x9e, 0xe4, 0x2c, 0xcf, 0x2c, 0x13, 0x07, 0x4e, 0x2d, 0x8c, 0x88, 0xff, 0x7e, 0xe9, - 0xa3, 0xbb, 0xef, 0x03, 0x79, 0x73, 0x6d, 0x13, 0x6e, 0x82, 0xec, 0x0b, 0xe4, 0x56, 0x29, 0x71, - 0x91, 0x45, 0x19, 0x22, 0x27, 0x86, 0xcb, 0xf2, 0x70, 0x1c, 0x88, 0x77, 0x33, 0x71, 0xdb, 0x9e, - 0x9c, 0x1d, 0x2f, 0xf8, 0x7e, 0xa9, 0xa7, 0xfe, 0x09, 0x3d, 0xbe, 0x94, 0x99, 0x8f, 0xa6, 0x08, - 0xbe, 0x56, 0xf0, 0x9f, 0x59, 0x1e, 0x43, 0xd8, 0xb3, 0x04, 0xff, 0x42, 0x02, 0xe7, 0xb6, 0x09, - 0xb1, 0xc5, 0x8f, 0x49, 0x7c, 0xe2, 0x9b, 0xa9, 0x46, 0x3e, 0x14, 0xb6, 0xdd, 0xca, 0x6c, 0x9e, - 0x19, 0xeb, 0x63, 0xbf, 0x53, 0xe7, 0x79, 0x8b, 0x21, 0x92, 0x54, 0x11, 0x80, 0x3d, 0x5a, 0x32, - 0xac, 0xaa, 0x61, 0x1d, 0xba, 0xf0, 0x52, 0x4f, 0x28, 0xdf, 0x0e, 0x7e, 0xc2, 0x1f, 0x18, 0xe5, - 0x47, 0xe0, 0x23, 0x30, 0xf1, 0xd0, 0x30, 0x09, 0xf5, 0x18, 0x1c, 0x40, 0x34, 0x90, 0xf9, 0xb2, - 0x80, 0xbf, 0x04, 0x17, 0xa3, 0xfb, 0xc9, 0x02, 0x61, 0x75, 0x30, 0xbf, 0xe3, 0x38, 0xd4, 0xe1, - 0xfd, 0xcf, 0x36, 0x61, 0xd8, 0x68, 0xb8, 0x43, 0x2b, 0xb8, 0x26, 0x14, 0xbc, 0x09, 0x57, 0x62, - 0x07, 0xc6, 0xa5, 0x3e, 0x33, 0x58, 0xbd, 0x1a, 0x48, 0xfd, 0x6d, 0x09, 0xc0, 0x3b, 0x84, 0x25, - 0xfb, 0xad, 0xb3, 0x4b, 0x95, 0x04, 0xc7, 0x40, 0x18, 0x6f, 0x0b, 0x18, 0x57, 0x32, 0x97, 0xa2, - 0x30, 0x38, 0x82, 0x32, 0xad, 0x36, 0xd5, 0x53, 0x5e, 0x30, 0x88, 0xbe, 0x0c, 0xfe, 0x86, 0x04, - 0x16, 0xf6, 0xa9, 0xcb, 0xb8, 0x44, 0xc1, 0x2a, 0x80, 0xbc, 0x5c, 0x6b, 0x37, 0x50, 0xbb, 0x2a, - 0xb4, 0x5f, 0xcf, 0x5c, 0x8b, 0x6a, 0xb7, 0xa9, 0xcb, 0x38, 0x02, 0xf1, 0xf3, 0xa0, 0x0f, 0xa3, - 0xe3, 0x14, 0x7f, 0x23, 0x81, 0xc5, 0xad, 0x3a, 0xa9, 0x1c, 0x85, 0x59, 0x7a, 0x1f, 0x3b, 0xd8, - 0x74, 0xbf, 0x21, 0x9f, 0xbe, 0x23, 0xe0, 0x16, 0xe1, 0x87, 0x67, 0xf9, 0xb4, 0x2d, 0x50, 0xa9, - 0x87, 0x84, 0xf5, 0x75, 0x6f, 0xf8, 0xcf, 0x12, 0x78, 0x43, 0x98, 0xe1, 0xbf, 0x92, 0xf2, 0x9e, - 0xf2, 0x5b, 0x31, 0xe8, 0x33, 0x61, 0xd0, 0x3d, 0xb8, 0x3b, 0x84, 0x41, 0x41, 0x2f, 0x24, 0xfe, - 0x3c, 0x26, 0x61, 0x1c, 0x3d, 0x6a, 0xc1, 0xbf, 0x97, 0xc0, 0x79, 0x61, 0x1a, 0x77, 0x96, 0x6f, - 0xcd, 0xa2, 0x4c, 0xe1, 0x25, 0x2d, 0xe2, 0xce, 0x16, 0xef, 0x41, 0x5b, 0x85, 0xf8, 0x5f, 0xce, - 0xa4, 0xff, 0x5a, 0x6a, 0x17, 0xff, 0x52, 0x82, 0xb5, 0x01, 0xdd, 0x7d, 0xf4, 0x37, 0x05, 0x94, - 0xcb, 0xa1, 0x67, 0x75, 0xa3, 0x52, 0x47, 0x6e, 0x9d, 0x7a, 0x8d, 0xaa, 0x08, 0xf9, 0x65, 0x82, - 0x3c, 0x97, 0x54, 0x91, 0x61, 0x21, 0xbb, 0x81, 0x2b, 0x04, 0xd1, 0x9a, 0x48, 0x0e, 0x55, 0x5a, - 0xf1, 0x4c, 0x62, 0xf9, 0x3d, 0x23, 0xaa, 0x50, 0x93, 0x0f, 0xae, 0xa4, 0x3f, 0x03, 0xab, 0xfd, - 0xca, 0x52, 0x1e, 0xba, 0xc3, 0xf7, 0x84, 0x61, 0xdf, 0xa4, 0x9f, 0x82, 0xf3, 0x15, 0x6c, 0x92, - 0xc6, 0x16, 0x76, 0x49, 0x20, 0x83, 0x37, 0xbf, 0x50, 0x07, 0x63, 0xfe, 0xef, 0xea, 0xc3, 0x06, - 0xaf, 0x4b, 0x62, 0x97, 0x17, 0xe1, 0x42, 0x2c, 0x78, 0xf1, 0x25, 0xed, 0x07, 0x60, 0xa5, 0x68, - 0x51, 0x56, 0x27, 0x4e, 0xa0, 0x89, 0x07, 0x8c, 0x48, 0x20, 0xff, 0x20, 0x16, 0xd6, 0x87, 0x55, - 0x3c, 0x52, 0xfa, 0xf3, 0xa9, 0x76, 0xf1, 0x8f, 0xa7, 0xe0, 0xd7, 0x12, 0x58, 0x2c, 0xa2, 0x92, - 0xff, 0x2b, 0x42, 0xe4, 0xfc, 0xbf, 0x00, 0xe7, 0x0f, 0xf5, 0xfd, 0xad, 0xdc, 0x1d, 0xdf, 0x74, - 0x64, 0x3b, 0xf4, 0x29, 0xa9, 0xb0, 0x61, 0xb7, 0x2c, 0x3d, 0x6f, 0x51, 0x8b, 0x7c, 0x14, 0x98, - 0xc6, 0xa9, 0xb3, 0x3f, 0x00, 0xe7, 0x4b, 0x0f, 0xb6, 0xd1, 0x46, 0x6e, 0xab, 0x81, 0x3d, 0x97, - 0xa0, 0x4f, 0x8c, 0x0a, 0xb1, 0x5c, 0x02, 0x6f, 0x0f, 0x27, 0x59, 0x2d, 0x37, 0x68, 0x59, 0x35, - 0xb1, 0xcb, 0x88, 0xa3, 0x7e, 0xb2, 0xbb, 0xb5, 0xb3, 0xf7, 0x60, 0x27, 0xcf, 0x4e, 0x98, 0x26, - 0xaf, 0xe7, 0xd7, 0x0a, 0x08, 0x2c, 0x9d, 0xe4, 0x5c, 0x6a, 0x12, 0x61, 0x4d, 0xf7, 0x0b, 0x4e, - 0xa4, 0xc7, 0x9a, 0xb8, 0x5a, 0xc5, 0x59, 0x59, 0x4a, 0x8d, 0x6a, 0xf3, 0xd8, 0xf6, 0x7f, 0x1d, - 0x31, 0xa8, 0xa5, 0x3e, 0x75, 0xa9, 0xa5, 0x5d, 0x88, 0xce, 0x9c, 0xe4, 0x6a, 0x94, 0xe6, 0x4c, - 0xc3, 0x24, 0x85, 0x1e, 0xca, 0xc2, 0x00, 0x4a, 0x7d, 0x9f, 0xd7, 0x31, 0x1b, 0x70, 0x17, 0xdc, - 0xe9, 0xad, 0x63, 0x3c, 0x97, 0x38, 0xdd, 0x1a, 0xa6, 0x8e, 0x8f, 0x09, 0xb2, 0x89, 0x63, 0x1a, - 0xae, 0xcb, 0x5d, 0x97, 0x51, 0x84, 0x2b, 0x15, 0xe2, 0xba, 0xb1, 0x9a, 0x27, 0xaf, 0xbf, 0x46, - 0x65, 0x34, 0xa1, 0x7f, 0x0c, 0xe4, 0xcd, 0xf5, 0x9b, 0xb0, 0x08, 0x66, 0x76, 0xdf, 0x36, 0x11, - 0x46, 0x8c, 0x60, 0x9b, 0xb2, 0x3c, 0x5c, 0x03, 0xf9, 0xf4, 0x50, 0x0f, 0xc9, 0x8f, 0x7f, 0x5f, - 0x06, 0x73, 0x60, 0xaa, 0x84, 0x5d, 0xa3, 0x22, 0x9a, 0xd6, 0xd4, 0xa4, 0x04, 0xfe, 0x54, 0x8a, - 0xf5, 0xb1, 0x3f, 0x97, 0x26, 0x53, 0xe9, 0xa9, 0x2f, 0x72, 0xc5, 0xfd, 0xdd, 0xdc, 0x3d, 0xd2, - 0x44, 0xa9, 0xbb, 0x0a, 0x58, 0x39, 0xc9, 0x61, 0x13, 0x3f, 0xa7, 0x56, 0x0e, 0xdb, 0x46, 0xa0, - 0x2a, 0x87, 0x3d, 0x56, 0x67, 0x4d, 0x9b, 0xc0, 0xc9, 0xf4, 0x38, 0xe5, 0x03, 0xed, 0xee, 0x2f, - 0x83, 0x37, 0x07, 0x51, 0x52, 0xc7, 0x78, 0x4e, 0x1c, 0xf8, 0x41, 0xf6, 0x17, 0xc0, 0x1c, 0x18, - 0x15, 0x7c, 0x13, 0xe9, 0x31, 0x46, 0x8f, 0x88, 0x05, 0xae, 0x83, 0x95, 0x2e, 0x89, 0x4e, 0x5c, - 0xaf, 0xc1, 0x1e, 0xb2, 0xc6, 0xae, 0xf5, 0x80, 0x54, 0xa8, 0x55, 0x75, 0x3b, 0x15, 0xe6, 0xde, - 0x47, 0xe0, 0x9f, 0xa4, 0x4e, 0x93, 0xfd, 0xb7, 0xd2, 0xa4, 0xac, 0x8c, 0x6a, 0x57, 0x43, 0x9f, - 0x8b, 0x38, 0xa8, 0x2a, 0xf0, 0xa8, 0x1d, 0xa1, 0x85, 0xd5, 0xc1, 0x44, 0x02, 0x42, 0xe9, 0xd7, - 0x40, 0xda, 0xef, 0xd9, 0x21, 0xbc, 0xe3, 0x60, 0x8b, 0xb9, 0x88, 0x0f, 0x82, 0xb3, 0x04, 0x2b, - 0x41, 0x27, 0x0f, 0x17, 0x83, 0x45, 0x31, 0x0a, 0x57, 0xb7, 0xc0, 0x18, 0xae, 0x9a, 0x86, 0x05, - 0x0b, 0x31, 0x56, 0xab, 0x1a, 0x23, 0x13, 0xae, 0xc1, 0xc9, 0x0c, 0x97, 0xf1, 0x6a, 0xed, 0x98, - 0x20, 0xc3, 0xaa, 0x51, 0xc7, 0x14, 0xde, 0x57, 0x5e, 0x05, 0x33, 0xd1, 0x83, 0x19, 0x49, 0xbe, - 0x2e, 0x94, 0xaf, 0x0f, 0x7c, 0x5f, 0x48, 0x92, 0x3a, 0xbb, 0xe0, 0xe2, 0xa7, 0xdd, 0x68, 0x19, - 0x8d, 0x01, 0xc3, 0xde, 0xfd, 0xe7, 0x97, 0x01, 0x3c, 0xc9, 0x45, 0x67, 0xf8, 0x25, 0x81, 0x63, - 0x69, 0xb9, 0x8c, 0x9d, 0xe7, 0x0a, 0xb8, 0x98, 0x58, 0x2c, 0xe3, 0xe7, 0xb9, 0x86, 0xe1, 0x32, - 0x38, 0xa3, 0x4d, 0x83, 0xb1, 0xb4, 0x4c, 0x2d, 0x02, 0x52, 0x48, 0x7a, 0x3c, 0xd5, 0x71, 0xc7, - 0xf2, 0xb8, 0x08, 0x63, 0x1b, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xf1, 0x12, 0xd7, 0x52, 0x3a, - 0x2b, 0x00, 0x00, + // 3552 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4d, 0x70, 0x1b, 0xc9, + 0x5e, 0xf7, 0x68, 0xfc, 0xd9, 0x8e, 0xbf, 0xda, 0x71, 0xe2, 0x28, 0xde, 0x75, 0x47, 0xc9, 0xbe, + 0x9d, 0xe8, 0x45, 0x1a, 0x7b, 0xec, 0xdd, 0x4d, 0xb4, 0xbc, 0xdd, 0x95, 0x6c, 0x27, 0xeb, 0x64, + 0xd7, 0xf1, 0x4e, 0xb2, 0x61, 0xc9, 0xdb, 0x3c, 0xd3, 0x92, 0x5a, 0xd6, 0xc4, 0x9a, 0xe9, 0x79, + 0x33, 0x3d, 0x8e, 0x15, 0x23, 0x78, 0x05, 0x14, 0x14, 0xbc, 0x9b, 0x1e, 0x1f, 0x05, 0xaf, 0xe0, + 0x42, 0x71, 0xa1, 0xde, 0x89, 0x2a, 0x4e, 0x54, 0xc1, 0x05, 0x4e, 0x1c, 0xa0, 0x16, 0x8a, 0xe2, + 0xc2, 0x09, 0xce, 0x5c, 0xa0, 0xb6, 0x8a, 0x03, 0x14, 0xd5, 0x3d, 0x33, 0xd2, 0xcc, 0x48, 0x8a, + 0xa3, 0x84, 0xda, 0xdd, 0xc3, 0x66, 0xba, 0xfb, 0xff, 0xf1, 0xfb, 0x77, 0xff, 0xfb, 0xff, 0xd1, + 0x32, 0xd0, 0xc8, 0x09, 0x36, 0xed, 0x06, 0x71, 0x55, 0xdb, 0xa1, 0x8c, 0xaa, 0xc1, 0xd0, 0x2e, + 0xab, 0xf8, 0xa0, 0x6c, 0xb0, 0x03, 0x5a, 0x3b, 0x20, 0xc7, 0xc4, 0x69, 0xb2, 0xba, 0x61, 0x1d, + 0xe6, 0x05, 0x0d, 0x5c, 0x3d, 0x74, 0xec, 0x4a, 0xfe, 0x10, 0x33, 0xf2, 0x0c, 0x37, 0xf3, 0xa1, + 0x80, 0x7c, 0x87, 0x35, 0xbd, 0x72, 0x48, 0xe9, 0x61, 0x83, 0xa8, 0xd8, 0x36, 0x54, 0x6c, 0x59, + 0x94, 0x61, 0x66, 0x50, 0xcb, 0xf5, 0xd9, 0xd3, 0x28, 0x58, 0x15, 0xa3, 0xb2, 0x57, 0x53, 0x6b, + 0x06, 0x69, 0x54, 0x0f, 0x4c, 0xec, 0x1e, 0x05, 0x14, 0x97, 0x93, 0x14, 0xc4, 0xb4, 0x59, 0x33, + 0x58, 0x7c, 0x33, 0xb9, 0x58, 0xf5, 0x1c, 0x21, 0x3f, 0x58, 0x7f, 0x3b, 0x61, 0x91, 0x8d, 0x59, + 0x9d, 0x58, 0x9e, 0x29, 0x3e, 0x0e, 0xf8, 0x57, 0x88, 0x23, 0x41, 0xe8, 0x7a, 0x65, 0xd5, 0x24, + 0xae, 0x8b, 0x0f, 0x49, 0x40, 0x71, 0xa5, 0x97, 0x42, 0x4b, 0x90, 0xac, 0x26, 0xd1, 0x30, 0xc3, + 0x24, 0x2e, 0xc3, 0xa6, 0x1d, 0x10, 0xdc, 0x10, 0xff, 0x54, 0x72, 0x87, 0xc4, 0xca, 0xb9, 0xcf, + 0xf0, 0xe1, 0x21, 0x71, 0x54, 0x6a, 0x8b, 0xfd, 0xe8, 0xdd, 0x9b, 0xcc, 0x3f, 0x5c, 0x06, 0xf3, + 0xc5, 0x92, 0xc1, 0xee, 0xd7, 0x76, 0x3a, 0xbb, 0x0e, 0x9f, 0x80, 0x19, 0xd7, 0xb0, 0x0e, 0x1b, + 0xe4, 0xc0, 0x22, 0x2e, 0x23, 0xd5, 0xe5, 0x4b, 0x48, 0x52, 0xa6, 0xb5, 0x9b, 0xf9, 0x33, 0xce, + 0x21, 0x9f, 0x94, 0x94, 0xdf, 0x13, 0xfc, 0xfa, 0x39, 0x5f, 0x9c, 0x3f, 0x82, 0x75, 0x30, 0xea, + 0x79, 0x46, 0x75, 0x59, 0x42, 0x92, 0x32, 0x55, 0x7a, 0xd8, 0x2e, 0x7e, 0xf6, 0x23, 0x49, 0xfa, + 0x6d, 0xe9, 0xde, 0xf7, 0x71, 0xae, 0x56, 0xcc, 0xdd, 0x5e, 0xcb, 0xdd, 0x7a, 0x72, 0x7a, 0xb3, + 0x95, 0x8b, 0x0e, 0x37, 0x87, 0x19, 0xae, 0x6b, 0x2d, 0x5d, 0x68, 0x80, 0xfb, 0x60, 0x3c, 0xb0, + 0x20, 0x85, 0xe4, 0xd7, 0xb2, 0x20, 0x90, 0x03, 0xef, 0x82, 0xe9, 0x5a, 0x83, 0x62, 0x76, 0x70, + 0x8c, 0x1b, 0x1e, 0x59, 0x96, 0x91, 0xa4, 0xa4, 0x4a, 0xd7, 0xdb, 0xc5, 0xef, 0x68, 0x0b, 0xb7, + 0xf9, 0x3c, 0x12, 0xf3, 0x48, 0x78, 0x58, 0x41, 0x5e, 0xcb, 0x6b, 0x5f, 0x49, 0x51, 0x06, 0x1d, + 0x88, 0xc1, 0x23, 0xfe, 0x0d, 0xaf, 0x80, 0x73, 0x55, 0xea, 0x95, 0x1b, 0x24, 0x10, 0x36, 0x8a, + 0x24, 0x45, 0xd2, 0xa7, 0xfd, 0x39, 0x9f, 0x64, 0x15, 0x4c, 0x1b, 0x16, 0x7b, 0x77, 0x33, 0xa0, + 0x18, 0x43, 0x92, 0x22, 0xeb, 0x40, 0x4c, 0x75, 0x64, 0x78, 0x51, 0x8a, 0x71, 0x24, 0x29, 0xa3, + 0xfa, 0xb4, 0x17, 0x21, 0xf1, 0x65, 0x6c, 0x68, 0x01, 0xc5, 0x04, 0x92, 0x94, 0x31, 0x21, 0x63, + 0x43, 0xf3, 0x09, 0xae, 0x82, 0x99, 0x9a, 0x71, 0x42, 0xaa, 0x1d, 0x21, 0x93, 0x48, 0x52, 0xc6, + 0xf5, 0x73, 0xc1, 0x64, 0x9c, 0xa8, 0x23, 0x67, 0x0a, 0x49, 0xca, 0x44, 0x40, 0x14, 0x4a, 0x7a, + 0x03, 0x80, 0x32, 0xa5, 0x8d, 0x80, 0x02, 0x20, 0x49, 0x99, 0xd4, 0xa7, 0xf8, 0x4c, 0x07, 0xac, + 0xcb, 0x1c, 0xc3, 0x3a, 0x0c, 0x08, 0xa6, 0xb9, 0x03, 0xe8, 0xd3, 0xfe, 0x5c, 0x07, 0x6c, 0xb9, + 0xc9, 0x88, 0x1b, 0x50, 0xbc, 0x81, 0x24, 0xe5, 0x9c, 0x0e, 0xc4, 0x54, 0xcc, 0xe0, 0x0e, 0x8c, + 0x19, 0x24, 0x29, 0x33, 0xbe, 0xc1, 0x21, 0x8a, 0x7b, 0x00, 0xf0, 0x5b, 0x17, 0x10, 0xcc, 0x22, + 0x49, 0x99, 0xd5, 0x6e, 0x9c, 0x79, 0xf2, 0x7b, 0x9e, 0x49, 0x1c, 0xa3, 0xb2, 0x63, 0x79, 0xa6, + 0x3e, 0xc5, 0xf9, 0x7d, 0x61, 0xfb, 0x60, 0xae, 0x73, 0x8f, 0x03, 0x89, 0x6f, 0x0a, 0x89, 0xca, + 0x00, 0x89, 0xe1, 0xf5, 0xcf, 0xef, 0x63, 0x56, 0x17, 0xd2, 0x66, 0xec, 0xe0, 0xcb, 0x97, 0xe8, + 0x82, 0x0b, 0xbe, 0x33, 0x1d, 0x24, 0x05, 0xaf, 0x0a, 0xc1, 0x1f, 0x9c, 0x25, 0xf8, 0x53, 0x3f, + 0x20, 0x84, 0xf2, 0x03, 0x17, 0xed, 0xa8, 0x5b, 0xb4, 0x62, 0x63, 0x5f, 0xe9, 0x5b, 0x60, 0xd6, + 0x8d, 0x9f, 0xdf, 0x1c, 0x92, 0x94, 0x39, 0x7d, 0xc6, 0x8d, 0x1d, 0x60, 0x87, 0xac, 0xe3, 0x0b, + 0xf3, 0x48, 0x52, 0xe6, 0x43, 0xb2, 0x88, 0xd7, 0xb9, 0xd1, 0x43, 0x58, 0x40, 0x92, 0xb2, 0xa0, + 0x4f, 0xbb, 0x91, 0x43, 0x08, 0x48, 0x3a, 0x72, 0x20, 0x92, 0x14, 0xe8, 0x93, 0x84, 0x52, 0x34, + 0xb0, 0xe4, 0x10, 0x9b, 0x60, 0xbe, 0x15, 0x31, 0xbf, 0x58, 0x44, 0xb2, 0x32, 0xa5, 0x2f, 0x86, + 0x8b, 0x0f, 0x22, 0xfe, 0x71, 0x0b, 0x4c, 0x53, 0x8b, 0xf0, 0x24, 0xc1, 0x23, 0xf4, 0xf2, 0x79, + 0x11, 0x98, 0x2e, 0xe4, 0xfd, 0xa0, 0x98, 0x0f, 0x83, 0x62, 0x7e, 0x87, 0xaf, 0x7e, 0x3c, 0xa2, + 0x03, 0x41, 0x2c, 0x46, 0xf0, 0x2a, 0x38, 0xe7, 0xb3, 0xfa, 0xba, 0x96, 0x97, 0xb8, 0xf7, 0x7d, + 0x3c, 0xa2, 0xfb, 0x02, 0x7d, 0x25, 0xf0, 0x4b, 0x30, 0x65, 0x62, 0x3b, 0xc0, 0x71, 0x41, 0x04, + 0x8d, 0x0f, 0x87, 0x0f, 0x1a, 0x9f, 0x62, 0x5b, 0xc0, 0xdd, 0xb1, 0x98, 0xd3, 0xd4, 0x27, 0xcd, + 0x60, 0x08, 0x4f, 0xc0, 0xa2, 0x89, 0x6d, 0x3b, 0x69, 0xef, 0x45, 0xa1, 0xe7, 0xe3, 0x57, 0xd2, + 0x63, 0xc7, 0xf6, 0xc7, 0x57, 0xb8, 0x60, 0x26, 0xe7, 0x23, 0x9a, 0x03, 0xdf, 0xf3, 0x35, 0x2f, + 0xbf, 0x9e, 0x66, 0xdf, 0xf3, 0x7a, 0x35, 0x47, 0xe6, 0x61, 0x01, 0x2c, 0x5b, 0xd4, 0xda, 0xa2, + 0xd6, 0x31, 0xb1, 0x78, 0xe6, 0xc1, 0x8d, 0x3d, 0x6c, 0xfa, 0xe1, 0x6d, 0x39, 0x2d, 0x02, 0xc0, + 0xc0, 0x75, 0xb8, 0x05, 0xe6, 0x3a, 0xe9, 0x2d, 0x40, 0x7c, 0x59, 0x9c, 0x78, 0xba, 0xe7, 0xc4, + 0x1f, 0x86, 0x74, 0xfa, 0x6c, 0x87, 0xc5, 0x17, 0xf2, 0x25, 0xe8, 0x78, 0x52, 0xf4, 0xb2, 0xad, + 0x20, 0x79, 0xe8, 0xb8, 0xb0, 0x10, 0x0a, 0xea, 0x5e, 0xac, 0x9f, 0x49, 0x60, 0x39, 0x2e, 0xbe, + 0x9b, 0x64, 0x97, 0xd1, 0xf0, 0x3a, 0x4a, 0xdb, 0xed, 0x62, 0x31, 0x7b, 0x59, 0x0f, 0x44, 0x22, + 0xcb, 0x5f, 0x42, 0x5c, 0x34, 0x62, 0x06, 0x6b, 0x10, 0x2d, 0xd3, 0x7f, 0xb1, 0x4a, 0xdc, 0x8a, + 0x63, 0x88, 0x4c, 0x9f, 0xd7, 0x2f, 0x44, 0x91, 0x16, 0x3b, 0x88, 0xe0, 0xef, 0x48, 0x60, 0xa9, + 0xbb, 0x09, 0x51, 0xac, 0x57, 0x86, 0x8f, 0x93, 0x25, 0xad, 0x5d, 0x54, 0xb3, 0x70, 0xaf, 0x17, + 0xe2, 0xa5, 0xbd, 0x81, 0xc8, 0x16, 0x3b, 0xb1, 0x35, 0x02, 0xeb, 0x18, 0xa4, 0x93, 0xa1, 0x20, + 0x02, 0x2d, 0xc3, 0xe3, 0x41, 0xe9, 0x66, 0xbb, 0xf8, 0x4e, 0x76, 0xa9, 0x63, 0xbb, 0x4f, 0x16, + 0xe8, 0x5b, 0x49, 0x4e, 0xc7, 0x54, 0x2e, 0xc7, 0x23, 0x49, 0x44, 0xef, 0x5f, 0x49, 0x11, 0xc5, + 0xc1, 0xcd, 0x88, 0x28, 0xbe, 0xfa, 0x7a, 0x55, 0x43, 0xe9, 0x76, 0xbb, 0xb8, 0x95, 0xed, 0x62, + 0xf3, 0x15, 0x20, 0x5a, 0x7e, 0x4a, 0x2a, 0x2c, 0x40, 0x7e, 0x75, 0xc0, 0x6a, 0x7f, 0x03, 0x7c, + 0xb9, 0x11, 0x03, 0x7e, 0x2a, 0x81, 0x85, 0x5e, 0xdc, 0xd7, 0x5e, 0xaf, 0x5e, 0x2b, 0x6d, 0xb6, + 0x8b, 0xeb, 0xd9, 0xc5, 0xbd, 0x3e, 0x70, 0xd3, 0x7b, 0x83, 0x51, 0xce, 0x5b, 0x49, 0x74, 0xef, + 0x81, 0x45, 0x3f, 0x07, 0xd0, 0x63, 0xe2, 0x38, 0x46, 0x95, 0x1c, 0xb0, 0xa6, 0x4d, 0x96, 0xdf, + 0xe2, 0x65, 0x4c, 0x69, 0xa2, 0x5d, 0x1c, 0xfd, 0xc3, 0x94, 0x24, 0xeb, 0x0b, 0x82, 0xe6, 0x7e, + 0x40, 0xf2, 0xb0, 0x69, 0x93, 0xf4, 0xbf, 0x4a, 0x60, 0x3c, 0xa8, 0x16, 0x21, 0x18, 0xb5, 0xb0, + 0x49, 0xfc, 0x6a, 0x51, 0x17, 0xdf, 0xf0, 0x02, 0x18, 0xc7, 0x26, 0xf5, 0x2c, 0xb6, 0x9c, 0x12, + 0xe9, 0x3f, 0x18, 0x41, 0x13, 0xa4, 0xe8, 0x91, 0x28, 0xca, 0x66, 0xb5, 0xe2, 0xab, 0x5a, 0x9f, + 0xdf, 0x26, 0xc4, 0x16, 0xee, 0x9d, 0x6e, 0x17, 0x2f, 0x6a, 0x4b, 0xe1, 0x30, 0x6e, 0x6c, 0x8a, + 0x1e, 0x65, 0x56, 0xc1, 0x64, 0xb8, 0x08, 0xa7, 0xc0, 0xd8, 0xed, 0xe2, 0x27, 0x0f, 0x76, 0xe6, + 0x47, 0xe0, 0x24, 0x18, 0x7d, 0xa8, 0x7f, 0xbe, 0x33, 0x2f, 0x15, 0x2e, 0xb6, 0x8b, 0xe7, 0x35, + 0x08, 0xe7, 0x4f, 0x51, 0x86, 0x1e, 0x65, 0x0a, 0x28, 0xc3, 0xe7, 0x33, 0xa8, 0x95, 0x36, 0xc0, + 0x4c, 0x2c, 0x47, 0xc0, 0x79, 0x20, 0x1f, 0x91, 0x66, 0x60, 0x24, 0xff, 0x84, 0x25, 0x30, 0xe6, + 0x07, 0xaa, 0xd4, 0x2b, 0x14, 0x30, 0x3e, 0x6b, 0x21, 0x75, 0x53, 0x4a, 0x6f, 0x83, 0x0b, 0xfd, + 0xd3, 0x44, 0x1f, 0x9d, 0xe7, 0xa3, 0x3a, 0xa7, 0xa2, 0x52, 0x7e, 0x39, 0x94, 0x92, 0x0c, 0xf9, + 0x7d, 0xa4, 0xec, 0x45, 0xa5, 0xbc, 0x4e, 0xd1, 0xdd, 0xd5, 0x5f, 0xf8, 0x83, 0x54, 0xbb, 0xf8, + 0xbb, 0x29, 0xf0, 0xeb, 0x52, 0x76, 0xb1, 0x88, 0xca, 0x06, 0x43, 0xb4, 0x86, 0xba, 0x7d, 0xa2, + 0xb6, 0xbb, 0x6b, 0xb1, 0x30, 0x7d, 0x34, 0x51, 0x85, 0x9a, 0x76, 0xc3, 0xa8, 0x88, 0x5b, 0x15, + 0x74, 0x4f, 0x88, 0x3b, 0x1e, 0x62, 0x14, 0x55, 0xb8, 0x2b, 0x22, 0x13, 0x5b, 0x4d, 0x54, 0x23, + 0x98, 0x79, 0x0e, 0x71, 0xb9, 0xac, 0xfd, 0x30, 0x8f, 0x7c, 0x25, 0x89, 0xd6, 0xe1, 0x2b, 0x29, + 0x5a, 0x78, 0x7f, 0x25, 0xc5, 0x2a, 0xf5, 0xec, 0x23, 0x70, 0xed, 0xb6, 0x61, 0x55, 0x11, 0xf5, + 0x18, 0x32, 0xa9, 0x43, 0x10, 0x2e, 0xf3, 0xcf, 0x9e, 0x46, 0x2a, 0x5f, 0x67, 0xcc, 0x76, 0x0b, + 0xaa, 0x7a, 0x68, 0xb0, 0xba, 0x57, 0xce, 0x57, 0xa8, 0xa9, 0xf2, 0xcd, 0xc8, 0x91, 0x0a, 0x75, + 0x9b, 0x2e, 0x23, 0xc1, 0x30, 0xd8, 0x1b, 0x6d, 0x13, 0x6a, 0xa7, 0x28, 0xc3, 0xf5, 0x73, 0x67, + 0x59, 0xab, 0xd4, 0x36, 0xde, 0x5d, 0x27, 0xeb, 0xb9, 0xcd, 0xf2, 0xe6, 0x66, 0x6e, 0xf3, 0xe6, + 0x46, 0x35, 0x87, 0xd7, 0xdf, 0xb9, 0x95, 0x7b, 0x67, 0xb3, 0x8a, 0xcb, 0xd5, 0xda, 0x7b, 0xe4, + 0xe6, 0xfa, 0x66, 0x06, 0xb5, 0x4a, 0x33, 0x61, 0x4d, 0x24, 0xc0, 0x65, 0xfe, 0x77, 0x12, 0x2c, + 0x27, 0x91, 0x84, 0x41, 0x06, 0xde, 0x02, 0x97, 0x44, 0xd5, 0xd9, 0x09, 0x7a, 0xd1, 0x6e, 0x46, + 0x42, 0xb2, 0x92, 0xd2, 0x2f, 0x70, 0x82, 0x90, 0xe1, 0x76, 0xb7, 0x5d, 0x79, 0x1f, 0xa4, 0xe3, + 0xac, 0xb1, 0xe6, 0x85, 0x37, 0x58, 0x92, 0x7e, 0x31, 0xca, 0xbb, 0x1d, 0x69, 0x64, 0x7a, 0xf4, + 0x46, 0x6b, 0x43, 0x19, 0xc9, 0x8a, 0x1c, 0xd7, 0xbb, 0xdb, 0x2d, 0x13, 0x7b, 0xf4, 0xc6, 0x1a, + 0x9e, 0x51, 0x24, 0x2b, 0xa3, 0x71, 0xbd, 0x9f, 0x47, 0x6a, 0xcc, 0x7e, 0x7a, 0x3b, 0x65, 0xeb, + 0x18, 0x92, 0x95, 0xb1, 0x1e, 0xbd, 0x61, 0x05, 0xfb, 0x3d, 0x70, 0x39, 0xb1, 0x55, 0xb1, 0xc2, + 0x78, 0x1c, 0xc9, 0xca, 0xb8, 0xbe, 0x1c, 0xdb, 0xac, 0x68, 0x8d, 0xdc, 0x9f, 0x3d, 0xd2, 0x86, + 0xc9, 0xca, 0x44, 0x1f, 0xf6, 0x50, 0xfb, 0x7b, 0x60, 0x39, 0xce, 0x1e, 0x69, 0xac, 0x26, 0x91, + 0xac, 0x4c, 0xea, 0x4b, 0x51, 0xde, 0x52, 0xa7, 0xc9, 0xea, 0xd9, 0xae, 0x58, 0xa9, 0x39, 0x25, + 0x4a, 0xeb, 0xd8, 0x76, 0xc5, 0xcb, 0xeb, 0xc4, 0x76, 0x45, 0x9b, 0x31, 0x80, 0x64, 0xe5, 0x5c, + 0x7c, 0xbb, 0x4a, 0xdd, 0xc6, 0xac, 0xef, 0x31, 0x75, 0xcc, 0x9d, 0x46, 0xb2, 0x32, 0xd3, 0x7b, + 0x4c, 0xa1, 0xb5, 0x24, 0x69, 0x6d, 0xa4, 0x50, 0x3b, 0xf7, 0x0a, 0x85, 0x5a, 0x6c, 0x6f, 0xba, + 0xc5, 0xda, 0x87, 0x60, 0x25, 0xb1, 0x37, 0xf1, 0x43, 0x99, 0x41, 0xb2, 0x32, 0xa7, 0x5f, 0x8a, + 0xed, 0x4e, 0xac, 0x3f, 0x1a, 0x20, 0xa0, 0xe3, 0x14, 0xb3, 0x48, 0x56, 0xe6, 0xfb, 0x09, 0x18, + 0xe8, 0xcc, 0xb1, 0x3e, 0x6a, 0x0e, 0xc9, 0xca, 0x42, 0xe2, 0x74, 0x22, 0xbb, 0xd4, 0x97, 0x39, + 0xd2, 0xa9, 0xc9, 0x0a, 0xec, 0x65, 0x0e, 0x34, 0x17, 0xea, 0xed, 0x22, 0xd1, 0x2a, 0x10, 0x9f, + 0xa2, 0xcc, 0x20, 0xc7, 0xca, 0x14, 0xd0, 0xf7, 0x99, 0xe3, 0x91, 0x1b, 0xc8, 0xff, 0x7f, 0x0d, + 0x37, 0xdc, 0x60, 0xf0, 0xe4, 0x46, 0x92, 0x2d, 0x82, 0x9b, 0xf3, 0xad, 0xdf, 0x40, 0xda, 0x0d, + 0xb4, 0xf1, 0x04, 0xb5, 0x32, 0x69, 0x30, 0x5a, 0xa2, 0xd5, 0x66, 0xbf, 0xcc, 0x9d, 0xf9, 0x12, + 0xcc, 0x05, 0xed, 0xeb, 0xcf, 0x1b, 0xac, 0x2e, 0xc8, 0x66, 0x41, 0x2a, 0x7c, 0x0c, 0xd2, 0x53, + 0x06, 0x0f, 0x51, 0xa3, 0x55, 0xcc, 0x70, 0x90, 0x3d, 0xde, 0x3a, 0xf3, 0xdc, 0xb9, 0x10, 0x5d, + 0xb0, 0x64, 0x7e, 0x22, 0x81, 0xb9, 0xcf, 0xed, 0x2a, 0x66, 0xe4, 0x91, 0xa6, 0x93, 0x1f, 0x7a, + 0xc4, 0x65, 0x70, 0x0b, 0xc8, 0xb8, 0xec, 0x83, 0x98, 0xd6, 0xd6, 0x87, 0xce, 0x45, 0x3a, 0xe7, + 0x86, 0xef, 0x83, 0x69, 0x4f, 0xc8, 0x15, 0xaf, 0x86, 0x01, 0xb4, 0xde, 0x26, 0xe4, 0xb6, 0x41, + 0x1a, 0xd5, 0x4f, 0xb1, 0x7b, 0xa4, 0x03, 0x9f, 0x9c, 0x7f, 0x67, 0x11, 0x98, 0x8e, 0xf8, 0x26, + 0x2f, 0x0f, 0x1e, 0xef, 0xe8, 0xf7, 0xe7, 0x47, 0xe0, 0x04, 0x90, 0xef, 0xef, 0xed, 0xcc, 0x4b, + 0xda, 0x3f, 0x5d, 0x01, 0x17, 0x93, 0x8a, 0x1f, 0x10, 0xe7, 0xd8, 0xa8, 0x10, 0xf8, 0x1f, 0x32, + 0x18, 0xdf, 0x72, 0xf8, 0x9e, 0xc3, 0xe1, 0xd1, 0xa7, 0x87, 0x67, 0xc9, 0xfc, 0x4f, 0xea, 0x57, + 0xff, 0xf1, 0xdf, 0x7f, 0x92, 0xfa, 0x3a, 0x95, 0xf9, 0xcf, 0x94, 0x7a, 0xbc, 0x1e, 0xbe, 0xd0, + 0xf6, 0x7b, 0x9f, 0x55, 0x4f, 0x23, 0xe9, 0xa3, 0xa5, 0x9e, 0x46, 0x33, 0x42, 0x4b, 0x3d, 0x8d, + 0x78, 0x67, 0x4b, 0x75, 0x89, 0x8d, 0x1d, 0xcc, 0xa8, 0xa3, 0x9e, 0x7a, 0xb1, 0x85, 0xd3, 0x88, + 0x27, 0xb5, 0xd4, 0xd3, 0xd8, 0x85, 0x0a, 0xc7, 0x91, 0xf5, 0xae, 0xbb, 0xb6, 0xd4, 0xd3, 0x68, + 0x6c, 0xfb, 0x9e, 0xcb, 0x1c, 0xdb, 0x21, 0x35, 0xe3, 0x44, 0xcd, 0xb6, 0x7c, 0x25, 0x11, 0x36, + 0x37, 0x29, 0xc7, 0x4d, 0x2a, 0x72, 0x13, 0x0c, 0x71, 0x90, 0x83, 0x7a, 0xd4, 0x96, 0x7a, 0xda, + 0x8d, 0x55, 0x2d, 0xf5, 0x34, 0xf1, 0xa6, 0xc3, 0x39, 0xfb, 0x3e, 0xf6, 0xc4, 0xf8, 0x22, 0xb5, + 0x7b, 0x0b, 0xfe, 0xb1, 0x04, 0x80, 0x7f, 0xe0, 0xe2, 0x7a, 0x7c, 0x33, 0x87, 0x9e, 0x15, 0x67, + 0x7e, 0x2d, 0xb3, 0x7a, 0xc6, 0x89, 0x17, 0xa4, 0x2c, 0xfc, 0x25, 0x30, 0xfe, 0x09, 0xa5, 0x47, + 0x9e, 0x0d, 0xe7, 0xf2, 0xae, 0x57, 0xd6, 0xf2, 0xbb, 0xd5, 0xe0, 0x4e, 0xbf, 0x8a, 0xe6, 0xbc, + 0xd0, 0xac, 0xc0, 0xef, 0x9c, 0xe9, 0x6b, 0xbc, 0x2e, 0x6a, 0xc1, 0xdf, 0x90, 0xc0, 0xb8, 0x7f, + 0xc7, 0x5f, 0x65, 0x6b, 0x06, 0x3c, 0x15, 0x65, 0xd6, 0x05, 0x8a, 0xef, 0xa6, 0x5f, 0x12, 0x05, + 0xdf, 0x86, 0xff, 0x92, 0xc0, 0x64, 0x18, 0x6c, 0xe0, 0xda, 0x99, 0x50, 0x12, 0x71, 0x69, 0x20, + 0x92, 0x3f, 0x92, 0x04, 0x94, 0xdf, 0x93, 0xd2, 0x59, 0xf5, 0x58, 0x7b, 0x31, 0x16, 0x5c, 0x26, + 0x79, 0x1f, 0x0f, 0x8f, 0x52, 0x8f, 0xd7, 0xb5, 0xa1, 0x59, 0xd6, 0xb4, 0xef, 0xaa, 0xc7, 0x1a, + 0x7e, 0x59, 0x1e, 0x29, 0x0b, 0xff, 0x54, 0x02, 0xe3, 0xdb, 0xa4, 0x41, 0x18, 0xe9, 0x3d, 0xfe, + 0x41, 0x36, 0x39, 0xed, 0x62, 0xb1, 0x7c, 0x1d, 0xcc, 0x02, 0x50, 0xb4, 0x8d, 0x7b, 0xa4, 0x59, + 0xf4, 0x58, 0x1d, 0x8e, 0x80, 0x8b, 0x60, 0xfc, 0x3e, 0xff, 0xd4, 0xe0, 0x0c, 0x18, 0x75, 0x08, + 0xae, 0x82, 0xb1, 0x67, 0x8e, 0xc1, 0xc8, 0xd3, 0xf3, 0x60, 0xf6, 0x24, 0x67, 0x38, 0x0e, 0x07, + 0xe1, 0x1a, 0xe5, 0x06, 0x81, 0x29, 0xe4, 0x6f, 0x8b, 0x92, 0x7d, 0x59, 0x3f, 0xf9, 0x37, 0x09, + 0x4c, 0xde, 0x21, 0xec, 0x33, 0x8f, 0x38, 0xcd, 0xff, 0x4f, 0x4f, 0xf9, 0xb1, 0xd4, 0x2e, 0x3e, + 0xcc, 0xec, 0x81, 0x95, 0x7e, 0x1d, 0x40, 0x47, 0xe1, 0x90, 0x95, 0xff, 0x17, 0x52, 0x79, 0x44, + 0xd8, 0x97, 0x87, 0x37, 0xce, 0xb2, 0xef, 0x87, 0x5c, 0x41, 0x68, 0xe5, 0x8f, 0xc7, 0xc0, 0xfc, + 0x1d, 0xc2, 0xc2, 0x84, 0xef, 0x2b, 0xbf, 0x35, 0x7c, 0x96, 0x0b, 0xf8, 0xd3, 0xaf, 0xce, 0x9a, + 0xf9, 0xd1, 0xa8, 0xb0, 0xe0, 0xbf, 0x65, 0xf8, 0xb5, 0x7c, 0x86, 0x0d, 0x9d, 0x2a, 0x22, 0x88, + 0x97, 0xfd, 0xba, 0x91, 0x56, 0x72, 0x2d, 0x91, 0x5c, 0x06, 0xb6, 0x13, 0x3d, 0x6b, 0xde, 0x8b, + 0x16, 0xe3, 0x41, 0xff, 0x05, 0x05, 0x7f, 0xff, 0xd5, 0x81, 0xbc, 0xb1, 0x34, 0x35, 0xb8, 0x20, + 0xef, 0xe5, 0xeb, 0x16, 0xdc, 0x7d, 0x0d, 0x19, 0xa8, 0xb0, 0x37, 0x0b, 0x0d, 0xa8, 0x72, 0x07, + 0x2c, 0x0f, 0xb4, 0xd3, 0x7d, 0x91, 0xd6, 0x58, 0x96, 0x84, 0xbf, 0x35, 0x0a, 0x46, 0x77, 0x2a, + 0x75, 0x0a, 0x07, 0xfd, 0x38, 0xe2, 0x7a, 0xe5, 0xbc, 0xdf, 0x6f, 0x84, 0x21, 0xe3, 0xa5, 0x29, + 0x33, 0x3f, 0x93, 0xdb, 0xc5, 0xbf, 0x4d, 0x81, 0x49, 0x52, 0xa9, 0x53, 0xe4, 0xd8, 0x15, 0xb8, + 0xf0, 0xc0, 0x33, 0x4d, 0xec, 0x34, 0x0b, 0x68, 0x27, 0x98, 0x4a, 0xcf, 0x6f, 0x77, 0xdf, 0x68, + 0xc4, 0x6c, 0x66, 0x1b, 0xc0, 0xf8, 0x45, 0x15, 0xf8, 0x86, 0xbc, 0x9e, 0x77, 0x6f, 0x01, 0x59, + 0x5b, 0x5b, 0x83, 0x5a, 0x66, 0x0d, 0xcc, 0x63, 0xdb, 0x7f, 0x5c, 0x30, 0xa8, 0xa5, 0x3e, 0x75, + 0xa9, 0x05, 0x57, 0x4e, 0x33, 0x61, 0x19, 0x9c, 0x61, 0x75, 0x82, 0x0c, 0xcb, 0xf6, 0x82, 0x1f, + 0x02, 0x33, 0xad, 0xbb, 0x8f, 0x80, 0xfc, 0xce, 0xda, 0x06, 0xbc, 0x0f, 0xde, 0xd5, 0x09, 0xf3, + 0x1c, 0x8b, 0x54, 0xd1, 0xb3, 0x3a, 0xb1, 0x10, 0xa7, 0x74, 0x88, 0x4b, 0x3d, 0xa7, 0x42, 0x90, + 0xe1, 0x22, 0x46, 0x4c, 0x9b, 0x3a, 0xd8, 0x31, 0x1a, 0x4d, 0xe4, 0x59, 0xf8, 0x18, 0x1b, 0x0d, + 0x5c, 0x6e, 0x90, 0x7c, 0x76, 0x09, 0x4c, 0x9e, 0xe4, 0x2c, 0xcf, 0x2c, 0x13, 0x07, 0x4e, 0x2d, + 0x8c, 0x88, 0xff, 0x7e, 0xe1, 0xa3, 0xbb, 0xef, 0x03, 0x79, 0x73, 0x6d, 0x13, 0x6e, 0x82, 0xec, + 0x0b, 0xe4, 0x56, 0x29, 0x71, 0x91, 0x45, 0x19, 0x22, 0x27, 0x86, 0xcb, 0xf2, 0x70, 0x1c, 0x88, + 0x27, 0x37, 0x71, 0x51, 0x9f, 0x9c, 0x1d, 0x6a, 0xf8, 0x56, 0xab, 0xa7, 0xfe, 0xe1, 0x3e, 0xbe, + 0x94, 0x99, 0x8f, 0x66, 0x17, 0xbe, 0x56, 0xf0, 0x5f, 0x68, 0x1e, 0x43, 0xd8, 0xb3, 0x04, 0xff, + 0x42, 0x02, 0xe7, 0xb6, 0x09, 0xb1, 0xc5, 0xef, 0x50, 0x7c, 0xe2, 0x9b, 0x29, 0x64, 0x3e, 0x14, + 0xb6, 0xdd, 0xca, 0x6c, 0x9e, 0x99, 0x26, 0x62, 0x3f, 0x71, 0xe7, 0x79, 0x77, 0x22, 0xf2, 0x5b, + 0x11, 0x80, 0x3d, 0x5a, 0x32, 0xac, 0xaa, 0x61, 0x1d, 0xba, 0xf0, 0x52, 0x4f, 0x16, 0xd8, 0x0e, + 0x7e, 0xfd, 0x1f, 0x98, 0x20, 0x46, 0xe0, 0x23, 0x30, 0xf1, 0xd0, 0x30, 0x09, 0xf5, 0x18, 0x1c, + 0x40, 0x34, 0x90, 0xf9, 0xb2, 0x80, 0xbf, 0x04, 0x17, 0xa3, 0xfb, 0xc9, 0x02, 0x61, 0x75, 0x30, + 0xbf, 0xe3, 0x38, 0xd4, 0xe1, 0xad, 0xd3, 0x36, 0x61, 0xd8, 0x68, 0xb8, 0x43, 0x2b, 0xb8, 0x26, + 0x14, 0xbc, 0x09, 0x57, 0x62, 0x07, 0xc6, 0xa5, 0x3e, 0x33, 0x58, 0xbd, 0x1a, 0x48, 0xfd, 0x4d, + 0x09, 0xc0, 0x3b, 0x84, 0x25, 0x5b, 0xb5, 0xb3, 0xab, 0x9c, 0x04, 0xc7, 0x40, 0x18, 0x6f, 0x0b, + 0x18, 0x57, 0x32, 0x97, 0xa2, 0x30, 0x38, 0x82, 0x32, 0xad, 0x36, 0xd5, 0x53, 0x5e, 0x6b, 0x88, + 0x96, 0x0e, 0xfe, 0x9a, 0x04, 0x16, 0xf6, 0xa9, 0xcb, 0xb8, 0x44, 0xc1, 0x2a, 0x80, 0xbc, 0x5c, + 0x57, 0x38, 0x50, 0xbb, 0x2a, 0xb4, 0x5f, 0xcf, 0x5c, 0x8b, 0x6a, 0xb7, 0xa9, 0xcb, 0x38, 0x02, + 0xf1, 0xcb, 0xa2, 0x0f, 0xa3, 0xe3, 0x14, 0x7f, 0x23, 0x81, 0xc5, 0xad, 0x3a, 0xa9, 0x1c, 0x85, + 0x09, 0x7e, 0x1f, 0x3b, 0xd8, 0x74, 0xbf, 0x21, 0x9f, 0xbe, 0x23, 0xe0, 0x16, 0xe1, 0x87, 0x67, + 0xf9, 0xb4, 0x2d, 0x50, 0xa9, 0x87, 0x84, 0xf5, 0x75, 0x6f, 0xf8, 0x2f, 0x12, 0x78, 0x43, 0x98, + 0xe1, 0x3f, 0xb0, 0xf2, 0x76, 0xf4, 0x5b, 0x31, 0xe8, 0x33, 0x61, 0xd0, 0x3d, 0xb8, 0x3b, 0x84, + 0x41, 0x41, 0x1b, 0x25, 0xfe, 0xb2, 0x26, 0x61, 0x1c, 0x3d, 0x6a, 0xc1, 0xbf, 0x97, 0xc0, 0x79, + 0x61, 0x1a, 0x77, 0x96, 0x6f, 0xcd, 0xa2, 0x4c, 0xe1, 0x25, 0x2d, 0xe2, 0xce, 0x16, 0x6f, 0x5f, + 0x5b, 0x85, 0xf8, 0x1f, 0xdd, 0xa4, 0xff, 0x5a, 0x6a, 0x17, 0xff, 0x52, 0x82, 0xb5, 0x01, 0x0f, + 0x03, 0xd1, 0x9f, 0x23, 0x50, 0x2e, 0x87, 0x9e, 0xd5, 0x8d, 0x4a, 0x1d, 0xb9, 0x75, 0xea, 0x35, + 0xaa, 0x22, 0xe4, 0x97, 0x09, 0xf2, 0x5c, 0x52, 0x45, 0x86, 0x85, 0xec, 0x06, 0xae, 0x10, 0x44, + 0x6b, 0x22, 0x39, 0x54, 0x69, 0xc5, 0x33, 0x89, 0xe5, 0xb7, 0x9b, 0xa8, 0x42, 0x4d, 0x3e, 0xb8, + 0x92, 0xfe, 0x0c, 0xac, 0xf6, 0xab, 0x68, 0x79, 0xe8, 0x0e, 0x9f, 0x22, 0x86, 0x7d, 0xce, 0x7e, + 0x0a, 0xce, 0x57, 0xb0, 0x49, 0x1a, 0x5b, 0xd8, 0x25, 0x81, 0x0c, 0xde, 0x37, 0x43, 0x1d, 0x8c, + 0xf9, 0x3f, 0xc9, 0x0f, 0x1b, 0xbc, 0x2e, 0x89, 0x5d, 0x5e, 0x84, 0x0b, 0xb1, 0xe0, 0xc5, 0x97, + 0xb4, 0x1f, 0x80, 0x95, 0xa2, 0x45, 0x59, 0x9d, 0x38, 0x81, 0x26, 0x1e, 0x30, 0x22, 0x81, 0xfc, + 0x83, 0x58, 0x58, 0x1f, 0x56, 0xf1, 0x48, 0xe9, 0xcf, 0xa7, 0xda, 0xc5, 0x3f, 0x99, 0x82, 0x5f, + 0x4b, 0x60, 0xb1, 0x88, 0x4a, 0xfe, 0x0f, 0x10, 0x91, 0xf3, 0xff, 0x02, 0x9c, 0x3f, 0xd4, 0xf7, + 0xb7, 0x72, 0x77, 0x7c, 0xd3, 0x91, 0xed, 0xd0, 0xa7, 0xa4, 0xc2, 0x86, 0xdd, 0xb2, 0xf4, 0xbc, + 0x45, 0x2d, 0xf2, 0x51, 0x60, 0x1a, 0xa7, 0xce, 0xfe, 0x00, 0x9c, 0x2f, 0x3d, 0xd8, 0x46, 0x1b, + 0xb9, 0xad, 0x06, 0xf6, 0x5c, 0x82, 0x3e, 0x31, 0x2a, 0xc4, 0x72, 0x09, 0xbc, 0x3d, 0x9c, 0x64, + 0xb5, 0xdc, 0xa0, 0x65, 0xd5, 0xc4, 0x2e, 0x23, 0x8e, 0xfa, 0xc9, 0xee, 0xd6, 0xce, 0xde, 0x83, + 0x9d, 0x3c, 0x3b, 0x61, 0x9a, 0xbc, 0x9e, 0x5f, 0x2b, 0x20, 0xb0, 0x74, 0x92, 0x73, 0xa9, 0x49, + 0x84, 0x35, 0xdd, 0x2f, 0x38, 0x91, 0x1e, 0x6b, 0xe2, 0x6a, 0x15, 0x67, 0x65, 0x29, 0x35, 0xaa, + 0xf5, 0xd4, 0x3e, 0xda, 0x85, 0xe8, 0xcc, 0x49, 0xae, 0x46, 0x69, 0xce, 0x34, 0x4c, 0x52, 0xe8, + 0xa1, 0x2c, 0x0c, 0xa0, 0xd4, 0xf7, 0x79, 0x1d, 0xb3, 0x01, 0x77, 0xc1, 0x9d, 0xde, 0x3a, 0xc6, + 0x73, 0x89, 0xd3, 0xad, 0x61, 0xea, 0xf8, 0x98, 0x20, 0x9b, 0x38, 0xa6, 0xe1, 0xba, 0xdc, 0x75, + 0x19, 0x45, 0xb8, 0x52, 0x21, 0xae, 0x1b, 0xab, 0x79, 0xf2, 0xfa, 0x6b, 0x54, 0x46, 0x13, 0xfa, + 0xc7, 0x40, 0xde, 0x5c, 0xbf, 0x09, 0x8b, 0x60, 0x66, 0xf7, 0x6d, 0x13, 0x61, 0xc4, 0x08, 0xb6, + 0x29, 0xcb, 0xc3, 0x35, 0x90, 0x4f, 0x0f, 0xf5, 0x06, 0xfd, 0xf8, 0xf7, 0x65, 0x30, 0x07, 0xa6, + 0x4a, 0xd8, 0x35, 0x2a, 0xa2, 0xdf, 0x4d, 0x4d, 0x4a, 0xe0, 0xcf, 0xa4, 0x58, 0x0b, 0xfc, 0x53, + 0x69, 0x32, 0x95, 0x9e, 0xfa, 0x22, 0x57, 0xdc, 0xdf, 0xcd, 0xdd, 0x23, 0x4d, 0x94, 0xba, 0xab, + 0x80, 0x95, 0x93, 0x1c, 0x36, 0xf1, 0x73, 0x6a, 0xe5, 0xb0, 0x6d, 0x04, 0xaa, 0x72, 0xd8, 0x63, + 0x75, 0xd6, 0xb4, 0x09, 0x9c, 0x4c, 0x8f, 0x53, 0x3e, 0xd0, 0xee, 0xfe, 0x22, 0x78, 0x73, 0x10, + 0x25, 0x75, 0x8c, 0xe7, 0xc4, 0x81, 0x1f, 0x64, 0x7f, 0x0e, 0xcc, 0x81, 0x51, 0xc1, 0x37, 0x91, + 0x1e, 0x63, 0xf4, 0x88, 0x58, 0xe0, 0x3a, 0x58, 0xe9, 0x92, 0xe8, 0xc4, 0xf5, 0x1a, 0xec, 0x21, + 0x6b, 0xec, 0x5a, 0x0f, 0x48, 0x85, 0x5a, 0x55, 0xb7, 0x53, 0x61, 0xee, 0x7d, 0x04, 0xfe, 0x59, + 0xea, 0xf4, 0xe7, 0x7f, 0x27, 0x4d, 0xca, 0xca, 0xa8, 0x76, 0x35, 0xf4, 0xb9, 0x88, 0x83, 0xaa, + 0x02, 0x8f, 0xda, 0x11, 0x5a, 0x58, 0x1d, 0x4c, 0x24, 0x20, 0x94, 0x7e, 0x05, 0xa4, 0xfd, 0x76, + 0x1f, 0xc2, 0x3b, 0x0e, 0xb6, 0x98, 0x8b, 0xf8, 0x20, 0x38, 0x4b, 0xb0, 0x12, 0x3c, 0x02, 0xc0, + 0xc5, 0x60, 0x51, 0x8c, 0xc2, 0xd5, 0x2d, 0x30, 0x86, 0xab, 0xa6, 0x61, 0xc1, 0x42, 0x8c, 0xd5, + 0xaa, 0xc6, 0xc8, 0x84, 0x6b, 0x70, 0x32, 0xc3, 0x65, 0xbc, 0x5a, 0x3b, 0xe6, 0x45, 0x79, 0x8d, + 0x3a, 0xa6, 0xf0, 0xbe, 0xf2, 0x2a, 0x98, 0x89, 0x1e, 0xcc, 0x48, 0xf2, 0x61, 0xa2, 0x7c, 0x7d, + 0xe0, 0xd3, 0x44, 0x92, 0xd4, 0xd9, 0x05, 0x17, 0x3f, 0xed, 0x46, 0xcb, 0x68, 0x0c, 0x18, 0xf6, + 0xee, 0x3f, 0xbf, 0x0c, 0xe0, 0x49, 0x2e, 0x3a, 0xc3, 0x2f, 0x09, 0x1c, 0x4b, 0xcb, 0x65, 0xec, + 0x3c, 0x57, 0xc0, 0xc5, 0xc4, 0x62, 0x19, 0x3f, 0xcf, 0x35, 0x0c, 0x97, 0xc1, 0x19, 0x6d, 0x1a, + 0x8c, 0xa5, 0x65, 0x6a, 0x11, 0x90, 0x42, 0xd2, 0xe3, 0xa9, 0x8e, 0x3b, 0x96, 0xc7, 0x45, 0x18, + 0xdb, 0xf8, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xb2, 0xb5, 0x0c, 0x75, 0x2b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/proto/examplepb/a_bit_of_everything.proto b/examples/proto/examplepb/a_bit_of_everything.proto index e7328ca4804..79d9363fe0d 100644 --- a/examples/proto/examplepb/a_bit_of_everything.proto +++ b/examples/proto/examplepb/a_bit_of_everything.proto @@ -446,6 +446,15 @@ service ABitOfEverythingService { url: "https://github.com/grpc-ecosystem/grpc-gateway"; description: "Find out more Echo"; } + responses: { + key: "200" + value: { + examples: { + key: "application/json" + value: '{"value": "the input value"}' + } + } + } responses: { key: "503"; value: { diff --git a/examples/proto/examplepb/a_bit_of_everything.swagger.json b/examples/proto/examplepb/a_bit_of_everything.swagger.json index 14e86590d21..033eb3e2f2c 100644 --- a/examples/proto/examplepb/a_bit_of_everything.swagger.json +++ b/examples/proto/examplepb/a_bit_of_everything.swagger.json @@ -81,6 +81,11 @@ "description": "A successful response.", "schema": { "$ref": "#/definitions/subStringMessage" + }, + "examples": { + "application/json": { + "value": "the input value" + } } }, "403": { @@ -1830,6 +1835,11 @@ "description": "A successful response.", "schema": { "$ref": "#/definitions/subStringMessage" + }, + "examples": { + "application/json": { + "value": "the input value" + } } }, "403": { @@ -1880,6 +1890,11 @@ "description": "A successful response.", "schema": { "$ref": "#/definitions/subStringMessage" + }, + "examples": { + "application/json": { + "value": "the input value" + } } }, "403": { diff --git a/protoc-gen-swagger/genswagger/template.go b/protoc-gen-swagger/genswagger/template.go index f54c7e3ed8b..6b2b62eb38f 100644 --- a/protoc-gen-swagger/genswagger/template.go +++ b/protoc-gen-swagger/genswagger/template.go @@ -950,9 +950,16 @@ func renderServices(services []*descriptor.Service, paths swaggerPathsObject, re } if opts.Responses != nil { for name, resp := range opts.Responses { - respObj := swaggerResponseObject{ - Description: resp.Description, - Schema: swaggerSchemaFromProtoSchema(resp.Schema, reg, customRefs, meth), + // Merge response data into default response if available. + respObj := operationObject.Responses[name] + if resp.Description != "" { + respObj.Description = resp.Description + } + if resp.Schema != nil { + respObj.Schema = swaggerSchemaFromProtoSchema(resp.Schema, reg, customRefs, meth) + } + if resp.Examples != nil { + respObj.Examples = swaggerExamplesFromProtoExamples(resp.Examples) } if resp.Extensions != nil { exts, err := processExtensions(resp.Extensions) @@ -1238,6 +1245,7 @@ func applyTemplate(p param) (*swaggerObject, error) { respMap[k] = swaggerResponseObject{ Description: v.Description, Schema: swaggerSchemaFromProtoSchema(v.Schema, p.reg, customRefs, nil), + Examples: swaggerExamplesFromProtoExamples(v.Examples), } } } @@ -1709,6 +1717,24 @@ func swaggerSchemaFromProtoSchema(s *swagger_options.Schema, reg *descriptor.Reg return ret } +func swaggerExamplesFromProtoExamples(in map[string]string) map[string]interface{} { + if len(in) == 0 { + return nil + } + out := make(map[string]interface{}) + for mimeType, exampleStr := range in { + switch mimeType { + case "application/json": + // JSON example objects are rendered raw. + out[mimeType] = json.RawMessage(exampleStr) + default: + // All other mimetype examples are rendered as strings. + out[mimeType] = exampleStr + } + } + return out +} + func protoJSONSchemaTypeToFormat(in []swagger_options.JSONSchema_JSONSchemaSimpleTypes) (string, string) { if len(in) == 0 { return "", "" diff --git a/protoc-gen-swagger/genswagger/types.go b/protoc-gen-swagger/genswagger/types.go index 5765706b34b..47d099806f4 100644 --- a/protoc-gen-swagger/genswagger/types.go +++ b/protoc-gen-swagger/genswagger/types.go @@ -167,8 +167,9 @@ type swaggerResponsesObject map[string]swaggerResponseObject // http://swagger.io/specification/#responseObject type swaggerResponseObject struct { - Description string `json:"description"` - Schema swaggerSchemaObject `json:"schema"` + Description string `json:"description"` + Schema swaggerSchemaObject `json:"schema"` + Examples map[string]interface{} `json:"examples,omitempty"` extensions []extension } diff --git a/protoc-gen-swagger/options/openapiv2.pb.go b/protoc-gen-swagger/options/openapiv2.pb.go index 727ca52783c..8ea807582e2 100644 --- a/protoc-gen-swagger/options/openapiv2.pb.go +++ b/protoc-gen-swagger/options/openapiv2.pb.go @@ -477,7 +477,10 @@ type Response struct { Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"` // `Schema` optionally defines the structure of the response. // If `Schema` is not provided, it means there is no content to the response. - Schema *Schema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"` + Schema *Schema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"` + // `Examples` gives per-mimetype response examples. + // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#example-object + Examples map[string]string `protobuf:"bytes,4,rep,name=examples,proto3" json:"examples,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` Extensions map[string]*_struct.Value `protobuf:"bytes,5,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -523,6 +526,13 @@ func (m *Response) GetSchema() *Schema { return nil } +func (m *Response) GetExamples() map[string]string { + if m != nil { + return m.Examples + } + return nil +} + func (m *Response) GetExtensions() map[string]*_struct.Value { if m != nil { return m.Extensions @@ -1478,6 +1488,7 @@ func init() { proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Operation.ExtensionsEntry") proto.RegisterMapType((map[string]*Response)(nil), "grpc.gateway.protoc_gen_swagger.options.Operation.ResponsesEntry") proto.RegisterType((*Response)(nil), "grpc.gateway.protoc_gen_swagger.options.Response") + proto.RegisterMapType((map[string]string)(nil), "grpc.gateway.protoc_gen_swagger.options.Response.ExamplesEntry") proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Response.ExtensionsEntry") proto.RegisterType((*Info)(nil), "grpc.gateway.protoc_gen_swagger.options.Info") proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Info.ExtensionsEntry") @@ -1503,123 +1514,125 @@ func init() { } var fileDescriptor_ba35ad8af024fb48 = []byte{ - // 1884 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0x5b, 0x73, 0xdb, 0xc6, - 0xf5, 0x0f, 0x48, 0x90, 0x04, 0x0f, 0x45, 0x7a, 0xbd, 0x96, 0xf3, 0x47, 0x18, 0xdb, 0x7f, 0x85, - 0x4d, 0xa7, 0x1a, 0xbb, 0xa6, 0x12, 0xe5, 0xa1, 0x99, 0x4c, 0x6f, 0x94, 0xc4, 0xc8, 0x80, 0x65, - 0x92, 0x05, 0xa9, 0x28, 0xee, 0x8c, 0x07, 0x85, 0xc0, 0x25, 0x85, 0x18, 0x17, 0x06, 0x17, 0x49, - 0xec, 0x27, 0xe8, 0x73, 0xa7, 0xaf, 0xf9, 0x1e, 0x9d, 0x69, 0x9f, 0xfa, 0x09, 0xfa, 0x59, 0xda, - 0xe9, 0x7b, 0x67, 0x2f, 0x20, 0x41, 0x91, 0xf1, 0x90, 0x72, 0x3c, 0x79, 0xe8, 0x13, 0xf7, 0xdc, - 0x7e, 0xbb, 0x7b, 0xce, 0x9e, 0x0b, 0x08, 0x8f, 0x27, 0x61, 0x10, 0x07, 0xf6, 0xd3, 0x31, 0xf1, - 0x9f, 0x46, 0x57, 0xd6, 0x78, 0x4c, 0xc2, 0xbd, 0x60, 0x12, 0x3b, 0x81, 0x1f, 0xed, 0x05, 0x13, - 0xe2, 0x5b, 0x13, 0xe7, 0x72, 0xbf, 0xc9, 0x94, 0xf0, 0xcf, 0xc6, 0xe1, 0xc4, 0x6e, 0x8e, 0xad, - 0x98, 0x5c, 0x59, 0x53, 0xce, 0xb3, 0xcd, 0x31, 0xf1, 0x4d, 0x61, 0xd8, 0x14, 0x86, 0xf5, 0x0f, - 0xc6, 0x41, 0x30, 0x76, 0xc9, 0x1e, 0x53, 0x39, 0x4f, 0x46, 0x7b, 0x96, 0x2f, 0xf4, 0xeb, 0x0f, - 0x6e, 0x8a, 0xa2, 0x38, 0x4c, 0xec, 0x98, 0x4b, 0x1b, 0x7f, 0x55, 0xa0, 0xd4, 0xe7, 0x60, 0x58, - 0x85, 0x92, 0xc0, 0x55, 0xa5, 0x1d, 0x69, 0xb7, 0x6c, 0xa4, 0x24, 0x6e, 0x81, 0xec, 0xf8, 0xa3, - 0x40, 0xcd, 0xed, 0x48, 0xbb, 0x95, 0xfd, 0xa7, 0xcd, 0x35, 0x8f, 0xd5, 0xd4, 0xfc, 0x51, 0x60, - 0x30, 0x53, 0x8c, 0x41, 0xbe, 0x08, 0xa2, 0x58, 0xcd, 0x33, 0x64, 0xb6, 0xc6, 0x1f, 0x42, 0xf9, - 0xdc, 0x8a, 0x88, 0x39, 0xb1, 0xe2, 0x0b, 0x55, 0x66, 0x02, 0x85, 0x32, 0x7a, 0x56, 0x7c, 0x81, - 0xbf, 0x86, 0x52, 0x64, 0x5f, 0x10, 0x8f, 0x44, 0x6a, 0x61, 0x27, 0xbf, 0x5b, 0xdb, 0xff, 0xf5, - 0xda, 0xdb, 0x8a, 0x0b, 0xa5, 0xbf, 0x7d, 0x06, 0x63, 0xa4, 0x70, 0xb8, 0x0e, 0x8a, 0x1d, 0xf8, - 0x51, 0x42, 0xa1, 0x8b, 0x3b, 0x79, 0xba, 0x6b, 0x4a, 0x53, 0xd9, 0x24, 0x0c, 0x86, 0x89, 0x4d, - 0x22, 0xb5, 0xc4, 0x65, 0x29, 0x8d, 0x5f, 0x41, 0x39, 0x24, 0xd1, 0x24, 0xf0, 0x23, 0x12, 0xa9, - 0xb0, 0x93, 0xdf, 0xad, 0xec, 0xff, 0x66, 0xe3, 0x33, 0x19, 0x29, 0x42, 0xdb, 0x8f, 0xc3, 0xa9, - 0x31, 0x47, 0xc4, 0x01, 0x6c, 0x47, 0xc4, 0x4e, 0x42, 0x27, 0x9e, 0x9a, 0x43, 0x32, 0x72, 0x7c, - 0x87, 0x59, 0xaa, 0x15, 0xe6, 0xf4, 0x5f, 0xae, 0xbf, 0x93, 0x00, 0x39, 0x9a, 0x63, 0x18, 0xf7, - 0xa2, 0x65, 0x26, 0xfe, 0x1a, 0x94, 0x94, 0xad, 0x6e, 0xb1, 0xeb, 0x6c, 0xbe, 0x89, 0x41, 0xbe, - 0x4d, 0x9c, 0x90, 0x78, 0xc4, 0x8f, 0x8d, 0x19, 0x1a, 0xb6, 0xa1, 0x4a, 0xae, 0x63, 0x12, 0xfa, - 0x96, 0x6b, 0x0e, 0x03, 0x3b, 0x52, 0x6b, 0xec, 0x0e, 0xeb, 0x47, 0xb0, 0x2d, 0xac, 0x8f, 0x02, - 0x3b, 0xa1, 0xd8, 0x16, 0x65, 0x1b, 0x5b, 0x64, 0xce, 0x8e, 0xf0, 0x1f, 0x00, 0x28, 0xed, 0x47, - 0xcc, 0x4b, 0x77, 0xd8, 0x05, 0x7e, 0xbb, 0x71, 0x3c, 0xda, 0x33, 0x08, 0x1e, 0x90, 0x0c, 0x66, - 0x3d, 0x80, 0xda, 0x62, 0xb8, 0x30, 0x82, 0xfc, 0x6b, 0x32, 0x15, 0xe9, 0x41, 0x97, 0xf8, 0x18, - 0x0a, 0x97, 0x96, 0x9b, 0x10, 0x91, 0x1b, 0x9f, 0xae, 0x7d, 0x80, 0x14, 0xd9, 0xe0, 0xf6, 0x5f, - 0xe4, 0x3e, 0x97, 0xea, 0xa7, 0x70, 0xe7, 0xc6, 0x79, 0x56, 0xec, 0xf8, 0xf3, 0xc5, 0x1d, 0xdf, - 0x6f, 0xf2, 0x04, 0x6f, 0xa6, 0x09, 0xde, 0xfc, 0x8a, 0x4a, 0x33, 0xb0, 0x8d, 0x03, 0xa8, 0x2e, - 0xa4, 0x02, 0xae, 0x40, 0xe9, 0xb4, 0xf3, 0xbc, 0xd3, 0x3d, 0xeb, 0xa0, 0xf7, 0xb0, 0x02, 0xf2, - 0xb3, 0xc1, 0xa0, 0x87, 0x24, 0x5c, 0x86, 0x02, 0x5d, 0xf5, 0x51, 0x0e, 0x17, 0x21, 0x77, 0xd6, - 0x47, 0x79, 0x5c, 0x82, 0xfc, 0x59, 0xbf, 0x8f, 0x64, 0x5d, 0x56, 0x14, 0x54, 0xd6, 0x65, 0xa5, - 0x8c, 0x40, 0x97, 0x95, 0x2a, 0xaa, 0x35, 0xfe, 0x51, 0x84, 0x72, 0x77, 0x42, 0x42, 0x16, 0x1b, - 0x9a, 0xdf, 0xb1, 0x35, 0x8e, 0x54, 0x89, 0x25, 0x0d, 0x5b, 0xb3, 0x82, 0x92, 0x78, 0x9e, 0x15, - 0x4e, 0xd9, 0x59, 0x69, 0x41, 0xe1, 0x24, 0xde, 0x81, 0xca, 0x90, 0x44, 0x76, 0xe8, 0x30, 0x67, - 0x88, 0xa2, 0x90, 0x65, 0x2d, 0x3f, 0x21, 0xf9, 0x1d, 0x3c, 0xa1, 0x8f, 0x60, 0x2b, 0x48, 0x6f, - 0x60, 0x3a, 0x43, 0xb5, 0xc0, 0xcf, 0x31, 0xe3, 0x69, 0xc3, 0x5b, 0x17, 0x0b, 0x33, 0x5b, 0x2c, - 0xca, 0xec, 0x71, 0xb6, 0xd6, 0x3e, 0xfb, 0xcc, 0xad, 0x6f, 0x28, 0x17, 0xea, 0xbc, 0x3e, 0x02, - 0xdb, 0x7b, 0x56, 0xdf, 0x1e, 0x01, 0x0c, 0xc9, 0x24, 0x24, 0xb6, 0x15, 0x93, 0x21, 0x2b, 0x1f, - 0x8a, 0x91, 0xe1, 0xbc, 0xc3, 0xbc, 0x3f, 0x5f, 0x48, 0xc9, 0x2a, 0xc3, 0x3e, 0xb8, 0xc5, 0xad, - 0xff, 0x07, 0x92, 0x92, 0x27, 0x54, 0xe3, 0x6f, 0x39, 0x50, 0xd2, 0x4d, 0x6f, 0x66, 0x85, 0xb4, - 0x9c, 0x15, 0xc7, 0x50, 0x64, 0x51, 0xb6, 0xc4, 0x3e, 0x7b, 0xeb, 0x07, 0x8e, 0x99, 0x19, 0xc2, - 0x1c, 0x5b, 0x0b, 0x91, 0x2a, 0x6c, 0xf8, 0x3e, 0xd3, 0x13, 0xbf, 0x31, 0x50, 0xef, 0xcc, 0x6f, - 0x79, 0x56, 0x8e, 0x64, 0x54, 0x68, 0xfc, 0x33, 0x0f, 0x32, 0x9d, 0x31, 0xf0, 0x36, 0x14, 0x62, - 0x27, 0x76, 0x89, 0x80, 0xe6, 0xc4, 0x4d, 0x7f, 0xe6, 0x96, 0xfd, 0xb9, 0x0b, 0x28, 0x26, 0xa1, - 0x17, 0x99, 0xc1, 0xc8, 0x8c, 0x48, 0x78, 0xe9, 0xd8, 0x44, 0x14, 0xa3, 0x1a, 0xe3, 0x77, 0x47, - 0x7d, 0xce, 0xc5, 0x3a, 0x94, 0xec, 0xc0, 0x8f, 0x2d, 0x3b, 0x16, 0x95, 0xe8, 0x93, 0xb5, 0xbd, - 0x75, 0xc8, 0xed, 0x8c, 0x14, 0x80, 0x62, 0xb9, 0x8e, 0x4d, 0xfc, 0x88, 0xb0, 0x8a, 0xb3, 0x09, - 0xd6, 0x09, 0xb7, 0x33, 0x52, 0x00, 0x5a, 0x06, 0x2e, 0x49, 0x48, 0x7d, 0xac, 0x16, 0x79, 0x8d, - 0x15, 0x24, 0x7e, 0xb5, 0x10, 0xe2, 0x12, 0x0b, 0xf1, 0xaf, 0x36, 0x1a, 0xdd, 0x7e, 0x84, 0xf0, - 0x36, 0xda, 0x50, 0x12, 0xfe, 0xa2, 0x2d, 0xc5, 0xb7, 0xbc, 0x34, 0xa6, 0x6c, 0x4d, 0xb7, 0x48, - 0x42, 0x57, 0x84, 0x92, 0x2e, 0x69, 0xe8, 0x89, 0x67, 0x39, 0xae, 0x88, 0x1b, 0x27, 0x1a, 0x7b, - 0x50, 0x12, 0xae, 0x5a, 0x0f, 0xa6, 0xf1, 0x1c, 0xee, 0xaf, 0xec, 0x18, 0x6b, 0x24, 0xe5, 0x32, - 0xd8, 0xdf, 0x73, 0x50, 0xe4, 0x09, 0x87, 0x07, 0x50, 0xf9, 0x26, 0x0a, 0x7c, 0x53, 0xa4, 0xad, - 0xc4, 0xfc, 0xf0, 0xd9, 0xda, 0x61, 0xd0, 0xfb, 0xdd, 0x8e, 0x48, 0x5d, 0xa0, 0x38, 0x02, 0xf5, - 0x63, 0xa8, 0x0e, 0x1d, 0x7a, 0x02, 0xcf, 0xf1, 0xad, 0x38, 0x08, 0xc5, 0xe6, 0x8b, 0x4c, 0x3a, - 0x5f, 0x87, 0xc4, 0x1a, 0x9a, 0x81, 0xef, 0x4e, 0x99, 0x7b, 0x14, 0x43, 0xa1, 0x8c, 0xae, 0xef, - 0xae, 0x98, 0xd1, 0x0a, 0xef, 0xa0, 0xc1, 0x36, 0xa1, 0x44, 0xae, 0x2d, 0x6f, 0xe2, 0x12, 0xf6, - 0x3a, 0x2b, 0xfb, 0xdb, 0x4b, 0x2f, 0xa0, 0xe5, 0x4f, 0x8d, 0x54, 0x49, 0xa4, 0xf5, 0x77, 0x25, - 0x80, 0xf9, 0xc5, 0xa9, 0x7f, 0x43, 0x32, 0x12, 0xf1, 0xa5, 0xcb, 0x79, 0xba, 0x17, 0xde, 0x90, - 0xee, 0xc5, 0xe5, 0x48, 0xa9, 0x50, 0x1a, 0x92, 0x91, 0x95, 0xb8, 0xb1, 0x5a, 0xe2, 0xc9, 0x22, - 0xc8, 0x45, 0x57, 0x29, 0x37, 0x5c, 0xf5, 0xff, 0x50, 0xf1, 0x12, 0x37, 0x76, 0x26, 0x2e, 0x31, - 0x83, 0x91, 0x0a, 0x3b, 0xd2, 0xae, 0x64, 0x40, 0xca, 0xea, 0x8e, 0x28, 0xae, 0x67, 0x5d, 0x3b, - 0x5e, 0xe2, 0xb1, 0x76, 0x2b, 0x19, 0x29, 0x89, 0x9f, 0xc0, 0x5d, 0x72, 0x6d, 0xbb, 0x49, 0xe4, - 0x5c, 0x12, 0x33, 0xd5, 0xd9, 0x62, 0xf8, 0x68, 0x26, 0x78, 0x21, 0x94, 0x29, 0x8c, 0xe3, 0x33, - 0x95, 0xaa, 0x80, 0xe1, 0xe4, 0x0d, 0x18, 0xa1, 0x53, 0xbb, 0x09, 0x23, 0x94, 0x1f, 0x02, 0x78, - 0xd6, 0xb5, 0xe9, 0x12, 0x7f, 0x1c, 0x5f, 0xa8, 0x77, 0x76, 0xa4, 0x5d, 0xd9, 0x28, 0x7b, 0xd6, - 0xf5, 0x09, 0x63, 0x30, 0xb1, 0xe3, 0xa7, 0x62, 0x24, 0xc4, 0x8e, 0x2f, 0xc4, 0x2a, 0x94, 0x26, - 0x56, 0x4c, 0x63, 0xa8, 0xde, 0xe5, 0x3e, 0x12, 0x24, 0xf5, 0x11, 0xc5, 0x75, 0x62, 0xe2, 0x45, - 0xea, 0x36, 0xb3, 0x53, 0x3c, 0xeb, 0x5a, 0xa3, 0x34, 0x13, 0x3a, 0xbe, 0x10, 0xde, 0x17, 0x42, - 0xc7, 0xe7, 0xc2, 0x8f, 0x60, 0x2b, 0xf1, 0x9d, 0x6f, 0x13, 0x22, 0xe4, 0xef, 0xb3, 0x93, 0x57, - 0x38, 0x8f, 0xab, 0xfc, 0x14, 0x6a, 0x14, 0x7c, 0x12, 0xd2, 0xe1, 0x2b, 0x76, 0x48, 0xa4, 0xaa, - 0x0c, 0xa4, 0xea, 0x59, 0xd7, 0xbd, 0x19, 0x93, 0xa9, 0x39, 0x7e, 0x56, 0xed, 0x03, 0xa1, 0xe6, - 0xf8, 0x19, 0xb5, 0x3a, 0x28, 0x21, 0x9f, 0x50, 0x86, 0x6a, 0x9d, 0x4f, 0x66, 0x29, 0x4d, 0x1f, - 0x8f, 0x15, 0x86, 0xd6, 0x54, 0x6d, 0x30, 0x01, 0x27, 0xf0, 0x2b, 0x90, 0xe3, 0xe9, 0x84, 0xa8, - 0x3f, 0x61, 0xdf, 0x9a, 0xda, 0x2d, 0x12, 0x34, 0xb3, 0xec, 0x3b, 0xf4, 0x35, 0x0f, 0xa6, 0x13, - 0x12, 0x19, 0x0c, 0xb6, 0x71, 0x05, 0xf7, 0x57, 0x8a, 0x17, 0x47, 0xf1, 0x32, 0x14, 0x5a, 0x86, - 0xd1, 0x7a, 0x89, 0x24, 0xca, 0x3f, 0xe8, 0x76, 0x4f, 0xda, 0xad, 0x0e, 0xca, 0x51, 0x42, 0xeb, - 0x0c, 0xda, 0xc7, 0x6d, 0x03, 0xe5, 0xe9, 0xbc, 0xde, 0x39, 0x3d, 0x39, 0x41, 0x32, 0x06, 0x28, - 0x76, 0x4e, 0x5f, 0x1c, 0xb4, 0x0d, 0x54, 0xa0, 0xeb, 0xee, 0x81, 0xde, 0x3e, 0x1c, 0xa0, 0x22, - 0x5d, 0xf7, 0x07, 0x86, 0xd6, 0x39, 0x46, 0x25, 0x5d, 0x56, 0x24, 0x94, 0xd3, 0x65, 0x25, 0x87, - 0xf2, 0x3c, 0xbb, 0x66, 0x33, 0x3c, 0x46, 0xf7, 0x74, 0x59, 0xb9, 0x87, 0xb6, 0x75, 0x59, 0xf9, - 0x3f, 0xa4, 0xea, 0xb2, 0xf2, 0x21, 0x7a, 0xa0, 0xcb, 0xca, 0x03, 0xf4, 0x50, 0x97, 0x95, 0x87, - 0xe8, 0x91, 0x2e, 0x2b, 0x8f, 0x50, 0x43, 0x97, 0x95, 0x8f, 0xd1, 0x63, 0x5d, 0x56, 0x1e, 0xa3, - 0x27, 0xba, 0xac, 0x3c, 0x41, 0xcd, 0xc6, 0x9f, 0x25, 0xc8, 0x0f, 0xac, 0xf1, 0x1a, 0xfd, 0x75, - 0xa9, 0xc8, 0xe4, 0x7f, 0xf8, 0x22, 0xc3, 0xaf, 0xd8, 0xf8, 0xb7, 0x04, 0xf7, 0x56, 0x7c, 0xfa, - 0xe2, 0x51, 0x66, 0xda, 0x95, 0x58, 0x13, 0xd4, 0xdf, 0xe6, 0x53, 0x7a, 0xc6, 0xe3, 0x1d, 0x71, - 0x86, 0x5d, 0x8f, 0xa1, 0xba, 0x20, 0x5a, 0xd1, 0x0d, 0x5f, 0x2c, 0x76, 0xc3, 0x5f, 0x6c, 0x7c, - 0x0e, 0xf1, 0x4f, 0x46, 0xa6, 0x5d, 0xfe, 0xa7, 0x08, 0xb5, 0x45, 0x29, 0xee, 0x89, 0x97, 0x4c, - 0x37, 0xae, 0xdd, 0x62, 0xb4, 0xe7, 0x30, 0x4d, 0xfa, 0x3c, 0xf9, 0xe3, 0x5d, 0x23, 0xce, 0x69, - 0x8f, 0xcd, 0x67, 0x7a, 0xac, 0x0e, 0x39, 0xc7, 0x67, 0xc3, 0x52, 0x6d, 0xff, 0x8b, 0xdb, 0x9e, - 0x42, 0xf3, 0x8d, 0x9c, 0xe3, 0xd3, 0x3b, 0x8d, 0xdc, 0xe0, 0x8a, 0xd5, 0xfb, 0xb7, 0xb8, 0xd3, - 0x97, 0x6e, 0x70, 0x65, 0x30, 0x24, 0x5a, 0x51, 0xad, 0x24, 0xbe, 0x08, 0x42, 0xe7, 0x8f, 0xfc, - 0xf3, 0x8f, 0xb6, 0x70, 0xde, 0x32, 0xd0, 0x82, 0xe0, 0x34, 0x74, 0x69, 0x71, 0x8b, 0x83, 0xd7, - 0x84, 0x2b, 0xf1, 0xce, 0xa1, 0x30, 0x06, 0x15, 0xb2, 0x99, 0x3c, 0x98, 0x90, 0x88, 0xf5, 0x8d, - 0xcd, 0x66, 0x72, 0x6a, 0x66, 0x08, 0x73, 0x3c, 0x5e, 0x18, 0xd8, 0xf8, 0x37, 0xe3, 0xf1, 0x6d, - 0xaf, 0xfa, 0x23, 0x8c, 0x6e, 0xcf, 0x41, 0xa6, 0x8f, 0x06, 0x23, 0xd8, 0x1a, 0xbc, 0xec, 0xb5, - 0x4d, 0xad, 0xf3, 0x55, 0xeb, 0x44, 0x3b, 0x42, 0xef, 0xe1, 0x1a, 0x00, 0xe3, 0x1c, 0xb4, 0xfa, - 0xda, 0x21, 0x92, 0x66, 0x1a, 0xad, 0x9e, 0x66, 0x3e, 0x6f, 0xbf, 0x44, 0x39, 0x7c, 0x07, 0x2a, - 0x8c, 0xd3, 0x6d, 0x9d, 0x0e, 0x9e, 0xed, 0xa3, 0x7c, 0xe3, 0x53, 0xc8, 0x69, 0x3e, 0x35, 0xd4, - 0x3a, 0x19, 0xa0, 0x2d, 0x50, 0xb4, 0x8e, 0xf9, 0xbb, 0xd3, 0xb6, 0x41, 0x6b, 0x64, 0x15, 0xca, - 0x5a, 0xc7, 0x7c, 0xd6, 0x6e, 0x1d, 0xb5, 0x0d, 0x94, 0x6b, 0x7c, 0x03, 0x32, 0x0d, 0x30, 0x45, - 0xff, 0xf2, 0xa4, 0x7b, 0x96, 0x31, 0xbb, 0x0b, 0x55, 0xce, 0x79, 0xd1, 0x3b, 0xd1, 0x0e, 0xb5, - 0x01, 0x92, 0x66, 0xac, 0x5e, 0xab, 0xdf, 0x3f, 0xeb, 0x1a, 0x47, 0x28, 0x87, 0xb7, 0x01, 0x31, - 0x56, 0xab, 0x47, 0xb5, 0x5a, 0x03, 0xad, 0xdb, 0x41, 0xf9, 0x39, 0xf7, 0xf0, 0xb0, 0xdd, 0xef, - 0x9b, 0x87, 0xdd, 0xa3, 0x36, 0x92, 0x1b, 0xff, 0xca, 0xcd, 0xab, 0x4d, 0xe6, 0x5b, 0x18, 0xff, - 0x49, 0xca, 0xfc, 0x8b, 0x17, 0xce, 0x05, 0xa2, 0xf4, 0x9c, 0xbe, 0xcd, 0x87, 0xf6, 0x2a, 0x1e, - 0x0f, 0xee, 0xec, 0xef, 0xbd, 0x8c, 0xa4, 0xfe, 0x09, 0xa8, 0x2b, 0x0c, 0x58, 0xd4, 0x68, 0x0f, - 0x64, 0x8f, 0x4e, 0xfc, 0x5d, 0xc3, 0x89, 0xfa, 0x77, 0xd2, 0x4a, 0x93, 0xef, 0x7b, 0x21, 0xaf, - 0x17, 0x5f, 0xc8, 0x0f, 0x7e, 0xb7, 0xa5, 0x07, 0xf6, 0x17, 0x89, 0x8e, 0xd5, 0x2c, 0x57, 0x7a, - 0xd9, 0x0b, 0x54, 0x36, 0xa9, 0x2f, 0xcc, 0x9e, 0xff, 0x70, 0xe7, 0x89, 0xcb, 0x7f, 0x0e, 0x30, - 0x67, 0xae, 0xb8, 0xed, 0x76, 0xf6, 0xb6, 0xe5, 0xcc, 0xb1, 0x0e, 0x0e, 0x7f, 0xdf, 0x1a, 0x3b, - 0xf1, 0x45, 0x72, 0xde, 0xb4, 0x03, 0x6f, 0x8f, 0x1e, 0xe4, 0x29, 0xb1, 0x83, 0x68, 0x1a, 0xc5, - 0x44, 0x90, 0xe2, 0x5c, 0x7b, 0xdf, 0xff, 0xd7, 0xff, 0x79, 0x91, 0xc9, 0x3e, 0xfb, 0x6f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x29, 0x5a, 0xd3, 0x93, 0x1f, 0x18, 0x00, 0x00, + // 1910 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x5b, 0x73, 0x1a, 0xd7, + 0x1d, 0xcf, 0xc2, 0x02, 0xcb, 0x1f, 0x81, 0x8f, 0x8f, 0xe5, 0x74, 0x43, 0x6c, 0x57, 0xa1, 0xe9, + 0x54, 0x63, 0xd7, 0x28, 0x51, 0x1e, 0x9a, 0x49, 0xaf, 0x48, 0x22, 0xf2, 0xae, 0x65, 0xa0, 0x0b, + 0x8a, 0xe2, 0x76, 0x3c, 0xdb, 0xd5, 0x72, 0x40, 0x1b, 0xef, 0x85, 0xec, 0x45, 0x12, 0xfd, 0x04, + 0x7d, 0xee, 0xf4, 0x35, 0xdf, 0xa3, 0x0f, 0x7d, 0xea, 0x17, 0x68, 0x3f, 0x4b, 0x3b, 0x7d, 0xef, + 0x9c, 0xcb, 0xc2, 0x22, 0x61, 0x0f, 0xc8, 0x76, 0xfb, 0x90, 0x27, 0xce, 0xff, 0xf6, 0x3b, 0x97, + 0xff, 0xed, 0x9c, 0x05, 0x1e, 0x4e, 0xc2, 0x20, 0x0e, 0xec, 0xc7, 0x63, 0xe2, 0x3f, 0x8e, 0x2e, + 0xac, 0xf1, 0x98, 0x84, 0x3b, 0xc1, 0x24, 0x76, 0x02, 0x3f, 0xda, 0x09, 0x26, 0xc4, 0xb7, 0x26, + 0xce, 0xf9, 0x6e, 0x93, 0x29, 0xe1, 0x9f, 0x8c, 0xc3, 0x89, 0xdd, 0x1c, 0x5b, 0x31, 0xb9, 0xb0, + 0xa6, 0x9c, 0x67, 0x9b, 0x63, 0xe2, 0x9b, 0xc2, 0xb0, 0x29, 0x0c, 0xeb, 0x1f, 0x8c, 0x83, 0x60, + 0xec, 0x92, 0x1d, 0xa6, 0x72, 0x9a, 0x8c, 0x76, 0x2c, 0x5f, 0xe8, 0xd7, 0xef, 0x5d, 0x15, 0x45, + 0x71, 0x98, 0xd8, 0x31, 0x97, 0x36, 0xfe, 0xaa, 0x40, 0xa9, 0xcf, 0xc1, 0xb0, 0x0a, 0x25, 0x81, + 0xab, 0x4a, 0x5b, 0xd2, 0x76, 0xd9, 0x48, 0x49, 0xdc, 0x02, 0xd9, 0xf1, 0x47, 0x81, 0x9a, 0xdb, + 0x92, 0xb6, 0x2b, 0xbb, 0x8f, 0x9b, 0x2b, 0x2e, 0xab, 0xa9, 0xf9, 0xa3, 0xc0, 0x60, 0xa6, 0x18, + 0x83, 0x7c, 0x16, 0x44, 0xb1, 0x9a, 0x67, 0xc8, 0x6c, 0x8c, 0x3f, 0x84, 0xf2, 0xa9, 0x15, 0x11, + 0x73, 0x62, 0xc5, 0x67, 0xaa, 0xcc, 0x04, 0x0a, 0x65, 0xf4, 0xac, 0xf8, 0x0c, 0x7f, 0x0d, 0xa5, + 0xc8, 0x3e, 0x23, 0x1e, 0x89, 0xd4, 0xc2, 0x56, 0x7e, 0xbb, 0xb6, 0xfb, 0xab, 0x95, 0xa7, 0x15, + 0x1b, 0x4a, 0x7f, 0xfb, 0x0c, 0xc6, 0x48, 0xe1, 0x70, 0x1d, 0x14, 0x3b, 0xf0, 0xa3, 0x84, 0x42, + 0x17, 0xb7, 0xf2, 0x74, 0xd6, 0x94, 0xa6, 0xb2, 0x49, 0x18, 0x0c, 0x13, 0x9b, 0x44, 0x6a, 0x89, + 0xcb, 0x52, 0x1a, 0xbf, 0x80, 0x72, 0x48, 0xa2, 0x49, 0xe0, 0x47, 0x24, 0x52, 0x61, 0x2b, 0xbf, + 0x5d, 0xd9, 0xfd, 0xf5, 0xda, 0x6b, 0x32, 0x52, 0x84, 0xb6, 0x1f, 0x87, 0x53, 0x63, 0x8e, 0x88, + 0x03, 0xd8, 0x8c, 0x88, 0x9d, 0x84, 0x4e, 0x3c, 0x35, 0x87, 0x64, 0xe4, 0xf8, 0x0e, 0xb3, 0x54, + 0x2b, 0xec, 0xd0, 0x7f, 0xb1, 0xfa, 0x4c, 0x02, 0xe4, 0x60, 0x8e, 0x61, 0xdc, 0x89, 0xae, 0x33, + 0xf1, 0xd7, 0xa0, 0xa4, 0x6c, 0x75, 0x83, 0x6d, 0x67, 0xfd, 0x49, 0x0c, 0xf2, 0x6d, 0xe2, 0x84, + 0xc4, 0x23, 0x7e, 0x6c, 0xcc, 0xd0, 0xb0, 0x0d, 0x55, 0x72, 0x19, 0x93, 0xd0, 0xb7, 0x5c, 0x73, + 0x18, 0xd8, 0x91, 0x5a, 0x63, 0x7b, 0x58, 0xdd, 0x83, 0x6d, 0x61, 0x7d, 0x10, 0xd8, 0x09, 0xc5, + 0xb6, 0x28, 0xdb, 0xd8, 0x20, 0x73, 0x76, 0x84, 0xff, 0x00, 0x40, 0x69, 0x3f, 0x62, 0xa7, 0x74, + 0x8b, 0x6d, 0xe0, 0x37, 0x6b, 0xfb, 0xa3, 0x3d, 0x83, 0xe0, 0x0e, 0xc9, 0x60, 0xd6, 0x03, 0xa8, + 0x2d, 0xba, 0x0b, 0x23, 0xc8, 0xbf, 0x24, 0x53, 0x91, 0x1e, 0x74, 0x88, 0x0f, 0xa1, 0x70, 0x6e, + 0xb9, 0x09, 0x11, 0xb9, 0xf1, 0xe9, 0xca, 0x0b, 0x48, 0x91, 0x0d, 0x6e, 0xff, 0x45, 0xee, 0x73, + 0xa9, 0x7e, 0x0c, 0xb7, 0xae, 0xac, 0x67, 0xc9, 0x8c, 0x3f, 0x5d, 0x9c, 0xf1, 0xfd, 0x26, 0x4f, + 0xf0, 0x66, 0x9a, 0xe0, 0xcd, 0xaf, 0xa8, 0x34, 0x03, 0xdb, 0xd8, 0x83, 0xea, 0x42, 0x2a, 0xe0, + 0x0a, 0x94, 0x8e, 0x3b, 0x4f, 0x3b, 0xdd, 0x93, 0x0e, 0x7a, 0x0f, 0x2b, 0x20, 0x3f, 0x19, 0x0c, + 0x7a, 0x48, 0xc2, 0x65, 0x28, 0xd0, 0x51, 0x1f, 0xe5, 0x70, 0x11, 0x72, 0x27, 0x7d, 0x94, 0xc7, + 0x25, 0xc8, 0x9f, 0xf4, 0xfb, 0x48, 0xd6, 0x65, 0x45, 0x41, 0x65, 0x5d, 0x56, 0xca, 0x08, 0x74, + 0x59, 0xa9, 0xa2, 0x5a, 0xe3, 0xef, 0x45, 0x28, 0x77, 0x27, 0x24, 0x64, 0xbe, 0xa1, 0xf9, 0x1d, + 0x5b, 0xe3, 0x48, 0x95, 0x58, 0xd2, 0xb0, 0x31, 0x2b, 0x28, 0x89, 0xe7, 0x59, 0xe1, 0x94, 0xad, + 0x95, 0x16, 0x14, 0x4e, 0xe2, 0x2d, 0xa8, 0x0c, 0x49, 0x64, 0x87, 0x0e, 0x3b, 0x0c, 0x51, 0x14, + 0xb2, 0xac, 0xeb, 0x21, 0x24, 0xbf, 0x83, 0x10, 0xfa, 0x08, 0x36, 0x82, 0x74, 0x07, 0xa6, 0x33, + 0x54, 0x0b, 0x7c, 0x1d, 0x33, 0x9e, 0x36, 0xbc, 0x71, 0xb1, 0x30, 0xb3, 0xc5, 0xa2, 0xcc, 0x82, + 0xb3, 0xb5, 0xf2, 0xda, 0x67, 0xc7, 0xfa, 0x9a, 0x72, 0xa1, 0xce, 0xeb, 0x23, 0xb0, 0xb9, 0x67, + 0xf5, 0xed, 0x01, 0xc0, 0x90, 0x4c, 0x42, 0x62, 0x5b, 0x31, 0x19, 0xb2, 0xf2, 0xa1, 0x18, 0x19, + 0xce, 0x3b, 0xcc, 0xfb, 0xd3, 0x85, 0x94, 0xac, 0x32, 0xec, 0xbd, 0x1b, 0xec, 0xfa, 0x7b, 0x90, + 0x94, 0x3c, 0xa1, 0x1a, 0xff, 0xc8, 0x83, 0x92, 0x4e, 0x7a, 0x35, 0x2b, 0xa4, 0xeb, 0x59, 0x71, + 0x08, 0x45, 0xe6, 0x65, 0x4b, 0xcc, 0xb3, 0xb3, 0xba, 0xe3, 0x98, 0x99, 0x21, 0xcc, 0xf1, 0xef, + 0x41, 0x21, 0x97, 0x96, 0x37, 0x71, 0x09, 0xcd, 0xac, 0xf5, 0x5a, 0x59, 0xba, 0xde, 0x66, 0x5b, + 0x20, 0x70, 0x27, 0xcd, 0x00, 0xb1, 0xb5, 0x10, 0x06, 0x85, 0x35, 0x83, 0x3f, 0x03, 0xff, 0xea, + 0x28, 0xf8, 0x39, 0x54, 0x17, 0x66, 0x5f, 0xe2, 0x92, 0xcd, 0xac, 0x4b, 0xca, 0xff, 0x13, 0x8f, + 0xe6, 0x91, 0xdc, 0xf8, 0x67, 0x1e, 0x64, 0x7a, 0xef, 0xa1, 0xf3, 0xc7, 0x4e, 0xec, 0x12, 0x01, + 0xca, 0x89, 0xab, 0x3e, 0xce, 0x5d, 0xf7, 0xf1, 0x36, 0xa0, 0x98, 0x84, 0x5e, 0x64, 0x06, 0x23, + 0x33, 0x22, 0xe1, 0xb9, 0x63, 0x13, 0x51, 0x20, 0x6b, 0x8c, 0xdf, 0x1d, 0xf5, 0x39, 0x17, 0xeb, + 0x50, 0xb2, 0x03, 0x3f, 0xb6, 0xec, 0x58, 0x54, 0xc7, 0x4f, 0x56, 0x3e, 0xe4, 0x7d, 0x6e, 0x67, + 0xa4, 0x00, 0x14, 0xcb, 0x75, 0x6c, 0xe2, 0x47, 0x84, 0x55, 0xc1, 0x75, 0xb0, 0x8e, 0xb8, 0x9d, + 0x91, 0x02, 0xd0, 0xd2, 0x74, 0x4e, 0x42, 0x7a, 0xba, 0x6a, 0x91, 0xd7, 0x7d, 0x41, 0xe2, 0x17, + 0x0b, 0x91, 0x51, 0x62, 0x91, 0xf1, 0xcb, 0xb5, 0xae, 0x93, 0xaf, 0x8d, 0x8a, 0x77, 0xd4, 0x3f, + 0xdb, 0x50, 0x12, 0xe7, 0x45, 0xdb, 0x9c, 0x6f, 0x79, 0xa9, 0x4f, 0xd9, 0x98, 0x4e, 0x91, 0x84, + 0xae, 0x70, 0x25, 0x1d, 0x52, 0xd7, 0x13, 0xcf, 0x72, 0x5c, 0xe1, 0x37, 0x4e, 0x34, 0x76, 0xa0, + 0x24, 0x8e, 0x6a, 0x35, 0x98, 0xc6, 0x53, 0xb8, 0xbb, 0xb4, 0x8b, 0xad, 0x50, 0x28, 0xae, 0x83, + 0xfd, 0x2d, 0x07, 0x45, 0x5e, 0x04, 0xf0, 0x00, 0x2a, 0xdf, 0x44, 0x81, 0x6f, 0x8a, 0x52, 0x22, + 0xb1, 0x73, 0xf8, 0x6c, 0x65, 0x37, 0xe8, 0xfd, 0x6e, 0x47, 0x94, 0x13, 0xa0, 0x38, 0x02, 0xf5, + 0x63, 0xa8, 0x0e, 0x1d, 0xba, 0x02, 0xcf, 0xf1, 0xad, 0x38, 0x08, 0xc5, 0xe4, 0x8b, 0x4c, 0x7a, + 0xe7, 0x0f, 0x89, 0x35, 0x34, 0x03, 0xdf, 0x9d, 0xb2, 0xe3, 0x51, 0x0c, 0x85, 0x32, 0xba, 0xbe, + 0xbb, 0xe4, 0xde, 0x58, 0x78, 0x07, 0x4d, 0xbf, 0x09, 0x25, 0x51, 0xa9, 0x58, 0x74, 0x56, 0x76, + 0x37, 0xaf, 0x45, 0x40, 0xcb, 0x9f, 0x1a, 0xa9, 0x92, 0x2e, 0x2b, 0x32, 0x2a, 0x34, 0xbe, 0x2b, + 0x01, 0xcc, 0x37, 0x4e, 0xcf, 0x37, 0x24, 0x23, 0xe1, 0x5f, 0x3a, 0x9c, 0xa7, 0x7b, 0xe1, 0x35, + 0xe9, 0x5e, 0xbc, 0xee, 0x29, 0x15, 0x4a, 0x43, 0x32, 0xb2, 0x12, 0x37, 0x56, 0x4b, 0x3c, 0x59, + 0x04, 0xb9, 0x78, 0x54, 0xca, 0x95, 0xa3, 0xfa, 0x21, 0x54, 0xbc, 0xc4, 0x8d, 0x9d, 0x89, 0x4b, + 0xcc, 0x60, 0xa4, 0xc2, 0x96, 0xb4, 0x2d, 0x19, 0x90, 0xb2, 0xba, 0x23, 0x8a, 0xeb, 0x59, 0x97, + 0x8e, 0x97, 0x78, 0xec, 0x0a, 0x20, 0x19, 0x29, 0x89, 0x1f, 0xc1, 0x6d, 0x72, 0x69, 0xbb, 0x49, + 0xe4, 0x9c, 0x13, 0x33, 0xd5, 0xd9, 0x60, 0xf8, 0x68, 0x26, 0x78, 0x26, 0x94, 0x29, 0x8c, 0xe3, + 0x33, 0x95, 0xaa, 0x80, 0xe1, 0xe4, 0x15, 0x18, 0xa1, 0x53, 0xbb, 0x0a, 0x23, 0x94, 0xef, 0x03, + 0x78, 0xd6, 0xa5, 0xe9, 0x12, 0x7f, 0x1c, 0x9f, 0xa9, 0xb7, 0xb6, 0xa4, 0x6d, 0xd9, 0x28, 0x7b, + 0xd6, 0xe5, 0x11, 0x63, 0x30, 0xb1, 0xe3, 0xa7, 0x62, 0x24, 0xc4, 0x8e, 0x2f, 0xc4, 0x2a, 0x94, + 0x26, 0x56, 0x4c, 0x7d, 0xa8, 0xde, 0xe6, 0x67, 0x24, 0x48, 0x7a, 0x46, 0x14, 0xd7, 0x89, 0x89, + 0x17, 0xa9, 0x9b, 0xcc, 0x4e, 0xf1, 0xac, 0x4b, 0x8d, 0xd2, 0x4c, 0xe8, 0xf8, 0x42, 0x78, 0x57, + 0x08, 0x1d, 0x9f, 0x0b, 0x3f, 0x82, 0x8d, 0xc4, 0x77, 0xbe, 0x4d, 0x88, 0x90, 0xbf, 0xcf, 0x56, + 0x5e, 0xe1, 0x3c, 0xae, 0xf2, 0x63, 0xa8, 0x51, 0xf0, 0x49, 0x48, 0x2f, 0x84, 0xb1, 0x43, 0x22, + 0x55, 0x65, 0x20, 0x55, 0xcf, 0xba, 0xec, 0xcd, 0x98, 0x4c, 0xcd, 0xf1, 0xb3, 0x6a, 0x1f, 0x08, + 0x35, 0xc7, 0xcf, 0xa8, 0xd5, 0x41, 0x09, 0xf9, 0xad, 0x69, 0xa8, 0xd6, 0xf9, 0x6d, 0x31, 0xa5, + 0x69, 0xf0, 0x58, 0x61, 0x68, 0x4d, 0xd5, 0x06, 0x13, 0x70, 0x02, 0xbf, 0x00, 0x39, 0x9e, 0x4e, + 0x88, 0xfa, 0x23, 0xf6, 0xfe, 0xd5, 0x6e, 0x90, 0xa0, 0x99, 0x61, 0xdf, 0xa1, 0xd1, 0x3c, 0x98, + 0x4e, 0x48, 0x64, 0x30, 0xd8, 0xc6, 0x05, 0xdc, 0x5d, 0x2a, 0x5e, 0x7c, 0x1e, 0x94, 0xa1, 0xd0, + 0x32, 0x8c, 0xd6, 0x73, 0x24, 0x51, 0xfe, 0x5e, 0xb7, 0x7b, 0xd4, 0x6e, 0x75, 0x50, 0x8e, 0x12, + 0x5a, 0x67, 0xd0, 0x3e, 0x6c, 0x1b, 0x28, 0x4f, 0xdf, 0x10, 0x9d, 0xe3, 0xa3, 0x23, 0x24, 0x63, + 0x80, 0x62, 0xe7, 0xf8, 0xd9, 0x5e, 0xdb, 0x40, 0x05, 0x3a, 0xee, 0xee, 0xe9, 0xed, 0xfd, 0x01, + 0x2a, 0xd2, 0x71, 0x7f, 0x60, 0x68, 0x9d, 0x43, 0x54, 0xd2, 0x65, 0x45, 0x42, 0x39, 0x5d, 0x56, + 0x72, 0x28, 0xcf, 0xb3, 0x6b, 0xf6, 0xae, 0xc0, 0xe8, 0x8e, 0x2e, 0x2b, 0x77, 0xd0, 0xa6, 0x2e, + 0x2b, 0x3f, 0x40, 0xaa, 0x2e, 0x2b, 0x1f, 0xa2, 0x7b, 0xba, 0xac, 0xdc, 0x43, 0xf7, 0x75, 0x59, + 0xb9, 0x8f, 0x1e, 0xe8, 0xb2, 0xf2, 0x00, 0x35, 0x74, 0x59, 0xf9, 0x18, 0x3d, 0xd4, 0x65, 0xe5, + 0x21, 0x7a, 0xa4, 0xcb, 0xca, 0x23, 0xd4, 0x6c, 0xfc, 0x59, 0x82, 0xfc, 0xc0, 0x1a, 0xaf, 0xd0, + 0x5f, 0xaf, 0x15, 0x99, 0xfc, 0xdb, 0x2f, 0x32, 0x7c, 0x8b, 0x8d, 0x7f, 0x4b, 0x70, 0x67, 0xc9, + 0x73, 0x1c, 0x8f, 0x32, 0x37, 0x70, 0x89, 0x35, 0x41, 0xfd, 0x4d, 0x9e, 0xf7, 0x33, 0x9e, 0xb8, + 0x88, 0xa5, 0xd8, 0xf5, 0x18, 0xaa, 0x0b, 0xa2, 0x25, 0xdd, 0xf0, 0xd9, 0x62, 0x37, 0xfc, 0xd9, + 0xda, 0xeb, 0x10, 0x5f, 0x57, 0x32, 0xed, 0xf2, 0x3f, 0x45, 0xa8, 0x2d, 0x4a, 0x71, 0x4f, 0x44, + 0x32, 0x9d, 0xb8, 0x76, 0x83, 0xe7, 0x06, 0x87, 0x69, 0xd2, 0xf0, 0xe4, 0xc1, 0xbb, 0x82, 0x9f, + 0xd3, 0x1e, 0x9b, 0xcf, 0xf4, 0x58, 0x1d, 0x72, 0x8e, 0xcf, 0x2e, 0x4b, 0xb5, 0xdd, 0x2f, 0x6e, + 0xba, 0x0a, 0xcd, 0x37, 0x72, 0x8e, 0x4f, 0xf7, 0x34, 0x72, 0x83, 0x0b, 0x56, 0xef, 0xdf, 0x60, + 0x4f, 0x5f, 0xba, 0xc1, 0x85, 0xc1, 0x90, 0x68, 0x45, 0xb5, 0x92, 0xf8, 0x2c, 0x08, 0x9d, 0x3f, + 0xf2, 0x27, 0x29, 0x6d, 0xe1, 0xbc, 0x65, 0xa0, 0x05, 0xc1, 0x71, 0xe8, 0xd2, 0xe2, 0x16, 0x07, + 0x2f, 0x09, 0x57, 0xe2, 0x9d, 0x43, 0x61, 0x0c, 0x2a, 0x64, 0xef, 0x84, 0x60, 0x42, 0x22, 0xd6, + 0x37, 0xd6, 0x7b, 0x27, 0x50, 0x33, 0x43, 0x98, 0xe3, 0xf1, 0xc2, 0x85, 0x8d, 0xbf, 0x63, 0x0f, + 0x6f, 0xba, 0xd5, 0xff, 0xc3, 0xd5, 0xed, 0x29, 0xc8, 0x34, 0x68, 0x30, 0x82, 0x8d, 0xc1, 0xf3, + 0x5e, 0xdb, 0xd4, 0x3a, 0x5f, 0xb5, 0x8e, 0xb4, 0x03, 0xf4, 0x1e, 0xae, 0x01, 0x30, 0xce, 0x5e, + 0xab, 0xaf, 0xed, 0x23, 0x69, 0xa6, 0xd1, 0xea, 0x69, 0xe6, 0xd3, 0xf6, 0x73, 0x94, 0xc3, 0xb7, + 0xa0, 0xc2, 0x38, 0xdd, 0xd6, 0xf1, 0xe0, 0xc9, 0x2e, 0xca, 0x37, 0x3e, 0x85, 0x9c, 0xe6, 0x53, + 0x43, 0xad, 0x93, 0x01, 0xda, 0x00, 0x45, 0xeb, 0x98, 0xbf, 0x3d, 0x6e, 0x1b, 0xb4, 0x46, 0x56, + 0xa1, 0xac, 0x75, 0xcc, 0x27, 0xed, 0xd6, 0x41, 0xdb, 0x40, 0xb9, 0xc6, 0x37, 0x20, 0x53, 0x07, + 0x53, 0xf4, 0x2f, 0x8f, 0xba, 0x27, 0x19, 0xb3, 0xdb, 0x50, 0xe5, 0x9c, 0x67, 0xbd, 0x23, 0x6d, + 0x5f, 0x1b, 0x20, 0x69, 0xc6, 0xea, 0xb5, 0xfa, 0xfd, 0x93, 0xae, 0x71, 0x80, 0x72, 0x78, 0x13, + 0x10, 0x63, 0xb5, 0x7a, 0x54, 0xab, 0x35, 0xd0, 0xba, 0x1d, 0x94, 0x9f, 0x73, 0xf7, 0xf7, 0xdb, + 0xfd, 0xbe, 0xb9, 0xdf, 0x3d, 0x68, 0x23, 0xb9, 0xf1, 0xaf, 0xdc, 0xbc, 0xda, 0x64, 0xde, 0xe7, + 0xf8, 0x4f, 0x52, 0xe6, 0xcb, 0x62, 0x38, 0x17, 0x88, 0xd2, 0x73, 0xfc, 0x26, 0x8f, 0xff, 0x65, + 0x3c, 0xee, 0xdc, 0xd9, 0x27, 0xc7, 0x8c, 0xa4, 0xfe, 0x09, 0xa8, 0x4b, 0x0c, 0x98, 0xd7, 0x68, + 0x0f, 0x64, 0x41, 0x27, 0x3e, 0x21, 0x71, 0xa2, 0xfe, 0x9d, 0xb4, 0xd4, 0xe4, 0x55, 0x11, 0xf2, + 0x72, 0x31, 0x42, 0xde, 0xfa, 0xde, 0xae, 0x05, 0xd8, 0x5f, 0x24, 0x7a, 0xad, 0x66, 0xb9, 0xd2, + 0xcb, 0x6e, 0xa0, 0xb2, 0x4e, 0x7d, 0x61, 0xf6, 0xfc, 0x87, 0x1f, 0x9e, 0xd8, 0xfc, 0xe7, 0x00, + 0x73, 0xe6, 0x3a, 0x4f, 0xdc, 0xbd, 0xfd, 0xdf, 0xb5, 0xc6, 0x4e, 0x7c, 0x96, 0x9c, 0x36, 0xed, + 0xc0, 0xdb, 0xa1, 0x0b, 0x79, 0x4c, 0xec, 0x20, 0x9a, 0x46, 0x31, 0x11, 0xa4, 0x58, 0xd7, 0xce, + 0xab, 0xff, 0x8e, 0x38, 0x2d, 0x32, 0xd9, 0x67, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xe3, 0xbc, + 0xdd, 0xdd, 0xb3, 0x18, 0x00, 0x00, } diff --git a/protoc-gen-swagger/options/openapiv2.proto b/protoc-gen-swagger/options/openapiv2.proto index 83cb564fa58..3dcac4d99ff 100644 --- a/protoc-gen-swagger/options/openapiv2.proto +++ b/protoc-gen-swagger/options/openapiv2.proto @@ -84,8 +84,9 @@ message Response { Schema schema = 2; // field 3 is reserved for 'headers'. reserved 3; - // field 3 is reserved for 'example'. - reserved 4; + // `Examples` gives per-mimetype response examples. + // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#example-object + map examples = 4; map extensions = 5; }