From 3e4ea7429dc1d5907ac153c4574c78b610f73f27 Mon Sep 17 00:00:00 2001 From: Matthew Clarke Date: Wed, 10 Jul 2024 09:25:00 -0400 Subject: [PATCH] feat(metricprovider): add prometheus range query support (#3704) * feat: add prometheus range query support Signed-off-by: Matthew Clarke * fix: code-gen Signed-off-by: Matthew Clarke * fix: handle matrix results from prometheus Signed-off-by: Matthew Clarke * refactor: remove duplicated code Signed-off-by: Matthew Clarke * feat: configurable step Signed-off-by: Matthew Clarke * fix: codegen Signed-off-by: Matthew Clarke * test: more tests Signed-off-by: Matthew Clarke * docs: range query docs Signed-off-by: Matthew Clarke * refactor: expr for prometheus range query start/end Signed-off-by: Matthew Clarke * fix: lint issue Signed-off-by: Matthew Clarke * docs: missing codegen Signed-off-by: Matthew Clarke * fix: PR Fixes Signed-off-by: Matthew Clarke --------- Signed-off-by: Matthew Clarke --- docs/CONTRIBUTING.md | 2 +- docs/analysis/prometheus.md | 41 + .../features/kustomize/rollout_cr_schema.json | 42 + manifests/crds/analysis-run-crd.yaml | 9 + manifests/crds/analysis-template-crd.yaml | 9 + .../crds/cluster-analysis-template-crd.yaml | 9 + manifests/install.yaml | 27 + metricproviders/prometheus/mock_test.go | 59 +- metricproviders/prometheus/prometheus.go | 70 +- metricproviders/prometheus/prometheus_test.go | 188 ++- pkg/apiclient/rollout/rollout.swagger.json | 22 + pkg/apis/rollouts/v1alpha1/analysis_types.go | 13 + pkg/apis/rollouts/v1alpha1/generated.pb.go | 1453 ++++++++++------- pkg/apis/rollouts/v1alpha1/generated.proto | 16 + .../rollouts/v1alpha1/openapi_generated.go | 43 +- .../v1alpha1/zz_generated.deepcopy.go | 21 + ui/src/models/rollout/generated/api.ts | 31 + utils/evaluate/evaluate.go | 34 + utils/evaluate/evaluate_test.go | 19 + 19 files changed, 1478 insertions(+), 630 deletions(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index f727834d8b..b2c74299d6 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -201,7 +201,7 @@ make start-e2e E2E_INSTANCE_ID='' ``` -6. Working on CRDs? While editing them directly works when you are finding the shape of things you want, the final CRDs are autogenerated. Make sure to regenerate them before submitting PRs. They are controlled by the relevant annotations in the types file: +6. Working on CRDs? While editing them directly works when you are finding the shape of things you want, the final CRDs are autogenerated. Make sure to regenerate them by running `make gen-crd` before submitting PRs. They are controlled by the relevant annotations in the types file: eg: Analysis Templates are controlled by annotations in `pkg/apis/rollouts/v1alpha1/analysis_types.go`. diff --git a/docs/analysis/prometheus.md b/docs/analysis/prometheus.md index cb93bf0e5d..0fb2fb6a65 100644 --- a/docs/analysis/prometheus.md +++ b/docs/analysis/prometheus.md @@ -39,6 +39,47 @@ you validate your [PromQL expression](https://prometheus.io/docs/prometheus/late See the [Analysis Overview page](../../features/analysis) for more details on the available options. +## Range queries + +```yaml +apiVersion: argoproj.io/v1alpha1 +kind: AnalysisTemplate +metadata: + name: range-query-example +spec: + args: + - name: service-name + - name: lookback-duration + value: 5m + metrics: + - name: success-rate + # checks that all returned values are under 1000ms + successCondition: "all(result, # < 1000)" + failureLimit: 3 + provider: + prometheus: + rangeQuery: + # See https://expr-lang.org/docs/language-definition#date-functions + # for value date functions + # The start point to query from + start: 'now() - duration("{{args.lookback-duration}}")' + # The end point to query to + end: 'now()' + # Query resolution width + step: 1m + address: http://prometheus.example.com:9090 + query: http_latency_ms{service="{{args.service-name}}"} +``` + +### Range query and successCondition/failureCondition + +Since range queries will usually return multiple values from prometheus. It is important to assert on every value returned. See the following examples: + +* ❌ `result[0] < 1000` - this will only check the first value returned +* ✅ `all(result, # < 1000)` - checks every value returns from prometheus + +See [expr](https://github.com/expr-lang/expr) for more expression options. + ## Authorization ### Utilizing Amazon Managed Prometheus diff --git a/docs/features/kustomize/rollout_cr_schema.json b/docs/features/kustomize/rollout_cr_schema.json index b7ca35204f..f835099afe 100644 --- a/docs/features/kustomize/rollout_cr_schema.json +++ b/docs/features/kustomize/rollout_cr_schema.json @@ -4685,6 +4685,20 @@ "query": { "type": "string" }, + "rangeQuery": { + "properties": { + "end": { + "type": "string" + }, + "start": { + "type": "string" + }, + "step": { + "type": "string" + } + }, + "type": "object" + }, "timeout": { "format": "int64", "type": "integer" @@ -9522,6 +9536,20 @@ "query": { "type": "string" }, + "rangeQuery": { + "properties": { + "end": { + "type": "string" + }, + "start": { + "type": "string" + }, + "step": { + "type": "string" + } + }, + "type": "object" + }, "timeout": { "format": "int64", "type": "integer" @@ -14372,6 +14400,20 @@ "query": { "type": "string" }, + "rangeQuery": { + "properties": { + "end": { + "type": "string" + }, + "start": { + "type": "string" + }, + "step": { + "type": "string" + } + }, + "type": "object" + }, "timeout": { "format": "int64", "type": "integer" diff --git a/manifests/crds/analysis-run-crd.yaml b/manifests/crds/analysis-run-crd.yaml index 816702aa04..d5158a74f4 100644 --- a/manifests/crds/analysis-run-crd.yaml +++ b/manifests/crds/analysis-run-crd.yaml @@ -3066,6 +3066,15 @@ spec: type: boolean query: type: string + rangeQuery: + properties: + end: + type: string + start: + type: string + step: + type: string + type: object timeout: format: int64 type: integer diff --git a/manifests/crds/analysis-template-crd.yaml b/manifests/crds/analysis-template-crd.yaml index 3bcf3855ad..e09c631c95 100644 --- a/manifests/crds/analysis-template-crd.yaml +++ b/manifests/crds/analysis-template-crd.yaml @@ -3062,6 +3062,15 @@ spec: type: boolean query: type: string + rangeQuery: + properties: + end: + type: string + start: + type: string + step: + type: string + type: object timeout: format: int64 type: integer diff --git a/manifests/crds/cluster-analysis-template-crd.yaml b/manifests/crds/cluster-analysis-template-crd.yaml index 1f97c14bd8..0c2baf1fc6 100644 --- a/manifests/crds/cluster-analysis-template-crd.yaml +++ b/manifests/crds/cluster-analysis-template-crd.yaml @@ -3062,6 +3062,15 @@ spec: type: boolean query: type: string + rangeQuery: + properties: + end: + type: string + start: + type: string + step: + type: string + type: object timeout: format: int64 type: integer diff --git a/manifests/install.yaml b/manifests/install.yaml index 1b8eec6d69..7ee55d981c 100755 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -3067,6 +3067,15 @@ spec: type: boolean query: type: string + rangeQuery: + properties: + end: + type: string + start: + type: string + step: + type: string + type: object timeout: format: int64 type: integer @@ -6356,6 +6365,15 @@ spec: type: boolean query: type: string + rangeQuery: + properties: + end: + type: string + start: + type: string + step: + type: string + type: object timeout: format: int64 type: integer @@ -9523,6 +9541,15 @@ spec: type: boolean query: type: string + rangeQuery: + properties: + end: + type: string + start: + type: string + step: + type: string + type: object timeout: format: int64 type: integer diff --git a/metricproviders/prometheus/mock_test.go b/metricproviders/prometheus/mock_test.go index e16a42902d..9636828d1e 100644 --- a/metricproviders/prometheus/mock_test.go +++ b/metricproviders/prometheus/mock_test.go @@ -9,17 +9,20 @@ import ( ) type mockAPI struct { - value model.Value - err error - warnings v1.Warnings + value model.Value + err error + warnings v1.Warnings + startTimeSent time.Time + endTimeSent time.Time + stepSent time.Duration } -func (m mockAPI) WalReplay(ctx context.Context) (v1.WalReplayStatus, error) { +func (m *mockAPI) WalReplay(ctx context.Context) (v1.WalReplayStatus, error) { panic("Not used") } // Query performs a query for the given time. -func (m mockAPI) Query(ctx context.Context, query string, ts time.Time, opt ...v1.Option) (model.Value, v1.Warnings, error) { +func (m *mockAPI) Query(ctx context.Context, query string, ts time.Time, opt ...v1.Option) (model.Value, v1.Warnings, error) { if m.err != nil { return nil, m.warnings, m.err } @@ -28,78 +31,84 @@ func (m mockAPI) Query(ctx context.Context, query string, ts time.Time, opt ...v // Below methods are not used but required for the interface implementation -func (m mockAPI) Metadata(ctx context.Context, metric string, limit string) (map[string][]v1.Metadata, error) { +func (m *mockAPI) Metadata(ctx context.Context, metric string, limit string) (map[string][]v1.Metadata, error) { panic("Not used") } -func (m mockAPI) CleanTombstones(ctx context.Context) error { +func (m *mockAPI) CleanTombstones(ctx context.Context) error { panic("Not used") } -func (m mockAPI) DeleteSeries(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) error { +func (m *mockAPI) DeleteSeries(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) error { panic("Not used") } -func (m mockAPI) LabelNames(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) ([]string, v1.Warnings, error) { +func (m *mockAPI) LabelNames(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) ([]string, v1.Warnings, error) { panic("Not used") } -func (m mockAPI) LabelValues(ctx context.Context, label string, matches []string, startTime time.Time, endTime time.Time) (model.LabelValues, v1.Warnings, error) { +func (m *mockAPI) LabelValues(ctx context.Context, label string, matches []string, startTime time.Time, endTime time.Time) (model.LabelValues, v1.Warnings, error) { panic("Not used") } -func (m mockAPI) QueryRange(ctx context.Context, query string, r v1.Range, opt ...v1.Option) (model.Value, v1.Warnings, error) { - panic("Not used") +func (m *mockAPI) QueryRange(ctx context.Context, query string, r v1.Range, opt ...v1.Option) (model.Value, v1.Warnings, error) { + m.startTimeSent = r.Start + m.endTimeSent = r.End + m.stepSent = r.Step + if m.err != nil { + return nil, m.warnings, m.err + } + return m.value, m.warnings, nil } -func (m mockAPI) Series(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) ([]model.LabelSet, v1.Warnings, error) { +func (m *mockAPI) Series(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) ([]model.LabelSet, v1.Warnings, error) { panic("Not used") } -func (m mockAPI) Targets(ctx context.Context) (v1.TargetsResult, error) { +func (m *mockAPI) Targets(ctx context.Context) (v1.TargetsResult, error) { panic("Not used") } -func (m mockAPI) Alerts(ctx context.Context) (v1.AlertsResult, error) { +func (m *mockAPI) Alerts(ctx context.Context) (v1.AlertsResult, error) { panic("Not used") } -func (m mockAPI) AlertManagers(ctx context.Context) (v1.AlertManagersResult, error) { +func (m *mockAPI) AlertManagers(ctx context.Context) (v1.AlertManagersResult, error) { panic("Not used") } -func (m mockAPI) Config(ctx context.Context) (v1.ConfigResult, error) { +func (m *mockAPI) Config(ctx context.Context) (v1.ConfigResult, error) { panic("Not used") } -func (m mockAPI) Flags(ctx context.Context) (v1.FlagsResult, error) { +func (m *mockAPI) Flags(ctx context.Context) (v1.FlagsResult, error) { panic("Not used") } -func (m mockAPI) Snapshot(ctx context.Context, skipHead bool) (v1.SnapshotResult, error) { +func (m *mockAPI) Snapshot(ctx context.Context, skipHead bool) (v1.SnapshotResult, error) { panic("Not used") } -func (m mockAPI) Rules(ctx context.Context) (v1.RulesResult, error) { +func (m *mockAPI) Rules(ctx context.Context) (v1.RulesResult, error) { panic("Not used") } -func (m mockAPI) TargetsMetadata(ctx context.Context, matchTarget string, metric string, limit string) ([]v1.MetricMetadata, error) { +func (m *mockAPI) TargetsMetadata(ctx context.Context, matchTarget string, metric string, limit string) ([]v1.MetricMetadata, error) { panic("Not used") } -func (m mockAPI) Runtimeinfo(ctx context.Context) (v1.RuntimeinfoResult, error) { +func (m *mockAPI) Runtimeinfo(ctx context.Context) (v1.RuntimeinfoResult, error) { panic("Not used") } -func (m mockAPI) TSDB(ctx context.Context) (v1.TSDBResult, error) { +func (m *mockAPI) TSDB(ctx context.Context) (v1.TSDBResult, error) { panic("Not used") } -func (m mockAPI) Buildinfo(ctx context.Context) (v1.BuildinfoResult, error) { +func (m *mockAPI) Buildinfo(ctx context.Context) (v1.BuildinfoResult, error) { panic("Not used") } -func (m mockAPI) QueryExemplars(ctx context.Context, query string, startTime time.Time, endTime time.Time) ([]v1.ExemplarQueryResult, error) { +func (m *mockAPI) QueryExemplars(ctx context.Context, query string, startTime time.Time, endTime time.Time) ([]v1.ExemplarQueryResult, error) { panic("Not used") } diff --git a/metricproviders/prometheus/prometheus.go b/metricproviders/prometheus/prometheus.go index 7473693525..383e4e0a6b 100644 --- a/metricproviders/prometheus/prometheus.go +++ b/metricproviders/prometheus/prometheus.go @@ -56,6 +56,30 @@ func (p *Provider) GetMetadata(metric v1alpha1.Metric) map[string]string { return metricsMetadata } +func (p *Provider) executeQuery(ctx context.Context, metric v1alpha1.Metric) (model.Value, v1.Warnings, error) { + if metric.Provider.Prometheus.RangeQuery != nil { + start, err := evaluate.EvalTime(metric.Provider.Prometheus.RangeQuery.Start) + if err != nil { + return nil, nil, fmt.Errorf("failed to parse rangeQuery.start as time: %w", err) + } + end, err := evaluate.EvalTime(metric.Provider.Prometheus.RangeQuery.End) + if err != nil { + return nil, nil, fmt.Errorf("failed to parse rangeQuery.end as time: %w", err) + } + stepDuration, err := metric.Provider.Prometheus.RangeQuery.Step.Duration() + if err != nil { + return nil, nil, fmt.Errorf("failed to parse rangeQuery.step as duration: %w", err) + } + return p.api.QueryRange(ctx, metric.Provider.Prometheus.Query, v1.Range{ + Start: start, + End: end, + Step: stepDuration, + }) + } else { + return p.api.Query(ctx, metric.Provider.Prometheus.Query, time.Now()) + } +} + // Run queries prometheus for the metric func (p *Provider) Run(run *v1alpha1.AnalysisRun, metric v1alpha1.Metric) v1alpha1.Measurement { startTime := timeutil.MetaNow() @@ -66,7 +90,7 @@ func (p *Provider) Run(run *v1alpha1.AnalysisRun, metric v1alpha1.Metric) v1alph ctx, cancel := context.WithTimeout(context.Background(), p.timeout) defer cancel() - response, warnings, err := p.api.Query(ctx, metric.Provider.Prometheus.Query, time.Now()) + response, warnings, err := p.executeQuery(ctx, metric) if err != nil { return metricutil.MarkMeasurementError(newMeasurement, err) } @@ -112,6 +136,22 @@ func (p *Provider) GarbageCollect(run *v1alpha1.AnalysisRun, metric v1alpha1.Met return nil } +func sampleValuesToFloatSlice(sampleValues []model.SampleValue) []float64 { + results := make([]float64, 0, len(sampleValues)) + for _, s := range sampleValues { + results = append(results, float64(s)) + } + return results +} + +func sampleValuesToResultStr(sampleValues []model.SampleValue) string { + results := []string{} + for _, s := range sampleValues { + results = append(results, s.String()) + } + return fmt.Sprintf("[%s]", strings.Join(results, ",")) +} + func (p *Provider) processResponse(metric v1alpha1.Metric, response model.Value) (string, v1alpha1.AnalysisPhase, error) { switch value := response.(type) { case *model.Scalar: @@ -119,22 +159,28 @@ func (p *Provider) processResponse(metric v1alpha1.Metric, response model.Value) result := float64(value.Value) newStatus, err := evaluate.EvaluateResult(result, metric, p.logCtx) return valueStr, newStatus, err + case model.Matrix: + sampleValues := []model.SampleValue{} + for _, sample := range value { + if sample != nil { + for _, s := range sample.Values { + sampleValues = append(sampleValues, s.Value) + } + } + } + floatResults := sampleValuesToFloatSlice(sampleValues) + newStatus, err := evaluate.EvaluateResult(floatResults, metric, p.logCtx) + return sampleValuesToResultStr(sampleValues), newStatus, err case model.Vector: - results := make([]float64, 0, len(value)) - valueStr := "[" + sampleValues := []model.SampleValue{} for _, s := range value { if s != nil { - valueStr = valueStr + s.Value.String() + "," - results = append(results, float64(s.Value)) + sampleValues = append(sampleValues, s.Value) } } - // if we appended to the string, we should remove the last comma on the string - if len(valueStr) > 1 { - valueStr = valueStr[:len(valueStr)-1] - } - valueStr = valueStr + "]" - newStatus, err := evaluate.EvaluateResult(results, metric, p.logCtx) - return valueStr, newStatus, err + floatResults := sampleValuesToFloatSlice(sampleValues) + newStatus, err := evaluate.EvaluateResult(floatResults, metric, p.logCtx) + return sampleValuesToResultStr(sampleValues), newStatus, err //TODO(dthomson) add other response types default: return "", v1alpha1.AnalysisPhaseError, fmt.Errorf("Prometheus metric type not supported") diff --git a/metricproviders/prometheus/prometheus_test.go b/metricproviders/prometheus/prometheus_test.go index f54d6d6c61..c889f2c4cc 100644 --- a/metricproviders/prometheus/prometheus_test.go +++ b/metricproviders/prometheus/prometheus_test.go @@ -28,6 +28,35 @@ type OAuthResponse struct { Expiry string `json:"expires_in,omitempty"` } +func newMatrix(baseline float64) model.Matrix { + return model.Matrix{ + &model.SampleStream{ + Values: []model.SamplePair{ + { + Timestamp: 1234, + Value: model.SampleValue(baseline + 1.0), + }, + { + Timestamp: 1234, + Value: model.SampleValue(baseline + 2.0), + }, + }, + }, + &model.SampleStream{ + Values: []model.SamplePair{ + { + Timestamp: 1234, + Value: model.SampleValue(baseline + 3.0), + }, + { + Timestamp: 1234, + Value: model.SampleValue(baseline + 4.0), + }, + }, + }, + } +} + func newScalar(f float64) model.Value { return &model.Scalar{ Value: model.SampleValue(f), @@ -41,7 +70,7 @@ func newAnalysisRun() *v1alpha1.AnalysisRun { func TestType(t *testing.T) { e := log.Entry{} - mock := mockAPI{ + mock := &mockAPI{ value: newScalar(10), } timeout := int64(5) @@ -64,7 +93,7 @@ func TestType(t *testing.T) { func TestRunSuccessfully(t *testing.T) { e := log.Entry{} - mock := mockAPI{ + mock := &mockAPI{ value: newScalar(10), } metric := v1alpha1.Metric{ @@ -87,9 +116,142 @@ func TestRunSuccessfully(t *testing.T) { assert.Equal(t, v1alpha1.AnalysisPhaseSuccessful, measurement.Phase) } +func TestRunSuccessfullyWithRangeQuery(t *testing.T) { + e := log.Entry{} + mock := &mockAPI{ + value: newMatrix(10), + } + metric := v1alpha1.Metric{ + Name: "foo", + SuccessCondition: "all(result, # > 10)", + FailureCondition: "all(result, # < 10)", + Provider: v1alpha1.MetricProvider{ + Prometheus: &v1alpha1.PrometheusMetric{ + Query: "test", + RangeQuery: &v1alpha1.PrometheusRangeQueryArgs{ + Start: `date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC") - duration("1h")`, + End: `date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC")`, + Step: "1m", + }, + }, + }, + } + + p, err := NewPrometheusProvider(mock, e, metric) + + measurement := p.Run(newAnalysisRun(), metric) + assert.NotNil(t, measurement.StartedAt) + assert.NoError(t, err) + assert.Equal(t, "[11,12,13,14]", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseSuccessful, measurement.Phase) + assert.Equal(t, "2023-08-13 23:00:00 +0000 UTC", mock.startTimeSent.String()) + assert.Equal(t, "2023-08-14 00:00:00 +0000 UTC", mock.endTimeSent.String()) + assert.Equal(t, "1m0s", mock.stepSent.String()) +} + +func TestRunUnparsableStartTime(t *testing.T) { + e := log.Entry{} + mock := &mockAPI{ + value: newMatrix(10), + } + metric := v1alpha1.Metric{ + Name: "foo", + SuccessCondition: "all(result, # > 10)", + FailureCondition: "all(result, # < 10)", + Provider: v1alpha1.MetricProvider{ + Prometheus: &v1alpha1.PrometheusMetric{ + Query: "test", + RangeQuery: &v1alpha1.PrometheusRangeQueryArgs{ + Start: `now() - duration("??")`, + End: `date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC")`, + Step: "1m", + }, + }, + }, + } + expectedErr := fmt.Errorf(`failed to parse rangeQuery.start as time: time: invalid duration "??"`) + + p, err := NewPrometheusProvider(mock, e, metric) + + measurement := p.Run(newAnalysisRun(), metric) + assert.NotNil(t, measurement.StartedAt) + assert.NoError(t, err) + assert.Equal(t, expectedErr.Error(), measurement.Message) + assert.Equal(t, "", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseError, measurement.Phase) +} + +func TestRunUnparsableEndTime(t *testing.T) { + e := log.Entry{} + mock := &mockAPI{ + value: newMatrix(10), + } + metric := v1alpha1.Metric{ + Name: "foo", + SuccessCondition: "all(result, # > 10)", + FailureCondition: "all(result, # < 10)", + Provider: v1alpha1.MetricProvider{ + Prometheus: &v1alpha1.PrometheusMetric{ + Query: "test", + RangeQuery: &v1alpha1.PrometheusRangeQueryArgs{ + Start: `date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC") - duration("1h")`, + End: `now() - duration("??")`, + Step: "1m", + }, + }, + }, + } + expectedErr := fmt.Errorf(`failed to parse rangeQuery.end as time: time: invalid duration "??"`) + + p, err := NewPrometheusProvider(mock, e, metric) + + measurement := p.Run(newAnalysisRun(), metric) + assert.NotNil(t, measurement.StartedAt) + assert.NoError(t, err) + assert.Equal(t, expectedErr.Error(), measurement.Message) + assert.Equal(t, "", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseError, measurement.Phase) +} + +func TestRunUnparsableStep(t *testing.T) { + e := log.Entry{} + mock := &mockAPI{ + value: newMatrix(10), + } + metric := v1alpha1.Metric{ + Name: "foo", + SuccessCondition: "all(result, # > 10)", + FailureCondition: "all(result, # < 10)", + Provider: v1alpha1.MetricProvider{ + Prometheus: &v1alpha1.PrometheusMetric{ + Query: "test", + RangeQuery: &v1alpha1.PrometheusRangeQueryArgs{ + Start: `date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC") - duration("1h")`, + End: `date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC")`, + Step: "??", + }, + }, + }, + } + expectedErr := fmt.Errorf("failed to parse rangeQuery.step as duration: time: invalid duration \"??\"") + + p, err := NewPrometheusProvider(mock, e, metric) + + measurement := p.Run(newAnalysisRun(), metric) + assert.NotNil(t, measurement.StartedAt) + assert.NoError(t, err) + assert.Equal(t, expectedErr.Error(), measurement.Message) + assert.Equal(t, "", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseError, measurement.Phase) +} + func TestRunSuccessfullyWithEnv(t *testing.T) { e := log.Entry{} - mock := mockAPI{ + mock := &mockAPI{ value: newScalar(10), } address := "http://127.0.0.1:9090" @@ -115,7 +277,7 @@ func TestRunSuccessfullyWithEnv(t *testing.T) { func TestRunSuccessfullyWithWarning(t *testing.T) { e := log.NewEntry(log.New()) - mock := mockAPI{ + mock := &mockAPI{ value: newScalar(10), warnings: v1.Warnings([]string{"warning", "warning2"}), } @@ -141,7 +303,7 @@ func TestRunSuccessfullyWithWarning(t *testing.T) { func TestRunSuccessfullyWithWarningWithEnv(t *testing.T) { e := log.NewEntry(log.New()) - mock := mockAPI{ + mock := &mockAPI{ value: newScalar(10), warnings: v1.Warnings([]string{"warning", "warning2"}), } @@ -168,7 +330,7 @@ func TestRunSuccessfullyWithWarningWithEnv(t *testing.T) { func TestRunWithQueryError(t *testing.T) { e := log.NewEntry(log.New()) expectedErr := fmt.Errorf("bad big bug :(") - mock := mockAPI{ + mock := &mockAPI{ err: expectedErr, } metric := v1alpha1.Metric{ @@ -194,7 +356,7 @@ func TestRunWithQueryError(t *testing.T) { func TestRunWithResolveArgsError(t *testing.T) { e := log.Entry{} expectedErr := fmt.Errorf("failed to resolve {{args.var}}") - mock := mockAPI{ + mock := &mockAPI{ err: expectedErr, } metric := v1alpha1.Metric{ @@ -217,7 +379,7 @@ func TestRunWithResolveArgsError(t *testing.T) { func TestGetStatusReturnsResolvedQuery(t *testing.T) { e := log.Entry{} - mock := mockAPI{} + mock := &mockAPI{} metric := v1alpha1.Metric{ Name: "foo", Provider: v1alpha1.MetricProvider{ @@ -235,7 +397,7 @@ func TestGetStatusReturnsResolvedQuery(t *testing.T) { func TestRunWithEvaluationError(t *testing.T) { e := log.WithField("", "") - mock := mockAPI{} + mock := &mockAPI{} metric := v1alpha1.Metric{ Name: "foo", SuccessCondition: "result == 10", @@ -258,7 +420,7 @@ func TestRunWithEvaluationError(t *testing.T) { func TestResume(t *testing.T) { e := log.WithField("", "") - mock := mockAPI{} + mock := &mockAPI{} metric := v1alpha1.Metric{ Name: "foo", SuccessCondition: "result == 10", @@ -282,7 +444,7 @@ func TestResume(t *testing.T) { func TestTerminate(t *testing.T) { e := log.NewEntry(log.New()) - mock := mockAPI{} + mock := &mockAPI{} metric := v1alpha1.Metric{} p, err := NewPrometheusProvider(mock, *e, metric) assert.NoError(t, err) @@ -297,7 +459,7 @@ func TestTerminate(t *testing.T) { func TestGarbageCollect(t *testing.T) { e := log.NewEntry(log.New()) - mock := mockAPI{} + mock := &mockAPI{} metric := v1alpha1.Metric{} p, err := NewPrometheusProvider(mock, *e, metric) assert.NoError(t, err) @@ -510,7 +672,7 @@ func TestNewPrometheusAddressNotConfigured(t *testing.T) { func TestNewPrometheusNegativeTimeout(t *testing.T) { e := log.Entry{} - mock := mockAPI{ + mock := &mockAPI{ value: newScalar(10), } timeout := int64(-20) diff --git a/pkg/apiclient/rollout/rollout.swagger.json b/pkg/apiclient/rollout/rollout.swagger.json index 3a74f48a24..336732288c 100755 --- a/pkg/apiclient/rollout/rollout.swagger.json +++ b/pkg/apiclient/rollout/rollout.swagger.json @@ -1815,10 +1815,32 @@ "$ref": "#/definitions/github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.WebMetricHeader" }, "title": "Headers are optional HTTP headers to use in the request\n+optional\n+patchMergeKey=key\n+patchStrategy=merge" + }, + "rangeQuery": { + "$ref": "#/definitions/github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.PrometheusRangeQueryArgs", + "title": "Arguments for prometheus\n+optional" } }, "title": "PrometheusMetric defines the prometheus query to perform canary analysis" }, + "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.PrometheusRangeQueryArgs": { + "type": "object", + "properties": { + "start": { + "type": "string", + "title": "The start time to query in expr format e.g. now(), now() - duration(\"1h\"), now() - duration(\"{{args.lookback_duration}}\")" + }, + "end": { + "type": "string", + "title": "The end time to query in expr format e.g. now(), now() - duration(\"1h\"), now() - duration(\"{{args.lookback_duration}}\")" + }, + "step": { + "type": "string", + "description": "The maximum time between two slices from the start to end (e.g. 30s, 5m, 1h)." + } + }, + "title": "Arguments to perform a prometheus range query" + }, "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.RequiredDuringSchedulingIgnoredDuringExecution": { "type": "object", "title": "RequiredDuringSchedulingIgnoredDuringExecution defines inter-pod scheduling rule to be RequiredDuringSchedulingIgnoredDuringExecution" diff --git a/pkg/apis/rollouts/v1alpha1/analysis_types.go b/pkg/apis/rollouts/v1alpha1/analysis_types.go index 3a287ec856..a61d54f71d 100644 --- a/pkg/apis/rollouts/v1alpha1/analysis_types.go +++ b/pkg/apis/rollouts/v1alpha1/analysis_types.go @@ -218,6 +218,16 @@ func (as AnalysisPhase) Completed() bool { return false } +// Arguments to perform a prometheus range query +type PrometheusRangeQueryArgs struct { + // The start time to query in expr format e.g. now(), now() - duration("1h"), now() - duration("{{args.lookback_duration}}") + Start string `json:"start,omitempty" protobuf:"bytes,1,opt,name=start"` + // The end time to query in expr format e.g. now(), now() - duration("1h"), now() - duration("{{args.lookback_duration}}") + End string `json:"end,omitempty" protobuf:"bytes,2,opt,name=end"` + // The maximum time between two slices from the start to end (e.g. 30s, 5m, 1h). + Step DurationString `json:"step,omitempty" protobuf:"bytes,3,opt,name=step,casttype=DurationString"` +} + // PrometheusMetric defines the prometheus query to perform canary analysis type PrometheusMetric struct { // Address is the HTTP address and port of the prometheus server @@ -237,6 +247,9 @@ type PrometheusMetric struct { // +patchMergeKey=key // +patchStrategy=merge Headers []WebMetricHeader `json:"headers,omitempty" patchStrategy:"merge" patchMergeKey:"key" protobuf:"bytes,6,opt,name=headers"` + // Arguments for prometheus + // +optional + RangeQuery *PrometheusRangeQueryArgs `json:"rangeQuery,omitempty" protobuf:"bytes,7,opt,name=rangeQuery"` } // Authentication method diff --git a/pkg/apis/rollouts/v1alpha1/generated.pb.go b/pkg/apis/rollouts/v1alpha1/generated.pb.go index cab169a9d0..59df12b40f 100644 --- a/pkg/apis/rollouts/v1alpha1/generated.pb.go +++ b/pkg/apis/rollouts/v1alpha1/generated.pb.go @@ -2065,12 +2065,40 @@ func (m *PrometheusMetric) XXX_DiscardUnknown() { var xxx_messageInfo_PrometheusMetric proto.InternalMessageInfo +func (m *PrometheusRangeQueryArgs) Reset() { *m = PrometheusRangeQueryArgs{} } +func (*PrometheusRangeQueryArgs) ProtoMessage() {} +func (*PrometheusRangeQueryArgs) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{72} +} +func (m *PrometheusRangeQueryArgs) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PrometheusRangeQueryArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *PrometheusRangeQueryArgs) XXX_Merge(src proto.Message) { + xxx_messageInfo_PrometheusRangeQueryArgs.Merge(m, src) +} +func (m *PrometheusRangeQueryArgs) XXX_Size() int { + return m.Size() +} +func (m *PrometheusRangeQueryArgs) XXX_DiscardUnknown() { + xxx_messageInfo_PrometheusRangeQueryArgs.DiscardUnknown(m) +} + +var xxx_messageInfo_PrometheusRangeQueryArgs proto.InternalMessageInfo + func (m *RequiredDuringSchedulingIgnoredDuringExecution) Reset() { *m = RequiredDuringSchedulingIgnoredDuringExecution{} } func (*RequiredDuringSchedulingIgnoredDuringExecution) ProtoMessage() {} func (*RequiredDuringSchedulingIgnoredDuringExecution) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{72} + return fileDescriptor_e0e705f843545fab, []int{73} } func (m *RequiredDuringSchedulingIgnoredDuringExecution) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2098,7 +2126,7 @@ var xxx_messageInfo_RequiredDuringSchedulingIgnoredDuringExecution proto.Interna func (m *RollbackWindowSpec) Reset() { *m = RollbackWindowSpec{} } func (*RollbackWindowSpec) ProtoMessage() {} func (*RollbackWindowSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{73} + return fileDescriptor_e0e705f843545fab, []int{74} } func (m *RollbackWindowSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2126,7 +2154,7 @@ var xxx_messageInfo_RollbackWindowSpec proto.InternalMessageInfo func (m *Rollout) Reset() { *m = Rollout{} } func (*Rollout) ProtoMessage() {} func (*Rollout) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{74} + return fileDescriptor_e0e705f843545fab, []int{75} } func (m *Rollout) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2154,7 +2182,7 @@ var xxx_messageInfo_Rollout proto.InternalMessageInfo func (m *RolloutAnalysis) Reset() { *m = RolloutAnalysis{} } func (*RolloutAnalysis) ProtoMessage() {} func (*RolloutAnalysis) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{75} + return fileDescriptor_e0e705f843545fab, []int{76} } func (m *RolloutAnalysis) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2182,7 +2210,7 @@ var xxx_messageInfo_RolloutAnalysis proto.InternalMessageInfo func (m *RolloutAnalysisBackground) Reset() { *m = RolloutAnalysisBackground{} } func (*RolloutAnalysisBackground) ProtoMessage() {} func (*RolloutAnalysisBackground) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{76} + return fileDescriptor_e0e705f843545fab, []int{77} } func (m *RolloutAnalysisBackground) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2210,7 +2238,7 @@ var xxx_messageInfo_RolloutAnalysisBackground proto.InternalMessageInfo func (m *RolloutAnalysisRunStatus) Reset() { *m = RolloutAnalysisRunStatus{} } func (*RolloutAnalysisRunStatus) ProtoMessage() {} func (*RolloutAnalysisRunStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{77} + return fileDescriptor_e0e705f843545fab, []int{78} } func (m *RolloutAnalysisRunStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2238,7 +2266,7 @@ var xxx_messageInfo_RolloutAnalysisRunStatus proto.InternalMessageInfo func (m *RolloutCondition) Reset() { *m = RolloutCondition{} } func (*RolloutCondition) ProtoMessage() {} func (*RolloutCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{78} + return fileDescriptor_e0e705f843545fab, []int{79} } func (m *RolloutCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2266,7 +2294,7 @@ var xxx_messageInfo_RolloutCondition proto.InternalMessageInfo func (m *RolloutExperimentStep) Reset() { *m = RolloutExperimentStep{} } func (*RolloutExperimentStep) ProtoMessage() {} func (*RolloutExperimentStep) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{79} + return fileDescriptor_e0e705f843545fab, []int{80} } func (m *RolloutExperimentStep) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2296,7 +2324,7 @@ func (m *RolloutExperimentStepAnalysisTemplateRef) Reset() { } func (*RolloutExperimentStepAnalysisTemplateRef) ProtoMessage() {} func (*RolloutExperimentStepAnalysisTemplateRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{80} + return fileDescriptor_e0e705f843545fab, []int{81} } func (m *RolloutExperimentStepAnalysisTemplateRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2324,7 +2352,7 @@ var xxx_messageInfo_RolloutExperimentStepAnalysisTemplateRef proto.InternalMessa func (m *RolloutExperimentTemplate) Reset() { *m = RolloutExperimentTemplate{} } func (*RolloutExperimentTemplate) ProtoMessage() {} func (*RolloutExperimentTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{81} + return fileDescriptor_e0e705f843545fab, []int{82} } func (m *RolloutExperimentTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2352,7 +2380,7 @@ var xxx_messageInfo_RolloutExperimentTemplate proto.InternalMessageInfo func (m *RolloutList) Reset() { *m = RolloutList{} } func (*RolloutList) ProtoMessage() {} func (*RolloutList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{82} + return fileDescriptor_e0e705f843545fab, []int{83} } func (m *RolloutList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2380,7 +2408,7 @@ var xxx_messageInfo_RolloutList proto.InternalMessageInfo func (m *RolloutPause) Reset() { *m = RolloutPause{} } func (*RolloutPause) ProtoMessage() {} func (*RolloutPause) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{83} + return fileDescriptor_e0e705f843545fab, []int{84} } func (m *RolloutPause) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2408,7 +2436,7 @@ var xxx_messageInfo_RolloutPause proto.InternalMessageInfo func (m *RolloutSpec) Reset() { *m = RolloutSpec{} } func (*RolloutSpec) ProtoMessage() {} func (*RolloutSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{84} + return fileDescriptor_e0e705f843545fab, []int{85} } func (m *RolloutSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2436,7 +2464,7 @@ var xxx_messageInfo_RolloutSpec proto.InternalMessageInfo func (m *RolloutStatus) Reset() { *m = RolloutStatus{} } func (*RolloutStatus) ProtoMessage() {} func (*RolloutStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{85} + return fileDescriptor_e0e705f843545fab, []int{86} } func (m *RolloutStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2464,7 +2492,7 @@ var xxx_messageInfo_RolloutStatus proto.InternalMessageInfo func (m *RolloutStrategy) Reset() { *m = RolloutStrategy{} } func (*RolloutStrategy) ProtoMessage() {} func (*RolloutStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{86} + return fileDescriptor_e0e705f843545fab, []int{87} } func (m *RolloutStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2492,7 +2520,7 @@ var xxx_messageInfo_RolloutStrategy proto.InternalMessageInfo func (m *RolloutTrafficRouting) Reset() { *m = RolloutTrafficRouting{} } func (*RolloutTrafficRouting) ProtoMessage() {} func (*RolloutTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{87} + return fileDescriptor_e0e705f843545fab, []int{88} } func (m *RolloutTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2520,7 +2548,7 @@ var xxx_messageInfo_RolloutTrafficRouting proto.InternalMessageInfo func (m *RouteMatch) Reset() { *m = RouteMatch{} } func (*RouteMatch) ProtoMessage() {} func (*RouteMatch) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{88} + return fileDescriptor_e0e705f843545fab, []int{89} } func (m *RouteMatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2548,7 +2576,7 @@ var xxx_messageInfo_RouteMatch proto.InternalMessageInfo func (m *RunSummary) Reset() { *m = RunSummary{} } func (*RunSummary) ProtoMessage() {} func (*RunSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{89} + return fileDescriptor_e0e705f843545fab, []int{90} } func (m *RunSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2576,7 +2604,7 @@ var xxx_messageInfo_RunSummary proto.InternalMessageInfo func (m *SMITrafficRouting) Reset() { *m = SMITrafficRouting{} } func (*SMITrafficRouting) ProtoMessage() {} func (*SMITrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{90} + return fileDescriptor_e0e705f843545fab, []int{91} } func (m *SMITrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2604,7 +2632,7 @@ var xxx_messageInfo_SMITrafficRouting proto.InternalMessageInfo func (m *ScopeDetail) Reset() { *m = ScopeDetail{} } func (*ScopeDetail) ProtoMessage() {} func (*ScopeDetail) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{91} + return fileDescriptor_e0e705f843545fab, []int{92} } func (m *ScopeDetail) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2632,7 +2660,7 @@ var xxx_messageInfo_ScopeDetail proto.InternalMessageInfo func (m *SecretKeyRef) Reset() { *m = SecretKeyRef{} } func (*SecretKeyRef) ProtoMessage() {} func (*SecretKeyRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{92} + return fileDescriptor_e0e705f843545fab, []int{93} } func (m *SecretKeyRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2660,7 +2688,7 @@ var xxx_messageInfo_SecretKeyRef proto.InternalMessageInfo func (m *SetCanaryScale) Reset() { *m = SetCanaryScale{} } func (*SetCanaryScale) ProtoMessage() {} func (*SetCanaryScale) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{93} + return fileDescriptor_e0e705f843545fab, []int{94} } func (m *SetCanaryScale) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2688,7 +2716,7 @@ var xxx_messageInfo_SetCanaryScale proto.InternalMessageInfo func (m *SetHeaderRoute) Reset() { *m = SetHeaderRoute{} } func (*SetHeaderRoute) ProtoMessage() {} func (*SetHeaderRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{94} + return fileDescriptor_e0e705f843545fab, []int{95} } func (m *SetHeaderRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2716,7 +2744,7 @@ var xxx_messageInfo_SetHeaderRoute proto.InternalMessageInfo func (m *SetMirrorRoute) Reset() { *m = SetMirrorRoute{} } func (*SetMirrorRoute) ProtoMessage() {} func (*SetMirrorRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{95} + return fileDescriptor_e0e705f843545fab, []int{96} } func (m *SetMirrorRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2744,7 +2772,7 @@ var xxx_messageInfo_SetMirrorRoute proto.InternalMessageInfo func (m *Sigv4Config) Reset() { *m = Sigv4Config{} } func (*Sigv4Config) ProtoMessage() {} func (*Sigv4Config) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{96} + return fileDescriptor_e0e705f843545fab, []int{97} } func (m *Sigv4Config) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2772,7 +2800,7 @@ var xxx_messageInfo_Sigv4Config proto.InternalMessageInfo func (m *SkyWalkingMetric) Reset() { *m = SkyWalkingMetric{} } func (*SkyWalkingMetric) ProtoMessage() {} func (*SkyWalkingMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{97} + return fileDescriptor_e0e705f843545fab, []int{98} } func (m *SkyWalkingMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2800,7 +2828,7 @@ var xxx_messageInfo_SkyWalkingMetric proto.InternalMessageInfo func (m *StickinessConfig) Reset() { *m = StickinessConfig{} } func (*StickinessConfig) ProtoMessage() {} func (*StickinessConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{98} + return fileDescriptor_e0e705f843545fab, []int{99} } func (m *StickinessConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2828,7 +2856,7 @@ var xxx_messageInfo_StickinessConfig proto.InternalMessageInfo func (m *StringMatch) Reset() { *m = StringMatch{} } func (*StringMatch) ProtoMessage() {} func (*StringMatch) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{99} + return fileDescriptor_e0e705f843545fab, []int{100} } func (m *StringMatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2856,7 +2884,7 @@ var xxx_messageInfo_StringMatch proto.InternalMessageInfo func (m *TCPRoute) Reset() { *m = TCPRoute{} } func (*TCPRoute) ProtoMessage() {} func (*TCPRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{100} + return fileDescriptor_e0e705f843545fab, []int{101} } func (m *TCPRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2884,7 +2912,7 @@ var xxx_messageInfo_TCPRoute proto.InternalMessageInfo func (m *TLSRoute) Reset() { *m = TLSRoute{} } func (*TLSRoute) ProtoMessage() {} func (*TLSRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{101} + return fileDescriptor_e0e705f843545fab, []int{102} } func (m *TLSRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2912,7 +2940,7 @@ var xxx_messageInfo_TLSRoute proto.InternalMessageInfo func (m *TTLStrategy) Reset() { *m = TTLStrategy{} } func (*TTLStrategy) ProtoMessage() {} func (*TTLStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{102} + return fileDescriptor_e0e705f843545fab, []int{103} } func (m *TTLStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2940,7 +2968,7 @@ var xxx_messageInfo_TTLStrategy proto.InternalMessageInfo func (m *TemplateService) Reset() { *m = TemplateService{} } func (*TemplateService) ProtoMessage() {} func (*TemplateService) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{103} + return fileDescriptor_e0e705f843545fab, []int{104} } func (m *TemplateService) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2968,7 +2996,7 @@ var xxx_messageInfo_TemplateService proto.InternalMessageInfo func (m *TemplateSpec) Reset() { *m = TemplateSpec{} } func (*TemplateSpec) ProtoMessage() {} func (*TemplateSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{104} + return fileDescriptor_e0e705f843545fab, []int{105} } func (m *TemplateSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2996,7 +3024,7 @@ var xxx_messageInfo_TemplateSpec proto.InternalMessageInfo func (m *TemplateStatus) Reset() { *m = TemplateStatus{} } func (*TemplateStatus) ProtoMessage() {} func (*TemplateStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{105} + return fileDescriptor_e0e705f843545fab, []int{106} } func (m *TemplateStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3024,7 +3052,7 @@ var xxx_messageInfo_TemplateStatus proto.InternalMessageInfo func (m *TraefikTrafficRouting) Reset() { *m = TraefikTrafficRouting{} } func (*TraefikTrafficRouting) ProtoMessage() {} func (*TraefikTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{106} + return fileDescriptor_e0e705f843545fab, []int{107} } func (m *TraefikTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3052,7 +3080,7 @@ var xxx_messageInfo_TraefikTrafficRouting proto.InternalMessageInfo func (m *TrafficWeights) Reset() { *m = TrafficWeights{} } func (*TrafficWeights) ProtoMessage() {} func (*TrafficWeights) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{107} + return fileDescriptor_e0e705f843545fab, []int{108} } func (m *TrafficWeights) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3080,7 +3108,7 @@ var xxx_messageInfo_TrafficWeights proto.InternalMessageInfo func (m *ValueFrom) Reset() { *m = ValueFrom{} } func (*ValueFrom) ProtoMessage() {} func (*ValueFrom) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{108} + return fileDescriptor_e0e705f843545fab, []int{109} } func (m *ValueFrom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3108,7 +3136,7 @@ var xxx_messageInfo_ValueFrom proto.InternalMessageInfo func (m *WavefrontMetric) Reset() { *m = WavefrontMetric{} } func (*WavefrontMetric) ProtoMessage() {} func (*WavefrontMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{109} + return fileDescriptor_e0e705f843545fab, []int{110} } func (m *WavefrontMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3136,7 +3164,7 @@ var xxx_messageInfo_WavefrontMetric proto.InternalMessageInfo func (m *WebMetric) Reset() { *m = WebMetric{} } func (*WebMetric) ProtoMessage() {} func (*WebMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{110} + return fileDescriptor_e0e705f843545fab, []int{111} } func (m *WebMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3164,7 +3192,7 @@ var xxx_messageInfo_WebMetric proto.InternalMessageInfo func (m *WebMetricHeader) Reset() { *m = WebMetricHeader{} } func (*WebMetricHeader) ProtoMessage() {} func (*WebMetricHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{111} + return fileDescriptor_e0e705f843545fab, []int{112} } func (m *WebMetricHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3192,7 +3220,7 @@ var xxx_messageInfo_WebMetricHeader proto.InternalMessageInfo func (m *WeightDestination) Reset() { *m = WeightDestination{} } func (*WeightDestination) ProtoMessage() {} func (*WeightDestination) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{112} + return fileDescriptor_e0e705f843545fab, []int{113} } func (m *WeightDestination) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3299,6 +3327,7 @@ func init() { proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.PodTemplateMetadata.LabelsEntry") proto.RegisterType((*PreferredDuringSchedulingIgnoredDuringExecution)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.PreferredDuringSchedulingIgnoredDuringExecution") proto.RegisterType((*PrometheusMetric)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.PrometheusMetric") + proto.RegisterType((*PrometheusRangeQueryArgs)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.PrometheusRangeQueryArgs") proto.RegisterType((*RequiredDuringSchedulingIgnoredDuringExecution)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.RequiredDuringSchedulingIgnoredDuringExecution") proto.RegisterType((*RollbackWindowSpec)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.RollbackWindowSpec") proto.RegisterType((*Rollout)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.Rollout") @@ -3349,543 +3378,547 @@ func init() { } var fileDescriptor_e0e705f843545fab = []byte{ - // 8574 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xd7, - 0x71, 0x98, 0x7a, 0x67, 0x67, 0x77, 0xa6, 0x66, 0xbf, 0xee, 0xdd, 0x1d, 0xb9, 0x5c, 0x92, 0x37, - 0x54, 0xd3, 0x61, 0x48, 0x8b, 0xda, 0x95, 0xf8, 0x91, 0x50, 0xa2, 0xc2, 0x64, 0x66, 0xf7, 0x8e, - 0xb7, 0xc7, 0xdd, 0xbb, 0x65, 0xcd, 0x1e, 0xcf, 0x96, 0x44, 0x5b, 0xbd, 0x33, 0x6f, 0x67, 0xfb, - 0x76, 0xa6, 0x7b, 0xd4, 0xdd, 0xb3, 0x77, 0x4b, 0x11, 0x16, 0x25, 0x81, 0xb2, 0xac, 0x48, 0xb0, - 0x12, 0x5b, 0x08, 0x82, 0x04, 0x81, 0x62, 0x18, 0x70, 0x12, 0xfb, 0x47, 0x60, 0x38, 0x48, 0x7e, - 0x18, 0x88, 0x11, 0xc5, 0x86, 0x02, 0xc4, 0x81, 0xfc, 0x23, 0x91, 0x13, 0xc0, 0xeb, 0x68, 0x9d, - 0x3f, 0x31, 0x12, 0x08, 0x09, 0x14, 0x18, 0xe1, 0x8f, 0x20, 0x78, 0x9f, 0xfd, 0xba, 0xa7, 0x67, - 0xbf, 0xa6, 0xf7, 0x48, 0x27, 0xfe, 0x37, 0xf3, 0xaa, 0x5e, 0x55, 0xf5, 0xfb, 0xac, 0x57, 0xaf, - 0xaa, 0x1e, 0xac, 0xb5, 0xdd, 0x68, 0xa7, 0xbf, 0xb5, 0xd8, 0xf4, 0xbb, 0x4b, 0x4e, 0xd0, 0xf6, - 0x7b, 0x81, 0x7f, 0x97, 0xff, 0xf8, 0x68, 0xe0, 0x77, 0x3a, 0x7e, 0x3f, 0x0a, 0x97, 0x7a, 0xbb, - 0xed, 0x25, 0xa7, 0xe7, 0x86, 0x4b, 0xba, 0x64, 0xef, 0xe3, 0x4e, 0xa7, 0xb7, 0xe3, 0x7c, 0x7c, - 0xa9, 0x4d, 0x3d, 0x1a, 0x38, 0x11, 0x6d, 0x2d, 0xf6, 0x02, 0x3f, 0xf2, 0xc9, 0xa7, 0x62, 0x6a, - 0x8b, 0x8a, 0x1a, 0xff, 0xf1, 0xb3, 0xaa, 0xee, 0x62, 0x6f, 0xb7, 0xbd, 0xc8, 0xa8, 0x2d, 0xea, - 0x12, 0x45, 0x6d, 0xe1, 0xa3, 0x86, 0x2c, 0x6d, 0xbf, 0xed, 0x2f, 0x71, 0xa2, 0x5b, 0xfd, 0x6d, - 0xfe, 0x8f, 0xff, 0xe1, 0xbf, 0x04, 0xb3, 0x85, 0x27, 0x77, 0x5f, 0x0a, 0x17, 0x5d, 0x9f, 0xc9, - 0xb6, 0xb4, 0xe5, 0x44, 0xcd, 0x9d, 0xa5, 0xbd, 0x01, 0x89, 0x16, 0x6c, 0x03, 0xa9, 0xe9, 0x07, - 0x34, 0x0b, 0xe7, 0x85, 0x18, 0xa7, 0xeb, 0x34, 0x77, 0x5c, 0x8f, 0x06, 0xfb, 0xf1, 0x57, 0x77, - 0x69, 0xe4, 0x64, 0xd5, 0x5a, 0x1a, 0x56, 0x2b, 0xe8, 0x7b, 0x91, 0xdb, 0xa5, 0x03, 0x15, 0xfe, - 0xca, 0x71, 0x15, 0xc2, 0xe6, 0x0e, 0xed, 0x3a, 0x03, 0xf5, 0x9e, 0x1f, 0x56, 0xaf, 0x1f, 0xb9, - 0x9d, 0x25, 0xd7, 0x8b, 0xc2, 0x28, 0x48, 0x57, 0xb2, 0x7f, 0x54, 0x80, 0x72, 0x6d, 0xad, 0xde, - 0x88, 0x9c, 0xa8, 0x1f, 0x92, 0xaf, 0x5a, 0x30, 0xd5, 0xf1, 0x9d, 0x56, 0xdd, 0xe9, 0x38, 0x5e, - 0x93, 0x06, 0xf3, 0xd6, 0x13, 0xd6, 0xd3, 0x95, 0xe7, 0xd6, 0x16, 0x47, 0xe9, 0xaf, 0xc5, 0xda, - 0xbd, 0x10, 0x69, 0xe8, 0xf7, 0x83, 0x26, 0x45, 0xba, 0x5d, 0xbf, 0xf4, 0xbd, 0x83, 0xea, 0x87, - 0x0e, 0x0f, 0xaa, 0x53, 0x6b, 0x06, 0x27, 0x4c, 0xf0, 0x25, 0xdf, 0xb6, 0xe0, 0x42, 0xd3, 0xf1, - 0x9c, 0x60, 0x7f, 0xd3, 0x09, 0xda, 0x34, 0x7a, 0x35, 0xf0, 0xfb, 0xbd, 0xf9, 0xb1, 0x73, 0x90, - 0xe6, 0x11, 0x29, 0xcd, 0x85, 0xe5, 0x34, 0x3b, 0x1c, 0x94, 0x80, 0xcb, 0x15, 0x46, 0xce, 0x56, - 0x87, 0x9a, 0x72, 0x15, 0xce, 0x53, 0xae, 0x46, 0x9a, 0x1d, 0x0e, 0x4a, 0x40, 0x9e, 0x81, 0x49, - 0xd7, 0x6b, 0x07, 0x34, 0x0c, 0xe7, 0xc7, 0x9f, 0xb0, 0x9e, 0x2e, 0xd7, 0x67, 0x65, 0xf5, 0xc9, - 0x55, 0x51, 0x8c, 0x0a, 0x6e, 0xff, 0x66, 0x01, 0x2e, 0xd4, 0xd6, 0xea, 0x9b, 0x81, 0xb3, 0xbd, - 0xed, 0x36, 0xd1, 0xef, 0x47, 0xae, 0xd7, 0x36, 0x09, 0x58, 0x47, 0x13, 0x20, 0x2f, 0x42, 0x25, - 0xa4, 0xc1, 0x9e, 0xdb, 0xa4, 0x1b, 0x7e, 0x10, 0xf1, 0x4e, 0x29, 0xd6, 0x2f, 0x4a, 0xf4, 0x4a, - 0x23, 0x06, 0xa1, 0x89, 0xc7, 0xaa, 0x05, 0xbe, 0x1f, 0x49, 0x38, 0x6f, 0xb3, 0x72, 0x5c, 0x0d, - 0x63, 0x10, 0x9a, 0x78, 0x64, 0x05, 0xe6, 0x1c, 0xcf, 0xf3, 0x23, 0x27, 0x72, 0x7d, 0x6f, 0x23, - 0xa0, 0xdb, 0xee, 0x7d, 0xf9, 0x89, 0xf3, 0xb2, 0xee, 0x5c, 0x2d, 0x05, 0xc7, 0x81, 0x1a, 0xe4, - 0x5b, 0x16, 0xcc, 0x85, 0x91, 0xdb, 0xdc, 0x75, 0x3d, 0x1a, 0x86, 0xcb, 0xbe, 0xb7, 0xed, 0xb6, - 0xe7, 0x8b, 0xbc, 0xdb, 0x6e, 0x8e, 0xd6, 0x6d, 0x8d, 0x14, 0xd5, 0xfa, 0x25, 0x26, 0x52, 0xba, - 0x14, 0x07, 0xb8, 0x93, 0x8f, 0x40, 0x59, 0xb6, 0x28, 0x0d, 0xe7, 0x27, 0x9e, 0x28, 0x3c, 0x5d, - 0xae, 0x4f, 0x1f, 0x1e, 0x54, 0xcb, 0xab, 0xaa, 0x10, 0x63, 0xb8, 0xbd, 0x02, 0xf3, 0xb5, 0xee, - 0x96, 0x13, 0x86, 0x4e, 0xcb, 0x0f, 0x52, 0x5d, 0xf7, 0x34, 0x94, 0xba, 0x4e, 0xaf, 0xe7, 0x7a, - 0x6d, 0xd6, 0x77, 0x8c, 0xce, 0xd4, 0xe1, 0x41, 0xb5, 0xb4, 0x2e, 0xcb, 0x50, 0x43, 0xed, 0xff, - 0x38, 0x06, 0x95, 0x9a, 0xe7, 0x74, 0xf6, 0x43, 0x37, 0xc4, 0xbe, 0x47, 0x3e, 0x07, 0x25, 0xb6, - 0x6a, 0xb5, 0x9c, 0xc8, 0x91, 0x33, 0xfd, 0x63, 0x8b, 0x62, 0x11, 0x59, 0x34, 0x17, 0x91, 0xf8, - 0xf3, 0x19, 0xf6, 0xe2, 0xde, 0xc7, 0x17, 0x6f, 0x6d, 0xdd, 0xa5, 0xcd, 0x68, 0x9d, 0x46, 0x4e, - 0x9d, 0xc8, 0x5e, 0x80, 0xb8, 0x0c, 0x35, 0x55, 0xe2, 0xc3, 0x78, 0xd8, 0xa3, 0x4d, 0x39, 0x73, - 0xd7, 0x47, 0x9c, 0x21, 0xb1, 0xe8, 0x8d, 0x1e, 0x6d, 0xd6, 0xa7, 0x24, 0xeb, 0x71, 0xf6, 0x0f, - 0x39, 0x23, 0x72, 0x0f, 0x26, 0x42, 0xbe, 0x96, 0xc9, 0x49, 0x79, 0x2b, 0x3f, 0x96, 0x9c, 0x6c, - 0x7d, 0x46, 0x32, 0x9d, 0x10, 0xff, 0x51, 0xb2, 0xb3, 0xff, 0x93, 0x05, 0x17, 0x0d, 0xec, 0x5a, - 0xd0, 0xee, 0x77, 0xa9, 0x17, 0x91, 0x27, 0x60, 0xdc, 0x73, 0xba, 0x54, 0xce, 0x2a, 0x2d, 0xf2, - 0x4d, 0xa7, 0x4b, 0x91, 0x43, 0xc8, 0x93, 0x50, 0xdc, 0x73, 0x3a, 0x7d, 0xca, 0x1b, 0xa9, 0x5c, - 0x9f, 0x96, 0x28, 0xc5, 0x37, 0x58, 0x21, 0x0a, 0x18, 0x79, 0x1b, 0xca, 0xfc, 0xc7, 0xb5, 0xc0, - 0xef, 0xe6, 0xf4, 0x69, 0x52, 0xc2, 0x37, 0x14, 0x59, 0x31, 0xfc, 0xf4, 0x5f, 0x8c, 0x19, 0xda, - 0x7f, 0x6c, 0xc1, 0xac, 0xf1, 0x71, 0x6b, 0x6e, 0x18, 0x91, 0xcf, 0x0e, 0x0c, 0x9e, 0xc5, 0x93, - 0x0d, 0x1e, 0x56, 0x9b, 0x0f, 0x9d, 0x39, 0xf9, 0xa5, 0x25, 0x55, 0x62, 0x0c, 0x1c, 0x0f, 0x8a, - 0x6e, 0x44, 0xbb, 0xe1, 0xfc, 0xd8, 0x13, 0x85, 0xa7, 0x2b, 0xcf, 0xad, 0xe6, 0xd6, 0x8d, 0x71, - 0xfb, 0xae, 0x32, 0xfa, 0x28, 0xd8, 0xd8, 0xbf, 0x55, 0x48, 0x74, 0xdf, 0xba, 0x92, 0xe3, 0x5d, - 0x0b, 0x26, 0x3a, 0xce, 0x16, 0xed, 0x88, 0xb9, 0x55, 0x79, 0xee, 0xcd, 0xdc, 0x24, 0x51, 0x3c, - 0x16, 0xd7, 0x38, 0xfd, 0xab, 0x5e, 0x14, 0xec, 0xc7, 0xc3, 0x4b, 0x14, 0xa2, 0x64, 0x4e, 0xfe, - 0xae, 0x05, 0x95, 0x78, 0x55, 0x53, 0xcd, 0xb2, 0x95, 0xbf, 0x30, 0xf1, 0x62, 0x2a, 0x25, 0xd2, - 0x4b, 0xb4, 0x01, 0x41, 0x53, 0x96, 0x85, 0x4f, 0x40, 0xc5, 0xf8, 0x04, 0x32, 0x07, 0x85, 0x5d, - 0xba, 0x2f, 0x06, 0x3c, 0xb2, 0x9f, 0xe4, 0x52, 0x62, 0x84, 0xcb, 0x21, 0xfd, 0xc9, 0xb1, 0x97, - 0xac, 0x85, 0x57, 0x60, 0x2e, 0xcd, 0xf0, 0x34, 0xf5, 0xed, 0x7f, 0x5a, 0x4c, 0x0c, 0x4c, 0xb6, - 0x10, 0x10, 0x1f, 0x26, 0xbb, 0x34, 0x0a, 0xdc, 0xa6, 0xea, 0xb2, 0x95, 0xd1, 0x5a, 0x69, 0x9d, - 0x13, 0x8b, 0x37, 0x44, 0xf1, 0x3f, 0x44, 0xc5, 0x85, 0xec, 0xc0, 0xb8, 0x13, 0xb4, 0x55, 0x9f, - 0x5c, 0xcb, 0x67, 0x5a, 0xc6, 0x4b, 0x45, 0x2d, 0x68, 0x87, 0xc8, 0x39, 0x90, 0x25, 0x28, 0x47, - 0x34, 0xe8, 0xba, 0x9e, 0x13, 0x89, 0x1d, 0xb4, 0x54, 0xbf, 0x20, 0xd1, 0xca, 0x9b, 0x0a, 0x80, - 0x31, 0x0e, 0xe9, 0xc0, 0x44, 0x2b, 0xd8, 0xc7, 0xbe, 0x37, 0x3f, 0x9e, 0x47, 0x53, 0xac, 0x70, - 0x5a, 0xf1, 0x20, 0x15, 0xff, 0x51, 0xf2, 0x20, 0xbf, 0x6a, 0xc1, 0xa5, 0x2e, 0x75, 0xc2, 0x7e, - 0x40, 0xd9, 0x27, 0x20, 0x8d, 0xa8, 0xc7, 0x3a, 0x76, 0xbe, 0xc8, 0x99, 0xe3, 0xa8, 0xfd, 0x30, - 0x48, 0xb9, 0xfe, 0x98, 0x14, 0xe5, 0x52, 0x16, 0x14, 0x33, 0xa5, 0x21, 0x6f, 0x43, 0x25, 0x8a, - 0x3a, 0x8d, 0x88, 0xe9, 0xc1, 0xed, 0xfd, 0xf9, 0x09, 0xbe, 0x78, 0x8d, 0xb8, 0xc2, 0x6c, 0x6e, - 0xae, 0x29, 0x82, 0xf5, 0x59, 0x36, 0x5b, 0x8c, 0x02, 0x34, 0xd9, 0xd9, 0xff, 0xa2, 0x08, 0x17, - 0x06, 0xb6, 0x15, 0xf2, 0x02, 0x14, 0x7b, 0x3b, 0x4e, 0xa8, 0xf6, 0x89, 0x2b, 0x6a, 0x91, 0xda, - 0x60, 0x85, 0xef, 0x1d, 0x54, 0xa7, 0x55, 0x15, 0x5e, 0x80, 0x02, 0x99, 0x69, 0x6d, 0x5d, 0x1a, - 0x86, 0x4e, 0x5b, 0x6d, 0x1e, 0xc6, 0x20, 0xe5, 0xc5, 0xa8, 0xe0, 0xe4, 0xe7, 0x2d, 0x98, 0x16, - 0x03, 0x16, 0x69, 0xd8, 0xef, 0x44, 0x6c, 0x83, 0x64, 0x9d, 0x72, 0x23, 0x8f, 0xc9, 0x21, 0x48, - 0xd6, 0x2f, 0x4b, 0xee, 0xd3, 0x66, 0x69, 0x88, 0x49, 0xbe, 0xe4, 0x0e, 0x94, 0xc3, 0xc8, 0x09, - 0x22, 0xda, 0xaa, 0x45, 0x5c, 0x95, 0xab, 0x3c, 0xf7, 0x93, 0x27, 0xdb, 0x39, 0x36, 0xdd, 0x2e, - 0x15, 0xbb, 0x54, 0x43, 0x11, 0xc0, 0x98, 0x16, 0x79, 0x1b, 0x20, 0xe8, 0x7b, 0x8d, 0x7e, 0xb7, - 0xeb, 0x04, 0xfb, 0x52, 0xbb, 0xbb, 0x3e, 0xda, 0xe7, 0xa1, 0xa6, 0x17, 0x2b, 0x3a, 0x71, 0x19, - 0x1a, 0xfc, 0xc8, 0x97, 0x2c, 0x98, 0x16, 0xf3, 0x40, 0x49, 0x30, 0x91, 0xb3, 0x04, 0x17, 0x58, - 0xd3, 0xae, 0x98, 0x2c, 0x30, 0xc9, 0x91, 0xbc, 0x09, 0x95, 0xa6, 0xdf, 0xed, 0x75, 0xa8, 0x68, - 0xdc, 0xc9, 0x53, 0x37, 0x2e, 0x1f, 0xba, 0xcb, 0x31, 0x09, 0x34, 0xe9, 0xd9, 0xff, 0x3e, 0xa9, - 0xe3, 0xa8, 0x21, 0x4d, 0x3e, 0x03, 0x8f, 0x84, 0xfd, 0x66, 0x93, 0x86, 0xe1, 0x76, 0xbf, 0x83, - 0x7d, 0xef, 0xba, 0x1b, 0x46, 0x7e, 0xb0, 0xbf, 0xe6, 0x76, 0xdd, 0x88, 0x0f, 0xe8, 0x62, 0xfd, - 0xf1, 0xc3, 0x83, 0xea, 0x23, 0x8d, 0x61, 0x48, 0x38, 0xbc, 0x3e, 0x71, 0xe0, 0xd1, 0xbe, 0x37, - 0x9c, 0xbc, 0x38, 0x7e, 0x54, 0x0f, 0x0f, 0xaa, 0x8f, 0xde, 0x1e, 0x8e, 0x86, 0x47, 0xd1, 0xb0, - 0xff, 0xd4, 0x62, 0xdb, 0x90, 0xf8, 0xae, 0x4d, 0xda, 0xed, 0x75, 0xd8, 0xd2, 0x79, 0xfe, 0xca, - 0x71, 0x94, 0x50, 0x8e, 0x31, 0x9f, 0xbd, 0x5c, 0xc9, 0x3f, 0x4c, 0x43, 0xb6, 0xff, 0xab, 0x05, - 0x97, 0xd2, 0xc8, 0x0f, 0x40, 0xa1, 0x0b, 0x93, 0x0a, 0xdd, 0xcd, 0x7c, 0xbf, 0x76, 0x88, 0x56, - 0xf7, 0x0b, 0xc6, 0x80, 0x55, 0xa8, 0x48, 0xb7, 0xc9, 0x4b, 0x30, 0x15, 0xc9, 0xbf, 0x37, 0x63, - 0xe5, 0x5c, 0x1b, 0x26, 0x36, 0x0d, 0x18, 0x26, 0x30, 0x59, 0xcd, 0x66, 0xa7, 0x1f, 0x46, 0x34, - 0x68, 0x34, 0xfd, 0x9e, 0x58, 0x76, 0x4b, 0x71, 0xcd, 0x65, 0x03, 0x86, 0x09, 0x4c, 0xfb, 0x6f, - 0x16, 0x07, 0xdb, 0xfd, 0xff, 0x75, 0x7d, 0x25, 0x56, 0x3f, 0x0a, 0xef, 0xa7, 0xfa, 0x31, 0xfe, - 0x81, 0x52, 0x3f, 0xbe, 0x6c, 0x31, 0x2d, 0x4e, 0x0c, 0x80, 0x50, 0xaa, 0x46, 0xaf, 0xe7, 0x3b, - 0x1d, 0x90, 0x6e, 0x9b, 0x8a, 0xa1, 0xe4, 0x85, 0x31, 0x5b, 0xfb, 0x1f, 0x8d, 0xc3, 0x54, 0xcd, - 0x8b, 0xdc, 0xda, 0xf6, 0xb6, 0xeb, 0xb9, 0xd1, 0x3e, 0xf9, 0xc6, 0x18, 0x2c, 0xf5, 0x02, 0xba, - 0x4d, 0x83, 0x80, 0xb6, 0x56, 0xfa, 0x81, 0xeb, 0xb5, 0x1b, 0xcd, 0x1d, 0xda, 0xea, 0x77, 0x5c, - 0xaf, 0xbd, 0xda, 0xf6, 0x7c, 0x5d, 0x7c, 0xf5, 0x3e, 0x6d, 0xf6, 0x79, 0xbb, 0x8a, 0x55, 0xa2, - 0x3b, 0x9a, 0xec, 0x1b, 0xa7, 0x63, 0x5a, 0x7f, 0xfe, 0xf0, 0xa0, 0xba, 0x74, 0xca, 0x4a, 0x78, - 0xda, 0x4f, 0x23, 0x5f, 0x1b, 0x83, 0xc5, 0x80, 0x7e, 0xbe, 0xef, 0x9e, 0xbc, 0x35, 0xc4, 0x32, - 0xde, 0x19, 0x71, 0xbb, 0x3f, 0x15, 0xcf, 0xfa, 0x73, 0x87, 0x07, 0xd5, 0x53, 0xd6, 0xc1, 0x53, - 0x7e, 0x97, 0xbd, 0x01, 0x95, 0x5a, 0xcf, 0x0d, 0xdd, 0xfb, 0xe8, 0xf7, 0x23, 0x7a, 0x02, 0x83, - 0x46, 0x15, 0x8a, 0x41, 0xbf, 0x43, 0xc5, 0x02, 0x53, 0xae, 0x97, 0xd9, 0xb2, 0x8c, 0xac, 0x00, - 0x45, 0xb9, 0xfd, 0x65, 0xb6, 0x05, 0x71, 0x92, 0x29, 0x53, 0xd6, 0x5d, 0x28, 0x06, 0x8c, 0x89, - 0x1c, 0x59, 0xa3, 0x9e, 0xfa, 0x63, 0xa9, 0xa5, 0x10, 0xec, 0x27, 0x0a, 0x16, 0xf6, 0x77, 0xc7, - 0xe0, 0x72, 0xad, 0xd7, 0x5b, 0xa7, 0xe1, 0x4e, 0x4a, 0x8a, 0x5f, 0xb4, 0x60, 0x66, 0xcf, 0x0d, - 0xa2, 0xbe, 0xd3, 0x51, 0xd6, 0x4a, 0x21, 0x4f, 0x63, 0x54, 0x79, 0x38, 0xb7, 0x37, 0x12, 0xa4, - 0xeb, 0xe4, 0xf0, 0xa0, 0x3a, 0x93, 0x2c, 0xc3, 0x14, 0x7b, 0xf2, 0x77, 0x2c, 0x98, 0x93, 0x45, - 0x37, 0xfd, 0x16, 0x35, 0xad, 0xe1, 0xb7, 0xf3, 0x94, 0x49, 0x13, 0x17, 0x56, 0xcc, 0x74, 0x29, - 0x0e, 0x08, 0x61, 0xff, 0xf7, 0x31, 0x78, 0x78, 0x08, 0x0d, 0xf2, 0x6b, 0x16, 0x5c, 0x12, 0x26, - 0x74, 0x03, 0x84, 0x74, 0x5b, 0xb6, 0xe6, 0x4f, 0xe7, 0x2d, 0x39, 0xb2, 0x29, 0x4e, 0xbd, 0x26, - 0xad, 0xcf, 0xb3, 0x25, 0x79, 0x39, 0x83, 0x35, 0x66, 0x0a, 0xc4, 0x25, 0x15, 0x46, 0xf5, 0x94, - 0xa4, 0x63, 0x0f, 0x44, 0xd2, 0x46, 0x06, 0x6b, 0xcc, 0x14, 0xc8, 0xfe, 0xeb, 0xf0, 0xe8, 0x11, - 0xe4, 0x8e, 0x9f, 0x9c, 0xf6, 0x9b, 0x7a, 0xd4, 0x27, 0xc7, 0xdc, 0x09, 0xe6, 0xb5, 0x0d, 0x13, - 0x7c, 0xea, 0xa8, 0x89, 0x0d, 0x6c, 0x0f, 0xe6, 0x73, 0x2a, 0x44, 0x09, 0xb1, 0xbf, 0x6b, 0x41, - 0xe9, 0x14, 0xb6, 0xcf, 0x6a, 0xd2, 0xf6, 0x59, 0x1e, 0xb0, 0x7b, 0x46, 0x83, 0x76, 0xcf, 0x57, - 0x47, 0xeb, 0x8d, 0x93, 0xd8, 0x3b, 0x7f, 0x64, 0xc1, 0x85, 0x01, 0xfb, 0x28, 0xd9, 0x81, 0x4b, - 0x3d, 0xbf, 0xa5, 0xb6, 0xd3, 0xeb, 0x4e, 0xb8, 0xc3, 0x61, 0xf2, 0xf3, 0x5e, 0x60, 0x3d, 0xb9, - 0x91, 0x01, 0x7f, 0xef, 0xa0, 0x3a, 0xaf, 0x89, 0xa4, 0x10, 0x30, 0x93, 0x22, 0xe9, 0x41, 0x69, - 0xdb, 0xa5, 0x9d, 0x56, 0x3c, 0x04, 0x47, 0xd4, 0xd2, 0xae, 0x49, 0x6a, 0xe2, 0x6a, 0x40, 0xfd, - 0x43, 0xcd, 0xc5, 0xfe, 0xb1, 0x05, 0x33, 0xb5, 0x7e, 0xb4, 0xc3, 0x74, 0x94, 0x26, 0xb7, 0xc6, - 0x11, 0x0f, 0x8a, 0xa1, 0xdb, 0xde, 0x7b, 0x21, 0x9f, 0xc5, 0xb8, 0xc1, 0x48, 0xc9, 0x2b, 0x12, - 0xad, 0xac, 0xf3, 0x42, 0x14, 0x6c, 0x48, 0x00, 0x13, 0xbe, 0xd3, 0x8f, 0x76, 0x9e, 0x93, 0x9f, - 0x3c, 0xa2, 0x65, 0xe2, 0x16, 0xfb, 0x9c, 0xe7, 0x24, 0x47, 0xad, 0x32, 0x8a, 0x52, 0x94, 0x9c, - 0xec, 0x2f, 0xc2, 0x4c, 0xf2, 0xde, 0xed, 0x04, 0x63, 0xf6, 0x71, 0x28, 0x38, 0x81, 0x27, 0x47, - 0x6c, 0x45, 0x22, 0x14, 0x6a, 0x78, 0x13, 0x59, 0x39, 0x79, 0x16, 0x4a, 0xdb, 0xfd, 0x4e, 0x87, - 0x9f, 0x2b, 0xc4, 0x25, 0x97, 0x3e, 0x16, 0x5d, 0x93, 0xe5, 0xa8, 0x31, 0xec, 0xff, 0x3d, 0x0e, - 0xb3, 0xf5, 0x4e, 0x9f, 0xbe, 0x1a, 0x50, 0xaa, 0x6c, 0x41, 0x35, 0x98, 0xed, 0x05, 0x74, 0xcf, - 0xa5, 0xf7, 0x1a, 0xb4, 0x43, 0x9b, 0x91, 0x1f, 0x48, 0x69, 0x1e, 0x96, 0x84, 0x66, 0x37, 0x92, - 0x60, 0x4c, 0xe3, 0x93, 0x57, 0x60, 0xc6, 0x69, 0x46, 0xee, 0x1e, 0xd5, 0x14, 0x84, 0xb8, 0x0f, - 0x49, 0x0a, 0x33, 0xb5, 0x04, 0x14, 0x53, 0xd8, 0xe4, 0xb3, 0x30, 0x1f, 0x36, 0x9d, 0x0e, 0xbd, - 0xdd, 0x93, 0xac, 0x96, 0x77, 0x68, 0x73, 0x77, 0xc3, 0x77, 0xbd, 0x48, 0xda, 0x1d, 0x9f, 0x90, - 0x94, 0xe6, 0x1b, 0x43, 0xf0, 0x70, 0x28, 0x05, 0xf2, 0x2f, 0x2d, 0x78, 0xbc, 0x17, 0xd0, 0x8d, - 0xc0, 0xef, 0xfa, 0x6c, 0xa8, 0x0d, 0x98, 0xc3, 0xa4, 0x59, 0xe8, 0x8d, 0x11, 0x75, 0x29, 0x51, - 0x32, 0x78, 0x87, 0xf3, 0xe1, 0xc3, 0x83, 0xea, 0xe3, 0x1b, 0x47, 0x09, 0x80, 0x47, 0xcb, 0x47, - 0xfe, 0x95, 0x05, 0x57, 0x7a, 0x7e, 0x18, 0x1d, 0xf1, 0x09, 0xc5, 0x73, 0xfd, 0x04, 0xfb, 0xf0, - 0xa0, 0x7a, 0x65, 0xe3, 0x48, 0x09, 0xf0, 0x18, 0x09, 0xed, 0xc3, 0x0a, 0x5c, 0x30, 0xc6, 0x9e, - 0x34, 0xe6, 0xbc, 0x0c, 0xd3, 0x6a, 0x30, 0xc4, 0xba, 0x4f, 0x39, 0xb6, 0xed, 0xd5, 0x4c, 0x20, - 0x26, 0x71, 0xd9, 0xb8, 0xd3, 0x43, 0x51, 0xd4, 0x4e, 0x8d, 0xbb, 0x8d, 0x04, 0x14, 0x53, 0xd8, - 0x64, 0x15, 0x2e, 0xca, 0x12, 0xa4, 0xbd, 0x8e, 0xdb, 0x74, 0x96, 0xfd, 0xbe, 0x1c, 0x72, 0xc5, - 0xfa, 0xc3, 0x87, 0x07, 0xd5, 0x8b, 0x1b, 0x83, 0x60, 0xcc, 0xaa, 0x43, 0xd6, 0xe0, 0x92, 0xd3, - 0x8f, 0x7c, 0xfd, 0xfd, 0x57, 0x3d, 0xb6, 0x9d, 0xb6, 0xf8, 0xd0, 0x2a, 0x89, 0x7d, 0xb7, 0x96, - 0x01, 0xc7, 0xcc, 0x5a, 0x64, 0x23, 0x45, 0xad, 0x41, 0x9b, 0xbe, 0xd7, 0x12, 0xbd, 0x5c, 0x8c, - 0x8f, 0x81, 0xb5, 0x0c, 0x1c, 0xcc, 0xac, 0x49, 0x3a, 0x30, 0xd3, 0x75, 0xee, 0xdf, 0xf6, 0x9c, - 0x3d, 0xc7, 0xed, 0x30, 0x26, 0xd2, 0x5e, 0x38, 0xdc, 0xca, 0xd4, 0x8f, 0xdc, 0xce, 0xa2, 0xf0, - 0xe3, 0x58, 0x5c, 0xf5, 0xa2, 0x5b, 0x41, 0x23, 0x62, 0x9a, 0xba, 0xd0, 0x20, 0xd7, 0x13, 0xb4, - 0x30, 0x45, 0x9b, 0xdc, 0x82, 0xcb, 0x7c, 0x3a, 0xae, 0xf8, 0xf7, 0xbc, 0x15, 0xda, 0x71, 0xf6, - 0xd5, 0x07, 0x4c, 0xf2, 0x0f, 0x78, 0xe4, 0xf0, 0xa0, 0x7a, 0xb9, 0x91, 0x85, 0x80, 0xd9, 0xf5, - 0x88, 0x03, 0x8f, 0x26, 0x01, 0x48, 0xf7, 0xdc, 0xd0, 0xf5, 0x3d, 0x61, 0x96, 0x2b, 0xc5, 0x66, - 0xb9, 0xc6, 0x70, 0x34, 0x3c, 0x8a, 0x06, 0xf9, 0x7b, 0x16, 0x5c, 0xca, 0x9a, 0x86, 0xf3, 0xe5, - 0x3c, 0x6e, 0x93, 0x53, 0x53, 0x4b, 0x8c, 0x88, 0xcc, 0x45, 0x21, 0x53, 0x08, 0xf2, 0x8e, 0x05, - 0x53, 0x8e, 0x71, 0x82, 0x9e, 0x87, 0x3c, 0x76, 0x2d, 0xf3, 0x4c, 0x5e, 0x9f, 0x3b, 0x3c, 0xa8, - 0x26, 0x4e, 0xe9, 0x98, 0xe0, 0x48, 0xfe, 0x81, 0x05, 0x97, 0x33, 0xe7, 0xf8, 0x7c, 0xe5, 0x3c, - 0x5a, 0x88, 0x0f, 0x92, 0xec, 0x35, 0x27, 0x5b, 0x0c, 0xf2, 0x2d, 0x4b, 0x6f, 0x65, 0xea, 0x82, - 0x71, 0x7e, 0x8a, 0x8b, 0x36, 0xa2, 0xc1, 0xc3, 0x50, 0xa3, 0x14, 0xe1, 0xfa, 0x45, 0x63, 0x67, - 0x54, 0x85, 0x98, 0x66, 0x4f, 0xbe, 0x69, 0xa9, 0xad, 0x51, 0x4b, 0x34, 0x7d, 0x5e, 0x12, 0x91, - 0x78, 0xa7, 0xd5, 0x02, 0xa5, 0x98, 0x93, 0x9f, 0x81, 0x05, 0x67, 0xcb, 0x0f, 0xa2, 0xcc, 0xc9, - 0x37, 0x3f, 0xc3, 0xa7, 0xd1, 0x95, 0xc3, 0x83, 0xea, 0x42, 0x6d, 0x28, 0x16, 0x1e, 0x41, 0xc1, - 0xfe, 0x8d, 0x22, 0x4c, 0x89, 0x93, 0x90, 0xdc, 0xba, 0x7e, 0xdb, 0x82, 0xc7, 0x9a, 0xfd, 0x20, - 0xa0, 0x5e, 0xd4, 0x88, 0x68, 0x6f, 0x70, 0xe3, 0xb2, 0xce, 0x75, 0xe3, 0x7a, 0xe2, 0xf0, 0xa0, - 0xfa, 0xd8, 0xf2, 0x11, 0xfc, 0xf1, 0x48, 0xe9, 0xc8, 0xbf, 0xb3, 0xc0, 0x96, 0x08, 0x75, 0xa7, - 0xb9, 0xdb, 0x0e, 0xfc, 0xbe, 0xd7, 0x1a, 0xfc, 0x88, 0xb1, 0x73, 0xfd, 0x88, 0xa7, 0x0e, 0x0f, - 0xaa, 0xf6, 0xf2, 0xb1, 0x52, 0xe0, 0x09, 0x24, 0x25, 0xaf, 0xc2, 0x05, 0x89, 0x75, 0xf5, 0x7e, - 0x8f, 0x06, 0x2e, 0x3b, 0x73, 0x48, 0xc5, 0x31, 0xf6, 0x4d, 0x4b, 0x23, 0xe0, 0x60, 0x1d, 0x12, - 0xc2, 0xe4, 0x3d, 0xea, 0xb6, 0x77, 0x22, 0xa5, 0x3e, 0x8d, 0xe8, 0x90, 0x26, 0xad, 0x22, 0x77, - 0x04, 0xcd, 0x7a, 0xe5, 0xf0, 0xa0, 0x3a, 0x29, 0xff, 0xa0, 0xe2, 0x44, 0x6e, 0xc2, 0x8c, 0x38, - 0xa7, 0x6e, 0xb8, 0x5e, 0x7b, 0xc3, 0xf7, 0x84, 0x57, 0x55, 0xb9, 0xfe, 0x94, 0xda, 0xf0, 0x1b, - 0x09, 0xe8, 0x7b, 0x07, 0xd5, 0x29, 0xf5, 0x7b, 0x73, 0xbf, 0x47, 0x31, 0x55, 0xdb, 0xfe, 0xbd, - 0x09, 0x00, 0x35, 0x5c, 0x69, 0x8f, 0x7c, 0x04, 0xca, 0x21, 0x8d, 0x04, 0x57, 0x79, 0x93, 0x24, - 0xee, 0xff, 0x54, 0x21, 0xc6, 0x70, 0xb2, 0x0b, 0xc5, 0x9e, 0xd3, 0x0f, 0x69, 0x3e, 0xe7, 0x07, - 0xd9, 0xf9, 0x1b, 0x8c, 0xa2, 0x38, 0x98, 0xf2, 0x9f, 0x28, 0x78, 0x90, 0xaf, 0x58, 0x00, 0x34, - 0xd9, 0x61, 0x23, 0x1b, 0x88, 0x24, 0xcb, 0xb8, 0x4f, 0x59, 0x1b, 0xd4, 0x67, 0x0e, 0x0f, 0xaa, - 0x60, 0x74, 0xbd, 0xc1, 0x96, 0xdc, 0x83, 0x92, 0xa3, 0xd6, 0xfc, 0xf1, 0xf3, 0x58, 0xf3, 0xf9, - 0x79, 0x51, 0x0f, 0x5a, 0xcd, 0x8c, 0x7c, 0xcd, 0x82, 0x99, 0x90, 0x46, 0xb2, 0xab, 0xd8, 0xca, - 0x23, 0x15, 0xde, 0x11, 0x07, 0x5d, 0x23, 0x41, 0x53, 0xac, 0xa0, 0xc9, 0x32, 0x4c, 0xf1, 0x55, - 0xa2, 0x5c, 0xa7, 0x4e, 0x8b, 0x06, 0xdc, 0x1c, 0x21, 0x35, 0xa9, 0xd1, 0x45, 0x31, 0x68, 0x6a, - 0x51, 0x8c, 0x32, 0x4c, 0xf1, 0x55, 0xa2, 0xac, 0xbb, 0x41, 0xe0, 0x4b, 0x51, 0x4a, 0x39, 0x89, - 0x62, 0xd0, 0xd4, 0xa2, 0x18, 0x65, 0x98, 0xe2, 0x6b, 0x7f, 0x67, 0x1a, 0x66, 0xd4, 0x44, 0x8a, - 0x35, 0x7b, 0x61, 0xfd, 0x1a, 0xa2, 0xd9, 0x2f, 0x9b, 0x40, 0x4c, 0xe2, 0xb2, 0xca, 0x62, 0xaa, - 0x26, 0x15, 0x7b, 0x5d, 0xb9, 0x61, 0x02, 0x31, 0x89, 0x4b, 0xba, 0x50, 0x0c, 0x23, 0xda, 0x53, - 0x3e, 0x07, 0x23, 0x5e, 0x89, 0xc7, 0xeb, 0x83, 0x61, 0x49, 0x60, 0xe4, 0x51, 0x70, 0xe1, 0x06, - 0xdc, 0x28, 0x61, 0xd3, 0x95, 0x93, 0x23, 0x9f, 0xf9, 0x99, 0x34, 0x17, 0x8b, 0xde, 0x48, 0x96, - 0x61, 0x8a, 0x7d, 0x86, 0xb2, 0x5f, 0x3c, 0x47, 0x65, 0xff, 0xd3, 0x50, 0xea, 0x3a, 0xf7, 0x1b, - 0xfd, 0xa0, 0x7d, 0xf6, 0x43, 0x85, 0xf4, 0x21, 0x15, 0x54, 0x50, 0xd3, 0x23, 0x5f, 0xb2, 0x8c, - 0x25, 0x47, 0x38, 0x18, 0xdc, 0xc9, 0x77, 0xc9, 0xd1, 0x7b, 0xe5, 0xd0, 0xc5, 0x67, 0x40, 0xf5, - 0x2e, 0x3d, 0x70, 0xd5, 0x9b, 0xa9, 0x91, 0x62, 0x82, 0x68, 0x35, 0xb2, 0x7c, 0xae, 0x6a, 0xe4, - 0x72, 0x82, 0x19, 0xa6, 0x98, 0x73, 0x79, 0xc4, 0x9c, 0xd3, 0xf2, 0xc0, 0xb9, 0xca, 0xd3, 0x48, - 0x30, 0xc3, 0x14, 0xf3, 0xe1, 0xe7, 0xcd, 0xca, 0xf9, 0x9c, 0x37, 0xa7, 0x72, 0x38, 0x6f, 0x1e, - 0xad, 0x8a, 0x4f, 0x8f, 0xaa, 0x8a, 0x93, 0x1b, 0x40, 0x5a, 0xfb, 0x9e, 0xd3, 0x75, 0x9b, 0x72, - 0xb1, 0xe4, 0xdb, 0xe6, 0x0c, 0xb7, 0x47, 0x2c, 0xc8, 0x85, 0x8c, 0xac, 0x0c, 0x60, 0x60, 0x46, - 0x2d, 0x12, 0x41, 0xa9, 0xa7, 0x34, 0xae, 0xd9, 0x3c, 0x46, 0xbf, 0xd2, 0xc0, 0x84, 0xdf, 0x08, - 0x9b, 0x78, 0xaa, 0x04, 0x35, 0x27, 0xb2, 0x06, 0x97, 0xba, 0xae, 0xb7, 0xe1, 0xb7, 0xc2, 0x0d, - 0x1a, 0x48, 0x6b, 0x4b, 0x83, 0x46, 0xf3, 0x73, 0xbc, 0x6d, 0xf8, 0x09, 0x7a, 0x3d, 0x03, 0x8e, - 0x99, 0xb5, 0xec, 0xff, 0x65, 0xc1, 0xdc, 0x72, 0xc7, 0xef, 0xb7, 0xee, 0x38, 0x51, 0x73, 0x47, - 0xb8, 0x29, 0x90, 0x57, 0xa0, 0xe4, 0x7a, 0x11, 0x0d, 0xf6, 0x9c, 0x8e, 0xdc, 0x9f, 0x6c, 0x65, - 0x3e, 0x5d, 0x95, 0xe5, 0xef, 0x1d, 0x54, 0x67, 0x56, 0xfa, 0x01, 0xb7, 0x52, 0x8b, 0xd5, 0x0a, - 0x75, 0x1d, 0xf2, 0x1d, 0x0b, 0x2e, 0x08, 0x47, 0x87, 0x15, 0x27, 0x72, 0x5e, 0xef, 0xd3, 0xc0, - 0xa5, 0xca, 0xd5, 0x61, 0xc4, 0x85, 0x2a, 0x2d, 0xab, 0x62, 0xb0, 0x1f, 0x2b, 0xea, 0xeb, 0x69, - 0xce, 0x38, 0x28, 0x8c, 0xfd, 0x4b, 0x05, 0x78, 0x64, 0x28, 0x2d, 0xb2, 0x00, 0x63, 0x6e, 0x4b, - 0x7e, 0x3a, 0x48, 0xba, 0x63, 0xab, 0x2d, 0x1c, 0x73, 0x5b, 0x64, 0x91, 0xeb, 0x9c, 0x01, 0x0d, - 0x43, 0x75, 0xe1, 0x5c, 0xd6, 0xea, 0xa1, 0x2c, 0x45, 0x03, 0x83, 0x54, 0xa1, 0xc8, 0xfd, 0x87, - 0xe5, 0x79, 0x82, 0x6b, 0xb1, 0xdc, 0x55, 0x17, 0x45, 0x39, 0xf9, 0xb2, 0x05, 0x20, 0x04, 0x64, - 0xa7, 0x11, 0xb9, 0x4b, 0x62, 0xbe, 0xcd, 0xc4, 0x28, 0x0b, 0x29, 0xe3, 0xff, 0x68, 0x70, 0x25, - 0x9b, 0x30, 0xc1, 0x14, 0x5a, 0xbf, 0x75, 0xe6, 0x4d, 0x91, 0xdf, 0x44, 0x6d, 0x70, 0x1a, 0x28, - 0x69, 0xb1, 0xb6, 0x0a, 0x68, 0xd4, 0x0f, 0x3c, 0xd6, 0xb4, 0x7c, 0x1b, 0x2c, 0x09, 0x29, 0x50, - 0x97, 0xa2, 0x81, 0x61, 0xff, 0xf3, 0x31, 0xb8, 0x94, 0x25, 0x3a, 0xdb, 0x6d, 0x26, 0x84, 0xb4, - 0xf2, 0x68, 0xfc, 0x53, 0xf9, 0xb7, 0x8f, 0xf4, 0xd9, 0xd1, 0xd7, 0x14, 0xd2, 0x81, 0x52, 0xf2, - 0x25, 0x3f, 0xa5, 0x5b, 0x68, 0xec, 0x8c, 0x2d, 0xa4, 0x29, 0xa7, 0x5a, 0xe9, 0x09, 0x18, 0x0f, - 0x59, 0xcf, 0x17, 0x92, 0xd7, 0x1d, 0xbc, 0x8f, 0x38, 0x84, 0x61, 0xf4, 0x3d, 0x37, 0x92, 0x41, - 0x37, 0x1a, 0xe3, 0xb6, 0xe7, 0x46, 0xc8, 0x21, 0xf6, 0xb7, 0xc7, 0x60, 0x61, 0xf8, 0x47, 0x91, - 0x6f, 0x5b, 0x00, 0x2d, 0x76, 0x5c, 0x09, 0xb9, 0xe7, 0xba, 0xf0, 0x71, 0x72, 0xce, 0xab, 0x0d, - 0x57, 0x14, 0xa7, 0xd8, 0xf9, 0x4e, 0x17, 0x85, 0x68, 0x08, 0x42, 0x9e, 0x53, 0x43, 0x9f, 0x5f, - 0xd5, 0x88, 0xc9, 0xa4, 0xeb, 0xac, 0x6b, 0x08, 0x1a, 0x58, 0xec, 0x3c, 0xea, 0x39, 0x5d, 0x1a, - 0xf6, 0x1c, 0x1d, 0xc2, 0xc4, 0xcf, 0xa3, 0x37, 0x55, 0x21, 0xc6, 0x70, 0xbb, 0x03, 0x4f, 0x9e, - 0x40, 0xce, 0x9c, 0x22, 0x44, 0xec, 0xff, 0x61, 0xc1, 0xc3, 0xd2, 0xfd, 0xec, 0xff, 0x1b, 0x5f, - 0xc6, 0x3f, 0xb3, 0xe0, 0xd1, 0x21, 0xdf, 0xfc, 0x00, 0x5c, 0x1a, 0xdf, 0x4a, 0xba, 0x34, 0xde, - 0x1e, 0x75, 0x48, 0x67, 0x7e, 0xc7, 0x10, 0xcf, 0xc6, 0x7f, 0x53, 0x80, 0x69, 0xb6, 0x6c, 0xb5, - 0xfc, 0x76, 0x4e, 0x1b, 0xe7, 0x93, 0x50, 0xfc, 0x3c, 0xdb, 0x80, 0xd2, 0x83, 0x8c, 0xef, 0x4a, - 0x28, 0x60, 0xe4, 0x2b, 0x16, 0x4c, 0x7e, 0x5e, 0xee, 0xa9, 0xe2, 0x2c, 0x37, 0xe2, 0x62, 0x98, - 0xf8, 0x86, 0x45, 0xb9, 0x43, 0x8a, 0xc0, 0x13, 0xed, 0xc0, 0xa8, 0xb6, 0x52, 0xc5, 0x99, 0x3c, - 0x03, 0x93, 0xdb, 0x7e, 0xd0, 0xed, 0x77, 0x9c, 0x74, 0xb4, 0xe3, 0x35, 0x51, 0x8c, 0x0a, 0xce, - 0x26, 0xb9, 0xd3, 0x73, 0xdf, 0xa0, 0x41, 0x28, 0xe2, 0x10, 0x12, 0x93, 0xbc, 0xa6, 0x21, 0x68, - 0x60, 0xf1, 0x3a, 0xed, 0x76, 0x40, 0xdb, 0x4e, 0xe4, 0x07, 0x7c, 0xe7, 0x30, 0xeb, 0x68, 0x08, - 0x1a, 0x58, 0x0b, 0x9f, 0x84, 0x29, 0x53, 0xf8, 0x53, 0x05, 0xb1, 0x7c, 0x0a, 0xa4, 0x27, 0x63, - 0x6a, 0x49, 0xb2, 0x4e, 0xb2, 0x24, 0xd9, 0xff, 0x61, 0x0c, 0x0c, 0xeb, 0xd0, 0x03, 0x98, 0xea, - 0x5e, 0x62, 0xaa, 0x8f, 0x68, 0xd9, 0x30, 0x6c, 0x5d, 0xc3, 0x42, 0xfa, 0xf6, 0x52, 0x21, 0x7d, - 0x37, 0x73, 0xe3, 0x78, 0x74, 0x44, 0xdf, 0x0f, 0x2c, 0x78, 0x34, 0x46, 0x1e, 0x34, 0xdc, 0x1e, - 0xbf, 0x6e, 0xbf, 0x08, 0x15, 0x27, 0xae, 0x26, 0x27, 0x96, 0x11, 0x4f, 0xa5, 0x41, 0x68, 0xe2, - 0xc5, 0xb1, 0x20, 0x85, 0x33, 0xc6, 0x82, 0x8c, 0x1f, 0x1d, 0x0b, 0x62, 0xff, 0x78, 0x0c, 0x1e, - 0x1f, 0xfc, 0x32, 0xd3, 0x41, 0xfa, 0xf8, 0x6f, 0x4b, 0xbb, 0x50, 0x8f, 0x9d, 0xd9, 0x85, 0xba, - 0x70, 0x52, 0x17, 0x6a, 0xed, 0xb8, 0x3c, 0x7e, 0xee, 0x8e, 0xcb, 0x0d, 0xb8, 0xac, 0xbc, 0x24, - 0xaf, 0xf9, 0x81, 0x0c, 0x88, 0x50, 0x2b, 0x48, 0xa9, 0xfe, 0xb8, 0xac, 0x72, 0x19, 0xb3, 0x90, - 0x30, 0xbb, 0xae, 0xfd, 0x83, 0x02, 0x5c, 0x8c, 0x9b, 0x7d, 0xd9, 0xf7, 0x5a, 0x2e, 0x77, 0xb4, - 0x79, 0x19, 0xc6, 0xa3, 0xfd, 0x9e, 0x6a, 0xec, 0xbf, 0xac, 0xc4, 0xd9, 0xdc, 0xef, 0xb1, 0xde, - 0x7e, 0x38, 0xa3, 0x0a, 0x37, 0x9d, 0xf3, 0x4a, 0x64, 0x4d, 0xcf, 0x0e, 0xd1, 0x03, 0x2f, 0x24, - 0x47, 0xf3, 0x7b, 0x07, 0xd5, 0x8c, 0xd4, 0x06, 0x8b, 0x9a, 0x52, 0x72, 0xcc, 0x93, 0xbb, 0x30, - 0xd3, 0x71, 0xc2, 0xe8, 0x76, 0xaf, 0xe5, 0x44, 0x74, 0xd3, 0x95, 0x2e, 0x2c, 0xa7, 0x8b, 0x21, - 0xd1, 0x77, 0xfd, 0x6b, 0x09, 0x4a, 0x98, 0xa2, 0x4c, 0xf6, 0x80, 0xb0, 0x92, 0xcd, 0xc0, 0xf1, - 0x42, 0xf1, 0x55, 0x8c, 0xdf, 0xe9, 0x03, 0x82, 0xf4, 0xd1, 0x79, 0x6d, 0x80, 0x1a, 0x66, 0x70, - 0x20, 0x4f, 0xc1, 0x44, 0x40, 0x9d, 0x50, 0x6f, 0x07, 0x7a, 0xfe, 0x23, 0x2f, 0x45, 0x09, 0x35, - 0x27, 0xd4, 0xc4, 0x31, 0x13, 0xea, 0x8f, 0x2c, 0x98, 0x89, 0xbb, 0xe9, 0x01, 0xa8, 0x1e, 0xdd, - 0xa4, 0xea, 0x71, 0x3d, 0xaf, 0x25, 0x71, 0x88, 0xb6, 0xf1, 0xa7, 0x93, 0xe6, 0xf7, 0xf1, 0xa8, - 0x85, 0x2f, 0x98, 0x4e, 0xec, 0x56, 0x1e, 0xa1, 0x64, 0x09, 0x6d, 0xef, 0x48, 0xef, 0x75, 0xa6, - 0xeb, 0xb4, 0xa4, 0x1e, 0x23, 0x87, 0xbd, 0xd6, 0x75, 0x94, 0x7e, 0x93, 0xa5, 0xeb, 0xa8, 0x3a, - 0xe4, 0x36, 0x3c, 0xdc, 0x0b, 0x7c, 0x1e, 0x5c, 0xbf, 0x42, 0x9d, 0x56, 0xc7, 0xf5, 0xa8, 0x32, - 0xf3, 0x08, 0x57, 0x93, 0x47, 0x0f, 0x0f, 0xaa, 0x0f, 0x6f, 0x64, 0xa3, 0xe0, 0xb0, 0xba, 0xc9, - 0xf0, 0xcc, 0xf1, 0x13, 0x84, 0x67, 0xfe, 0x82, 0x36, 0xa6, 0xea, 0x48, 0x80, 0xcf, 0xe4, 0xd5, - 0x95, 0x59, 0x31, 0x01, 0x7a, 0x48, 0xd5, 0x24, 0x53, 0xd4, 0xec, 0x87, 0x5b, 0xec, 0x26, 0xce, - 0x68, 0xb1, 0x8b, 0x83, 0x3f, 0x26, 0xdf, 0xcf, 0xe0, 0x8f, 0xd2, 0x07, 0x2a, 0xf8, 0xe3, 0x3b, - 0x16, 0x5c, 0x74, 0x06, 0xc3, 0xae, 0xf3, 0x31, 0x1e, 0x67, 0xc4, 0x73, 0xd7, 0x1f, 0x95, 0x42, - 0x66, 0x45, 0xb7, 0x63, 0x96, 0x28, 0xf6, 0xbb, 0x45, 0x98, 0x4b, 0x2b, 0x49, 0xe7, 0x1f, 0x9f, - 0xfa, 0xb7, 0x2d, 0x98, 0x53, 0x13, 0x5c, 0xf0, 0xd4, 0x47, 0x8c, 0xb5, 0x9c, 0xd6, 0x15, 0xa1, - 0xee, 0xe9, 0xb4, 0x21, 0x9b, 0x29, 0x6e, 0x38, 0xc0, 0x9f, 0xbc, 0x09, 0x15, 0x7d, 0xab, 0x72, - 0xa6, 0x60, 0x55, 0x1e, 0x4f, 0x59, 0x8b, 0x49, 0xa0, 0x49, 0x8f, 0xbc, 0x6b, 0x01, 0x34, 0xd5, - 0x4e, 0x9c, 0x53, 0x28, 0x50, 0x86, 0xb6, 0x10, 0xeb, 0xf3, 0xba, 0x28, 0x44, 0x83, 0x31, 0xf9, - 0x25, 0x7e, 0x9f, 0xa2, 0x47, 0x82, 0x48, 0x47, 0x32, 0xb2, 0xdb, 0xfb, 0x11, 0xba, 0x73, 0xac, - 0xed, 0x19, 0xa0, 0x10, 0x13, 0x42, 0xd8, 0x2f, 0x83, 0x76, 0x54, 0x66, 0x2b, 0x2b, 0x77, 0x55, - 0xde, 0x70, 0xa2, 0x1d, 0x39, 0x04, 0xf5, 0xca, 0x7a, 0x4d, 0x01, 0x30, 0xc6, 0xb1, 0x3f, 0x07, - 0x33, 0xaf, 0x06, 0x4e, 0x6f, 0xc7, 0xe5, 0xf7, 0x16, 0xec, 0x7c, 0xfc, 0x0c, 0x4c, 0x3a, 0xad, - 0x56, 0x56, 0x86, 0x9b, 0x9a, 0x28, 0x46, 0x05, 0x3f, 0xd1, 0x51, 0xd8, 0xfe, 0x3d, 0x0b, 0x48, - 0x7c, 0xf7, 0xeb, 0x7a, 0xed, 0x75, 0x27, 0x6a, 0xee, 0xb0, 0x23, 0xdc, 0x0e, 0x2f, 0xcd, 0x3a, - 0xc2, 0x5d, 0xd7, 0x10, 0x34, 0xb0, 0xc8, 0xdb, 0x50, 0x11, 0xff, 0xde, 0xd0, 0x07, 0xc4, 0xd1, - 0xfd, 0xad, 0xf9, 0x9e, 0xc7, 0x65, 0x12, 0xa3, 0xf0, 0x7a, 0xcc, 0x01, 0x4d, 0x76, 0xac, 0xa9, - 0x56, 0xbd, 0xed, 0x4e, 0xff, 0x7e, 0x6b, 0x2b, 0x6e, 0xaa, 0x5e, 0xe0, 0x6f, 0xbb, 0x1d, 0x9a, - 0x6e, 0xaa, 0x0d, 0x51, 0x8c, 0x0a, 0x7e, 0xb2, 0xa6, 0xfa, 0xd7, 0x16, 0x5c, 0x5a, 0x0d, 0x23, - 0xd7, 0x5f, 0xa1, 0x61, 0xc4, 0x76, 0x3e, 0xb6, 0x3e, 0xf6, 0x3b, 0x27, 0x89, 0x39, 0x58, 0x81, - 0x39, 0x79, 0x0f, 0xdd, 0xdf, 0x0a, 0x69, 0x64, 0x1c, 0x35, 0xf4, 0x3c, 0x5e, 0x4e, 0xc1, 0x71, - 0xa0, 0x06, 0xa3, 0x22, 0x2f, 0xa4, 0x63, 0x2a, 0x85, 0x24, 0x95, 0x46, 0x0a, 0x8e, 0x03, 0x35, - 0xec, 0xef, 0x17, 0xe0, 0x22, 0xff, 0x8c, 0x54, 0xbc, 0xd0, 0x37, 0x87, 0xc5, 0x0b, 0x8d, 0x38, - 0x95, 0x39, 0xaf, 0x33, 0x44, 0x0b, 0xfd, 0x2d, 0x0b, 0x66, 0x5b, 0xc9, 0x96, 0xce, 0xc7, 0x2e, - 0x97, 0xd5, 0x87, 0xc2, 0xed, 0x2e, 0x55, 0x88, 0x69, 0xfe, 0xe4, 0x97, 0x2d, 0x98, 0x4d, 0x8a, - 0xa9, 0x56, 0xf7, 0x73, 0x68, 0x24, 0xed, 0x27, 0x9f, 0x2c, 0x0f, 0x31, 0x2d, 0x82, 0xfd, 0xfb, - 0x63, 0xb2, 0x4b, 0xcf, 0x23, 0x18, 0x86, 0xdc, 0x83, 0x72, 0xd4, 0x09, 0x45, 0xa1, 0xfc, 0xda, - 0x11, 0x0f, 0xad, 0x9b, 0x6b, 0x0d, 0xe1, 0x02, 0x12, 0xeb, 0x95, 0xb2, 0x84, 0xe9, 0xc7, 0x8a, - 0x17, 0x67, 0xdc, 0xec, 0x49, 0xc6, 0xb9, 0x9c, 0x96, 0x37, 0x97, 0x37, 0xd2, 0x8c, 0x65, 0x09, - 0x63, 0xac, 0x78, 0xd9, 0xbf, 0x6e, 0x41, 0xf9, 0x86, 0xaf, 0xd6, 0x91, 0x9f, 0xc9, 0xc1, 0x16, - 0xa5, 0x55, 0x56, 0xad, 0xb4, 0xc4, 0xa7, 0xa0, 0x57, 0x12, 0x96, 0xa8, 0xc7, 0x0c, 0xda, 0x8b, - 0x3c, 0xd1, 0x1f, 0x23, 0x75, 0xc3, 0xdf, 0x1a, 0x6a, 0x3e, 0xfe, 0x95, 0x22, 0x4c, 0xbf, 0xe6, - 0xec, 0x53, 0x2f, 0x72, 0x4e, 0xbf, 0x49, 0xbc, 0x08, 0x15, 0xa7, 0xc7, 0xef, 0x32, 0x8d, 0x63, - 0x48, 0x6c, 0xdc, 0x89, 0x41, 0x68, 0xe2, 0xc5, 0x0b, 0x9a, 0x88, 0x4c, 0xc9, 0x5a, 0x8a, 0x96, - 0x53, 0x70, 0x1c, 0xa8, 0x41, 0x6e, 0x00, 0x91, 0xd1, 0xdc, 0xb5, 0x66, 0xd3, 0xef, 0x7b, 0x62, - 0x49, 0x13, 0x76, 0x1f, 0x7d, 0x1e, 0x5e, 0x1f, 0xc0, 0xc0, 0x8c, 0x5a, 0xe4, 0xb3, 0x30, 0xdf, - 0xe4, 0x94, 0xe5, 0xe9, 0xc8, 0xa4, 0x28, 0x4e, 0xc8, 0x3a, 0xd6, 0x63, 0x79, 0x08, 0x1e, 0x0e, - 0xa5, 0xc0, 0x24, 0x0d, 0x23, 0x3f, 0x70, 0xda, 0xd4, 0xa4, 0x3b, 0x91, 0x94, 0xb4, 0x31, 0x80, - 0x81, 0x19, 0xb5, 0xc8, 0x17, 0xa1, 0x1c, 0xed, 0x04, 0x34, 0xdc, 0xf1, 0x3b, 0x2d, 0xe9, 0x7b, - 0x32, 0xa2, 0x31, 0x50, 0xf6, 0xfe, 0xa6, 0xa2, 0x6a, 0x0c, 0x6f, 0x55, 0x84, 0x31, 0x4f, 0x12, - 0xc0, 0x44, 0xd8, 0xf4, 0x7b, 0x34, 0x94, 0xa7, 0x8a, 0x1b, 0xb9, 0x70, 0xe7, 0xc6, 0x2d, 0xc3, - 0x0c, 0xc9, 0x39, 0xa0, 0xe4, 0x64, 0xff, 0xee, 0x18, 0x4c, 0x99, 0x88, 0x27, 0x58, 0x9b, 0xbe, - 0x62, 0xc1, 0x54, 0xd3, 0xf7, 0xa2, 0xc0, 0xef, 0xc4, 0x59, 0x0a, 0x46, 0xd7, 0x28, 0x18, 0xa9, - 0x15, 0x1a, 0x39, 0x6e, 0xc7, 0xb0, 0xd6, 0x19, 0x6c, 0x30, 0xc1, 0x94, 0x7c, 0xc3, 0x82, 0xd9, - 0xd8, 0x55, 0x31, 0xb6, 0xf5, 0xe5, 0x2a, 0x88, 0x5e, 0xea, 0xaf, 0x26, 0x39, 0x61, 0x9a, 0xb5, - 0xbd, 0x05, 0x73, 0xe9, 0xde, 0x66, 0x4d, 0xd9, 0x73, 0xe4, 0x5c, 0x2f, 0xc4, 0x4d, 0xb9, 0xe1, - 0x84, 0x21, 0x72, 0x08, 0x79, 0x16, 0x4a, 0x5d, 0x27, 0x68, 0xbb, 0x9e, 0xd3, 0xe1, 0xad, 0x58, - 0x30, 0x16, 0x24, 0x59, 0x8e, 0x1a, 0xc3, 0xfe, 0x18, 0x4c, 0xad, 0x3b, 0x5e, 0x9b, 0xb6, 0xe4, - 0x3a, 0x7c, 0x7c, 0x38, 0xe6, 0x9f, 0x8c, 0x43, 0xc5, 0x38, 0x3e, 0x9e, 0xff, 0x39, 0x2b, 0x91, - 0x7d, 0xa7, 0x90, 0x63, 0xf6, 0x9d, 0x4f, 0x03, 0x6c, 0xbb, 0x9e, 0x1b, 0xee, 0x9c, 0x31, 0xaf, - 0x0f, 0xbf, 0x9b, 0xbf, 0xa6, 0x29, 0xa0, 0x41, 0x2d, 0xbe, 0x00, 0x2d, 0x1e, 0x91, 0x22, 0xef, - 0x5d, 0xcb, 0xd8, 0x6e, 0x26, 0xf2, 0x70, 0xf8, 0x30, 0x3a, 0x66, 0x51, 0x6d, 0x3f, 0xe2, 0x6e, - 0xea, 0xa8, 0x5d, 0x69, 0x13, 0x4a, 0x01, 0x0d, 0xfb, 0x5d, 0x7a, 0xa6, 0x0c, 0x3c, 0xdc, 0xf5, - 0x06, 0x65, 0x7d, 0xd4, 0x94, 0x16, 0x5e, 0x86, 0xe9, 0x84, 0x08, 0xa7, 0xba, 0x61, 0xf2, 0x21, - 0xd3, 0x46, 0x71, 0x96, 0xfb, 0x26, 0xd6, 0x17, 0x1d, 0x23, 0xf3, 0x8e, 0xee, 0x0b, 0xe1, 0x60, - 0x25, 0x60, 0xf6, 0x8f, 0x27, 0x40, 0xfa, 0x30, 0x9c, 0x60, 0xb9, 0x32, 0x6f, 0x2e, 0xc7, 0xce, - 0x70, 0x73, 0x79, 0x03, 0xa6, 0x5c, 0xcf, 0x8d, 0x5c, 0xa7, 0xc3, 0xed, 0x4f, 0x72, 0x3b, 0x55, - 0x1e, 0xe8, 0x53, 0xab, 0x06, 0x2c, 0x83, 0x4e, 0xa2, 0x2e, 0x79, 0x1d, 0x8a, 0x7c, 0xbf, 0x91, - 0x03, 0xf8, 0xf4, 0x8e, 0x16, 0xdc, 0xc7, 0x46, 0x84, 0xa5, 0x09, 0x4a, 0xfc, 0xf0, 0x21, 0x52, - 0x0f, 0xe9, 0xe3, 0xb7, 0x1c, 0xc7, 0xf1, 0xe1, 0x23, 0x05, 0xc7, 0x81, 0x1a, 0x8c, 0xca, 0xb6, - 0xe3, 0x76, 0xfa, 0x01, 0x8d, 0xa9, 0x4c, 0x24, 0xa9, 0x5c, 0x4b, 0xc1, 0x71, 0xa0, 0x06, 0xd9, - 0x86, 0x29, 0x59, 0x26, 0xdc, 0xe6, 0x26, 0xcf, 0xf8, 0x95, 0xdc, 0x3d, 0xf2, 0x9a, 0x41, 0x09, - 0x13, 0x74, 0x49, 0x1f, 0x2e, 0xb8, 0x5e, 0xd3, 0xf7, 0x9a, 0x9d, 0x7e, 0xe8, 0xee, 0xd1, 0x38, - 0x26, 0xec, 0x2c, 0xcc, 0x2e, 0x1f, 0x1e, 0x54, 0x2f, 0xac, 0xa6, 0xc9, 0xe1, 0x20, 0x07, 0xf2, - 0x25, 0x0b, 0x2e, 0x37, 0x7d, 0x2f, 0xe4, 0xa9, 0x2b, 0xf6, 0xe8, 0xd5, 0x20, 0xf0, 0x03, 0xc1, - 0xbb, 0x7c, 0x46, 0xde, 0xdc, 0xec, 0xb9, 0x9c, 0x45, 0x12, 0xb3, 0x39, 0x91, 0xb7, 0xa0, 0xd4, - 0x0b, 0xfc, 0x3d, 0xb7, 0x45, 0x03, 0xe9, 0x82, 0xb9, 0x96, 0x47, 0x3e, 0x9f, 0x0d, 0x49, 0x33, - 0x5e, 0x7a, 0x54, 0x09, 0x6a, 0x7e, 0xf6, 0xff, 0xa9, 0xc0, 0x4c, 0x12, 0x9d, 0xfc, 0x1c, 0x40, - 0x2f, 0xf0, 0xbb, 0x34, 0xda, 0xa1, 0x3a, 0xb6, 0xe7, 0xe6, 0xa8, 0x19, 0x5b, 0x14, 0x3d, 0xe5, - 0xb6, 0xc4, 0x96, 0x8b, 0xb8, 0x14, 0x0d, 0x8e, 0x24, 0x80, 0xc9, 0x5d, 0xb1, 0xed, 0x4a, 0x2d, - 0xe4, 0xb5, 0x5c, 0x74, 0x26, 0xc9, 0x99, 0x07, 0xa5, 0xc8, 0x22, 0x54, 0x8c, 0xc8, 0x16, 0x14, - 0xee, 0xd1, 0xad, 0x7c, 0xd2, 0x05, 0xdc, 0xa1, 0xf2, 0x34, 0x53, 0x9f, 0x3c, 0x3c, 0xa8, 0x16, - 0xee, 0xd0, 0x2d, 0x64, 0xc4, 0xd9, 0x77, 0xb5, 0x84, 0xef, 0x82, 0x5c, 0x2a, 0x5e, 0xcb, 0xd1, - 0x11, 0x42, 0x7c, 0x97, 0x2c, 0x42, 0xc5, 0x88, 0xbc, 0x05, 0xe5, 0x7b, 0xce, 0x1e, 0xdd, 0x0e, - 0x7c, 0x2f, 0x92, 0xbe, 0x72, 0x23, 0x86, 0x7b, 0xdc, 0x51, 0xe4, 0x24, 0x5f, 0xbe, 0xbd, 0xeb, - 0x42, 0x8c, 0xd9, 0x91, 0x3d, 0x28, 0x79, 0xf4, 0x1e, 0xd2, 0x8e, 0xdb, 0xcc, 0x27, 0xbc, 0xe2, - 0xa6, 0xa4, 0x26, 0x39, 0xf3, 0x7d, 0x4f, 0x95, 0xa1, 0xe6, 0xc5, 0xfa, 0xf2, 0xae, 0xbf, 0x25, - 0x17, 0xaa, 0x11, 0xfb, 0x52, 0x9f, 0x4c, 0x45, 0x5f, 0xde, 0xf0, 0xb7, 0x90, 0x11, 0x67, 0x73, - 0xa4, 0xa9, 0x1d, 0xb5, 0xe4, 0x32, 0x75, 0x33, 0x5f, 0x07, 0x35, 0x31, 0x47, 0xe2, 0x52, 0x34, - 0x38, 0xb2, 0xb6, 0x6d, 0x4b, 0x63, 0xa5, 0x5c, 0xa8, 0x46, 0x6c, 0xdb, 0xa4, 0xe9, 0x53, 0xb4, - 0xad, 0x2a, 0x43, 0xcd, 0x8b, 0xf1, 0x75, 0xa5, 0xe5, 0x2f, 0x9f, 0xa5, 0x2a, 0x69, 0x47, 0x14, - 0x7c, 0x55, 0x19, 0x6a, 0x5e, 0xac, 0xbd, 0xc3, 0xdd, 0xfd, 0x7b, 0x4e, 0x67, 0xd7, 0xf5, 0xda, - 0x32, 0x56, 0x75, 0xd4, 0x34, 0xdc, 0xbb, 0xfb, 0x77, 0x04, 0x3d, 0xb3, 0xbd, 0xe3, 0x52, 0x34, - 0x38, 0x92, 0xbf, 0x6f, 0xc1, 0x44, 0xaf, 0xd3, 0x6f, 0xbb, 0xde, 0xfc, 0x54, 0x1e, 0x4e, 0x4c, - 0xc9, 0x25, 0x77, 0x71, 0x83, 0x93, 0x16, 0x8a, 0xe2, 0x4f, 0x6a, 0xbf, 0x4b, 0x5e, 0xf8, 0xf5, - 0x3f, 0xae, 0xce, 0x53, 0xaf, 0xe9, 0xb7, 0x5c, 0xaf, 0xbd, 0x74, 0x37, 0xf4, 0xbd, 0x45, 0x74, - 0xee, 0x29, 0x1d, 0x5d, 0xca, 0xb4, 0xf0, 0x09, 0xa8, 0x18, 0x24, 0x8e, 0x53, 0xf4, 0xa6, 0x4c, - 0x45, 0xef, 0xd7, 0x27, 0x60, 0xca, 0x4c, 0xbe, 0x79, 0x02, 0xed, 0x4b, 0x9f, 0x38, 0xc6, 0x4e, - 0x73, 0xe2, 0x60, 0x47, 0x4c, 0xe3, 0x82, 0x4b, 0x99, 0xb7, 0x56, 0x73, 0x53, 0xb8, 0xe3, 0x23, - 0xa6, 0x51, 0x18, 0x62, 0x82, 0xe9, 0x29, 0x7c, 0x5e, 0x98, 0xda, 0x2a, 0x14, 0xbb, 0x62, 0x52, - 0x6d, 0x4d, 0xa8, 0x6a, 0xcf, 0x01, 0xc4, 0x59, 0x22, 0xe5, 0xc5, 0xa7, 0xd6, 0x87, 0x8d, 0xec, - 0x95, 0x06, 0x16, 0x79, 0x0a, 0x26, 0x98, 0xea, 0x43, 0x5b, 0x32, 0x94, 0x5e, 0x9f, 0xe3, 0xaf, - 0xf1, 0x52, 0x94, 0x50, 0xf2, 0x12, 0xd3, 0x52, 0x63, 0x85, 0x45, 0x46, 0xc8, 0x5f, 0x8a, 0xb5, - 0xd4, 0x18, 0x86, 0x09, 0x4c, 0x26, 0x3a, 0x65, 0xfa, 0x05, 0x5f, 0x1b, 0x0c, 0xd1, 0xb9, 0xd2, - 0x81, 0x02, 0xc6, 0xed, 0x4a, 0x29, 0x7d, 0x84, 0xcf, 0xe9, 0xa2, 0x61, 0x57, 0x4a, 0xc1, 0x71, - 0xa0, 0x06, 0xfb, 0x18, 0x79, 0x67, 0x5b, 0x11, 0x0e, 0xd3, 0x43, 0x6e, 0x5b, 0xbf, 0x6a, 0x9e, - 0xb5, 0x72, 0x9c, 0x43, 0x62, 0xd4, 0x9e, 0xfc, 0xb0, 0x35, 0xda, 0xb1, 0xe8, 0x73, 0x30, 0x93, - 0xdc, 0x85, 0x72, 0xbf, 0xf9, 0xf8, 0xda, 0x38, 0x5c, 0xbc, 0xd9, 0x76, 0xbd, 0x74, 0xa2, 0xb3, - 0xac, 0x57, 0x0d, 0xac, 0x53, 0xbf, 0x6a, 0xa0, 0x63, 0xf2, 0xe4, 0x9b, 0x01, 0xd9, 0x31, 0x79, - 0xea, 0x01, 0x87, 0x24, 0x2e, 0xf9, 0x23, 0x0b, 0x1e, 0x73, 0x5a, 0xe2, 0x5c, 0xe0, 0x74, 0x64, - 0xa9, 0x91, 0x8c, 0x5b, 0xce, 0xe8, 0x70, 0xc4, 0x5d, 0x7e, 0xf0, 0xe3, 0x17, 0x6b, 0x47, 0x70, - 0x15, 0x3d, 0xfe, 0x13, 0xf2, 0x0b, 0x1e, 0x3b, 0x0a, 0x15, 0x8f, 0x14, 0x9f, 0xfc, 0x35, 0x98, - 0x4d, 0x7c, 0xb0, 0xb4, 0x84, 0x97, 0xc5, 0x85, 0x45, 0x23, 0x09, 0xc2, 0x34, 0xee, 0xc2, 0x2d, - 0xf8, 0xf0, 0xb1, 0x72, 0x9e, 0x6a, 0xb0, 0x7d, 0xcf, 0x82, 0x29, 0x33, 0x27, 0x11, 0x79, 0x16, - 0x4a, 0x91, 0xbf, 0x4b, 0xbd, 0xdb, 0x81, 0x72, 0xd8, 0xd5, 0x03, 0x7d, 0x93, 0x97, 0xe3, 0x1a, - 0x6a, 0x0c, 0x86, 0xdd, 0xec, 0xb8, 0xd4, 0x8b, 0x56, 0x5b, 0xb2, 0x9b, 0x35, 0xf6, 0xb2, 0x28, - 0x5f, 0x41, 0x8d, 0x21, 0x7c, 0xec, 0xd8, 0xef, 0x06, 0x6d, 0x06, 0x54, 0xb9, 0xf7, 0x1b, 0x3e, - 0x76, 0x31, 0x0c, 0x13, 0x98, 0xc4, 0xd6, 0x26, 0xce, 0xf1, 0xf8, 0x5e, 0x23, 0x65, 0x92, 0xfc, - 0x2d, 0x0b, 0xca, 0xc2, 0x44, 0x8f, 0x74, 0x3b, 0xe5, 0x62, 0x9b, 0x32, 0x22, 0xd4, 0x36, 0x56, - 0xb3, 0x5c, 0x6c, 0x9f, 0x80, 0xf1, 0x5d, 0xd7, 0x53, 0x5f, 0xa2, 0xb7, 0xa5, 0xd7, 0x5c, 0xaf, - 0x85, 0x1c, 0xa2, 0x37, 0xae, 0xc2, 0xd0, 0x8d, 0x6b, 0x09, 0xca, 0xda, 0xf1, 0x44, 0x2e, 0xff, - 0xda, 0x7a, 0xab, 0x1d, 0x55, 0x30, 0xc6, 0xb1, 0x7f, 0xd5, 0x82, 0x19, 0x1e, 0xc3, 0x1d, 0x9f, - 0x87, 0x5f, 0xd4, 0xbe, 0x60, 0x42, 0xee, 0xc7, 0x93, 0xbe, 0x60, 0xef, 0x1d, 0x54, 0x2b, 0x22, - 0xea, 0x3b, 0xe9, 0x1a, 0xf6, 0x19, 0x69, 0x44, 0xe3, 0x1e, 0x6b, 0x63, 0xa7, 0xb6, 0xf1, 0xc4, - 0x62, 0x2a, 0x22, 0x18, 0xd3, 0xb3, 0xdf, 0x86, 0x29, 0x33, 0x18, 0x8b, 0xbc, 0x08, 0x95, 0x9e, - 0xeb, 0xb5, 0x93, 0x41, 0xbb, 0xfa, 0xa2, 0x61, 0x23, 0x06, 0xa1, 0x89, 0xc7, 0xab, 0xf9, 0x71, - 0xb5, 0xd4, 0xfd, 0xc4, 0x86, 0x6f, 0x56, 0x8b, 0xff, 0xf0, 0x87, 0x10, 0x32, 0x82, 0xfe, 0x72, - 0x7f, 0x08, 0x21, 0x83, 0xc7, 0xfb, 0xf7, 0x10, 0x42, 0x96, 0x30, 0x7f, 0xbe, 0x1e, 0x42, 0xf8, - 0x69, 0x38, 0x6d, 0x4e, 0x54, 0xb6, 0xd7, 0xdf, 0x33, 0x13, 0x2b, 0xe8, 0x16, 0x97, 0x99, 0x15, - 0x24, 0xd4, 0xfe, 0x9d, 0x02, 0xcc, 0xa5, 0x8f, 0xfc, 0x79, 0x7b, 0x53, 0x90, 0x6f, 0x58, 0x30, - 0xe3, 0x24, 0xf2, 0xcf, 0xe5, 0xf4, 0xaa, 0x52, 0x82, 0xa6, 0x91, 0xff, 0x2c, 0x51, 0x8e, 0x29, - 0xde, 0xe4, 0x2f, 0xc1, 0x64, 0xe4, 0x76, 0xa9, 0xdf, 0x17, 0x86, 0xc0, 0x82, 0x38, 0x90, 0x6f, - 0x8a, 0x22, 0x54, 0x30, 0xb6, 0x28, 0xbb, 0x5c, 0x83, 0x0a, 0xa8, 0xf4, 0x0c, 0x9e, 0x8b, 0x2d, - 0x97, 0xa2, 0x1c, 0x35, 0x06, 0xb9, 0x0f, 0x93, 0xc2, 0xef, 0x42, 0x39, 0xd8, 0xac, 0xe7, 0x64, - 0x9a, 0x10, 0xae, 0x1d, 0x71, 0x17, 0x88, 0xff, 0x21, 0x2a, 0x76, 0xf6, 0xc7, 0xe0, 0x94, 0x49, - 0x62, 0xed, 0xab, 0x40, 0xd0, 0xef, 0x74, 0xb6, 0x9c, 0xe6, 0xee, 0x1d, 0xd7, 0x6b, 0xf9, 0xf7, - 0xf8, 0x52, 0xb4, 0x04, 0xe5, 0x40, 0x86, 0xcc, 0x86, 0x72, 0xd4, 0xe8, 0xb5, 0x4c, 0xc5, 0xd2, - 0x86, 0x18, 0xe3, 0xd8, 0xbf, 0x3f, 0x06, 0x93, 0x32, 0xbe, 0xfb, 0x01, 0x44, 0x26, 0xec, 0x26, - 0xee, 0x83, 0x57, 0x73, 0x09, 0x4b, 0x1f, 0x1a, 0x96, 0x10, 0xa6, 0xc2, 0x12, 0x5e, 0xcb, 0x87, - 0xdd, 0xd1, 0x31, 0x09, 0xdf, 0x2d, 0xc2, 0x6c, 0x2a, 0x5e, 0x3e, 0x95, 0x4f, 0xda, 0x7a, 0x5f, - 0xf2, 0x49, 0x93, 0x30, 0x91, 0x53, 0x3c, 0x3f, 0x3f, 0xc6, 0xbf, 0x48, 0x2f, 0x9e, 0x97, 0x87, - 0x69, 0xf1, 0x83, 0xe3, 0x61, 0xfa, 0x5f, 0x2c, 0x78, 0x64, 0x68, 0xd6, 0x07, 0x9e, 0x34, 0x2c, - 0x48, 0x42, 0xe5, 0x7a, 0x91, 0x73, 0x6e, 0x1b, 0x7d, 0x77, 0x9c, 0xce, 0xf3, 0x94, 0x66, 0x4f, - 0x5e, 0x80, 0x29, 0xae, 0x9f, 0xb1, 0x95, 0x33, 0xa2, 0x3d, 0x79, 0xf5, 0xc5, 0x2f, 0x41, 0x1a, - 0x46, 0x39, 0x26, 0xb0, 0xec, 0xef, 0x58, 0x30, 0x3f, 0x2c, 0x85, 0xd4, 0x09, 0x0c, 0x33, 0x7f, - 0x35, 0x15, 0xd9, 0x51, 0x1d, 0x88, 0xec, 0x48, 0x99, 0x66, 0x54, 0x10, 0x87, 0x61, 0x15, 0x29, - 0x1c, 0x13, 0xb8, 0xf0, 0x07, 0x05, 0x98, 0x93, 0x22, 0xc6, 0x4a, 0xf1, 0x4b, 0x89, 0x78, 0x94, - 0x9f, 0x48, 0xc5, 0xa3, 0x5c, 0x4a, 0xe3, 0xff, 0x45, 0x30, 0xca, 0x07, 0x2b, 0x18, 0xe5, 0xeb, - 0x45, 0xb8, 0x9c, 0x99, 0x49, 0x8a, 0x7c, 0x2d, 0x63, 0xa7, 0xb8, 0x93, 0x73, 0xca, 0x2a, 0x1d, - 0xb7, 0x7a, 0xbe, 0x11, 0x1c, 0xbf, 0x6c, 0x46, 0x4e, 0x88, 0xd5, 0x7f, 0xfb, 0x1c, 0x92, 0x6f, - 0x9d, 0x36, 0x88, 0xe2, 0xc1, 0xbe, 0xb7, 0xf5, 0xe7, 0x60, 0xa9, 0xff, 0x7a, 0x01, 0x9e, 0x3e, - 0x69, 0xcb, 0x7e, 0x40, 0xa3, 0x0e, 0xc3, 0x44, 0xd4, 0xe1, 0x03, 0x52, 0x6d, 0xce, 0x25, 0x00, - 0xf1, 0x1f, 0x8e, 0xeb, 0x7d, 0x77, 0x70, 0xc2, 0x9e, 0xc8, 0x51, 0x63, 0x92, 0xa9, 0xbe, 0x2a, - 0x2b, 0x79, 0xbc, 0x37, 0x4c, 0x36, 0x44, 0xf1, 0x7b, 0x07, 0xd5, 0x0b, 0x71, 0x82, 0x17, 0x59, - 0x88, 0xaa, 0x12, 0x79, 0x1a, 0x4a, 0x81, 0x80, 0xaa, 0x38, 0x2b, 0xe9, 0xed, 0x22, 0xca, 0x50, - 0x43, 0xc9, 0x17, 0x8d, 0xb3, 0xc2, 0xf8, 0x79, 0xe5, 0x31, 0x3a, 0xca, 0x89, 0xe7, 0x4d, 0x28, - 0x85, 0x2a, 0x75, 0xb6, 0x98, 0x4e, 0xcf, 0x9f, 0x30, 0x7c, 0xcf, 0xd9, 0xa2, 0x1d, 0x95, 0x47, - 0x5b, 0x7c, 0x9f, 0xce, 0xb2, 0xad, 0x49, 0x12, 0x5b, 0x9f, 0xbd, 0xc5, 0x25, 0x03, 0x0c, 0x9e, - 0xbb, 0x49, 0x04, 0x93, 0xf2, 0xfd, 0x5c, 0x79, 0xfb, 0xb9, 0x9e, 0x53, 0x1c, 0x8c, 0xf4, 0x92, - 0xe6, 0x47, 0x5a, 0x65, 0x03, 0x52, 0xac, 0xec, 0x1f, 0x58, 0x50, 0x91, 0x63, 0xe4, 0x01, 0xc4, - 0x31, 0xde, 0x4d, 0xc6, 0x31, 0x5e, 0xcd, 0x65, 0x09, 0x1f, 0x12, 0xc4, 0x78, 0x17, 0xa6, 0xcc, - 0x9c, 0x8e, 0xe4, 0xd3, 0xc6, 0x16, 0x64, 0x8d, 0x92, 0x25, 0x4d, 0x6d, 0x52, 0xf1, 0xf6, 0x64, - 0xff, 0x46, 0x59, 0xb7, 0x22, 0x3f, 0x38, 0x9b, 0x23, 0xdf, 0x3a, 0x72, 0xe4, 0x9b, 0x03, 0x6f, - 0x2c, 0xff, 0x81, 0xf7, 0x3a, 0x94, 0xd4, 0xb2, 0x28, 0xb5, 0xa9, 0x27, 0x4d, 0xb7, 0x69, 0xa6, - 0x92, 0x31, 0x62, 0xc6, 0x74, 0xe1, 0x07, 0xe0, 0xd8, 0x32, 0xad, 0x96, 0x6b, 0x4d, 0x86, 0xbc, - 0x05, 0x95, 0x7b, 0x7e, 0xb0, 0xdb, 0xf1, 0x1d, 0xfe, 0x5e, 0x01, 0xe4, 0x71, 0x53, 0xaf, 0xad, - 0xcb, 0x22, 0x76, 0xe5, 0x4e, 0x4c, 0x1f, 0x4d, 0x66, 0xa4, 0x06, 0xb3, 0x5d, 0xd7, 0x43, 0xea, - 0xb4, 0x74, 0xb8, 0xe2, 0xb8, 0xc8, 0x15, 0xae, 0x74, 0xfb, 0xf5, 0x24, 0x18, 0xd3, 0xf8, 0xdc, - 0xf2, 0x14, 0x24, 0x4c, 0x1d, 0x32, 0x21, 0xf0, 0xc6, 0xe8, 0x83, 0x31, 0x69, 0x3e, 0x11, 0xc1, - 0x1b, 0xc9, 0x72, 0x4c, 0xf1, 0x26, 0x5f, 0x80, 0x52, 0xa8, 0x5e, 0xa6, 0x2c, 0xe6, 0x78, 0xea, - 0xd1, 0xaf, 0x53, 0xea, 0xae, 0xd4, 0xcf, 0x53, 0x6a, 0x86, 0x64, 0x0d, 0x2e, 0x29, 0xdb, 0x4d, - 0xe2, 0x91, 0xbd, 0x89, 0x38, 0xbf, 0x17, 0x66, 0xc0, 0x31, 0xb3, 0x16, 0xd3, 0x6d, 0x79, 0xae, - 0x54, 0x71, 0x33, 0x6a, 0x5c, 0x26, 0xf2, 0xf9, 0xd7, 0x42, 0x09, 0x3d, 0x2a, 0x1a, 0xb7, 0x34, - 0x42, 0x34, 0x6e, 0x03, 0x2e, 0xa7, 0x41, 0x3c, 0x71, 0x1b, 0xcf, 0x15, 0x67, 0x6c, 0xa1, 0x1b, - 0x59, 0x48, 0x98, 0x5d, 0x97, 0xdc, 0x81, 0x72, 0x40, 0xf9, 0x29, 0xaf, 0xa6, 0x9c, 0xca, 0x4e, - 0xed, 0x3e, 0x8b, 0x8a, 0x00, 0xc6, 0xb4, 0x58, 0xbf, 0x3b, 0xc9, 0xec, 0xdd, 0xaf, 0xe7, 0xf8, - 0x74, 0xb5, 0xec, 0xfb, 0x21, 0x09, 0x15, 0xed, 0x7f, 0x3b, 0x0b, 0xd3, 0x09, 0x03, 0x14, 0x79, - 0x12, 0x8a, 0x3c, 0x93, 0x1d, 0x5f, 0xad, 0x4a, 0xf1, 0x8a, 0x2a, 0x1a, 0x47, 0xc0, 0xc8, 0x2f, - 0x5a, 0x30, 0xdb, 0x4b, 0x5c, 0xa8, 0xa8, 0x85, 0x7c, 0x44, 0xab, 0x6d, 0xf2, 0x96, 0xc6, 0x78, - 0xf7, 0x22, 0xc9, 0x0c, 0xd3, 0xdc, 0xd9, 0x7a, 0x20, 0x7d, 0xd0, 0x3b, 0x34, 0xe0, 0xd8, 0x52, - 0xd1, 0xd3, 0x24, 0x96, 0x93, 0x60, 0x4c, 0xe3, 0xb3, 0x1e, 0xe6, 0x5f, 0x37, 0xca, 0xf3, 0xa4, - 0x35, 0x45, 0x00, 0x63, 0x5a, 0xe4, 0x15, 0x98, 0x91, 0x49, 0x9b, 0x37, 0xfc, 0xd6, 0x75, 0x27, - 0xdc, 0x91, 0x47, 0x3e, 0x7d, 0x44, 0x5d, 0x4e, 0x40, 0x31, 0x85, 0xcd, 0xbf, 0x2d, 0xce, 0x8c, - 0xcd, 0x09, 0x4c, 0x24, 0x9f, 0x05, 0x59, 0x4e, 0x82, 0x31, 0x8d, 0x4f, 0x9e, 0x35, 0xb6, 0x21, - 0xe1, 0xad, 0xa0, 0x57, 0x83, 0x8c, 0xad, 0xa8, 0x06, 0xb3, 0x7d, 0x7e, 0x42, 0x6e, 0x29, 0xa0, - 0x9c, 0x8f, 0x9a, 0xe1, 0xed, 0x24, 0x18, 0xd3, 0xf8, 0xe4, 0x65, 0x98, 0x0e, 0xd8, 0x62, 0xab, - 0x09, 0x08, 0x17, 0x06, 0x7d, 0x43, 0x8d, 0x26, 0x10, 0x93, 0xb8, 0xe4, 0x55, 0xb8, 0x10, 0xe7, - 0x38, 0x55, 0x04, 0x84, 0x4f, 0x83, 0x4e, 0xb8, 0x57, 0x4b, 0x23, 0xe0, 0x60, 0x1d, 0xf2, 0x37, - 0x60, 0xce, 0x68, 0x89, 0x55, 0xaf, 0x45, 0xef, 0xcb, 0x3c, 0x94, 0xfc, 0x99, 0xab, 0xe5, 0x14, - 0x0c, 0x07, 0xb0, 0xc9, 0x27, 0x61, 0xa6, 0xe9, 0x77, 0x3a, 0x7c, 0x8d, 0x13, 0x4f, 0x52, 0x88, - 0x84, 0x93, 0x22, 0x35, 0x67, 0x02, 0x82, 0x29, 0x4c, 0x72, 0x03, 0x88, 0xbf, 0xc5, 0xd4, 0x2b, - 0xda, 0x7a, 0x95, 0x7a, 0x54, 0x6a, 0x1c, 0xd3, 0xc9, 0x08, 0x98, 0x5b, 0x03, 0x18, 0x98, 0x51, - 0x8b, 0xe7, 0xeb, 0x33, 0x22, 0x86, 0x67, 0xf2, 0x78, 0x4b, 0x33, 0x6d, 0xcf, 0x39, 0x36, 0x5c, - 0x38, 0x80, 0x09, 0x11, 0x90, 0x94, 0x4f, 0xe6, 0x49, 0x33, 0x3b, 0x7d, 0xbc, 0x47, 0x88, 0x52, - 0x94, 0x9c, 0xc8, 0xcf, 0x41, 0x79, 0x4b, 0x3d, 0x55, 0xc2, 0xd3, 0x4d, 0x8e, 0xbc, 0x2f, 0xa6, - 0x5e, 0xdd, 0x89, 0xed, 0x15, 0x1a, 0x80, 0x31, 0x4b, 0xf2, 0x14, 0x54, 0xae, 0x6f, 0xd4, 0xf4, - 0x28, 0xbc, 0xc0, 0x7b, 0x7f, 0x9c, 0x55, 0x41, 0x13, 0xc0, 0x66, 0x98, 0x56, 0xdf, 0x48, 0xf2, - 0x9a, 0x3e, 0x43, 0x1b, 0x63, 0xd8, 0xdc, 0xef, 0x00, 0x1b, 0xf3, 0x17, 0x53, 0xd8, 0xb2, 0x1c, - 0x35, 0x06, 0x79, 0x13, 0x2a, 0x72, 0xbf, 0xe0, 0x6b, 0xd3, 0xa5, 0xb3, 0x45, 0xa3, 0x63, 0x4c, - 0x02, 0x4d, 0x7a, 0xfc, 0xc2, 0x98, 0xbf, 0xe0, 0x40, 0xaf, 0xf5, 0x3b, 0x9d, 0xf9, 0xcb, 0x7c, - 0xdd, 0x8c, 0x2f, 0x8c, 0x63, 0x10, 0x9a, 0x78, 0xe4, 0x79, 0xe5, 0x3f, 0xf6, 0x50, 0xe2, 0x06, - 0x5d, 0xfb, 0x8f, 0x69, 0xa5, 0x7b, 0x48, 0xc0, 0xca, 0xc3, 0xc7, 0x38, 0x6e, 0x6d, 0xc1, 0x82, - 0xd2, 0xf8, 0x06, 0x27, 0xc9, 0xfc, 0x7c, 0xc2, 0x76, 0xb4, 0x70, 0x67, 0x28, 0x26, 0x1e, 0x41, - 0x85, 0x6c, 0x41, 0xc1, 0xe9, 0x6c, 0xcd, 0x3f, 0x92, 0x87, 0xea, 0x5a, 0x5b, 0xab, 0xcb, 0x11, - 0xc5, 0x9d, 0x4c, 0x6b, 0x6b, 0x75, 0x64, 0xc4, 0x89, 0x0b, 0xe3, 0x4e, 0x67, 0x2b, 0x9c, 0x5f, - 0xe0, 0x73, 0x36, 0x37, 0x26, 0xb1, 0xf1, 0x60, 0xad, 0x1e, 0x22, 0x67, 0x61, 0x7f, 0x69, 0x4c, - 0xdf, 0x12, 0xe9, 0xe4, 0xdf, 0x6f, 0x9b, 0x13, 0x48, 0x1c, 0x77, 0x6e, 0xe5, 0x36, 0x81, 0xa4, - 0x7a, 0x31, 0x3d, 0x74, 0xfa, 0xf4, 0xf4, 0x92, 0x91, 0x4b, 0xd6, 0xb0, 0x64, 0x62, 0x73, 0x71, - 0x7a, 0x4e, 0x2e, 0x18, 0xf6, 0x97, 0x2b, 0xda, 0x0a, 0x9a, 0xf2, 0xbd, 0x0a, 0xa0, 0xe8, 0x86, - 0x91, 0xeb, 0xe7, 0x18, 0xa4, 0x9d, 0xca, 0x08, 0xce, 0x63, 0x40, 0x38, 0x00, 0x05, 0x2b, 0xc6, - 0xd3, 0x6b, 0xbb, 0xde, 0x7d, 0xf9, 0xf9, 0xaf, 0xe7, 0xee, 0x54, 0x25, 0x78, 0x72, 0x00, 0x0a, - 0x56, 0xe4, 0xae, 0x18, 0xd4, 0x85, 0x3c, 0xfa, 0xba, 0xb6, 0x56, 0x4f, 0xf1, 0x4b, 0x0e, 0xee, - 0xbb, 0x50, 0x08, 0xbb, 0xae, 0x54, 0x97, 0x46, 0xe4, 0xd5, 0x58, 0x5f, 0xcd, 0xe2, 0xd5, 0x58, - 0x5f, 0x45, 0xc6, 0x84, 0x7c, 0xd5, 0x02, 0x70, 0xba, 0x5b, 0x4e, 0x18, 0x3a, 0x2d, 0x6d, 0x9d, - 0x19, 0xf1, 0xa5, 0x8f, 0x9a, 0xa6, 0x97, 0x62, 0xcd, 0xdd, 0x88, 0x63, 0x28, 0x1a, 0x9c, 0xc9, - 0x5b, 0x30, 0xe9, 0x88, 0xa7, 0x14, 0xa5, 0x47, 0x7c, 0x3e, 0xef, 0x83, 0xa6, 0x24, 0xe0, 0x66, - 0x1a, 0x09, 0x42, 0xc5, 0x90, 0xf1, 0x8e, 0x02, 0x87, 0x6e, 0xbb, 0xbb, 0xd2, 0x38, 0xd4, 0x18, - 0xf9, 0xb1, 0x0f, 0x46, 0x2c, 0x8b, 0xb7, 0x04, 0xa1, 0x62, 0x48, 0x7e, 0xde, 0x82, 0xe9, 0xae, - 0xe3, 0x39, 0x3a, 0xce, 0x31, 0x9f, 0x68, 0x58, 0x33, 0x72, 0x32, 0xd6, 0x10, 0xd7, 0x4d, 0x46, - 0x98, 0xe4, 0x4b, 0xf6, 0x60, 0xc2, 0xe1, 0x8f, 0xbc, 0xca, 0xa3, 0x18, 0xe6, 0xf1, 0x60, 0x6c, - 0xaa, 0x0d, 0xf8, 0xe2, 0x22, 0x9f, 0x92, 0x95, 0xdc, 0xc8, 0xaf, 0x59, 0x30, 0x29, 0x9c, 0xb5, - 0x99, 0x42, 0xca, 0xbe, 0xfd, 0x73, 0xe7, 0xf0, 0xb2, 0x80, 0x74, 0x24, 0x97, 0xee, 0x47, 0x1f, - 0xd1, 0x9e, 0xa8, 0xa2, 0xf4, 0x48, 0x57, 0x72, 0x25, 0x1d, 0x53, 0x7d, 0xbb, 0xce, 0xfd, 0xc4, - 0x53, 0x2e, 0xa6, 0xea, 0xbb, 0x9e, 0x82, 0xe1, 0x00, 0xf6, 0xc2, 0x27, 0x61, 0xca, 0x94, 0xe3, - 0x54, 0xee, 0xe8, 0x3f, 0x2a, 0x00, 0xf0, 0xae, 0x12, 0xb9, 0x51, 0xba, 0x3c, 0x91, 0xf2, 0x8e, - 0xdf, 0xca, 0xe9, 0x49, 0x49, 0x23, 0xc5, 0x09, 0xc8, 0xac, 0xc9, 0x3b, 0x7e, 0x0b, 0x25, 0x13, - 0xd2, 0x86, 0xf1, 0x9e, 0x13, 0xed, 0xe4, 0x9f, 0x4f, 0xa5, 0x24, 0x82, 0x84, 0xa3, 0x1d, 0xe4, - 0x0c, 0xc8, 0x3b, 0x56, 0xec, 0xd9, 0x53, 0xc8, 0x23, 0x17, 0x6c, 0xdc, 0x66, 0x8b, 0xd2, 0x97, - 0x27, 0x95, 0x12, 0x35, 0xed, 0xe1, 0xb3, 0xf0, 0xae, 0x05, 0x53, 0x26, 0x6a, 0x46, 0x37, 0xfd, - 0xac, 0xd9, 0x4d, 0x79, 0xb6, 0x87, 0xd9, 0xe3, 0xff, 0xcd, 0x02, 0xc0, 0xbe, 0xd7, 0xe8, 0x77, - 0xbb, 0x4c, 0x6d, 0xd7, 0x5e, 0xf7, 0xd6, 0x89, 0xbd, 0xee, 0xc7, 0x4e, 0xe9, 0x75, 0x5f, 0x38, - 0x95, 0xd7, 0xfd, 0xf8, 0xe9, 0xbd, 0xee, 0x8b, 0xc3, 0xbd, 0xee, 0xed, 0x6f, 0x59, 0x70, 0x61, - 0x60, 0xbf, 0x62, 0x9a, 0x74, 0xe0, 0xfb, 0xd1, 0x10, 0x8f, 0x4d, 0x8c, 0x41, 0x68, 0xe2, 0x91, - 0x15, 0x98, 0x93, 0xcf, 0x86, 0x34, 0x7a, 0x1d, 0x37, 0x33, 0xd7, 0xcd, 0x66, 0x0a, 0x8e, 0x03, - 0x35, 0xec, 0xdf, 0xb1, 0xa0, 0x62, 0x44, 0xc8, 0xb3, 0xef, 0xe0, 0x6e, 0xbb, 0x52, 0x8c, 0xf8, - 0xc5, 0x14, 0x7e, 0xd5, 0x25, 0x60, 0xe2, 0x1a, 0xba, 0x6d, 0x24, 0x95, 0x8f, 0xaf, 0xa1, 0x59, - 0x29, 0x4a, 0xa8, 0x48, 0x17, 0x4e, 0x7b, 0xbc, 0xd1, 0x0b, 0x66, 0xba, 0x70, 0xda, 0x43, 0x0e, - 0xe1, 0xec, 0xd8, 0x91, 0x42, 0x7a, 0xe4, 0x1a, 0x0f, 0xb4, 0x38, 0x41, 0x84, 0x02, 0x46, 0x1e, - 0x87, 0x02, 0xf5, 0x5a, 0xd2, 0xfe, 0xa1, 0x9f, 0x50, 0xbd, 0xea, 0xb5, 0x90, 0x95, 0xdb, 0xb7, - 0x60, 0x4a, 0x78, 0x23, 0xbf, 0x46, 0xf7, 0x4f, 0xfc, 0x26, 0x2b, 0x1b, 0xed, 0xa9, 0x37, 0x59, - 0x59, 0x75, 0x56, 0x6e, 0xff, 0x13, 0x0b, 0x52, 0xaf, 0x08, 0x19, 0x37, 0x30, 0xd6, 0xd0, 0x1b, - 0x18, 0xd3, 0x6a, 0x3f, 0x76, 0xa4, 0xd5, 0xfe, 0x06, 0x90, 0x2e, 0x9b, 0x0a, 0xc9, 0x85, 0xb6, - 0x90, 0x7c, 0xda, 0x61, 0x7d, 0x00, 0x03, 0x33, 0x6a, 0xd9, 0xff, 0x58, 0x08, 0x6b, 0xbe, 0x2b, - 0x74, 0x7c, 0x03, 0xf4, 0xa1, 0xc8, 0x49, 0x49, 0xfb, 0xdb, 0x88, 0xb6, 0xeb, 0xc1, 0xbc, 0x56, - 0x71, 0x47, 0xca, 0x29, 0xcf, 0xb9, 0xd9, 0x7f, 0x20, 0x64, 0x35, 0x1e, 0x1e, 0x3a, 0x81, 0xac, - 0xdd, 0xa4, 0xac, 0xd7, 0xf3, 0x5a, 0x2b, 0xb3, 0x65, 0x24, 0x8b, 0x00, 0x3d, 0x1a, 0x34, 0xa9, - 0x17, 0xa9, 0x38, 0xa1, 0xa2, 0x8c, 0x58, 0xd5, 0xa5, 0x68, 0x60, 0xd8, 0xdf, 0x64, 0x13, 0x28, - 0x7e, 0xad, 0x98, 0x3c, 0x9d, 0x76, 0x75, 0x4d, 0x4f, 0x0e, 0xed, 0xe9, 0x6a, 0x44, 0x8f, 0x8c, - 0x1d, 0x13, 0x3d, 0xf2, 0x0c, 0x4c, 0x06, 0x7e, 0x87, 0xd6, 0x02, 0x2f, 0xed, 0xa3, 0x83, 0xac, - 0x18, 0x6f, 0xa2, 0x82, 0xdb, 0xbf, 0x62, 0xc1, 0x5c, 0x3a, 0xbc, 0x2d, 0x77, 0xff, 0x5b, 0x33, - 0x06, 0xbf, 0x70, 0xfa, 0x18, 0x7c, 0xfb, 0x1d, 0x26, 0x64, 0xe4, 0x36, 0x77, 0x5d, 0x4f, 0x84, - 0xad, 0xb3, 0x96, 0x7b, 0x06, 0x26, 0xa9, 0x7c, 0x75, 0x55, 0x98, 0x91, 0xb5, 0x90, 0xea, 0xb1, - 0x55, 0x05, 0x27, 0x35, 0x98, 0x55, 0x97, 0x67, 0xca, 0xf6, 0x2f, 0xd2, 0x6d, 0x68, 0x5b, 0xe3, - 0x4a, 0x12, 0x8c, 0x69, 0x7c, 0xfb, 0x8b, 0x50, 0x31, 0x36, 0x25, 0xbe, 0x7e, 0xdf, 0x77, 0x9a, - 0x51, 0x7a, 0xdd, 0xbb, 0xca, 0x0a, 0x51, 0xc0, 0xf8, 0x15, 0x85, 0x88, 0xbe, 0x49, 0xad, 0x7b, - 0x32, 0xe6, 0x46, 0x42, 0x19, 0xb1, 0x80, 0xb6, 0xe9, 0x7d, 0x95, 0xf3, 0x5f, 0x11, 0x43, 0x56, - 0x88, 0x02, 0x66, 0x3f, 0x0b, 0x25, 0x95, 0x14, 0x89, 0x67, 0x16, 0x51, 0xe6, 0x73, 0x33, 0xb3, - 0x88, 0x1f, 0x44, 0xc8, 0x21, 0xf6, 0x1b, 0x50, 0x52, 0xb9, 0x9b, 0x8e, 0xc7, 0x66, 0x4b, 0x51, - 0xe8, 0xb9, 0xd7, 0xfd, 0x30, 0x52, 0x09, 0xa7, 0xc4, 0x0d, 0xdf, 0xcd, 0x55, 0x5e, 0x86, 0x1a, - 0x6a, 0xff, 0x99, 0x05, 0x95, 0xcd, 0xcd, 0x35, 0x7d, 0xf0, 0x47, 0x78, 0x28, 0x14, 0x2d, 0x54, - 0xdb, 0x8e, 0xa8, 0xe9, 0x4a, 0x20, 0x16, 0xbe, 0x85, 0xc3, 0x83, 0xea, 0x43, 0x8d, 0x4c, 0x0c, - 0x1c, 0x52, 0x93, 0xac, 0xc2, 0x45, 0x13, 0x22, 0x13, 0x01, 0xc8, 0x35, 0x92, 0x3f, 0xd3, 0xdb, - 0x18, 0x04, 0x63, 0x56, 0x9d, 0x34, 0x29, 0xb9, 0xdd, 0x9b, 0x2f, 0xfe, 0x36, 0x06, 0xc1, 0x98, - 0x55, 0xc7, 0x7e, 0x1e, 0x66, 0x53, 0x77, 0xdc, 0x27, 0x48, 0xc0, 0xf2, 0xbb, 0x05, 0x98, 0x32, - 0xaf, 0x3a, 0x4f, 0xb0, 0x7e, 0x9d, 0x7c, 0x5b, 0xc8, 0xb8, 0x9e, 0x2c, 0x9c, 0xf2, 0x7a, 0xd2, - 0xbc, 0x0f, 0x1e, 0x3f, 0xdf, 0xfb, 0xe0, 0x62, 0x3e, 0xf7, 0xc1, 0x86, 0xdf, 0xc2, 0xc4, 0x83, - 0xf3, 0x5b, 0xf8, 0xed, 0x22, 0xcc, 0x24, 0x33, 0x7a, 0x9e, 0xa0, 0x27, 0x9f, 0x1d, 0xe8, 0xc9, - 0x53, 0xde, 0x87, 0x14, 0x46, 0xbd, 0x0f, 0x19, 0x1f, 0xf5, 0x3e, 0xa4, 0x78, 0x86, 0xfb, 0x90, - 0xc1, 0xdb, 0x8c, 0x89, 0x13, 0xdf, 0x66, 0x7c, 0x4a, 0xbb, 0x78, 0x4e, 0x26, 0x5c, 0x80, 0x62, - 0x17, 0x4f, 0x92, 0xec, 0x86, 0x65, 0xbf, 0x95, 0xe9, 0x9a, 0x5a, 0x3a, 0xc6, 0xee, 0x1b, 0x64, - 0x7a, 0x64, 0x9e, 0xfe, 0xca, 0xf5, 0xa1, 0x53, 0x78, 0x63, 0xbe, 0x08, 0x15, 0x39, 0x9e, 0xb8, - 0xf2, 0x0d, 0x49, 0xc5, 0xbd, 0x11, 0x83, 0xd0, 0xc4, 0xe3, 0x0f, 0xf6, 0xc7, 0x13, 0x84, 0xdf, - 0xcc, 0x55, 0x52, 0x0f, 0xf6, 0x27, 0xc1, 0x98, 0xc6, 0xb7, 0xbf, 0x00, 0x97, 0x33, 0x4d, 0x30, - 0xdc, 0xfc, 0xcd, 0xf5, 0x42, 0xda, 0x92, 0x08, 0x86, 0x18, 0xa9, 0x87, 0x3e, 0x16, 0xee, 0x0c, - 0xc5, 0xc4, 0x23, 0xa8, 0xd8, 0xbf, 0x59, 0x80, 0x99, 0xe4, 0x6b, 0xaf, 0xe4, 0x9e, 0x36, 0xd8, - 0xe6, 0x62, 0x2b, 0x16, 0x64, 0x8d, 0x2c, 0x91, 0x43, 0x2f, 0x7a, 0xee, 0xf1, 0xf1, 0xb5, 0xa5, - 0x53, 0x56, 0x9e, 0x1f, 0x63, 0x79, 0xc3, 0x22, 0xd9, 0xf1, 0x07, 0x5d, 0xe3, 0x80, 0x52, 0x79, - 0x8e, 0xcf, 0x9d, 0x7b, 0x1c, 0x18, 0xa9, 0x59, 0xa1, 0xc1, 0x96, 0xed, 0x2d, 0x7b, 0x34, 0x70, - 0xb7, 0x5d, 0xfd, 0x52, 0x3d, 0x5f, 0xb9, 0xdf, 0x90, 0x65, 0xa8, 0xa1, 0xf6, 0x3b, 0x63, 0x50, - 0xe6, 0xf9, 0xaf, 0xae, 0x05, 0x7e, 0x97, 0x3f, 0x89, 0x18, 0x1a, 0x67, 0x26, 0xd9, 0x6d, 0x37, - 0x46, 0x7d, 0x77, 0x34, 0xa6, 0x28, 0xdd, 0xdd, 0x8d, 0x12, 0x4c, 0x70, 0x24, 0x3d, 0x28, 0x6d, - 0xcb, 0x7c, 0xbd, 0xb2, 0xef, 0x46, 0xcc, 0x39, 0xa9, 0xb2, 0xff, 0x8a, 0x26, 0x50, 0xff, 0x50, - 0x73, 0xb1, 0x1d, 0x98, 0x4d, 0x25, 0x30, 0xc9, 0x3d, 0xcb, 0xef, 0xff, 0x1c, 0x87, 0xb2, 0x8e, - 0xb3, 0x22, 0x9f, 0x48, 0x18, 0xb0, 0xca, 0xf5, 0x0f, 0x1b, 0xef, 0x75, 0xed, 0xf8, 0xad, 0xf7, - 0x0e, 0xaa, 0xb3, 0x1a, 0x39, 0x65, 0x8c, 0x7a, 0x1c, 0x0a, 0xfd, 0xa0, 0x93, 0x3e, 0xa1, 0xde, - 0xc6, 0x35, 0x64, 0xe5, 0x66, 0x6c, 0x58, 0xe1, 0x81, 0xc6, 0x86, 0xb1, 0x5d, 0x72, 0xcb, 0x6f, - 0xed, 0xa7, 0xdf, 0xf7, 0xaa, 0xfb, 0xad, 0x7d, 0xe4, 0x10, 0xf2, 0x0a, 0xcc, 0xc8, 0x80, 0x37, - 0xa5, 0xc4, 0x14, 0xb9, 0x9e, 0xaa, 0x1d, 0x17, 0x36, 0x13, 0x50, 0x4c, 0x61, 0xb3, 0x5d, 0xf6, - 0x6e, 0xe8, 0x7b, 0x3c, 0x77, 0xf3, 0x44, 0xf2, 0x96, 0xf3, 0x46, 0xe3, 0xd6, 0x4d, 0x6e, 0x48, - 0xd3, 0x18, 0x89, 0x98, 0xba, 0xc9, 0x63, 0x63, 0xea, 0x56, 0x04, 0x6d, 0x26, 0x2d, 0xdf, 0x51, - 0xa6, 0xea, 0x4f, 0x2b, 0xba, 0xac, 0xec, 0xbd, 0x83, 0x23, 0x8c, 0xa4, 0xba, 0x66, 0x56, 0xf4, - 0x61, 0xf9, 0xfd, 0x8b, 0x3e, 0xb4, 0x6f, 0xc3, 0x6c, 0xaa, 0xff, 0x94, 0x81, 0xc3, 0xca, 0x36, - 0x70, 0x9c, 0xec, 0x85, 0xb0, 0x7f, 0x66, 0xc1, 0x85, 0x81, 0x15, 0xe9, 0xa4, 0x61, 0xa0, 0xe9, - 0xbd, 0x71, 0xec, 0xec, 0x7b, 0x63, 0xe1, 0x74, 0x7b, 0x63, 0x7d, 0xeb, 0x7b, 0x3f, 0xbc, 0xf2, - 0xa1, 0xef, 0xff, 0xf0, 0xca, 0x87, 0xfe, 0xf0, 0x87, 0x57, 0x3e, 0xf4, 0xce, 0xe1, 0x15, 0xeb, - 0x7b, 0x87, 0x57, 0xac, 0xef, 0x1f, 0x5e, 0xb1, 0xfe, 0xf0, 0xf0, 0x8a, 0xf5, 0x9f, 0x0f, 0xaf, - 0x58, 0xdf, 0xfa, 0x93, 0x2b, 0x1f, 0xfa, 0xf4, 0xa7, 0xe2, 0x9e, 0x5a, 0x52, 0x3d, 0xc5, 0x7f, - 0x7c, 0x54, 0xf5, 0xcb, 0x52, 0x6f, 0xb7, 0xbd, 0xc4, 0x7a, 0x6a, 0x49, 0x97, 0xa8, 0x9e, 0xfa, - 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x7d, 0x66, 0x21, 0xe0, 0xa6, 0x00, 0x00, + // 8634 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x64, 0xd7, + 0x75, 0x98, 0x1f, 0x87, 0x43, 0xce, 0x9c, 0xe1, 0x92, 0xdc, 0xbb, 0xbb, 0x12, 0x45, 0x49, 0x3b, + 0xeb, 0xa7, 0x54, 0x95, 0x62, 0x99, 0xb4, 0x57, 0x52, 0x2b, 0x5b, 0xae, 0xda, 0x19, 0x72, 0x57, + 0xcb, 0x15, 0xb9, 0x4b, 0x9d, 0xe1, 0x6a, 0x13, 0xdb, 0x4a, 0xfc, 0x38, 0x73, 0x39, 0x7c, 0xcb, + 0x99, 0xf7, 0xc6, 0xef, 0xbd, 0xe1, 0x2e, 0x65, 0x21, 0x96, 0x6d, 0x28, 0x71, 0x5c, 0x1b, 0x71, + 0x93, 0x18, 0x45, 0xd1, 0xa2, 0x70, 0x83, 0x00, 0x69, 0x9b, 0xfc, 0x28, 0x82, 0x14, 0xed, 0x8f, + 0x00, 0x2d, 0xea, 0x26, 0x70, 0x80, 0xa6, 0x70, 0x7e, 0xb4, 0x4e, 0x0b, 0x84, 0xa9, 0x99, 0xfe, + 0x69, 0xd0, 0xc2, 0x68, 0xe1, 0x22, 0xa8, 0x7e, 0x14, 0xc5, 0xfd, 0x7c, 0xf7, 0xbd, 0x79, 0xc3, + 0xaf, 0x79, 0x5c, 0x29, 0x4d, 0xfe, 0xcd, 0xdc, 0x73, 0xee, 0x39, 0xe7, 0xdd, 0xcf, 0x73, 0xcf, + 0x3d, 0xe7, 0x5c, 0x58, 0x6d, 0xbb, 0xd1, 0x76, 0x7f, 0x73, 0xa1, 0xe9, 0x77, 0x17, 0x9d, 0xa0, + 0xed, 0xf7, 0x02, 0xff, 0x1e, 0xff, 0xf1, 0xd1, 0xc0, 0xef, 0x74, 0xfc, 0x7e, 0x14, 0x2e, 0xf6, + 0x76, 0xda, 0x8b, 0x4e, 0xcf, 0x0d, 0x17, 0x75, 0xc9, 0xee, 0xc7, 0x9d, 0x4e, 0x6f, 0xdb, 0xf9, + 0xf8, 0x62, 0x9b, 0x7a, 0x34, 0x70, 0x22, 0xda, 0x5a, 0xe8, 0x05, 0x7e, 0xe4, 0x93, 0x4f, 0xc5, + 0xd4, 0x16, 0x14, 0x35, 0xfe, 0xe3, 0xa7, 0x55, 0xdd, 0x85, 0xde, 0x4e, 0x7b, 0x81, 0x51, 0x5b, + 0xd0, 0x25, 0x8a, 0xda, 0xfc, 0x47, 0x0d, 0x59, 0xda, 0x7e, 0xdb, 0x5f, 0xe4, 0x44, 0x37, 0xfb, + 0x5b, 0xfc, 0x1f, 0xff, 0xc3, 0x7f, 0x09, 0x66, 0xf3, 0x4f, 0xed, 0xbc, 0x14, 0x2e, 0xb8, 0x3e, + 0x93, 0x6d, 0x71, 0xd3, 0x89, 0x9a, 0xdb, 0x8b, 0xbb, 0x03, 0x12, 0xcd, 0xdb, 0x06, 0x52, 0xd3, + 0x0f, 0x68, 0x16, 0xce, 0x0b, 0x31, 0x4e, 0xd7, 0x69, 0x6e, 0xbb, 0x1e, 0x0d, 0xf6, 0xe2, 0xaf, + 0xee, 0xd2, 0xc8, 0xc9, 0xaa, 0xb5, 0x38, 0xac, 0x56, 0xd0, 0xf7, 0x22, 0xb7, 0x4b, 0x07, 0x2a, + 0xfc, 0xb5, 0xa3, 0x2a, 0x84, 0xcd, 0x6d, 0xda, 0x75, 0x06, 0xea, 0x3d, 0x3f, 0xac, 0x5e, 0x3f, + 0x72, 0x3b, 0x8b, 0xae, 0x17, 0x85, 0x51, 0x90, 0xae, 0x64, 0xff, 0xb0, 0x00, 0xe5, 0xda, 0x6a, + 0xbd, 0x11, 0x39, 0x51, 0x3f, 0x24, 0x3f, 0x6b, 0xc1, 0x54, 0xc7, 0x77, 0x5a, 0x75, 0xa7, 0xe3, + 0x78, 0x4d, 0x1a, 0xcc, 0x59, 0x57, 0xac, 0x67, 0x2a, 0x57, 0x57, 0x17, 0x46, 0xe9, 0xaf, 0x85, + 0xda, 0xfd, 0x10, 0x69, 0xe8, 0xf7, 0x83, 0x26, 0x45, 0xba, 0x55, 0xbf, 0xf8, 0xdd, 0xfd, 0xea, + 0x87, 0x0e, 0xf6, 0xab, 0x53, 0xab, 0x06, 0x27, 0x4c, 0xf0, 0x25, 0xdf, 0xb2, 0xe0, 0x7c, 0xd3, + 0xf1, 0x9c, 0x60, 0x6f, 0xc3, 0x09, 0xda, 0x34, 0x7a, 0x35, 0xf0, 0xfb, 0xbd, 0xb9, 0xb1, 0x33, + 0x90, 0xe6, 0x31, 0x29, 0xcd, 0xf9, 0xa5, 0x34, 0x3b, 0x1c, 0x94, 0x80, 0xcb, 0x15, 0x46, 0xce, + 0x66, 0x87, 0x9a, 0x72, 0x15, 0xce, 0x52, 0xae, 0x46, 0x9a, 0x1d, 0x0e, 0x4a, 0x40, 0x9e, 0x85, + 0x49, 0xd7, 0x6b, 0x07, 0x34, 0x0c, 0xe7, 0xc6, 0xaf, 0x58, 0xcf, 0x94, 0xeb, 0x33, 0xb2, 0xfa, + 0xe4, 0x8a, 0x28, 0x46, 0x05, 0xb7, 0x7f, 0xb3, 0x00, 0xe7, 0x6b, 0xab, 0xf5, 0x8d, 0xc0, 0xd9, + 0xda, 0x72, 0x9b, 0xe8, 0xf7, 0x23, 0xd7, 0x6b, 0x9b, 0x04, 0xac, 0xc3, 0x09, 0x90, 0x17, 0xa1, + 0x12, 0xd2, 0x60, 0xd7, 0x6d, 0xd2, 0x75, 0x3f, 0x88, 0x78, 0xa7, 0x14, 0xeb, 0x17, 0x24, 0x7a, + 0xa5, 0x11, 0x83, 0xd0, 0xc4, 0x63, 0xd5, 0x02, 0xdf, 0x8f, 0x24, 0x9c, 0xb7, 0x59, 0x39, 0xae, + 0x86, 0x31, 0x08, 0x4d, 0x3c, 0xb2, 0x0c, 0xb3, 0x8e, 0xe7, 0xf9, 0x91, 0x13, 0xb9, 0xbe, 0xb7, + 0x1e, 0xd0, 0x2d, 0xf7, 0x81, 0xfc, 0xc4, 0x39, 0x59, 0x77, 0xb6, 0x96, 0x82, 0xe3, 0x40, 0x0d, + 0xf2, 0x4d, 0x0b, 0x66, 0xc3, 0xc8, 0x6d, 0xee, 0xb8, 0x1e, 0x0d, 0xc3, 0x25, 0xdf, 0xdb, 0x72, + 0xdb, 0x73, 0x45, 0xde, 0x6d, 0xb7, 0x46, 0xeb, 0xb6, 0x46, 0x8a, 0x6a, 0xfd, 0x22, 0x13, 0x29, + 0x5d, 0x8a, 0x03, 0xdc, 0xc9, 0x47, 0xa0, 0x2c, 0x5b, 0x94, 0x86, 0x73, 0x13, 0x57, 0x0a, 0xcf, + 0x94, 0xeb, 0xe7, 0x0e, 0xf6, 0xab, 0xe5, 0x15, 0x55, 0x88, 0x31, 0xdc, 0x5e, 0x86, 0xb9, 0x5a, + 0x77, 0xd3, 0x09, 0x43, 0xa7, 0xe5, 0x07, 0xa9, 0xae, 0x7b, 0x06, 0x4a, 0x5d, 0xa7, 0xd7, 0x73, + 0xbd, 0x36, 0xeb, 0x3b, 0x46, 0x67, 0xea, 0x60, 0xbf, 0x5a, 0x5a, 0x93, 0x65, 0xa8, 0xa1, 0xf6, + 0x7f, 0x1a, 0x83, 0x4a, 0xcd, 0x73, 0x3a, 0x7b, 0xa1, 0x1b, 0x62, 0xdf, 0x23, 0x9f, 0x83, 0x12, + 0x5b, 0xb5, 0x5a, 0x4e, 0xe4, 0xc8, 0x99, 0xfe, 0xb1, 0x05, 0xb1, 0x88, 0x2c, 0x98, 0x8b, 0x48, + 0xfc, 0xf9, 0x0c, 0x7b, 0x61, 0xf7, 0xe3, 0x0b, 0xb7, 0x37, 0xef, 0xd1, 0x66, 0xb4, 0x46, 0x23, + 0xa7, 0x4e, 0x64, 0x2f, 0x40, 0x5c, 0x86, 0x9a, 0x2a, 0xf1, 0x61, 0x3c, 0xec, 0xd1, 0xa6, 0x9c, + 0xb9, 0x6b, 0x23, 0xce, 0x90, 0x58, 0xf4, 0x46, 0x8f, 0x36, 0xeb, 0x53, 0x92, 0xf5, 0x38, 0xfb, + 0x87, 0x9c, 0x11, 0xb9, 0x0f, 0x13, 0x21, 0x5f, 0xcb, 0xe4, 0xa4, 0xbc, 0x9d, 0x1f, 0x4b, 0x4e, + 0xb6, 0x3e, 0x2d, 0x99, 0x4e, 0x88, 0xff, 0x28, 0xd9, 0xd9, 0xff, 0xd9, 0x82, 0x0b, 0x06, 0x76, + 0x2d, 0x68, 0xf7, 0xbb, 0xd4, 0x8b, 0xc8, 0x15, 0x18, 0xf7, 0x9c, 0x2e, 0x95, 0xb3, 0x4a, 0x8b, + 0x7c, 0xcb, 0xe9, 0x52, 0xe4, 0x10, 0xf2, 0x14, 0x14, 0x77, 0x9d, 0x4e, 0x9f, 0xf2, 0x46, 0x2a, + 0xd7, 0xcf, 0x49, 0x94, 0xe2, 0x1b, 0xac, 0x10, 0x05, 0x8c, 0xbc, 0x0d, 0x65, 0xfe, 0xe3, 0x7a, + 0xe0, 0x77, 0x73, 0xfa, 0x34, 0x29, 0xe1, 0x1b, 0x8a, 0xac, 0x18, 0x7e, 0xfa, 0x2f, 0xc6, 0x0c, + 0xed, 0x3f, 0xb6, 0x60, 0xc6, 0xf8, 0xb8, 0x55, 0x37, 0x8c, 0xc8, 0x67, 0x07, 0x06, 0xcf, 0xc2, + 0xf1, 0x06, 0x0f, 0xab, 0xcd, 0x87, 0xce, 0xac, 0xfc, 0xd2, 0x92, 0x2a, 0x31, 0x06, 0x8e, 0x07, + 0x45, 0x37, 0xa2, 0xdd, 0x70, 0x6e, 0xec, 0x4a, 0xe1, 0x99, 0xca, 0xd5, 0x95, 0xdc, 0xba, 0x31, + 0x6e, 0xdf, 0x15, 0x46, 0x1f, 0x05, 0x1b, 0xfb, 0xb7, 0x0a, 0x89, 0xee, 0x5b, 0x53, 0x72, 0xbc, + 0x6b, 0xc1, 0x44, 0xc7, 0xd9, 0xa4, 0x1d, 0x31, 0xb7, 0x2a, 0x57, 0xdf, 0xcc, 0x4d, 0x12, 0xc5, + 0x63, 0x61, 0x95, 0xd3, 0xbf, 0xe6, 0x45, 0xc1, 0x5e, 0x3c, 0xbc, 0x44, 0x21, 0x4a, 0xe6, 0xe4, + 0xef, 0x59, 0x50, 0x89, 0x57, 0x35, 0xd5, 0x2c, 0x9b, 0xf9, 0x0b, 0x13, 0x2f, 0xa6, 0x52, 0x22, + 0xbd, 0x44, 0x1b, 0x10, 0x34, 0x65, 0x99, 0xff, 0x04, 0x54, 0x8c, 0x4f, 0x20, 0xb3, 0x50, 0xd8, + 0xa1, 0x7b, 0x62, 0xc0, 0x23, 0xfb, 0x49, 0x2e, 0x26, 0x46, 0xb8, 0x1c, 0xd2, 0x9f, 0x1c, 0x7b, + 0xc9, 0x9a, 0x7f, 0x05, 0x66, 0xd3, 0x0c, 0x4f, 0x52, 0xdf, 0xfe, 0x67, 0xc5, 0xc4, 0xc0, 0x64, + 0x0b, 0x01, 0xf1, 0x61, 0xb2, 0x4b, 0xa3, 0xc0, 0x6d, 0xaa, 0x2e, 0x5b, 0x1e, 0xad, 0x95, 0xd6, + 0x38, 0xb1, 0x78, 0x43, 0x14, 0xff, 0x43, 0x54, 0x5c, 0xc8, 0x36, 0x8c, 0x3b, 0x41, 0x5b, 0xf5, + 0xc9, 0xf5, 0x7c, 0xa6, 0x65, 0xbc, 0x54, 0xd4, 0x82, 0x76, 0x88, 0x9c, 0x03, 0x59, 0x84, 0x72, + 0x44, 0x83, 0xae, 0xeb, 0x39, 0x91, 0xd8, 0x41, 0x4b, 0xf5, 0xf3, 0x12, 0xad, 0xbc, 0xa1, 0x00, + 0x18, 0xe3, 0x90, 0x0e, 0x4c, 0xb4, 0x82, 0x3d, 0xec, 0x7b, 0x73, 0xe3, 0x79, 0x34, 0xc5, 0x32, + 0xa7, 0x15, 0x0f, 0x52, 0xf1, 0x1f, 0x25, 0x0f, 0xf2, 0xab, 0x16, 0x5c, 0xec, 0x52, 0x27, 0xec, + 0x07, 0x94, 0x7d, 0x02, 0xd2, 0x88, 0x7a, 0xac, 0x63, 0xe7, 0x8a, 0x9c, 0x39, 0x8e, 0xda, 0x0f, + 0x83, 0x94, 0xeb, 0x4f, 0x48, 0x51, 0x2e, 0x66, 0x41, 0x31, 0x53, 0x1a, 0xf2, 0x36, 0x54, 0xa2, + 0xa8, 0xd3, 0x88, 0x98, 0x1e, 0xdc, 0xde, 0x9b, 0x9b, 0xe0, 0x8b, 0xd7, 0x88, 0x2b, 0xcc, 0xc6, + 0xc6, 0xaa, 0x22, 0x58, 0x9f, 0x61, 0xb3, 0xc5, 0x28, 0x40, 0x93, 0x9d, 0xfd, 0x2f, 0x8b, 0x70, + 0x7e, 0x60, 0x5b, 0x21, 0x2f, 0x40, 0xb1, 0xb7, 0xed, 0x84, 0x6a, 0x9f, 0xb8, 0xac, 0x16, 0xa9, + 0x75, 0x56, 0xf8, 0xde, 0x7e, 0xf5, 0x9c, 0xaa, 0xc2, 0x0b, 0x50, 0x20, 0x33, 0xad, 0xad, 0x4b, + 0xc3, 0xd0, 0x69, 0xab, 0xcd, 0xc3, 0x18, 0xa4, 0xbc, 0x18, 0x15, 0x9c, 0xfc, 0x9c, 0x05, 0xe7, + 0xc4, 0x80, 0x45, 0x1a, 0xf6, 0x3b, 0x11, 0xdb, 0x20, 0x59, 0xa7, 0xdc, 0xcc, 0x63, 0x72, 0x08, + 0x92, 0xf5, 0x4b, 0x92, 0xfb, 0x39, 0xb3, 0x34, 0xc4, 0x24, 0x5f, 0x72, 0x17, 0xca, 0x61, 0xe4, + 0x04, 0x11, 0x6d, 0xd5, 0x22, 0xae, 0xca, 0x55, 0xae, 0xfe, 0xf8, 0xf1, 0x76, 0x8e, 0x0d, 0xb7, + 0x4b, 0xc5, 0x2e, 0xd5, 0x50, 0x04, 0x30, 0xa6, 0x45, 0xde, 0x06, 0x08, 0xfa, 0x5e, 0xa3, 0xdf, + 0xed, 0x3a, 0xc1, 0x9e, 0xd4, 0xee, 0x6e, 0x8c, 0xf6, 0x79, 0xa8, 0xe9, 0xc5, 0x8a, 0x4e, 0x5c, + 0x86, 0x06, 0x3f, 0xf2, 0x25, 0x0b, 0xce, 0x89, 0x79, 0xa0, 0x24, 0x98, 0xc8, 0x59, 0x82, 0xf3, + 0xac, 0x69, 0x97, 0x4d, 0x16, 0x98, 0xe4, 0x48, 0xde, 0x84, 0x4a, 0xd3, 0xef, 0xf6, 0x3a, 0x54, + 0x34, 0xee, 0xe4, 0x89, 0x1b, 0x97, 0x0f, 0xdd, 0xa5, 0x98, 0x04, 0x9a, 0xf4, 0xec, 0xff, 0x90, + 0xd4, 0x71, 0xd4, 0x90, 0x26, 0x9f, 0x81, 0xc7, 0xc2, 0x7e, 0xb3, 0x49, 0xc3, 0x70, 0xab, 0xdf, + 0xc1, 0xbe, 0x77, 0xc3, 0x0d, 0x23, 0x3f, 0xd8, 0x5b, 0x75, 0xbb, 0x6e, 0xc4, 0x07, 0x74, 0xb1, + 0xfe, 0xe4, 0xc1, 0x7e, 0xf5, 0xb1, 0xc6, 0x30, 0x24, 0x1c, 0x5e, 0x9f, 0x38, 0xf0, 0x78, 0xdf, + 0x1b, 0x4e, 0x5e, 0x1c, 0x3f, 0xaa, 0x07, 0xfb, 0xd5, 0xc7, 0xef, 0x0c, 0x47, 0xc3, 0xc3, 0x68, + 0xd8, 0x7f, 0x6a, 0xb1, 0x6d, 0x48, 0x7c, 0xd7, 0x06, 0xed, 0xf6, 0x3a, 0x6c, 0xe9, 0x3c, 0x7b, + 0xe5, 0x38, 0x4a, 0x28, 0xc7, 0x98, 0xcf, 0x5e, 0xae, 0xe4, 0x1f, 0xa6, 0x21, 0xdb, 0xff, 0xcd, + 0x82, 0x8b, 0x69, 0xe4, 0x87, 0xa0, 0xd0, 0x85, 0x49, 0x85, 0xee, 0x56, 0xbe, 0x5f, 0x3b, 0x44, + 0xab, 0xfb, 0x79, 0x63, 0xc0, 0x2a, 0x54, 0xa4, 0x5b, 0xe4, 0x25, 0x98, 0x8a, 0xe4, 0xdf, 0x5b, + 0xb1, 0x72, 0xae, 0x0d, 0x13, 0x1b, 0x06, 0x0c, 0x13, 0x98, 0xac, 0x66, 0xb3, 0xd3, 0x0f, 0x23, + 0x1a, 0x34, 0x9a, 0x7e, 0x4f, 0x2c, 0xbb, 0xa5, 0xb8, 0xe6, 0x92, 0x01, 0xc3, 0x04, 0xa6, 0xfd, + 0xb7, 0x8b, 0x83, 0xed, 0xfe, 0xff, 0xbb, 0xbe, 0x12, 0xab, 0x1f, 0x85, 0xf7, 0x53, 0xfd, 0x18, + 0xff, 0x40, 0xa9, 0x1f, 0x5f, 0xb6, 0x98, 0x16, 0x27, 0x06, 0x40, 0x28, 0x55, 0xa3, 0xd7, 0xf3, + 0x9d, 0x0e, 0x48, 0xb7, 0x4c, 0xc5, 0x50, 0xf2, 0xc2, 0x98, 0xad, 0xfd, 0x8f, 0xc7, 0x61, 0xaa, + 0xe6, 0x45, 0x6e, 0x6d, 0x6b, 0xcb, 0xf5, 0xdc, 0x68, 0x8f, 0x7c, 0x7d, 0x0c, 0x16, 0x7b, 0x01, + 0xdd, 0xa2, 0x41, 0x40, 0x5b, 0xcb, 0xfd, 0xc0, 0xf5, 0xda, 0x8d, 0xe6, 0x36, 0x6d, 0xf5, 0x3b, + 0xae, 0xd7, 0x5e, 0x69, 0x7b, 0xbe, 0x2e, 0xbe, 0xf6, 0x80, 0x36, 0xfb, 0xbc, 0x5d, 0xc5, 0x2a, + 0xd1, 0x1d, 0x4d, 0xf6, 0xf5, 0x93, 0x31, 0xad, 0x3f, 0x7f, 0xb0, 0x5f, 0x5d, 0x3c, 0x61, 0x25, + 0x3c, 0xe9, 0xa7, 0x91, 0xaf, 0x8e, 0xc1, 0x42, 0x40, 0x3f, 0xdf, 0x77, 0x8f, 0xdf, 0x1a, 0x62, + 0x19, 0xef, 0x8c, 0xb8, 0xdd, 0x9f, 0x88, 0x67, 0xfd, 0xea, 0xc1, 0x7e, 0xf5, 0x84, 0x75, 0xf0, + 0x84, 0xdf, 0x65, 0xaf, 0x43, 0xa5, 0xd6, 0x73, 0x43, 0xf7, 0x01, 0xfa, 0xfd, 0x88, 0x1e, 0xc3, + 0xa0, 0x51, 0x85, 0x62, 0xd0, 0xef, 0x50, 0xb1, 0xc0, 0x94, 0xeb, 0x65, 0xb6, 0x2c, 0x23, 0x2b, + 0x40, 0x51, 0x6e, 0x7f, 0x99, 0x6d, 0x41, 0x9c, 0x64, 0xca, 0x94, 0x75, 0x0f, 0x8a, 0x01, 0x63, + 0x22, 0x47, 0xd6, 0xa8, 0xa7, 0xfe, 0x58, 0x6a, 0x29, 0x04, 0xfb, 0x89, 0x82, 0x85, 0xfd, 0x9d, + 0x31, 0xb8, 0x54, 0xeb, 0xf5, 0xd6, 0x68, 0xb8, 0x9d, 0x92, 0xe2, 0x17, 0x2c, 0x98, 0xde, 0x75, + 0x83, 0xa8, 0xef, 0x74, 0x94, 0xb5, 0x52, 0xc8, 0xd3, 0x18, 0x55, 0x1e, 0xce, 0xed, 0x8d, 0x04, + 0xe9, 0x3a, 0x39, 0xd8, 0xaf, 0x4e, 0x27, 0xcb, 0x30, 0xc5, 0x9e, 0xfc, 0x5d, 0x0b, 0x66, 0x65, + 0xd1, 0x2d, 0xbf, 0x45, 0x4d, 0x6b, 0xf8, 0x9d, 0x3c, 0x65, 0xd2, 0xc4, 0x85, 0x15, 0x33, 0x5d, + 0x8a, 0x03, 0x42, 0xd8, 0xff, 0x63, 0x0c, 0x1e, 0x1d, 0x42, 0x83, 0xfc, 0x9a, 0x05, 0x17, 0x85, + 0x09, 0xdd, 0x00, 0x21, 0xdd, 0x92, 0xad, 0xf9, 0x93, 0x79, 0x4b, 0x8e, 0x6c, 0x8a, 0x53, 0xaf, + 0x49, 0xeb, 0x73, 0x6c, 0x49, 0x5e, 0xca, 0x60, 0x8d, 0x99, 0x02, 0x71, 0x49, 0x85, 0x51, 0x3d, + 0x25, 0xe9, 0xd8, 0x43, 0x91, 0xb4, 0x91, 0xc1, 0x1a, 0x33, 0x05, 0xb2, 0xff, 0x26, 0x3c, 0x7e, + 0x08, 0xb9, 0xa3, 0x27, 0xa7, 0xfd, 0xa6, 0x1e, 0xf5, 0xc9, 0x31, 0x77, 0x8c, 0x79, 0x6d, 0xc3, + 0x04, 0x9f, 0x3a, 0x6a, 0x62, 0x03, 0xdb, 0x83, 0xf9, 0x9c, 0x0a, 0x51, 0x42, 0xec, 0xef, 0x58, + 0x50, 0x3a, 0x81, 0xed, 0xb3, 0x9a, 0xb4, 0x7d, 0x96, 0x07, 0xec, 0x9e, 0xd1, 0xa0, 0xdd, 0xf3, + 0xd5, 0xd1, 0x7a, 0xe3, 0x38, 0xf6, 0xce, 0x1f, 0x5a, 0x70, 0x7e, 0xc0, 0x3e, 0x4a, 0xb6, 0xe1, + 0x62, 0xcf, 0x6f, 0xa9, 0xed, 0xf4, 0x86, 0x13, 0x6e, 0x73, 0x98, 0xfc, 0xbc, 0x17, 0x58, 0x4f, + 0xae, 0x67, 0xc0, 0xdf, 0xdb, 0xaf, 0xce, 0x69, 0x22, 0x29, 0x04, 0xcc, 0xa4, 0x48, 0x7a, 0x50, + 0xda, 0x72, 0x69, 0xa7, 0x15, 0x0f, 0xc1, 0x11, 0xb5, 0xb4, 0xeb, 0x92, 0x9a, 0xb8, 0x1a, 0x50, + 0xff, 0x50, 0x73, 0xb1, 0x7f, 0x64, 0xc1, 0x74, 0xad, 0x1f, 0x6d, 0x33, 0x1d, 0xa5, 0xc9, 0xad, + 0x71, 0xc4, 0x83, 0x62, 0xe8, 0xb6, 0x77, 0x5f, 0xc8, 0x67, 0x31, 0x6e, 0x30, 0x52, 0xf2, 0x8a, + 0x44, 0x2b, 0xeb, 0xbc, 0x10, 0x05, 0x1b, 0x12, 0xc0, 0x84, 0xef, 0xf4, 0xa3, 0xed, 0xab, 0xf2, + 0x93, 0x47, 0xb4, 0x4c, 0xdc, 0x66, 0x9f, 0x73, 0x55, 0x72, 0xd4, 0x2a, 0xa3, 0x28, 0x45, 0xc9, + 0xc9, 0xfe, 0x22, 0x4c, 0x27, 0xef, 0xdd, 0x8e, 0x31, 0x66, 0x9f, 0x84, 0x82, 0x13, 0x78, 0x72, + 0xc4, 0x56, 0x24, 0x42, 0xa1, 0x86, 0xb7, 0x90, 0x95, 0x93, 0xe7, 0xa0, 0xb4, 0xd5, 0xef, 0x74, + 0xf8, 0xb9, 0x42, 0x5c, 0x72, 0xe9, 0x63, 0xd1, 0x75, 0x59, 0x8e, 0x1a, 0xc3, 0xfe, 0x3f, 0xe3, + 0x30, 0x53, 0xef, 0xf4, 0xe9, 0xab, 0x01, 0xa5, 0xca, 0x16, 0x54, 0x83, 0x99, 0x5e, 0x40, 0x77, + 0x5d, 0x7a, 0xbf, 0x41, 0x3b, 0xb4, 0x19, 0xf9, 0x81, 0x94, 0xe6, 0x51, 0x49, 0x68, 0x66, 0x3d, + 0x09, 0xc6, 0x34, 0x3e, 0x79, 0x05, 0xa6, 0x9d, 0x66, 0xe4, 0xee, 0x52, 0x4d, 0x41, 0x88, 0xfb, + 0x88, 0xa4, 0x30, 0x5d, 0x4b, 0x40, 0x31, 0x85, 0x4d, 0x3e, 0x0b, 0x73, 0x61, 0xd3, 0xe9, 0xd0, + 0x3b, 0x3d, 0xc9, 0x6a, 0x69, 0x9b, 0x36, 0x77, 0xd6, 0x7d, 0xd7, 0x8b, 0xa4, 0xdd, 0xf1, 0x8a, + 0xa4, 0x34, 0xd7, 0x18, 0x82, 0x87, 0x43, 0x29, 0x90, 0x7f, 0x65, 0xc1, 0x93, 0xbd, 0x80, 0xae, + 0x07, 0x7e, 0xd7, 0x67, 0x43, 0x6d, 0xc0, 0x1c, 0x26, 0xcd, 0x42, 0x6f, 0x8c, 0xa8, 0x4b, 0x89, + 0x92, 0xc1, 0x3b, 0x9c, 0x0f, 0x1f, 0xec, 0x57, 0x9f, 0x5c, 0x3f, 0x4c, 0x00, 0x3c, 0x5c, 0x3e, + 0xf2, 0x6f, 0x2c, 0xb8, 0xdc, 0xf3, 0xc3, 0xe8, 0x90, 0x4f, 0x28, 0x9e, 0xe9, 0x27, 0xd8, 0x07, + 0xfb, 0xd5, 0xcb, 0xeb, 0x87, 0x4a, 0x80, 0x47, 0x48, 0x68, 0x1f, 0x54, 0xe0, 0xbc, 0x31, 0xf6, + 0xa4, 0x31, 0xe7, 0x65, 0x38, 0xa7, 0x06, 0x43, 0xac, 0xfb, 0x94, 0x63, 0xdb, 0x5e, 0xcd, 0x04, + 0x62, 0x12, 0x97, 0x8d, 0x3b, 0x3d, 0x14, 0x45, 0xed, 0xd4, 0xb8, 0x5b, 0x4f, 0x40, 0x31, 0x85, + 0x4d, 0x56, 0xe0, 0x82, 0x2c, 0x41, 0xda, 0xeb, 0xb8, 0x4d, 0x67, 0xc9, 0xef, 0xcb, 0x21, 0x57, + 0xac, 0x3f, 0x7a, 0xb0, 0x5f, 0xbd, 0xb0, 0x3e, 0x08, 0xc6, 0xac, 0x3a, 0x64, 0x15, 0x2e, 0x3a, + 0xfd, 0xc8, 0xd7, 0xdf, 0x7f, 0xcd, 0x63, 0xdb, 0x69, 0x8b, 0x0f, 0xad, 0x92, 0xd8, 0x77, 0x6b, + 0x19, 0x70, 0xcc, 0xac, 0x45, 0xd6, 0x53, 0xd4, 0x1a, 0xb4, 0xe9, 0x7b, 0x2d, 0xd1, 0xcb, 0xc5, + 0xf8, 0x18, 0x58, 0xcb, 0xc0, 0xc1, 0xcc, 0x9a, 0xa4, 0x03, 0xd3, 0x5d, 0xe7, 0xc1, 0x1d, 0xcf, + 0xd9, 0x75, 0xdc, 0x0e, 0x63, 0x22, 0xed, 0x85, 0xc3, 0xad, 0x4c, 0xfd, 0xc8, 0xed, 0x2c, 0x08, + 0x3f, 0x8e, 0x85, 0x15, 0x2f, 0xba, 0x1d, 0x34, 0x22, 0xa6, 0xa9, 0x0b, 0x0d, 0x72, 0x2d, 0x41, + 0x0b, 0x53, 0xb4, 0xc9, 0x6d, 0xb8, 0xc4, 0xa7, 0xe3, 0xb2, 0x7f, 0xdf, 0x5b, 0xa6, 0x1d, 0x67, + 0x4f, 0x7d, 0xc0, 0x24, 0xff, 0x80, 0xc7, 0x0e, 0xf6, 0xab, 0x97, 0x1a, 0x59, 0x08, 0x98, 0x5d, + 0x8f, 0x38, 0xf0, 0x78, 0x12, 0x80, 0x74, 0xd7, 0x0d, 0x5d, 0xdf, 0x13, 0x66, 0xb9, 0x52, 0x6c, + 0x96, 0x6b, 0x0c, 0x47, 0xc3, 0xc3, 0x68, 0x90, 0xbf, 0x6f, 0xc1, 0xc5, 0xac, 0x69, 0x38, 0x57, + 0xce, 0xe3, 0x36, 0x39, 0x35, 0xb5, 0xc4, 0x88, 0xc8, 0x5c, 0x14, 0x32, 0x85, 0x20, 0xef, 0x58, + 0x30, 0xe5, 0x18, 0x27, 0xe8, 0x39, 0xc8, 0x63, 0xd7, 0x32, 0xcf, 0xe4, 0xf5, 0xd9, 0x83, 0xfd, + 0x6a, 0xe2, 0x94, 0x8e, 0x09, 0x8e, 0xe4, 0x1f, 0x5a, 0x70, 0x29, 0x73, 0x8e, 0xcf, 0x55, 0xce, + 0xa2, 0x85, 0xf8, 0x20, 0xc9, 0x5e, 0x73, 0xb2, 0xc5, 0x20, 0xdf, 0xb4, 0xf4, 0x56, 0xa6, 0x2e, + 0x18, 0xe7, 0xa6, 0xb8, 0x68, 0x23, 0x1a, 0x3c, 0x0c, 0x35, 0x4a, 0x11, 0xae, 0x5f, 0x30, 0x76, + 0x46, 0x55, 0x88, 0x69, 0xf6, 0xe4, 0x1b, 0x96, 0xda, 0x1a, 0xb5, 0x44, 0xe7, 0xce, 0x4a, 0x22, + 0x12, 0xef, 0xb4, 0x5a, 0xa0, 0x14, 0x73, 0xf2, 0x53, 0x30, 0xef, 0x6c, 0xfa, 0x41, 0x94, 0x39, + 0xf9, 0xe6, 0xa6, 0xf9, 0x34, 0xba, 0x7c, 0xb0, 0x5f, 0x9d, 0xaf, 0x0d, 0xc5, 0xc2, 0x43, 0x28, + 0xd8, 0xbf, 0x51, 0x84, 0x29, 0x71, 0x12, 0x92, 0x5b, 0xd7, 0x6f, 0x5b, 0xf0, 0x44, 0xb3, 0x1f, + 0x04, 0xd4, 0x8b, 0x1a, 0x11, 0xed, 0x0d, 0x6e, 0x5c, 0xd6, 0x99, 0x6e, 0x5c, 0x57, 0x0e, 0xf6, + 0xab, 0x4f, 0x2c, 0x1d, 0xc2, 0x1f, 0x0f, 0x95, 0x8e, 0xfc, 0x7b, 0x0b, 0x6c, 0x89, 0x50, 0x77, + 0x9a, 0x3b, 0xed, 0xc0, 0xef, 0x7b, 0xad, 0xc1, 0x8f, 0x18, 0x3b, 0xd3, 0x8f, 0x78, 0xfa, 0x60, + 0xbf, 0x6a, 0x2f, 0x1d, 0x29, 0x05, 0x1e, 0x43, 0x52, 0xf2, 0x2a, 0x9c, 0x97, 0x58, 0xd7, 0x1e, + 0xf4, 0x68, 0xe0, 0xb2, 0x33, 0x87, 0x54, 0x1c, 0x63, 0xdf, 0xb4, 0x34, 0x02, 0x0e, 0xd6, 0x21, + 0x21, 0x4c, 0xde, 0xa7, 0x6e, 0x7b, 0x3b, 0x52, 0xea, 0xd3, 0x88, 0x0e, 0x69, 0xd2, 0x2a, 0x72, + 0x57, 0xd0, 0xac, 0x57, 0x0e, 0xf6, 0xab, 0x93, 0xf2, 0x0f, 0x2a, 0x4e, 0xe4, 0x16, 0x4c, 0x8b, + 0x73, 0xea, 0xba, 0xeb, 0xb5, 0xd7, 0x7d, 0x4f, 0x78, 0x55, 0x95, 0xeb, 0x4f, 0xab, 0x0d, 0xbf, + 0x91, 0x80, 0xbe, 0xb7, 0x5f, 0x9d, 0x52, 0xbf, 0x37, 0xf6, 0x7a, 0x14, 0x53, 0xb5, 0xed, 0xdf, + 0x9d, 0x00, 0x50, 0xc3, 0x95, 0xf6, 0xc8, 0x47, 0xa0, 0x1c, 0xd2, 0x48, 0x70, 0x95, 0x37, 0x49, + 0xe2, 0xfe, 0x4f, 0x15, 0x62, 0x0c, 0x27, 0x3b, 0x50, 0xec, 0x39, 0xfd, 0x90, 0xe6, 0x73, 0x7e, + 0x90, 0x9d, 0xbf, 0xce, 0x28, 0x8a, 0x83, 0x29, 0xff, 0x89, 0x82, 0x07, 0xf9, 0x8a, 0x05, 0x40, + 0x93, 0x1d, 0x36, 0xb2, 0x81, 0x48, 0xb2, 0x8c, 0xfb, 0x94, 0xb5, 0x41, 0x7d, 0xfa, 0x60, 0xbf, + 0x0a, 0x46, 0xd7, 0x1b, 0x6c, 0xc9, 0x7d, 0x28, 0x39, 0x6a, 0xcd, 0x1f, 0x3f, 0x8b, 0x35, 0x9f, + 0x9f, 0x17, 0xf5, 0xa0, 0xd5, 0xcc, 0xc8, 0x57, 0x2d, 0x98, 0x0e, 0x69, 0x24, 0xbb, 0x8a, 0xad, + 0x3c, 0x52, 0xe1, 0x1d, 0x71, 0xd0, 0x35, 0x12, 0x34, 0xc5, 0x0a, 0x9a, 0x2c, 0xc3, 0x14, 0x5f, + 0x25, 0xca, 0x0d, 0xea, 0xb4, 0x68, 0xc0, 0xcd, 0x11, 0x52, 0x93, 0x1a, 0x5d, 0x14, 0x83, 0xa6, + 0x16, 0xc5, 0x28, 0xc3, 0x14, 0x5f, 0x25, 0xca, 0x9a, 0x1b, 0x04, 0xbe, 0x14, 0xa5, 0x94, 0x93, + 0x28, 0x06, 0x4d, 0x2d, 0x8a, 0x51, 0x86, 0x29, 0xbe, 0xf6, 0xb7, 0xcf, 0xc1, 0xb4, 0x9a, 0x48, + 0xb1, 0x66, 0x2f, 0xac, 0x5f, 0x43, 0x34, 0xfb, 0x25, 0x13, 0x88, 0x49, 0x5c, 0x56, 0x59, 0x4c, + 0xd5, 0xa4, 0x62, 0xaf, 0x2b, 0x37, 0x4c, 0x20, 0x26, 0x71, 0x49, 0x17, 0x8a, 0x61, 0x44, 0x7b, + 0xca, 0xe7, 0x60, 0xc4, 0x2b, 0xf1, 0x78, 0x7d, 0x30, 0x2c, 0x09, 0x8c, 0x3c, 0x0a, 0x2e, 0xdc, + 0x80, 0x1b, 0x25, 0x6c, 0xba, 0x72, 0x72, 0xe4, 0x33, 0x3f, 0x93, 0xe6, 0x62, 0xd1, 0x1b, 0xc9, + 0x32, 0x4c, 0xb1, 0xcf, 0x50, 0xf6, 0x8b, 0x67, 0xa8, 0xec, 0x7f, 0x1a, 0x4a, 0x5d, 0xe7, 0x41, + 0xa3, 0x1f, 0xb4, 0x4f, 0x7f, 0xa8, 0x90, 0x3e, 0xa4, 0x82, 0x0a, 0x6a, 0x7a, 0xe4, 0x4b, 0x96, + 0xb1, 0xe4, 0x08, 0x07, 0x83, 0xbb, 0xf9, 0x2e, 0x39, 0x7a, 0xaf, 0x1c, 0xba, 0xf8, 0x0c, 0xa8, + 0xde, 0xa5, 0x87, 0xae, 0x7a, 0x33, 0x35, 0x52, 0x4c, 0x10, 0xad, 0x46, 0x96, 0xcf, 0x54, 0x8d, + 0x5c, 0x4a, 0x30, 0xc3, 0x14, 0x73, 0x2e, 0x8f, 0x98, 0x73, 0x5a, 0x1e, 0x38, 0x53, 0x79, 0x1a, + 0x09, 0x66, 0x98, 0x62, 0x3e, 0xfc, 0xbc, 0x59, 0x39, 0x9b, 0xf3, 0xe6, 0x54, 0x0e, 0xe7, 0xcd, + 0xc3, 0x55, 0xf1, 0x73, 0xa3, 0xaa, 0xe2, 0xe4, 0x26, 0x90, 0xd6, 0x9e, 0xe7, 0x74, 0xdd, 0xa6, + 0x5c, 0x2c, 0xf9, 0xb6, 0x39, 0xcd, 0xed, 0x11, 0xf3, 0x72, 0x21, 0x23, 0xcb, 0x03, 0x18, 0x98, + 0x51, 0x8b, 0x44, 0x50, 0xea, 0x29, 0x8d, 0x6b, 0x26, 0x8f, 0xd1, 0xaf, 0x34, 0x30, 0xe1, 0x37, + 0xc2, 0x26, 0x9e, 0x2a, 0x41, 0xcd, 0x89, 0xac, 0xc2, 0xc5, 0xae, 0xeb, 0xad, 0xfb, 0xad, 0x70, + 0x9d, 0x06, 0xd2, 0xda, 0xd2, 0xa0, 0xd1, 0xdc, 0x2c, 0x6f, 0x1b, 0x7e, 0x82, 0x5e, 0xcb, 0x80, + 0x63, 0x66, 0x2d, 0xfb, 0x7f, 0x5b, 0x30, 0xbb, 0xd4, 0xf1, 0xfb, 0xad, 0xbb, 0x4e, 0xd4, 0xdc, + 0x16, 0x6e, 0x0a, 0xe4, 0x15, 0x28, 0xb9, 0x5e, 0x44, 0x83, 0x5d, 0xa7, 0x23, 0xf7, 0x27, 0x5b, + 0x99, 0x4f, 0x57, 0x64, 0xf9, 0x7b, 0xfb, 0xd5, 0xe9, 0xe5, 0x7e, 0xc0, 0xad, 0xd4, 0x62, 0xb5, + 0x42, 0x5d, 0x87, 0x7c, 0xdb, 0x82, 0xf3, 0xc2, 0xd1, 0x61, 0xd9, 0x89, 0x9c, 0xd7, 0xfb, 0x34, + 0x70, 0xa9, 0x72, 0x75, 0x18, 0x71, 0xa1, 0x4a, 0xcb, 0xaa, 0x18, 0xec, 0xc5, 0x8a, 0xfa, 0x5a, + 0x9a, 0x33, 0x0e, 0x0a, 0x63, 0xff, 0x52, 0x01, 0x1e, 0x1b, 0x4a, 0x8b, 0xcc, 0xc3, 0x98, 0xdb, + 0x92, 0x9f, 0x0e, 0x92, 0xee, 0xd8, 0x4a, 0x0b, 0xc7, 0xdc, 0x16, 0x59, 0xe0, 0x3a, 0x67, 0x40, + 0xc3, 0x50, 0x5d, 0x38, 0x97, 0xb5, 0x7a, 0x28, 0x4b, 0xd1, 0xc0, 0x20, 0x55, 0x28, 0x72, 0xff, + 0x61, 0x79, 0x9e, 0xe0, 0x5a, 0x2c, 0x77, 0xd5, 0x45, 0x51, 0x4e, 0xbe, 0x6c, 0x01, 0x08, 0x01, + 0xd9, 0x69, 0x44, 0xee, 0x92, 0x98, 0x6f, 0x33, 0x31, 0xca, 0x42, 0xca, 0xf8, 0x3f, 0x1a, 0x5c, + 0xc9, 0x06, 0x4c, 0x30, 0x85, 0xd6, 0x6f, 0x9d, 0x7a, 0x53, 0xe4, 0x37, 0x51, 0xeb, 0x9c, 0x06, + 0x4a, 0x5a, 0xac, 0xad, 0x02, 0x1a, 0xf5, 0x03, 0x8f, 0x35, 0x2d, 0xdf, 0x06, 0x4b, 0x42, 0x0a, + 0xd4, 0xa5, 0x68, 0x60, 0xd8, 0xff, 0x62, 0x0c, 0x2e, 0x66, 0x89, 0xce, 0x76, 0x9b, 0x09, 0x21, + 0xad, 0x3c, 0x1a, 0xff, 0x44, 0xfe, 0xed, 0x23, 0x7d, 0x76, 0xf4, 0x35, 0x85, 0x74, 0xa0, 0x94, + 0x7c, 0xc9, 0x4f, 0xe8, 0x16, 0x1a, 0x3b, 0x65, 0x0b, 0x69, 0xca, 0xa9, 0x56, 0xba, 0x02, 0xe3, + 0x21, 0xeb, 0xf9, 0x42, 0xf2, 0xba, 0x83, 0xf7, 0x11, 0x87, 0x30, 0x8c, 0xbe, 0xe7, 0x46, 0x32, + 0xe8, 0x46, 0x63, 0xdc, 0xf1, 0xdc, 0x08, 0x39, 0xc4, 0xfe, 0xd6, 0x18, 0xcc, 0x0f, 0xff, 0x28, + 0xf2, 0x2d, 0x0b, 0xa0, 0xc5, 0x8e, 0x2b, 0x21, 0xf7, 0x5c, 0x17, 0x3e, 0x4e, 0xce, 0x59, 0xb5, + 0xe1, 0xb2, 0xe2, 0x14, 0x3b, 0xdf, 0xe9, 0xa2, 0x10, 0x0d, 0x41, 0xc8, 0x55, 0x35, 0xf4, 0xf9, + 0x55, 0x8d, 0x98, 0x4c, 0xba, 0xce, 0x9a, 0x86, 0xa0, 0x81, 0xc5, 0xce, 0xa3, 0x9e, 0xd3, 0xa5, + 0x61, 0xcf, 0xd1, 0x21, 0x4c, 0xfc, 0x3c, 0x7a, 0x4b, 0x15, 0x62, 0x0c, 0xb7, 0x3b, 0xf0, 0xd4, + 0x31, 0xe4, 0xcc, 0x29, 0x42, 0xc4, 0xfe, 0x9f, 0x16, 0x3c, 0x2a, 0xdd, 0xcf, 0xfe, 0xc2, 0xf8, + 0x32, 0xfe, 0x99, 0x05, 0x8f, 0x0f, 0xf9, 0xe6, 0x87, 0xe0, 0xd2, 0xf8, 0x56, 0xd2, 0xa5, 0xf1, + 0xce, 0xa8, 0x43, 0x3a, 0xf3, 0x3b, 0x86, 0x78, 0x36, 0xfe, 0x5e, 0x01, 0xce, 0xb1, 0x65, 0xab, + 0xe5, 0xb7, 0x73, 0xda, 0x38, 0x9f, 0x82, 0xe2, 0xe7, 0xd9, 0x06, 0x94, 0x1e, 0x64, 0x7c, 0x57, + 0x42, 0x01, 0x23, 0x5f, 0xb1, 0x60, 0xf2, 0xf3, 0x72, 0x4f, 0x15, 0x67, 0xb9, 0x11, 0x17, 0xc3, + 0xc4, 0x37, 0x2c, 0xc8, 0x1d, 0x52, 0x04, 0x9e, 0x68, 0x07, 0x46, 0xb5, 0x95, 0x2a, 0xce, 0xe4, + 0x59, 0x98, 0xdc, 0xf2, 0x83, 0x6e, 0xbf, 0xe3, 0xa4, 0xa3, 0x1d, 0xaf, 0x8b, 0x62, 0x54, 0x70, + 0x36, 0xc9, 0x9d, 0x9e, 0xfb, 0x06, 0x0d, 0x42, 0x11, 0x87, 0x90, 0x98, 0xe4, 0x35, 0x0d, 0x41, + 0x03, 0x8b, 0xd7, 0x69, 0xb7, 0x03, 0xda, 0x76, 0x22, 0x3f, 0xe0, 0x3b, 0x87, 0x59, 0x47, 0x43, + 0xd0, 0xc0, 0x9a, 0xff, 0x24, 0x4c, 0x99, 0xc2, 0x9f, 0x28, 0x88, 0xe5, 0x53, 0x20, 0x3d, 0x19, + 0x53, 0x4b, 0x92, 0x75, 0x9c, 0x25, 0xc9, 0xfe, 0x8f, 0x63, 0x60, 0x58, 0x87, 0x1e, 0xc2, 0x54, + 0xf7, 0x12, 0x53, 0x7d, 0x44, 0xcb, 0x86, 0x61, 0xeb, 0x1a, 0x16, 0xd2, 0xb7, 0x9b, 0x0a, 0xe9, + 0xbb, 0x95, 0x1b, 0xc7, 0xc3, 0x23, 0xfa, 0xbe, 0x6f, 0xc1, 0xe3, 0x31, 0xf2, 0xa0, 0xe1, 0xf6, + 0xe8, 0x75, 0xfb, 0x45, 0xa8, 0x38, 0x71, 0x35, 0x39, 0xb1, 0x8c, 0x78, 0x2a, 0x0d, 0x42, 0x13, + 0x2f, 0x8e, 0x05, 0x29, 0x9c, 0x32, 0x16, 0x64, 0xfc, 0xf0, 0x58, 0x10, 0xfb, 0x47, 0x63, 0xf0, + 0xe4, 0xe0, 0x97, 0x99, 0x0e, 0xd2, 0x47, 0x7f, 0x5b, 0xda, 0x85, 0x7a, 0xec, 0xd4, 0x2e, 0xd4, + 0x85, 0xe3, 0xba, 0x50, 0x6b, 0xc7, 0xe5, 0xf1, 0x33, 0x77, 0x5c, 0x6e, 0xc0, 0x25, 0xe5, 0x25, + 0x79, 0xdd, 0x0f, 0x64, 0x40, 0x84, 0x5a, 0x41, 0x4a, 0xf5, 0x27, 0x65, 0x95, 0x4b, 0x98, 0x85, + 0x84, 0xd9, 0x75, 0xed, 0xef, 0x17, 0xe0, 0x42, 0xdc, 0xec, 0x4b, 0xbe, 0xd7, 0x72, 0xb9, 0xa3, + 0xcd, 0xcb, 0x30, 0x1e, 0xed, 0xf5, 0x54, 0x63, 0xff, 0x55, 0x25, 0xce, 0xc6, 0x5e, 0x8f, 0xf5, + 0xf6, 0xa3, 0x19, 0x55, 0xb8, 0xe9, 0x9c, 0x57, 0x22, 0xab, 0x7a, 0x76, 0x88, 0x1e, 0x78, 0x21, + 0x39, 0x9a, 0xdf, 0xdb, 0xaf, 0x66, 0xa4, 0x36, 0x58, 0xd0, 0x94, 0x92, 0x63, 0x9e, 0xdc, 0x83, + 0xe9, 0x8e, 0x13, 0x46, 0x77, 0x7a, 0x2d, 0x27, 0xa2, 0x1b, 0xae, 0x74, 0x61, 0x39, 0x59, 0x0c, + 0x89, 0xbe, 0xeb, 0x5f, 0x4d, 0x50, 0xc2, 0x14, 0x65, 0xb2, 0x0b, 0x84, 0x95, 0x6c, 0x04, 0x8e, + 0x17, 0x8a, 0xaf, 0x62, 0xfc, 0x4e, 0x1e, 0x10, 0xa4, 0x8f, 0xce, 0xab, 0x03, 0xd4, 0x30, 0x83, + 0x03, 0x79, 0x1a, 0x26, 0x02, 0xea, 0x84, 0x7a, 0x3b, 0xd0, 0xf3, 0x1f, 0x79, 0x29, 0x4a, 0xa8, + 0x39, 0xa1, 0x26, 0x8e, 0x98, 0x50, 0x7f, 0x64, 0xc1, 0x74, 0xdc, 0x4d, 0x0f, 0x41, 0xf5, 0xe8, + 0x26, 0x55, 0x8f, 0x1b, 0x79, 0x2d, 0x89, 0x43, 0xb4, 0x8d, 0x3f, 0x9d, 0x34, 0xbf, 0x8f, 0x47, + 0x2d, 0x7c, 0xc1, 0x74, 0x62, 0xb7, 0xf2, 0x08, 0x25, 0x4b, 0x68, 0x7b, 0x87, 0x7a, 0xaf, 0x33, + 0x5d, 0xa7, 0x25, 0xf5, 0x18, 0x39, 0xec, 0xb5, 0xae, 0xa3, 0xf4, 0x9b, 0x2c, 0x5d, 0x47, 0xd5, + 0x21, 0x77, 0xe0, 0xd1, 0x5e, 0xe0, 0xf3, 0xe0, 0xfa, 0x65, 0xea, 0xb4, 0x3a, 0xae, 0x47, 0x95, + 0x99, 0x47, 0xb8, 0x9a, 0x3c, 0x7e, 0xb0, 0x5f, 0x7d, 0x74, 0x3d, 0x1b, 0x05, 0x87, 0xd5, 0x4d, + 0x86, 0x67, 0x8e, 0x1f, 0x23, 0x3c, 0xf3, 0xe7, 0xb5, 0x31, 0x55, 0x47, 0x02, 0x7c, 0x26, 0xaf, + 0xae, 0xcc, 0x8a, 0x09, 0xd0, 0x43, 0xaa, 0x26, 0x99, 0xa2, 0x66, 0x3f, 0xdc, 0x62, 0x37, 0x71, + 0x4a, 0x8b, 0x5d, 0x1c, 0xfc, 0x31, 0xf9, 0x7e, 0x06, 0x7f, 0x94, 0x3e, 0x50, 0xc1, 0x1f, 0xdf, + 0xb6, 0xe0, 0x82, 0x33, 0x18, 0x76, 0x9d, 0x8f, 0xf1, 0x38, 0x23, 0x9e, 0xbb, 0xfe, 0xb8, 0x14, + 0x32, 0x2b, 0xba, 0x1d, 0xb3, 0x44, 0xb1, 0xdf, 0x2d, 0xc2, 0x6c, 0x5a, 0x49, 0x3a, 0xfb, 0xf8, + 0xd4, 0x5f, 0xb4, 0x60, 0x56, 0x4d, 0x70, 0xc1, 0x53, 0x1f, 0x31, 0x56, 0x73, 0x5a, 0x57, 0x84, + 0xba, 0xa7, 0xd3, 0x86, 0x6c, 0xa4, 0xb8, 0xe1, 0x00, 0x7f, 0xf2, 0x26, 0x54, 0xf4, 0xad, 0xca, + 0xa9, 0x82, 0x55, 0x79, 0x3c, 0x65, 0x2d, 0x26, 0x81, 0x26, 0x3d, 0xf2, 0xae, 0x05, 0xd0, 0x54, + 0x3b, 0x71, 0x4e, 0xa1, 0x40, 0x19, 0xda, 0x42, 0xac, 0xcf, 0xeb, 0xa2, 0x10, 0x0d, 0xc6, 0xe4, + 0x97, 0xf8, 0x7d, 0x8a, 0x1e, 0x09, 0x22, 0x1d, 0xc9, 0xc8, 0x6e, 0xef, 0x87, 0xe8, 0xce, 0xb1, + 0xb6, 0x67, 0x80, 0x42, 0x4c, 0x08, 0x61, 0xbf, 0x0c, 0xda, 0x51, 0x99, 0xad, 0xac, 0xdc, 0x55, + 0x79, 0xdd, 0x89, 0xb6, 0xe5, 0x10, 0xd4, 0x2b, 0xeb, 0x75, 0x05, 0xc0, 0x18, 0xc7, 0xfe, 0x1c, + 0x4c, 0xbf, 0x1a, 0x38, 0xbd, 0x6d, 0x97, 0xdf, 0x5b, 0xb0, 0xf3, 0xf1, 0xb3, 0x30, 0xe9, 0xb4, + 0x5a, 0x59, 0x19, 0x6e, 0x6a, 0xa2, 0x18, 0x15, 0xfc, 0x58, 0x47, 0x61, 0xfb, 0x77, 0x2d, 0x20, + 0xf1, 0xdd, 0xaf, 0xeb, 0xb5, 0xd7, 0x9c, 0xa8, 0xb9, 0xcd, 0x8e, 0x70, 0xdb, 0xbc, 0x34, 0xeb, + 0x08, 0x77, 0x43, 0x43, 0xd0, 0xc0, 0x22, 0x6f, 0x43, 0x45, 0xfc, 0x7b, 0x43, 0x1f, 0x10, 0x47, + 0xf7, 0xb7, 0xe6, 0x7b, 0x1e, 0x97, 0x49, 0x8c, 0xc2, 0x1b, 0x31, 0x07, 0x34, 0xd9, 0xb1, 0xa6, + 0x5a, 0xf1, 0xb6, 0x3a, 0xfd, 0x07, 0xad, 0xcd, 0xb8, 0xa9, 0x7a, 0x81, 0xbf, 0xe5, 0x76, 0x68, + 0xba, 0xa9, 0xd6, 0x45, 0x31, 0x2a, 0xf8, 0xf1, 0x9a, 0xea, 0xdf, 0x5a, 0x70, 0x71, 0x25, 0x8c, + 0x5c, 0x7f, 0x99, 0x86, 0x11, 0xdb, 0xf9, 0xd8, 0xfa, 0xd8, 0xef, 0x1c, 0x27, 0xe6, 0x60, 0x19, + 0x66, 0xe5, 0x3d, 0x74, 0x7f, 0x33, 0xa4, 0x91, 0x71, 0xd4, 0xd0, 0xf3, 0x78, 0x29, 0x05, 0xc7, + 0x81, 0x1a, 0x8c, 0x8a, 0xbc, 0x90, 0x8e, 0xa9, 0x14, 0x92, 0x54, 0x1a, 0x29, 0x38, 0x0e, 0xd4, + 0xb0, 0xbf, 0x57, 0x80, 0x0b, 0xfc, 0x33, 0x52, 0xf1, 0x42, 0xdf, 0x18, 0x16, 0x2f, 0x34, 0xe2, + 0x54, 0xe6, 0xbc, 0x4e, 0x11, 0x2d, 0xf4, 0x77, 0x2c, 0x98, 0x69, 0x25, 0x5b, 0x3a, 0x1f, 0xbb, + 0x5c, 0x56, 0x1f, 0x0a, 0xb7, 0xbb, 0x54, 0x21, 0xa6, 0xf9, 0x93, 0x5f, 0xb6, 0x60, 0x26, 0x29, + 0xa6, 0x5a, 0xdd, 0xcf, 0xa0, 0x91, 0xb4, 0x9f, 0x7c, 0xb2, 0x3c, 0xc4, 0xb4, 0x08, 0xf6, 0xef, + 0x8f, 0xc9, 0x2e, 0x3d, 0x8b, 0x60, 0x18, 0x72, 0x1f, 0xca, 0x51, 0x27, 0x14, 0x85, 0xf2, 0x6b, + 0x47, 0x3c, 0xb4, 0x6e, 0xac, 0x36, 0x84, 0x0b, 0x48, 0xac, 0x57, 0xca, 0x12, 0xa6, 0x1f, 0x2b, + 0x5e, 0x9c, 0x71, 0xb3, 0x27, 0x19, 0xe7, 0x72, 0x5a, 0xde, 0x58, 0x5a, 0x4f, 0x33, 0x96, 0x25, + 0x8c, 0xb1, 0xe2, 0x65, 0xff, 0xba, 0x05, 0xe5, 0x9b, 0xbe, 0x5a, 0x47, 0x7e, 0x2a, 0x07, 0x5b, + 0x94, 0x56, 0x59, 0xb5, 0xd2, 0x12, 0x9f, 0x82, 0x5e, 0x49, 0x58, 0xa2, 0x9e, 0x30, 0x68, 0x2f, + 0xf0, 0x44, 0x7f, 0x8c, 0xd4, 0x4d, 0x7f, 0x73, 0xa8, 0xf9, 0xf8, 0x57, 0x8a, 0x70, 0xee, 0x35, + 0x67, 0x8f, 0x7a, 0x91, 0x73, 0xf2, 0x4d, 0xe2, 0x45, 0xa8, 0x38, 0x3d, 0x7e, 0x97, 0x69, 0x1c, + 0x43, 0x62, 0xe3, 0x4e, 0x0c, 0x42, 0x13, 0x2f, 0x5e, 0xd0, 0x44, 0x64, 0x4a, 0xd6, 0x52, 0xb4, + 0x94, 0x82, 0xe3, 0x40, 0x0d, 0x72, 0x13, 0x88, 0x8c, 0xe6, 0xae, 0x35, 0x9b, 0x7e, 0xdf, 0x13, + 0x4b, 0x9a, 0xb0, 0xfb, 0xe8, 0xf3, 0xf0, 0xda, 0x00, 0x06, 0x66, 0xd4, 0x22, 0x9f, 0x85, 0xb9, + 0x26, 0xa7, 0x2c, 0x4f, 0x47, 0x26, 0x45, 0x71, 0x42, 0xd6, 0xb1, 0x1e, 0x4b, 0x43, 0xf0, 0x70, + 0x28, 0x05, 0x26, 0x69, 0x18, 0xf9, 0x81, 0xd3, 0xa6, 0x26, 0xdd, 0x89, 0xa4, 0xa4, 0x8d, 0x01, + 0x0c, 0xcc, 0xa8, 0x45, 0xbe, 0x08, 0xe5, 0x68, 0x3b, 0xa0, 0xe1, 0xb6, 0xdf, 0x69, 0x49, 0xdf, + 0x93, 0x11, 0x8d, 0x81, 0xb2, 0xf7, 0x37, 0x14, 0x55, 0x63, 0x78, 0xab, 0x22, 0x8c, 0x79, 0x92, + 0x00, 0x26, 0xc2, 0xa6, 0xdf, 0xa3, 0xa1, 0x3c, 0x55, 0xdc, 0xcc, 0x85, 0x3b, 0x37, 0x6e, 0x19, + 0x66, 0x48, 0xce, 0x01, 0x25, 0x27, 0xfb, 0x77, 0xc6, 0x60, 0xca, 0x44, 0x3c, 0xc6, 0xda, 0xf4, + 0x15, 0x0b, 0xa6, 0x9a, 0xbe, 0x17, 0x05, 0x7e, 0x27, 0xce, 0x52, 0x30, 0xba, 0x46, 0xc1, 0x48, + 0x2d, 0xd3, 0xc8, 0x71, 0x3b, 0x86, 0xb5, 0xce, 0x60, 0x83, 0x09, 0xa6, 0xe4, 0xeb, 0x16, 0xcc, + 0xc4, 0xae, 0x8a, 0xb1, 0xad, 0x2f, 0x57, 0x41, 0xf4, 0x52, 0x7f, 0x2d, 0xc9, 0x09, 0xd3, 0xac, + 0xed, 0x4d, 0x98, 0x4d, 0xf7, 0x36, 0x6b, 0xca, 0x9e, 0x23, 0xe7, 0x7a, 0x21, 0x6e, 0xca, 0x75, + 0x27, 0x0c, 0x91, 0x43, 0xc8, 0x73, 0x50, 0xea, 0x3a, 0x41, 0xdb, 0xf5, 0x9c, 0x0e, 0x6f, 0xc5, + 0x82, 0xb1, 0x20, 0xc9, 0x72, 0xd4, 0x18, 0xf6, 0xc7, 0x60, 0x6a, 0xcd, 0xf1, 0xda, 0xb4, 0x25, + 0xd7, 0xe1, 0xa3, 0xc3, 0x31, 0xff, 0x64, 0x1c, 0x2a, 0xc6, 0xf1, 0xf1, 0xec, 0xcf, 0x59, 0x89, + 0xec, 0x3b, 0x85, 0x1c, 0xb3, 0xef, 0x7c, 0x1a, 0x60, 0xcb, 0xf5, 0xdc, 0x70, 0xfb, 0x94, 0x79, + 0x7d, 0xf8, 0xdd, 0xfc, 0x75, 0x4d, 0x01, 0x0d, 0x6a, 0xf1, 0x05, 0x68, 0xf1, 0x90, 0x14, 0x79, + 0xef, 0x5a, 0xc6, 0x76, 0x33, 0x91, 0x87, 0xc3, 0x87, 0xd1, 0x31, 0x0b, 0x6a, 0xfb, 0x11, 0x77, + 0x53, 0x87, 0xed, 0x4a, 0x1b, 0x50, 0x0a, 0x68, 0xd8, 0xef, 0xd2, 0x53, 0x65, 0xe0, 0xe1, 0xae, + 0x37, 0x28, 0xeb, 0xa3, 0xa6, 0x34, 0xff, 0x32, 0x9c, 0x4b, 0x88, 0x70, 0xa2, 0x1b, 0x26, 0x1f, + 0x32, 0x6d, 0x14, 0xa7, 0xb9, 0x6f, 0x62, 0x7d, 0xd1, 0x31, 0x32, 0xef, 0xe8, 0xbe, 0x10, 0x0e, + 0x56, 0x02, 0x66, 0xff, 0x68, 0x02, 0xa4, 0x0f, 0xc3, 0x31, 0x96, 0x2b, 0xf3, 0xe6, 0x72, 0xec, + 0x14, 0x37, 0x97, 0x37, 0x61, 0xca, 0xf5, 0xdc, 0xc8, 0x75, 0x3a, 0xdc, 0xfe, 0x24, 0xb7, 0x53, + 0xe5, 0x81, 0x3e, 0xb5, 0x62, 0xc0, 0x32, 0xe8, 0x24, 0xea, 0x92, 0xd7, 0xa1, 0xc8, 0xf7, 0x1b, + 0x39, 0x80, 0x4f, 0xee, 0x68, 0xc1, 0x7d, 0x6c, 0x44, 0x58, 0x9a, 0xa0, 0xc4, 0x0f, 0x1f, 0x22, + 0xf5, 0x90, 0x3e, 0x7e, 0xcb, 0x71, 0x1c, 0x1f, 0x3e, 0x52, 0x70, 0x1c, 0xa8, 0xc1, 0xa8, 0x6c, + 0x39, 0x6e, 0xa7, 0x1f, 0xd0, 0x98, 0xca, 0x44, 0x92, 0xca, 0xf5, 0x14, 0x1c, 0x07, 0x6a, 0x90, + 0x2d, 0x98, 0x92, 0x65, 0xc2, 0x6d, 0x6e, 0xf2, 0x94, 0x5f, 0xc9, 0xdd, 0x23, 0xaf, 0x1b, 0x94, + 0x30, 0x41, 0x97, 0xf4, 0xe1, 0xbc, 0xeb, 0x35, 0x7d, 0xaf, 0xd9, 0xe9, 0x87, 0xee, 0x2e, 0x8d, + 0x63, 0xc2, 0x4e, 0xc3, 0xec, 0xd2, 0xc1, 0x7e, 0xf5, 0xfc, 0x4a, 0x9a, 0x1c, 0x0e, 0x72, 0x20, + 0x5f, 0xb2, 0xe0, 0x52, 0xd3, 0xf7, 0x42, 0x9e, 0xba, 0x62, 0x97, 0x5e, 0x0b, 0x02, 0x3f, 0x10, + 0xbc, 0xcb, 0xa7, 0xe4, 0xcd, 0xcd, 0x9e, 0x4b, 0x59, 0x24, 0x31, 0x9b, 0x13, 0x79, 0x0b, 0x4a, + 0xbd, 0xc0, 0xdf, 0x75, 0x5b, 0x34, 0x90, 0x2e, 0x98, 0xab, 0x79, 0xe4, 0xf3, 0x59, 0x97, 0x34, + 0xe3, 0xa5, 0x47, 0x95, 0xa0, 0xe6, 0x67, 0xff, 0xdf, 0x0a, 0x4c, 0x27, 0xd1, 0xc9, 0xcf, 0x00, + 0xf4, 0x02, 0xbf, 0x4b, 0xa3, 0x6d, 0xaa, 0x63, 0x7b, 0x6e, 0x8d, 0x9a, 0xb1, 0x45, 0xd1, 0x53, + 0x6e, 0x4b, 0x6c, 0xb9, 0x88, 0x4b, 0xd1, 0xe0, 0x48, 0x02, 0x98, 0xdc, 0x11, 0xdb, 0xae, 0xd4, + 0x42, 0x5e, 0xcb, 0x45, 0x67, 0x92, 0x9c, 0x79, 0x50, 0x8a, 0x2c, 0x42, 0xc5, 0x88, 0x6c, 0x42, + 0xe1, 0x3e, 0xdd, 0xcc, 0x27, 0x5d, 0xc0, 0x5d, 0x2a, 0x4f, 0x33, 0xf5, 0xc9, 0x83, 0xfd, 0x6a, + 0xe1, 0x2e, 0xdd, 0x44, 0x46, 0x9c, 0x7d, 0x57, 0x4b, 0xf8, 0x2e, 0xc8, 0xa5, 0xe2, 0xb5, 0x1c, + 0x1d, 0x21, 0xc4, 0x77, 0xc9, 0x22, 0x54, 0x8c, 0xc8, 0x5b, 0x50, 0xbe, 0xef, 0xec, 0xd2, 0xad, + 0xc0, 0xf7, 0x22, 0xe9, 0x2b, 0x37, 0x62, 0xb8, 0xc7, 0x5d, 0x45, 0x4e, 0xf2, 0xe5, 0xdb, 0xbb, + 0x2e, 0xc4, 0x98, 0x1d, 0xd9, 0x85, 0x92, 0x47, 0xef, 0x23, 0xed, 0xb8, 0xcd, 0x7c, 0xc2, 0x2b, + 0x6e, 0x49, 0x6a, 0x92, 0x33, 0xdf, 0xf7, 0x54, 0x19, 0x6a, 0x5e, 0xac, 0x2f, 0xef, 0xf9, 0x9b, + 0x72, 0xa1, 0x1a, 0xb1, 0x2f, 0xf5, 0xc9, 0x54, 0xf4, 0xe5, 0x4d, 0x7f, 0x13, 0x19, 0x71, 0x36, + 0x47, 0x9a, 0xda, 0x51, 0x4b, 0x2e, 0x53, 0xb7, 0xf2, 0x75, 0x50, 0x13, 0x73, 0x24, 0x2e, 0x45, + 0x83, 0x23, 0x6b, 0xdb, 0xb6, 0x34, 0x56, 0xca, 0x85, 0x6a, 0xc4, 0xb6, 0x4d, 0x9a, 0x3e, 0x45, + 0xdb, 0xaa, 0x32, 0xd4, 0xbc, 0x18, 0x5f, 0x57, 0x5a, 0xfe, 0xf2, 0x59, 0xaa, 0x92, 0x76, 0x44, + 0xc1, 0x57, 0x95, 0xa1, 0xe6, 0xc5, 0xda, 0x3b, 0xdc, 0xd9, 0xbb, 0xef, 0x74, 0x76, 0x5c, 0xaf, + 0x2d, 0x63, 0x55, 0x47, 0x4d, 0xc3, 0xbd, 0xb3, 0x77, 0x57, 0xd0, 0x33, 0xdb, 0x3b, 0x2e, 0x45, + 0x83, 0x23, 0xf9, 0x07, 0x16, 0x4c, 0xf4, 0x3a, 0xfd, 0xb6, 0xeb, 0xcd, 0x4d, 0xe5, 0xe1, 0xc4, + 0x94, 0x5c, 0x72, 0x17, 0xd6, 0x39, 0x69, 0xa1, 0x28, 0xfe, 0xb8, 0xf6, 0xbb, 0xe4, 0x85, 0x5f, + 0xfb, 0xe3, 0xea, 0x1c, 0xf5, 0x9a, 0x7e, 0xcb, 0xf5, 0xda, 0x8b, 0xf7, 0x42, 0xdf, 0x5b, 0x40, + 0xe7, 0xbe, 0xd2, 0xd1, 0xa5, 0x4c, 0xf3, 0x9f, 0x80, 0x8a, 0x41, 0xe2, 0x28, 0x45, 0x6f, 0xca, + 0x54, 0xf4, 0x7e, 0x7d, 0x02, 0xa6, 0xcc, 0xe4, 0x9b, 0xc7, 0xd0, 0xbe, 0xf4, 0x89, 0x63, 0xec, + 0x24, 0x27, 0x0e, 0x76, 0xc4, 0x34, 0x2e, 0xb8, 0x94, 0x79, 0x6b, 0x25, 0x37, 0x85, 0x3b, 0x3e, + 0x62, 0x1a, 0x85, 0x21, 0x26, 0x98, 0x9e, 0xc0, 0xe7, 0x85, 0xa9, 0xad, 0x42, 0xb1, 0x2b, 0x26, + 0xd5, 0xd6, 0x84, 0xaa, 0x76, 0x15, 0x20, 0xce, 0x12, 0x29, 0x2f, 0x3e, 0xb5, 0x3e, 0x6c, 0x64, + 0xaf, 0x34, 0xb0, 0xc8, 0xd3, 0x30, 0xc1, 0x54, 0x1f, 0xda, 0x92, 0xa1, 0xf4, 0xfa, 0x1c, 0x7f, + 0x9d, 0x97, 0xa2, 0x84, 0x92, 0x97, 0x98, 0x96, 0x1a, 0x2b, 0x2c, 0x32, 0x42, 0xfe, 0x62, 0xac, + 0xa5, 0xc6, 0x30, 0x4c, 0x60, 0x32, 0xd1, 0x29, 0xd3, 0x2f, 0xf8, 0xda, 0x60, 0x88, 0xce, 0x95, + 0x0e, 0x14, 0x30, 0x6e, 0x57, 0x4a, 0xe9, 0x23, 0x7c, 0x4e, 0x17, 0x0d, 0xbb, 0x52, 0x0a, 0x8e, + 0x03, 0x35, 0xd8, 0xc7, 0xc8, 0x3b, 0xdb, 0x8a, 0x70, 0x98, 0x1e, 0x72, 0xdb, 0xfa, 0xb3, 0xe6, + 0x59, 0x2b, 0xc7, 0x39, 0x24, 0x46, 0xed, 0xf1, 0x0f, 0x5b, 0xa3, 0x1d, 0x8b, 0x3e, 0x07, 0xd3, + 0xc9, 0x5d, 0x28, 0xf7, 0x9b, 0x8f, 0xaf, 0x8e, 0xc3, 0x85, 0x5b, 0x6d, 0xd7, 0x4b, 0x27, 0x3a, + 0xcb, 0x7a, 0xd5, 0xc0, 0x3a, 0xf1, 0xab, 0x06, 0x3a, 0x26, 0x4f, 0xbe, 0x19, 0x90, 0x1d, 0x93, + 0xa7, 0x1e, 0x70, 0x48, 0xe2, 0x92, 0x3f, 0xb2, 0xe0, 0x09, 0xa7, 0x25, 0xce, 0x05, 0x4e, 0x47, + 0x96, 0x1a, 0xc9, 0xb8, 0xe5, 0x8c, 0x0e, 0x47, 0xdc, 0xe5, 0x07, 0x3f, 0x7e, 0xa1, 0x76, 0x08, + 0x57, 0xd1, 0xe3, 0x3f, 0x26, 0xbf, 0xe0, 0x89, 0xc3, 0x50, 0xf1, 0x50, 0xf1, 0xc9, 0xdf, 0x80, + 0x99, 0xc4, 0x07, 0x4b, 0x4b, 0x78, 0x59, 0x5c, 0x58, 0x34, 0x92, 0x20, 0x4c, 0xe3, 0xce, 0xdf, + 0x86, 0x0f, 0x1f, 0x29, 0xe7, 0x89, 0x06, 0xdb, 0x77, 0x2d, 0x98, 0x32, 0x73, 0x12, 0x91, 0xe7, + 0xa0, 0x14, 0xf9, 0x3b, 0xd4, 0xbb, 0x13, 0x28, 0x87, 0x5d, 0x3d, 0xd0, 0x37, 0x78, 0x39, 0xae, + 0xa2, 0xc6, 0x60, 0xd8, 0xcd, 0x8e, 0x4b, 0xbd, 0x68, 0xa5, 0x25, 0xbb, 0x59, 0x63, 0x2f, 0x89, + 0xf2, 0x65, 0xd4, 0x18, 0xc2, 0xc7, 0x8e, 0xfd, 0x6e, 0xd0, 0x66, 0x40, 0x95, 0x7b, 0xbf, 0xe1, + 0x63, 0x17, 0xc3, 0x30, 0x81, 0x49, 0x6c, 0x6d, 0xe2, 0x1c, 0x8f, 0xef, 0x35, 0x52, 0x26, 0xc9, + 0xdf, 0xb2, 0xa0, 0x2c, 0x4c, 0xf4, 0x48, 0xb7, 0x52, 0x2e, 0xb6, 0x29, 0x23, 0x42, 0x6d, 0x7d, + 0x25, 0xcb, 0xc5, 0xf6, 0x0a, 0x8c, 0xef, 0xb8, 0x9e, 0xfa, 0x12, 0xbd, 0x2d, 0xbd, 0xe6, 0x7a, + 0x2d, 0xe4, 0x10, 0xbd, 0x71, 0x15, 0x86, 0x6e, 0x5c, 0x8b, 0x50, 0xd6, 0x8e, 0x27, 0x72, 0xf9, + 0xd7, 0xd6, 0x5b, 0xed, 0xa8, 0x82, 0x31, 0x8e, 0xfd, 0xab, 0x16, 0x4c, 0xf3, 0x18, 0xee, 0xf8, + 0x3c, 0xfc, 0xa2, 0xf6, 0x05, 0x13, 0x72, 0x3f, 0x99, 0xf4, 0x05, 0x7b, 0x6f, 0xbf, 0x5a, 0x11, + 0x51, 0xdf, 0x49, 0xd7, 0xb0, 0xcf, 0x48, 0x23, 0x1a, 0xf7, 0x58, 0x1b, 0x3b, 0xb1, 0x8d, 0x27, + 0x16, 0x53, 0x11, 0xc1, 0x98, 0x9e, 0xfd, 0x36, 0x4c, 0x99, 0xc1, 0x58, 0xe4, 0x45, 0xa8, 0xf4, + 0x5c, 0xaf, 0x9d, 0x0c, 0xda, 0xd5, 0x17, 0x0d, 0xeb, 0x31, 0x08, 0x4d, 0x3c, 0x5e, 0xcd, 0x8f, + 0xab, 0xa5, 0xee, 0x27, 0xd6, 0x7d, 0xb3, 0x5a, 0xfc, 0x87, 0x3f, 0x84, 0x90, 0x11, 0xf4, 0x97, + 0xfb, 0x43, 0x08, 0x19, 0x3c, 0xde, 0xbf, 0x87, 0x10, 0xb2, 0x84, 0xf9, 0xf3, 0xf5, 0x10, 0xc2, + 0x4f, 0xc2, 0x49, 0x73, 0xa2, 0xb2, 0xbd, 0xfe, 0xbe, 0x99, 0x58, 0x41, 0xb7, 0xb8, 0xcc, 0xac, + 0x20, 0xa1, 0xf6, 0xef, 0x8d, 0xc3, 0x6c, 0xfa, 0xc8, 0x9f, 0xb7, 0x37, 0x05, 0xf9, 0xba, 0x05, + 0xd3, 0x4e, 0x22, 0xff, 0x5c, 0x4e, 0xaf, 0x2a, 0x25, 0x68, 0x1a, 0xf9, 0xcf, 0x12, 0xe5, 0x98, + 0xe2, 0x4d, 0xfe, 0x0a, 0x4c, 0x46, 0x6e, 0x97, 0xfa, 0x7d, 0x61, 0x08, 0x2c, 0x88, 0x03, 0xf9, + 0x86, 0x28, 0x42, 0x05, 0x63, 0x8b, 0xb2, 0xcb, 0x35, 0xa8, 0x80, 0x4a, 0xcf, 0xe0, 0xd9, 0xd8, + 0x72, 0x29, 0xca, 0x51, 0x63, 0x90, 0x07, 0x30, 0x29, 0xfc, 0x2e, 0x94, 0x83, 0xcd, 0x5a, 0x4e, + 0xa6, 0x09, 0xe1, 0xda, 0x11, 0x77, 0x81, 0xf8, 0x1f, 0xa2, 0x62, 0xc7, 0xd4, 0x35, 0x08, 0x1c, + 0xaf, 0x4d, 0x79, 0x9b, 0xcb, 0xc3, 0xf4, 0x1b, 0x79, 0x59, 0x81, 0x50, 0x53, 0xae, 0x05, 0xed, + 0x50, 0x06, 0xd9, 0xe9, 0x32, 0x34, 0x38, 0xdb, 0xbf, 0x68, 0xc1, 0xdc, 0xb0, 0x8a, 0x6c, 0xa0, + 0xf0, 0x55, 0x50, 0x8e, 0x28, 0x23, 0xb6, 0xdf, 0x09, 0x22, 0x14, 0x30, 0xf2, 0x24, 0x14, 0xa8, + 0xde, 0x38, 0x74, 0xf6, 0xbd, 0x6b, 0x5e, 0x0b, 0x59, 0x39, 0xb9, 0x0a, 0xe3, 0x61, 0x44, 0x7b, + 0x29, 0xd7, 0xf9, 0xf1, 0x46, 0x44, 0x7b, 0x19, 0xb6, 0x5f, 0x8e, 0x6b, 0x7f, 0x0c, 0x4e, 0x98, + 0x42, 0xd7, 0xbe, 0x06, 0x04, 0xfd, 0x4e, 0x67, 0xd3, 0x69, 0xee, 0xdc, 0x75, 0xbd, 0x96, 0x7f, + 0x9f, 0x2f, 0xd4, 0x8b, 0x50, 0x0e, 0x64, 0x40, 0x71, 0x28, 0xe7, 0x94, 0x5e, 0xe9, 0x55, 0xa4, + 0x71, 0x88, 0x31, 0x8e, 0xfd, 0xfb, 0x63, 0x30, 0x29, 0xa3, 0xdf, 0x1f, 0x42, 0xdc, 0xc6, 0x4e, + 0xe2, 0xb6, 0x7c, 0x25, 0x97, 0xa0, 0xfd, 0xa1, 0x41, 0x1b, 0x61, 0x2a, 0x68, 0xe3, 0xb5, 0x7c, + 0xd8, 0x1d, 0x1e, 0xb1, 0xf1, 0x9d, 0x22, 0xcc, 0xa4, 0xb2, 0x09, 0xa4, 0xb2, 0x6d, 0x5b, 0xef, + 0x4b, 0xb6, 0x6d, 0x12, 0x26, 0x32, 0xae, 0xe7, 0xe7, 0xe5, 0xf9, 0x97, 0xc9, 0xd7, 0xf3, 0xf2, + 0xbf, 0x2d, 0x7e, 0x70, 0xfc, 0x6f, 0xff, 0xab, 0x05, 0x8f, 0x0d, 0xcd, 0x89, 0xc1, 0x53, 0xaa, + 0x05, 0x49, 0xa8, 0x5c, 0x2f, 0x72, 0xce, 0xfc, 0xa3, 0x6f, 0xd6, 0xd3, 0x59, 0xb0, 0xd2, 0xec, + 0xc9, 0x0b, 0x30, 0xc5, 0xd7, 0x66, 0xb6, 0x72, 0xb2, 0xb5, 0x57, 0x5c, 0x0c, 0xf2, 0x2b, 0xa2, + 0x86, 0x51, 0x8e, 0x09, 0x2c, 0xfb, 0xdb, 0x16, 0xcc, 0x0d, 0x4b, 0xb0, 0x75, 0x0c, 0xb3, 0xd5, + 0x5f, 0x4f, 0xc5, 0xbd, 0x54, 0x07, 0xe2, 0x5e, 0x52, 0x86, 0x2b, 0x15, 0xe2, 0x62, 0xd8, 0x8c, + 0x0a, 0x47, 0x84, 0x75, 0xfc, 0x41, 0x01, 0x66, 0xa5, 0x88, 0xf1, 0x91, 0xe1, 0xa5, 0x44, 0xb4, + 0xce, 0x8f, 0xa5, 0xa2, 0x75, 0x2e, 0xa6, 0xf1, 0xff, 0x32, 0x54, 0xe7, 0x83, 0x15, 0xaa, 0xf3, + 0xb5, 0x22, 0x5c, 0xca, 0xcc, 0xb3, 0x45, 0xbe, 0x9a, 0xb1, 0x53, 0xdc, 0xcd, 0x39, 0xa1, 0x97, + 0x8e, 0xea, 0x3d, 0xdb, 0xf8, 0x96, 0x5f, 0x36, 0xe3, 0x4a, 0xc4, 0xea, 0xbf, 0x75, 0x06, 0xa9, + 0xc9, 0x4e, 0x1a, 0x62, 0xf2, 0x70, 0x5f, 0x23, 0xfb, 0x73, 0xb0, 0xd4, 0x7f, 0xad, 0x00, 0xcf, + 0x1c, 0xb7, 0x65, 0x3f, 0xa0, 0x31, 0x99, 0x61, 0x22, 0x26, 0xf3, 0x21, 0xa9, 0x36, 0x67, 0x12, + 0x9e, 0xf9, 0x8f, 0xc6, 0xf5, 0xbe, 0x3b, 0x38, 0x61, 0x8f, 0xe5, 0xc6, 0x32, 0xc9, 0x54, 0x5f, + 0x95, 0xb3, 0x3d, 0xde, 0x1b, 0x26, 0x1b, 0xa2, 0xf8, 0xbd, 0xfd, 0xea, 0xf9, 0x38, 0xfd, 0x8d, + 0x2c, 0x44, 0x55, 0x89, 0x3c, 0x03, 0xa5, 0x40, 0x40, 0x55, 0x14, 0x9a, 0xf4, 0x05, 0x12, 0x65, + 0xa8, 0xa1, 0xe4, 0x8b, 0xc6, 0x59, 0x61, 0xfc, 0xac, 0xb2, 0x3c, 0x1d, 0xe6, 0xe2, 0xf4, 0x26, + 0x94, 0x42, 0x95, 0x58, 0x5c, 0x4c, 0xa7, 0xe7, 0x8f, 0x19, 0xdc, 0xe8, 0x6c, 0xd2, 0x8e, 0xca, + 0x32, 0x2e, 0xbe, 0x4f, 0xe7, 0x20, 0xd7, 0x24, 0x89, 0xad, 0x2d, 0x13, 0xe2, 0x0a, 0x06, 0x06, + 0xad, 0x12, 0x24, 0x82, 0x49, 0xf9, 0xba, 0xb0, 0x3c, 0xce, 0xae, 0xe5, 0x14, 0x25, 0x24, 0x7d, + 0xc8, 0xf9, 0x81, 0x5f, 0x59, 0xc8, 0x14, 0x2b, 0xfb, 0xfb, 0x16, 0x54, 0xe4, 0x18, 0x79, 0x08, + 0x51, 0x9e, 0xf7, 0x92, 0x51, 0x9e, 0xd7, 0x72, 0x59, 0xc2, 0x87, 0x84, 0x78, 0xde, 0x83, 0x29, + 0x33, 0xe3, 0x25, 0xf9, 0xb4, 0xb1, 0x05, 0x59, 0xa3, 0xe4, 0x90, 0x53, 0x9b, 0x54, 0xbc, 0x3d, + 0xd9, 0xbf, 0x51, 0xd6, 0xad, 0xc8, 0x0f, 0xce, 0xe6, 0xc8, 0xb7, 0x0e, 0x1d, 0xf9, 0xe6, 0xc0, + 0x1b, 0xcb, 0x7f, 0xe0, 0xbd, 0x0e, 0x25, 0xb5, 0x2c, 0x4a, 0x6d, 0xea, 0x29, 0xd3, 0xa9, 0x9c, + 0xa9, 0x64, 0x8c, 0x98, 0x31, 0x5d, 0xf8, 0x01, 0x38, 0xb6, 0xdb, 0xab, 0xe5, 0x5a, 0x93, 0x21, + 0x6f, 0x41, 0xe5, 0xbe, 0x1f, 0xec, 0x74, 0x7c, 0x87, 0xbf, 0xe6, 0x00, 0x79, 0xf8, 0x31, 0x68, + 0xdb, 0xbb, 0x88, 0xec, 0xb9, 0x1b, 0xd3, 0x47, 0x93, 0x19, 0xa9, 0xc1, 0x4c, 0xd7, 0xf5, 0x90, + 0x3a, 0x2d, 0x1d, 0xcc, 0x39, 0x2e, 0x32, 0xa9, 0x2b, 0xdd, 0x7e, 0x2d, 0x09, 0xc6, 0x34, 0x3e, + 0xb7, 0xcb, 0x05, 0x09, 0x53, 0x87, 0x4c, 0x97, 0xbc, 0x3e, 0xfa, 0x60, 0x4c, 0x9a, 0x4f, 0x44, + 0x68, 0x4b, 0xb2, 0x1c, 0x53, 0xbc, 0xc9, 0x17, 0xa0, 0x14, 0xaa, 0x77, 0x3b, 0x8b, 0x39, 0x9e, + 0x7a, 0xf4, 0xdb, 0x9d, 0xba, 0x2b, 0xf5, 0xe3, 0x9d, 0x9a, 0x21, 0x59, 0x85, 0x8b, 0xca, 0x76, + 0x93, 0x78, 0x82, 0x70, 0x22, 0xce, 0x7e, 0x86, 0x19, 0x70, 0xcc, 0xac, 0xc5, 0x74, 0x5b, 0x9e, + 0x49, 0x56, 0xdc, 0x1b, 0x1b, 0x57, 0xad, 0x7c, 0xfe, 0xb5, 0x50, 0x42, 0x0f, 0x8b, 0x55, 0x2e, + 0x8d, 0x10, 0xab, 0xdc, 0x80, 0x4b, 0x69, 0x10, 0x4f, 0x6b, 0xc7, 0x33, 0xe9, 0x19, 0x5b, 0xe8, + 0x7a, 0x16, 0x12, 0x66, 0xd7, 0x25, 0x77, 0xa1, 0x1c, 0x50, 0x7e, 0xca, 0xab, 0x29, 0x97, 0xbb, + 0x13, 0x3b, 0x17, 0xa3, 0x22, 0x80, 0x31, 0x2d, 0xd6, 0xef, 0x4e, 0x32, 0xb7, 0xf9, 0xeb, 0x39, + 0x3e, 0xec, 0x2d, 0xfb, 0x7e, 0x48, 0xba, 0x49, 0xfb, 0xdf, 0xcd, 0xc0, 0xb9, 0x84, 0x01, 0x8a, + 0x3c, 0x05, 0x45, 0x9e, 0xe7, 0x8f, 0xaf, 0x56, 0xa5, 0x78, 0x45, 0x15, 0x8d, 0x23, 0x60, 0xe4, + 0x17, 0x2c, 0x98, 0xe9, 0x25, 0xae, 0x9b, 0xd4, 0x42, 0x3e, 0xa2, 0x4d, 0x3b, 0x79, 0x87, 0x65, + 0xbc, 0x0a, 0x92, 0x64, 0x86, 0x69, 0xee, 0x6c, 0x3d, 0x90, 0x1e, 0xfa, 0x1d, 0x1a, 0x70, 0x6c, + 0xa9, 0xe8, 0x69, 0x12, 0x4b, 0x49, 0x30, 0xa6, 0xf1, 0x59, 0x0f, 0xf3, 0xaf, 0x1b, 0xe5, 0xf1, + 0xd6, 0x9a, 0x22, 0x80, 0x31, 0x2d, 0xf2, 0x0a, 0x4c, 0xcb, 0x94, 0xd6, 0xeb, 0x7e, 0xeb, 0x86, + 0x13, 0x6e, 0xcb, 0x23, 0x9f, 0x3e, 0xa2, 0x2e, 0x25, 0xa0, 0x98, 0xc2, 0xe6, 0xdf, 0x16, 0xe7, + 0x0d, 0xe7, 0x04, 0x26, 0x92, 0x8f, 0xa6, 0x2c, 0x25, 0xc1, 0x98, 0xc6, 0x27, 0xcf, 0x19, 0xdb, + 0x90, 0xf0, 0xe5, 0xd0, 0xab, 0x41, 0xc6, 0x56, 0x54, 0x83, 0x99, 0x3e, 0x3f, 0x21, 0xb7, 0x14, + 0x50, 0xce, 0x47, 0xcd, 0xf0, 0x4e, 0x12, 0x8c, 0x69, 0x7c, 0xf2, 0x32, 0x9c, 0x0b, 0xd8, 0x62, + 0xab, 0x09, 0x08, 0x07, 0x0f, 0x7d, 0x7f, 0x8f, 0x26, 0x10, 0x93, 0xb8, 0xe4, 0x55, 0x38, 0x1f, + 0x67, 0x80, 0x55, 0x04, 0x84, 0xc7, 0x87, 0x4e, 0x47, 0x58, 0x4b, 0x23, 0xe0, 0x60, 0x1d, 0xf2, + 0xb7, 0x60, 0xd6, 0x68, 0x89, 0x15, 0xaf, 0x45, 0x1f, 0xc8, 0x2c, 0x9d, 0xfc, 0x11, 0xb0, 0xa5, + 0x14, 0x0c, 0x07, 0xb0, 0xc9, 0x27, 0x61, 0xba, 0xe9, 0x77, 0x3a, 0x7c, 0x8d, 0x13, 0x0f, 0x76, + 0x88, 0x74, 0x9c, 0x22, 0x71, 0x69, 0x02, 0x82, 0x29, 0x4c, 0x72, 0x13, 0x88, 0xbf, 0xc9, 0xd4, + 0x2b, 0xda, 0x7a, 0x95, 0x7a, 0x54, 0x6a, 0x1c, 0xe7, 0x92, 0xf1, 0x41, 0xb7, 0x07, 0x30, 0x30, + 0xa3, 0x16, 0xcf, 0x66, 0x68, 0xc4, 0x53, 0x4f, 0xe7, 0xf1, 0xd2, 0x68, 0xda, 0x9e, 0x73, 0x64, + 0x30, 0x75, 0x00, 0x13, 0x22, 0x5c, 0x2b, 0x9f, 0xbc, 0x9c, 0x66, 0xee, 0xfe, 0x78, 0x8f, 0x10, + 0xa5, 0x28, 0x39, 0x91, 0x9f, 0x81, 0xf2, 0xa6, 0x7a, 0xc8, 0x85, 0x27, 0xe3, 0x1c, 0x79, 0x5f, + 0x4c, 0xbd, 0x49, 0x14, 0xdb, 0x2b, 0x34, 0x00, 0x63, 0x96, 0xe4, 0x69, 0xa8, 0xdc, 0x58, 0xaf, + 0xe9, 0x51, 0x78, 0x9e, 0xf7, 0xfe, 0x38, 0xab, 0x82, 0x26, 0x80, 0xcd, 0x30, 0xad, 0xbe, 0x91, + 0xa4, 0x13, 0x43, 0x86, 0x36, 0xc6, 0xb0, 0xb9, 0x57, 0x06, 0x36, 0xe6, 0x2e, 0xa4, 0xb0, 0x65, + 0x39, 0x6a, 0x0c, 0xf2, 0x26, 0x54, 0xe4, 0x7e, 0xc1, 0xd7, 0xa6, 0x8b, 0xa7, 0x8b, 0xd5, 0xc7, + 0x98, 0x04, 0x9a, 0xf4, 0xf8, 0x75, 0x3a, 0x7f, 0xdf, 0x82, 0x5e, 0xef, 0x77, 0x3a, 0x73, 0x97, + 0xf8, 0xba, 0x19, 0x5f, 0xa7, 0xc7, 0x20, 0x34, 0xf1, 0xc8, 0xf3, 0xca, 0xbb, 0xee, 0x91, 0x84, + 0x7f, 0x81, 0xf6, 0xae, 0xd3, 0x4a, 0xf7, 0x90, 0x70, 0x9e, 0x47, 0x8f, 0x70, 0x6b, 0xdb, 0x84, + 0x79, 0xa5, 0xf1, 0x0d, 0x4e, 0x92, 0xb9, 0xb9, 0x84, 0xed, 0x68, 0xfe, 0xee, 0x50, 0x4c, 0x3c, + 0x84, 0x0a, 0xd9, 0x84, 0x82, 0xd3, 0xd9, 0x9c, 0x7b, 0x2c, 0x0f, 0xd5, 0xb5, 0xb6, 0x5a, 0x97, + 0x23, 0x8a, 0xbb, 0xe0, 0xd6, 0x56, 0xeb, 0xc8, 0x88, 0x13, 0x17, 0xc6, 0x9d, 0xce, 0x66, 0x38, + 0x37, 0xcf, 0xe7, 0x6c, 0x6e, 0x4c, 0x62, 0xe3, 0xc1, 0x6a, 0x3d, 0x44, 0xce, 0xc2, 0xfe, 0xd2, + 0x98, 0xbe, 0x25, 0xd2, 0xa9, 0xd1, 0xdf, 0x36, 0x27, 0x90, 0x38, 0xee, 0xdc, 0xce, 0x6d, 0x02, + 0x49, 0xf5, 0xe2, 0xdc, 0xd0, 0xe9, 0xd3, 0xd3, 0x4b, 0x46, 0x2e, 0x39, 0xd5, 0x92, 0x69, 0xdf, + 0xc5, 0xe9, 0x39, 0xb9, 0x60, 0xd8, 0x5f, 0xae, 0x68, 0x2b, 0x68, 0xca, 0x33, 0x2d, 0x80, 0xa2, + 0x1b, 0x46, 0xae, 0x9f, 0x63, 0x08, 0x7b, 0x2a, 0x5f, 0x3a, 0x8f, 0x90, 0xe1, 0x00, 0x14, 0xac, + 0x18, 0x4f, 0xaf, 0xed, 0x7a, 0x0f, 0xe4, 0xe7, 0xbf, 0x9e, 0xbb, 0xcb, 0x99, 0xe0, 0xc9, 0x01, + 0x28, 0x58, 0x91, 0x7b, 0x62, 0x50, 0x17, 0xf2, 0xe8, 0xeb, 0xda, 0x6a, 0x3d, 0xc5, 0x2f, 0x39, + 0xb8, 0xef, 0x41, 0x21, 0xec, 0xba, 0x52, 0x5d, 0x1a, 0x91, 0x57, 0x63, 0x6d, 0x25, 0x8b, 0x57, + 0x63, 0x6d, 0x05, 0x19, 0x13, 0x7e, 0xd5, 0xef, 0x74, 0x37, 0x9d, 0x30, 0x74, 0x5a, 0xda, 0x3a, + 0x33, 0xe2, 0x55, 0x7f, 0x4d, 0xd3, 0x4b, 0xb1, 0xe6, 0x57, 0xfd, 0x31, 0x14, 0x0d, 0xce, 0xe4, + 0x2d, 0x98, 0x74, 0xc4, 0x43, 0x93, 0x32, 0x5e, 0x20, 0x9f, 0xd7, 0x53, 0x53, 0x12, 0x70, 0x33, + 0x8d, 0x04, 0xa1, 0x62, 0xc8, 0x78, 0x47, 0x81, 0x43, 0xb7, 0xdc, 0x1d, 0x69, 0x1c, 0x6a, 0x8c, + 0xfc, 0x14, 0x0a, 0x23, 0x96, 0xc5, 0x5b, 0x82, 0x50, 0x31, 0x24, 0x3f, 0x67, 0xc1, 0xb9, 0xae, + 0xe3, 0x39, 0x3a, 0x0a, 0x34, 0x9f, 0x58, 0x61, 0x33, 0xae, 0x34, 0xd6, 0x10, 0xd7, 0x4c, 0x46, + 0x98, 0xe4, 0x4b, 0x76, 0x61, 0xc2, 0xe1, 0x4f, 0xe0, 0xca, 0xa3, 0x18, 0xe6, 0xf1, 0x9c, 0x6e, + 0xaa, 0x0d, 0xf8, 0xe2, 0x22, 0x1f, 0xda, 0x95, 0xdc, 0xc8, 0xaf, 0x59, 0x30, 0x29, 0x5c, 0xd9, + 0x99, 0x42, 0xca, 0xbe, 0xfd, 0x73, 0x67, 0xf0, 0xee, 0x82, 0x74, 0xb3, 0x97, 0xce, 0x59, 0x1f, + 0xd1, 0x7e, 0xba, 0xa2, 0xf4, 0x50, 0x47, 0x7b, 0x25, 0x1d, 0x53, 0x7d, 0xbb, 0xce, 0x83, 0xc4, + 0x43, 0x37, 0xa6, 0xea, 0xbb, 0x96, 0x82, 0xe1, 0x00, 0xf6, 0xfc, 0x27, 0x61, 0xca, 0x94, 0xe3, + 0x44, 0xce, 0xfa, 0x3f, 0x2c, 0x00, 0xf0, 0xae, 0x12, 0x99, 0x63, 0xba, 0x3c, 0xcd, 0xf4, 0xb6, + 0xdf, 0xca, 0xe9, 0xc1, 0x4d, 0x23, 0x01, 0x0c, 0xc8, 0x9c, 0xd2, 0xdb, 0x7e, 0x0b, 0x25, 0x13, + 0xd2, 0x86, 0xf1, 0x9e, 0x13, 0x6d, 0xe7, 0x9f, 0x6d, 0xa6, 0x24, 0x42, 0xa8, 0xa3, 0x6d, 0xe4, + 0x0c, 0xc8, 0x3b, 0x56, 0xec, 0xf7, 0x54, 0xc8, 0x23, 0x53, 0x6e, 0xdc, 0x66, 0x0b, 0xd2, 0xd3, + 0x29, 0x95, 0x30, 0x36, 0xed, 0xff, 0x34, 0xff, 0xae, 0x05, 0x53, 0x26, 0x6a, 0x46, 0x37, 0xfd, + 0xb4, 0xd9, 0x4d, 0x79, 0xb6, 0x87, 0xd9, 0xe3, 0xff, 0xdd, 0x02, 0xc0, 0xbe, 0xd7, 0xe8, 0x77, + 0xbb, 0x4c, 0x6d, 0xd7, 0x31, 0x09, 0xd6, 0xb1, 0x63, 0x12, 0xc6, 0x4e, 0x18, 0x93, 0x50, 0x38, + 0x51, 0x4c, 0xc2, 0xf8, 0xc9, 0x63, 0x12, 0x8a, 0xc3, 0x63, 0x12, 0xec, 0x6f, 0x5a, 0x70, 0x7e, + 0x60, 0xbf, 0x62, 0x9a, 0x74, 0xe0, 0xfb, 0xd1, 0x10, 0x7f, 0x56, 0x8c, 0x41, 0x68, 0xe2, 0x91, + 0x65, 0x98, 0x95, 0x8f, 0xaa, 0x34, 0x7a, 0x1d, 0x37, 0x33, 0x13, 0xd0, 0x46, 0x0a, 0x8e, 0x03, + 0x35, 0xec, 0x7f, 0x6d, 0x41, 0xc5, 0xc8, 0x1f, 0xc0, 0x7d, 0xce, 0xf8, 0x8d, 0x57, 0xda, 0xe7, + 0x8c, 0x5f, 0x75, 0x09, 0x98, 0xb8, 0x86, 0x6e, 0x1b, 0x29, 0xf7, 0xe3, 0x6b, 0x68, 0x56, 0x8a, + 0x12, 0x2a, 0x92, 0xa9, 0x4b, 0xe7, 0xb3, 0x82, 0x99, 0x4c, 0x9d, 0xf6, 0x84, 0xab, 0x59, 0xec, + 0xe2, 0x36, 0x7e, 0xb4, 0x8b, 0x5b, 0x31, 0xdb, 0xc5, 0xcd, 0xbe, 0x0d, 0x53, 0xc2, 0x57, 0xfb, + 0x35, 0xba, 0x77, 0xec, 0x17, 0x6b, 0xd9, 0x68, 0x4f, 0xf9, 0xcc, 0xb1, 0xea, 0xac, 0xdc, 0xfe, + 0xa7, 0x16, 0xa4, 0xde, 0x58, 0x32, 0x6e, 0x60, 0xac, 0xa1, 0x37, 0x30, 0xa6, 0xd5, 0x7e, 0xec, + 0x50, 0xab, 0xfd, 0x4d, 0x20, 0x5d, 0x36, 0x15, 0x92, 0x0b, 0x6d, 0x21, 0xf9, 0xf0, 0xc5, 0xda, + 0x00, 0x06, 0x66, 0xd4, 0xb2, 0xff, 0x89, 0x10, 0xd6, 0x7c, 0x75, 0xe9, 0xe8, 0x06, 0xe8, 0x43, + 0x91, 0x93, 0x92, 0xf6, 0xb7, 0x11, 0x6d, 0xd7, 0x83, 0x59, 0xbf, 0xe2, 0x8e, 0x94, 0x53, 0x9e, + 0x73, 0xb3, 0xff, 0x40, 0xc8, 0x6a, 0x3c, 0xcb, 0x74, 0x0c, 0x59, 0xbb, 0x49, 0x59, 0x6f, 0xe4, + 0xb5, 0x56, 0x66, 0xcb, 0x48, 0x16, 0x00, 0x7a, 0x34, 0x68, 0x52, 0x2f, 0x52, 0x51, 0x54, 0x45, + 0x19, 0xcf, 0xab, 0x4b, 0xd1, 0xc0, 0xb0, 0xbf, 0xc1, 0x26, 0x50, 0xfc, 0x96, 0x33, 0x79, 0x26, + 0xed, 0x08, 0x9c, 0x9e, 0x1c, 0xda, 0x0f, 0xd8, 0x88, 0xad, 0x19, 0x3b, 0x22, 0xb6, 0xe6, 0x59, + 0x98, 0x0c, 0xfc, 0x0e, 0xad, 0x05, 0x5e, 0xda, 0x47, 0x07, 0x59, 0x31, 0xde, 0x42, 0x05, 0xb7, + 0x7f, 0xc5, 0x82, 0xd9, 0x74, 0xf0, 0x5f, 0xee, 0xde, 0xc9, 0x66, 0x86, 0x82, 0xc2, 0xc9, 0x33, + 0x14, 0xd8, 0xef, 0x30, 0x21, 0x23, 0xb7, 0xb9, 0xe3, 0x7a, 0x22, 0xa8, 0x9f, 0xb5, 0xdc, 0xb3, + 0x30, 0x49, 0xe5, 0x9b, 0xb4, 0xc2, 0x8c, 0xac, 0x85, 0x54, 0x4f, 0xd1, 0x2a, 0x38, 0xa9, 0xc1, + 0x8c, 0xba, 0x3c, 0x53, 0xb6, 0x7f, 0x91, 0x8c, 0x44, 0xdb, 0x1a, 0x97, 0x93, 0x60, 0x4c, 0xe3, + 0xdb, 0x5f, 0x84, 0x8a, 0xb1, 0x29, 0xf1, 0xf5, 0xfb, 0x81, 0xd3, 0x1c, 0xf0, 0xb5, 0xbd, 0xc6, + 0x0a, 0x51, 0xc0, 0xf8, 0x15, 0x85, 0x88, 0x4d, 0x4a, 0xad, 0x7b, 0x32, 0x22, 0x49, 0x42, 0x19, + 0xb1, 0x80, 0xb6, 0xe9, 0x03, 0xf5, 0x22, 0x82, 0x22, 0x86, 0xac, 0x10, 0x05, 0xcc, 0x7e, 0x0e, + 0x4a, 0x2a, 0x65, 0x14, 0xcf, 0xbb, 0xa2, 0xcc, 0xe7, 0x66, 0xde, 0x15, 0x3f, 0x88, 0x90, 0x43, + 0xec, 0x37, 0xa0, 0xa4, 0x32, 0x5b, 0x1d, 0x8d, 0xcd, 0x96, 0xa2, 0xd0, 0x73, 0x6f, 0xf8, 0x61, + 0xa4, 0xd2, 0x71, 0x89, 0x1b, 0xbe, 0x5b, 0x2b, 0xbc, 0x0c, 0x35, 0xd4, 0xfe, 0x33, 0x0b, 0x2a, + 0x1b, 0x1b, 0xab, 0xfa, 0xe0, 0x8f, 0xf0, 0x48, 0x28, 0x5a, 0xa8, 0xb6, 0x15, 0x51, 0xd3, 0x95, + 0x40, 0x2c, 0x7c, 0xf3, 0x07, 0xfb, 0xd5, 0x47, 0x1a, 0x99, 0x18, 0x38, 0xa4, 0x26, 0x59, 0x81, + 0x0b, 0x26, 0x44, 0xa6, 0x49, 0x90, 0x6b, 0x24, 0x7f, 0xc4, 0xb8, 0x31, 0x08, 0xc6, 0xac, 0x3a, + 0x69, 0x52, 0x72, 0xbb, 0x37, 0xdf, 0x43, 0x6e, 0x0c, 0x82, 0x31, 0xab, 0x8e, 0xfd, 0x3c, 0xcc, + 0xa4, 0xee, 0xb8, 0x8f, 0x91, 0x9e, 0xe6, 0x77, 0x0a, 0x30, 0x65, 0x5e, 0x75, 0x1e, 0x63, 0xfd, + 0x3a, 0xfe, 0xb6, 0x90, 0x71, 0x3d, 0x59, 0x38, 0xe1, 0xf5, 0xa4, 0x79, 0x1f, 0x3c, 0x7e, 0xb6, + 0xf7, 0xc1, 0xc5, 0x7c, 0xee, 0x83, 0x0d, 0xbf, 0x85, 0x89, 0x87, 0xe7, 0xb7, 0xf0, 0xdb, 0x45, + 0x98, 0x4e, 0xe6, 0x3b, 0x3d, 0x46, 0x4f, 0x3e, 0x37, 0xd0, 0x93, 0x27, 0xbc, 0x0f, 0x29, 0x8c, + 0x7a, 0x1f, 0x32, 0x3e, 0xea, 0x7d, 0x48, 0xf1, 0x14, 0xf7, 0x21, 0x83, 0xb7, 0x19, 0x13, 0xc7, + 0xbe, 0xcd, 0xf8, 0x94, 0x76, 0xf1, 0x9c, 0x4c, 0xb8, 0x00, 0xc5, 0x2e, 0x9e, 0x24, 0xd9, 0x0d, + 0x4b, 0x7e, 0x2b, 0xd3, 0x35, 0xb5, 0x74, 0x84, 0xdd, 0x37, 0xc8, 0xf4, 0xc8, 0x3c, 0xf9, 0x95, + 0xeb, 0x23, 0x27, 0xf0, 0xc6, 0x7c, 0x11, 0x2a, 0x72, 0x3c, 0x71, 0xe5, 0x1b, 0x92, 0x8a, 0x7b, + 0x23, 0x06, 0xa1, 0x89, 0xc7, 0x06, 0x46, 0x2f, 0x9e, 0x20, 0xfc, 0x66, 0xae, 0x92, 0xbc, 0x99, + 0x5b, 0x4f, 0x82, 0x31, 0x8d, 0x6f, 0x7f, 0x01, 0x2e, 0x65, 0x9a, 0x60, 0xb8, 0xf9, 0x9b, 0xeb, + 0x85, 0xb4, 0x25, 0x11, 0x0c, 0x31, 0x52, 0xcf, 0xa0, 0xcc, 0xdf, 0x1d, 0x8a, 0x89, 0x87, 0x50, + 0xb1, 0x7f, 0xb3, 0x00, 0xd3, 0xc9, 0xb7, 0x70, 0xc9, 0x7d, 0x6d, 0xb0, 0xcd, 0xc5, 0x56, 0x2c, + 0xc8, 0x1a, 0x39, 0x34, 0x87, 0x5e, 0xf4, 0xdc, 0xe7, 0xe3, 0x6b, 0x53, 0x27, 0xf4, 0x3c, 0x3b, + 0xc6, 0xf2, 0x86, 0x45, 0xb2, 0xe3, 0xcf, 0xdd, 0xc6, 0xe1, 0xb6, 0xf2, 0x1c, 0x9f, 0x3b, 0xf7, + 0x38, 0x6c, 0x54, 0xb3, 0x42, 0x83, 0x2d, 0xdb, 0x5b, 0x76, 0x69, 0xe0, 0x6e, 0xb9, 0xfa, 0x1d, + 0x7f, 0xbe, 0x72, 0xbf, 0x21, 0xcb, 0x50, 0x43, 0xed, 0x77, 0xc6, 0xa0, 0xcc, 0xb3, 0x83, 0x5d, + 0x0f, 0xfc, 0x2e, 0x7f, 0x30, 0x32, 0x34, 0xce, 0x4c, 0xb2, 0xdb, 0x6e, 0x8e, 0xfa, 0x2a, 0x6b, + 0x4c, 0x51, 0xba, 0xbb, 0x1b, 0x25, 0x98, 0xe0, 0x48, 0x7a, 0x50, 0xda, 0x92, 0xd9, 0x8c, 0x65, + 0xdf, 0x8d, 0x98, 0x91, 0x53, 0xe5, 0x46, 0x16, 0x4d, 0xa0, 0xfe, 0xa1, 0xe6, 0x62, 0x3b, 0x30, + 0x93, 0x4a, 0xef, 0x92, 0x7b, 0x0e, 0xe4, 0xff, 0x35, 0x0e, 0x65, 0x1d, 0x85, 0x46, 0x3e, 0x91, + 0x30, 0x60, 0x95, 0xeb, 0x1f, 0x36, 0x5e, 0x33, 0xdb, 0xf6, 0x5b, 0xef, 0xed, 0x57, 0x67, 0x34, + 0x72, 0xca, 0x18, 0xf5, 0x24, 0x14, 0xfa, 0x41, 0x27, 0x7d, 0x42, 0xbd, 0x83, 0xab, 0xc8, 0xca, + 0xcd, 0xc8, 0xb9, 0xc2, 0xc3, 0x8d, 0x9c, 0xbb, 0x02, 0xe3, 0x9b, 0x7e, 0x6b, 0x2f, 0xfd, 0xfa, + 0x59, 0xdd, 0x6f, 0xed, 0x21, 0x87, 0x90, 0x57, 0x60, 0x5a, 0x86, 0x03, 0x2a, 0x25, 0xa6, 0xc8, + 0xf5, 0x54, 0xed, 0xb8, 0xb0, 0x91, 0x80, 0x62, 0x0a, 0x9b, 0xed, 0xb2, 0xf7, 0x42, 0xdf, 0xe3, + 0x99, 0xad, 0x27, 0x92, 0xb7, 0x9c, 0x37, 0x1b, 0xb7, 0x6f, 0x71, 0x43, 0x9a, 0xc6, 0x48, 0x44, + 0x1c, 0x4e, 0x1e, 0x19, 0x71, 0xb8, 0x2c, 0x68, 0x33, 0x69, 0xf9, 0x8e, 0x32, 0x55, 0x7f, 0x46, + 0xd1, 0x65, 0x65, 0xef, 0xed, 0x1f, 0x62, 0x24, 0xd5, 0x35, 0xb3, 0x62, 0x33, 0xcb, 0xef, 0x5f, + 0x6c, 0xa6, 0x7d, 0x07, 0x66, 0x52, 0xfd, 0xa7, 0x0c, 0x1c, 0x56, 0xb6, 0x81, 0xe3, 0x78, 0xef, + 0xa7, 0xfd, 0x73, 0x0b, 0xce, 0x0f, 0xac, 0x48, 0xc7, 0x0d, 0x92, 0x4d, 0xef, 0x8d, 0x63, 0xa7, + 0xdf, 0x1b, 0x0b, 0x27, 0xdb, 0x1b, 0xeb, 0x9b, 0xdf, 0xfd, 0xc1, 0xe5, 0x0f, 0x7d, 0xef, 0x07, + 0x97, 0x3f, 0xf4, 0x87, 0x3f, 0xb8, 0xfc, 0xa1, 0x77, 0x0e, 0x2e, 0x5b, 0xdf, 0x3d, 0xb8, 0x6c, + 0x7d, 0xef, 0xe0, 0xb2, 0xf5, 0x87, 0x07, 0x97, 0xad, 0xff, 0x72, 0x70, 0xd9, 0xfa, 0xe6, 0x9f, + 0x5c, 0xfe, 0xd0, 0xa7, 0x3f, 0x15, 0xf7, 0xd4, 0xa2, 0xea, 0x29, 0xfe, 0xe3, 0xa3, 0xaa, 0x5f, + 0x16, 0x7b, 0x3b, 0xed, 0x45, 0xd6, 0x53, 0x8b, 0xba, 0x44, 0xf5, 0xd4, 0xff, 0x0b, 0x00, 0x00, + 0xff, 0xff, 0xbc, 0x60, 0x61, 0x0a, 0xfe, 0xa7, 0x00, 0x00, } func (m *ALBStatus) Marshal() (dAtA []byte, err error) { @@ -8022,6 +8055,18 @@ func (m *PrometheusMetric) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.RangeQuery != nil { + { + size, err := m.RangeQuery.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } if len(m.Headers) > 0 { for iNdEx := len(m.Headers) - 1; iNdEx >= 0; iNdEx-- { { @@ -8072,6 +8117,44 @@ func (m *PrometheusMetric) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *PrometheusRangeQueryArgs) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PrometheusRangeQueryArgs) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PrometheusRangeQueryArgs) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.Step) + copy(dAtA[i:], m.Step) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Step))) + i-- + dAtA[i] = 0x1a + i -= len(m.End) + copy(dAtA[i:], m.End) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.End))) + i-- + dAtA[i] = 0x12 + i -= len(m.Start) + copy(dAtA[i:], m.Start) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Start))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *RequiredDuringSchedulingIgnoredDuringExecution) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -11954,6 +12037,25 @@ func (m *PrometheusMetric) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + if m.RangeQuery != nil { + l = m.RangeQuery.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + return n +} + +func (m *PrometheusRangeQueryArgs) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Start) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.End) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Step) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -13985,6 +14087,19 @@ func (this *PrometheusMetric) String() string { `Timeout:` + valueToStringGenerated(this.Timeout) + `,`, `Insecure:` + fmt.Sprintf("%v", this.Insecure) + `,`, `Headers:` + repeatedStringForHeaders + `,`, + `RangeQuery:` + strings.Replace(this.RangeQuery.String(), "PrometheusRangeQueryArgs", "PrometheusRangeQueryArgs", 1) + `,`, + `}`, + }, "") + return s +} +func (this *PrometheusRangeQueryArgs) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&PrometheusRangeQueryArgs{`, + `Start:` + fmt.Sprintf("%v", this.Start) + `,`, + `End:` + fmt.Sprintf("%v", this.End) + `,`, + `Step:` + fmt.Sprintf("%v", this.Step) + `,`, `}`, }, "") return s @@ -28007,6 +28122,188 @@ func (m *PrometheusMetric) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RangeQuery", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RangeQuery == nil { + m.RangeQuery = &PrometheusRangeQueryArgs{} + } + if err := m.RangeQuery.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *PrometheusRangeQueryArgs) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PrometheusRangeQueryArgs: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PrometheusRangeQueryArgs: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Start", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Start = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field End", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.End = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Step", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Step = DurationString(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/rollouts/v1alpha1/generated.proto b/pkg/apis/rollouts/v1alpha1/generated.proto index eebb4453cc..4629152647 100644 --- a/pkg/apis/rollouts/v1alpha1/generated.proto +++ b/pkg/apis/rollouts/v1alpha1/generated.proto @@ -1218,6 +1218,22 @@ message PrometheusMetric { // +patchMergeKey=key // +patchStrategy=merge repeated WebMetricHeader headers = 6; + + // Arguments for prometheus + // +optional + optional PrometheusRangeQueryArgs rangeQuery = 7; +} + +// Arguments to perform a prometheus range query +message PrometheusRangeQueryArgs { + // The start time to query in expr format e.g. now(), now() - duration("1h"), now() - duration("{{args.lookback_duration}}") + optional string start = 1; + + // The end time to query in expr format e.g. now(), now() - duration("1h"), now() - duration("{{args.lookback_duration}}") + optional string end = 2; + + // The maximum time between two slices from the start to end (e.g. 30s, 5m, 1h). + optional string step = 3; } // RequiredDuringSchedulingIgnoredDuringExecution defines inter-pod scheduling rule to be RequiredDuringSchedulingIgnoredDuringExecution diff --git a/pkg/apis/rollouts/v1alpha1/openapi_generated.go b/pkg/apis/rollouts/v1alpha1/openapi_generated.go index 6c18e64a2b..0f658f5611 100644 --- a/pkg/apis/rollouts/v1alpha1/openapi_generated.go +++ b/pkg/apis/rollouts/v1alpha1/openapi_generated.go @@ -100,6 +100,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PodTemplateMetadata": schema_pkg_apis_rollouts_v1alpha1_PodTemplateMetadata(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PreferredDuringSchedulingIgnoredDuringExecution": schema_pkg_apis_rollouts_v1alpha1_PreferredDuringSchedulingIgnoredDuringExecution(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PrometheusMetric": schema_pkg_apis_rollouts_v1alpha1_PrometheusMetric(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PrometheusRangeQueryArgs": schema_pkg_apis_rollouts_v1alpha1_PrometheusRangeQueryArgs(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.RequiredDuringSchedulingIgnoredDuringExecution": schema_pkg_apis_rollouts_v1alpha1_RequiredDuringSchedulingIgnoredDuringExecution(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.RollbackWindowSpec": schema_pkg_apis_rollouts_v1alpha1_RollbackWindowSpec(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.Rollout": schema_pkg_apis_rollouts_v1alpha1_Rollout(ref), @@ -3638,11 +3639,51 @@ func schema_pkg_apis_rollouts_v1alpha1_PrometheusMetric(ref common.ReferenceCall }, }, }, + "rangeQuery": { + SchemaProps: spec.SchemaProps{ + Description: "Arguments for prometheus", + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PrometheusRangeQueryArgs"), + }, + }, }, }, }, Dependencies: []string{ - "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.Authentication", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.WebMetricHeader"}, + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.Authentication", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PrometheusRangeQueryArgs", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.WebMetricHeader"}, + } +} + +func schema_pkg_apis_rollouts_v1alpha1_PrometheusRangeQueryArgs(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Arguments to perform a prometheus range query", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "start": { + SchemaProps: spec.SchemaProps{ + Description: "The start time to query in expr format e.g. now(), now() - duration(\"1h\"), now() - duration(\"{{args.lookback_duration}}\")", + Type: []string{"string"}, + Format: "", + }, + }, + "end": { + SchemaProps: spec.SchemaProps{ + Description: "The end time to query in expr format e.g. now(), now() - duration(\"1h\"), now() - duration(\"{{args.lookback_duration}}\")", + Type: []string{"string"}, + Format: "", + }, + }, + "step": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum time between two slices from the start to end (e.g. 30s, 5m, 1h).", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, } } diff --git a/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go index 496cedc2a0..373d85fcc6 100644 --- a/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go @@ -1991,6 +1991,11 @@ func (in *PrometheusMetric) DeepCopyInto(out *PrometheusMetric) { *out = make([]WebMetricHeader, len(*in)) copy(*out, *in) } + if in.RangeQuery != nil { + in, out := &in.RangeQuery, &out.RangeQuery + *out = new(PrometheusRangeQueryArgs) + **out = **in + } return } @@ -2004,6 +2009,22 @@ func (in *PrometheusMetric) DeepCopy() *PrometheusMetric { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *PrometheusRangeQueryArgs) DeepCopyInto(out *PrometheusRangeQueryArgs) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrometheusRangeQueryArgs. +func (in *PrometheusRangeQueryArgs) DeepCopy() *PrometheusRangeQueryArgs { + if in == nil { + return nil + } + out := new(PrometheusRangeQueryArgs) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *RequiredDuringSchedulingIgnoredDuringExecution) DeepCopyInto(out *RequiredDuringSchedulingIgnoredDuringExecution) { *out = *in diff --git a/ui/src/models/rollout/generated/api.ts b/ui/src/models/rollout/generated/api.ts index 6d3fddd554..3906c7e8d3 100755 --- a/ui/src/models/rollout/generated/api.ts +++ b/ui/src/models/rollout/generated/api.ts @@ -1856,6 +1856,37 @@ export interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusM * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusMetric */ headers?: Array; + /** + * + * @type {GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusMetric + */ + rangeQuery?: GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs; +} +/** + * + * @export + * @interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs + */ +export interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs { + /** + * + * @type {string} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs + */ + start?: string; + /** + * + * @type {string} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs + */ + end?: string; + /** + * The maximum time between two slices from the start to end (e.g. 30s, 5m, 1h). + * @type {string} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PrometheusRangeQueryArgs + */ + step?: string; } /** * diff --git a/utils/evaluate/evaluate.go b/utils/evaluate/evaluate.go index a2c9a607cd..435622303e 100644 --- a/utils/evaluate/evaluate.go +++ b/utils/evaluate/evaluate.go @@ -6,6 +6,7 @@ import ( "math" "reflect" "strconv" + "time" "github.com/antonmedv/expr" "github.com/antonmedv/expr/file" @@ -56,6 +57,39 @@ func EvaluateResult(result any, metric v1alpha1.Metric, logCtx logrus.Entry) (v1 return v1alpha1.AnalysisPhaseSuccessful, nil } +func EvalTime(expression string) (time.Time, error) { + var err error + + env := map[string]any{ + "isNaN": math.IsNaN, + "isInf": isInf, + } + + unwrapFileErr := func(e error) error { + if fileErr, ok := err.(*file.Error); ok { + e = errors.New(fileErr.Message) + } + return e + } + + program, err := expr.Compile(expression, expr.Env(env)) + if err != nil { + return time.Time{}, unwrapFileErr(err) + } + + output, err := expr.Run(program, env) + if err != nil { + return time.Time{}, unwrapFileErr(err) + } + + switch val := output.(type) { + case time.Time: + return val, nil + default: + return time.Time{}, fmt.Errorf("expected time.Time, but got %T", val) + } +} + // EvalCondition evaluates the condition with the resultValue as an input func EvalCondition(resultValue any, condition string) (bool, error) { var err error diff --git a/utils/evaluate/evaluate_test.go b/utils/evaluate/evaluate_test.go index 7839e47256..61dfc702b0 100644 --- a/utils/evaluate/evaluate_test.go +++ b/utils/evaluate/evaluate_test.go @@ -5,6 +5,7 @@ import ( "math" "reflect" "testing" + "time" "github.com/sirupsen/logrus" "github.com/stretchr/testify/assert" @@ -329,3 +330,21 @@ func TestValueFromPointer(t *testing.T) { assert.True(t, valueFromPointer(1) == 1) assert.True(t, valueFromPointer(false) == false) } + +func TestEvalTimeWithSuccessExpr(t *testing.T) { + status, err := EvalTime(`date("2023-08-14 00:00:00", "2006-01-02 15:04:05", "UTC") - duration("1h")`) + assert.Equal(t, time.Date(2023, time.August, 13, 23, 0, 0, 0, time.UTC), status) + assert.NoError(t, err) +} + +func TestEvalTimeWithNotTimeResult(t *testing.T) { + status, err := EvalTime(`hello`) + assert.Equal(t, time.Time{}, status) + assert.Error(t, err) +} + +func TestEvalTimeWithInvalidExpression(t *testing.T) { + status, err := EvalTime(`now() -- ?`) + assert.Equal(t, time.Time{}, status) + assert.Error(t, err) +}