From 6cd8e4f7aebad37b8440d664c3285f8b8f03fb21 Mon Sep 17 00:00:00 2001 From: Ryan Currah Date: Fri, 17 May 2024 13:28:17 -0400 Subject: [PATCH] feat(eventsources/bitbucketserver): add OneEventPerChange config option for webhook event handling Add OneEventPerChange config option to control whether to process each change in a repo:refs_changed webhook event as a separate event. This allows independent processing of each tag or reference update in a single webhook event useful for triggering distinct workflows in Argo Workflows. Signed-off-by: Ryan Currah --- api/event-source.html | 17 +- api/event-source.md | 22 +- api/jsonschema/schema.json | 6 +- api/openapi-spec/swagger.json | 6 +- eventsources/sources/bitbucketserver/start.go | 251 +++-- pkg/apis/eventsource/v1alpha1/generated.pb.go | 967 +++++++++--------- pkg/apis/eventsource/v1alpha1/generated.proto | 25 +- .../eventsource/v1alpha1/openapi_generated.go | 9 +- pkg/apis/eventsource/v1alpha1/types.go | 24 +- 9 files changed, 772 insertions(+), 555 deletions(-) diff --git a/api/event-source.html b/api/event-source.html index b85496ceb1..33ddec1a0c 100644 --- a/api/event-source.html +++ b/api/event-source.html @@ -917,7 +917,7 @@

BitbucketBasicAuth BitbucketAuth)

-

BasicAuth holds the information required to authenticate user via basic auth mechanism

+

BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism

@@ -1252,6 +1252,21 @@

BitbucketServerEventSou

+ + + +
+oneEventPerChange
+ +bool + +
+(Optional) +

OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate event. This setting is useful when multiple tags are +pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the +BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a +single webhook event.

+
accessToken
diff --git a/api/event-source.md b/api/event-source.md index e2af9a372d..afe75eaf95 100644 --- a/api/event-source.md +++ b/api/event-source.md @@ -966,8 +966,8 @@ BitbucketBasicAuth

-BasicAuth holds the information required to authenticate user via basic -auth mechanism +BitbucketBasicAuth holds the information required to authenticate user +via basic auth mechanism

@@ -1318,6 +1318,24 @@ under review. + + + +
+oneEventPerChange
bool +
+(Optional) +

+OneEventPerChange controls whether to process each change in a +repo:refs_changed webhook event as a separate event. This setting is +useful when multiple tags are pushed simultaneously for the same commit, +and each tag needs to independently trigger an action, such as a +distinct workflow in Argo Workflows. When enabled, the +BitbucketServerEventSource publishes an individual +BitbucketServerEventData for each change, ensuring independent +processing of each tag or reference update in a single webhook event. +

+
accessToken
Kubernetes core/v1.SecretKeySelector diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index da379ed97b..bcc81266da 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -1055,7 +1055,7 @@ "type": "object" }, "io.argoproj.eventsource.v1alpha1.BitbucketBasicAuth": { - "description": "BasicAuth holds the information required to authenticate user via basic auth mechanism", + "description": "BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism", "properties": { "password": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", @@ -1186,6 +1186,10 @@ "description": "Metadata holds the user defined metadata which will passed along the event payload.", "type": "object" }, + "oneEventPerChange": { + "description": "OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate event. This setting is useful when multiple tags are pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a single webhook event.", + "type": "boolean" + }, "projectKey": { "description": "DeprecatedProjectKey is the key of project for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", "type": "string" diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 0f76d2c554..0aa283e287 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -1047,7 +1047,7 @@ } }, "io.argoproj.eventsource.v1alpha1.BitbucketBasicAuth": { - "description": "BasicAuth holds the information required to authenticate user via basic auth mechanism", + "description": "BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism", "type": "object", "required": [ "username", @@ -1182,6 +1182,10 @@ "type": "string" } }, + "oneEventPerChange": { + "description": "OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate event. This setting is useful when multiple tags are pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a single webhook event.", + "type": "boolean" + }, "projectKey": { "description": "DeprecatedProjectKey is the key of project for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", "type": "string" diff --git a/eventsources/sources/bitbucketserver/start.go b/eventsources/sources/bitbucketserver/start.go index 39a659e030..57389f7744 100644 --- a/eventsources/sources/bitbucketserver/start.go +++ b/eventsources/sources/bitbucketserver/start.go @@ -33,7 +33,7 @@ import ( bitbucketv1 "github.com/gfleury/go-bitbucket-v1" "github.com/mitchellh/mapstructure" - "golang.org/x/exp/slices" + "go.uber.org/zap" "github.com/argoproj/argo-events/common" "github.com/argoproj/argo-events/common/logging" @@ -42,7 +42,6 @@ import ( "github.com/argoproj/argo-events/eventsources/sources" "github.com/argoproj/argo-events/pkg/apis/events" "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1" - "go.uber.org/zap" ) // controller controls the webhook operations @@ -98,56 +97,35 @@ func (router *Router) HandleRoute(writer http.ResponseWriter, request *http.Requ return } - // When SkipBranchRefsChangedOnOpenPR is enabled and webhook event type is repo:refs_changed, - // check if a Pull Request is opened for the commit, if one is opened the event will be skipped. - if bitbucketserverEventSource.SkipBranchRefsChangedOnOpenPR && slices.Contains(bitbucketserverEventSource.Events, "repo:refs_changed") { - refsChanged := refsChangedWebhookEvent{} - err := json.Unmarshal(body, &refsChanged) - if err != nil { - logger.Errorf("reading webhook body", zap.Error(err)) - common.SendErrorResponse(writer, err.Error()) - route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) - return - } - - if refsChanged.EventKey == "repo:refs_changed" && - len(refsChanged.Changes) > 0 && // Note refsChanged.Changes never has more or less than one change, not sure why Atlassian made it a list. - strings.EqualFold(refsChanged.Changes[0].Ref.Type, "BRANCH") && - !strings.EqualFold(refsChanged.Changes[0].Type, "DELETE") { - // Check if commit is associated to an open PR. - hasOpenPR, err := router.refsChangedHasOpenPullRequest(refsChanged.Repository.Project.Key, refsChanged.Repository.Slug, refsChanged.Changes[0].ToHash) - if err != nil { - logger.Errorf("checking if changed branch ref has an open pull request", zap.Error(err)) - common.SendErrorResponse(writer, err.Error()) - route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) - return - } - - // Do not publish this Branch repo:refs_changed event if a related Pull Request is already opened for the commit. - if hasOpenPR { - logger.Info("skipping publishing event, commit has an open pull request") - common.SendSuccessResponse(writer, "success") - return - } - } - } - - event := &events.BitbucketServerEventData{ - Headers: request.Header, - Body: (*json.RawMessage)(&body), - Metadata: router.bitbucketserverEventSource.Metadata, - } - - eventBody, err := json.Marshal(event) + // bitbucketEvents is a slice of byte slices, each representing an event from the Bitbucket webhook. + // By invoking webhookHandler, it processes the incoming webhook payload to either batch or separate changes + // based on configuration. Each change can thus be processed and published as an individual event. + bitbucketEvents, err := webhookHandler(request, logger, body, bitbucketserverEventSource, router) if err != nil { - logger.Errorw("failed to parse event", zap.Error(err)) - common.SendErrorResponse(writer, "invalid event") + logger.Errorw("failed to handle event", zap.Error(err)) + common.SendErrorResponse(writer, err.Error()) route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) return } - logger.Info("dispatching event on route's data channel") - route.DataCh <- eventBody + for _, bitbucketEvent := range bitbucketEvents { + event := &events.BitbucketServerEventData{ + Headers: request.Header, + Body: (*json.RawMessage)(&bitbucketEvent), + Metadata: router.bitbucketserverEventSource.Metadata, + } + + eventBody, jsonErr := json.Marshal(event) + if jsonErr != nil { + logger.Errorw("failed to parse event", zap.Error(jsonErr)) + common.SendErrorResponse(writer, "invalid event") + route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) + return + } + + logger.Info("dispatching event on route's data channel") + route.DataCh <- eventBody + } logger.Info("request successfully processed") common.SendSuccessResponse(writer, "success") @@ -587,23 +565,6 @@ func newBitbucketServerClient(ctx context.Context, bitbucketConfig *bitbucketv1. return bitbucketv1.NewAPIClient(ctx, bitbucketConfig) } -type refsChangedWebhookEvent struct { - EventKey string `json:"eventKey"` - Repository struct { - Slug string `json:"slug"` - Project struct { - Key string `json:"key"` - } `json:"project"` - } `json:"repository"` - Changes []struct { - Ref struct { - Type string `json:"type"` - } `json:"ref"` - ToHash string `json:"toHash"` - Type string `json:"type"` - } `json:"changes"` -} - // customBitbucketClient returns a Bitbucket HTTP client that implements methods that gfleury/go-bitbucket-v1 does not. // Specifically getting Pull Requests associated to a commit is not supported by gfleury/go-bitbucket-v1. type customBitbucketClient struct { @@ -709,3 +670,165 @@ func (c *customBitbucketClient) GetCommitPullRequests(project, repository, commi return pullRequests, nil } + +// webhookHandler processes Bitbucket webhook events specifically looking for "repo:refs_changed" events. +// It first checks if the incoming webhook is configured to be handled (i.e., it's a "repo:refs_changed" event). +// If not, it logs the discrepancy and returns the raw event. +// +// For valid "repo:refs_changed" events, it: +// - Unmarshals the JSON body into a refsChangedWebhookEvent struct. +// - Optionally filters out changes associated with open pull requests if SkipBranchRefsChangedOnOpenPR is enabled. +// - Depending on the OneEventPerChange setting, it either batches all changes into one event or creates individual events for each change. +// +// It returns a slice of byte slices containing the processed or original webhook events, and any error encountered during processing. +func webhookHandler(request *http.Request, logger *zap.SugaredLogger, body []byte, bitbucketserverEventSource *v1alpha1.BitbucketServerEventSource, router *Router) ([][]byte, error) { + if request.Header.Get("X-Event-Key") != "repo:refs_changed" { + // Don't continue if this is not a repo:refs_changed webhook event. + logger.Debug("event is not a repo:refs_changed webhook") + return [][]byte{body}, nil + } + + refsChanged := refsChangedWebhookEvent{} + err := json.Unmarshal(body, &refsChanged) + if err != nil { + return nil, fmt.Errorf("decoding repo:refs_changed webhook: %w", err) + } + + // When SkipBranchRefsChangedOnOpenPR is enabled, skip publishing the repo:refs_changed event if a Pull Request is already open for the commit. + // This prevents duplicate notifications when a branch is updated and a PR is already open for the latest commit. + if bitbucketserverEventSource.SkipBranchRefsChangedOnOpenPR { + err = filterChangesForOpenPRs(router, &refsChanged) + if err != nil { + return nil, fmt.Errorf("filtering changes for open prs: %w", err) + } + } + + if len(refsChanged.Changes) == 0 { + // No changes are present in the refsChanged event. Skip processing event + return [][]byte{}, nil + } + + var bitbucketEvents [][]byte + + // Handle event batching based on OneEventPerChange configuration. + // If enabled, split the refsChanged event into individual events, one per change. + // Otherwise, send the entire refsChanged event as a single event. + if bitbucketserverEventSource.OneEventPerChange { + for _, change := range refsChanged.Changes { + rc := refsChanged + + rc.Changes = []refsChangedWebHookEventChange{change} + + rcBytes, jsonErr := json.Marshal(&rc) + if jsonErr != nil { + return nil, fmt.Errorf("encoding repo:refs_changed webhook: %w", jsonErr) + } + + bitbucketEvents = append(bitbucketEvents, rcBytes) + } + } else { + bitbucketEvents = append(bitbucketEvents, body) + } + + return bitbucketEvents, nil +} + +// filterChangesForOpenPRs removes changes from the refsChanged webhook event that are linked to open pull requests. +// It examines each change to determine if it pertains to a "BRANCH" that has not been deleted. +// For each relevant change, it checks whether there is an open pull request using the commit's hash. +// Changes with open PRs are excluded from the final list. The modified list of changes is then reassigned +// back to refsChanged.Changes. +func filterChangesForOpenPRs(router *Router, refsChanged *refsChangedWebhookEvent) error { + var keptChanges []refsChangedWebHookEventChange + + for _, change := range refsChanged.Changes { + c := change + + if c.Ref.Type != "BRANCH" || c.Type == "DELETE" { + keptChanges = append(keptChanges, c) + continue + } + + // Check if the current commit is associated with an open PR. + hasOpenPR, hasOpenPrErr := router.refsChangedHasOpenPullRequest( + refsChanged.Repository.Project.Key, + refsChanged.Repository.Slug, + c.ToHash, // Check for the current change's commit hash + ) + if hasOpenPrErr != nil { + return fmt.Errorf("checking if changed branch ref has an open pull request: %w", hasOpenPrErr) + } + + if !hasOpenPR { + keptChanges = append(keptChanges, c) + } + } + + refsChanged.Changes = keptChanges + + return nil +} + +type refsChangedWebhookEvent struct { + EventKey string `json:"eventKey"` + Date string `json:"date"` + Actor struct { + Name string `json:"name"` + EmailAddress string `json:"emailAddress"` + ID int `json:"id"` + DisplayName string `json:"displayName"` + Active bool `json:"active"` + Slug string `json:"slug"` + Type string `json:"type"` + Links struct { + Self []struct { + Href string `json:"href"` + } `json:"self"` + } `json:"links"` + } `json:"actor"` + Repository struct { + Slug string `json:"slug"` + ID int `json:"id"` + Name string `json:"name"` + HierarchyID string `json:"hierarchyId"` + ScmID string `json:"scmId"` + State string `json:"state"` + StatusMessage string `json:"statusMessage"` + Forkable bool `json:"forkable"` + Project struct { + Key string `json:"key"` + ID int `json:"id"` + Name string `json:"name"` + Public bool `json:"public"` + Type string `json:"type"` + Links struct { + Self []struct { + Href string `json:"href"` + } `json:"self"` + } `json:"links"` + } `json:"project"` + Public bool `json:"public"` + Links struct { + Clone []struct { + Href string `json:"href"` + Name string `json:"name"` + } `json:"clone"` + Self []struct { + Href string `json:"href"` + } `json:"self"` + } `json:"links"` + } `json:"repository"` + Changes []refsChangedWebHookEventChange `json:"changes"` +} + +type refsChangedWebHookEventChange struct { + Ref struct { + ID string `json:"id"` + DisplayID string `json:"displayId"` + Type string `json:"type"` + } `json:"ref"` + RefID string `json:"refId"` + FromHash string `json:"fromHash"` + ToHash string `json:"toHash"` + Type string `json:"type"` +} diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go index aa9bbeda68..3eb0c65104 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.pb.go +++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go @@ -1770,466 +1770,467 @@ func init() { } var fileDescriptor_c9ac5d6cd016403b = []byte{ - // 7331 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x6c, 0x24, 0xc7, - 0x75, 0xa8, 0x86, 0x33, 0x1c, 0xce, 0x9c, 0xe1, 0xb3, 0x76, 0xb5, 0x1a, 0xd1, 0xda, 0xc7, 0xa5, - 0xe0, 0x85, 0x74, 0xaf, 0x44, 0x5e, 0xed, 0xbd, 0xbe, 0x96, 0xa5, 0x6b, 0x19, 0x33, 0xe4, 0x72, - 0x97, 0x5a, 0x92, 0x3b, 0xac, 0xe6, 0x4a, 0x2b, 0xcb, 0x92, 0xdc, 0xec, 0x29, 0x0e, 0xdb, 0xec, - 0xe9, 0x1e, 0x76, 0xf7, 0xec, 0x2e, 0x17, 0x88, 0x6d, 0x18, 0x70, 0x62, 0xeb, 0x61, 0x5b, 0x49, - 0x9c, 0x04, 0x09, 0x0c, 0xc4, 0x49, 0xe0, 0x7c, 0x24, 0xc8, 0x5f, 0x8c, 0xfc, 0x06, 0xc9, 0x87, - 0x91, 0xe4, 0xc3, 0xc9, 0x97, 0x63, 0x03, 0x0b, 0x9b, 0x41, 0xfe, 0xf2, 0x13, 0xf8, 0x2b, 0xf9, - 0x0a, 0xea, 0xd1, 0xd5, 0xd5, 0x8f, 0xe1, 0x72, 0x38, 0x3d, 0xe4, 0xae, 0x91, 0x2f, 0x72, 0xea, - 0x9c, 0x3a, 0xe7, 0x74, 0xf5, 0x39, 0xa7, 0x4e, 0x9d, 0xaa, 0x3a, 0x0d, 0x6b, 0x2d, 0xd3, 0xdf, - 0xe9, 0x6e, 0xcd, 0x1b, 0x4e, 0x7b, 0x41, 0x77, 0x5b, 0x4e, 0xc7, 0x75, 0xbe, 0xc4, 0xfe, 0x79, - 0x91, 0xdc, 0x21, 0xb6, 0xef, 0x2d, 0x74, 0x76, 0x5b, 0x0b, 0x7a, 0xc7, 0xf4, 0x16, 0xf8, 0x6f, - 0xa7, 0xeb, 0x1a, 0x64, 0xe1, 0xce, 0x4b, 0xba, 0xd5, 0xd9, 0xd1, 0x5f, 0x5a, 0x68, 0x11, 0x9b, - 0xb8, 0xba, 0x4f, 0x9a, 0xf3, 0x1d, 0xd7, 0xf1, 0x1d, 0xf4, 0xd9, 0x90, 0xdc, 0x7c, 0x40, 0x8e, - 0xfd, 0xf3, 0x1e, 0xef, 0x3e, 0xdf, 0xd9, 0x6d, 0xcd, 0x53, 0x72, 0xf3, 0x0a, 0xb9, 0xf9, 0x80, - 0xdc, 0xec, 0xe7, 0x8e, 0x2c, 0x8d, 0xe1, 0xb4, 0xdb, 0x8e, 0x1d, 0xe7, 0x3f, 0xfb, 0xa2, 0x42, - 0xa0, 0xe5, 0xb4, 0x9c, 0x05, 0xd6, 0xbc, 0xd5, 0xdd, 0x66, 0xbf, 0xd8, 0x0f, 0xf6, 0x9f, 0x40, - 0x9f, 0xdb, 0x7d, 0xd9, 0x9b, 0x37, 0x1d, 0x4a, 0x72, 0xc1, 0x70, 0x5c, 0xfa, 0x60, 0x09, 0x92, - 0xff, 0x37, 0xc4, 0x69, 0xeb, 0xc6, 0x8e, 0x69, 0x13, 0x77, 0x3f, 0x94, 0xa3, 0x4d, 0x7c, 0x3d, - 0xad, 0xd7, 0x42, 0xaf, 0x5e, 0x6e, 0xd7, 0xf6, 0xcd, 0x36, 0x49, 0x74, 0xf8, 0x7f, 0x0f, 0xeb, - 0xe0, 0x19, 0x3b, 0xa4, 0xad, 0xc7, 0xfb, 0xcd, 0xfd, 0x47, 0x0e, 0x66, 0x6a, 0x6b, 0x1b, 0x8d, - 0x45, 0xc7, 0xf6, 0xba, 0x6d, 0xb2, 0xe8, 0xd8, 0xdb, 0x66, 0x0b, 0x7d, 0x0a, 0x2a, 0x06, 0x6f, - 0x70, 0x37, 0xf5, 0x56, 0x35, 0x77, 0x29, 0xf7, 0x5c, 0xb9, 0x7e, 0xe6, 0x47, 0x0f, 0x2e, 0x3e, - 0x71, 0xf0, 0xe0, 0x62, 0x65, 0x31, 0x04, 0x61, 0x15, 0x0f, 0x3d, 0x0f, 0x63, 0x7a, 0xd7, 0x77, - 0x6a, 0xc6, 0x6e, 0x75, 0xe4, 0x52, 0xee, 0xb9, 0x52, 0x7d, 0x4a, 0x74, 0x19, 0xab, 0xf1, 0x66, - 0x1c, 0xc0, 0xd1, 0x02, 0x94, 0xc9, 0x3d, 0xc3, 0xea, 0x7a, 0xe6, 0x1d, 0x52, 0xcd, 0x33, 0xe4, - 0x19, 0x81, 0x5c, 0xbe, 0x1a, 0x00, 0x70, 0x88, 0x43, 0x69, 0xdb, 0xce, 0xaa, 0x63, 0xe8, 0x56, - 0xb5, 0x10, 0xa5, 0xbd, 0xce, 0x9b, 0x71, 0x00, 0x47, 0x97, 0xa1, 0x68, 0x3b, 0x6f, 0xea, 0xa6, - 0x5f, 0x1d, 0x65, 0x98, 0x93, 0x02, 0xb3, 0xb8, 0xce, 0x5a, 0xb1, 0x80, 0xce, 0xfd, 0x5b, 0x05, - 0xa6, 0xe8, 0xb3, 0x5f, 0xa5, 0xca, 0xa1, 0x31, 0x5d, 0x42, 0xe7, 0x21, 0xdf, 0x75, 0x2d, 0xf1, - 0xc4, 0x15, 0xd1, 0x31, 0x7f, 0x0b, 0xaf, 0x62, 0xda, 0x8e, 0x5e, 0x86, 0x71, 0x72, 0xcf, 0xd8, - 0xd1, 0xed, 0x16, 0x59, 0xd7, 0xdb, 0x84, 0x3d, 0x66, 0xb9, 0x7e, 0x56, 0xe0, 0x8d, 0x5f, 0x55, - 0x60, 0x38, 0x82, 0xa9, 0xf6, 0xdc, 0xdc, 0xef, 0xf0, 0x67, 0x4e, 0xe9, 0x49, 0x61, 0x38, 0x82, - 0x89, 0xae, 0x00, 0xb8, 0x4e, 0xd7, 0x37, 0xed, 0xd6, 0x0d, 0xb2, 0xcf, 0x1e, 0xbe, 0x5c, 0x47, - 0xa2, 0x1f, 0x60, 0x09, 0xc1, 0x0a, 0x16, 0xfa, 0x35, 0x98, 0x31, 0x1c, 0xdb, 0x26, 0x86, 0x6f, - 0x3a, 0x76, 0x5d, 0x37, 0x76, 0x9d, 0xed, 0x6d, 0x36, 0x1a, 0x95, 0x2b, 0x2f, 0xcf, 0x1f, 0xd9, - 0xc8, 0xb8, 0x95, 0xcc, 0x8b, 0xfe, 0xf5, 0x27, 0x0f, 0x1e, 0x5c, 0x9c, 0x59, 0x8c, 0x93, 0xc5, - 0x49, 0x4e, 0xe8, 0x05, 0x28, 0x7d, 0xc9, 0x73, 0xec, 0xba, 0xd3, 0xdc, 0xaf, 0x16, 0xd9, 0x3b, - 0x98, 0x16, 0x02, 0x97, 0x5e, 0xd7, 0x6e, 0xae, 0xd3, 0x76, 0x2c, 0x31, 0xd0, 0x2d, 0xc8, 0xfb, - 0x96, 0x57, 0x1d, 0x63, 0xe2, 0xbd, 0xd2, 0xb7, 0x78, 0x9b, 0xab, 0x1a, 0x57, 0xdb, 0xfa, 0x18, - 0x7d, 0x57, 0x9b, 0xab, 0x1a, 0xa6, 0xf4, 0xd0, 0xfb, 0x39, 0x28, 0x51, 0xfb, 0x6a, 0xea, 0xbe, - 0x5e, 0x2d, 0x5d, 0xca, 0x3f, 0x57, 0xb9, 0xf2, 0x85, 0xf9, 0x81, 0x1c, 0xcc, 0x7c, 0x4c, 0x5b, - 0xe6, 0xd7, 0x04, 0xf9, 0xab, 0xb6, 0xef, 0xee, 0x87, 0xcf, 0x18, 0x34, 0x63, 0xc9, 0x1f, 0xfd, - 0x6e, 0x0e, 0xa6, 0x82, 0xb7, 0xba, 0x44, 0x0c, 0x4b, 0x77, 0x49, 0xb5, 0xcc, 0x1e, 0xf8, 0x76, - 0x16, 0x32, 0x45, 0x29, 0x8b, 0xe1, 0x38, 0x73, 0xf0, 0xe0, 0xe2, 0x54, 0x0c, 0x84, 0xe3, 0x52, - 0xa0, 0x0f, 0x72, 0x30, 0xbe, 0xd7, 0x25, 0x5d, 0x29, 0x16, 0x30, 0xb1, 0x6e, 0x65, 0x20, 0xd6, - 0x86, 0x42, 0x56, 0xc8, 0x34, 0x4d, 0x95, 0x5d, 0x6d, 0xc7, 0x11, 0xe6, 0xe8, 0x2b, 0x50, 0x66, - 0xbf, 0xeb, 0xa6, 0xdd, 0xac, 0x56, 0x98, 0x24, 0x38, 0x2b, 0x49, 0x28, 0x4d, 0x21, 0xc6, 0x04, - 0xf5, 0x33, 0xb2, 0x11, 0x87, 0x3c, 0xd1, 0x5d, 0x18, 0x13, 0x2e, 0xad, 0x3a, 0xce, 0xd8, 0x37, - 0x32, 0x60, 0x1f, 0xf1, 0xae, 0xf5, 0x0a, 0xf5, 0x5a, 0xa2, 0x09, 0x07, 0xdc, 0xd0, 0x6d, 0x28, - 0xe8, 0x5d, 0x7f, 0xa7, 0x3a, 0x71, 0x4c, 0x33, 0xa8, 0xeb, 0x9e, 0x69, 0xd4, 0xba, 0xfe, 0x4e, - 0xbd, 0x74, 0xf0, 0xe0, 0x62, 0x81, 0xfe, 0x87, 0x19, 0x45, 0x84, 0xa1, 0xdc, 0x75, 0x2d, 0x8d, - 0x18, 0x2e, 0xf1, 0xab, 0x93, 0x8c, 0xfc, 0x27, 0xe7, 0xf9, 0x7c, 0x41, 0x29, 0xcc, 0xd3, 0xa9, - 0x6b, 0xfe, 0xce, 0x4b, 0xf3, 0x1c, 0xe3, 0x06, 0xd9, 0xd7, 0x88, 0x45, 0x0c, 0xdf, 0x71, 0xf9, - 0x30, 0xdd, 0xc2, 0xab, 0x1c, 0x82, 0x43, 0x32, 0xc8, 0x87, 0xe2, 0xb6, 0x69, 0xf9, 0xc4, 0xad, - 0x4e, 0x65, 0x32, 0x4a, 0x8a, 0x55, 0x2d, 0x33, 0xba, 0x75, 0xa0, 0x1e, 0x9b, 0xff, 0x8f, 0x05, - 0xaf, 0xd9, 0x57, 0x61, 0x22, 0x62, 0x72, 0x68, 0x1a, 0xf2, 0xbb, 0x64, 0x9f, 0xbb, 0x6b, 0x4c, - 0xff, 0x45, 0x67, 0x61, 0xf4, 0x8e, 0x6e, 0x75, 0x85, 0x6b, 0xc6, 0xfc, 0xc7, 0x2b, 0x23, 0x2f, - 0xe7, 0xe6, 0x7e, 0x9c, 0x83, 0xa7, 0x7b, 0x1a, 0x0b, 0x9d, 0x5f, 0x9a, 0x5d, 0x57, 0xdf, 0xb2, - 0x08, 0xa3, 0xa6, 0xcc, 0x2f, 0x4b, 0xbc, 0x19, 0x07, 0x70, 0xea, 0x90, 0xe9, 0x34, 0xb6, 0x44, - 0x2c, 0xe2, 0x13, 0x31, 0xd3, 0x49, 0x87, 0x5c, 0x93, 0x10, 0xac, 0x60, 0x51, 0x8f, 0x68, 0xda, - 0x3e, 0x71, 0x6d, 0xdd, 0x12, 0xd3, 0x9d, 0xf4, 0x16, 0x2b, 0xa2, 0x1d, 0x4b, 0x0c, 0x65, 0x06, - 0x2b, 0x1c, 0x3a, 0x83, 0x7d, 0x16, 0xce, 0xa4, 0x68, 0xb7, 0xd2, 0x3d, 0x77, 0x68, 0xf7, 0x3f, - 0x1e, 0x81, 0x73, 0xe9, 0x76, 0x8a, 0x2e, 0x41, 0xc1, 0xa6, 0x13, 0x1c, 0x9f, 0x08, 0xc7, 0x05, - 0x81, 0x02, 0x9b, 0xd8, 0x18, 0x44, 0x1d, 0xb0, 0x91, 0xbe, 0x06, 0x2c, 0x7f, 0xa4, 0x01, 0x8b, - 0x04, 0x08, 0x85, 0x23, 0x04, 0x08, 0x47, 0x9c, 0xf5, 0x29, 0x61, 0xdd, 0x6d, 0x75, 0xdb, 0x54, - 0x09, 0xd9, 0xe4, 0x54, 0x0e, 0x09, 0xd7, 0x02, 0x00, 0x0e, 0x71, 0xe6, 0xde, 0x1f, 0x85, 0xa7, - 0x6b, 0xf7, 0xbb, 0x2e, 0x61, 0x3a, 0xea, 0x5d, 0xef, 0x6e, 0xa9, 0x01, 0xc3, 0x25, 0x28, 0x6c, - 0xef, 0x35, 0xed, 0xf8, 0x40, 0x2d, 0x6f, 0x2c, 0xad, 0x63, 0x06, 0x41, 0x1d, 0x38, 0xe3, 0xed, - 0xe8, 0x2e, 0x69, 0xd6, 0x0c, 0x83, 0x78, 0xde, 0x0d, 0xb2, 0x2f, 0x43, 0x87, 0x23, 0x1b, 0xe2, - 0x53, 0x07, 0x0f, 0x2e, 0x9e, 0xd1, 0x92, 0x54, 0x70, 0x1a, 0x69, 0xd4, 0x84, 0xa9, 0x58, 0x33, - 0x1b, 0xf4, 0x23, 0x73, 0x63, 0x13, 0x47, 0x8c, 0x1b, 0x8e, 0x93, 0xa4, 0x0a, 0xb0, 0xd3, 0xdd, - 0x62, 0xcf, 0xc2, 0x83, 0x12, 0xa9, 0x00, 0xd7, 0x79, 0x33, 0x0e, 0xe0, 0xe8, 0xb7, 0xd5, 0xa9, - 0x78, 0x94, 0x4d, 0xc5, 0xdb, 0x83, 0xba, 0xd5, 0x5e, 0x6f, 0xa4, 0x8f, 0x49, 0x39, 0x74, 0x62, - 0xc5, 0xc7, 0xc5, 0x89, 0xfd, 0x61, 0x11, 0x9e, 0x61, 0x8f, 0xce, 0x6c, 0x56, 0xf3, 0x1d, 0x57, - 0x6f, 0x11, 0x55, 0x1f, 0x5f, 0x07, 0xe4, 0xf1, 0xd6, 0x9a, 0x61, 0x38, 0x5d, 0xdb, 0x5f, 0x0f, - 0xcd, 0x78, 0x56, 0x8c, 0x05, 0xd2, 0x12, 0x18, 0x38, 0xa5, 0x17, 0x6a, 0xc1, 0x74, 0x18, 0xdb, - 0x69, 0xbe, 0x6b, 0xda, 0xad, 0xfe, 0xd4, 0xf6, 0xec, 0xc1, 0x83, 0x8b, 0xd3, 0x8b, 0x31, 0x12, - 0x38, 0x41, 0x94, 0xda, 0x24, 0x9b, 0x81, 0x99, 0xac, 0xf9, 0xa8, 0x4d, 0x6e, 0x04, 0x00, 0x1c, - 0xe2, 0x44, 0x02, 0xcc, 0xc2, 0x43, 0x03, 0xcc, 0xf3, 0x90, 0x6f, 0x5a, 0x7b, 0xc2, 0x2f, 0xc8, - 0xa0, 0x7e, 0x69, 0x75, 0x03, 0xd3, 0x76, 0x1a, 0x9b, 0x85, 0xda, 0x59, 0x64, 0xda, 0x69, 0x66, - 0xa1, 0x9d, 0x3d, 0x5e, 0xd1, 0xb1, 0x14, 0x74, 0xec, 0xe4, 0x14, 0x14, 0xbd, 0x0a, 0x13, 0x4d, - 0x62, 0x38, 0x4d, 0xb2, 0x46, 0x3c, 0x4f, 0x6f, 0x91, 0x6a, 0x89, 0x0d, 0xdc, 0x93, 0x42, 0xd0, - 0x89, 0x25, 0x15, 0x88, 0xa3, 0xb8, 0x68, 0x11, 0x66, 0xee, 0xea, 0xa6, 0xbf, 0x69, 0xb6, 0xc9, - 0x8a, 0xad, 0x11, 0xc3, 0xb1, 0x9b, 0x1e, 0x8b, 0x74, 0x47, 0xf9, 0xfa, 0xe1, 0xcd, 0x38, 0x10, - 0x27, 0xf1, 0x07, 0x33, 0x91, 0x9f, 0x14, 0x61, 0x96, 0x8d, 0xbf, 0x46, 0xdc, 0x3b, 0xa6, 0x41, - 0xea, 0x5d, 0x4f, 0x35, 0x90, 0x34, 0xa5, 0xce, 0x0d, 0x5d, 0xa9, 0x47, 0x8e, 0xa0, 0xd4, 0x0b, - 0x50, 0xf6, 0x9d, 0x8e, 0x69, 0xa4, 0x59, 0xc1, 0x66, 0x00, 0xc0, 0x21, 0x0e, 0x5a, 0x82, 0x69, - 0xaf, 0xbb, 0xe5, 0x19, 0xae, 0xd9, 0xa1, 0x7c, 0x15, 0x57, 0x5c, 0x15, 0xfd, 0xa6, 0xb5, 0x18, - 0x1c, 0x27, 0x7a, 0x04, 0xcb, 0xaf, 0xd1, 0x8c, 0x97, 0x5f, 0xfd, 0xad, 0x01, 0xbf, 0xab, 0xda, - 0xe0, 0x18, 0xb3, 0xc1, 0x56, 0x16, 0x36, 0x98, 0xaa, 0x03, 0xc7, 0xb2, 0xc0, 0xd2, 0x09, 0x5a, - 0xe0, 0x5b, 0xf0, 0xd4, 0x76, 0xd7, 0xb2, 0xf6, 0x37, 0xba, 0xba, 0x65, 0x6e, 0x9b, 0xa4, 0x49, - 0x5f, 0x94, 0xd7, 0xd1, 0x0d, 0xbe, 0x68, 0x2c, 0xd7, 0x2f, 0x0a, 0x91, 0x9f, 0x5a, 0x4e, 0x47, - 0xc3, 0xbd, 0xfa, 0x0f, 0x66, 0x5a, 0x3f, 0xcd, 0xc1, 0x44, 0xdd, 0xf4, 0xb7, 0xba, 0xc6, 0x2e, - 0xf1, 0xe9, 0x0a, 0x03, 0xb9, 0x30, 0xba, 0x45, 0x17, 0x1e, 0xc2, 0x84, 0x36, 0x06, 0x1c, 0x1e, - 0x49, 0x3c, 0x5c, 0xcd, 0x94, 0x0f, 0x1e, 0x5c, 0x1c, 0x65, 0x3f, 0x31, 0x67, 0x85, 0x6e, 0x01, - 0x38, 0x74, 0x61, 0xb3, 0xe9, 0xec, 0x12, 0xbb, 0xbf, 0x09, 0x69, 0x92, 0x46, 0x9c, 0x37, 0x6b, - 0x41, 0x67, 0xac, 0x10, 0x9a, 0xfb, 0x61, 0x0e, 0x50, 0x92, 0x3f, 0xba, 0x09, 0xa5, 0xae, 0x47, - 0xc3, 0x72, 0x31, 0x8d, 0x1e, 0x99, 0xd7, 0x38, 0x55, 0xa9, 0x5b, 0xa2, 0x2b, 0x96, 0x44, 0x28, - 0xc1, 0x8e, 0xee, 0x79, 0x77, 0x1d, 0xb7, 0xd9, 0x9f, 0xf0, 0x8c, 0x60, 0x43, 0x74, 0xc5, 0x92, - 0xc8, 0xdc, 0x2f, 0xc7, 0xe0, 0xac, 0x14, 0x3c, 0x16, 0x0b, 0x34, 0x59, 0x34, 0x7d, 0xdd, 0x71, - 0x76, 0x6f, 0xda, 0xcb, 0xa6, 0x6d, 0x7a, 0x3b, 0x62, 0x4d, 0x20, 0x63, 0x81, 0xa5, 0x04, 0x06, - 0x4e, 0xe9, 0x85, 0xbe, 0xad, 0x1a, 0xe8, 0x08, 0x33, 0x50, 0x3d, 0xab, 0x97, 0x7d, 0x5c, 0xd3, - 0x1c, 0xbb, 0x4b, 0xb6, 0x76, 0x1c, 0x67, 0x57, 0x44, 0xb7, 0x6b, 0x03, 0xca, 0xf3, 0x26, 0xa7, - 0xb6, 0xe8, 0xd8, 0x3e, 0xb9, 0xe7, 0xf3, 0x65, 0xba, 0x68, 0xc3, 0x01, 0x2b, 0xf4, 0x25, 0xb1, - 0x4c, 0x2f, 0x30, 0x96, 0xab, 0x59, 0x0d, 0x41, 0xea, 0xc2, 0x7d, 0x0e, 0x8a, 0xbc, 0x17, 0x8b, - 0x99, 0xcb, 0xdc, 0x55, 0xf0, 0x98, 0x17, 0x0b, 0x08, 0x7a, 0x11, 0x46, 0x9d, 0xbb, 0xb6, 0x08, - 0x61, 0xcb, 0xf5, 0xa7, 0xc4, 0x80, 0x4d, 0x2d, 0x91, 0x8e, 0x4b, 0x0c, 0xdd, 0x27, 0xcd, 0x9b, - 0x14, 0x8c, 0x39, 0x16, 0xfa, 0xff, 0x00, 0x54, 0x44, 0x62, 0x50, 0xcd, 0x62, 0x51, 0x45, 0xb9, - 0xfe, 0x8c, 0xe8, 0x73, 0x36, 0xec, 0xd3, 0x90, 0x38, 0x58, 0xc1, 0x47, 0xd7, 0x61, 0xd2, 0x25, - 0x1d, 0xc7, 0x33, 0x7d, 0xc7, 0xdd, 0xd7, 0xac, 0x6e, 0x8b, 0x79, 0xc5, 0x72, 0xfd, 0x92, 0xa0, - 0x50, 0x0d, 0x29, 0xe0, 0x08, 0x1e, 0x8e, 0xf5, 0x43, 0x1f, 0xe6, 0x60, 0x5c, 0x36, 0x99, 0x84, - 0x86, 0x08, 0xf9, 0x0c, 0x72, 0x3d, 0x72, 0x3c, 0x43, 0xf6, 0x61, 0x8e, 0x15, 0x2b, 0xfc, 0x70, - 0x84, 0xbb, 0xe2, 0xe6, 0xe1, 0x71, 0x59, 0x09, 0xdc, 0x87, 0x33, 0x29, 0x4f, 0x8b, 0x9e, 0x0d, - 0xf4, 0x81, 0x87, 0xfc, 0x13, 0xe2, 0xe1, 0x47, 0x23, 0x5a, 0xf0, 0x5a, 0xe2, 0x3d, 0xf2, 0xf8, - 0xe4, 0x9c, 0xc0, 0x9e, 0x3c, 0xfc, 0xed, 0xcd, 0xfd, 0x69, 0x05, 0x66, 0x25, 0x73, 0x3a, 0xc5, - 0x12, 0x57, 0xf5, 0x3b, 0x8a, 0x65, 0xe6, 0x4e, 0xce, 0x32, 0xa3, 0xaa, 0x3d, 0x32, 0xb0, 0x6a, - 0xe7, 0x8f, 0xa9, 0xda, 0xcf, 0x41, 0x49, 0xd0, 0xf5, 0xaa, 0x05, 0x66, 0xb7, 0xdc, 0x71, 0x8b, - 0x36, 0x2c, 0xa1, 0xe8, 0x37, 0xe3, 0x46, 0xc0, 0x97, 0xc6, 0xb7, 0xb3, 0x32, 0x02, 0xfe, 0x66, - 0xfa, 0x34, 0x85, 0xd0, 0xe9, 0x14, 0x7b, 0x3a, 0x9d, 0x5d, 0x38, 0xef, 0xed, 0x9a, 0x9d, 0xba, - 0xab, 0xdb, 0xc6, 0x0e, 0x26, 0xdb, 0xde, 0x22, 0xcb, 0xa8, 0x35, 0x6f, 0xda, 0x37, 0x3b, 0xc4, - 0x6e, 0x60, 0xe6, 0x58, 0x4a, 0xf5, 0x4f, 0x0a, 0x76, 0xe7, 0xb5, 0xc3, 0x90, 0xf1, 0xe1, 0xb4, - 0xd0, 0x6d, 0xa8, 0xe8, 0x2c, 0xe9, 0xc0, 0xe7, 0xfb, 0x52, 0x3f, 0x53, 0xe6, 0xd4, 0xc1, 0x83, - 0x8b, 0x95, 0x5a, 0xd8, 0x1b, 0xab, 0xa4, 0xd0, 0xbb, 0x30, 0x21, 0x94, 0x47, 0x24, 0x47, 0xcb, - 0xfd, 0xd0, 0x9e, 0xa1, 0x6b, 0xa1, 0x37, 0xd5, 0xfe, 0x38, 0x4a, 0x0e, 0xbd, 0x01, 0xe7, 0xb6, - 0x82, 0x77, 0xe1, 0xb1, 0x77, 0x51, 0xd7, 0x3d, 0x72, 0x0b, 0xaf, 0x32, 0x2f, 0x53, 0xae, 0x5f, - 0x10, 0xe3, 0x73, 0x2e, 0xf6, 0xc6, 0x04, 0x16, 0xee, 0xd1, 0xbb, 0xc7, 0xbc, 0x5e, 0x39, 0xd6, - 0xbc, 0x1e, 0x09, 0xbc, 0xc7, 0x33, 0x09, 0xbc, 0x7b, 0x7b, 0x86, 0x63, 0x05, 0xde, 0x13, 0x27, - 0x18, 0x78, 0x8b, 0xb5, 0xd0, 0x64, 0xc6, 0x6b, 0xa1, 0x57, 0x61, 0xc2, 0xd8, 0x21, 0xc6, 0x2e, - 0x4b, 0xf5, 0xde, 0xd1, 0x2d, 0x96, 0x34, 0x2f, 0x87, 0x2b, 0xea, 0x45, 0x15, 0x88, 0xa3, 0xb8, - 0x83, 0xcd, 0x12, 0xdf, 0xce, 0xc1, 0xd3, 0x3d, 0xfd, 0x01, 0xba, 0x12, 0x71, 0x99, 0xb9, 0xe8, - 0xd6, 0x62, 0x0f, 0x47, 0x39, 0xe8, 0xdc, 0xf1, 0x27, 0xa3, 0x70, 0x66, 0x51, 0xb7, 0x88, 0xdd, - 0xd4, 0x23, 0x93, 0xc6, 0x0b, 0x50, 0xf2, 0x8c, 0x1d, 0xd2, 0xec, 0x5a, 0x41, 0xba, 0x4a, 0xaa, - 0x87, 0x26, 0xda, 0xb1, 0xc4, 0x90, 0xf9, 0x74, 0x3a, 0x98, 0x23, 0x51, 0x6c, 0x39, 0x8e, 0x12, - 0x03, 0xbd, 0x02, 0x93, 0x22, 0x51, 0xec, 0xd8, 0x4b, 0xba, 0x4f, 0xbc, 0x6a, 0x9e, 0xf9, 0x36, - 0x44, 0xe5, 0xbd, 0x1a, 0x81, 0xe0, 0x18, 0x26, 0xe5, 0xe4, 0x9b, 0x6d, 0x72, 0xdf, 0xb1, 0x83, - 0xc5, 0xb5, 0xe4, 0xb4, 0x29, 0xda, 0xb1, 0xc4, 0x40, 0xdf, 0x4a, 0x66, 0x3a, 0xbf, 0x38, 0xa0, - 0xe6, 0xa6, 0x0c, 0x56, 0x1f, 0x76, 0xf4, 0xb5, 0x1c, 0x54, 0x3a, 0xc4, 0xf5, 0x4c, 0xcf, 0x27, - 0xb6, 0x41, 0x44, 0xa6, 0xf3, 0x66, 0x16, 0xd6, 0xd4, 0x08, 0xc9, 0x72, 0x47, 0xab, 0x34, 0x60, - 0x95, 0xe9, 0xe9, 0xac, 0xa2, 0x07, 0x33, 0x9c, 0x7b, 0x70, 0x76, 0x51, 0xf7, 0x8d, 0x9d, 0x6e, - 0x87, 0x5b, 0x74, 0xd7, 0xd5, 0x7d, 0xd3, 0xb1, 0xd1, 0xf3, 0x30, 0x46, 0x6c, 0x7d, 0xcb, 0x22, - 0xcd, 0xf8, 0x3e, 0xd1, 0x55, 0xde, 0x8c, 0x03, 0x38, 0xfa, 0x14, 0x54, 0xda, 0xfa, 0xbd, 0x25, - 0xd1, 0x53, 0xa8, 0xa9, 0x3c, 0x45, 0xb1, 0x16, 0x82, 0xb0, 0x8a, 0x37, 0xf7, 0x65, 0x38, 0xcb, - 0x59, 0xae, 0xe9, 0x1d, 0x65, 0x44, 0x8f, 0xb0, 0x25, 0xb3, 0x04, 0xd3, 0x86, 0x4b, 0x74, 0x9f, - 0xac, 0x6c, 0xaf, 0x3b, 0xfe, 0xd5, 0x7b, 0xa6, 0xe7, 0x8b, 0xbd, 0x19, 0x99, 0x0f, 0x5a, 0x8c, - 0xc1, 0x71, 0xa2, 0xc7, 0xdc, 0x77, 0xc6, 0x00, 0x5d, 0x6d, 0x9b, 0xbe, 0x1f, 0x0d, 0xea, 0x2e, - 0x43, 0x71, 0xcb, 0x75, 0x76, 0x65, 0x64, 0x29, 0xf7, 0x57, 0xea, 0xac, 0x15, 0x0b, 0x28, 0xf5, - 0x29, 0xc6, 0x8e, 0x6e, 0xdb, 0xc4, 0x0a, 0xc3, 0x30, 0xe9, 0x53, 0x16, 0x25, 0x04, 0x2b, 0x58, - 0xec, 0xbc, 0x09, 0xff, 0xa5, 0xe4, 0xbe, 0xc2, 0xf3, 0x26, 0x21, 0x08, 0xab, 0x78, 0x91, 0xa5, - 0x79, 0x21, 0xeb, 0xa5, 0xf9, 0x68, 0x06, 0x4b, 0xf3, 0xf4, 0x73, 0x18, 0xc5, 0x53, 0x39, 0x87, - 0x31, 0x76, 0xd4, 0x73, 0x18, 0xa5, 0x8c, 0x27, 0xbf, 0x8f, 0x54, 0x97, 0xc8, 0x97, 0x79, 0xef, - 0x0d, 0x6a, 0xff, 0x09, 0xf5, 0x3c, 0x56, 0x64, 0xf1, 0xd8, 0xac, 0xf5, 0x3e, 0x1e, 0x81, 0xe9, - 0xb8, 0xcb, 0x45, 0xf7, 0x61, 0xcc, 0xe0, 0x1e, 0x4a, 0xac, 0xb2, 0xb4, 0x81, 0x27, 0x9a, 0xa4, - 0xbf, 0x13, 0x87, 0x15, 0x38, 0x04, 0x07, 0x0c, 0xd1, 0x57, 0x73, 0x50, 0x36, 0x02, 0x27, 0x25, - 0xb2, 0x58, 0x03, 0xb3, 0x4f, 0x71, 0x7a, 0xfc, 0x04, 0x82, 0x84, 0xe0, 0x90, 0xe9, 0xdc, 0xcf, - 0x46, 0xa0, 0xa2, 0xfa, 0xa7, 0x2f, 0x2a, 0x5a, 0xc6, 0xc7, 0xe3, 0x7f, 0x2b, 0xb6, 0x2b, 0x0f, - 0xc5, 0x85, 0x42, 0x50, 0x6c, 0x6a, 0xcd, 0x37, 0xb7, 0x68, 0x68, 0x43, 0x5f, 0x4e, 0xe8, 0xa7, - 0xc2, 0x36, 0x45, 0x71, 0x3a, 0x50, 0xf0, 0x3a, 0xc4, 0x10, 0x8f, 0xbb, 0x9e, 0x9d, 0xda, 0x68, - 0x1d, 0x62, 0x84, 0x0e, 0x9d, 0xfe, 0xc2, 0x8c, 0x13, 0xba, 0x07, 0x45, 0xcf, 0xd7, 0xfd, 0xae, - 0x27, 0x32, 0x5c, 0x19, 0xaa, 0xaa, 0xc6, 0xe8, 0x86, 0x5e, 0x9c, 0xff, 0xc6, 0x82, 0xdf, 0xdc, - 0x35, 0x98, 0x49, 0xe8, 0x35, 0x75, 0xed, 0xe4, 0x5e, 0xc7, 0x25, 0x1e, 0x8d, 0x8e, 0xe2, 0xe1, - 0xe2, 0x55, 0x09, 0xc1, 0x0a, 0xd6, 0xdc, 0xcf, 0x73, 0x30, 0xa5, 0x50, 0x5a, 0x35, 0x3d, 0x1f, - 0x7d, 0x21, 0xf1, 0xaa, 0xe6, 0x8f, 0xf6, 0xaa, 0x68, 0x6f, 0xf6, 0xa2, 0xa4, 0x7d, 0x07, 0x2d, - 0xca, 0x6b, 0x72, 0x60, 0xd4, 0xf4, 0x49, 0xdb, 0x13, 0x59, 0xca, 0xd7, 0xb3, 0x1b, 0xb3, 0x30, - 0x9b, 0xb2, 0x42, 0x19, 0x60, 0xce, 0x67, 0xee, 0x6f, 0x96, 0x23, 0x8f, 0x48, 0xdf, 0x1f, 0x3b, - 0xee, 0x47, 0x9b, 0xea, 0x5d, 0x4f, 0xd9, 0x80, 0x0d, 0x8f, 0xfb, 0x29, 0x30, 0x1c, 0xc1, 0x44, - 0x7b, 0x50, 0xf2, 0x49, 0xbb, 0x63, 0xe9, 0x7e, 0x70, 0x46, 0xe0, 0xda, 0x80, 0x4f, 0xb0, 0x29, - 0xc8, 0xf1, 0x59, 0x2a, 0xf8, 0x85, 0x25, 0x1b, 0xd4, 0x86, 0x31, 0x8f, 0xef, 0x93, 0x08, 0x3d, - 0x5b, 0x1e, 0x90, 0x63, 0xb0, 0xeb, 0xc2, 0x9c, 0x87, 0xf8, 0x81, 0x03, 0x1e, 0xe8, 0xcb, 0x30, - 0xda, 0x36, 0x6d, 0xd3, 0x61, 0xd9, 0x91, 0xca, 0x95, 0xb7, 0xb2, 0x35, 0xa4, 0xf9, 0x35, 0x4a, - 0x9b, 0x4f, 0x03, 0xf2, 0x7d, 0xb1, 0x36, 0xcc, 0xd9, 0xb2, 0x83, 0x81, 0x86, 0x08, 0xaa, 0x45, - 0x8c, 0xfe, 0x85, 0x8c, 0x65, 0x90, 0x31, 0x7b, 0x74, 0x36, 0x0a, 0x9a, 0xb1, 0xe4, 0x8f, 0xee, - 0x43, 0x61, 0xdb, 0xb4, 0x88, 0xd8, 0x77, 0xbe, 0x9d, 0xb1, 0x1c, 0xcb, 0xa6, 0x45, 0xb8, 0x0c, - 0xe1, 0xc9, 0x14, 0xd3, 0x22, 0x98, 0xf1, 0x64, 0x03, 0xe1, 0x12, 0x4e, 0x43, 0x6c, 0xba, 0x65, - 0x3d, 0x10, 0x58, 0x90, 0x8f, 0x0d, 0x44, 0xd0, 0x8c, 0x25, 0x7f, 0xf4, 0xeb, 0xb9, 0x30, 0x6b, - 0xc8, 0x4f, 0x6b, 0xbe, 0x9d, 0xb1, 0x2c, 0x22, 0x57, 0xc3, 0x45, 0x91, 0x61, 0x7b, 0x22, 0x8f, - 0x78, 0x1f, 0x0a, 0x7a, 0x7b, 0xaf, 0x23, 0x42, 0x95, 0xac, 0xdf, 0x48, 0xad, 0xbd, 0xd7, 0x89, - 0xbd, 0x91, 0xda, 0xda, 0x46, 0x03, 0x33, 0x9e, 0xd4, 0x34, 0x76, 0xf5, 0xed, 0x5d, 0xbd, 0x0a, - 0x43, 0x31, 0x8d, 0x1b, 0x94, 0x76, 0xcc, 0x34, 0x58, 0x1b, 0xe6, 0x6c, 0xe9, 0xb3, 0xb7, 0xf7, - 0x7c, 0xbf, 0x5a, 0x19, 0xca, 0xb3, 0xaf, 0xed, 0xf9, 0x7e, 0xec, 0xd9, 0xd7, 0x36, 0x36, 0x37, - 0x31, 0xe3, 0x49, 0x79, 0xdb, 0xba, 0xef, 0x89, 0x24, 0x54, 0xd6, 0xbc, 0xd7, 0x75, 0xdf, 0x8b, - 0xf1, 0x5e, 0xaf, 0x6d, 0x6a, 0x98, 0xf1, 0x44, 0x77, 0x20, 0xef, 0xd9, 0x5e, 0x75, 0x82, 0xb1, - 0x7e, 0x33, 0x63, 0xd6, 0x9a, 0x2d, 0x38, 0xcb, 0xa3, 0x27, 0xda, 0xba, 0x86, 0x29, 0x43, 0xc6, - 0x77, 0xcf, 0xab, 0x4e, 0x0e, 0x87, 0xef, 0x5e, 0x82, 0xef, 0x06, 0xe5, 0xbb, 0xe7, 0xa1, 0xaf, - 0xe5, 0xa0, 0xd8, 0xe9, 0x6e, 0x69, 0xdd, 0xad, 0xea, 0x14, 0xe3, 0xfd, 0xf9, 0x8c, 0x79, 0x37, - 0x18, 0x71, 0xce, 0x5e, 0xc6, 0x18, 0xbc, 0x11, 0x0b, 0xce, 0x4c, 0x08, 0xce, 0xb5, 0x3a, 0x3d, - 0x14, 0x21, 0xae, 0x31, 0x6a, 0x31, 0x21, 0x78, 0x23, 0x16, 0x9c, 0x03, 0x21, 0x2c, 0x7d, 0xab, - 0x3a, 0x33, 0x2c, 0x21, 0x2c, 0x3d, 0x45, 0x08, 0x4b, 0xe7, 0x42, 0x58, 0xfa, 0x16, 0x55, 0xfd, - 0x9d, 0xe6, 0xb6, 0x57, 0x45, 0x43, 0x51, 0xfd, 0xeb, 0xcd, 0xed, 0xb8, 0xea, 0x5f, 0x5f, 0x5a, - 0xd6, 0x30, 0xe3, 0x49, 0x5d, 0x8e, 0x67, 0xe9, 0xc6, 0x6e, 0xf5, 0xcc, 0x50, 0x5c, 0x8e, 0x46, - 0x69, 0xc7, 0x5c, 0x0e, 0x6b, 0xc3, 0x9c, 0x2d, 0xfa, 0x9d, 0x1c, 0x54, 0xc4, 0xd9, 0xb3, 0x6b, - 0xae, 0xd9, 0xac, 0x9e, 0xcd, 0x66, 0x85, 0x18, 0x17, 0x23, 0xe4, 0xc0, 0x85, 0x91, 0xd9, 0x05, - 0x05, 0x82, 0x55, 0x41, 0xd0, 0x1f, 0xe5, 0x60, 0x52, 0x8f, 0x9c, 0x32, 0xac, 0x3e, 0xc9, 0x64, - 0xdb, 0xca, 0x7a, 0x4a, 0x88, 0x1e, 0x65, 0x64, 0xe2, 0xc9, 0x6c, 0x6a, 0x14, 0x88, 0x63, 0x12, - 0x31, 0xf5, 0xf5, 0x7c, 0xd7, 0xec, 0x90, 0xea, 0xb9, 0xa1, 0xa8, 0xaf, 0xc6, 0x88, 0xc7, 0xd4, - 0x97, 0x37, 0x62, 0xc1, 0x99, 0x4d, 0xdd, 0x84, 0x2f, 0xc9, 0xab, 0x4f, 0x0d, 0x65, 0xea, 0x0e, - 0x16, 0xfc, 0xd1, 0xa9, 0x5b, 0xb4, 0xe2, 0x80, 0x39, 0xd5, 0x65, 0x97, 0x34, 0x4d, 0xaf, 0x5a, - 0x1d, 0x8a, 0x2e, 0x63, 0x4a, 0x3b, 0xa6, 0xcb, 0xac, 0x0d, 0x73, 0xb6, 0xd4, 0x9d, 0xdb, 0xde, - 0x5e, 0xf5, 0xe9, 0xa1, 0xb8, 0xf3, 0x75, 0x6f, 0x2f, 0xe6, 0xce, 0xd7, 0xb5, 0x0d, 0x4c, 0x19, - 0x0a, 0x77, 0x6e, 0x79, 0xba, 0x5b, 0x9d, 0x1d, 0x92, 0x3b, 0xa7, 0xc4, 0x13, 0xee, 0x9c, 0x36, - 0x62, 0xc1, 0x99, 0x69, 0x01, 0xbb, 0x5e, 0x66, 0x1a, 0xd5, 0x4f, 0x0c, 0x45, 0x0b, 0xae, 0x71, - 0xea, 0x31, 0x2d, 0x10, 0xad, 0x38, 0x60, 0x8e, 0x9e, 0xa3, 0x51, 0x6d, 0xc7, 0x32, 0x0d, 0xdd, - 0xab, 0x3e, 0xc3, 0x4e, 0x1e, 0x8e, 0xf3, 0x98, 0x93, 0xb7, 0x61, 0x09, 0x45, 0x3f, 0xc8, 0xc1, - 0x54, 0x6c, 0x8f, 0xad, 0x7a, 0x9e, 0x89, 0x6e, 0x64, 0x2c, 0x7a, 0x3d, 0xca, 0x85, 0x3f, 0x82, - 0x3c, 0xac, 0x11, 0xdf, 0xa1, 0x89, 0x0b, 0x85, 0xbe, 0x95, 0x83, 0xb2, 0x6c, 0xab, 0x5e, 0x60, - 0x22, 0xbe, 0x33, 0x2c, 0x11, 0xb9, 0x70, 0xf2, 0xe8, 0x61, 0x78, 0xca, 0x20, 0x14, 0x81, 0x79, - 0x6d, 0xa6, 0xf3, 0x9a, 0xef, 0x12, 0xbd, 0x5d, 0xbd, 0x38, 0x14, 0xaf, 0x8d, 0x43, 0x0e, 0x31, - 0xaf, 0xad, 0x40, 0xb0, 0x2a, 0x08, 0x7b, 0xa5, 0x7a, 0xf4, 0xe4, 0x5f, 0xf5, 0xd2, 0x50, 0x5e, - 0x69, 0xfc, 0x7c, 0x61, 0xf4, 0x95, 0xc6, 0xa0, 0x38, 0x2e, 0x14, 0xfa, 0x8b, 0x1c, 0xcc, 0xe8, - 0xf1, 0x63, 0xc2, 0xd5, 0xff, 0xc1, 0x44, 0x25, 0xc3, 0x10, 0x35, 0x72, 0x1c, 0x99, 0x09, 0xfb, - 0xb4, 0x10, 0x76, 0x26, 0x01, 0xc7, 0x49, 0xd1, 0x68, 0x90, 0xe2, 0x6d, 0xfb, 0x9d, 0xea, 0xdc, - 0x50, 0x82, 0x14, 0x6d, 0xdb, 0x8f, 0xaf, 0x8b, 0xb4, 0xe5, 0xcd, 0x06, 0x66, 0x3c, 0x79, 0x94, - 0x46, 0x5c, 0xd7, 0xf4, 0xab, 0xcf, 0x0e, 0x27, 0x4a, 0x63, 0xc4, 0xe3, 0x51, 0x1a, 0x6b, 0xc4, + // 7347 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x6c, 0x24, 0xc7, + 0x71, 0x5a, 0xee, 0x72, 0xb9, 0x5b, 0xcb, 0x67, 0xdf, 0xe9, 0xb4, 0xa2, 0x75, 0x8f, 0x50, 0xf0, + 0x41, 0x4a, 0x24, 0x32, 0xba, 0xc4, 0xb1, 0x2c, 0xc5, 0x32, 0x76, 0xc9, 0x3b, 0x1e, 0x75, 0x24, + 0x6f, 0xd9, 0xc3, 0x93, 0x4e, 0x96, 0x25, 0x79, 0x38, 0xdb, 0x5c, 0x8e, 0x39, 0x3b, 0xb3, 0x9c, + 0x99, 0xbd, 0x3b, 0x1e, 0x10, 0xdb, 0x30, 0xe0, 0xc4, 0xd6, 0xc3, 0xb6, 0x92, 0x38, 0x09, 0x12, + 0x18, 0x88, 0x93, 0xc0, 0x3f, 0x09, 0xf2, 0x17, 0x23, 0xbf, 0x41, 0xf2, 0x61, 0x24, 0xf9, 0x70, + 0xf2, 0xe5, 0xd8, 0xc0, 0xc1, 0x66, 0x90, 0xbf, 0x7c, 0x24, 0xf0, 0x57, 0xf2, 0x15, 0xf4, 0x63, + 0x7a, 0x7a, 0x1e, 0xcb, 0xe3, 0x72, 0x67, 0x49, 0x9d, 0x91, 0x2f, 0x72, 0xbb, 0xaa, 0xab, 0x6a, + 0x7a, 0xaa, 0xaa, 0xab, 0xab, 0xbb, 0x6b, 0x60, 0xad, 0x65, 0xfa, 0x3b, 0xdd, 0xad, 0x79, 0xc3, + 0x69, 0x2f, 0xe8, 0x6e, 0xcb, 0xe9, 0xb8, 0xce, 0x17, 0xd8, 0x3f, 0xcf, 0x93, 0x3b, 0xc4, 0xf6, + 0xbd, 0x85, 0xce, 0x6e, 0x6b, 0x41, 0xef, 0x98, 0xde, 0x02, 0xff, 0xed, 0x74, 0x5d, 0x83, 0x2c, + 0xdc, 0x79, 0x41, 0xb7, 0x3a, 0x3b, 0xfa, 0x0b, 0x0b, 0x2d, 0x62, 0x13, 0x57, 0xf7, 0x49, 0x73, + 0xbe, 0xe3, 0x3a, 0xbe, 0x83, 0x3e, 0x1d, 0x92, 0x9b, 0x0f, 0xc8, 0xb1, 0x7f, 0xde, 0xe1, 0xdd, + 0xe7, 0x3b, 0xbb, 0xad, 0x79, 0x4a, 0x6e, 0x5e, 0x21, 0x37, 0x1f, 0x90, 0x9b, 0xfd, 0xcc, 0x91, + 0xa5, 0x31, 0x9c, 0x76, 0xdb, 0xb1, 0xe3, 0xfc, 0x67, 0x9f, 0x57, 0x08, 0xb4, 0x9c, 0x96, 0xb3, + 0xc0, 0x9a, 0xb7, 0xba, 0xdb, 0xec, 0x17, 0xfb, 0xc1, 0xfe, 0x13, 0xe8, 0x73, 0xbb, 0x2f, 0x7a, + 0xf3, 0xa6, 0x43, 0x49, 0x2e, 0x18, 0x8e, 0x4b, 0x1f, 0x2c, 0x41, 0xf2, 0xd7, 0x43, 0x9c, 0xb6, + 0x6e, 0xec, 0x98, 0x36, 0x71, 0xf7, 0x43, 0x39, 0xda, 0xc4, 0xd7, 0xd3, 0x7a, 0x2d, 0xf4, 0xea, + 0xe5, 0x76, 0x6d, 0xdf, 0x6c, 0x93, 0x44, 0x87, 0xdf, 0x78, 0x58, 0x07, 0xcf, 0xd8, 0x21, 0x6d, + 0x3d, 0xde, 0x6f, 0xee, 0x7f, 0x72, 0x30, 0x53, 0x5b, 0xdb, 0x68, 0x2c, 0x3a, 0xb6, 0xd7, 0x6d, + 0x93, 0x45, 0xc7, 0xde, 0x36, 0x5b, 0xe8, 0x13, 0x50, 0x31, 0x78, 0x83, 0xbb, 0xa9, 0xb7, 0xaa, + 0xb9, 0x4b, 0xb9, 0x67, 0xca, 0xf5, 0x33, 0x3f, 0x78, 0x70, 0xf1, 0xb1, 0x83, 0x07, 0x17, 0x2b, + 0x8b, 0x21, 0x08, 0xab, 0x78, 0xe8, 0x59, 0x18, 0xd3, 0xbb, 0xbe, 0x53, 0x33, 0x76, 0xab, 0x23, + 0x97, 0x72, 0xcf, 0x94, 0xea, 0x53, 0xa2, 0xcb, 0x58, 0x8d, 0x37, 0xe3, 0x00, 0x8e, 0x16, 0xa0, + 0x4c, 0xee, 0x19, 0x56, 0xd7, 0x33, 0xef, 0x90, 0x6a, 0x9e, 0x21, 0xcf, 0x08, 0xe4, 0xf2, 0xd5, + 0x00, 0x80, 0x43, 0x1c, 0x4a, 0xdb, 0x76, 0x56, 0x1d, 0x43, 0xb7, 0xaa, 0x85, 0x28, 0xed, 0x75, + 0xde, 0x8c, 0x03, 0x38, 0xba, 0x0c, 0x45, 0xdb, 0x79, 0x5d, 0x37, 0xfd, 0xea, 0x28, 0xc3, 0x9c, + 0x14, 0x98, 0xc5, 0x75, 0xd6, 0x8a, 0x05, 0x74, 0xee, 0x3f, 0x2b, 0x30, 0x45, 0x9f, 0xfd, 0x2a, + 0x55, 0x0e, 0x8d, 0xe9, 0x12, 0x3a, 0x0f, 0xf9, 0xae, 0x6b, 0x89, 0x27, 0xae, 0x88, 0x8e, 0xf9, + 0x5b, 0x78, 0x15, 0xd3, 0x76, 0xf4, 0x22, 0x8c, 0x93, 0x7b, 0xc6, 0x8e, 0x6e, 0xb7, 0xc8, 0xba, + 0xde, 0x26, 0xec, 0x31, 0xcb, 0xf5, 0xb3, 0x02, 0x6f, 0xfc, 0xaa, 0x02, 0xc3, 0x11, 0x4c, 0xb5, + 0xe7, 0xe6, 0x7e, 0x87, 0x3f, 0x73, 0x4a, 0x4f, 0x0a, 0xc3, 0x11, 0x4c, 0x74, 0x05, 0xc0, 0x75, + 0xba, 0xbe, 0x69, 0xb7, 0x6e, 0x90, 0x7d, 0xf6, 0xf0, 0xe5, 0x3a, 0x12, 0xfd, 0x00, 0x4b, 0x08, + 0x56, 0xb0, 0xd0, 0x6f, 0xc1, 0x8c, 0xe1, 0xd8, 0x36, 0x31, 0x7c, 0xd3, 0xb1, 0xeb, 0xba, 0xb1, + 0xeb, 0x6c, 0x6f, 0xb3, 0xd1, 0xa8, 0x5c, 0x79, 0x71, 0xfe, 0xc8, 0x46, 0xc6, 0xad, 0x64, 0x5e, + 0xf4, 0xaf, 0x3f, 0x7e, 0xf0, 0xe0, 0xe2, 0xcc, 0x62, 0x9c, 0x2c, 0x4e, 0x72, 0x42, 0xcf, 0x41, + 0xe9, 0x0b, 0x9e, 0x63, 0xd7, 0x9d, 0xe6, 0x7e, 0xb5, 0xc8, 0xde, 0xc1, 0xb4, 0x10, 0xb8, 0xf4, + 0xaa, 0x76, 0x73, 0x9d, 0xb6, 0x63, 0x89, 0x81, 0x6e, 0x41, 0xde, 0xb7, 0xbc, 0xea, 0x18, 0x13, + 0xef, 0xa5, 0xbe, 0xc5, 0xdb, 0x5c, 0xd5, 0xb8, 0xda, 0xd6, 0xc7, 0xe8, 0xbb, 0xda, 0x5c, 0xd5, + 0x30, 0xa5, 0x87, 0xde, 0xcd, 0x41, 0x89, 0xda, 0x57, 0x53, 0xf7, 0xf5, 0x6a, 0xe9, 0x52, 0xfe, + 0x99, 0xca, 0x95, 0xcf, 0xcd, 0x0f, 0xe4, 0x60, 0xe6, 0x63, 0xda, 0x32, 0xbf, 0x26, 0xc8, 0x5f, + 0xb5, 0x7d, 0x77, 0x3f, 0x7c, 0xc6, 0xa0, 0x19, 0x4b, 0xfe, 0xe8, 0x0f, 0x73, 0x30, 0x15, 0xbc, + 0xd5, 0x25, 0x62, 0x58, 0xba, 0x4b, 0xaa, 0x65, 0xf6, 0xc0, 0xb7, 0xb3, 0x90, 0x29, 0x4a, 0x59, + 0x0c, 0xc7, 0x99, 0x83, 0x07, 0x17, 0xa7, 0x62, 0x20, 0x1c, 0x97, 0x02, 0xbd, 0x97, 0x83, 0xf1, + 0xbd, 0x2e, 0xe9, 0x4a, 0xb1, 0x80, 0x89, 0x75, 0x2b, 0x03, 0xb1, 0x36, 0x14, 0xb2, 0x42, 0xa6, + 0x69, 0xaa, 0xec, 0x6a, 0x3b, 0x8e, 0x30, 0x47, 0x5f, 0x82, 0x32, 0xfb, 0x5d, 0x37, 0xed, 0x66, + 0xb5, 0xc2, 0x24, 0xc1, 0x59, 0x49, 0x42, 0x69, 0x0a, 0x31, 0x26, 0xa8, 0x9f, 0x91, 0x8d, 0x38, + 0xe4, 0x89, 0xee, 0xc2, 0x98, 0x70, 0x69, 0xd5, 0x71, 0xc6, 0xbe, 0x91, 0x01, 0xfb, 0x88, 0x77, + 0xad, 0x57, 0xa8, 0xd7, 0x12, 0x4d, 0x38, 0xe0, 0x86, 0x6e, 0x43, 0x41, 0xef, 0xfa, 0x3b, 0xd5, + 0x89, 0x63, 0x9a, 0x41, 0x5d, 0xf7, 0x4c, 0xa3, 0xd6, 0xf5, 0x77, 0xea, 0xa5, 0x83, 0x07, 0x17, + 0x0b, 0xf4, 0x3f, 0xcc, 0x28, 0x22, 0x0c, 0xe5, 0xae, 0x6b, 0x69, 0xc4, 0x70, 0x89, 0x5f, 0x9d, + 0x64, 0xe4, 0x3f, 0x3e, 0xcf, 0xe7, 0x0b, 0x4a, 0x61, 0x9e, 0x4e, 0x5d, 0xf3, 0x77, 0x5e, 0x98, + 0xe7, 0x18, 0x37, 0xc8, 0xbe, 0x46, 0x2c, 0x62, 0xf8, 0x8e, 0xcb, 0x87, 0xe9, 0x16, 0x5e, 0xe5, + 0x10, 0x1c, 0x92, 0x41, 0x3e, 0x14, 0xb7, 0x4d, 0xcb, 0x27, 0x6e, 0x75, 0x2a, 0x93, 0x51, 0x52, + 0xac, 0xea, 0x1a, 0xa3, 0x5b, 0x07, 0xea, 0xb1, 0xf9, 0xff, 0x58, 0xf0, 0x9a, 0x7d, 0x19, 0x26, + 0x22, 0x26, 0x87, 0xa6, 0x21, 0xbf, 0x4b, 0xf6, 0xb9, 0xbb, 0xc6, 0xf4, 0x5f, 0x74, 0x16, 0x46, + 0xef, 0xe8, 0x56, 0x57, 0xb8, 0x66, 0xcc, 0x7f, 0xbc, 0x34, 0xf2, 0x62, 0x6e, 0xee, 0x87, 0x39, + 0x78, 0xb2, 0xa7, 0xb1, 0xd0, 0xf9, 0xa5, 0xd9, 0x75, 0xf5, 0x2d, 0x8b, 0x30, 0x6a, 0xca, 0xfc, + 0xb2, 0xc4, 0x9b, 0x71, 0x00, 0xa7, 0x0e, 0x99, 0x4e, 0x63, 0x4b, 0xc4, 0x22, 0x3e, 0x11, 0x33, + 0x9d, 0x74, 0xc8, 0x35, 0x09, 0xc1, 0x0a, 0x16, 0xf5, 0x88, 0xa6, 0xed, 0x13, 0xd7, 0xd6, 0x2d, + 0x31, 0xdd, 0x49, 0x6f, 0xb1, 0x22, 0xda, 0xb1, 0xc4, 0x50, 0x66, 0xb0, 0xc2, 0xa1, 0x33, 0xd8, + 0xa7, 0xe1, 0x4c, 0x8a, 0x76, 0x2b, 0xdd, 0x73, 0x87, 0x76, 0xff, 0xf3, 0x11, 0x38, 0x97, 0x6e, + 0xa7, 0xe8, 0x12, 0x14, 0x6c, 0x3a, 0xc1, 0xf1, 0x89, 0x70, 0x5c, 0x10, 0x28, 0xb0, 0x89, 0x8d, + 0x41, 0xd4, 0x01, 0x1b, 0xe9, 0x6b, 0xc0, 0xf2, 0x47, 0x1a, 0xb0, 0x48, 0x80, 0x50, 0x38, 0x42, + 0x80, 0x70, 0xc4, 0x59, 0x9f, 0x12, 0xd6, 0xdd, 0x56, 0xb7, 0x4d, 0x95, 0x90, 0x4d, 0x4e, 0xe5, + 0x90, 0x70, 0x2d, 0x00, 0xe0, 0x10, 0x67, 0xee, 0xdd, 0x51, 0x78, 0xb2, 0x76, 0xbf, 0xeb, 0x12, + 0xa6, 0xa3, 0xde, 0xf5, 0xee, 0x96, 0x1a, 0x30, 0x5c, 0x82, 0xc2, 0xf6, 0x5e, 0xd3, 0x8e, 0x0f, + 0xd4, 0xb5, 0x8d, 0xa5, 0x75, 0xcc, 0x20, 0xa8, 0x03, 0x67, 0xbc, 0x1d, 0xdd, 0x25, 0xcd, 0x9a, + 0x61, 0x10, 0xcf, 0xbb, 0x41, 0xf6, 0x65, 0xe8, 0x70, 0x64, 0x43, 0x7c, 0xe2, 0xe0, 0xc1, 0xc5, + 0x33, 0x5a, 0x92, 0x0a, 0x4e, 0x23, 0x8d, 0x9a, 0x30, 0x15, 0x6b, 0x66, 0x83, 0x7e, 0x64, 0x6e, + 0x6c, 0xe2, 0x88, 0x71, 0xc3, 0x71, 0x92, 0x54, 0x01, 0x76, 0xba, 0x5b, 0xec, 0x59, 0x78, 0x50, + 0x22, 0x15, 0xe0, 0x3a, 0x6f, 0xc6, 0x01, 0x1c, 0xfd, 0xbe, 0x3a, 0x15, 0x8f, 0xb2, 0xa9, 0x78, + 0x7b, 0x50, 0xb7, 0xda, 0xeb, 0x8d, 0xf4, 0x31, 0x29, 0x87, 0x4e, 0xac, 0xf8, 0xa8, 0x38, 0xb1, + 0x3f, 0x2d, 0xc2, 0x53, 0xec, 0xd1, 0x99, 0xcd, 0x6a, 0xbe, 0xe3, 0xea, 0x2d, 0xa2, 0xea, 0xe3, + 0xab, 0x80, 0x3c, 0xde, 0x5a, 0x33, 0x0c, 0xa7, 0x6b, 0xfb, 0xeb, 0xa1, 0x19, 0xcf, 0x8a, 0xb1, + 0x40, 0x5a, 0x02, 0x03, 0xa7, 0xf4, 0x42, 0x2d, 0x98, 0x0e, 0x63, 0x3b, 0xcd, 0x77, 0x4d, 0xbb, + 0xd5, 0x9f, 0xda, 0x9e, 0x3d, 0x78, 0x70, 0x71, 0x7a, 0x31, 0x46, 0x02, 0x27, 0x88, 0x52, 0x9b, + 0x64, 0x33, 0x30, 0x93, 0x35, 0x1f, 0xb5, 0xc9, 0x8d, 0x00, 0x80, 0x43, 0x9c, 0x48, 0x80, 0x59, + 0x78, 0x68, 0x80, 0x79, 0x1e, 0xf2, 0x4d, 0x6b, 0x4f, 0xf8, 0x05, 0x19, 0xd4, 0x2f, 0xad, 0x6e, + 0x60, 0xda, 0x4e, 0x63, 0xb3, 0x50, 0x3b, 0x8b, 0x4c, 0x3b, 0xcd, 0x2c, 0xb4, 0xb3, 0xc7, 0x2b, + 0x3a, 0x96, 0x82, 0x8e, 0x9d, 0x9c, 0x82, 0xa2, 0x97, 0x61, 0xa2, 0x49, 0x0c, 0xa7, 0x49, 0xd6, + 0x88, 0xe7, 0xe9, 0x2d, 0x52, 0x2d, 0xb1, 0x81, 0x7b, 0x5c, 0x08, 0x3a, 0xb1, 0xa4, 0x02, 0x71, + 0x14, 0x17, 0x2d, 0xc2, 0xcc, 0x5d, 0xdd, 0xf4, 0x37, 0xcd, 0x36, 0x59, 0xb1, 0x35, 0x62, 0x38, + 0x76, 0xd3, 0x63, 0x91, 0xee, 0x28, 0x5f, 0x3f, 0xbc, 0x1e, 0x07, 0xe2, 0x24, 0xfe, 0x60, 0x26, + 0xf2, 0xa3, 0x22, 0xcc, 0xb2, 0xf1, 0xd7, 0x88, 0x7b, 0xc7, 0x34, 0x48, 0xbd, 0xeb, 0xa9, 0x06, + 0x92, 0xa6, 0xd4, 0xb9, 0xa1, 0x2b, 0xf5, 0xc8, 0x11, 0x94, 0x7a, 0x01, 0xca, 0xbe, 0xd3, 0x31, + 0x8d, 0x34, 0x2b, 0xd8, 0x0c, 0x00, 0x38, 0xc4, 0x41, 0x4b, 0x30, 0xed, 0x75, 0xb7, 0x3c, 0xc3, + 0x35, 0x3b, 0x94, 0xaf, 0xe2, 0x8a, 0xab, 0xa2, 0xdf, 0xb4, 0x16, 0x83, 0xe3, 0x44, 0x8f, 0x60, + 0xf9, 0x35, 0x9a, 0xf1, 0xf2, 0xab, 0xbf, 0x35, 0xe0, 0xb7, 0x55, 0x1b, 0x1c, 0x63, 0x36, 0xd8, + 0xca, 0xc2, 0x06, 0x53, 0x75, 0xe0, 0x58, 0x16, 0x58, 0x3a, 0x41, 0x0b, 0x7c, 0x03, 0x9e, 0xd8, + 0xee, 0x5a, 0xd6, 0xfe, 0x46, 0x57, 0xb7, 0xcc, 0x6d, 0x93, 0x34, 0xe9, 0x8b, 0xf2, 0x3a, 0xba, + 0xc1, 0x17, 0x8d, 0xe5, 0xfa, 0x45, 0x21, 0xf2, 0x13, 0xd7, 0xd2, 0xd1, 0x70, 0xaf, 0xfe, 0x83, + 0x99, 0xd6, 0x8f, 0x73, 0x30, 0x51, 0x37, 0xfd, 0xad, 0xae, 0xb1, 0x4b, 0x7c, 0xba, 0xc2, 0x40, + 0x2e, 0x8c, 0x6e, 0xd1, 0x85, 0x87, 0x30, 0xa1, 0x8d, 0x01, 0x87, 0x47, 0x12, 0x0f, 0x57, 0x33, + 0xe5, 0x83, 0x07, 0x17, 0x47, 0xd9, 0x4f, 0xcc, 0x59, 0xa1, 0x5b, 0x00, 0x0e, 0x5d, 0xd8, 0x6c, + 0x3a, 0xbb, 0xc4, 0xee, 0x6f, 0x42, 0x9a, 0xa4, 0x11, 0xe7, 0xcd, 0x5a, 0xd0, 0x19, 0x2b, 0x84, + 0xe6, 0xbe, 0x9f, 0x03, 0x94, 0xe4, 0x8f, 0x6e, 0x42, 0xa9, 0xeb, 0xd1, 0xb0, 0x5c, 0x4c, 0xa3, + 0x47, 0xe6, 0x35, 0x4e, 0x55, 0xea, 0x96, 0xe8, 0x8a, 0x25, 0x11, 0x4a, 0xb0, 0xa3, 0x7b, 0xde, + 0x5d, 0xc7, 0x6d, 0xf6, 0x27, 0x3c, 0x23, 0xd8, 0x10, 0x5d, 0xb1, 0x24, 0x32, 0xf7, 0xf3, 0x31, + 0x38, 0x2b, 0x05, 0x8f, 0xc5, 0x02, 0x4d, 0x16, 0x4d, 0x5f, 0x77, 0x9c, 0xdd, 0x9b, 0xf6, 0x35, + 0xd3, 0x36, 0xbd, 0x1d, 0xb1, 0x26, 0x90, 0xb1, 0xc0, 0x52, 0x02, 0x03, 0xa7, 0xf4, 0x42, 0xdf, + 0x54, 0x0d, 0x74, 0x84, 0x19, 0xa8, 0x9e, 0xd5, 0xcb, 0x3e, 0xae, 0x69, 0x8e, 0xdd, 0x25, 0x5b, + 0x3b, 0x8e, 0xb3, 0x2b, 0xa2, 0xdb, 0xb5, 0x01, 0xe5, 0x79, 0x9d, 0x53, 0x5b, 0x74, 0x6c, 0x9f, + 0xdc, 0xf3, 0xf9, 0x32, 0x5d, 0xb4, 0xe1, 0x80, 0x15, 0xfa, 0x82, 0x58, 0xa6, 0x17, 0x18, 0xcb, + 0xd5, 0xac, 0x86, 0x20, 0x75, 0xe1, 0x3e, 0x07, 0x45, 0xde, 0x8b, 0xc5, 0xcc, 0x65, 0xee, 0x2a, + 0x78, 0xcc, 0x8b, 0x05, 0x04, 0x3d, 0x0f, 0xa3, 0xce, 0x5d, 0x5b, 0x84, 0xb0, 0xe5, 0xfa, 0x13, + 0x62, 0xc0, 0xa6, 0x96, 0x48, 0xc7, 0x25, 0x86, 0xee, 0x93, 0xe6, 0x4d, 0x0a, 0xc6, 0x1c, 0x0b, + 0xfd, 0x26, 0x00, 0x15, 0x91, 0x18, 0x54, 0xb3, 0x58, 0x54, 0x51, 0xae, 0x3f, 0x25, 0xfa, 0x9c, + 0x0d, 0xfb, 0x34, 0x24, 0x0e, 0x56, 0xf0, 0xd1, 0x75, 0x98, 0x74, 0x49, 0xc7, 0xf1, 0x4c, 0xdf, + 0x71, 0xf7, 0x35, 0xab, 0xdb, 0x62, 0x5e, 0xb1, 0x5c, 0xbf, 0x24, 0x28, 0x54, 0x43, 0x0a, 0x38, + 0x82, 0x87, 0x63, 0xfd, 0xd0, 0xfb, 0x39, 0x18, 0x97, 0x4d, 0x26, 0xa1, 0x21, 0x42, 0x3e, 0x83, + 0x5c, 0x8f, 0x1c, 0xcf, 0x90, 0x7d, 0x98, 0x63, 0xc5, 0x0a, 0x3f, 0x1c, 0xe1, 0xae, 0xb8, 0x79, + 0x78, 0x54, 0x56, 0x02, 0xf7, 0xe1, 0x4c, 0xca, 0xd3, 0xa2, 0xa7, 0x03, 0x7d, 0xe0, 0x21, 0xff, + 0x84, 0x78, 0xf8, 0xd1, 0x88, 0x16, 0xbc, 0x92, 0x78, 0x8f, 0x3c, 0x3e, 0x39, 0x27, 0xb0, 0x27, + 0x0f, 0x7f, 0x7b, 0x73, 0xff, 0x55, 0x81, 0x59, 0xc9, 0x9c, 0x4e, 0xb1, 0xc4, 0x55, 0xfd, 0x8e, + 0x62, 0x99, 0xb9, 0x93, 0xb3, 0xcc, 0xa8, 0x6a, 0x8f, 0x0c, 0xac, 0xda, 0xf9, 0x63, 0xaa, 0xf6, + 0x33, 0x50, 0x12, 0x74, 0xbd, 0x6a, 0x81, 0xd9, 0x2d, 0x77, 0xdc, 0xa2, 0x0d, 0x4b, 0x28, 0xfa, + 0xdd, 0xb8, 0x11, 0xf0, 0xa5, 0xf1, 0xed, 0xac, 0x8c, 0x80, 0xbf, 0x99, 0x3e, 0x4d, 0x21, 0x74, + 0x3a, 0xc5, 0x9e, 0x4e, 0x67, 0x17, 0xce, 0x7b, 0xbb, 0x66, 0xa7, 0xee, 0xea, 0xb6, 0xb1, 0x83, + 0xc9, 0xb6, 0xb7, 0xc8, 0x32, 0x6a, 0xcd, 0x9b, 0xf6, 0xcd, 0x0e, 0xb1, 0x1b, 0x98, 0x39, 0x96, + 0x52, 0xfd, 0xe3, 0x82, 0xdd, 0x79, 0xed, 0x30, 0x64, 0x7c, 0x38, 0x2d, 0xb4, 0x0c, 0x33, 0x8e, + 0xcd, 0x17, 0x50, 0x0d, 0xe2, 0x72, 0xa8, 0x58, 0x92, 0x3c, 0x29, 0x18, 0xcc, 0xdc, 0x8c, 0x23, + 0xe0, 0x64, 0x1f, 0x74, 0x1b, 0x2a, 0x3a, 0xcb, 0x5e, 0xf0, 0xc0, 0xa1, 0xdc, 0xcf, 0xdc, 0x3b, + 0x75, 0xf0, 0xe0, 0x62, 0xa5, 0x16, 0xf6, 0xc6, 0x2a, 0x29, 0xf4, 0x36, 0x4c, 0x08, 0x2d, 0x14, + 0x59, 0x56, 0xe8, 0x87, 0xf6, 0x0c, 0x5d, 0x54, 0xbd, 0xae, 0xf6, 0xc7, 0x51, 0x72, 0xe8, 0x35, + 0x38, 0xb7, 0x15, 0xbc, 0x54, 0x8f, 0xbd, 0xd4, 0xba, 0xee, 0x91, 0x5b, 0x78, 0x95, 0xa5, 0xc8, + 0xcb, 0xf5, 0x0b, 0x62, 0x1c, 0xce, 0xc5, 0x5e, 0xbd, 0xc0, 0xc2, 0x3d, 0x7a, 0xf7, 0x08, 0x10, + 0xc6, 0x8f, 0x15, 0x20, 0x44, 0x22, 0xf8, 0x89, 0x4c, 0x22, 0xf8, 0xde, 0x2e, 0xe6, 0x58, 0x11, + 0xfc, 0xe4, 0x09, 0x46, 0xf0, 0x62, 0x51, 0x35, 0x95, 0xf1, 0xa2, 0xea, 0x65, 0x98, 0x30, 0x76, + 0x88, 0xb1, 0xcb, 0x72, 0xc6, 0x77, 0x74, 0xab, 0x3a, 0xcd, 0xde, 0xbf, 0x5c, 0x9a, 0x2f, 0xaa, + 0x40, 0x1c, 0xc5, 0x1d, 0x6c, 0xba, 0xf9, 0x66, 0x0e, 0x9e, 0xec, 0xe9, 0x58, 0xd0, 0x95, 0x88, + 0xef, 0xcd, 0x45, 0xf7, 0x28, 0x7b, 0x78, 0xdc, 0x41, 0x27, 0xa1, 0xbf, 0x18, 0x85, 0x33, 0x8b, + 0xba, 0x45, 0xec, 0xa6, 0x1e, 0x99, 0x7d, 0x9e, 0x83, 0x92, 0x67, 0xec, 0x90, 0x66, 0xd7, 0x0a, + 0xf2, 0x5e, 0x52, 0x3d, 0x34, 0xd1, 0x8e, 0x25, 0x86, 0x4c, 0xcc, 0xd3, 0xc1, 0x1c, 0x89, 0x62, + 0xcb, 0x71, 0x94, 0x18, 0xe8, 0x25, 0x98, 0x14, 0x19, 0x67, 0xc7, 0x5e, 0xd2, 0x7d, 0xe2, 0x55, + 0xf3, 0xcc, 0x49, 0x22, 0x2a, 0xef, 0xd5, 0x08, 0x04, 0xc7, 0x30, 0x29, 0x27, 0xdf, 0x6c, 0x93, + 0xfb, 0x8e, 0x1d, 0xac, 0xd2, 0x25, 0xa7, 0x4d, 0xd1, 0x8e, 0x25, 0x06, 0xfa, 0x46, 0x32, 0x65, + 0xfa, 0xf9, 0x01, 0x35, 0x37, 0x65, 0xb0, 0xfa, 0xb0, 0xa3, 0xaf, 0xe4, 0xa0, 0xd2, 0x21, 0xae, + 0x67, 0x7a, 0x3e, 0xb1, 0x0d, 0x22, 0x52, 0xa6, 0x37, 0xb3, 0xb0, 0xa6, 0x46, 0x48, 0x96, 0x3b, + 0x5a, 0xa5, 0x01, 0xab, 0x4c, 0x4f, 0x67, 0x39, 0x3e, 0x98, 0xe1, 0xdc, 0x83, 0xb3, 0x8b, 0xba, + 0x6f, 0xec, 0x74, 0x3b, 0xdc, 0xa2, 0xbb, 0xae, 0xee, 0x9b, 0x8e, 0x8d, 0x9e, 0x85, 0x31, 0x62, + 0xeb, 0x5b, 0x16, 0x69, 0xc6, 0x37, 0x9c, 0xae, 0xf2, 0x66, 0x1c, 0xc0, 0xd1, 0x27, 0xa0, 0xd2, + 0xd6, 0xef, 0x2d, 0x89, 0x9e, 0x42, 0x4d, 0xe5, 0x71, 0x8c, 0xb5, 0x10, 0x84, 0x55, 0xbc, 0xb9, + 0x2f, 0xc2, 0x59, 0xce, 0x72, 0x4d, 0xef, 0x28, 0x23, 0x7a, 0x84, 0xbd, 0x9d, 0x25, 0x98, 0x36, + 0x5c, 0xa2, 0xfb, 0x64, 0x65, 0x7b, 0xdd, 0xf1, 0xaf, 0xde, 0x33, 0x3d, 0x5f, 0x6c, 0xf2, 0xc8, + 0xc4, 0xd2, 0x62, 0x0c, 0x8e, 0x13, 0x3d, 0xe6, 0xbe, 0x35, 0x06, 0xe8, 0x6a, 0xdb, 0xf4, 0xfd, + 0x68, 0x74, 0x78, 0x19, 0x8a, 0x5b, 0xae, 0xb3, 0x2b, 0x43, 0x54, 0xb9, 0x51, 0x53, 0x67, 0xad, + 0x58, 0x40, 0xa9, 0x4f, 0x31, 0x76, 0x74, 0xdb, 0x26, 0x56, 0x18, 0xcf, 0x49, 0x9f, 0xb2, 0x28, + 0x21, 0x58, 0xc1, 0x62, 0x07, 0x57, 0xf8, 0x2f, 0x25, 0x89, 0x16, 0x1e, 0x5c, 0x09, 0x41, 0x58, + 0xc5, 0x8b, 0xac, 0xf1, 0x0b, 0x59, 0xaf, 0xf1, 0x47, 0x33, 0x58, 0xe3, 0xa7, 0x1f, 0xe8, 0x28, + 0x9e, 0xca, 0x81, 0x8e, 0xb1, 0xa3, 0x1e, 0xe8, 0x28, 0x65, 0x3c, 0xf9, 0x7d, 0xa0, 0xba, 0x44, + 0xbe, 0x5e, 0x7c, 0x67, 0x50, 0xfb, 0x4f, 0xa8, 0xe7, 0xb1, 0x22, 0x8b, 0x47, 0x66, 0xd1, 0xf8, + 0xe1, 0x08, 0x4c, 0xc7, 0x5d, 0x2e, 0xba, 0x0f, 0x63, 0x06, 0xf7, 0x50, 0x62, 0xb9, 0xa6, 0x0d, + 0x3c, 0xd1, 0x24, 0xfd, 0x9d, 0x38, 0xf5, 0xc0, 0x21, 0x38, 0x60, 0x88, 0xbe, 0x9c, 0x83, 0xb2, + 0x11, 0x38, 0x29, 0x91, 0x0e, 0x1b, 0x98, 0x7d, 0x8a, 0xd3, 0xe3, 0x47, 0x19, 0x24, 0x04, 0x87, + 0x4c, 0xe7, 0x7e, 0x32, 0x02, 0x15, 0xd5, 0x3f, 0x7d, 0x5e, 0xd1, 0x32, 0x3e, 0x1e, 0xbf, 0xaa, + 0xd8, 0xae, 0x3c, 0x5d, 0x17, 0x0a, 0x41, 0xb1, 0xa9, 0x35, 0xdf, 0xdc, 0xa2, 0xa1, 0x0d, 0x7d, + 0x39, 0xa1, 0x9f, 0x0a, 0xdb, 0x14, 0xc5, 0xe9, 0x40, 0xc1, 0xeb, 0x10, 0x43, 0x3c, 0xee, 0x7a, + 0x76, 0x6a, 0xa3, 0x75, 0x88, 0x11, 0x3a, 0x74, 0xfa, 0x0b, 0x33, 0x4e, 0xe8, 0x1e, 0x14, 0x3d, + 0x5f, 0xf7, 0xbb, 0x9e, 0x48, 0x95, 0x65, 0xa8, 0xaa, 0x1a, 0xa3, 0x1b, 0x7a, 0x71, 0xfe, 0x1b, + 0x0b, 0x7e, 0x73, 0xcb, 0x30, 0x93, 0xd0, 0x6b, 0xea, 0xda, 0xc9, 0xbd, 0x8e, 0x4b, 0x3c, 0x1a, + 0x1d, 0xc5, 0xc3, 0xc5, 0xab, 0x12, 0x82, 0x15, 0xac, 0xb9, 0x9f, 0xe6, 0x60, 0x4a, 0xa1, 0xb4, + 0x6a, 0x7a, 0x3e, 0xfa, 0x5c, 0xe2, 0x55, 0xcd, 0x1f, 0xed, 0x55, 0xd1, 0xde, 0xec, 0x45, 0x49, + 0xfb, 0x0e, 0x5a, 0x94, 0xd7, 0xe4, 0xc0, 0xa8, 0xe9, 0x93, 0xb6, 0x27, 0xd2, 0x9d, 0xaf, 0x66, + 0x37, 0x66, 0x61, 0x5a, 0x66, 0x85, 0x32, 0xc0, 0x9c, 0xcf, 0xdc, 0xdf, 0x5f, 0x8b, 0x3c, 0x22, + 0x7d, 0x7f, 0xec, 0xdc, 0x20, 0x6d, 0xaa, 0x77, 0x3d, 0x65, 0x27, 0x37, 0x3c, 0x37, 0xa8, 0xc0, + 0x70, 0x04, 0x13, 0xed, 0x41, 0xc9, 0x27, 0xed, 0x8e, 0xa5, 0xfb, 0xc1, 0x61, 0x83, 0xe5, 0x01, + 0x9f, 0x60, 0x53, 0x90, 0xe3, 0xb3, 0x54, 0xf0, 0x0b, 0x4b, 0x36, 0xa8, 0x0d, 0x63, 0x1e, 0xdf, + 0x70, 0x11, 0x7a, 0x76, 0x6d, 0x40, 0x8e, 0xc1, 0xf6, 0x0d, 0x73, 0x1e, 0xe2, 0x07, 0x0e, 0x78, + 0xa0, 0x2f, 0xc2, 0x68, 0xdb, 0xb4, 0x4d, 0x87, 0xa5, 0x59, 0x2a, 0x57, 0xde, 0xc8, 0xd6, 0x90, + 0xe6, 0xd7, 0x28, 0x6d, 0x3e, 0x0d, 0xc8, 0xf7, 0xc5, 0xda, 0x30, 0x67, 0xcb, 0x4e, 0x18, 0x1a, + 0x22, 0xa8, 0x16, 0x31, 0xfa, 0xe7, 0x32, 0x96, 0x41, 0xc6, 0xec, 0xd1, 0xd9, 0x28, 0x68, 0xc6, + 0x92, 0x3f, 0xba, 0x0f, 0x85, 0x6d, 0xd3, 0x22, 0x62, 0x03, 0xfb, 0x76, 0xc6, 0x72, 0x5c, 0x33, + 0x2d, 0xc2, 0x65, 0x08, 0x8f, 0xb8, 0x98, 0x16, 0xc1, 0x8c, 0x27, 0x1b, 0x08, 0x97, 0x70, 0x1a, + 0x62, 0xf7, 0x2e, 0xeb, 0x81, 0xc0, 0x82, 0x7c, 0x6c, 0x20, 0x82, 0x66, 0x2c, 0xf9, 0xa3, 0xdf, + 0xce, 0x85, 0xe9, 0x47, 0x7e, 0xec, 0xf3, 0xcd, 0x8c, 0x65, 0x11, 0xb9, 0x1a, 0x2e, 0x8a, 0x0c, + 0xdb, 0x13, 0x09, 0xc9, 0xfb, 0x50, 0xd0, 0xdb, 0x7b, 0x1d, 0x11, 0xaa, 0x64, 0xfd, 0x46, 0x6a, + 0xed, 0xbd, 0x4e, 0xec, 0x8d, 0xd4, 0xd6, 0x36, 0x1a, 0x98, 0xf1, 0xa4, 0xa6, 0xb1, 0xab, 0x6f, + 0xef, 0xea, 0x55, 0x18, 0x8a, 0x69, 0xdc, 0xa0, 0xb4, 0x63, 0xa6, 0xc1, 0xda, 0x30, 0x67, 0x4b, + 0x9f, 0xbd, 0xbd, 0xe7, 0xfb, 0xd5, 0xca, 0x50, 0x9e, 0x7d, 0x6d, 0xcf, 0xf7, 0x63, 0xcf, 0xbe, + 0xb6, 0xb1, 0xb9, 0x89, 0x19, 0x4f, 0xca, 0xdb, 0xd6, 0x7d, 0xaf, 0x3a, 0x3e, 0x14, 0xde, 0xeb, + 0xba, 0xef, 0xc5, 0x78, 0xaf, 0xd7, 0x36, 0x35, 0xcc, 0x78, 0xa2, 0x3b, 0x90, 0xf7, 0x6c, 0x4f, + 0xe4, 0xbf, 0x5e, 0xcf, 0x98, 0xb5, 0x66, 0x0b, 0xce, 0xf2, 0x0c, 0x8b, 0xb6, 0xae, 0x61, 0xca, + 0x90, 0xf1, 0xdd, 0xf3, 0xaa, 0x93, 0xc3, 0xe1, 0xbb, 0x97, 0xe0, 0xbb, 0x41, 0xf9, 0xee, 0x79, + 0xe8, 0x2b, 0x39, 0x28, 0x76, 0xba, 0x5b, 0x5a, 0x77, 0xab, 0x3a, 0xc5, 0x78, 0x7f, 0x36, 0x63, + 0xde, 0x0d, 0x46, 0x9c, 0xb3, 0x97, 0x31, 0x06, 0x6f, 0xc4, 0x82, 0x33, 0x13, 0x82, 0x73, 0xad, + 0x4e, 0x0f, 0x45, 0x88, 0x65, 0x46, 0x2d, 0x26, 0x04, 0x6f, 0xc4, 0x82, 0x73, 0x20, 0x84, 0xa5, + 0x6f, 0x55, 0x67, 0x86, 0x25, 0x84, 0xa5, 0xa7, 0x08, 0x61, 0xe9, 0x5c, 0x08, 0x4b, 0xdf, 0xa2, + 0xaa, 0xbf, 0xd3, 0xdc, 0xf6, 0xaa, 0x68, 0x28, 0xaa, 0x7f, 0xbd, 0xb9, 0x1d, 0x57, 0xfd, 0xeb, + 0x4b, 0xd7, 0x34, 0xcc, 0x78, 0x52, 0x97, 0xe3, 0x59, 0xba, 0xb1, 0x5b, 0x3d, 0x33, 0x14, 0x97, + 0xa3, 0x51, 0xda, 0x31, 0x97, 0xc3, 0xda, 0x30, 0x67, 0x8b, 0xfe, 0x20, 0x07, 0x15, 0x71, 0x88, + 0x6d, 0xd9, 0x35, 0x9b, 0xd5, 0xb3, 0xd9, 0xac, 0x10, 0xe3, 0x62, 0x84, 0x1c, 0xb8, 0x30, 0x32, + 0xbb, 0xa0, 0x40, 0xb0, 0x2a, 0x08, 0xfa, 0xb3, 0x1c, 0x4c, 0xea, 0x91, 0xe3, 0x8a, 0xd5, 0xc7, + 0x99, 0x6c, 0x5b, 0x59, 0x4f, 0x09, 0xd1, 0x33, 0x91, 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x02, 0x71, + 0x4c, 0x22, 0xa6, 0xbe, 0x9e, 0xef, 0x9a, 0x1d, 0x52, 0x3d, 0x37, 0x14, 0xf5, 0xd5, 0x18, 0xf1, + 0x98, 0xfa, 0xf2, 0x46, 0x2c, 0x38, 0xb3, 0xa9, 0x9b, 0xf0, 0x25, 0x79, 0xf5, 0x89, 0xa1, 0x4c, + 0xdd, 0xc1, 0x82, 0x3f, 0x3a, 0x75, 0x8b, 0x56, 0x1c, 0x30, 0xa7, 0xba, 0xec, 0x92, 0xa6, 0xe9, + 0x55, 0xab, 0x43, 0xd1, 0x65, 0x4c, 0x69, 0xc7, 0x74, 0x99, 0xb5, 0x61, 0xce, 0x96, 0xba, 0x73, + 0xdb, 0xdb, 0xab, 0x3e, 0x39, 0x14, 0x77, 0xbe, 0xee, 0xed, 0xc5, 0xdc, 0xf9, 0xba, 0xb6, 0x81, + 0x29, 0x43, 0xe1, 0xce, 0x2d, 0x4f, 0x77, 0xab, 0xb3, 0x43, 0x72, 0xe7, 0x94, 0x78, 0xc2, 0x9d, + 0xd3, 0x46, 0x2c, 0x38, 0x33, 0x2d, 0x60, 0xf7, 0xd4, 0x4c, 0xa3, 0xfa, 0xb1, 0xa1, 0x68, 0xc1, + 0x32, 0xa7, 0x1e, 0xd3, 0x02, 0xd1, 0x8a, 0x03, 0xe6, 0xe8, 0x19, 0x1a, 0xd5, 0x76, 0x2c, 0xd3, + 0xd0, 0xbd, 0xea, 0x53, 0xec, 0x08, 0xe3, 0x38, 0x8f, 0x39, 0x79, 0x1b, 0x96, 0x50, 0xf4, 0xbd, + 0x1c, 0x4c, 0xc5, 0xf6, 0xd8, 0xaa, 0xe7, 0x99, 0xe8, 0x46, 0xc6, 0xa2, 0xd7, 0xa3, 0x5c, 0xf8, + 0x23, 0xc8, 0x53, 0x1f, 0xf1, 0x1d, 0x9a, 0xb8, 0x50, 0xe8, 0x1b, 0x39, 0x28, 0xcb, 0xb6, 0xea, + 0x05, 0x26, 0xe2, 0x5b, 0xc3, 0x12, 0x91, 0x0b, 0x27, 0xcf, 0x30, 0x86, 0xc7, 0x15, 0x42, 0x11, + 0x98, 0xd7, 0x66, 0x3a, 0xaf, 0xf9, 0x2e, 0xd1, 0xdb, 0xd5, 0x8b, 0x43, 0xf1, 0xda, 0x38, 0xe4, + 0x10, 0xf3, 0xda, 0x0a, 0x04, 0xab, 0x82, 0xb0, 0x57, 0xaa, 0x47, 0x8f, 0x10, 0x56, 0x2f, 0x0d, + 0xe5, 0x95, 0xc6, 0x0f, 0x2a, 0x46, 0x5f, 0x69, 0x0c, 0x8a, 0xe3, 0x42, 0xa1, 0xbf, 0xce, 0xc1, + 0x8c, 0x1e, 0x3f, 0x6f, 0x5c, 0xfd, 0x25, 0x26, 0x2a, 0x19, 0x86, 0xa8, 0x91, 0x73, 0xcd, 0x4c, + 0x58, 0xb9, 0x0f, 0x9f, 0x80, 0xe3, 0xa4, 0x68, 0x34, 0x48, 0xf1, 0xb6, 0xfd, 0x4e, 0x75, 0x6e, + 0x28, 0x41, 0x8a, 0xb6, 0xed, 0xc7, 0xd7, 0x45, 0xda, 0xb5, 0xcd, 0x06, 0x66, 0x3c, 0x79, 0x94, + 0x46, 0x5c, 0xd7, 0xf4, 0xab, 0x4f, 0x0f, 0x27, 0x4a, 0x63, 0xc4, 0xe3, 0x51, 0x1a, 0x6b, 0xc4, 0x82, 0xf3, 0x6c, 0x17, 0x20, 0xcc, 0x2d, 0xa4, 0xe4, 0x6f, 0x37, 0xd4, 0xfc, 0x6d, 0xe5, 0xca, - 0xab, 0x7d, 0x67, 0xd0, 0xb5, 0xff, 0x53, 0x73, 0x7d, 0x73, 0x5b, 0x37, 0x7c, 0x25, 0xf9, 0x3b, - 0xfb, 0xed, 0x1c, 0x4c, 0x44, 0xf2, 0x09, 0x29, 0xac, 0x77, 0xa2, 0xac, 0x71, 0xf6, 0x5b, 0x8e, - 0xaa, 0x44, 0xbf, 0x91, 0x83, 0xb2, 0xcc, 0x2c, 0xa4, 0x48, 0xd3, 0x8c, 0x4a, 0x33, 0x68, 0xa6, - 0x94, 0xb1, 0x4a, 0x97, 0x84, 0x8e, 0x4d, 0x24, 0xc5, 0x30, 0xfc, 0xb1, 0x91, 0xec, 0xd2, 0x25, - 0xfa, 0x28, 0x07, 0xe3, 0x6a, 0xa2, 0x21, 0x45, 0xa0, 0x56, 0x54, 0xa0, 0x8d, 0x6c, 0x0e, 0x47, - 0x1d, 0xf2, 0xae, 0x64, 0xce, 0x61, 0xf8, 0xef, 0x2a, 0x76, 0x43, 0x56, 0x95, 0xe4, 0x9b, 0x39, - 0x80, 0x30, 0x01, 0x91, 0x22, 0x0a, 0x89, 0x8a, 0x32, 0xe8, 0x1e, 0x35, 0xe7, 0xd5, 0x7b, 0x54, - 0x64, 0x36, 0x62, 0xf8, 0xa3, 0xb2, 0xb6, 0xb1, 0xb9, 0xd9, 0x43, 0x92, 0x6f, 0xe4, 0xa0, 0x2c, - 0x73, 0x13, 0xc3, 0x1f, 0x94, 0xf5, 0xda, 0xa6, 0xc6, 0x57, 0x0f, 0x49, 0x51, 0xbe, 0x9e, 0x83, - 0x52, 0x90, 0xab, 0x48, 0x91, 0xc4, 0x88, 0x4a, 0x32, 0xe8, 0x99, 0x3e, 0x6d, 0x5d, 0xeb, 0x31, - 0x24, 0x4c, 0x8e, 0xbd, 0x13, 0x93, 0x63, 0xa3, 0x97, 0x1c, 0x1f, 0xe4, 0xa0, 0xa2, 0xe4, 0x31, - 0x52, 0x44, 0xd9, 0x8e, 0x8a, 0x32, 0xe8, 0xf6, 0x8c, 0x60, 0xd6, 0x5b, 0x1a, 0x25, 0xa1, 0x31, - 0x7c, 0x69, 0x04, 0xb3, 0x43, 0xa5, 0x09, 0x32, 0x1b, 0x27, 0x22, 0x0d, 0x65, 0xd6, 0xdb, 0x9c, - 0x65, 0x96, 0x63, 0xf8, 0xe6, 0x7c, 0x7d, 0x69, 0x59, 0x3b, 0xc4, 0xc9, 0x85, 0x29, 0x8f, 0xe1, - 0xdb, 0x33, 0xe7, 0x95, 0x2e, 0xcb, 0x77, 0x73, 0x30, 0x1d, 0xcf, 0x7b, 0xa4, 0x48, 0xb4, 0x1b, - 0x95, 0x68, 0xd0, 0x8b, 0xff, 0x2a, 0xc7, 0x74, 0xb9, 0xfe, 0x20, 0x07, 0x67, 0x52, 0x72, 0x1e, - 0x29, 0xa2, 0xd9, 0x51, 0xd1, 0x6e, 0x0f, 0xeb, 0xce, 0x68, 0x5c, 0xb3, 0x95, 0xa4, 0xc7, 0xf0, + 0xcb, 0x7d, 0x67, 0xd0, 0xb5, 0x5f, 0xab, 0xb9, 0xbe, 0xb9, 0xad, 0x1b, 0xbe, 0x92, 0xfc, 0x9d, + 0xfd, 0x66, 0x0e, 0x26, 0x22, 0xf9, 0x84, 0x14, 0xd6, 0x3b, 0x51, 0xd6, 0x38, 0xfb, 0x2d, 0x47, + 0x55, 0xa2, 0xdf, 0xc9, 0x41, 0x59, 0x66, 0x16, 0x52, 0xa4, 0x69, 0x46, 0xa5, 0x19, 0x34, 0x53, + 0xca, 0x58, 0xa5, 0x4b, 0x42, 0xc7, 0x26, 0x92, 0x62, 0x18, 0xfe, 0xd8, 0x48, 0x76, 0xe9, 0x12, + 0x7d, 0x90, 0x83, 0x71, 0x35, 0xd1, 0x90, 0x22, 0x50, 0x2b, 0x2a, 0xd0, 0x46, 0x36, 0xa7, 0xac, + 0x0e, 0x79, 0x57, 0x32, 0xe7, 0x30, 0xfc, 0x77, 0x15, 0xbb, 0x6a, 0xab, 0x4a, 0xf2, 0xf5, 0x1c, + 0x40, 0x98, 0x80, 0x48, 0x11, 0x85, 0x44, 0x45, 0x19, 0x74, 0x8f, 0x9a, 0xf3, 0xea, 0x3d, 0x2a, + 0x32, 0x1b, 0x31, 0xfc, 0x51, 0x59, 0xdb, 0xd8, 0xdc, 0xec, 0x21, 0xc9, 0xd7, 0x72, 0x50, 0x96, + 0xb9, 0x89, 0xe1, 0x0f, 0xca, 0x7a, 0x6d, 0x53, 0xe3, 0xab, 0x87, 0xa4, 0x28, 0x5f, 0xcd, 0x41, + 0x29, 0xc8, 0x55, 0xa4, 0x48, 0x62, 0x44, 0x25, 0x19, 0xf4, 0x70, 0xa0, 0xb6, 0xae, 0xf5, 0x18, + 0x12, 0x26, 0xc7, 0xde, 0x89, 0xc9, 0xb1, 0xd1, 0x4b, 0x8e, 0xf7, 0x72, 0x50, 0x51, 0xf2, 0x18, + 0x29, 0xa2, 0x6c, 0x47, 0x45, 0x19, 0x74, 0x7b, 0x46, 0x30, 0xeb, 0x2d, 0x8d, 0x92, 0xd0, 0x18, + 0xbe, 0x34, 0x82, 0xd9, 0xa1, 0xd2, 0x04, 0x99, 0x8d, 0x13, 0x91, 0x86, 0x32, 0xeb, 0x6d, 0xce, + 0x32, 0xcb, 0x31, 0x7c, 0x73, 0xbe, 0xbe, 0x74, 0x4d, 0x3b, 0xc4, 0xc9, 0x85, 0x29, 0x8f, 0xe1, + 0xdb, 0x33, 0xe7, 0x95, 0x2e, 0xcb, 0xb7, 0x73, 0x30, 0x1d, 0xcf, 0x7b, 0xa4, 0x48, 0xb4, 0x1b, + 0x95, 0x68, 0xd0, 0x0a, 0x02, 0x2a, 0xc7, 0x74, 0xb9, 0xfe, 0x24, 0x07, 0x67, 0x52, 0x72, 0x1e, + 0x29, 0xa2, 0xd9, 0x51, 0xd1, 0x6e, 0x0f, 0xeb, 0xf2, 0x69, 0x5c, 0xb3, 0x95, 0xa4, 0xc7, 0xf0, 0x35, 0x5b, 0x30, 0xeb, 0x1d, 0x4e, 0xa8, 0xc9, 0x8f, 0xe1, 0x87, 0x13, 0xc9, 0xb3, 0x15, 0x71, 0xfd, 0x0e, 0xd3, 0x20, 0xc3, 0xd7, 0x6f, 0xce, 0xab, 0xf7, 0x3c, 0x11, 0x24, 0x45, 0x86, 0x3f, 0x4f, 0xac, 0x6b, 0x1b, 0x87, 0xce, 0x13, 0x32, 0x41, 0x72, 0x12, 0xf3, 0x04, 0x63, 0xd6, 0x5b, - 0x63, 0xd4, 0x44, 0xc9, 0xf0, 0x35, 0x26, 0xe0, 0x96, 0x2e, 0xcf, 0xf7, 0x72, 0xca, 0xed, 0x24, - 0x25, 0xfb, 0x91, 0x22, 0x97, 0x13, 0x95, 0xeb, 0xad, 0xa1, 0x9d, 0x43, 0x56, 0xe5, 0xfb, 0x38, - 0x07, 0x93, 0xd1, 0xd4, 0x47, 0x8a, 0x64, 0x66, 0x54, 0x32, 0x6d, 0x08, 0x37, 0x9f, 0xe2, 0x9e, + 0x63, 0xd4, 0x44, 0xc9, 0xf0, 0x35, 0x26, 0xe0, 0x96, 0x2e, 0xcf, 0x77, 0x72, 0xca, 0x35, 0x27, + 0x25, 0xfb, 0x91, 0x22, 0x97, 0x13, 0x95, 0xeb, 0x8d, 0xa1, 0x9d, 0x43, 0x56, 0xe5, 0xfb, 0x30, + 0x07, 0x93, 0xd1, 0xd4, 0x47, 0x8a, 0x64, 0x66, 0x54, 0x32, 0x6d, 0x08, 0x57, 0xa8, 0xe2, 0x9e, 0x3b, 0x9e, 0xfb, 0x18, 0xbe, 0xe7, 0x56, 0x39, 0xf6, 0x7e, 0x97, 0x69, 0x69, 0x8f, 0xe1, 0xbf, - 0xcb, 0xde, 0x97, 0x39, 0x55, 0xf9, 0xbe, 0x9f, 0x83, 0x73, 0xe9, 0xb9, 0x8e, 0x14, 0x09, 0xf7, - 0xa2, 0x12, 0xbe, 0x3d, 0xc4, 0x2b, 0xdf, 0xf1, 0x58, 0x45, 0x26, 0x3b, 0x86, 0x1f, 0xab, 0x68, - 0xcb, 0x9b, 0x8d, 0xc3, 0x62, 0xb8, 0x30, 0xef, 0x71, 0x02, 0x31, 0x1c, 0x67, 0x96, 0x2a, 0xcd, - 0x9c, 0x1f, 0x39, 0x71, 0xc4, 0x8f, 0x23, 0xa1, 0xf7, 0xe4, 0x01, 0x28, 0x7e, 0x4e, 0xe8, 0xd3, - 0xfd, 0xe7, 0x54, 0x0e, 0x3f, 0xe7, 0xf4, 0xd7, 0x05, 0x98, 0x8a, 0xe5, 0x17, 0x58, 0xe9, 0x11, - 0xfa, 0x93, 0xd5, 0xe9, 0xca, 0x45, 0xef, 0x61, 0x5f, 0x0d, 0x00, 0x38, 0xc4, 0x41, 0x1f, 0xe7, - 0x60, 0xea, 0xae, 0xee, 0x1b, 0x3b, 0x0d, 0xdd, 0xdf, 0xe1, 0x87, 0xd5, 0x32, 0x7a, 0x7b, 0x6f, - 0x46, 0xa9, 0x86, 0xe9, 0xc5, 0x18, 0x00, 0xc7, 0xf9, 0xa3, 0xe7, 0x61, 0xac, 0xe3, 0x58, 0x96, - 0x69, 0xb7, 0x44, 0xc1, 0x15, 0x99, 0x2f, 0x6f, 0xf0, 0x66, 0x1c, 0xc0, 0xa3, 0x85, 0xb2, 0x0a, - 0x99, 0x1c, 0x03, 0x89, 0x0d, 0xe9, 0xb1, 0x4e, 0x67, 0x8e, 0x3e, 0x2e, 0xa7, 0x33, 0xff, 0xb1, - 0x00, 0x28, 0x39, 0x07, 0x3e, 0xac, 0x94, 0xdc, 0x65, 0x28, 0x1a, 0xa1, 0xaa, 0x28, 0xe7, 0xa9, - 0xc5, 0x1b, 0x15, 0x50, 0x7e, 0xd3, 0xc1, 0x23, 0x46, 0xd7, 0x25, 0xc9, 0xca, 0x41, 0xbc, 0x1d, - 0x4b, 0x8c, 0x3e, 0x0b, 0x63, 0x7c, 0x94, 0xbc, 0xad, 0xf0, 0x5e, 0xe6, 0xc1, 0x40, 0x1f, 0x2f, - 0xff, 0x16, 0x2b, 0x14, 0xb4, 0x23, 0x6e, 0x63, 0x15, 0xfb, 0xbe, 0xd9, 0x5d, 0x93, 0x9d, 0xb1, - 0x42, 0xe8, 0x74, 0xca, 0x68, 0x0c, 0xa6, 0x53, 0x3f, 0x2b, 0xc2, 0x4c, 0xc2, 0x5d, 0x9e, 0xd2, - 0xc5, 0xca, 0x17, 0xa0, 0x44, 0xff, 0x2a, 0x75, 0x2c, 0xe4, 0x3b, 0xbc, 0x2e, 0xda, 0xb1, 0xc4, - 0x50, 0xee, 0x0f, 0xe6, 0x7b, 0xde, 0x1f, 0xbc, 0x1d, 0xb9, 0x44, 0x9d, 0x65, 0xad, 0xb3, 0x57, - 0x61, 0x82, 0x67, 0xeb, 0x83, 0x9b, 0x76, 0xa3, 0xd1, 0x9b, 0x56, 0xd7, 0x54, 0x20, 0x8e, 0xe2, - 0xf6, 0xb8, 0x57, 0x57, 0x3c, 0xd6, 0xbd, 0xba, 0x0f, 0x93, 0x05, 0x2d, 0xde, 0xcd, 0x7a, 0xfa, - 0xec, 0xc3, 0xb2, 0xd4, 0x4b, 0xa9, 0xa5, 0x43, 0x2f, 0xa5, 0x2e, 0x40, 0xd9, 0xf3, 0xac, 0x37, - 0x88, 0x6b, 0x6e, 0xef, 0xb3, 0x0b, 0x91, 0x4a, 0xe1, 0x2d, 0x2d, 0x00, 0xe0, 0x10, 0xe7, 0x71, - 0x3c, 0x4f, 0xff, 0x0f, 0x39, 0x98, 0xe4, 0xe9, 0xad, 0x5a, 0xa7, 0xb3, 0xe8, 0x92, 0xa6, 0x47, + 0xcb, 0xde, 0xb7, 0x42, 0x55, 0xf9, 0xbe, 0x9b, 0x83, 0x73, 0xe9, 0xb9, 0x8e, 0x14, 0x09, 0xf7, + 0xa2, 0x12, 0xbe, 0x39, 0xc4, 0xbb, 0xe3, 0xf1, 0x58, 0x45, 0x26, 0x3b, 0x86, 0x1f, 0xab, 0x68, + 0xd7, 0x36, 0x1b, 0x87, 0xc5, 0x70, 0x61, 0xde, 0xe3, 0x04, 0x62, 0x38, 0xce, 0x2c, 0x55, 0x9a, + 0x39, 0x3f, 0x72, 0xe2, 0x88, 0x1f, 0x47, 0x42, 0xef, 0xc8, 0x03, 0x50, 0xfc, 0x9c, 0xd0, 0x27, + 0xfb, 0xcf, 0xa9, 0x1c, 0x7e, 0xce, 0xe9, 0xef, 0x0a, 0x30, 0x15, 0xcb, 0x2f, 0xb0, 0x1a, 0x26, + 0xf4, 0x27, 0x2b, 0xf8, 0x95, 0x8b, 0x5e, 0xe8, 0xbe, 0x1a, 0x00, 0x70, 0x88, 0x83, 0x3e, 0xcc, + 0xc1, 0xd4, 0x5d, 0xdd, 0x37, 0x76, 0x1a, 0xba, 0xbf, 0xc3, 0x0f, 0xab, 0x65, 0xf4, 0xf6, 0x5e, + 0x8f, 0x52, 0x0d, 0xd3, 0x8b, 0x31, 0x00, 0x8e, 0xf3, 0x47, 0xcf, 0xc2, 0x58, 0xc7, 0xb1, 0x2c, + 0xd3, 0x6e, 0x89, 0xca, 0x2d, 0x32, 0x5f, 0xde, 0xe0, 0xcd, 0x38, 0x80, 0x47, 0x2b, 0x6e, 0x15, + 0x32, 0x39, 0x06, 0x12, 0x1b, 0xd2, 0x63, 0x9d, 0xce, 0x1c, 0x7d, 0x54, 0x4e, 0x67, 0xfe, 0x4b, + 0x01, 0x50, 0x72, 0x0e, 0x7c, 0x58, 0x4d, 0xba, 0xcb, 0x50, 0x34, 0x42, 0x55, 0x51, 0xce, 0x53, + 0x8b, 0x37, 0x2a, 0xa0, 0xfc, 0xa6, 0x83, 0x47, 0x8c, 0xae, 0x4b, 0x92, 0x25, 0x88, 0x78, 0x3b, + 0x96, 0x18, 0x7d, 0x56, 0xd8, 0xf8, 0x20, 0x79, 0x5b, 0xe1, 0x9d, 0xcc, 0x83, 0x81, 0x3e, 0x5e, + 0xfe, 0x2d, 0x56, 0x71, 0x68, 0x47, 0xdc, 0xc6, 0x2a, 0xf6, 0x7d, 0x45, 0xbc, 0x26, 0x3b, 0x63, + 0x85, 0xd0, 0xe9, 0xd4, 0xe3, 0x18, 0x4c, 0xa7, 0x7e, 0x52, 0x84, 0x99, 0x84, 0xbb, 0x3c, 0xa5, + 0x1b, 0x9a, 0xcf, 0x41, 0x89, 0xfe, 0x55, 0x0a, 0x62, 0xc8, 0x77, 0x78, 0x5d, 0xb4, 0x63, 0x89, + 0xa1, 0x5c, 0x44, 0xcc, 0xf7, 0xbc, 0x88, 0x78, 0x3b, 0x72, 0x1b, 0x3b, 0xcb, 0xa2, 0x69, 0x2f, + 0xc3, 0x04, 0xcf, 0xd6, 0x07, 0x37, 0xed, 0x46, 0xa3, 0x37, 0xad, 0x96, 0x55, 0x20, 0x8e, 0xe2, + 0xf6, 0xb8, 0x57, 0x57, 0x3c, 0xd6, 0xbd, 0xba, 0xf7, 0x93, 0x95, 0x31, 0xde, 0xce, 0x7a, 0xfa, + 0xec, 0xc3, 0xb2, 0xd4, 0xdb, 0xad, 0xa5, 0x43, 0x6f, 0xb7, 0x2e, 0x40, 0xd9, 0xf3, 0xac, 0xd7, + 0x88, 0x6b, 0x6e, 0xef, 0xb3, 0xcb, 0x96, 0x4a, 0x05, 0x2f, 0x2d, 0x00, 0xe0, 0x10, 0xe7, 0x51, + 0x3c, 0x4f, 0xff, 0xcf, 0x39, 0x98, 0xe4, 0xe9, 0xad, 0x5a, 0xa7, 0xb3, 0xe8, 0x92, 0xa6, 0x47, 0x5d, 0x4f, 0xc7, 0x35, 0xef, 0xe8, 0x3e, 0x09, 0xae, 0xc2, 0xf5, 0xe7, 0x7a, 0x1a, 0xb2, 0x33, - 0x56, 0x08, 0xa1, 0x67, 0x61, 0x54, 0xef, 0x74, 0x56, 0x96, 0x98, 0x0c, 0xf9, 0xf0, 0xd8, 0x40, - 0x8d, 0x36, 0x62, 0x0e, 0x43, 0xaf, 0xc1, 0xa4, 0x69, 0x7b, 0xbe, 0x6e, 0x59, 0xec, 0xcc, 0xfd, - 0xca, 0x12, 0x73, 0xf4, 0xf9, 0xf0, 0x10, 0xc8, 0x4a, 0x04, 0x8a, 0x63, 0xd8, 0x73, 0x7f, 0x5b, + 0x56, 0x08, 0xa1, 0xa7, 0x61, 0x54, 0xef, 0x74, 0x56, 0x96, 0x98, 0x0c, 0xf9, 0xf0, 0xd8, 0x40, + 0x8d, 0x36, 0x62, 0x0e, 0x43, 0xaf, 0xc0, 0xa4, 0x69, 0x7b, 0xbe, 0x6e, 0x59, 0xec, 0xcc, 0xfd, + 0xca, 0x12, 0x73, 0xf4, 0xf9, 0xf0, 0x10, 0xc8, 0x4a, 0x04, 0x8a, 0x63, 0xd8, 0x73, 0xff, 0x50, 0x81, 0x99, 0x44, 0xb6, 0x0e, 0xcd, 0xc2, 0x88, 0xc9, 0x2f, 0x29, 0xe5, 0xeb, 0x20, 0x28, 0x8d, - 0xac, 0x2c, 0xe1, 0x11, 0xb3, 0xa9, 0x3a, 0x92, 0x91, 0x93, 0x73, 0x24, 0xb2, 0x56, 0x41, 0xfe, - 0xa8, 0xb5, 0x0a, 0xc2, 0xbb, 0x83, 0xe2, 0xee, 0x5d, 0xca, 0x85, 0xee, 0xf0, 0xbe, 0x21, 0x56, - 0xf0, 0x8f, 0x54, 0x3c, 0xe1, 0x26, 0x94, 0xf4, 0x8e, 0xc9, 0xef, 0x15, 0x17, 0xfb, 0xbe, 0xef, + 0xac, 0x2c, 0xe1, 0x11, 0xb3, 0xa9, 0x3a, 0x92, 0x91, 0x93, 0x73, 0x24, 0xb2, 0xe8, 0x41, 0xfe, + 0xa8, 0x45, 0x0f, 0xc2, 0xbb, 0x83, 0xe2, 0xee, 0x5d, 0xca, 0xcd, 0xf0, 0xf0, 0xbe, 0x21, 0x56, + 0xf0, 0x8f, 0x54, 0x85, 0xe1, 0x26, 0x94, 0xf4, 0x8e, 0xc9, 0xef, 0x15, 0x17, 0xfb, 0xbe, 0xef, 0x53, 0x6b, 0xac, 0xf0, 0x4b, 0xc5, 0x92, 0x48, 0xf2, 0x46, 0xf1, 0x58, 0xb6, 0x37, 0x8a, 0xd5, 0x60, 0xa0, 0xf4, 0xd0, 0x60, 0xe0, 0x32, 0x14, 0x75, 0xc3, 0x37, 0xef, 0x10, 0x61, 0xc7, 0x32, - 0xc4, 0xa8, 0xb1, 0x56, 0x2c, 0xa0, 0xa2, 0xdc, 0xaf, 0x1f, 0x84, 0xbc, 0x90, 0x28, 0xf7, 0x1b, - 0x80, 0xb0, 0x8a, 0xc7, 0x7c, 0x2d, 0x53, 0x9a, 0xc0, 0xd7, 0x56, 0x62, 0xbe, 0x56, 0x05, 0xe2, - 0x28, 0x2e, 0xaa, 0xc1, 0x14, 0x6f, 0xb8, 0xd5, 0xb1, 0x1c, 0xbd, 0x49, 0xbb, 0x8f, 0x47, 0xb5, - 0xe2, 0x5a, 0x14, 0x8c, 0xe3, 0xf8, 0x3d, 0xdc, 0xf5, 0xc4, 0xe0, 0xee, 0x7a, 0x32, 0x1b, 0x77, - 0x1d, 0xb7, 0xc8, 0x3e, 0xdc, 0xf5, 0xfb, 0xf1, 0xca, 0x00, 0xfc, 0x94, 0xe6, 0xa0, 0xae, 0x95, - 0x9a, 0x57, 0x53, 0xbd, 0xfb, 0x7f, 0xa4, 0x8a, 0x00, 0x9f, 0x86, 0x09, 0xc7, 0x6d, 0xe9, 0xb6, - 0x79, 0x9f, 0x39, 0x1c, 0x8f, 0x9d, 0xd6, 0x2c, 0x73, 0x6d, 0xbd, 0xa9, 0x02, 0x70, 0x14, 0x0f, - 0xdd, 0x87, 0x72, 0x2b, 0xf0, 0xb2, 0xd5, 0x99, 0x4c, 0xfc, 0x4c, 0xd4, 0x6b, 0xf3, 0xeb, 0x41, - 0xb2, 0x0d, 0x87, 0xec, 0x94, 0x59, 0x09, 0x3d, 0x2e, 0xb3, 0xd2, 0xfb, 0x25, 0xe6, 0xc6, 0xa3, - 0xdb, 0x1c, 0xa7, 0x14, 0xf3, 0x7d, 0x06, 0xca, 0x22, 0x22, 0x10, 0x73, 0x57, 0xb9, 0xfe, 0x09, - 0xa1, 0x2a, 0x67, 0x12, 0xb5, 0x34, 0x56, 0x96, 0x70, 0x88, 0x7d, 0xc4, 0x00, 0x30, 0x52, 0xd3, - 0xa1, 0x90, 0x5d, 0x4d, 0x07, 0x0d, 0x9e, 0xe4, 0xf7, 0x6f, 0x35, 0x6d, 0x95, 0x05, 0x28, 0xa6, - 0xc1, 0xaf, 0xdf, 0xf2, 0xea, 0x7f, 0xe7, 0xc5, 0x43, 0x3c, 0x79, 0x35, 0x0d, 0x09, 0xa7, 0xf7, - 0x15, 0x9e, 0xce, 0xd2, 0xa5, 0xa7, 0x2b, 0x26, 0x3c, 0x5d, 0x08, 0xc4, 0x51, 0xdc, 0x1e, 0x6e, - 0xaa, 0x34, 0xb8, 0x9b, 0x2a, 0x67, 0xe5, 0xa6, 0xa2, 0x1a, 0x77, 0xcc, 0xa8, 0x12, 0x0e, 0x8d, - 0x2a, 0x6f, 0x43, 0xc5, 0x63, 0x6f, 0x92, 0xbf, 0xf0, 0x4a, 0xdf, 0x2f, 0x5c, 0x0b, 0x7b, 0x63, - 0x95, 0x94, 0x62, 0xe8, 0xe3, 0x27, 0x58, 0x28, 0x62, 0x0e, 0x8a, 0x2d, 0xd7, 0xe9, 0x76, 0xf8, - 0x9d, 0x01, 0xa1, 0xe4, 0xd7, 0x58, 0x0b, 0x16, 0x90, 0xc1, 0x9c, 0xc1, 0xf7, 0xca, 0x30, 0x15, - 0xdb, 0x67, 0x4c, 0xcd, 0x33, 0xe5, 0x4e, 0x39, 0xcf, 0x74, 0x09, 0x0a, 0x3e, 0x0d, 0x1a, 0x46, - 0xa2, 0xb7, 0xd2, 0x59, 0xb4, 0xc0, 0x20, 0xc9, 0xe2, 0x17, 0xf9, 0xa3, 0x17, 0xbf, 0x40, 0xff, - 0x0b, 0xca, 0x7a, 0xb3, 0xe9, 0x12, 0xcf, 0x23, 0x41, 0x35, 0x1d, 0xe6, 0xf3, 0x6b, 0x41, 0x23, - 0x0e, 0xe1, 0x6c, 0xa1, 0xda, 0xdc, 0xf6, 0x6e, 0x79, 0x22, 0x7b, 0xa4, 0x2e, 0x54, 0x97, 0x96, - 0x35, 0xda, 0x8e, 0x25, 0x06, 0x6a, 0xc2, 0xd4, 0xae, 0xbb, 0xb5, 0xb8, 0xa8, 0x1b, 0x3b, 0xe4, - 0x38, 0x19, 0x07, 0x56, 0x25, 0xf7, 0x46, 0x94, 0x02, 0x8e, 0x93, 0x14, 0x5c, 0x6e, 0x90, 0x7d, - 0x5f, 0xdf, 0x3a, 0x4e, 0x4c, 0x18, 0x70, 0x51, 0x29, 0xe0, 0x38, 0x49, 0x1a, 0xc1, 0xed, 0xba, - 0x5b, 0xc1, 0x8d, 0x76, 0x51, 0x95, 0x4b, 0x46, 0x70, 0x37, 0x42, 0x10, 0x56, 0xf1, 0xe8, 0x80, - 0xed, 0xba, 0x5b, 0x98, 0xe8, 0x56, 0x5b, 0x14, 0x16, 0x94, 0x03, 0x76, 0x43, 0xb4, 0x63, 0x89, - 0x81, 0x3a, 0x80, 0xe8, 0xd3, 0xb1, 0xf7, 0x2e, 0xaf, 0xe4, 0x8a, 0x45, 0xdf, 0x73, 0x69, 0x4f, - 0x23, 0x91, 0xd4, 0x07, 0x3a, 0x47, 0xdd, 0xdd, 0x8d, 0x04, 0x1d, 0x9c, 0x42, 0x1b, 0xbd, 0x05, - 0x4f, 0xed, 0xba, 0x5b, 0x22, 0xed, 0xdf, 0x70, 0x4d, 0xdb, 0x30, 0x3b, 0x3a, 0xaf, 0x11, 0x50, - 0x89, 0xd6, 0x41, 0xbc, 0x91, 0x8e, 0x86, 0x7b, 0xf5, 0x8f, 0x26, 0x3d, 0xc7, 0x33, 0x49, 0x7a, - 0xc6, 0xcc, 0xf5, 0x51, 0x2f, 0x76, 0x33, 0x98, 0x7f, 0xfa, 0x61, 0x0e, 0x10, 0x3b, 0x61, 0x15, - 0x7c, 0x0d, 0x84, 0x39, 0x3f, 0xb4, 0x00, 0x65, 0xe6, 0xfd, 0x94, 0x4b, 0xaf, 0x32, 0x7b, 0x70, - 0x2d, 0x00, 0xe0, 0x10, 0x87, 0xae, 0x51, 0x1c, 0xab, 0x49, 0x64, 0xa5, 0x0a, 0xb9, 0x46, 0xb9, - 0xc9, 0x5a, 0xb1, 0x80, 0xa2, 0x6b, 0x30, 0xe3, 0x92, 0x2d, 0xdd, 0xd2, 0x6d, 0x83, 0x68, 0xbe, - 0xab, 0xfb, 0xa4, 0xb5, 0x2f, 0x3c, 0x89, 0x3c, 0xc6, 0x8a, 0xe3, 0x08, 0x38, 0xd9, 0x67, 0xee, - 0x9f, 0x4b, 0x30, 0x1d, 0x3f, 0x1a, 0xf6, 0xb0, 0x5c, 0xed, 0x02, 0x94, 0x3b, 0xba, 0xeb, 0x9b, - 0x4a, 0x1d, 0x0f, 0xf9, 0x54, 0x8d, 0x00, 0x80, 0x43, 0x1c, 0xba, 0xec, 0x67, 0x65, 0x5a, 0x85, - 0x84, 0x72, 0xd9, 0xcf, 0xca, 0xb8, 0x62, 0x0e, 0x4b, 0x2f, 0x0e, 0x51, 0x38, 0xb1, 0xe2, 0x10, - 0x8f, 0x44, 0xdd, 0xd7, 0x0f, 0x92, 0x69, 0xb2, 0x77, 0x32, 0x3e, 0xf7, 0xd7, 0xdf, 0xb2, 0x6b, - 0xc2, 0x50, 0xf5, 0x59, 0x14, 0xc3, 0xd8, 0xc8, 0x42, 0xa4, 0x88, 0xa1, 0xf0, 0xd5, 0x53, 0xa4, - 0x09, 0x47, 0x59, 0xa3, 0x06, 0x9c, 0xb5, 0xcc, 0xb6, 0x48, 0xf8, 0x79, 0x0d, 0xe2, 0xf2, 0xea, - 0xc8, 0xcc, 0x51, 0xe7, 0xc3, 0x44, 0xc8, 0x6a, 0x0a, 0x0e, 0x4e, 0xed, 0x89, 0x9e, 0x87, 0xb1, - 0x3b, 0xc4, 0x65, 0x97, 0xf7, 0x21, 0x5a, 0xb1, 0xfd, 0x0d, 0xde, 0x8c, 0x03, 0x38, 0x7a, 0x0b, - 0x0a, 0x9e, 0xee, 0x59, 0x22, 0x50, 0x3b, 0xc6, 0x51, 0xe6, 0x9a, 0xb6, 0x2a, 0xd4, 0x83, 0xa5, - 0x68, 0xe9, 0x6f, 0xcc, 0x48, 0x9e, 0x52, 0xc0, 0x16, 0x6e, 0xb7, 0x4c, 0x1c, 0xb6, 0xdd, 0x32, - 0x98, 0x53, 0xfc, 0x7e, 0x11, 0xa6, 0x62, 0x67, 0x3d, 0x1f, 0xe6, 0x5a, 0xa4, 0xa7, 0x18, 0x39, - 0xc4, 0x53, 0xbc, 0x00, 0x25, 0xc3, 0x32, 0x89, 0xed, 0xaf, 0x34, 0x85, 0x47, 0x09, 0xaf, 0x94, - 0xf3, 0xf6, 0x25, 0x2c, 0x31, 0x4e, 0xdb, 0xaf, 0xa8, 0x0e, 0x60, 0xf4, 0xa8, 0x45, 0x67, 0x8a, - 0xc3, 0xfc, 0xf8, 0x4f, 0x36, 0x57, 0xdb, 0x63, 0x2f, 0xf6, 0x91, 0x2f, 0x22, 0x1d, 0x6c, 0xb2, - 0x94, 0xb3, 0xde, 0x64, 0x19, 0xcc, 0x46, 0xfe, 0x7e, 0x04, 0x4a, 0xeb, 0xb5, 0x4d, 0x8d, 0x15, - 0x57, 0x7e, 0x3b, 0x5a, 0x3e, 0x7a, 0x10, 0x21, 0x93, 0x75, 0xa2, 0x97, 0xa9, 0x69, 0xf5, 0x5d, - 0x22, 0xba, 0xcc, 0xad, 0x8f, 0xae, 0x33, 0x79, 0x77, 0xb4, 0x08, 0x05, 0x7b, 0xb7, 0xdf, 0x6f, - 0x68, 0xb0, 0x31, 0x5b, 0xbf, 0x41, 0xf6, 0x31, 0xeb, 0x8c, 0x6e, 0x01, 0x18, 0x2e, 0x69, 0x12, - 0xdb, 0x37, 0xc5, 0x27, 0xcc, 0xfa, 0xdb, 0x5f, 0x58, 0x94, 0x9d, 0xb1, 0x42, 0x68, 0xee, 0x1b, - 0x45, 0x98, 0x8e, 0x9f, 0xe9, 0x7e, 0x98, 0xcb, 0x79, 0x1e, 0xc6, 0xbc, 0x2e, 0x2b, 0x70, 0x23, - 0x9c, 0x8e, 0x9c, 0x06, 0x34, 0xde, 0x8c, 0x03, 0x78, 0xba, 0x2b, 0xc9, 0x9f, 0x8a, 0x2b, 0x29, - 0x1c, 0xd5, 0x95, 0x64, 0x1d, 0xd0, 0x7c, 0x90, 0xfc, 0x3c, 0xc4, 0x3b, 0x19, 0x9f, 0xc2, 0xef, - 0xc3, 0x97, 0x10, 0x61, 0xd5, 0x63, 0x99, 0x94, 0x86, 0x09, 0x0c, 0x31, 0xb1, 0x8f, 0xfa, 0x18, - 0x56, 0xec, 0xfb, 0xe9, 0x28, 0x4c, 0x46, 0x0f, 0x69, 0xd2, 0x65, 0xf1, 0x8e, 0xe3, 0xf9, 0x22, - 0x59, 0x10, 0xff, 0x8e, 0xe1, 0xf5, 0x10, 0x84, 0x55, 0xbc, 0xa3, 0xcd, 0xc9, 0xcf, 0xc3, 0x98, - 0xa8, 0x45, 0x27, 0xa6, 0x64, 0x69, 0x45, 0xa2, 0x5e, 0x1d, 0x0e, 0xe0, 0xff, 0x3d, 0x21, 0x5b, - 0x1e, 0xfa, 0x66, 0x72, 0x42, 0x7e, 0x3b, 0xd3, 0x13, 0xb9, 0x8f, 0xfa, 0x7c, 0x3c, 0x98, 0x72, - 0xbf, 0x05, 0x33, 0x89, 0xcd, 0x9b, 0xa3, 0xd5, 0xfa, 0xbe, 0x08, 0xa3, 0xb6, 0xde, 0x26, 0xbc, - 0x1c, 0x56, 0x99, 0x4f, 0x6f, 0xec, 0x73, 0x10, 0x98, 0xb7, 0xcf, 0xfd, 0xa0, 0x08, 0x33, 0x89, - 0x9b, 0x27, 0x6c, 0xc9, 0x2b, 0x37, 0x00, 0x62, 0x0b, 0xf9, 0xd4, 0xb4, 0xff, 0x6b, 0x30, 0xc9, - 0x0c, 0xa3, 0x11, 0xdb, 0x36, 0x90, 0x9b, 0xd8, 0x9b, 0x11, 0x28, 0x8e, 0x61, 0x1f, 0x6d, 0xc9, - 0xfc, 0x1a, 0x4c, 0xaa, 0xdf, 0x2f, 0x59, 0x59, 0x12, 0xdb, 0xc2, 0x92, 0x89, 0x16, 0x81, 0xe2, - 0x18, 0x36, 0xfb, 0xf8, 0x8b, 0x9c, 0x3c, 0x45, 0x3a, 0x6e, 0xb4, 0xff, 0x8f, 0xbf, 0xc4, 0x48, - 0xe0, 0x04, 0x51, 0xb4, 0x05, 0xb3, 0x3c, 0x7d, 0xaf, 0x0a, 0x14, 0x3b, 0x52, 0x32, 0x27, 0x84, - 0x9e, 0x5d, 0xea, 0x89, 0x89, 0x0f, 0xa1, 0xd2, 0x67, 0x75, 0xc7, 0x0f, 0x93, 0x9f, 0xc3, 0x7c, - 0x37, 0xeb, 0xfb, 0x4a, 0xc7, 0xb2, 0xc1, 0xf2, 0xe3, 0x62, 0x83, 0x3f, 0xa8, 0x50, 0x43, 0x89, - 0x1d, 0xbd, 0x47, 0x73, 0x50, 0x64, 0xba, 0x49, 0xa7, 0x17, 0xb9, 0x13, 0xc0, 0x94, 0xd6, 0xc3, - 0x02, 0x72, 0x84, 0x24, 0xb9, 0x08, 0xd9, 0xf2, 0x3d, 0x42, 0xb6, 0x0e, 0x9c, 0xf1, 0x2d, 0x6f, - 0xd3, 0xed, 0x7a, 0xfe, 0x22, 0x71, 0x7d, 0x4f, 0xa8, 0x6e, 0xa1, 0xef, 0x6f, 0xc8, 0x6d, 0xae, - 0x6a, 0x71, 0x2a, 0x38, 0x8d, 0x34, 0x55, 0x60, 0xdf, 0xf2, 0x6a, 0x96, 0xe5, 0xdc, 0x0d, 0x4e, - 0x16, 0x84, 0x93, 0x8d, 0x98, 0x46, 0xa4, 0x02, 0x6f, 0xae, 0x6a, 0x3d, 0x30, 0xf1, 0x21, 0x54, - 0xd0, 0x1a, 0x7b, 0xaa, 0x37, 0x74, 0xcb, 0x6c, 0xea, 0x3e, 0xa1, 0xd3, 0x31, 0xcb, 0x5e, 0x73, - 0xeb, 0x90, 0xdb, 0x8d, 0x9b, 0xab, 0x5a, 0x1c, 0x05, 0xa7, 0xf5, 0x1b, 0xd6, 0x77, 0x64, 0x53, - 0x67, 0xef, 0xd2, 0xa9, 0xcc, 0xde, 0xe5, 0xfe, 0xac, 0x1c, 0x32, 0xb2, 0xf2, 0x98, 0xca, 0xf7, - 0x61, 0xe5, 0x4d, 0x98, 0x92, 0x1f, 0xd8, 0x11, 0x3a, 0x5b, 0xe9, 0x7b, 0xf7, 0xa3, 0x16, 0xa5, - 0x80, 0xe3, 0x24, 0x4f, 0x29, 0xa3, 0xf4, 0xe7, 0x39, 0x98, 0xa6, 0x92, 0xd4, 0xfc, 0x1d, 0x62, - 0xdf, 0x6f, 0xe8, 0xae, 0xde, 0x0e, 0x2a, 0x88, 0x6d, 0x67, 0x3e, 0xe4, 0xb5, 0x18, 0x23, 0x3e, - 0xf4, 0xb2, 0xac, 0x73, 0x1c, 0x8c, 0x13, 0x92, 0xd1, 0xa9, 0x2f, 0x6c, 0x3b, 0xce, 0xc7, 0x60, - 0xcf, 0x46, 0x19, 0x05, 0x53, 0x5f, 0x9c, 0xe8, 0x40, 0x3e, 0x76, 0x76, 0x11, 0x9e, 0x4c, 0x7d, - 0xd4, 0xbe, 0x1c, 0xf5, 0xd7, 0x8b, 0xe2, 0xfa, 0x4c, 0x06, 0x6b, 0x81, 0xac, 0xbf, 0xd6, 0x44, - 0x03, 0x2b, 0x5b, 0x7e, 0xcd, 0x2b, 0xf6, 0x95, 0xb7, 0xf0, 0xfb, 0x5d, 0x21, 0x0e, 0x9a, 0x85, - 0x91, 0xe6, 0x16, 0x73, 0xf5, 0xa3, 0xe1, 0x39, 0xbe, 0xa5, 0x3a, 0x1e, 0x69, 0x6e, 0xa1, 0xe7, - 0xa0, 0x24, 0x16, 0x19, 0xc1, 0x31, 0x37, 0xc6, 0x56, 0xac, 0x40, 0x3c, 0x2c, 0xa1, 0xc3, 0x0a, - 0xeb, 0x87, 0x90, 0xbf, 0x8f, 0xbf, 0xb9, 0x47, 0x3e, 0xd1, 0xd6, 0x9f, 0x87, 0x7e, 0x41, 0x29, - 0x5a, 0x0e, 0xd1, 0x5c, 0x6e, 0xb2, 0x22, 0xf9, 0x60, 0x01, 0xcb, 0x5f, 0x15, 0xe1, 0x5c, 0xfa, - 0xa5, 0xae, 0x47, 0xc6, 0x1a, 0xb8, 0x72, 0xe7, 0x53, 0x95, 0xfb, 0x93, 0x30, 0xe6, 0x31, 0xc1, - 0x83, 0x9d, 0x7f, 0x5e, 0x4e, 0x96, 0x37, 0xe1, 0x00, 0x86, 0x5e, 0x07, 0xd4, 0xd6, 0xef, 0xad, - 0x79, 0xad, 0x45, 0xa7, 0xcb, 0x2a, 0x64, 0x63, 0xa2, 0xf3, 0xf2, 0xed, 0xa3, 0xe1, 0xf9, 0x9a, - 0xb5, 0x04, 0x06, 0x4e, 0xe9, 0xc5, 0xce, 0x2a, 0x44, 0xf6, 0x7f, 0x62, 0x07, 0x7d, 0x0e, 0xdd, - 0xb0, 0x19, 0x52, 0xfc, 0xf1, 0x71, 0x32, 0x70, 0x37, 0x86, 0x72, 0xd3, 0xef, 0x51, 0x8f, 0xde, - 0x4f, 0xd2, 0x74, 0x7e, 0x56, 0x80, 0x33, 0x29, 0x95, 0x5e, 0xa2, 0xde, 0x3b, 0x77, 0x04, 0xef, - 0xbd, 0x27, 0x47, 0x2a, 0x9b, 0x83, 0xd6, 0x81, 0x50, 0x87, 0x0c, 0xd3, 0x87, 0x39, 0x38, 0xcb, - 0x36, 0xd8, 0x83, 0x5d, 0xbd, 0xa0, 0xc4, 0x6f, 0x5e, 0x68, 0xe6, 0x91, 0x6a, 0x6d, 0x5f, 0x4b, - 0xa1, 0x10, 0xee, 0x3a, 0xa6, 0x41, 0x71, 0x2a, 0x57, 0xb4, 0x08, 0x20, 0xaf, 0xca, 0x05, 0x96, - 0xfc, 0x2c, 0xab, 0x18, 0x2e, 0x5b, 0xff, 0x93, 0x6d, 0xde, 0x2b, 0xa3, 0xcd, 0x56, 0x46, 0x4a, - 0xb7, 0x61, 0x7c, 0x57, 0x25, 0xe5, 0xf5, 0x1e, 0xdd, 0x02, 0x06, 0xd3, 0xae, 0x3f, 0xcb, 0xc3, - 0x64, 0xf4, 0x45, 0xa2, 0xcb, 0x50, 0xec, 0xb8, 0x64, 0xdb, 0xbc, 0x17, 0xff, 0xbc, 0x46, 0x83, - 0xb5, 0x62, 0x01, 0x45, 0x0e, 0x14, 0x2d, 0x7d, 0x8b, 0xce, 0xf7, 0xbc, 0xbc, 0xf9, 0xb5, 0x81, - 0x4b, 0x75, 0x07, 0xbb, 0x0c, 0x01, 0xc3, 0x55, 0x46, 0x1e, 0x0b, 0x36, 0x94, 0xe1, 0xb6, 0x49, - 0xac, 0x26, 0x3f, 0xce, 0x39, 0x0c, 0x86, 0xcb, 0x8c, 0x3c, 0x16, 0x6c, 0xd0, 0xdb, 0x50, 0xe6, - 0xdf, 0x24, 0x69, 0xd6, 0xf7, 0xc5, 0x0a, 0xf7, 0x7f, 0x1e, 0x4d, 0x65, 0x37, 0xcd, 0x36, 0x09, - 0xcd, 0x71, 0x31, 0x20, 0x82, 0x43, 0x7a, 0xec, 0x53, 0xf4, 0xdb, 0x3e, 0x71, 0x35, 0x5f, 0x77, - 0x83, 0x2f, 0xc5, 0x87, 0x9f, 0xa2, 0x97, 0x10, 0xac, 0x60, 0xcd, 0xfd, 0xe5, 0x18, 0x4c, 0xc5, - 0xae, 0xd1, 0xfe, 0x6a, 0xdc, 0x11, 0x55, 0xbf, 0x9f, 0x92, 0xcf, 0xfa, 0xfb, 0x29, 0x85, 0x2c, - 0xc2, 0x83, 0xb7, 0x61, 0xdc, 0xf3, 0x76, 0x18, 0x66, 0xff, 0xb9, 0xba, 0xe9, 0x83, 0x07, 0x17, - 0xc7, 0x35, 0xed, 0xba, 0xec, 0x8e, 0x23, 0xc4, 0xd0, 0x2a, 0x8c, 0x89, 0xb3, 0x83, 0xfd, 0x1d, - 0xfc, 0x63, 0x61, 0x48, 0x10, 0x1e, 0x05, 0x24, 0x86, 0xb1, 0xe3, 0x1c, 0x53, 0xba, 0x47, 0x3e, - 0x10, 0x6e, 0xc0, 0xd9, 0x8e, 0x63, 0x59, 0xc1, 0xe1, 0x4d, 0xf9, 0xe5, 0xa3, 0x72, 0xf4, 0xea, - 0x4e, 0x23, 0x05, 0x07, 0xa7, 0xf6, 0x1c, 0xcc, 0xcb, 0xfe, 0x6b, 0x11, 0x26, 0xa3, 0x55, 0xa6, - 0x4e, 0xef, 0x02, 0x25, 0x4b, 0x04, 0xd6, 0x5c, 0x3b, 0x7e, 0x81, 0x72, 0x53, 0xb4, 0x63, 0x89, - 0x81, 0x30, 0x94, 0xf9, 0x81, 0xf6, 0x1b, 0xfd, 0xee, 0x39, 0xf3, 0x93, 0xb1, 0x41, 0x5f, 0x1c, - 0x92, 0xa1, 0x34, 0xbd, 0x00, 0xbd, 0x3f, 0xcb, 0x64, 0x34, 0x65, 0x33, 0x0e, 0xc9, 0xd0, 0x19, - 0xcb, 0x25, 0xad, 0x20, 0x1b, 0xa8, 0xcc, 0x58, 0x98, 0xb5, 0x62, 0x01, 0x45, 0xcf, 0xc3, 0x98, - 0xeb, 0x58, 0xa4, 0x86, 0xd7, 0x45, 0x34, 0x2d, 0x37, 0xca, 0x30, 0x6f, 0xc6, 0x01, 0x7c, 0x18, - 0x9b, 0x44, 0x51, 0x05, 0xe8, 0xc3, 0x84, 0xae, 0xc1, 0xcc, 0x1d, 0x91, 0x61, 0xd4, 0xcc, 0x96, - 0xad, 0xfb, 0xe1, 0x9d, 0x2b, 0x79, 0xe0, 0xf0, 0x8d, 0x38, 0x02, 0x4e, 0xf6, 0x39, 0xbd, 0x58, - 0x99, 0xd8, 0xcd, 0x8e, 0x63, 0xda, 0x7e, 0x3c, 0x56, 0xbe, 0x2a, 0xda, 0xb1, 0xc4, 0x18, 0xcc, - 0xce, 0xfe, 0x6e, 0x0c, 0x26, 0xa3, 0x55, 0xd4, 0xa2, 0x3a, 0x9c, 0x1b, 0x82, 0x0e, 0x8f, 0x64, - 0xad, 0xc3, 0xf9, 0x43, 0x75, 0xf8, 0x59, 0x18, 0x65, 0xdf, 0xe9, 0x17, 0xdb, 0x4d, 0x72, 0x73, - 0x8a, 0xd5, 0xfb, 0xc0, 0x1c, 0x86, 0x6a, 0x74, 0x86, 0x37, 0x7d, 0x1a, 0x85, 0xf0, 0x03, 0x77, - 0xfc, 0x2c, 0x42, 0x5e, 0x9d, 0x91, 0x23, 0x60, 0x1c, 0xc7, 0xef, 0xc7, 0x56, 0xfa, 0xdb, 0xfd, - 0x79, 0x0d, 0x26, 0x99, 0x90, 0x35, 0xc3, 0xa0, 0xeb, 0xdd, 0x95, 0xa6, 0x38, 0x23, 0x2e, 0x37, - 0xce, 0x36, 0x54, 0xe8, 0x12, 0x8e, 0x61, 0x47, 0x2d, 0xb3, 0x9c, 0x8d, 0x65, 0x6e, 0x1c, 0xd3, - 0x32, 0xcf, 0x43, 0xbe, 0x69, 0xed, 0x31, 0xad, 0x2e, 0x85, 0x7b, 0x25, 0x4b, 0xab, 0x1b, 0x98, - 0xb6, 0x2b, 0xf6, 0x56, 0x39, 0x25, 0x7b, 0x1b, 0x7f, 0x98, 0xbd, 0xb1, 0xb8, 0x86, 0x7f, 0x20, - 0x89, 0xdf, 0x87, 0x99, 0xe8, 0x3f, 0xae, 0x51, 0xba, 0xe3, 0x08, 0xb1, 0xc1, 0x8c, 0xf9, 0x2b, - 0x50, 0x0a, 0x18, 0xd1, 0x81, 0x96, 0xfd, 0xc2, 0x81, 0xa6, 0x26, 0xc4, 0x88, 0x2c, 0x40, 0xd9, - 0xe9, 0x90, 0xc8, 0xd7, 0x0d, 0x65, 0x0c, 0x7c, 0x33, 0x00, 0xe0, 0x10, 0x87, 0x5a, 0x11, 0xe7, - 0x1a, 0xdb, 0xe2, 0x7d, 0x83, 0x36, 0x0a, 0x21, 0xe6, 0xbe, 0x9a, 0x83, 0xe0, 0x93, 0x41, 0x68, - 0x09, 0x46, 0x3b, 0x8e, 0xeb, 0xf3, 0xad, 0xb5, 0xca, 0x95, 0x8b, 0xe9, 0xe3, 0xc3, 0x4f, 0xf7, - 0x3b, 0xae, 0x1f, 0x52, 0xa4, 0xbf, 0x3c, 0xcc, 0x3b, 0x53, 0x39, 0x0d, 0xab, 0xeb, 0xf9, 0xc4, - 0x5d, 0x69, 0xc4, 0xe5, 0x5c, 0x0c, 0x00, 0x38, 0xc4, 0x99, 0xfb, 0xf7, 0x02, 0x4c, 0xc7, 0x0b, - 0xeb, 0xa1, 0x77, 0x61, 0xc2, 0x33, 0x5b, 0xb6, 0x69, 0xb7, 0x44, 0x2c, 0x9a, 0xeb, 0xfb, 0x6a, - 0xaf, 0xa6, 0xf6, 0xc7, 0x51, 0x72, 0x99, 0x9d, 0x56, 0x3b, 0x9d, 0xcf, 0xe2, 0x7f, 0x90, 0xac, - 0x21, 0xf3, 0x4e, 0xc6, 0xa5, 0x0d, 0x7f, 0xb5, 0x8b, 0xc8, 0xfc, 0x72, 0x14, 0xce, 0xa5, 0x97, - 0x4e, 0x3c, 0xa5, 0xa0, 0x35, 0xbc, 0xc6, 0x39, 0xd2, 0xf3, 0x1a, 0x67, 0x38, 0xce, 0xf9, 0x8c, - 0x4a, 0x21, 0xca, 0x01, 0x38, 0xdc, 0xd5, 0xca, 0x70, 0xba, 0xf0, 0xd0, 0x70, 0xfa, 0x32, 0x14, - 0x45, 0xd9, 0xfc, 0x58, 0x98, 0x5a, 0xe7, 0x45, 0xed, 0x05, 0x54, 0x09, 0x05, 0x8a, 0x87, 0x86, - 0x02, 0x34, 0xb4, 0x09, 0xf6, 0x1f, 0xfb, 0xbb, 0xca, 0xc5, 0x43, 0x9b, 0xa0, 0x2f, 0x0e, 0xc9, - 0xb0, 0x8b, 0xfa, 0x1d, 0xf3, 0x16, 0x5e, 0x15, 0xb3, 0x72, 0x78, 0x51, 0xbf, 0xb1, 0x72, 0x0b, - 0xaf, 0x62, 0x01, 0x8d, 0xa6, 0x82, 0xcb, 0x99, 0xa4, 0x82, 0xd3, 0x75, 0xee, 0xa4, 0x12, 0x61, - 0x06, 0xcc, 0x24, 0xde, 0xf9, 0x91, 0x53, 0x61, 0x97, 0xa1, 0xe8, 0x75, 0xb7, 0x29, 0x5e, 0xac, - 0x82, 0x92, 0xc6, 0x5a, 0xb1, 0x80, 0xce, 0x7d, 0xa7, 0x40, 0xb9, 0xc4, 0x8a, 0x6c, 0x9e, 0x92, - 0x55, 0xbd, 0x0a, 0x13, 0x3c, 0x19, 0xf5, 0xa6, 0x52, 0x7e, 0xa3, 0xa4, 0x6c, 0x30, 0xa8, 0x40, - 0x1c, 0xc5, 0x45, 0x2b, 0x4c, 0x4d, 0xfa, 0x5e, 0x16, 0x82, 0xd0, 0x24, 0x3a, 0x71, 0x0b, 0x02, - 0xe8, 0x25, 0xa8, 0xb0, 0x87, 0xe0, 0x43, 0x2e, 0xb2, 0xb2, 0xec, 0xa2, 0xed, 0xd5, 0xb0, 0x19, - 0xab, 0x38, 0xd1, 0xa3, 0x05, 0xa3, 0x99, 0x1c, 0x2d, 0x48, 0xbc, 0x95, 0x93, 0xd2, 0xbb, 0x6f, - 0x95, 0x40, 0x7e, 0x08, 0x11, 0x19, 0x89, 0xcf, 0x51, 0x7e, 0xa6, 0xef, 0xcd, 0x9b, 0x40, 0x14, - 0x9e, 0xc9, 0x4a, 0x99, 0x92, 0x5e, 0x07, 0x24, 0xbe, 0x7f, 0x28, 0x82, 0x6a, 0xa5, 0x9c, 0x92, - 0xdc, 0xa5, 0xd2, 0x12, 0x18, 0x38, 0xa5, 0x17, 0x7a, 0x9d, 0x7d, 0x7c, 0xd5, 0xd7, 0x4d, 0x5b, - 0x7a, 0xde, 0xf3, 0x3d, 0xee, 0x5f, 0x72, 0x24, 0xf9, 0x19, 0x55, 0xfe, 0x13, 0x87, 0xdd, 0xd1, - 0x55, 0x18, 0xbb, 0xe3, 0x58, 0xdd, 0xb6, 0x48, 0xcd, 0x57, 0xae, 0xcc, 0xa6, 0x51, 0x7a, 0x83, - 0xa1, 0x28, 0xf7, 0x85, 0x78, 0x17, 0x1c, 0xf4, 0x45, 0x04, 0xa6, 0xd8, 0xf1, 0x1e, 0xd3, 0xdf, - 0x17, 0x06, 0x20, 0xa6, 0xde, 0xcb, 0x69, 0xe4, 0x1a, 0x4e, 0x53, 0x8b, 0x62, 0xf3, 0x93, 0x1e, - 0xb1, 0x46, 0x1c, 0xa7, 0x89, 0x96, 0xa1, 0xa4, 0x6f, 0x6f, 0x9b, 0xb6, 0xe9, 0xef, 0x8b, 0x9c, - 0xdd, 0x33, 0x69, 0xf4, 0x6b, 0x02, 0x47, 0xd4, 0x69, 0x11, 0xbf, 0xb0, 0xec, 0x8b, 0x6e, 0x41, - 0xc5, 0x77, 0x2c, 0x11, 0x97, 0x7a, 0x22, 0xd5, 0x70, 0x21, 0x8d, 0xd4, 0xa6, 0x44, 0x0b, 0xb7, - 0x47, 0xc3, 0x36, 0x0f, 0xab, 0x74, 0xd0, 0x6f, 0xe5, 0x60, 0xdc, 0x76, 0x9a, 0x24, 0x30, 0x3d, - 0xb1, 0x5d, 0xf7, 0x56, 0x46, 0x1f, 0xf0, 0x9c, 0x5f, 0x57, 0x68, 0x73, 0x0b, 0x91, 0xf5, 0x3b, - 0x54, 0x10, 0x8e, 0x08, 0x81, 0x6c, 0x98, 0x36, 0xdb, 0x7a, 0x8b, 0x34, 0xba, 0x96, 0x38, 0x9e, - 0xe8, 0x89, 0xc9, 0x23, 0xf5, 0xd6, 0xee, 0xaa, 0x63, 0xe8, 0x16, 0xff, 0x00, 0x2e, 0x26, 0xdb, - 0xc4, 0x65, 0xdf, 0xe1, 0x95, 0x27, 0x4d, 0x56, 0x62, 0x94, 0x70, 0x82, 0x36, 0xba, 0x06, 0x33, - 0x1d, 0xd7, 0x74, 0xd8, 0x7b, 0xb3, 0x74, 0x8f, 0x7f, 0x00, 0x15, 0xa2, 0x57, 0x35, 0x1b, 0x71, - 0x04, 0x9c, 0xec, 0xc3, 0xcb, 0x0b, 0xf0, 0x46, 0xb6, 0x96, 0x1b, 0x0d, 0xca, 0x0b, 0xf0, 0x36, - 0x2c, 0xa1, 0xb3, 0x9f, 0x83, 0x99, 0xc4, 0xd8, 0xf4, 0xe5, 0x10, 0x7e, 0x2f, 0x07, 0xf1, 0x7c, - 0x39, 0x5d, 0x37, 0x34, 0x4d, 0x97, 0x11, 0xdc, 0x8f, 0xe7, 0xf8, 0x97, 0x02, 0x00, 0x0e, 0x71, - 0xd0, 0x25, 0x28, 0x74, 0x74, 0x7f, 0x27, 0x7e, 0xcc, 0x8f, 0x92, 0xc4, 0x0c, 0x82, 0xae, 0x00, - 0xd0, 0xbf, 0x98, 0xb4, 0xc8, 0xbd, 0x8e, 0x58, 0x06, 0xc9, 0xed, 0x87, 0x86, 0x84, 0x60, 0x05, - 0x6b, 0xee, 0x9f, 0x46, 0x61, 0x32, 0x3a, 0xb7, 0x44, 0x16, 0x9b, 0xb9, 0x87, 0x2e, 0x36, 0x2f, - 0x43, 0xb1, 0x4d, 0xfc, 0x1d, 0xa7, 0x19, 0x9f, 0x27, 0xd7, 0x58, 0x2b, 0x16, 0x50, 0x26, 0xbe, - 0xe3, 0xfa, 0x42, 0xac, 0x50, 0x7c, 0xc7, 0xf5, 0x31, 0x83, 0x04, 0xa7, 0x14, 0x0b, 0x3d, 0x4e, - 0x29, 0xb6, 0x60, 0x9a, 0x17, 0xf8, 0x5d, 0x24, 0xae, 0x7f, 0xec, 0xd3, 0xb5, 0x5a, 0x8c, 0x04, - 0x4e, 0x10, 0x45, 0x4d, 0xea, 0x6d, 0x68, 0x5b, 0xb8, 0x33, 0xd0, 0xff, 0xd5, 0x7d, 0x2d, 0x4a, - 0x01, 0xc7, 0x49, 0x0e, 0x23, 0x1b, 0x19, 0x7d, 0x8f, 0xc7, 0xae, 0x8c, 0x58, 0xca, 0xaa, 0x32, - 0xe2, 0x2b, 0x30, 0xd9, 0xd6, 0xef, 0x35, 0xf4, 0x7d, 0xcb, 0xd1, 0x9b, 0x9a, 0x79, 0x9f, 0x88, - 0xdb, 0xa5, 0xe8, 0xe0, 0xc1, 0xc5, 0xc9, 0xb5, 0x08, 0x04, 0xc7, 0x30, 0x07, 0x9b, 0x80, 0x7f, - 0x7f, 0x04, 0x50, 0xf2, 0xc3, 0x25, 0xe8, 0xa3, 0x1c, 0x4c, 0xde, 0x8d, 0x8c, 0xd1, 0x70, 0x82, - 0x33, 0x99, 0xf6, 0x8a, 0xb6, 0xe3, 0x18, 0x73, 0x65, 0x81, 0x33, 0x72, 0x72, 0x0b, 0xc9, 0xba, - 0xf1, 0xa3, 0x5f, 0x5c, 0x78, 0xe2, 0xc7, 0xbf, 0xb8, 0xf0, 0xc4, 0x4f, 0x7e, 0x71, 0xe1, 0x89, - 0xaf, 0x1e, 0x5c, 0xc8, 0xfd, 0xe8, 0xe0, 0x42, 0xee, 0xc7, 0x07, 0x17, 0x72, 0x3f, 0x39, 0xb8, - 0x90, 0xfb, 0xf9, 0xc1, 0x85, 0xdc, 0x77, 0xfe, 0xe5, 0xc2, 0x13, 0x9f, 0xff, 0x6c, 0x28, 0xca, - 0x42, 0x20, 0x0a, 0xfb, 0xe7, 0x45, 0xce, 0x7a, 0xa1, 0xb3, 0xdb, 0x5a, 0xa0, 0xa2, 0x2c, 0x28, - 0xa2, 0x2c, 0x04, 0xa2, 0xfc, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x15, 0xf0, 0xeb, 0x47, 0xbb, - 0xa5, 0x00, 0x00, + 0xc4, 0xa8, 0xb1, 0x56, 0x2c, 0xa0, 0xa2, 0x6e, 0xb0, 0x1f, 0x84, 0xbc, 0x90, 0xa8, 0x1b, 0x1c, + 0x80, 0xb0, 0x8a, 0xc7, 0x7c, 0x2d, 0x53, 0x9a, 0xe8, 0xad, 0xe6, 0xd0, 0xd7, 0xaa, 0x40, 0x1c, + 0xc5, 0x45, 0x35, 0x98, 0xe2, 0x0d, 0xb7, 0x3a, 0x96, 0xa3, 0x37, 0x69, 0xf7, 0xf1, 0xa8, 0x56, + 0x2c, 0x47, 0xc1, 0x38, 0x8e, 0xdf, 0xc3, 0x5d, 0x4f, 0x0c, 0xee, 0xae, 0x27, 0xb3, 0x71, 0xd7, + 0x71, 0x8b, 0xec, 0xc3, 0x5d, 0xbf, 0x1b, 0x2f, 0x31, 0xc0, 0x4f, 0x69, 0x0e, 0xea, 0x5a, 0xa9, + 0x79, 0x35, 0xd5, 0x22, 0x02, 0x47, 0x2a, 0x2d, 0xf0, 0x49, 0x98, 0x70, 0xdc, 0x96, 0x6e, 0x9b, + 0xf7, 0x99, 0xc3, 0xf1, 0xd8, 0x69, 0xcd, 0x32, 0xd7, 0xd6, 0x9b, 0x2a, 0x00, 0x47, 0xf1, 0xd0, + 0x7d, 0x28, 0xb7, 0x02, 0x2f, 0x5b, 0x9d, 0xc9, 0xc4, 0xcf, 0x44, 0xbd, 0x36, 0xbf, 0x1e, 0x24, + 0xdb, 0x70, 0xc8, 0x4e, 0x99, 0x95, 0xd0, 0xa3, 0x32, 0x2b, 0xbd, 0x5b, 0x62, 0x6e, 0x3c, 0xba, + 0xcd, 0x71, 0x4a, 0x31, 0xdf, 0xa7, 0xa0, 0x2c, 0x22, 0x02, 0x31, 0x77, 0x95, 0xeb, 0x1f, 0x13, + 0xaa, 0x72, 0x26, 0x51, 0x94, 0x63, 0x65, 0x09, 0x87, 0xd8, 0x47, 0x0c, 0x00, 0x23, 0x35, 0x1d, + 0x0a, 0xd9, 0xd5, 0x74, 0xd0, 0xe0, 0x71, 0x7e, 0xff, 0x56, 0xd3, 0x56, 0x59, 0x80, 0x62, 0x1a, + 0xfc, 0xfa, 0x2d, 0x2f, 0x23, 0x78, 0x5e, 0x3c, 0xc4, 0xe3, 0x57, 0xd3, 0x90, 0x70, 0x7a, 0x5f, + 0xe1, 0xe9, 0x2c, 0x5d, 0x7a, 0xba, 0x62, 0xc2, 0xd3, 0x85, 0x40, 0x1c, 0xc5, 0xed, 0xe1, 0xa6, + 0x4a, 0x83, 0xbb, 0xa9, 0x72, 0x56, 0x6e, 0x2a, 0xaa, 0x71, 0xc7, 0x8c, 0x2a, 0xe1, 0xd0, 0xa8, + 0xf2, 0x36, 0x54, 0x3c, 0xf6, 0x26, 0xf9, 0x0b, 0xaf, 0xf4, 0xfd, 0xc2, 0xb5, 0xb0, 0x37, 0x56, + 0x49, 0x29, 0x86, 0x3e, 0x7e, 0x82, 0x85, 0x22, 0xe6, 0xa0, 0xd8, 0x72, 0x9d, 0x6e, 0x87, 0xdf, + 0x19, 0x10, 0x4a, 0xbe, 0xcc, 0x5a, 0xb0, 0x80, 0x0c, 0xe6, 0x0c, 0xbe, 0x53, 0x86, 0xa9, 0xd8, + 0x3e, 0x63, 0x6a, 0x9e, 0x29, 0x77, 0xca, 0x79, 0xa6, 0x4b, 0x50, 0xf0, 0x69, 0xd0, 0x30, 0x12, + 0xbd, 0x95, 0xce, 0xa2, 0x05, 0x06, 0x49, 0x16, 0xbf, 0xc8, 0x1f, 0xbd, 0xf8, 0x05, 0xfa, 0x15, + 0x28, 0xeb, 0xcd, 0xa6, 0x4b, 0x3c, 0x8f, 0x04, 0x65, 0x79, 0x98, 0xcf, 0xaf, 0x05, 0x8d, 0x38, + 0x84, 0xb3, 0x85, 0x6a, 0x73, 0xdb, 0xbb, 0xe5, 0x89, 0xec, 0x91, 0xba, 0x50, 0x5d, 0xba, 0xa6, + 0xd1, 0x76, 0x2c, 0x31, 0x50, 0x13, 0xa6, 0x76, 0xdd, 0xad, 0xc5, 0x45, 0xdd, 0xd8, 0x21, 0xc7, + 0xc9, 0x38, 0xb0, 0x72, 0xbb, 0x37, 0xa2, 0x14, 0x70, 0x9c, 0xa4, 0xe0, 0x72, 0x83, 0xec, 0xfb, + 0xfa, 0xd6, 0x71, 0x62, 0xc2, 0x80, 0x8b, 0x4a, 0x01, 0xc7, 0x49, 0xd2, 0x08, 0x6e, 0xd7, 0xdd, + 0x0a, 0x6e, 0xb4, 0x8b, 0xf2, 0x5e, 0x32, 0x82, 0xbb, 0x11, 0x82, 0xb0, 0x8a, 0x47, 0x07, 0x6c, + 0xd7, 0xdd, 0xc2, 0x44, 0xb7, 0xda, 0xa2, 0x42, 0xa1, 0x1c, 0xb0, 0x1b, 0xa2, 0x1d, 0x4b, 0x0c, + 0xd4, 0x01, 0x44, 0x9f, 0x8e, 0xbd, 0x77, 0x79, 0x25, 0x57, 0x2c, 0xfa, 0x9e, 0x49, 0x7b, 0x1a, + 0x89, 0xa4, 0x3e, 0xd0, 0x39, 0xea, 0xee, 0x6e, 0x24, 0xe8, 0xe0, 0x14, 0xda, 0xe8, 0x0d, 0x78, + 0x62, 0xd7, 0xdd, 0x12, 0x69, 0xff, 0x86, 0x6b, 0xda, 0x86, 0xd9, 0xd1, 0x79, 0x8d, 0x80, 0x4a, + 0xb4, 0xa0, 0xe2, 0x8d, 0x74, 0x34, 0xdc, 0xab, 0x7f, 0x34, 0xe9, 0x39, 0x9e, 0x49, 0xd2, 0x33, + 0x66, 0xae, 0xc7, 0x4a, 0x7a, 0x4e, 0x3c, 0x2a, 0xc1, 0xca, 0xf7, 0x73, 0x80, 0xd8, 0x09, 0xab, + 0xe0, 0xb3, 0x22, 0xcc, 0xf9, 0xa1, 0x05, 0x28, 0x33, 0xef, 0xa7, 0x5c, 0x7a, 0x95, 0xd9, 0x83, + 0xe5, 0x00, 0x80, 0x43, 0x1c, 0xba, 0x46, 0x71, 0xac, 0x26, 0x91, 0x95, 0x2a, 0xe4, 0x1a, 0xe5, + 0x26, 0x6b, 0xc5, 0x02, 0x8a, 0x96, 0x61, 0xc6, 0x25, 0x5b, 0xba, 0xa5, 0xdb, 0x06, 0xd1, 0x7c, + 0x57, 0xf7, 0x49, 0x6b, 0x5f, 0x78, 0x12, 0x79, 0x8c, 0x15, 0xc7, 0x11, 0x70, 0xb2, 0xcf, 0xdc, + 0xbf, 0x95, 0x60, 0x3a, 0x7e, 0x34, 0xec, 0x61, 0xb9, 0xda, 0x05, 0x28, 0x77, 0x74, 0xd7, 0x37, + 0x95, 0x3a, 0x1e, 0xf2, 0xa9, 0x1a, 0x01, 0x00, 0x87, 0x38, 0x74, 0xd9, 0xcf, 0xea, 0xbd, 0x0a, + 0x09, 0xe5, 0xb2, 0x9f, 0xd5, 0x83, 0xc5, 0x1c, 0x96, 0x5e, 0x1c, 0xa2, 0x70, 0x62, 0xc5, 0x21, + 0x3e, 0x12, 0x05, 0x64, 0xdf, 0x4b, 0xa6, 0xc9, 0xde, 0xca, 0xf8, 0xdc, 0x5f, 0x7f, 0xcb, 0xae, + 0x09, 0x43, 0xd5, 0x67, 0x51, 0x0c, 0x63, 0x23, 0x0b, 0x91, 0x22, 0x86, 0xc2, 0x57, 0x4f, 0x91, + 0x26, 0x1c, 0x65, 0x8d, 0x1a, 0x70, 0xd6, 0x32, 0xdb, 0x22, 0xe1, 0xe7, 0x35, 0x88, 0xcb, 0xcb, + 0x2c, 0x33, 0x47, 0x9d, 0x0f, 0x13, 0x21, 0xab, 0x29, 0x38, 0x38, 0xb5, 0x27, 0x7a, 0x16, 0xc6, + 0xee, 0x10, 0x97, 0x5d, 0xde, 0x87, 0x68, 0xe9, 0xf7, 0xd7, 0x78, 0x33, 0x0e, 0xe0, 0xe8, 0x0d, + 0x28, 0x78, 0xba, 0x67, 0x89, 0x40, 0xed, 0x18, 0x47, 0x99, 0x6b, 0xda, 0xaa, 0x50, 0x0f, 0x96, + 0xa2, 0xa5, 0xbf, 0x31, 0x23, 0x79, 0x4a, 0x01, 0x5b, 0xb8, 0xdd, 0x32, 0x71, 0xd8, 0x76, 0xcb, + 0x60, 0x4e, 0xf1, 0xbb, 0x45, 0x98, 0x8a, 0x9d, 0xf5, 0x7c, 0x98, 0x6b, 0x91, 0x9e, 0x62, 0xe4, + 0x10, 0x4f, 0xf1, 0x1c, 0x94, 0x0c, 0xcb, 0x24, 0xb6, 0xbf, 0xd2, 0x14, 0x1e, 0x25, 0xbc, 0x52, + 0xce, 0xdb, 0x97, 0xb0, 0xc4, 0x38, 0x6d, 0xbf, 0xa2, 0x3a, 0x80, 0xd1, 0xa3, 0x16, 0x9d, 0x29, + 0x0e, 0xf3, 0x2b, 0x42, 0xd9, 0x5c, 0x6d, 0x8f, 0xbd, 0xd8, 0x8f, 0x7c, 0x35, 0xea, 0x60, 0x93, + 0xa5, 0x9c, 0xf5, 0x26, 0xcb, 0x60, 0x36, 0xf2, 0x4f, 0x23, 0x50, 0x5a, 0xaf, 0x6d, 0x6a, 0xac, + 0x4a, 0xf3, 0x9b, 0xd1, 0x3a, 0xd4, 0x83, 0x08, 0x99, 0x2c, 0x38, 0x7d, 0x8d, 0x9a, 0x56, 0xdf, + 0xb5, 0xa6, 0xcb, 0xdc, 0xfa, 0xe8, 0x3a, 0x93, 0x77, 0x47, 0x8b, 0x50, 0xb0, 0x77, 0xfb, 0xfd, + 0x18, 0x07, 0x1b, 0xb3, 0xf5, 0x1b, 0x64, 0x1f, 0xb3, 0xce, 0xe8, 0x16, 0x80, 0xe1, 0x92, 0x26, + 0xb1, 0x7d, 0x53, 0x7c, 0x0b, 0xad, 0xbf, 0xfd, 0x85, 0x45, 0xd9, 0x19, 0x2b, 0x84, 0xe6, 0xbe, + 0x56, 0x84, 0xe9, 0xf8, 0x99, 0xee, 0x87, 0xb9, 0x9c, 0x67, 0x61, 0xcc, 0xeb, 0xb2, 0x02, 0x37, + 0xc2, 0xe9, 0xc8, 0x69, 0x40, 0xe3, 0xcd, 0x38, 0x80, 0xa7, 0xbb, 0x92, 0xfc, 0xa9, 0xb8, 0x92, + 0xc2, 0x51, 0x5d, 0x49, 0xd6, 0x01, 0xcd, 0x7b, 0xc9, 0xef, 0x4c, 0xbc, 0x95, 0xf1, 0x29, 0xfc, + 0x3e, 0x7c, 0x09, 0x11, 0x56, 0x3d, 0x96, 0x49, 0x69, 0x98, 0xc0, 0x10, 0x13, 0xfb, 0xa8, 0x8f, + 0x60, 0xc5, 0xbe, 0x1f, 0x8f, 0xc2, 0x64, 0xf4, 0x90, 0x26, 0x5d, 0x16, 0xef, 0x38, 0x9e, 0x2f, + 0x92, 0x05, 0xf1, 0x0f, 0x22, 0x5e, 0x0f, 0x41, 0x58, 0xc5, 0x3b, 0xda, 0x9c, 0xfc, 0x2c, 0x8c, + 0x89, 0x5a, 0x74, 0x62, 0x4a, 0x96, 0x56, 0x24, 0xea, 0xd5, 0xe1, 0x00, 0xfe, 0xff, 0x13, 0xb2, + 0xe5, 0xa1, 0xaf, 0x27, 0x27, 0xe4, 0x37, 0x33, 0x3d, 0x91, 0xfb, 0x51, 0x9f, 0x8f, 0x07, 0x53, + 0xee, 0x37, 0x60, 0x26, 0xb1, 0x79, 0x73, 0xb4, 0xa2, 0xe1, 0x17, 0x61, 0xd4, 0xd6, 0xdb, 0x84, + 0x97, 0xc3, 0x2a, 0xf3, 0xe9, 0x8d, 0x7d, 0x57, 0x02, 0xf3, 0xf6, 0xb9, 0xef, 0x15, 0x61, 0x26, + 0x71, 0xf3, 0x84, 0x2d, 0x79, 0xe5, 0x06, 0x40, 0x6c, 0x21, 0x9f, 0x9a, 0xf6, 0x7f, 0x05, 0x26, + 0x99, 0x61, 0x34, 0x62, 0xdb, 0x06, 0x72, 0x13, 0x7b, 0x33, 0x02, 0xc5, 0x31, 0xec, 0xa3, 0x2d, + 0x99, 0x5f, 0x81, 0x49, 0xf5, 0x43, 0x28, 0x2b, 0x4b, 0x62, 0x5b, 0x58, 0x32, 0xd1, 0x22, 0x50, + 0x1c, 0xc3, 0x66, 0x5f, 0x91, 0x91, 0x93, 0xa7, 0x48, 0xc7, 0x8d, 0xf6, 0xff, 0x15, 0x99, 0x18, + 0x09, 0x9c, 0x20, 0x8a, 0xb6, 0x60, 0x96, 0xa7, 0xef, 0x55, 0x81, 0x62, 0x47, 0x4a, 0xe6, 0x84, + 0xd0, 0xb3, 0x4b, 0x3d, 0x31, 0xf1, 0x21, 0x54, 0xfa, 0xac, 0xee, 0xf8, 0x7e, 0xf2, 0xbb, 0x9a, + 0x6f, 0x67, 0x7d, 0x5f, 0xe9, 0x58, 0x36, 0x58, 0x7e, 0x54, 0x6c, 0xf0, 0x7b, 0x15, 0x6a, 0x28, + 0xb1, 0xa3, 0xf7, 0x68, 0x0e, 0x8a, 0x4c, 0x37, 0xe9, 0xf4, 0x22, 0x77, 0x02, 0x98, 0xd2, 0x7a, + 0x58, 0x40, 0x8e, 0x90, 0x24, 0x17, 0x21, 0x5b, 0xbe, 0x47, 0xc8, 0xd6, 0x81, 0x33, 0xbe, 0xe5, + 0x6d, 0xba, 0x5d, 0xcf, 0x5f, 0x24, 0xae, 0xef, 0x09, 0xd5, 0x2d, 0xf4, 0xfd, 0x31, 0xba, 0xcd, + 0x55, 0x2d, 0x4e, 0x05, 0xa7, 0x91, 0xa6, 0x0a, 0xec, 0x5b, 0x5e, 0xcd, 0xb2, 0x9c, 0xbb, 0xc1, + 0xc9, 0x82, 0x70, 0xb2, 0x11, 0xd3, 0x88, 0x54, 0xe0, 0xcd, 0x55, 0xad, 0x07, 0x26, 0x3e, 0x84, + 0x0a, 0x5a, 0x63, 0x4f, 0xf5, 0x9a, 0x6e, 0x99, 0x4d, 0xdd, 0x27, 0x74, 0x3a, 0x66, 0xd9, 0x6b, + 0x6e, 0x1d, 0x72, 0xbb, 0x71, 0x73, 0x55, 0x8b, 0xa3, 0xe0, 0xb4, 0x7e, 0xc3, 0xfa, 0x20, 0x6d, + 0xea, 0xec, 0x5d, 0x3a, 0x95, 0xd9, 0xbb, 0xdc, 0x9f, 0x95, 0x43, 0x46, 0x56, 0x1e, 0x53, 0xf9, + 0x3e, 0xac, 0xbc, 0x09, 0x53, 0xf2, 0x4b, 0x3d, 0x42, 0x67, 0x2b, 0x7d, 0xef, 0x7e, 0xd4, 0xa2, + 0x14, 0x70, 0x9c, 0xe4, 0x29, 0x65, 0x94, 0xfe, 0x2a, 0x07, 0xd3, 0x54, 0x92, 0x9a, 0xbf, 0x43, + 0xec, 0xfb, 0x0d, 0xdd, 0xd5, 0xdb, 0x41, 0x05, 0xb1, 0xed, 0xcc, 0x87, 0xbc, 0x16, 0x63, 0xc4, + 0x87, 0x5e, 0x96, 0x75, 0x8e, 0x83, 0x71, 0x42, 0x32, 0x3a, 0xf5, 0x85, 0x6d, 0xc7, 0xf9, 0xaa, + 0xec, 0xd9, 0x28, 0xa3, 0x60, 0xea, 0x8b, 0x13, 0x1d, 0xc8, 0xc7, 0xce, 0x2e, 0xc2, 0xe3, 0xa9, + 0x8f, 0xda, 0x97, 0xa3, 0xfe, 0x6a, 0x51, 0x5c, 0x9f, 0xc9, 0x60, 0x2d, 0x90, 0xf5, 0x67, 0x9f, + 0x68, 0x60, 0x65, 0xcb, 0xcf, 0x82, 0xc5, 0x3e, 0x17, 0x17, 0x7e, 0x08, 0x2c, 0xc4, 0x41, 0xb3, + 0x30, 0xd2, 0xdc, 0x62, 0xae, 0x7e, 0x34, 0x3c, 0xc7, 0xb7, 0x54, 0xc7, 0x23, 0xcd, 0x2d, 0xf4, + 0x0c, 0x94, 0xc4, 0x22, 0x23, 0x38, 0xe6, 0xc6, 0xd8, 0x8a, 0x15, 0x88, 0x87, 0x25, 0x74, 0x58, + 0x61, 0xfd, 0x10, 0xf2, 0xf7, 0xf1, 0x37, 0xf7, 0x91, 0x4f, 0xb4, 0xf5, 0xe7, 0xa1, 0x9f, 0x53, + 0x8a, 0x96, 0x43, 0x34, 0x97, 0x9b, 0xac, 0x48, 0x3e, 0x58, 0xc0, 0xf2, 0xb7, 0x45, 0x38, 0x97, + 0x7e, 0xa9, 0xeb, 0x23, 0x63, 0x0d, 0x5c, 0xb9, 0xf3, 0xa9, 0xca, 0xfd, 0x71, 0x18, 0xf3, 0x98, + 0xe0, 0xc1, 0xce, 0x3f, 0x2f, 0x27, 0xcb, 0x9b, 0x70, 0x00, 0x43, 0xaf, 0x02, 0x6a, 0xeb, 0xf7, + 0xd6, 0xbc, 0xd6, 0xa2, 0xd3, 0x65, 0x15, 0xb2, 0x31, 0xd1, 0x79, 0xf9, 0xf6, 0xd1, 0xf0, 0x7c, + 0xcd, 0x5a, 0x02, 0x03, 0xa7, 0xf4, 0x62, 0x67, 0x15, 0x22, 0xfb, 0x3f, 0xb1, 0x83, 0x3e, 0x87, + 0x6e, 0xd8, 0x0c, 0x29, 0xfe, 0xf8, 0x30, 0x19, 0xb8, 0x1b, 0x43, 0xb9, 0xe9, 0xf7, 0x51, 0x8f, + 0xde, 0x4f, 0xd2, 0x74, 0x7e, 0x52, 0x80, 0x33, 0x29, 0x95, 0x5e, 0xa2, 0xde, 0x3b, 0x77, 0x04, + 0xef, 0xbd, 0x27, 0x47, 0x2a, 0x9b, 0x83, 0xd6, 0x81, 0x50, 0x87, 0x0c, 0xd3, 0xfb, 0x39, 0x38, + 0xcb, 0x36, 0xd8, 0x83, 0x5d, 0xbd, 0xa0, 0xc4, 0x6f, 0x5e, 0x68, 0xe6, 0x91, 0x6a, 0x6d, 0x2f, + 0xa7, 0x50, 0x08, 0x77, 0x1d, 0xd3, 0xa0, 0x38, 0x95, 0x2b, 0x5a, 0x04, 0x90, 0x57, 0xe5, 0x02, + 0x4b, 0x7e, 0x9a, 0x55, 0x0c, 0x97, 0xad, 0xff, 0xcb, 0x36, 0xef, 0x95, 0xd1, 0x66, 0x2b, 0x23, + 0xa5, 0xdb, 0x30, 0xbe, 0xab, 0x92, 0xf2, 0x7a, 0x8f, 0x6e, 0x01, 0x83, 0x69, 0xd7, 0x5f, 0xe6, + 0x61, 0x32, 0xfa, 0x22, 0xd1, 0x65, 0x28, 0x76, 0x5c, 0xb2, 0x6d, 0xde, 0x8b, 0x7f, 0x5e, 0xa3, + 0xc1, 0x5a, 0xb1, 0x80, 0x22, 0x07, 0x8a, 0x96, 0xbe, 0x45, 0xe7, 0x7b, 0x5e, 0xde, 0x7c, 0x79, + 0xe0, 0x52, 0xdd, 0xc1, 0x2e, 0x43, 0xc0, 0x70, 0x95, 0x91, 0xc7, 0x82, 0x0d, 0x65, 0xb8, 0x6d, + 0x12, 0xab, 0xc9, 0x8f, 0x73, 0x0e, 0x83, 0xe1, 0x35, 0x46, 0x1e, 0x0b, 0x36, 0xe8, 0x4d, 0x28, + 0xf3, 0x6f, 0x92, 0x34, 0xeb, 0xfb, 0x62, 0x85, 0xfb, 0xcb, 0x47, 0x53, 0xd9, 0x4d, 0xb3, 0x4d, + 0x42, 0x73, 0x5c, 0x0c, 0x88, 0xe0, 0x90, 0x1e, 0xfb, 0xa6, 0xfd, 0xb6, 0x4f, 0x5c, 0xcd, 0xd7, + 0xdd, 0xe0, 0x93, 0xf3, 0xe1, 0x37, 0xed, 0x25, 0x04, 0x2b, 0x58, 0x73, 0x7f, 0x33, 0x06, 0x53, + 0xb1, 0x6b, 0xb4, 0xbf, 0x18, 0x77, 0x44, 0xd5, 0xef, 0xa7, 0xe4, 0xb3, 0xfe, 0x7e, 0x4a, 0x21, + 0x8b, 0xf0, 0xe0, 0x4d, 0x18, 0xf7, 0xbc, 0x1d, 0x86, 0xd9, 0x7f, 0xae, 0x6e, 0xfa, 0xe0, 0xc1, + 0xc5, 0x71, 0x4d, 0xbb, 0x2e, 0xbb, 0xe3, 0x08, 0x31, 0xb4, 0x0a, 0x63, 0xe2, 0xec, 0x60, 0x7f, + 0x07, 0xff, 0x58, 0x18, 0x12, 0x84, 0x47, 0x01, 0x89, 0x61, 0xec, 0x38, 0xc7, 0x94, 0xee, 0x23, + 0x1f, 0x08, 0x37, 0xe0, 0x6c, 0xc7, 0xb1, 0xac, 0xe0, 0xf0, 0xa6, 0xfc, 0xf2, 0x51, 0x39, 0x7a, + 0x75, 0xa7, 0x91, 0x82, 0x83, 0x53, 0x7b, 0x0e, 0xe6, 0x65, 0xff, 0xa3, 0x08, 0x93, 0xd1, 0x2a, + 0x53, 0xa7, 0x77, 0x81, 0x92, 0x25, 0x02, 0x6b, 0xae, 0x1d, 0xbf, 0x40, 0xb9, 0x29, 0xda, 0xb1, + 0xc4, 0x40, 0x18, 0xca, 0xfc, 0x40, 0xfb, 0x8d, 0x7e, 0xf7, 0x9c, 0xf9, 0xc9, 0xd8, 0xa0, 0x2f, + 0x0e, 0xc9, 0x50, 0x9a, 0x5e, 0x80, 0xde, 0x9f, 0x65, 0x32, 0x9a, 0xb2, 0x19, 0x87, 0x64, 0xe8, + 0x8c, 0xe5, 0x92, 0x56, 0x90, 0x0d, 0x54, 0x66, 0x2c, 0xcc, 0x5a, 0xb1, 0x80, 0xa2, 0x67, 0x61, + 0xcc, 0x75, 0x2c, 0x52, 0xc3, 0xeb, 0x22, 0x9a, 0x96, 0x1b, 0x65, 0x98, 0x37, 0xe3, 0x00, 0x3e, + 0x8c, 0x4d, 0xa2, 0xa8, 0x02, 0xf4, 0x61, 0x42, 0xcb, 0x30, 0x73, 0x47, 0x64, 0x18, 0x35, 0xb3, + 0x65, 0xeb, 0x7e, 0x78, 0xe7, 0x4a, 0x1e, 0x38, 0x7c, 0x2d, 0x8e, 0x80, 0x93, 0x7d, 0x4e, 0x2f, + 0x56, 0x26, 0x76, 0xb3, 0xe3, 0x98, 0xb6, 0x1f, 0x8f, 0x95, 0xaf, 0x8a, 0x76, 0x2c, 0x31, 0x06, + 0xb3, 0xb3, 0x7f, 0x1c, 0x83, 0xc9, 0x68, 0x15, 0xb5, 0xa8, 0x0e, 0xe7, 0x86, 0xa0, 0xc3, 0x23, + 0x59, 0xeb, 0x70, 0xfe, 0x50, 0x1d, 0x7e, 0x1a, 0x46, 0xd9, 0x07, 0xff, 0xc5, 0x76, 0x93, 0xdc, + 0x9c, 0x62, 0xf5, 0x3e, 0x30, 0x87, 0xa1, 0x1a, 0x9d, 0xe1, 0x4d, 0x9f, 0x46, 0x21, 0xfc, 0xc0, + 0x1d, 0x3f, 0x8b, 0x90, 0x57, 0x67, 0xe4, 0x08, 0x18, 0xc7, 0xf1, 0xfb, 0xb1, 0x95, 0xfe, 0x76, + 0x7f, 0x5e, 0x81, 0x49, 0x26, 0x64, 0xcd, 0x30, 0xe8, 0x7a, 0x77, 0xa5, 0x29, 0xce, 0x88, 0xcb, + 0x8d, 0xb3, 0x0d, 0x15, 0xba, 0x84, 0x63, 0xd8, 0x51, 0xcb, 0x2c, 0x67, 0x63, 0x99, 0x1b, 0xc7, + 0xb4, 0xcc, 0xf3, 0x90, 0x6f, 0x5a, 0x7b, 0x4c, 0xab, 0x4b, 0xe1, 0x5e, 0xc9, 0xd2, 0xea, 0x06, + 0xa6, 0xed, 0x8a, 0xbd, 0x55, 0x4e, 0xc9, 0xde, 0xc6, 0x1f, 0x66, 0x6f, 0x2c, 0xae, 0xe1, 0x1f, + 0x48, 0xe2, 0xf7, 0x61, 0x26, 0xfa, 0x8f, 0x6b, 0x94, 0xee, 0x38, 0x42, 0x6c, 0x30, 0x63, 0xfe, + 0x12, 0x94, 0x02, 0x46, 0x74, 0xa0, 0x65, 0xbf, 0x70, 0xa0, 0xa9, 0x09, 0x31, 0x22, 0x0b, 0x50, + 0x76, 0x3a, 0x24, 0xf2, 0x75, 0x43, 0x19, 0x03, 0xdf, 0x0c, 0x00, 0x38, 0xc4, 0xa1, 0x56, 0xc4, + 0xb9, 0xc6, 0xb6, 0x78, 0x5f, 0xa3, 0x8d, 0x42, 0x88, 0xb9, 0x2f, 0xe7, 0x20, 0xf8, 0x64, 0x10, + 0x5a, 0x82, 0xd1, 0x8e, 0xe3, 0xfa, 0x7c, 0x6b, 0xad, 0x72, 0xe5, 0x62, 0xfa, 0xf8, 0xf0, 0xd3, + 0xfd, 0x8e, 0xeb, 0x87, 0x14, 0xe9, 0x2f, 0x0f, 0xf3, 0xce, 0x54, 0x4e, 0xc3, 0xea, 0x7a, 0x3e, + 0x71, 0x57, 0x1a, 0x71, 0x39, 0x17, 0x03, 0x00, 0x0e, 0x71, 0xe6, 0xfe, 0xbb, 0x00, 0xd3, 0xf1, + 0xc2, 0x7a, 0xe8, 0x6d, 0x98, 0xf0, 0xcc, 0x96, 0x6d, 0xda, 0x2d, 0x11, 0x8b, 0xe6, 0xfa, 0xbe, + 0xda, 0xab, 0xa9, 0xfd, 0x71, 0x94, 0x5c, 0x66, 0xa7, 0xd5, 0x4e, 0xe7, 0xfb, 0xfa, 0xef, 0x25, + 0x6b, 0xc8, 0xbc, 0x95, 0x71, 0x69, 0xc3, 0x5f, 0xec, 0x22, 0x32, 0x3f, 0x1f, 0x85, 0x73, 0xe9, + 0xa5, 0x13, 0x4f, 0x29, 0x68, 0x0d, 0xaf, 0x71, 0x8e, 0xf4, 0xbc, 0xc6, 0x19, 0x8e, 0x73, 0x3e, + 0xa3, 0x52, 0x88, 0x72, 0x00, 0x0e, 0x77, 0xb5, 0x32, 0x9c, 0x2e, 0x3c, 0x34, 0x9c, 0xbe, 0x0c, + 0x45, 0x51, 0x36, 0x3f, 0x16, 0xa6, 0xd6, 0x79, 0x51, 0x7b, 0x01, 0x55, 0x42, 0x81, 0xe2, 0xa1, + 0xa1, 0x00, 0x0d, 0x6d, 0x82, 0xfd, 0xc7, 0xfe, 0xae, 0x72, 0xf1, 0xd0, 0x26, 0xe8, 0x8b, 0x43, + 0x32, 0xec, 0xa2, 0x7e, 0xc7, 0xbc, 0x85, 0x57, 0xc5, 0xac, 0x1c, 0x5e, 0xd4, 0x6f, 0xac, 0xdc, + 0xc2, 0xab, 0x58, 0x40, 0xa3, 0xa9, 0xe0, 0x72, 0x26, 0xa9, 0xe0, 0x74, 0x9d, 0x3b, 0xa9, 0x44, + 0x98, 0x01, 0x33, 0x89, 0x77, 0x7e, 0xe4, 0x54, 0xd8, 0x65, 0x28, 0x7a, 0xdd, 0x6d, 0x8a, 0x17, + 0xab, 0xa0, 0xa4, 0xb1, 0x56, 0x2c, 0xa0, 0x73, 0xdf, 0x2a, 0x50, 0x2e, 0xb1, 0x22, 0x9b, 0xa7, + 0x64, 0x55, 0x2f, 0xc3, 0x04, 0x4f, 0x46, 0xbd, 0xae, 0x94, 0xdf, 0x28, 0x29, 0x1b, 0x0c, 0x2a, + 0x10, 0x47, 0x71, 0xd1, 0x0a, 0x53, 0x93, 0xbe, 0x97, 0x85, 0x20, 0x34, 0x89, 0x4e, 0xdc, 0x82, + 0x00, 0x7a, 0x01, 0x2a, 0xec, 0x21, 0xf8, 0x90, 0x8b, 0xac, 0x2c, 0xbb, 0x68, 0x7b, 0x35, 0x6c, + 0xc6, 0x2a, 0x4e, 0xf4, 0x68, 0xc1, 0x68, 0x26, 0x47, 0x0b, 0x12, 0x6f, 0xe5, 0xa4, 0xf4, 0xee, + 0x1b, 0x25, 0x90, 0x1f, 0x42, 0x44, 0x46, 0xe2, 0x73, 0x94, 0x9f, 0xea, 0x7b, 0xf3, 0x26, 0x10, + 0x85, 0x67, 0xb2, 0x52, 0xa6, 0xa4, 0x57, 0x01, 0x89, 0xef, 0x1f, 0x8a, 0xa0, 0x5a, 0x29, 0xa7, + 0x24, 0x77, 0xa9, 0xb4, 0x04, 0x06, 0x4e, 0xe9, 0x85, 0x5e, 0x65, 0x1f, 0x5f, 0xf5, 0x75, 0xd3, + 0x96, 0x9e, 0xf7, 0x7c, 0x8f, 0xfb, 0x97, 0x1c, 0x49, 0x7e, 0x46, 0x95, 0xff, 0xc4, 0x61, 0x77, + 0x74, 0x15, 0xc6, 0xee, 0x38, 0x56, 0xb7, 0x2d, 0x52, 0xf3, 0x95, 0x2b, 0xb3, 0x69, 0x94, 0x5e, + 0x63, 0x28, 0xca, 0x7d, 0x21, 0xde, 0x05, 0x07, 0x7d, 0x11, 0x81, 0x29, 0x76, 0xbc, 0xc7, 0xf4, + 0xf7, 0x85, 0x01, 0x88, 0xa9, 0xf7, 0x72, 0x1a, 0xb9, 0x86, 0xd3, 0xd4, 0xa2, 0xd8, 0xfc, 0xa4, + 0x47, 0xac, 0x11, 0xc7, 0x69, 0xa2, 0x6b, 0x50, 0xd2, 0xb7, 0xb7, 0x4d, 0xdb, 0xf4, 0xf7, 0x45, + 0xce, 0xee, 0xa9, 0x34, 0xfa, 0x35, 0x81, 0x23, 0xea, 0xb4, 0x88, 0x5f, 0x58, 0xf6, 0x45, 0xb7, + 0xa0, 0xe2, 0x3b, 0x96, 0x88, 0x4b, 0x3d, 0x91, 0x6a, 0xb8, 0x90, 0x46, 0x6a, 0x53, 0xa2, 0x85, + 0xdb, 0xa3, 0x61, 0x9b, 0x87, 0x55, 0x3a, 0xe8, 0xf7, 0x72, 0x30, 0x6e, 0x3b, 0x4d, 0x12, 0x98, + 0x9e, 0xd8, 0xae, 0x7b, 0x23, 0xa3, 0x0f, 0x78, 0xce, 0xaf, 0x2b, 0xb4, 0xb9, 0x85, 0xc8, 0xfa, + 0x1d, 0x2a, 0x08, 0x47, 0x84, 0x40, 0x36, 0x4c, 0x9b, 0x6d, 0xbd, 0x45, 0x1a, 0x5d, 0x4b, 0x1c, + 0x4f, 0xf4, 0xc4, 0xe4, 0x91, 0x7a, 0x6b, 0x77, 0xd5, 0x31, 0x74, 0x8b, 0x7f, 0x00, 0x17, 0x93, + 0x6d, 0xe2, 0xb2, 0xef, 0xf0, 0xca, 0x93, 0x26, 0x2b, 0x31, 0x4a, 0x38, 0x41, 0x1b, 0x2d, 0xc3, + 0x4c, 0xc7, 0x35, 0x1d, 0xf6, 0xde, 0x2c, 0xdd, 0xe3, 0x1f, 0x40, 0x85, 0xe8, 0x55, 0xcd, 0x46, + 0x1c, 0x01, 0x27, 0xfb, 0xf0, 0xf2, 0x02, 0xbc, 0x91, 0xad, 0xe5, 0x46, 0x83, 0xf2, 0x02, 0xbc, + 0x0d, 0x4b, 0xe8, 0xec, 0x67, 0x60, 0x26, 0x31, 0x36, 0x7d, 0x39, 0x84, 0x3f, 0xca, 0x41, 0x3c, + 0x5f, 0x4e, 0xd7, 0x0d, 0x4d, 0xd3, 0x65, 0x04, 0xf7, 0xe3, 0x39, 0xfe, 0xa5, 0x00, 0x80, 0x43, + 0x1c, 0x74, 0x09, 0x0a, 0x1d, 0xdd, 0xdf, 0x89, 0x1f, 0xf3, 0xa3, 0x24, 0x31, 0x83, 0xa0, 0x2b, + 0x00, 0xf4, 0x2f, 0x26, 0x2d, 0x72, 0xaf, 0x23, 0x96, 0x41, 0x72, 0xfb, 0xa1, 0x21, 0x21, 0x58, + 0xc1, 0x9a, 0xfb, 0xd7, 0x51, 0x98, 0x8c, 0xce, 0x2d, 0x91, 0xc5, 0x66, 0xee, 0xa1, 0x8b, 0xcd, + 0xcb, 0x50, 0x6c, 0x13, 0x7f, 0xc7, 0x69, 0xc6, 0xe7, 0xc9, 0x35, 0xd6, 0x8a, 0x05, 0x94, 0x89, + 0xef, 0xb8, 0xbe, 0x10, 0x2b, 0x14, 0xdf, 0x71, 0x7d, 0xcc, 0x20, 0xc1, 0x29, 0xc5, 0x42, 0x8f, + 0x53, 0x8a, 0x2d, 0x98, 0xe6, 0x05, 0x7e, 0x17, 0x89, 0xeb, 0x1f, 0xfb, 0x74, 0xad, 0x16, 0x23, + 0x81, 0x13, 0x44, 0x51, 0x93, 0x7a, 0x1b, 0xda, 0x16, 0xee, 0x0c, 0xf4, 0x7f, 0x75, 0x5f, 0x8b, + 0x52, 0xc0, 0x71, 0x92, 0xc3, 0xc8, 0x46, 0x46, 0xdf, 0xe3, 0xb1, 0x2b, 0x23, 0x96, 0xb2, 0xaa, + 0x8c, 0xf8, 0x12, 0x4c, 0xb6, 0xf5, 0x7b, 0x0d, 0x7d, 0xdf, 0x72, 0xf4, 0xa6, 0x66, 0xde, 0x27, + 0xe2, 0x76, 0x29, 0x3a, 0x78, 0x70, 0x71, 0x72, 0x2d, 0x02, 0xc1, 0x31, 0xcc, 0xc1, 0x26, 0xe0, + 0x3f, 0x1e, 0x01, 0x94, 0xfc, 0x70, 0x09, 0xfa, 0x20, 0x07, 0x93, 0x77, 0x23, 0x63, 0x34, 0x9c, + 0xe0, 0x4c, 0xa6, 0xbd, 0xa2, 0xed, 0x38, 0xc6, 0x5c, 0x59, 0xe0, 0x8c, 0x9c, 0xdc, 0x42, 0xb2, + 0x6e, 0xfc, 0xe0, 0x67, 0x17, 0x1e, 0xfb, 0xe1, 0xcf, 0x2e, 0x3c, 0xf6, 0xa3, 0x9f, 0x5d, 0x78, + 0xec, 0xcb, 0x07, 0x17, 0x72, 0x3f, 0x38, 0xb8, 0x90, 0xfb, 0xe1, 0xc1, 0x85, 0xdc, 0x8f, 0x0e, + 0x2e, 0xe4, 0x7e, 0x7a, 0x70, 0x21, 0xf7, 0xad, 0x7f, 0xbf, 0xf0, 0xd8, 0x67, 0x3f, 0x1d, 0x8a, + 0xb2, 0x10, 0x88, 0xc2, 0xfe, 0x79, 0x9e, 0xb3, 0x5e, 0xe8, 0xec, 0xb6, 0x16, 0xa8, 0x28, 0x0b, + 0x8a, 0x28, 0x0b, 0x81, 0x28, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x28, 0x30, 0x4f, 0x04, + 0xa6, 0x00, 0x00, } func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) { @@ -3220,7 +3221,9 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err copy(dAtA[i:], m.CheckInterval) i = encodeVarintGenerated(dAtA, i, uint64(len(m.CheckInterval))) i-- - dAtA[i] = 0x7a + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x82 if m.TLS != nil { { size, err := m.TLS.MarshalToSizedBuffer(dAtA[:i]) @@ -3231,7 +3234,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x72 + dAtA[i] = 0x7a } if m.Filter != nil { { @@ -3243,7 +3246,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x6a + dAtA[i] = 0x72 } if len(m.Metadata) > 0 { keysForMetadata := make([]string, 0, len(m.Metadata)) @@ -3266,7 +3269,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err dAtA[i] = 0xa i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) i-- - dAtA[i] = 0x62 + dAtA[i] = 0x6a } } i-- @@ -3276,12 +3279,12 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err dAtA[i] = 0 } i-- - dAtA[i] = 0x58 + dAtA[i] = 0x60 i -= len(m.BitbucketServerBaseURL) copy(dAtA[i:], m.BitbucketServerBaseURL) i = encodeVarintGenerated(dAtA, i, uint64(len(m.BitbucketServerBaseURL))) i-- - dAtA[i] = 0x52 + dAtA[i] = 0x5a if m.WebhookSecret != nil { { size, err := m.WebhookSecret.MarshalToSizedBuffer(dAtA[:i]) @@ -3292,7 +3295,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x4a + dAtA[i] = 0x52 } if m.AccessToken != nil { { @@ -3304,9 +3307,17 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x42 + dAtA[i] = 0x4a } i-- + if m.OneEventPerChange { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x40 + i-- if m.SkipBranchRefsChangedOnOpenPR { dAtA[i] = 1 } else { @@ -8553,6 +8564,7 @@ func (m *BitbucketServerEventSource) Size() (n int) { } } n += 2 + n += 2 if m.AccessToken != nil { l = m.AccessToken.Size() n += 1 + l + sovGenerated(uint64(l)) @@ -8581,7 +8593,7 @@ func (m *BitbucketServerEventSource) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } l = len(m.CheckInterval) - n += 1 + l + sovGenerated(uint64(l)) + n += 2 + l + sovGenerated(uint64(l)) return n } @@ -10511,6 +10523,7 @@ func (this *BitbucketServerEventSource) String() string { `Repositories:` + repeatedStringForRepositories + `,`, `Events:` + fmt.Sprintf("%v", this.Events) + `,`, `SkipBranchRefsChangedOnOpenPR:` + fmt.Sprintf("%v", this.SkipBranchRefsChangedOnOpenPR) + `,`, + `OneEventPerChange:` + fmt.Sprintf("%v", this.OneEventPerChange) + `,`, `AccessToken:` + strings.Replace(fmt.Sprintf("%v", this.AccessToken), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`, `WebhookSecret:` + strings.Replace(fmt.Sprintf("%v", this.WebhookSecret), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`, `BitbucketServerBaseURL:` + fmt.Sprintf("%v", this.BitbucketServerBaseURL) + `,`, @@ -15308,6 +15321,26 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } m.SkipBranchRefsChangedOnOpenPR = bool(v != 0) case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field OneEventPerChange", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.OneEventPerChange = bool(v != 0) + case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field AccessToken", wireType) } @@ -15343,7 +15376,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 9: + case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field WebhookSecret", wireType) } @@ -15379,7 +15412,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 10: + case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BitbucketServerBaseURL", wireType) } @@ -15411,7 +15444,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } m.BitbucketServerBaseURL = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 11: + case 12: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field DeleteHookOnFinish", wireType) } @@ -15431,7 +15464,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } } m.DeleteHookOnFinish = bool(v != 0) - case 12: + case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) } @@ -15558,7 +15591,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } m.Metadata[mapkey] = mapvalue iNdEx = postIndex - case 13: + case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Filter", wireType) } @@ -15594,7 +15627,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 14: + case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TLS", wireType) } @@ -15630,7 +15663,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 15: + case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CheckInterval", wireType) } diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto index f4b469b04b..ff2d9fcd5b 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.proto +++ b/pkg/apis/eventsource/v1alpha1/generated.proto @@ -303,7 +303,7 @@ message BitbucketAuth { optional k8s.io.api.core.v1.SecretKeySelector oauthToken = 2; } -// BasicAuth holds the information required to authenticate user via basic auth mechanism +// BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism message BitbucketBasicAuth { // Username refers to the K8s secret that holds the username. optional k8s.io.api.core.v1.SecretKeySelector username = 1; @@ -396,34 +396,41 @@ message BitbucketServerEventSource { // +optional optional bool skipBranchRefsChangedOnOpenPR = 7; + // OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate event. This setting is useful when multiple tags are + // pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the + // BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a + // single webhook event. + // +optional + optional bool oneEventPerChange = 8; + // AccessToken is reference to K8s secret which holds the bitbucket api access information. - optional k8s.io.api.core.v1.SecretKeySelector accessToken = 8; + optional k8s.io.api.core.v1.SecretKeySelector accessToken = 9; // WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation). - optional k8s.io.api.core.v1.SecretKeySelector webhookSecret = 9; + optional k8s.io.api.core.v1.SecretKeySelector webhookSecret = 10; // BitbucketServerBaseURL is the base URL for API requests to a custom endpoint. - optional string bitbucketserverBaseURL = 10; + optional string bitbucketserverBaseURL = 11; // DeleteHookOnFinish determines whether to delete the Bitbucket Server hook for the project once the event source is stopped. // +optional - optional bool deleteHookOnFinish = 11; + optional bool deleteHookOnFinish = 12; // Metadata holds the user defined metadata which will passed along the event payload. // +optional - map metadata = 12; + map metadata = 13; // Filter // +optional - optional EventSourceFilter filter = 13; + optional EventSourceFilter filter = 14; // TLS configuration for the bitbucketserver client. // +optional - optional github.com.argoproj.argo_events.pkg.apis.common.TLSConfig tls = 14; + optional github.com.argoproj.argo_events.pkg.apis.common.TLSConfig tls = 15; // CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m) // +optional - optional string checkInterval = 15; + optional string checkInterval = 16; } message BitbucketServerRepository { diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go index 3d19b36fbd..4f54829c67 100644 --- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go +++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go @@ -650,7 +650,7 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketBasicAuth(ref common.Referenc return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "BasicAuth holds the information required to authenticate user via basic auth mechanism", + Description: "BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism", Type: []string{"object"}, Properties: map[string]spec.Schema{ "username": { @@ -888,6 +888,13 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketServerEventSource(ref common. Format: "", }, }, + "oneEventPerChange": { + SchemaProps: spec.SchemaProps{ + Description: "OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate event. This setting is useful when multiple tags are pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a single webhook event.", + Type: []string{"boolean"}, + Format: "", + }, + }, "accessToken": { SchemaProps: spec.SchemaProps{ Description: "AccessToken is reference to K8s secret which holds the bitbucket api access information.", diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go index 41da881ebd..4cfce1594d 100644 --- a/pkg/apis/eventsource/v1alpha1/types.go +++ b/pkg/apis/eventsource/v1alpha1/types.go @@ -1051,7 +1051,7 @@ type BitbucketAuth struct { OAuthToken *corev1.SecretKeySelector `json:"oauthToken,omitempty" protobuf:"bytes,2,opt,name=oauthToken"` } -// BasicAuth holds the information required to authenticate user via basic auth mechanism +// BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism type BitbucketBasicAuth struct { // Username refers to the K8s secret that holds the username. Username *corev1.SecretKeySelector `json:"username" protobuf:"bytes,1,name=username"` @@ -1085,27 +1085,33 @@ type BitbucketServerEventSource struct { // This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review. // +optional SkipBranchRefsChangedOnOpenPR bool `json:"skipBranchRefsChangedOnOpenPR,omitempty" protobuf:"varint,7,opt,name=skipBranchRefsChangedOnOpenPR"` + // OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate event. This setting is useful when multiple tags are + // pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the + // BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a + // single webhook event. + // +optional + OneEventPerChange bool `json:"oneEventPerChange,omitempty" protobuf:"varint,8,opt,name=oneEventPerChange"` // AccessToken is reference to K8s secret which holds the bitbucket api access information. - AccessToken *corev1.SecretKeySelector `json:"accessToken,omitempty" protobuf:"bytes,8,opt,name=accessToken"` + AccessToken *corev1.SecretKeySelector `json:"accessToken,omitempty" protobuf:"bytes,9,opt,name=accessToken"` // WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation). - WebhookSecret *corev1.SecretKeySelector `json:"webhookSecret,omitempty" protobuf:"bytes,9,opt,name=webhookSecret"` + WebhookSecret *corev1.SecretKeySelector `json:"webhookSecret,omitempty" protobuf:"bytes,10,opt,name=webhookSecret"` // BitbucketServerBaseURL is the base URL for API requests to a custom endpoint. - BitbucketServerBaseURL string `json:"bitbucketserverBaseURL" protobuf:"bytes,10,opt,name=bitbucketserverBaseURL"` + BitbucketServerBaseURL string `json:"bitbucketserverBaseURL" protobuf:"bytes,11,opt,name=bitbucketserverBaseURL"` // DeleteHookOnFinish determines whether to delete the Bitbucket Server hook for the project once the event source is stopped. // +optional - DeleteHookOnFinish bool `json:"deleteHookOnFinish,omitempty" protobuf:"varint,11,opt,name=deleteHookOnFinish"` + DeleteHookOnFinish bool `json:"deleteHookOnFinish,omitempty" protobuf:"varint,12,opt,name=deleteHookOnFinish"` // Metadata holds the user defined metadata which will passed along the event payload. // +optional - Metadata map[string]string `json:"metadata,omitempty" protobuf:"bytes,12,rep,name=metadata"` + Metadata map[string]string `json:"metadata,omitempty" protobuf:"bytes,13,rep,name=metadata"` // Filter // +optional - Filter *EventSourceFilter `json:"filter,omitempty" protobuf:"bytes,13,opt,name=filter"` + Filter *EventSourceFilter `json:"filter,omitempty" protobuf:"bytes,14,opt,name=filter"` // TLS configuration for the bitbucketserver client. // +optional - TLS *apicommon.TLSConfig `json:"tls,omitempty" protobuf:"bytes,14,opt,name=tls"` + TLS *apicommon.TLSConfig `json:"tls,omitempty" protobuf:"bytes,15,opt,name=tls"` // CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m) // +optional - CheckInterval string `json:"checkInterval" protobuf:"bytes,15,opt,name=checkInterval"` + CheckInterval string `json:"checkInterval" protobuf:"bytes,16,opt,name=checkInterval"` } type BitbucketServerRepository struct {