| Index: go/src/infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project_config.pb.go
|
| diff --git a/go/src/infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project_config.pb.go b/go/src/infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project_config.pb.go
|
| index 11b8f620e443de58c32629f1480e305e82b460cd..28176bebfa47f7182eafe983e2fa5994823b3723 100644
|
| --- a/go/src/infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project_config.pb.go
|
| +++ b/go/src/infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project_config.pb.go
|
| @@ -118,8 +118,12 @@ type Swarming struct {
|
| // {swarming_hostname}, {task_id}, {bucket} and {builder}. Defaults to:
|
| // https://{swarming_hostname}/user/task/{task_id}
|
| UrlFormat *string `protobuf:"bytes,2,opt,name=url_format,json=urlFormat" json:"url_format,omitempty"`
|
| + // Defines default values for builders.
|
| + BuilderDefaults *Swarming_Builder `protobuf:"bytes,9,opt,name=builder_defaults,json=builderDefaults" json:"builder_defaults,omitempty"`
|
| + // DEPRECATED: use builder_defaults.
|
| // Will be put to all swarming tasks.
|
| CommonSwarmingTags []string `protobuf:"bytes,3,rep,name=common_swarming_tags,json=commonSwarmingTags" json:"common_swarming_tags,omitempty"`
|
| + // DEPRECATED: use builder_defaults.
|
| // Colon-delimited key-value pair of common task dimensions.
|
| //
|
| // If value is not specified ("<key>:"), then it excludes a value for the
|
| @@ -129,13 +133,18 @@ type Swarming struct {
|
| // Swarming tasks are created only for builds for builders that are not
|
| // explicitly specified.
|
| Builders []*Swarming_Builder `protobuf:"bytes,5,rep,name=builders" json:"builders,omitempty"`
|
| + // DEPRECATED: use builder_defaults.
|
| // Defines a default recipe for all builders in this bucket.
|
| // A builder may override it or parts of it with something else.
|
| CommonRecipe *Swarming_Recipe `protobuf:"bytes,6,opt,name=common_recipe,json=commonRecipe" json:"common_recipe,omitempty"`
|
| + // DEPRECATED: use builder_defaults.
|
| // Maximum build execution time. Not to be confused with pending time.
|
| // If not set, defaults to server defaults.
|
| - CommonExecutionTimeoutSecs *int32 `protobuf:"varint,7,opt,name=common_execution_timeout_secs,json=commonExecutionTimeoutSecs" json:"common_execution_timeout_secs,omitempty"`
|
| - XXX_unrecognized []byte `json:"-"`
|
| + CommonExecutionTimeoutSecs *uint32 `protobuf:"varint,7,opt,name=common_execution_timeout_secs,json=commonExecutionTimeoutSecs" json:"common_execution_timeout_secs,omitempty"`
|
| + // Percentage of builds that should use a canary swarming task template.
|
| + // A value from 0 to 100.
|
| + TaskTemplateCanaryPercentage *uint32 `protobuf:"varint,8,opt,name=task_template_canary_percentage,json=taskTemplateCanaryPercentage" json:"task_template_canary_percentage,omitempty"`
|
| + XXX_unrecognized []byte `json:"-"`
|
| }
|
|
|
| func (m *Swarming) Reset() { *m = Swarming{} }
|
| @@ -157,6 +166,13 @@ func (m *Swarming) GetUrlFormat() string {
|
| return ""
|
| }
|
|
|
| +func (m *Swarming) GetBuilderDefaults() *Swarming_Builder {
|
| + if m != nil {
|
| + return m.BuilderDefaults
|
| + }
|
| + return nil
|
| +}
|
| +
|
| func (m *Swarming) GetCommonSwarmingTags() []string {
|
| if m != nil {
|
| return m.CommonSwarmingTags
|
| @@ -185,13 +201,20 @@ func (m *Swarming) GetCommonRecipe() *Swarming_Recipe {
|
| return nil
|
| }
|
|
|
| -func (m *Swarming) GetCommonExecutionTimeoutSecs() int32 {
|
| +func (m *Swarming) GetCommonExecutionTimeoutSecs() uint32 {
|
| if m != nil && m.CommonExecutionTimeoutSecs != nil {
|
| return *m.CommonExecutionTimeoutSecs
|
| }
|
| return 0
|
| }
|
|
|
| +func (m *Swarming) GetTaskTemplateCanaryPercentage() uint32 {
|
| + if m != nil && m.TaskTemplateCanaryPercentage != nil {
|
| + return *m.TaskTemplateCanaryPercentage
|
| + }
|
| + return 0
|
| +}
|
| +
|
| type Swarming_Recipe struct {
|
| // Repository URL of the recipe package.
|
| Repository *string `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
|
| @@ -207,6 +230,9 @@ type Swarming_Recipe struct {
|
| // properties_j: "a:1"
|
| // means property a is a number 1, not string "1".
|
| //
|
| + // If null, it means no property must be defined. In particular, it removes
|
| + // a default value for the property, if any.
|
| + //
|
| // Fields properties and properties_j can be used together, but cannot both
|
| // specify values for same property.
|
| PropertiesJ []string `protobuf:"bytes,4,rep,name=properties_j,json=propertiesJ" json:"properties_j,omitempty"`
|
| @@ -246,6 +272,12 @@ func (m *Swarming_Recipe) GetPropertiesJ() []string {
|
| return nil
|
| }
|
|
|
| +// A builder has a name, a category and specifies what should happen if a
|
| +// build is scheduled to that builder.
|
| +//
|
| +// SECURITY WARNING: if adding more fields to this message, keep in mind that
|
| +// a user that has permissions to schedule a build to the bucket, can override
|
| +// this config.
|
| type Swarming_Builder struct {
|
| // Name of the builder. Will be propagated to "builder" build tag and
|
| // "buildername" recipe property.
|
| @@ -258,17 +290,15 @@ type Swarming_Builder struct {
|
| SwarmingTags []string `protobuf:"bytes,2,rep,name=swarming_tags,json=swarmingTags" json:"swarming_tags,omitempty"`
|
| // Colon-delimited key-value pair of task dimensions.
|
| //
|
| - // If value is not specified ("<key>:"), then it excludes a value for the
|
| - // same key specified in common_dimensions.
|
| + // If value is not specified ("<key>:"), then it excludes a default value.
|
| Dimensions []string `protobuf:"bytes,3,rep,name=dimensions" json:"dimensions,omitempty"`
|
| // Specifies that a recipe to run.
|
| Recipe *Swarming_Recipe `protobuf:"bytes,4,opt,name=recipe" json:"recipe,omitempty"`
|
| // Swarming task priority.
|
| - Priority *int32 `protobuf:"varint,5,opt,name=priority" json:"priority,omitempty"`
|
| + Priority *uint32 `protobuf:"varint,5,opt,name=priority" json:"priority,omitempty"`
|
| // Maximum build execution time. Not to be confused with pending time.
|
| - // If not set, defaults to bucket's common_execution_timeout_secs.
|
| - ExecutionTimeoutSecs *int32 `protobuf:"varint,7,opt,name=execution_timeout_secs,json=executionTimeoutSecs" json:"execution_timeout_secs,omitempty"`
|
| - XXX_unrecognized []byte `json:"-"`
|
| + ExecutionTimeoutSecs *uint32 `protobuf:"varint,7,opt,name=execution_timeout_secs,json=executionTimeoutSecs" json:"execution_timeout_secs,omitempty"`
|
| + XXX_unrecognized []byte `json:"-"`
|
| }
|
|
|
| func (m *Swarming_Builder) Reset() { *m = Swarming_Builder{} }
|
| @@ -311,14 +341,14 @@ func (m *Swarming_Builder) GetRecipe() *Swarming_Recipe {
|
| return nil
|
| }
|
|
|
| -func (m *Swarming_Builder) GetPriority() int32 {
|
| +func (m *Swarming_Builder) GetPriority() uint32 {
|
| if m != nil && m.Priority != nil {
|
| return *m.Priority
|
| }
|
| return 0
|
| }
|
|
|
| -func (m *Swarming_Builder) GetExecutionTimeoutSecs() int32 {
|
| +func (m *Swarming_Builder) GetExecutionTimeoutSecs() uint32 {
|
| if m != nil && m.ExecutionTimeoutSecs != nil {
|
| return *m.ExecutionTimeoutSecs
|
| }
|
| @@ -398,42 +428,46 @@ func init() {
|
| }
|
|
|
| var fileDescriptor0 = []byte{
|
| - // 585 bytes of a gzipped FileDescriptorProto
|
| - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x53, 0x41, 0x8f, 0xd3, 0x3c,
|
| - 0x10, 0xfd, 0xda, 0x4d, 0xbb, 0xdd, 0xc9, 0x76, 0xd5, 0xcf, 0x14, 0x14, 0x55, 0x14, 0x41, 0xe1,
|
| - 0x00, 0x42, 0x6d, 0xa1, 0xe2, 0xc2, 0x09, 0xb5, 0xdb, 0x22, 0x40, 0x9c, 0xdc, 0x22, 0x8e, 0x51,
|
| - 0x36, 0x75, 0x83, 0x97, 0x24, 0x8e, 0x1c, 0x47, 0xb0, 0x27, 0x6e, 0xdc, 0xf9, 0xa5, 0xfc, 0x05,
|
| - 0x26, 0x76, 0x92, 0xa6, 0xab, 0x0a, 0x71, 0x89, 0x32, 0x33, 0x6f, 0x66, 0x9e, 0xdf, 0xb3, 0x81,
|
| - 0xf2, 0x78, 0x27, 0xbd, 0xa9, 0x12, 0x22, 0x4c, 0xa7, 0xe9, 0x37, 0x4f, 0x46, 0x3c, 0x0e, 0xc6,
|
| - 0x4a, 0x7a, 0x71, 0xca, 0x15, 0x17, 0xf1, 0xd4, 0x8f, 0xb6, 0x26, 0x7f, 0x95, 0xf9, 0x5f, 0x99,
|
| - 0xba, 0xca, 0x78, 0xb8, 0x65, 0x32, 0x9d, 0x26, 0x52, 0x28, 0x91, 0x7f, 0xaf, 0x99, 0xaf, 0x5c,
|
| - 0x5f, 0xc4, 0x3b, 0x1e, 0x4c, 0x74, 0x92, 0xd8, 0x1a, 0x64, 0xf0, 0xa3, 0x5f, 0x0d, 0x38, 0x99,
|
| - 0xfb, 0x21, 0x79, 0x06, 0x96, 0x14, 0x21, 0x73, 0x1a, 0x0f, 0x1b, 0x4f, 0x2f, 0x66, 0x77, 0x27,
|
| - 0x35, 0xcc, 0x04, 0xeb, 0x13, 0x8a, 0x45, 0xaa, 0x21, 0xa4, 0x0f, 0xad, 0x40, 0x8a, 0x2c, 0x71,
|
| - 0x9a, 0x88, 0x3d, 0xa3, 0x26, 0x20, 0x03, 0xe8, 0xf0, 0x2d, 0x8b, 0x15, 0x57, 0x37, 0xce, 0x89,
|
| - 0x2e, 0x54, 0xf1, 0x68, 0x0c, 0x56, 0xde, 0x4f, 0x00, 0xda, 0x74, 0x35, 0x5f, 0xae, 0x68, 0xef,
|
| - 0x3f, 0xd2, 0x85, 0xb3, 0xf5, 0xe5, 0xbb, 0xd5, 0xf2, 0xd3, 0x47, 0x0c, 0x1b, 0x79, 0xe9, 0x33,
|
| - 0x7d, 0xbf, 0xc1, 0xff, 0xe6, 0xe8, 0x77, 0x0b, 0x3a, 0xeb, 0xe2, 0xac, 0xf9, 0xdc, 0x2f, 0x22,
|
| - 0x55, 0xb1, 0x17, 0x19, 0x72, 0x38, 0xb7, 0x8c, 0xc9, 0x10, 0x20, 0x93, 0xa1, 0xbb, 0x13, 0x32,
|
| - 0xf2, 0x54, 0x41, 0xe7, 0x0c, 0x33, 0x6f, 0x75, 0x82, 0xbc, 0x80, 0xbe, 0x2f, 0xa2, 0x48, 0xc4,
|
| - 0x6e, 0xa9, 0x9c, 0xab, 0xbc, 0x20, 0x45, 0x7a, 0x27, 0x08, 0x24, 0xa6, 0x56, 0x2e, 0xda, 0x60,
|
| - 0x85, 0x3c, 0x87, 0xff, 0x8b, 0x8e, 0x2d, 0x8f, 0x18, 0x6a, 0x2c, 0xe2, 0xd4, 0xb1, 0x34, 0xbc,
|
| - 0x67, 0x0a, 0xcb, 0x2a, 0x4f, 0x5e, 0x43, 0xa7, 0x94, 0xdb, 0x69, 0x21, 0xc6, 0x9e, 0x0d, 0x0f,
|
| - 0x64, 0x2b, 0x27, 0x4f, 0x16, 0x06, 0x45, 0x2b, 0x38, 0x99, 0x43, 0xb7, 0xd8, 0x23, 0x99, 0xcf,
|
| - 0x13, 0xe6, 0xb4, 0x91, 0xbb, 0x3d, 0xbb, 0x7f, 0xbc, 0x9f, 0x6a, 0x0c, 0x3d, 0x37, 0x2d, 0x26,
|
| - 0xc2, 0x11, 0xc3, 0x62, 0x04, 0xfb, 0xce, 0xfc, 0x2c, 0xbf, 0x0c, 0xae, 0x42, 0x72, 0x22, 0x53,
|
| - 0x6e, 0xca, 0xfc, 0xd4, 0x39, 0xc5, 0x91, 0x2d, 0x3a, 0x30, 0xa0, 0x55, 0x89, 0xd9, 0x18, 0xc8,
|
| - 0x1a, 0x11, 0x83, 0x1f, 0x68, 0x87, 0x19, 0xf6, 0x00, 0x40, 0xb2, 0x44, 0xe0, 0x9d, 0x12, 0xf2,
|
| - 0xa6, 0x90, 0xb9, 0x96, 0x21, 0x04, 0x2c, 0x6d, 0x80, 0x91, 0x58, 0xff, 0xe7, 0x3d, 0x78, 0x9f,
|
| - 0x12, 0x26, 0x15, 0x67, 0xa5, 0xa6, 0xb5, 0x0c, 0x79, 0x04, 0xe7, 0xfb, 0xc8, 0xbd, 0x2e, 0x64,
|
| - 0xb4, 0xf7, 0xb9, 0x0f, 0x83, 0x9f, 0x4d, 0x38, 0x2d, 0xc4, 0xa9, 0x56, 0x34, 0x6a, 0x2b, 0xd0,
|
| - 0x7b, 0xdf, 0x53, 0x2c, 0xc8, 0x49, 0xb5, 0x8d, 0xf7, 0x65, 0x4c, 0x1e, 0x43, 0xf7, 0xd0, 0xd5,
|
| - 0xa6, 0x9e, 0x7f, 0x9e, 0xd6, 0xfd, 0x44, 0x8e, 0x35, 0x23, 0x0b, 0x8e, 0xfb, 0x0c, 0x79, 0x05,
|
| - 0xed, 0xc2, 0x00, 0xeb, 0x1f, 0x0c, 0x28, 0xb0, 0x39, 0xad, 0x44, 0x72, 0x21, 0xf3, 0xab, 0xde,
|
| - 0xd2, 0x2a, 0x57, 0x31, 0x4e, 0xbc, 0xf7, 0x57, 0x3f, 0xfa, 0xec, 0x88, 0x13, 0xa3, 0x0c, 0xda,
|
| - 0x0b, 0xbd, 0xf3, 0xa8, 0x0c, 0x4f, 0xc0, 0xf2, 0xfc, 0xd0, 0x9c, 0xd0, 0x9e, 0xf5, 0x6e, 0xbf,
|
| - 0x4d, 0xaa, 0xab, 0xe4, 0x25, 0x74, 0xca, 0xb3, 0xeb, 0x07, 0x68, 0xdf, 0x7a, 0xc5, 0xe5, 0x69,
|
| - 0x68, 0x05, 0x1b, 0xbd, 0x81, 0x8b, 0xc5, 0x1e, 0x71, 0xb9, 0x0b, 0xc8, 0x18, 0x4e, 0x4d, 0x90,
|
| - 0x22, 0x83, 0x7c, 0xdb, 0x9d, 0x83, 0x19, 0x86, 0x24, 0x2d, 0x31, 0x7f, 0x02, 0x00, 0x00, 0xff,
|
| - 0xff, 0x9e, 0x99, 0x6a, 0xfe, 0x9f, 0x04, 0x00, 0x00,
|
| + // 647 bytes of a gzipped FileDescriptorProto
|
| + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x94, 0x4b, 0x6f, 0x13, 0x31,
|
| + 0x10, 0xc7, 0x49, 0x9a, 0xe6, 0x31, 0x69, 0x4a, 0x30, 0x05, 0xad, 0xa2, 0x96, 0x47, 0xe0, 0x00,
|
| + 0x42, 0x4d, 0xa0, 0xe2, 0xc2, 0x09, 0xb5, 0x4d, 0x50, 0x41, 0x1c, 0x90, 0x1b, 0xc4, 0x71, 0xe5,
|
| + 0x3a, 0x4e, 0xd8, 0x76, 0x77, 0xbd, 0xb2, 0xbd, 0x82, 0x9e, 0xe0, 0xc4, 0x9d, 0x6f, 0xcc, 0xac,
|
| + 0xed, 0xdd, 0xa4, 0x55, 0x05, 0x5c, 0xaa, 0xcc, 0xcc, 0x6f, 0x66, 0xfe, 0xe3, 0x99, 0x2e, 0xd0,
|
| + 0x28, 0x5d, 0x28, 0x36, 0x36, 0x52, 0xc6, 0x7a, 0xac, 0xbf, 0x31, 0x95, 0x44, 0xe9, 0x72, 0xdf,
|
| + 0x28, 0x96, 0xea, 0xc8, 0x44, 0x32, 0x1d, 0xf3, 0x64, 0xee, 0xfc, 0x67, 0x39, 0xbf, 0x10, 0xe6,
|
| + 0x2c, 0x8f, 0xe2, 0xb9, 0x50, 0x7a, 0x9c, 0x29, 0x69, 0x64, 0xf1, 0xf7, 0x5c, 0x70, 0x13, 0x72,
|
| + 0x99, 0x2e, 0xa2, 0xe5, 0xc8, 0x3a, 0x49, 0xd7, 0x42, 0x8e, 0x1f, 0xfe, 0xae, 0xc1, 0xc6, 0x21,
|
| + 0x8f, 0xc9, 0x73, 0x68, 0x28, 0x19, 0x8b, 0xa0, 0xf6, 0xa8, 0xf6, 0x6c, 0xfb, 0xe0, 0xde, 0x68,
|
| + 0x8d, 0x19, 0x61, 0x7c, 0x44, 0x31, 0x48, 0x2d, 0x42, 0x76, 0x60, 0x73, 0xa9, 0x64, 0x9e, 0x05,
|
| + 0x75, 0x64, 0x3b, 0xd4, 0x19, 0x64, 0x00, 0xed, 0x68, 0x2e, 0x52, 0x13, 0x99, 0xcb, 0x60, 0xc3,
|
| + 0x06, 0x2a, 0x7b, 0xb8, 0x0f, 0x8d, 0x22, 0x9f, 0x00, 0x34, 0xe9, 0xf4, 0x70, 0x32, 0xa5, 0xfd,
|
| + 0x5b, 0xa4, 0x07, 0x9d, 0xd3, 0xe3, 0x93, 0xe9, 0xe4, 0xf3, 0x47, 0x34, 0x6b, 0x45, 0xe8, 0x0b,
|
| + 0x7d, 0x3f, 0xc3, 0xdf, 0xf5, 0xe1, 0xcf, 0x16, 0xb4, 0x4f, 0xfd, 0xac, 0x45, 0xdd, 0xaf, 0x52,
|
| + 0x9b, 0x94, 0x25, 0x4e, 0x1c, 0xd6, 0x2d, 0x6d, 0xb2, 0x07, 0x90, 0xab, 0x38, 0x5c, 0x48, 0x95,
|
| + 0x30, 0xe3, 0xe5, 0x74, 0xd0, 0xf3, 0xce, 0x3a, 0xc8, 0x09, 0xf4, 0xfd, 0x7b, 0x84, 0x73, 0xb1,
|
| + 0x60, 0x79, 0x6c, 0x74, 0xd0, 0x41, 0xa8, 0x7b, 0xb0, 0x77, 0x65, 0xbe, 0xb2, 0xd7, 0xe8, 0xc8,
|
| + 0xd1, 0xf4, 0xb6, 0x4f, 0x9b, 0xf8, 0x2c, 0xf2, 0x12, 0x76, 0xb8, 0x4c, 0x12, 0x99, 0x86, 0xe5,
|
| + 0x0e, 0x42, 0xc3, 0x96, 0x1a, 0x07, 0xdd, 0xc0, 0x96, 0xc4, 0xc5, 0xca, 0x32, 0x33, 0x8c, 0x90,
|
| + 0x17, 0x70, 0xc7, 0x67, 0xcc, 0xa3, 0x44, 0xe0, 0xb6, 0x64, 0xaa, 0x83, 0x86, 0xc5, 0xfb, 0x2e,
|
| + 0x30, 0xa9, 0xfc, 0xe4, 0x0d, 0xb4, 0xcb, 0xc5, 0x05, 0x9b, 0xc8, 0xfc, 0x53, 0x60, 0x85, 0x93,
|
| + 0x43, 0xe8, 0xf9, 0x3e, 0x4a, 0xf0, 0x28, 0x13, 0x41, 0xd3, 0x0e, 0xb8, 0x7b, 0x73, 0x3e, 0xb5,
|
| + 0x0c, 0xdd, 0x72, 0x29, 0xce, 0xc2, 0x12, 0x7b, 0xbe, 0x84, 0xf8, 0x2e, 0x78, 0x5e, 0x9c, 0x55,
|
| + 0x68, 0x50, 0x9c, 0xcc, 0x4d, 0xa8, 0x05, 0xd7, 0x41, 0x0b, 0x4b, 0xf6, 0xe8, 0xc0, 0x41, 0xd3,
|
| + 0x92, 0x99, 0x39, 0xe4, 0x14, 0x09, 0x32, 0x85, 0x87, 0x86, 0xe9, 0x8b, 0xd0, 0x88, 0x24, 0x8b,
|
| + 0x99, 0x11, 0x21, 0x67, 0x29, 0x53, 0x97, 0x61, 0x26, 0x14, 0xc7, 0x1b, 0x60, 0x4b, 0x11, 0xb4,
|
| + 0x6d, 0x91, 0xdd, 0x02, 0x9b, 0x79, 0xea, 0xd8, 0x42, 0x9f, 0x2a, 0x66, 0xf0, 0x03, 0xef, 0xc3,
|
| + 0x69, 0x7a, 0x00, 0xa0, 0x44, 0x26, 0xf1, 0xc8, 0xa5, 0xba, 0xf4, 0x7b, 0x5f, 0xf3, 0x10, 0x02,
|
| + 0x0d, 0x7b, 0x11, 0x6e, 0xe7, 0xf6, 0x77, 0x91, 0x83, 0x07, 0x8e, 0x2d, 0x4d, 0x24, 0xca, 0xd5,
|
| + 0xac, 0x79, 0xc8, 0x63, 0xd8, 0x5a, 0x59, 0xe1, 0xb9, 0xdf, 0x46, 0x77, 0xe5, 0xfb, 0x30, 0xf8,
|
| + 0x55, 0x87, 0x96, 0x7f, 0xe3, 0xaa, 0x45, 0x6d, 0xad, 0x05, 0x1e, 0x23, 0x47, 0xe1, 0xcb, 0x42,
|
| + 0x54, 0xd3, 0x1d, 0x63, 0x69, 0x93, 0x27, 0xd0, 0xbb, 0x7a, 0x1c, 0x75, 0x5b, 0x7f, 0x4b, 0xaf,
|
| + 0x9f, 0x05, 0x6a, 0x5c, 0xbb, 0x07, 0xaf, 0x71, 0xe5, 0x21, 0xaf, 0xa1, 0xe9, 0xf7, 0xd8, 0xf8,
|
| + 0x8f, 0x3d, 0x7a, 0xb6, 0x90, 0x95, 0xa9, 0x48, 0xaa, 0xe2, 0x7f, 0x6f, 0xd3, 0xbe, 0x73, 0x65,
|
| + 0x63, 0xc5, 0xfb, 0x7f, 0x5d, 0xeb, 0x8e, 0xb8, 0x61, 0xa1, 0xc3, 0x1c, 0x9a, 0x47, 0xb6, 0xe7,
|
| + 0x8d, 0xcf, 0xf0, 0x14, 0x1a, 0x8c, 0xc7, 0x6e, 0xc2, 0xee, 0x41, 0xff, 0xfa, 0xc7, 0x82, 0xda,
|
| + 0x28, 0x79, 0x05, 0xed, 0x72, 0x76, 0xfb, 0x45, 0xe8, 0x5e, 0xfb, 0xac, 0x94, 0xd3, 0xd0, 0x0a,
|
| + 0x1b, 0xbe, 0x85, 0xed, 0xa3, 0x15, 0x71, 0xbc, 0x58, 0x92, 0x7d, 0x68, 0x39, 0x43, 0xa3, 0x82,
|
| + 0xa2, 0xdb, 0xdd, 0x2b, 0x35, 0x9c, 0x48, 0x5a, 0x32, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x69,
|
| + 0x62, 0xb7, 0xdd, 0x30, 0x05, 0x00, 0x00,
|
| }
|
|
|