diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index a397270d23..68b39ed6a1 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -28,7 +28,7 @@ go get -u github.com/golangci/golangci-lint/cmd/golangci-lint ``` Brew users can quickly install the lot: - + ```bash brew install go kubectl kustomize golangci-lint protobuf swagger-codegen ``` @@ -76,7 +76,7 @@ make test ## Running E2E tests The end-to-end tests need to run against a kubernetes cluster with the Argo Rollouts controller -running. The rollout controller can be started with the command: +running. The rollout controller can be started with the command: ``` make start-e2e @@ -106,8 +106,8 @@ make test-e2e E2E_TEST_OPTIONS="-testify.m ^TestRolloutRestart$" 3. The e2e tests are designed to run as quickly as possible, eliminating readiness and termination delays. However, it is often desired to artificially slow down the tests for debugging purposes, -as well as to understand what the test is doing. To delay startup and termination of pods, set the -`E2E_POD_DELAY` to an integer value in seconds. This environment variable is often coupled with +as well as to understand what the test is doing. To delay startup and termination of pods, set the +`E2E_POD_DELAY` to an integer value in seconds. This environment variable is often coupled with `E2E_TEST_OPTIONS` to debug and slow down a specific test. ```shell @@ -176,14 +176,14 @@ kubectl -n argo-rollouts apply -f manifests/install.yaml ``` ## Upgrading Kubernetes Libraries -Argo Rollouts has a dependency on the kubernetes/kubernetes repo for some of the functionality that has not been -pushed into the other kubernetes repositories yet. In order to import the kubernetes/kubernetes repo, all of the -associated repos have to pinned to the correct version specified by the kubernetes/kubernetes release. The +Argo Rollouts has a dependency on the kubernetes/kubernetes repo for some of the functionality that has not been +pushed into the other kubernetes repositories yet. In order to import the kubernetes/kubernetes repo, all of the +associated repos have to pinned to the correct version specified by the kubernetes/kubernetes release. The `./hack/update-k8s-dependencies.sh` updates all the dependencies to the those correct versions. ## Documentation Changes -Modify contents in `docs/` directory. +Modify contents in `docs/` directory. Preview changes in your browser by visiting http://localhost:8000 after running: diff --git a/docs/analysis/graphite.md b/docs/analysis/graphite.md new file mode 100644 index 0000000000..d238b84e5a --- /dev/null +++ b/docs/analysis/graphite.md @@ -0,0 +1,35 @@ +# Graphite Metrics + +A [Graphite](https://graphiteapp.org/) query can be used to obtain measurements for analysis. + +```yaml +apiVersion: argoproj.io/v1alpha1 +kind: AnalysisTemplate +metadata: + name: success-rate +spec: + args: + - name: service-name + metrics: + - name: success-rate + interval: 5m + # Note that the Argo Rollouts Graphite metrics provider returns results as an array of float64s with 6 decimal places. + successCondition: results[0] >= 90.000000 + failureLimit: 3 + provider: + graphite: + address: http://graphite.example.com:9090 + query: | + target=summarize( + asPercent( + sumSeries( + stats.timers.httpServerRequests.app.{{args.service-name}}.exception.*.method.*.outcome.{CLIENT_ERROR,INFORMATIONAL,REDIRECTION,SUCCESS}.status.*.uri.*.count + ), + sumSeries( + stats.timers.httpServerRequests.app.{{args.service-name}}.exception.*.method.*.outcome.*.status.*.uri.*.count + ) + ), + '5min', + 'avg' + ) +``` diff --git a/docs/index.md b/docs/index.md index 25570fa5c9..fcc6b42ec5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -29,7 +29,7 @@ For these reasons, in large scale high-volume production environments, a rolling * Customizable metric queries and analysis of business KPIs * Ingress controller integration: NGINX, ALB * Service Mesh integration: Istio, Linkerd, SMI -* Metric provider integration: Prometheus, Wavefront, Kayenta, Web, Kubernetes Jobs, Datadog, New Relic +* Metric provider integration: Prometheus, Wavefront, Kayenta, Web, Kubernetes Jobs, Datadog, New Relic, Graphite ## Quick Start diff --git a/manifests/crds/analysis-run-crd.yaml b/manifests/crds/analysis-run-crd.yaml index 22028ec338..c86adee24f 100644 --- a/manifests/crds/analysis-run-crd.yaml +++ b/manifests/crds/analysis-run-crd.yaml @@ -159,6 +159,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: diff --git a/manifests/crds/analysis-template-crd.yaml b/manifests/crds/analysis-template-crd.yaml index fc0de9bb29..6762c935ef 100644 --- a/manifests/crds/analysis-template-crd.yaml +++ b/manifests/crds/analysis-template-crd.yaml @@ -154,6 +154,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: diff --git a/manifests/crds/cluster-analysis-template-crd.yaml b/manifests/crds/cluster-analysis-template-crd.yaml index 3f595233b1..10f9982e08 100644 --- a/manifests/crds/cluster-analysis-template-crd.yaml +++ b/manifests/crds/cluster-analysis-template-crd.yaml @@ -154,6 +154,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: diff --git a/manifests/install.yaml b/manifests/install.yaml index 0ca09d713e..ee664512e6 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -160,6 +160,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: @@ -2711,6 +2718,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: @@ -5189,6 +5203,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index d685c9f93b..2803ac45cb 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -160,6 +160,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: @@ -2711,6 +2718,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: @@ -5189,6 +5203,13 @@ spec: required: - query type: object + graphite: + properties: + address: + type: string + query: + type: string + type: object job: properties: metadata: diff --git a/metricproviders/graphite/api.go b/metricproviders/graphite/api.go new file mode 100644 index 0000000000..23e2f4744b --- /dev/null +++ b/metricproviders/graphite/api.go @@ -0,0 +1,142 @@ +package graphite + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "math" + "net/http" + "net/url" + "path" + "regexp" + "strconv" + "time" + + log "github.com/sirupsen/logrus" +) + +// API represents a Graphite API client +type API interface { + Query(query string) ([]dataPoint, error) +} + +// APIClient is a Graphite API client +type APIClient struct { + url url.URL + client *http.Client + logCTX log.Entry +} + +// Query performs a Graphite API query with the query it's passed +func (api APIClient) Query(quer string) ([]dataPoint, error) { + query := api.trimQuery(quer) + u, err := url.Parse(fmt.Sprintf("./render?%s", query)) + if err != nil { + return []dataPoint{}, err + } + + q := u.Query() + q.Set("format", "json") + u.RawQuery = q.Encode() + + u.Path = path.Join(api.url.Path, u.Path) + u = api.url.ResolveReference(u) + + req, err := http.NewRequest("GET", u.String(), nil) + if err != nil { + return []dataPoint{}, err + } + + r, err := api.client.Do(req) + if err != nil { + return []dataPoint{}, err + } + defer r.Body.Close() + + b, err := ioutil.ReadAll(r.Body) + if err != nil { + return []dataPoint{}, err + } + + if 400 <= r.StatusCode { + return []dataPoint{}, fmt.Errorf("error response: %s", string(b)) + } + + var result graphiteResponse + err = json.Unmarshal(b, &result) + if err != nil { + return []dataPoint{}, err + } + + return result[0].DataPoints, nil +} + +func (api APIClient) trimQuery(q string) string { + space := regexp.MustCompile(`\s+`) + return space.ReplaceAllString(q, " ") +} + +type dataPoint struct { + Value *float64 + TimeStamp time.Time +} + +func (gdp *dataPoint) UnmarshalJSON(data []byte) error { + var v []interface{} + if err := json.Unmarshal(data, &v); err != nil { + return err + } + + if len(v) != 2 { + return fmt.Errorf("error unmarshaling data point: %v", v) + } + + switch v[0].(type) { + case nil: + // no value + case float64: + f, _ := v[0].(float64) + gdp.Value = &f + case string: + f, err := strconv.ParseFloat(v[0].(string), 64) + if err != nil { + return err + } + gdp.Value = &f + default: + f, ok := v[0].(float64) + if !ok { + return fmt.Errorf("error unmarshaling value: %v", v[0]) + } + gdp.Value = &f + } + + switch v[1].(type) { + case nil: + // no value + case float64: + ts := int64(math.Round(v[1].(float64))) + gdp.TimeStamp = time.Unix(ts, 0) + case string: + ts, err := strconv.ParseInt(v[1].(string), 10, 64) + if err != nil { + return err + } + gdp.TimeStamp = time.Unix(ts, 0) + default: + ts, ok := v[1].(int64) + if !ok { + return fmt.Errorf("error unmarshaling timestamp: %v", v[0]) + } + gdp.TimeStamp = time.Unix(ts, 0) + } + + return nil +} + +type graphiteTargetResp struct { + Target string `json:"target"` + DataPoints []dataPoint `json:"datapoints"` +} + +type graphiteResponse []graphiteTargetResp diff --git a/metricproviders/graphite/api_test.go b/metricproviders/graphite/api_test.go new file mode 100644 index 0000000000..ce947da92f --- /dev/null +++ b/metricproviders/graphite/api_test.go @@ -0,0 +1,291 @@ +package graphite + +import ( + "errors" + "fmt" + "net/http" + "net/http/httptest" + "testing" + "time" + + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1" + log "github.com/sirupsen/logrus" + "github.com/stretchr/testify/assert" +) + +func testGraphiteMetric(addr string) v1alpha1.Metric { + return v1alpha1.Metric{ + Provider: v1alpha1.MetricProvider{ + Graphite: &v1alpha1.GraphiteMetric{ + Address: addr, + }, + }, + } +} + +func TestNewAPIClientWithValidURL(t *testing.T) { + e := log.Entry{} + _, err := NewAPIClient(testGraphiteMetric("http://some-graphite.foo"), e) + + assert.NoError(t, err) +} + +func TestNewAPIWithInvalidURL(t *testing.T) { + addr := ":::" + e := log.Entry{} + g, err := NewAPIClient(testGraphiteMetric(addr), e) + + assert.Equal(t, err.Error(), fmt.Sprintf("Graphite address %s is not a valid URL", addr)) + assert.Nil(t, g) +} + +func TestQuery(t *testing.T) { + query := "target=sumSeries(app.http.*.*.count)&from=-2min" + targetQuery := "sumSeries(app.http.*.*.count)" + fromQuery := "-2min" + value := float64(100) + timestamp := int64(1621348430) + goodResult := []dataPoint{{ + Value: &value, + TimeStamp: time.Unix(timestamp, 0), + }} + + tests := []struct { + name string + query string + expectedTarget string + expectedFrom string + expectedResult []dataPoint + expectedErr error + body string + responseCode int + }{{ + "ok", + query, + targetQuery, + fromQuery, + goodResult, + nil, + fmt.Sprintf(`[ + { + "datapoints": [ + [ + %f, + %d + ] + ], + "target": "sumSeries(app.http.*.*.count)", + "tags": { + "aggregatedBy": "sum", + "name": "sumSeries(app.http.*.*.count)" + } + } + ]`, value, timestamp), + 200, + }, { + "graphite response body with invalid JSON", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("invalid character 'i' looking for beginning of value"), + "invalid JSON", + 200, + }, { + "400 graphite response status", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("error response: foo"), + "foo", + 400, + }, { + "500 graphite response status", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("error response: bar"), + "bar", + 500, + }, { + "invalid query", + "target=#$%^&*(proper$#$%%^(password&from=-2min", + "#$%^&*(proper$#$%%^(password", + "-2min", + []dataPoint{}, + errors.New("parse \"./render?target=#$%^&*(proper$#$%%^(password&from=-2min\": invalid URL escape \"%^&\""), + "", + 200, + }, { + "graphite response data point JSON with only one item", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("error unmarshaling data point: [10]"), + `[ + { + "datapoints": [ + [ + 10 + ] + ], + "target": "sumSeries(app.http.*.*.count)", + "tags": { + "aggregatedBy": "sum", + "name": "sumSeries(app.http.*.*.count)" + } + } + ]`, + 200, + }, { + "graphite response data point JSON with an invalid timestamp", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("strconv.ParseInt: parsing \"f\": invalid syntax"), + `[ + { + "datapoints": [ + [ + 100, + "f" + ] + ], + "target": "sumSeries(app.http.*.*.count)" + } + ]`, + 200, + }, { + "graphite response data point JSON with a string value", + query, + targetQuery, + fromQuery, + goodResult, + nil, + fmt.Sprintf(`[ + { + "datapoints": [ + [ + "%f", + %d + ] + ], + "target": "sumSeries(app.http.*.*.count)" + } + ]`, value, timestamp), + 200, + }, { + "graphite response data point JSON with a null value", + query, + targetQuery, + fromQuery, + []dataPoint{{ + Value: nil, + TimeStamp: time.Unix(timestamp, 0), + }}, + nil, + fmt.Sprintf(`[ + { + "datapoints": [ + [ + null, + %d + ] + ], + "target": "sumSeries(app.http.*.*.count)" + } + ]`, timestamp), + 200, + }, { + "graphite response data point JSON triggers unmarshaling error", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("error unmarshaling value: []"), + `[ + { + "datapoints": [ + [ + [], + 1621348420 + ] + ], + "target": "sumSeries(app.http.*.*.count)" + } + ]`, + 200, + }, { + "graphite response data point JSON with a string timestamp", + query, + targetQuery, + fromQuery, + goodResult, + nil, + fmt.Sprintf(`[ + { + "datapoints": [ + [ + %f, + "%d" + ] + ], + "target": "sumSeries(app.http.*.*.count)" + } + ]`, value, timestamp), + 200, + }, { + "graphite response data point timestamp JSON triggers unmarshaling error", + query, + targetQuery, + fromQuery, + []dataPoint{}, + errors.New("error unmarshaling timestamp: 100"), + `[ + { + "datapoints": [ + [ + 100, + [] + ] + ], + "target": "sumSeries(app.http.*.*.count)" + } + ]`, + 200, + }} + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + target := r.URL.Query().Get("target") + assert.Equal(t, test.expectedTarget, target) + + from := r.URL.Query().Get("from") + assert.Equal(t, test.expectedFrom, from) + + w.WriteHeader(test.responseCode) + + json := test.body + w.Write([]byte(json)) + })) + defer ts.Close() + + g, err := NewAPIClient(testGraphiteMetric(ts.URL), log.Entry{}) + assert.Nil(t, err) + + val, err := g.Query(test.query) + if test.expectedErr != nil { + assert.Equal(t, err.Error(), test.expectedErr.Error()) + } else { + assert.Nil(t, err) + } + + assert.Equal(t, test.expectedResult, val) + }) + } +} diff --git a/metricproviders/graphite/graphite.go b/metricproviders/graphite/graphite.go new file mode 100644 index 0000000000..c12fb3142b --- /dev/null +++ b/metricproviders/graphite/graphite.go @@ -0,0 +1,126 @@ +package graphite + +import ( + "errors" + "fmt" + "net/http" + "net/url" + "time" + + log "github.com/sirupsen/logrus" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1" + "github.com/argoproj/argo-rollouts/utils/evaluate" + metricutil "github.com/argoproj/argo-rollouts/utils/metric" +) + +const ( + // ProviderType indicates the provider is Graphite. + ProviderType = "Graphite" +) + +// NewAPIClient generates a APIClient from the metric configuration +func NewAPIClient(metric v1alpha1.Metric, logCTX log.Entry) (*APIClient, error) { + addr := metric.Provider.Graphite.Address + graphiteURL, err := url.Parse(addr) + if addr == "" || err != nil { + return nil, fmt.Errorf("%s address %s is not a valid URL", ProviderType, addr) + } + + return &APIClient{ + logCTX: logCTX, + client: &http.Client{ + Timeout: time.Duration(10) * time.Second, + }, + url: *graphiteURL, + }, nil +} + +// Provider contains the required components to run a Graphite query. +// TODO: add support for username/password authentication. +type Provider struct { + api API + logCtx log.Entry +} + +// Type indicates provider is a Graphite provider. +func (p *Provider) Type() string { + return ProviderType +} + +// Run queries Graphite for the metric. +func (p *Provider) Run(run *v1alpha1.AnalysisRun, metric v1alpha1.Metric) v1alpha1.Measurement { + startTime := metav1.Now() + newMeasurement := v1alpha1.Measurement{ + StartedAt: &startTime, + } + + result, err := p.api.Query(metric.Provider.Graphite.Query) + if err != nil { + return metricutil.MarkMeasurementError(newMeasurement, err) + } + + if len(result) == 0 { + return metricutil.MarkMeasurementError(newMeasurement, errors.New("no values found")) + } + + newValue, newStatus, err := p.processResponse(metric, result) + newMeasurement.Value = newValue + if err != nil { + return metricutil.MarkMeasurementError(newMeasurement, err) + } + + newMeasurement.Phase = newStatus + finishedTime := metav1.Now() + newMeasurement.FinishedAt = &finishedTime + + return newMeasurement +} + +// Resume should not be used with the Graphite provider since all the work should occur in the Run method +func (p *Provider) Resume(run *v1alpha1.AnalysisRun, metric v1alpha1.Metric, measurement v1alpha1.Measurement) v1alpha1.Measurement { + p.logCtx.Warn("Graphite provider should not execute the Resume method") + return measurement +} + +// Terminate should not be used with the Graphite provider since all the work should occur in the Run method +func (p *Provider) Terminate(run *v1alpha1.AnalysisRun, metric v1alpha1.Metric, measurement v1alpha1.Measurement) v1alpha1.Measurement { + p.logCtx.Warn("Graphite provider should not execute the Terminate method") + return measurement +} + +// GarbageCollect is a no-op for the Graphite provider +func (p *Provider) GarbageCollect(run *v1alpha1.AnalysisRun, metric v1alpha1.Metric, limit int) error { + return nil +} + +func (p *Provider) processResponse(metric v1alpha1.Metric, dataPoints []dataPoint) (string, v1alpha1.AnalysisPhase, error) { + results := make([]float64, 0, len(dataPoints)) + valueStr := "[" + + for _, dp := range dataPoints { + if dp.Value != nil { + valueStr = valueStr + fmt.Sprintf("%f,", *dp.Value) + results = append(results, *dp.Value) + } + } + + // remove the last comma on the '[dp.Value,dp.Value,' string + if len(valueStr) > 1 { + valueStr = valueStr[:len(valueStr)-1] + } + + valueStr = valueStr + "]" + newStatus, err := evaluate.EvaluateResult(results, metric, p.logCtx) + + return valueStr, newStatus, err +} + +// NewGraphiteProvider returns a new Graphite provider +func NewGraphiteProvider(api API, logCtx log.Entry) *Provider { + return &Provider{ + logCtx: logCtx, + api: api, + } +} diff --git a/metricproviders/graphite/graphite_test.go b/metricproviders/graphite/graphite_test.go new file mode 100644 index 0000000000..5d041aa328 --- /dev/null +++ b/metricproviders/graphite/graphite_test.go @@ -0,0 +1,141 @@ +package graphite + +import ( + "errors" + "testing" + "time" + + log "github.com/sirupsen/logrus" + "github.com/stretchr/testify/assert" + + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1" +) + +func newMockAPI(response *float64, err error) mockAPI { + dps := []dataPoint{{ + Value: response, + TimeStamp: time.Now(), + }} + + if response == nil { + dps = []dataPoint{} + } + + return mockAPI{ + response: dps, + err: err, + } +} + +func newTestingMetric() v1alpha1.Metric { + return v1alpha1.Metric{ + Name: "foo", + SuccessCondition: "10.000000 in result", + FailureCondition: "10.000000 not in result", + Provider: v1alpha1.MetricProvider{ + Graphite: &v1alpha1.GraphiteMetric{ + Address: "http://some-graphite.foo", + Query: "foo=1", + }, + }, + } +} + +func TestType(t *testing.T) { + response := 10.000000 + g := NewGraphiteProvider(newMockAPI(&response, nil), log.Entry{}) + assert.Equal(t, ProviderType, g.Type()) +} + +func TestRunSuccessfulEvaluation(t *testing.T) { + response := 10.000000 + g := NewGraphiteProvider(newMockAPI(&response, nil), log.Entry{}) + measurement := g.Run(&v1alpha1.AnalysisRun{}, newTestingMetric()) + assert.NotNil(t, measurement.StartedAt) + assert.Equal(t, "[10.000000]", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseSuccessful, measurement.Phase) +} + +func TestRunFailedEvaluation(t *testing.T) { + response := 5.000000 + g := NewGraphiteProvider(newMockAPI(&response, nil), log.Entry{}) + measurement := g.Run(&v1alpha1.AnalysisRun{}, newTestingMetric()) + assert.NotNil(t, measurement.StartedAt) + assert.Equal(t, "[5.000000]", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseFailed, measurement.Phase) +} + +func TestRunMeasurementError(t *testing.T) { + metric := v1alpha1.Metric{ + Name: "foo", + // Malformed Success and Failure Conditions + SuccessCondition: "result[0] 10.000000", + FailureCondition: "result[0] 10.000000", + Provider: v1alpha1.MetricProvider{ + Graphite: &v1alpha1.GraphiteMetric{ + Address: "http://some-graphite.foo", + Query: "foo=1", + }, + }, + } + response := 10.000000 + g := NewGraphiteProvider(newMockAPI(&response, nil), log.Entry{}) + measurement := g.Run(&v1alpha1.AnalysisRun{}, metric) + assert.NotNil(t, measurement.StartedAt) + assert.Equal(t, "[10.000000]", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseError, measurement.Phase) + assert.Equal(t, "unexpected token Number(\"10.000000\")", measurement.Message) +} + +func TestRunErrorEvaluationFromNilQueryResponse(t *testing.T) { + g := NewGraphiteProvider(newMockAPI(nil, nil), log.Entry{}) + measurement := g.Run(&v1alpha1.AnalysisRun{}, newTestingMetric()) + assert.NotNil(t, measurement.StartedAt) + assert.Equal(t, "", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseError, measurement.Phase) + assert.Equal(t, "no values found", measurement.Message) +} + +func TestRunErrorEvaluationFromErrorQueryResponse(t *testing.T) { + response := 10.000000 + g := NewGraphiteProvider(newMockAPI(&response, errors.New("some err")), log.Entry{}) + measurement := g.Run(&v1alpha1.AnalysisRun{}, newTestingMetric()) + assert.NotNil(t, measurement.StartedAt) + assert.Equal(t, "", measurement.Value) + assert.NotNil(t, measurement.FinishedAt) + assert.Equal(t, v1alpha1.AnalysisPhaseError, measurement.Phase) + assert.Equal(t, "some err", measurement.Message) +} + +func TestResume(t *testing.T) { + response := 1.000000 + e := log.NewEntry(log.New()) + g := NewGraphiteProvider(newMockAPI(&response, nil), *e) + metric := newTestingMetric() + analysisRun := &v1alpha1.AnalysisRun{} + measurement := g.Run(analysisRun, metric) + m := g.Resume(nil, metric, measurement) + assert.Equal(t, m, measurement) +} + +func TestTerminate(t *testing.T) { + response := 1.000000 + e := log.NewEntry(log.New()) + g := NewGraphiteProvider(newMockAPI(&response, nil), *e) + metric := newTestingMetric() + analysisRun := &v1alpha1.AnalysisRun{} + measurement := g.Run(analysisRun, metric) + m := g.Terminate(nil, metric, measurement) + assert.Equal(t, m, measurement) +} + +func TestGarbageCollect(t *testing.T) { + response := 1.000000 + g := NewGraphiteProvider(newMockAPI(&response, nil), log.Entry{}) + err := g.GarbageCollect(nil, v1alpha1.Metric{}, 0) + assert.NoError(t, err) +} diff --git a/metricproviders/graphite/mock_test.go b/metricproviders/graphite/mock_test.go new file mode 100644 index 0000000000..2e7887e06f --- /dev/null +++ b/metricproviders/graphite/mock_test.go @@ -0,0 +1,13 @@ +package graphite + +type mockAPI struct { + response []dataPoint + err error +} + +func (m mockAPI) Query(query string) ([]dataPoint, error) { + if m.err != nil { + return nil, m.err + } + return m.response, nil +} diff --git a/metricproviders/metricproviders.go b/metricproviders/metricproviders.go index 168d0313ce..06ecc04e96 100644 --- a/metricproviders/metricproviders.go +++ b/metricproviders/metricproviders.go @@ -4,11 +4,11 @@ import ( "fmt" "github.com/argoproj/argo-rollouts/metricproviders/cloudwatch" - "github.com/argoproj/argo-rollouts/metricproviders/newrelic" - "github.com/argoproj/argo-rollouts/metricproviders/wavefront" - "github.com/argoproj/argo-rollouts/metricproviders/datadog" + "github.com/argoproj/argo-rollouts/metricproviders/graphite" "github.com/argoproj/argo-rollouts/metricproviders/kayenta" + "github.com/argoproj/argo-rollouts/metricproviders/newrelic" + "github.com/argoproj/argo-rollouts/metricproviders/wavefront" "github.com/argoproj/argo-rollouts/metricproviders/webmetric" log "github.com/sirupsen/logrus" @@ -78,6 +78,12 @@ func (f *ProviderFactory) NewProvider(logCtx log.Entry, metric v1alpha1.Metric) return nil, err } return newrelic.NewNewRelicProvider(client, logCtx), nil + case graphite.ProviderType: + client, err := graphite.NewAPIClient(metric, logCtx) + if err != nil { + return nil, err + } + return graphite.NewGraphiteProvider(client, logCtx), nil case cloudwatch.ProviderType: clinet, err := cloudwatch.NewCloudWatchAPIClient(metric) if err != nil { diff --git a/pkg/apis/rollouts/v1alpha1/analysis_types.go b/pkg/apis/rollouts/v1alpha1/analysis_types.go index 07fe0569c1..a8bb968de2 100644 --- a/pkg/apis/rollouts/v1alpha1/analysis_types.go +++ b/pkg/apis/rollouts/v1alpha1/analysis_types.go @@ -141,6 +141,8 @@ type MetricProvider struct { Job *JobMetric `json:"job,omitempty" protobuf:"bytes,7,opt,name=job"` // CloudWatch specifies the cloudWatch metric to query CloudWatch *CloudWatchMetric `json:"cloudWatch,omitempty" protobuf:"bytes,8,opt,name=cloudWatch"` + // Graphite specifies the Graphite metric to query + Graphite *GraphiteMetric `json:"graphite,omitempty" protobuf:"bytes,9,opt,name=graphite"` } // AnalysisPhase is the overall phase of an AnalysisRun, MetricResult, or Measurement @@ -195,6 +197,14 @@ type JobMetric struct { Spec batchv1.JobSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"` } +// GraphiteMetric defines the Graphite query to perform canary analysis +type GraphiteMetric struct { + // Address is the HTTP address and port of the Graphite server + Address string `json:"address,omitempty" protobuf:"bytes,1,opt,name=address"` + // Query is a raw Graphite query to perform + Query string `json:"query,omitempty" protobuf:"bytes,2,opt,name=query"` +} + // CloudWatchMetric defines the cloudwatch query to perform canary analysis type CloudWatchMetric struct { Interval DurationString `json:"interval,omitempty" protobuf:"bytes,1,opt,name=interval,casttype=DurationString"` diff --git a/pkg/apis/rollouts/v1alpha1/generated.pb.go b/pkg/apis/rollouts/v1alpha1/generated.pb.go index 841a24e6d2..1a624fd893 100644 --- a/pkg/apis/rollouts/v1alpha1/generated.pb.go +++ b/pkg/apis/rollouts/v1alpha1/generated.pb.go @@ -580,10 +580,150 @@ func (m *CanaryStrategy) XXX_DiscardUnknown() { var xxx_messageInfo_CanaryStrategy proto.InternalMessageInfo +func (m *CloudWatchMetric) Reset() { *m = CloudWatchMetric{} } +func (*CloudWatchMetric) ProtoMessage() {} +func (*CloudWatchMetric) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{19} +} +func (m *CloudWatchMetric) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CloudWatchMetric) 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 *CloudWatchMetric) XXX_Merge(src proto.Message) { + xxx_messageInfo_CloudWatchMetric.Merge(m, src) +} +func (m *CloudWatchMetric) XXX_Size() int { + return m.Size() +} +func (m *CloudWatchMetric) XXX_DiscardUnknown() { + xxx_messageInfo_CloudWatchMetric.DiscardUnknown(m) +} + +var xxx_messageInfo_CloudWatchMetric proto.InternalMessageInfo + +func (m *CloudWatchMetricDataQuery) Reset() { *m = CloudWatchMetricDataQuery{} } +func (*CloudWatchMetricDataQuery) ProtoMessage() {} +func (*CloudWatchMetricDataQuery) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{20} +} +func (m *CloudWatchMetricDataQuery) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CloudWatchMetricDataQuery) 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 *CloudWatchMetricDataQuery) XXX_Merge(src proto.Message) { + xxx_messageInfo_CloudWatchMetricDataQuery.Merge(m, src) +} +func (m *CloudWatchMetricDataQuery) XXX_Size() int { + return m.Size() +} +func (m *CloudWatchMetricDataQuery) XXX_DiscardUnknown() { + xxx_messageInfo_CloudWatchMetricDataQuery.DiscardUnknown(m) +} + +var xxx_messageInfo_CloudWatchMetricDataQuery proto.InternalMessageInfo + +func (m *CloudWatchMetricStat) Reset() { *m = CloudWatchMetricStat{} } +func (*CloudWatchMetricStat) ProtoMessage() {} +func (*CloudWatchMetricStat) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{21} +} +func (m *CloudWatchMetricStat) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CloudWatchMetricStat) 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 *CloudWatchMetricStat) XXX_Merge(src proto.Message) { + xxx_messageInfo_CloudWatchMetricStat.Merge(m, src) +} +func (m *CloudWatchMetricStat) XXX_Size() int { + return m.Size() +} +func (m *CloudWatchMetricStat) XXX_DiscardUnknown() { + xxx_messageInfo_CloudWatchMetricStat.DiscardUnknown(m) +} + +var xxx_messageInfo_CloudWatchMetricStat proto.InternalMessageInfo + +func (m *CloudWatchMetricStatMetric) Reset() { *m = CloudWatchMetricStatMetric{} } +func (*CloudWatchMetricStatMetric) ProtoMessage() {} +func (*CloudWatchMetricStatMetric) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{22} +} +func (m *CloudWatchMetricStatMetric) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CloudWatchMetricStatMetric) 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 *CloudWatchMetricStatMetric) XXX_Merge(src proto.Message) { + xxx_messageInfo_CloudWatchMetricStatMetric.Merge(m, src) +} +func (m *CloudWatchMetricStatMetric) XXX_Size() int { + return m.Size() +} +func (m *CloudWatchMetricStatMetric) XXX_DiscardUnknown() { + xxx_messageInfo_CloudWatchMetricStatMetric.DiscardUnknown(m) +} + +var xxx_messageInfo_CloudWatchMetricStatMetric proto.InternalMessageInfo + +func (m *CloudWatchMetricStatMetricDimension) Reset() { *m = CloudWatchMetricStatMetricDimension{} } +func (*CloudWatchMetricStatMetricDimension) ProtoMessage() {} +func (*CloudWatchMetricStatMetricDimension) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{23} +} +func (m *CloudWatchMetricStatMetricDimension) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CloudWatchMetricStatMetricDimension) 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 *CloudWatchMetricStatMetricDimension) XXX_Merge(src proto.Message) { + xxx_messageInfo_CloudWatchMetricStatMetricDimension.Merge(m, src) +} +func (m *CloudWatchMetricStatMetricDimension) XXX_Size() int { + return m.Size() +} +func (m *CloudWatchMetricStatMetricDimension) XXX_DiscardUnknown() { + xxx_messageInfo_CloudWatchMetricStatMetricDimension.DiscardUnknown(m) +} + +var xxx_messageInfo_CloudWatchMetricStatMetricDimension proto.InternalMessageInfo + func (m *ClusterAnalysisTemplate) Reset() { *m = ClusterAnalysisTemplate{} } func (*ClusterAnalysisTemplate) ProtoMessage() {} func (*ClusterAnalysisTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{19} + return fileDescriptor_e0e705f843545fab, []int{24} } func (m *ClusterAnalysisTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -611,7 +751,7 @@ var xxx_messageInfo_ClusterAnalysisTemplate proto.InternalMessageInfo func (m *ClusterAnalysisTemplateList) Reset() { *m = ClusterAnalysisTemplateList{} } func (*ClusterAnalysisTemplateList) ProtoMessage() {} func (*ClusterAnalysisTemplateList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{20} + return fileDescriptor_e0e705f843545fab, []int{25} } func (m *ClusterAnalysisTemplateList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -639,7 +779,7 @@ var xxx_messageInfo_ClusterAnalysisTemplateList proto.InternalMessageInfo func (m *DatadogMetric) Reset() { *m = DatadogMetric{} } func (*DatadogMetric) ProtoMessage() {} func (*DatadogMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{21} + return fileDescriptor_e0e705f843545fab, []int{26} } func (m *DatadogMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -667,7 +807,7 @@ var xxx_messageInfo_DatadogMetric proto.InternalMessageInfo func (m *Experiment) Reset() { *m = Experiment{} } func (*Experiment) ProtoMessage() {} func (*Experiment) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{22} + return fileDescriptor_e0e705f843545fab, []int{27} } func (m *Experiment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -695,7 +835,7 @@ var xxx_messageInfo_Experiment proto.InternalMessageInfo func (m *ExperimentAnalysisRunStatus) Reset() { *m = ExperimentAnalysisRunStatus{} } func (*ExperimentAnalysisRunStatus) ProtoMessage() {} func (*ExperimentAnalysisRunStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{23} + return fileDescriptor_e0e705f843545fab, []int{28} } func (m *ExperimentAnalysisRunStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -723,7 +863,7 @@ var xxx_messageInfo_ExperimentAnalysisRunStatus proto.InternalMessageInfo func (m *ExperimentAnalysisTemplateRef) Reset() { *m = ExperimentAnalysisTemplateRef{} } func (*ExperimentAnalysisTemplateRef) ProtoMessage() {} func (*ExperimentAnalysisTemplateRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{24} + return fileDescriptor_e0e705f843545fab, []int{29} } func (m *ExperimentAnalysisTemplateRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -751,7 +891,7 @@ var xxx_messageInfo_ExperimentAnalysisTemplateRef proto.InternalMessageInfo func (m *ExperimentCondition) Reset() { *m = ExperimentCondition{} } func (*ExperimentCondition) ProtoMessage() {} func (*ExperimentCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{25} + return fileDescriptor_e0e705f843545fab, []int{30} } func (m *ExperimentCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -779,7 +919,7 @@ var xxx_messageInfo_ExperimentCondition proto.InternalMessageInfo func (m *ExperimentList) Reset() { *m = ExperimentList{} } func (*ExperimentList) ProtoMessage() {} func (*ExperimentList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{26} + return fileDescriptor_e0e705f843545fab, []int{31} } func (m *ExperimentList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -807,7 +947,7 @@ var xxx_messageInfo_ExperimentList proto.InternalMessageInfo func (m *ExperimentSpec) Reset() { *m = ExperimentSpec{} } func (*ExperimentSpec) ProtoMessage() {} func (*ExperimentSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{27} + return fileDescriptor_e0e705f843545fab, []int{32} } func (m *ExperimentSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -835,7 +975,7 @@ var xxx_messageInfo_ExperimentSpec proto.InternalMessageInfo func (m *ExperimentStatus) Reset() { *m = ExperimentStatus{} } func (*ExperimentStatus) ProtoMessage() {} func (*ExperimentStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{28} + return fileDescriptor_e0e705f843545fab, []int{33} } func (m *ExperimentStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -863,7 +1003,7 @@ var xxx_messageInfo_ExperimentStatus proto.InternalMessageInfo func (m *FieldRef) Reset() { *m = FieldRef{} } func (*FieldRef) ProtoMessage() {} func (*FieldRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{29} + return fileDescriptor_e0e705f843545fab, []int{34} } func (m *FieldRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -888,10 +1028,38 @@ func (m *FieldRef) XXX_DiscardUnknown() { var xxx_messageInfo_FieldRef proto.InternalMessageInfo +func (m *GraphiteMetric) Reset() { *m = GraphiteMetric{} } +func (*GraphiteMetric) ProtoMessage() {} +func (*GraphiteMetric) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{35} +} +func (m *GraphiteMetric) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GraphiteMetric) 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 *GraphiteMetric) XXX_Merge(src proto.Message) { + xxx_messageInfo_GraphiteMetric.Merge(m, src) +} +func (m *GraphiteMetric) XXX_Size() int { + return m.Size() +} +func (m *GraphiteMetric) XXX_DiscardUnknown() { + xxx_messageInfo_GraphiteMetric.DiscardUnknown(m) +} + +var xxx_messageInfo_GraphiteMetric proto.InternalMessageInfo + func (m *IstioDestinationRule) Reset() { *m = IstioDestinationRule{} } func (*IstioDestinationRule) ProtoMessage() {} func (*IstioDestinationRule) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{30} + return fileDescriptor_e0e705f843545fab, []int{36} } func (m *IstioDestinationRule) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -919,7 +1087,7 @@ var xxx_messageInfo_IstioDestinationRule proto.InternalMessageInfo func (m *IstioTrafficRouting) Reset() { *m = IstioTrafficRouting{} } func (*IstioTrafficRouting) ProtoMessage() {} func (*IstioTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{31} + return fileDescriptor_e0e705f843545fab, []int{37} } func (m *IstioTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -947,7 +1115,7 @@ var xxx_messageInfo_IstioTrafficRouting proto.InternalMessageInfo func (m *IstioVirtualService) Reset() { *m = IstioVirtualService{} } func (*IstioVirtualService) ProtoMessage() {} func (*IstioVirtualService) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{32} + return fileDescriptor_e0e705f843545fab, []int{38} } func (m *IstioVirtualService) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -975,7 +1143,7 @@ var xxx_messageInfo_IstioVirtualService proto.InternalMessageInfo func (m *JobMetric) Reset() { *m = JobMetric{} } func (*JobMetric) ProtoMessage() {} func (*JobMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{33} + return fileDescriptor_e0e705f843545fab, []int{39} } func (m *JobMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1003,7 +1171,7 @@ var xxx_messageInfo_JobMetric proto.InternalMessageInfo func (m *KayentaMetric) Reset() { *m = KayentaMetric{} } func (*KayentaMetric) ProtoMessage() {} func (*KayentaMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{34} + return fileDescriptor_e0e705f843545fab, []int{40} } func (m *KayentaMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1031,7 +1199,7 @@ var xxx_messageInfo_KayentaMetric proto.InternalMessageInfo func (m *KayentaScope) Reset() { *m = KayentaScope{} } func (*KayentaScope) ProtoMessage() {} func (*KayentaScope) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{35} + return fileDescriptor_e0e705f843545fab, []int{41} } func (m *KayentaScope) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1059,7 +1227,7 @@ var xxx_messageInfo_KayentaScope proto.InternalMessageInfo func (m *KayentaThreshold) Reset() { *m = KayentaThreshold{} } func (*KayentaThreshold) ProtoMessage() {} func (*KayentaThreshold) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{36} + return fileDescriptor_e0e705f843545fab, []int{42} } func (m *KayentaThreshold) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1087,7 +1255,7 @@ var xxx_messageInfo_KayentaThreshold proto.InternalMessageInfo func (m *Measurement) Reset() { *m = Measurement{} } func (*Measurement) ProtoMessage() {} func (*Measurement) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{37} + return fileDescriptor_e0e705f843545fab, []int{43} } func (m *Measurement) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1115,7 +1283,7 @@ var xxx_messageInfo_Measurement proto.InternalMessageInfo func (m *Metric) Reset() { *m = Metric{} } func (*Metric) ProtoMessage() {} func (*Metric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{38} + return fileDescriptor_e0e705f843545fab, []int{44} } func (m *Metric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1143,7 +1311,7 @@ var xxx_messageInfo_Metric proto.InternalMessageInfo func (m *MetricProvider) Reset() { *m = MetricProvider{} } func (*MetricProvider) ProtoMessage() {} func (*MetricProvider) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{39} + return fileDescriptor_e0e705f843545fab, []int{45} } func (m *MetricProvider) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1171,7 +1339,7 @@ var xxx_messageInfo_MetricProvider proto.InternalMessageInfo func (m *MetricResult) Reset() { *m = MetricResult{} } func (*MetricResult) ProtoMessage() {} func (*MetricResult) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{40} + return fileDescriptor_e0e705f843545fab, []int{46} } func (m *MetricResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1199,7 +1367,7 @@ var xxx_messageInfo_MetricResult proto.InternalMessageInfo func (m *NewRelicMetric) Reset() { *m = NewRelicMetric{} } func (*NewRelicMetric) ProtoMessage() {} func (*NewRelicMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{41} + return fileDescriptor_e0e705f843545fab, []int{47} } func (m *NewRelicMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1227,7 +1395,7 @@ var xxx_messageInfo_NewRelicMetric proto.InternalMessageInfo func (m *NginxTrafficRouting) Reset() { *m = NginxTrafficRouting{} } func (*NginxTrafficRouting) ProtoMessage() {} func (*NginxTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{42} + return fileDescriptor_e0e705f843545fab, []int{48} } func (m *NginxTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1255,7 +1423,7 @@ var xxx_messageInfo_NginxTrafficRouting proto.InternalMessageInfo func (m *ObjectRef) Reset() { *m = ObjectRef{} } func (*ObjectRef) ProtoMessage() {} func (*ObjectRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{43} + return fileDescriptor_e0e705f843545fab, []int{49} } func (m *ObjectRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1283,7 +1451,7 @@ var xxx_messageInfo_ObjectRef proto.InternalMessageInfo func (m *PauseCondition) Reset() { *m = PauseCondition{} } func (*PauseCondition) ProtoMessage() {} func (*PauseCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{44} + return fileDescriptor_e0e705f843545fab, []int{50} } func (m *PauseCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1311,7 +1479,7 @@ var xxx_messageInfo_PauseCondition proto.InternalMessageInfo func (m *PodTemplateMetadata) Reset() { *m = PodTemplateMetadata{} } func (*PodTemplateMetadata) ProtoMessage() {} func (*PodTemplateMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{45} + return fileDescriptor_e0e705f843545fab, []int{51} } func (m *PodTemplateMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1341,7 +1509,7 @@ func (m *PreferredDuringSchedulingIgnoredDuringExecution) Reset() { } func (*PreferredDuringSchedulingIgnoredDuringExecution) ProtoMessage() {} func (*PreferredDuringSchedulingIgnoredDuringExecution) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{46} + return fileDescriptor_e0e705f843545fab, []int{52} } func (m *PreferredDuringSchedulingIgnoredDuringExecution) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1369,7 +1537,7 @@ var xxx_messageInfo_PreferredDuringSchedulingIgnoredDuringExecution proto.Intern func (m *PrometheusMetric) Reset() { *m = PrometheusMetric{} } func (*PrometheusMetric) ProtoMessage() {} func (*PrometheusMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{47} + return fileDescriptor_e0e705f843545fab, []int{53} } func (m *PrometheusMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1399,7 +1567,7 @@ func (m *RequiredDuringSchedulingIgnoredDuringExecution) Reset() { } func (*RequiredDuringSchedulingIgnoredDuringExecution) ProtoMessage() {} func (*RequiredDuringSchedulingIgnoredDuringExecution) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{48} + return fileDescriptor_e0e705f843545fab, []int{54} } func (m *RequiredDuringSchedulingIgnoredDuringExecution) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1427,7 +1595,7 @@ var xxx_messageInfo_RequiredDuringSchedulingIgnoredDuringExecution proto.Interna func (m *Rollout) Reset() { *m = Rollout{} } func (*Rollout) ProtoMessage() {} func (*Rollout) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{49} + return fileDescriptor_e0e705f843545fab, []int{55} } func (m *Rollout) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1455,7 +1623,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{50} + return fileDescriptor_e0e705f843545fab, []int{56} } func (m *RolloutAnalysis) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1483,7 +1651,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{51} + return fileDescriptor_e0e705f843545fab, []int{57} } func (m *RolloutAnalysisBackground) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1511,7 +1679,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{52} + return fileDescriptor_e0e705f843545fab, []int{58} } func (m *RolloutAnalysisRunStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1539,7 +1707,7 @@ var xxx_messageInfo_RolloutAnalysisRunStatus proto.InternalMessageInfo func (m *RolloutAnalysisTemplate) Reset() { *m = RolloutAnalysisTemplate{} } func (*RolloutAnalysisTemplate) ProtoMessage() {} func (*RolloutAnalysisTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{53} + return fileDescriptor_e0e705f843545fab, []int{59} } func (m *RolloutAnalysisTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1567,7 +1735,7 @@ var xxx_messageInfo_RolloutAnalysisTemplate proto.InternalMessageInfo func (m *RolloutCondition) Reset() { *m = RolloutCondition{} } func (*RolloutCondition) ProtoMessage() {} func (*RolloutCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{54} + return fileDescriptor_e0e705f843545fab, []int{60} } func (m *RolloutCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1595,7 +1763,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{55} + return fileDescriptor_e0e705f843545fab, []int{61} } func (m *RolloutExperimentStep) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1625,7 +1793,7 @@ func (m *RolloutExperimentStepAnalysisTemplateRef) Reset() { } func (*RolloutExperimentStepAnalysisTemplateRef) ProtoMessage() {} func (*RolloutExperimentStepAnalysisTemplateRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{56} + return fileDescriptor_e0e705f843545fab, []int{62} } func (m *RolloutExperimentStepAnalysisTemplateRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1653,7 +1821,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{57} + return fileDescriptor_e0e705f843545fab, []int{63} } func (m *RolloutExperimentTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1681,7 +1849,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{58} + return fileDescriptor_e0e705f843545fab, []int{64} } func (m *RolloutList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1709,7 +1877,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{59} + return fileDescriptor_e0e705f843545fab, []int{65} } func (m *RolloutPause) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1737,7 +1905,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{60} + return fileDescriptor_e0e705f843545fab, []int{66} } func (m *RolloutSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1765,7 +1933,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{61} + return fileDescriptor_e0e705f843545fab, []int{67} } func (m *RolloutStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1793,7 +1961,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{62} + return fileDescriptor_e0e705f843545fab, []int{68} } func (m *RolloutStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1821,7 +1989,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{63} + return fileDescriptor_e0e705f843545fab, []int{69} } func (m *RolloutTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1849,7 +2017,7 @@ var xxx_messageInfo_RolloutTrafficRouting proto.InternalMessageInfo func (m *SMITrafficRouting) Reset() { *m = SMITrafficRouting{} } func (*SMITrafficRouting) ProtoMessage() {} func (*SMITrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{64} + return fileDescriptor_e0e705f843545fab, []int{70} } func (m *SMITrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1877,7 +2045,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{65} + return fileDescriptor_e0e705f843545fab, []int{71} } func (m *ScopeDetail) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1905,7 +2073,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{66} + return fileDescriptor_e0e705f843545fab, []int{72} } func (m *SecretKeyRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1933,7 +2101,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{67} + return fileDescriptor_e0e705f843545fab, []int{73} } func (m *SetCanaryScale) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1961,7 +2129,7 @@ var xxx_messageInfo_SetCanaryScale proto.InternalMessageInfo func (m *TLSRoute) Reset() { *m = TLSRoute{} } func (*TLSRoute) ProtoMessage() {} func (*TLSRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{68} + return fileDescriptor_e0e705f843545fab, []int{74} } func (m *TLSRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1989,7 +2157,7 @@ var xxx_messageInfo_TLSRoute proto.InternalMessageInfo func (m *TemplateService) Reset() { *m = TemplateService{} } func (*TemplateService) ProtoMessage() {} func (*TemplateService) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{69} + return fileDescriptor_e0e705f843545fab, []int{75} } func (m *TemplateService) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2017,7 +2185,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{70} + return fileDescriptor_e0e705f843545fab, []int{76} } func (m *TemplateSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2045,7 +2213,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{71} + return fileDescriptor_e0e705f843545fab, []int{77} } func (m *TemplateStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2073,7 +2241,7 @@ var xxx_messageInfo_TemplateStatus proto.InternalMessageInfo func (m *ValueFrom) Reset() { *m = ValueFrom{} } func (*ValueFrom) ProtoMessage() {} func (*ValueFrom) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{72} + return fileDescriptor_e0e705f843545fab, []int{78} } func (m *ValueFrom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2101,7 +2269,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{73} + return fileDescriptor_e0e705f843545fab, []int{79} } func (m *WavefrontMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2129,7 +2297,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{74} + return fileDescriptor_e0e705f843545fab, []int{80} } func (m *WebMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2157,7 +2325,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{75} + return fileDescriptor_e0e705f843545fab, []int{81} } func (m *WebMetricHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2202,6 +2370,11 @@ func init() { proto.RegisterType((*CanaryStatus)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CanaryStatus") proto.RegisterType((*CanaryStep)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CanaryStep") proto.RegisterType((*CanaryStrategy)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CanaryStrategy") + proto.RegisterType((*CloudWatchMetric)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CloudWatchMetric") + proto.RegisterType((*CloudWatchMetricDataQuery)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CloudWatchMetricDataQuery") + proto.RegisterType((*CloudWatchMetricStat)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CloudWatchMetricStat") + proto.RegisterType((*CloudWatchMetricStatMetric)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CloudWatchMetricStatMetric") + proto.RegisterType((*CloudWatchMetricStatMetricDimension)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.CloudWatchMetricStatMetricDimension") proto.RegisterType((*ClusterAnalysisTemplate)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.ClusterAnalysisTemplate") proto.RegisterType((*ClusterAnalysisTemplateList)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.ClusterAnalysisTemplateList") proto.RegisterType((*DatadogMetric)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.DatadogMetric") @@ -2213,6 +2386,7 @@ func init() { proto.RegisterType((*ExperimentSpec)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.ExperimentSpec") proto.RegisterType((*ExperimentStatus)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.ExperimentStatus") proto.RegisterType((*FieldRef)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.FieldRef") + proto.RegisterType((*GraphiteMetric)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.GraphiteMetric") proto.RegisterType((*IstioDestinationRule)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.IstioDestinationRule") proto.RegisterType((*IstioTrafficRouting)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.IstioTrafficRouting") proto.RegisterType((*IstioVirtualService)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.IstioVirtualService") @@ -2270,377 +2444,400 @@ func init() { } var fileDescriptor_e0e705f843545fab = []byte{ - // 5908 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x1c, 0xc9, - 0x71, 0xf0, 0xcd, 0x2e, 0x97, 0x5c, 0xd6, 0xf2, 0x4f, 0x2d, 0xca, 0xda, 0xd3, 0x9d, 0xb8, 0xf2, - 0x9c, 0x71, 0x9f, 0xfc, 0xc5, 0x26, 0x6d, 0xdd, 0x5d, 0x72, 0xf1, 0x19, 0x87, 0xec, 0x52, 0xd2, - 0x89, 0x3a, 0x52, 0xa2, 0x7a, 0xa9, 0x13, 0x7c, 0xf6, 0x39, 0x1e, 0xee, 0x36, 0x97, 0x23, 0xcd, - 0xce, 0xac, 0x67, 0x66, 0x29, 0xf1, 0x6c, 0xf8, 0x27, 0x86, 0x1d, 0x27, 0xb0, 0xe1, 0xcb, 0xcf, - 0x4b, 0x10, 0x38, 0x08, 0x82, 0x3c, 0x04, 0xf1, 0x4b, 0x10, 0xf8, 0xd1, 0x46, 0x8c, 0x24, 0x06, - 0x9c, 0x87, 0x04, 0x0e, 0x90, 0xe4, 0x9c, 0x00, 0xde, 0xf8, 0xd6, 0x01, 0x82, 0xe4, 0x25, 0x70, - 0x60, 0x20, 0xf0, 0x01, 0x01, 0x82, 0xfe, 0x99, 0x9e, 0xee, 0xd9, 0xd9, 0x25, 0x57, 0x3b, 0x54, - 0x8c, 0x24, 0x6f, 0xdc, 0xae, 0xea, 0xaa, 0xee, 0x9e, 0xea, 0xaa, 0xea, 0xaa, 0xea, 0x26, 0x6c, - 0xb6, 0xec, 0x70, 0xbf, 0xbb, 0xbb, 0xda, 0xf0, 0xda, 0x6b, 0x96, 0xdf, 0xf2, 0x3a, 0xbe, 0x77, - 0x97, 0xfd, 0xf1, 0x5e, 0xdf, 0x73, 0x1c, 0xaf, 0x1b, 0x06, 0x6b, 0x9d, 0x7b, 0xad, 0x35, 0xab, - 0x63, 0x07, 0x6b, 0xb2, 0xe5, 0xe0, 0xfd, 0x96, 0xd3, 0xd9, 0xb7, 0xde, 0xbf, 0xd6, 0x22, 0x2e, - 0xf1, 0xad, 0x90, 0x34, 0x57, 0x3b, 0xbe, 0x17, 0x7a, 0xe8, 0x83, 0x31, 0xb5, 0xd5, 0x88, 0x1a, - 0xfb, 0xe3, 0x17, 0xa3, 0xbe, 0xab, 0x9d, 0x7b, 0xad, 0x55, 0x4a, 0x6d, 0x55, 0xb6, 0x44, 0xd4, - 0xce, 0xbd, 0x57, 0x19, 0x4b, 0xcb, 0x6b, 0x79, 0x6b, 0x8c, 0xe8, 0x6e, 0x77, 0x8f, 0xfd, 0x62, - 0x3f, 0xd8, 0x5f, 0x9c, 0xd9, 0xb9, 0xa7, 0xee, 0x3d, 0x1f, 0xac, 0xda, 0x1e, 0x1d, 0xdb, 0xda, - 0xae, 0x15, 0x36, 0xf6, 0xd7, 0x0e, 0x06, 0x46, 0x74, 0xce, 0x54, 0x90, 0x1a, 0x9e, 0x4f, 0xd2, - 0x70, 0x9e, 0x8d, 0x71, 0xda, 0x56, 0x63, 0xdf, 0x76, 0x89, 0x7f, 0x18, 0xcf, 0xba, 0x4d, 0x42, - 0x2b, 0xad, 0xd7, 0xda, 0xb0, 0x5e, 0x7e, 0xd7, 0x0d, 0xed, 0x36, 0x19, 0xe8, 0xf0, 0xb3, 0x47, - 0x75, 0x08, 0x1a, 0xfb, 0xa4, 0x6d, 0x0d, 0xf4, 0x7b, 0x66, 0x58, 0xbf, 0x6e, 0x68, 0x3b, 0x6b, - 0xb6, 0x1b, 0x06, 0xa1, 0x9f, 0xec, 0x64, 0xfe, 0xbb, 0x01, 0xa7, 0xaa, 0x9b, 0xb5, 0x1d, 0xdf, - 0xda, 0xdb, 0xb3, 0x1b, 0xd8, 0xeb, 0x86, 0xb6, 0xdb, 0x42, 0xef, 0x86, 0x19, 0xdb, 0x6d, 0xf9, - 0x24, 0x08, 0xca, 0xc6, 0x05, 0xe3, 0xe2, 0x6c, 0x6d, 0xf1, 0x3b, 0xbd, 0xca, 0x63, 0xfd, 0x5e, - 0x65, 0x66, 0x83, 0x37, 0xe3, 0x08, 0x8e, 0x9e, 0x83, 0x52, 0x40, 0xfc, 0x03, 0xbb, 0x41, 0xb6, - 0x3d, 0x3f, 0x2c, 0xe7, 0x2e, 0x18, 0x17, 0x0b, 0xb5, 0xd3, 0x02, 0xbd, 0x54, 0x8f, 0x41, 0x58, - 0xc5, 0xa3, 0xdd, 0x7c, 0xcf, 0x0b, 0x05, 0xbc, 0x9c, 0x67, 0x5c, 0x64, 0x37, 0x1c, 0x83, 0xb0, - 0x8a, 0x87, 0x2e, 0xc3, 0x92, 0xe5, 0xba, 0x5e, 0x68, 0x85, 0xb6, 0xe7, 0x6e, 0xfb, 0x64, 0xcf, - 0x7e, 0x50, 0x9e, 0x62, 0x7d, 0xcb, 0xa2, 0xef, 0x52, 0x35, 0x01, 0xc7, 0x03, 0x3d, 0xcc, 0xcb, - 0x50, 0xae, 0xb6, 0x77, 0xad, 0x20, 0xb0, 0x9a, 0x9e, 0x9f, 0x98, 0xfa, 0x45, 0x28, 0xb6, 0xad, - 0x4e, 0xc7, 0x76, 0x5b, 0x74, 0xee, 0xf9, 0x8b, 0xb3, 0xb5, 0xb9, 0x7e, 0xaf, 0x52, 0xdc, 0x12, - 0x6d, 0x58, 0x42, 0xcd, 0xbf, 0xcf, 0x41, 0xa9, 0xea, 0x5a, 0xce, 0x61, 0x60, 0x07, 0xb8, 0xeb, - 0xa2, 0x8f, 0x41, 0x91, 0xca, 0x40, 0xd3, 0x0a, 0x2d, 0xb6, 0x6a, 0xa5, 0x4b, 0xef, 0x5b, 0xe5, - 0x9f, 0x64, 0x55, 0xfd, 0x24, 0xb1, 0x64, 0x53, 0xec, 0xd5, 0x83, 0xf7, 0xaf, 0xde, 0xdc, 0xbd, - 0x4b, 0x1a, 0xe1, 0x16, 0x09, 0xad, 0x1a, 0x12, 0xb3, 0x80, 0xb8, 0x0d, 0x4b, 0xaa, 0xc8, 0x83, - 0xa9, 0xa0, 0x43, 0x1a, 0x6c, 0x91, 0x4b, 0x97, 0xb6, 0x56, 0x27, 0xd9, 0x45, 0xab, 0xca, 0xd0, - 0xeb, 0x1d, 0xd2, 0xa8, 0xcd, 0x09, 0xd6, 0x53, 0xf4, 0x17, 0x66, 0x8c, 0xd0, 0x7d, 0x98, 0x0e, - 0x42, 0x2b, 0xec, 0x06, 0xec, 0x03, 0x95, 0x2e, 0xdd, 0xcc, 0x8e, 0x25, 0x23, 0x5b, 0x5b, 0x10, - 0x4c, 0xa7, 0xf9, 0x6f, 0x2c, 0xd8, 0x99, 0xff, 0x60, 0xc0, 0x69, 0x05, 0xbb, 0xea, 0xb7, 0xba, - 0x6d, 0xe2, 0x86, 0xe8, 0x02, 0x4c, 0xb9, 0x56, 0x9b, 0x08, 0xa9, 0x94, 0x43, 0xbe, 0x61, 0xb5, - 0x09, 0x66, 0x10, 0xf4, 0x14, 0x14, 0x0e, 0x2c, 0xa7, 0x4b, 0xd8, 0x22, 0xcd, 0xd6, 0xe6, 0x05, - 0x4a, 0xe1, 0x15, 0xda, 0x88, 0x39, 0x0c, 0x7d, 0x12, 0x66, 0xd9, 0x1f, 0x57, 0x7d, 0xaf, 0x9d, - 0xd1, 0xd4, 0xc4, 0x08, 0x5f, 0x89, 0xc8, 0xd6, 0xe6, 0xfb, 0xbd, 0xca, 0xac, 0xfc, 0x89, 0x63, - 0x86, 0xe6, 0x3f, 0x1a, 0xb0, 0xa8, 0x4c, 0x6e, 0xd3, 0x0e, 0x42, 0xf4, 0x91, 0x01, 0xe1, 0x59, - 0x3d, 0x9e, 0xf0, 0xd0, 0xde, 0x4c, 0x74, 0x96, 0xc4, 0x4c, 0x8b, 0x51, 0x8b, 0x22, 0x38, 0x2e, - 0x14, 0xec, 0x90, 0xb4, 0x83, 0x72, 0xee, 0x42, 0xfe, 0x62, 0xe9, 0xd2, 0x46, 0x66, 0x9f, 0x31, - 0x5e, 0xdf, 0x0d, 0x4a, 0x1f, 0x73, 0x36, 0xe6, 0x57, 0x73, 0xda, 0x0c, 0xa9, 0x44, 0x21, 0x0f, - 0x66, 0xda, 0x24, 0xf4, 0xed, 0x06, 0xdf, 0x57, 0xa5, 0x4b, 0x97, 0x27, 0x1b, 0xc5, 0x16, 0x23, - 0x16, 0x6b, 0x26, 0xfe, 0x3b, 0xc0, 0x11, 0x17, 0xb4, 0x0f, 0x53, 0x96, 0xdf, 0x8a, 0xe6, 0x7c, - 0x35, 0x9b, 0xef, 0x1b, 0xcb, 0x5c, 0xd5, 0x6f, 0x05, 0x98, 0x71, 0x40, 0x6b, 0x30, 0x1b, 0x12, - 0xbf, 0x6d, 0xbb, 0x56, 0xc8, 0x55, 0x59, 0xb1, 0x76, 0x4a, 0xa0, 0xcd, 0xee, 0x44, 0x00, 0x1c, - 0xe3, 0x98, 0x6f, 0xe6, 0xe0, 0xd4, 0xc0, 0x66, 0x40, 0xcf, 0x42, 0xa1, 0xb3, 0x6f, 0x05, 0x91, - 0x74, 0xaf, 0x44, 0x4b, 0xbb, 0x4d, 0x1b, 0xdf, 0xee, 0x55, 0xe6, 0xa3, 0x2e, 0xac, 0x01, 0x73, - 0x64, 0xaa, 0xab, 0xdb, 0x24, 0x08, 0xac, 0x56, 0x24, 0xf2, 0xca, 0x8a, 0xb0, 0x66, 0x1c, 0xc1, - 0xd1, 0x2f, 0x1b, 0x30, 0xcf, 0x57, 0x07, 0x93, 0xa0, 0xeb, 0x84, 0x74, 0x5b, 0xd3, 0xb5, 0xb9, - 0x9e, 0xc5, 0x97, 0xe0, 0x24, 0x6b, 0x67, 0x04, 0xf7, 0x79, 0xb5, 0x35, 0xc0, 0x3a, 0x5f, 0x74, - 0x07, 0x66, 0x83, 0xd0, 0xf2, 0x43, 0xd2, 0xac, 0x86, 0x4c, 0x81, 0x97, 0x2e, 0xfd, 0xff, 0xe3, - 0xc9, 0xfb, 0x8e, 0xdd, 0x26, 0x7c, 0x6f, 0xd5, 0x23, 0x02, 0x38, 0xa6, 0x65, 0xfe, 0xad, 0xae, - 0x38, 0xea, 0x21, 0x35, 0x76, 0xad, 0x43, 0xf4, 0x61, 0x78, 0x3c, 0xe8, 0x36, 0x1a, 0x24, 0x08, - 0xf6, 0xba, 0x0e, 0xee, 0xba, 0xd7, 0xec, 0x20, 0xf4, 0xfc, 0xc3, 0x4d, 0xbb, 0x6d, 0x87, 0x6c, - 0xbd, 0x0b, 0xb5, 0xf3, 0xfd, 0x5e, 0xe5, 0xf1, 0xfa, 0x30, 0x24, 0x3c, 0xbc, 0x3f, 0xb2, 0xe0, - 0x89, 0xae, 0x3b, 0x9c, 0x3c, 0xb7, 0x89, 0x95, 0x7e, 0xaf, 0xf2, 0xc4, 0xed, 0xe1, 0x68, 0x78, - 0x14, 0x0d, 0xf3, 0x5f, 0x0d, 0x58, 0x8a, 0xe6, 0xb5, 0x43, 0xda, 0x1d, 0xc7, 0x0a, 0xc9, 0x23, - 0xb0, 0x38, 0xa1, 0x66, 0x71, 0x70, 0x36, 0x7a, 0x23, 0x1a, 0xff, 0x30, 0xb3, 0x63, 0xfe, 0x8b, - 0x01, 0xcb, 0x49, 0xe4, 0x47, 0xa0, 0x25, 0x03, 0x5d, 0x4b, 0xde, 0xc8, 0x76, 0xb6, 0x43, 0x54, - 0xe5, 0x8f, 0x52, 0xe6, 0xfa, 0x3f, 0x5c, 0x5f, 0x9a, 0x7f, 0x30, 0x05, 0x73, 0x55, 0x37, 0xb4, - 0xab, 0x7b, 0x7b, 0xb6, 0x6b, 0x87, 0x87, 0xe8, 0x4b, 0x39, 0x58, 0xeb, 0xf8, 0x64, 0x8f, 0xf8, - 0x3e, 0x69, 0x5e, 0xee, 0xfa, 0xb6, 0xdb, 0xaa, 0x37, 0xf6, 0x49, 0xb3, 0xeb, 0xd8, 0x6e, 0x6b, - 0xa3, 0xe5, 0x7a, 0xb2, 0xf9, 0xca, 0x03, 0xd2, 0xe8, 0x52, 0x57, 0x4e, 0x7c, 0xff, 0xf6, 0x64, - 0xc3, 0xdc, 0x1e, 0x8f, 0x69, 0xed, 0x99, 0x7e, 0xaf, 0xb2, 0x36, 0x66, 0x27, 0x3c, 0xee, 0xd4, - 0xd0, 0x17, 0x73, 0xb0, 0xea, 0x93, 0x8f, 0x77, 0xed, 0xe3, 0xaf, 0x06, 0xdf, 0xa0, 0xce, 0x64, - 0xab, 0x81, 0xc7, 0xe2, 0x59, 0xbb, 0xd4, 0xef, 0x55, 0xc6, 0xec, 0x83, 0xc7, 0x9c, 0x97, 0xf9, - 0x67, 0x06, 0x14, 0xc7, 0xf0, 0xfe, 0x2a, 0xba, 0xf7, 0x37, 0x3b, 0xe0, 0xf9, 0x85, 0x83, 0x9e, - 0xdf, 0x4b, 0x93, 0x2d, 0xda, 0x71, 0x3c, 0xbe, 0x7f, 0xa3, 0xa7, 0xac, 0xa4, 0x87, 0x88, 0xf6, - 0x61, 0xb9, 0xe3, 0x35, 0xa3, 0x4d, 0x7f, 0xcd, 0x0a, 0xf6, 0x19, 0x4c, 0x4c, 0xef, 0xd9, 0x7e, - 0xaf, 0xb2, 0xbc, 0x9d, 0x02, 0x7f, 0xbb, 0x57, 0x29, 0x4b, 0x22, 0x09, 0x04, 0x9c, 0x4a, 0x11, - 0x75, 0xa0, 0xb8, 0x67, 0x13, 0xa7, 0x89, 0xc9, 0x9e, 0x90, 0x94, 0x09, 0xb7, 0xf7, 0x55, 0x41, - 0x8d, 0x1f, 0x8e, 0xa2, 0x5f, 0x58, 0x72, 0x31, 0x7f, 0x32, 0x05, 0x8b, 0x35, 0xa7, 0x4b, 0x5e, - 0xf2, 0x09, 0x89, 0xfc, 0x9b, 0x2a, 0x2c, 0x76, 0x7c, 0x72, 0x60, 0x93, 0xfb, 0x75, 0xe2, 0x90, - 0x46, 0xe8, 0xf9, 0x62, 0xaa, 0x67, 0xc5, 0x97, 0x5c, 0xdc, 0xd6, 0xc1, 0x38, 0x89, 0x8f, 0x5e, - 0x84, 0x05, 0xab, 0x11, 0xda, 0x07, 0x44, 0x52, 0xe0, 0x1f, 0xfa, 0x1d, 0x82, 0xc2, 0x42, 0x55, - 0x83, 0xe2, 0x04, 0x36, 0xfa, 0x08, 0x94, 0x83, 0x86, 0xe5, 0x90, 0xdb, 0x1d, 0xc1, 0x6a, 0x7d, - 0x9f, 0x34, 0xee, 0x6d, 0x7b, 0xb6, 0x1b, 0x0a, 0xc7, 0xed, 0x82, 0xa0, 0x54, 0xae, 0x0f, 0xc1, - 0xc3, 0x43, 0x29, 0xa0, 0x3f, 0x31, 0xe0, 0x7c, 0xc7, 0x27, 0xdb, 0xbe, 0xd7, 0xf6, 0xa8, 0xf4, - 0x0e, 0xb8, 0x78, 0xc2, 0xd5, 0x79, 0x65, 0xc2, 0x6d, 0xca, 0x5b, 0x06, 0x4f, 0x53, 0xef, 0xec, - 0xf7, 0x2a, 0xe7, 0xb7, 0x47, 0x0d, 0x00, 0x8f, 0x1e, 0x1f, 0xfa, 0x53, 0x03, 0x56, 0x3a, 0x5e, - 0x10, 0x8e, 0x98, 0x42, 0xe1, 0x44, 0xa7, 0x60, 0xf6, 0x7b, 0x95, 0x95, 0xed, 0x91, 0x23, 0xc0, - 0x47, 0x8c, 0xd0, 0xec, 0x97, 0xe0, 0x94, 0x22, 0x7b, 0xc2, 0x03, 0x7c, 0x01, 0xe6, 0x23, 0x61, - 0xe0, 0x31, 0x07, 0x2e, 0x7b, 0xd2, 0x5f, 0xad, 0xaa, 0x40, 0xac, 0xe3, 0x52, 0xb9, 0x93, 0xa2, - 0xc8, 0x7b, 0x27, 0xe4, 0x6e, 0x5b, 0x83, 0xe2, 0x04, 0x36, 0xda, 0x80, 0xd3, 0xa2, 0x05, 0x93, - 0x8e, 0x63, 0x37, 0xac, 0x75, 0xaf, 0x2b, 0x44, 0xae, 0x50, 0x3b, 0xdb, 0xef, 0x55, 0x4e, 0x6f, - 0x0f, 0x82, 0x71, 0x5a, 0x1f, 0xb4, 0x09, 0xcb, 0x56, 0x37, 0xf4, 0xe4, 0xfc, 0xaf, 0xb8, 0xd6, - 0xae, 0x43, 0x9a, 0x4c, 0xb4, 0x8a, 0xb5, 0x32, 0xd5, 0x1a, 0xd5, 0x14, 0x38, 0x4e, 0xed, 0x85, - 0xb6, 0x13, 0xd4, 0xea, 0xa4, 0xe1, 0xb9, 0x4d, 0xfe, 0x95, 0x0b, 0xb5, 0x27, 0xc5, 0xf4, 0x74, - 0x8a, 0x02, 0x07, 0xa7, 0xf6, 0x44, 0x0e, 0x2c, 0xb4, 0xad, 0x07, 0xb7, 0x5d, 0xeb, 0xc0, 0xb2, - 0x1d, 0xca, 0xa4, 0x3c, 0x7d, 0x84, 0x6b, 0xda, 0x0d, 0x6d, 0x67, 0x95, 0xc7, 0xa7, 0x56, 0x37, - 0xdc, 0xf0, 0xa6, 0x5f, 0x0f, 0xa9, 0x11, 0xa8, 0x21, 0xba, 0xb0, 0x5b, 0x1a, 0x2d, 0x9c, 0xa0, - 0x8d, 0x6e, 0xc2, 0x19, 0xb6, 0x1d, 0x2f, 0x7b, 0xf7, 0xdd, 0xcb, 0xc4, 0xb1, 0x0e, 0xa3, 0x09, - 0xcc, 0xb0, 0x09, 0x3c, 0xde, 0xef, 0x55, 0xce, 0xd4, 0xd3, 0x10, 0x70, 0x7a, 0x3f, 0xea, 0xcb, - 0xeb, 0x00, 0x4c, 0x0e, 0xec, 0xc0, 0xf6, 0x5c, 0xee, 0xcb, 0x17, 0x63, 0x5f, 0xbe, 0x3e, 0x1c, - 0x0d, 0x8f, 0xa2, 0x81, 0x7e, 0xdb, 0x80, 0xe5, 0xb4, 0x6d, 0x58, 0x9e, 0xcd, 0x22, 0xae, 0x93, - 0xd8, 0x5a, 0x5c, 0x22, 0x52, 0x95, 0x42, 0xea, 0x20, 0xd0, 0x67, 0x0c, 0x98, 0xb3, 0x14, 0xe7, - 0xac, 0x0c, 0x6c, 0x54, 0xd7, 0x27, 0xf5, 0x86, 0x63, 0x8a, 0xb5, 0xa5, 0x7e, 0xaf, 0xa2, 0x39, - 0x80, 0x58, 0xe3, 0x88, 0x7e, 0xc7, 0x80, 0x33, 0xa9, 0x7b, 0xbc, 0x5c, 0x3a, 0x89, 0x15, 0x62, - 0x42, 0x92, 0xae, 0x73, 0xd2, 0x87, 0x81, 0xde, 0x30, 0xa4, 0x29, 0xdb, 0x8a, 0xce, 0x23, 0x73, - 0x6c, 0x68, 0xb7, 0x26, 0xf4, 0x47, 0x63, 0xeb, 0x1d, 0x11, 0xae, 0x9d, 0x56, 0x2c, 0x63, 0xd4, - 0x88, 0x93, 0xec, 0xd1, 0x97, 0x8d, 0xc8, 0x34, 0xca, 0x11, 0xcd, 0x9f, 0xd4, 0x88, 0x50, 0x6c, - 0x69, 0xe5, 0x80, 0x12, 0xcc, 0xd1, 0x47, 0xe1, 0x9c, 0xb5, 0xeb, 0xf9, 0x61, 0xea, 0xe6, 0x2b, - 0x2f, 0xb0, 0x6d, 0xb4, 0xd2, 0xef, 0x55, 0xce, 0x55, 0x87, 0x62, 0xe1, 0x11, 0x14, 0xcc, 0x7f, - 0xce, 0xc3, 0xdc, 0xba, 0xe5, 0x5a, 0xfe, 0xa1, 0x30, 0x5d, 0xdf, 0x30, 0xe0, 0xc9, 0x46, 0xd7, - 0xf7, 0x89, 0x1b, 0xd6, 0x43, 0xd2, 0x19, 0x34, 0x5c, 0xc6, 0x89, 0x1a, 0xae, 0x0b, 0xfd, 0x5e, - 0xe5, 0xc9, 0xf5, 0x11, 0xfc, 0xf1, 0xc8, 0xd1, 0xa1, 0xbf, 0x32, 0xc0, 0x14, 0x08, 0x35, 0xab, - 0x71, 0xaf, 0xe5, 0x7b, 0x5d, 0xb7, 0x39, 0x38, 0x89, 0xdc, 0x89, 0x4e, 0xe2, 0xe9, 0x7e, 0xaf, - 0x62, 0xae, 0x1f, 0x39, 0x0a, 0x7c, 0x8c, 0x91, 0xa2, 0x97, 0xe0, 0x94, 0xc0, 0xba, 0xf2, 0xa0, - 0x43, 0x7c, 0x9b, 0xfa, 0xbe, 0x22, 0xce, 0xff, 0xb8, 0x30, 0x2b, 0xa7, 0xd6, 0x93, 0x08, 0x78, - 0xb0, 0x8f, 0xf9, 0x47, 0x53, 0x00, 0xd1, 0x97, 0x26, 0x1d, 0xf4, 0x33, 0x30, 0x1b, 0x90, 0xf0, - 0x0e, 0xb1, 0x5b, 0xfb, 0x51, 0xe4, 0x86, 0x87, 0x83, 0xa2, 0x46, 0x1c, 0xc3, 0xd1, 0x3d, 0x28, - 0x74, 0xac, 0x6e, 0x40, 0xc4, 0xba, 0x5d, 0xcf, 0x64, 0xdd, 0xb6, 0x29, 0x45, 0x7e, 0xb6, 0x60, - 0x7f, 0x62, 0xce, 0x03, 0x7d, 0xce, 0x00, 0x20, 0xfa, 0x5c, 0x4b, 0x97, 0xea, 0x99, 0xb0, 0x8c, - 0x97, 0x83, 0xae, 0x41, 0x6d, 0xa1, 0xdf, 0xab, 0x80, 0xb2, 0x6a, 0x0a, 0x5b, 0x74, 0x1f, 0x8a, - 0x56, 0xa4, 0x2e, 0xa7, 0x4e, 0x42, 0x5d, 0x32, 0x97, 0x5f, 0x7e, 0x6f, 0xc9, 0x0c, 0x7d, 0xd1, - 0x80, 0x85, 0x80, 0x84, 0xe2, 0x53, 0xd1, 0x4d, 0x2b, 0x7c, 0xc5, 0xcd, 0xc9, 0xf8, 0xd7, 0x35, - 0x9a, 0x5c, 0xf9, 0xe8, 0x6d, 0x38, 0xc1, 0xd7, 0x7c, 0xa3, 0x04, 0x0b, 0x91, 0xc8, 0xc4, 0xee, - 0x5f, 0x83, 0xb7, 0xa4, 0xbb, 0x7f, 0xeb, 0x2a, 0x10, 0xeb, 0xb8, 0xb4, 0x73, 0x10, 0x52, 0x7f, - 0x43, 0xf7, 0xfe, 0x64, 0xe7, 0xba, 0x0a, 0xc4, 0x3a, 0x2e, 0x6a, 0x43, 0x21, 0x08, 0x49, 0x27, - 0x0a, 0xb6, 0x5e, 0x9b, 0x6c, 0x35, 0xe2, 0x9d, 0x10, 0x07, 0x94, 0xe8, 0xaf, 0x00, 0x73, 0x2e, - 0xe8, 0x2b, 0x06, 0x2c, 0x84, 0x5a, 0x4e, 0x4b, 0x88, 0x41, 0x36, 0x92, 0xa8, 0xa7, 0xcb, 0xf8, - 0xd7, 0xd0, 0xdb, 0x70, 0x82, 0x7d, 0x8a, 0x47, 0x58, 0x38, 0x41, 0x8f, 0xf0, 0x55, 0x28, 0xb6, - 0xad, 0x07, 0xf5, 0xae, 0xdf, 0x7a, 0x78, 0xcf, 0x53, 0xa4, 0xfc, 0x38, 0x15, 0x2c, 0xe9, 0xa1, - 0xcf, 0x1a, 0xca, 0xe6, 0x9a, 0x61, 0xc4, 0xef, 0x64, 0xbb, 0xb9, 0xa4, 0x42, 0x1d, 0xba, 0xcd, - 0x06, 0xfc, 0xb3, 0xe2, 0x23, 0xf7, 0xcf, 0xa8, 0xaf, 0xc1, 0x37, 0x88, 0xf4, 0x35, 0x66, 0x4f, - 0xd4, 0xd7, 0x58, 0xd7, 0x98, 0xe1, 0x04, 0x73, 0x36, 0x1e, 0xbe, 0xe7, 0xe4, 0x78, 0xe0, 0x44, - 0xc7, 0x53, 0xd7, 0x98, 0xe1, 0x04, 0xf3, 0xe1, 0x87, 0x92, 0xd2, 0xc9, 0x1c, 0x4a, 0xe6, 0x32, - 0x38, 0x94, 0x8c, 0xf6, 0xd7, 0xe6, 0x27, 0xf6, 0xd7, 0x7e, 0x64, 0xc0, 0xd9, 0x75, 0xa7, 0x1b, - 0x84, 0xc4, 0xff, 0x5f, 0x93, 0xc7, 0xf8, 0x0f, 0x03, 0x9e, 0x18, 0x32, 0xe7, 0x47, 0x90, 0xce, - 0x78, 0x5d, 0x4f, 0x67, 0xdc, 0x9e, 0xd0, 0xee, 0xa4, 0xcf, 0x63, 0x48, 0x56, 0x23, 0x84, 0xf9, - 0xcb, 0x56, 0x68, 0x35, 0xbd, 0x16, 0x4f, 0x33, 0xa0, 0x17, 0xa1, 0x68, 0xbb, 0x21, 0xf1, 0x0f, - 0x2c, 0x47, 0x58, 0x5e, 0x33, 0x1a, 0xfa, 0x86, 0x68, 0x7f, 0xbb, 0x57, 0x59, 0xb8, 0xdc, 0xf5, - 0x59, 0xa1, 0x06, 0xd7, 0xc3, 0x58, 0xf6, 0x41, 0x4f, 0x41, 0xe1, 0xe3, 0x5d, 0xe2, 0x1f, 0x26, - 0xd3, 0xfa, 0xb7, 0x68, 0x23, 0xe6, 0x30, 0xf3, 0xef, 0x72, 0xa0, 0x78, 0x45, 0x8f, 0x40, 0xac, - 0x5c, 0x4d, 0xac, 0x26, 0xf4, 0x73, 0x14, 0x1f, 0x6f, 0x58, 0x3d, 0xc6, 0x41, 0xa2, 0x1e, 0xe3, - 0x46, 0x66, 0x1c, 0x47, 0x97, 0x63, 0xbc, 0x69, 0xc0, 0x13, 0x31, 0xf2, 0xa0, 0xaf, 0x7f, 0x74, - 0x60, 0xfe, 0x39, 0x28, 0x59, 0x71, 0x37, 0xf1, 0x15, 0x65, 0xbd, 0x8f, 0x42, 0x11, 0xab, 0x78, - 0x71, 0x4a, 0x3c, 0xff, 0x90, 0x29, 0xf1, 0xa9, 0xd1, 0x29, 0x71, 0xf3, 0xc7, 0x39, 0x38, 0x3f, - 0x38, 0xb3, 0x48, 0xba, 0x31, 0xd9, 0x3b, 0xc6, 0xdc, 0x9e, 0x87, 0xb9, 0x50, 0x74, 0xa0, 0xad, - 0x62, 0x72, 0xcb, 0x02, 0x73, 0x6e, 0x47, 0x81, 0x61, 0x0d, 0x93, 0xf6, 0x6c, 0xf0, 0x7d, 0x55, - 0x6f, 0x78, 0x9d, 0xa8, 0x76, 0x40, 0xf6, 0x5c, 0x57, 0x60, 0x58, 0xc3, 0x94, 0xc9, 0xba, 0xa9, - 0x13, 0x2f, 0x6e, 0xa8, 0xc3, 0x99, 0x28, 0x67, 0x73, 0xd5, 0xf3, 0xd7, 0xbd, 0x76, 0xc7, 0x21, - 0x2c, 0xe5, 0x54, 0x60, 0x83, 0x3d, 0x2f, 0xba, 0x9c, 0xc1, 0x69, 0x48, 0x38, 0xbd, 0xaf, 0xf9, - 0x66, 0x1e, 0x4e, 0xc7, 0xcb, 0xbe, 0xee, 0xb9, 0x4d, 0x9b, 0x65, 0xbe, 0x5e, 0x80, 0xa9, 0xf0, - 0xb0, 0x13, 0x2d, 0xf6, 0xff, 0x8b, 0x86, 0xb3, 0x73, 0xd8, 0xa1, 0x5f, 0xfb, 0x6c, 0x4a, 0x17, - 0x0a, 0xc2, 0xac, 0x13, 0xda, 0x94, 0xbb, 0x83, 0x7f, 0x81, 0x67, 0x75, 0x69, 0x7e, 0xbb, 0x57, - 0x49, 0xa9, 0xf2, 0x5b, 0x95, 0x94, 0x74, 0x99, 0x47, 0x77, 0x61, 0xc1, 0xb1, 0x82, 0xf0, 0x76, - 0xa7, 0x69, 0x85, 0x64, 0xc7, 0x6e, 0x13, 0xb1, 0xe7, 0xc6, 0xa9, 0x53, 0x90, 0xe1, 0xe1, 0x4d, - 0x8d, 0x12, 0x4e, 0x50, 0x46, 0x07, 0x80, 0x68, 0xcb, 0x8e, 0x6f, 0xb9, 0x01, 0x9f, 0x15, 0xe5, - 0x37, 0x7e, 0x5d, 0xc4, 0x39, 0xc1, 0x0f, 0x6d, 0x0e, 0x50, 0xc3, 0x29, 0x1c, 0xd0, 0xd3, 0x30, - 0xed, 0x13, 0x2b, 0x10, 0x1f, 0x73, 0x36, 0xde, 0xff, 0x98, 0xb5, 0x62, 0x01, 0x55, 0x37, 0xd4, - 0xf4, 0x11, 0x1b, 0xea, 0xfb, 0x06, 0x2c, 0xc4, 0x9f, 0xe9, 0x11, 0x98, 0xb9, 0xb6, 0x6e, 0xe6, - 0xae, 0x65, 0xa5, 0x12, 0x87, 0x58, 0xb6, 0x3f, 0x9e, 0x52, 0xe7, 0xc7, 0x32, 0xf5, 0x9f, 0x80, - 0xd9, 0x68, 0x57, 0x47, 0xb9, 0xfa, 0x09, 0xbd, 0x71, 0xcd, 0xb3, 0x50, 0x4a, 0x89, 0x04, 0x13, - 0x1c, 0xf3, 0xa3, 0x86, 0xb5, 0x29, 0x8c, 0xa6, 0x10, 0x7b, 0x69, 0x58, 0x23, 0x63, 0x9a, 0x66, - 0x58, 0xa3, 0x3e, 0xe8, 0x36, 0x9c, 0xed, 0xf8, 0x1e, 0xab, 0xe5, 0xbc, 0x4c, 0xac, 0xa6, 0x63, - 0xbb, 0x24, 0x72, 0xfa, 0x78, 0x76, 0xe2, 0x89, 0x7e, 0xaf, 0x72, 0x76, 0x3b, 0x1d, 0x05, 0x0f, - 0xeb, 0xab, 0x97, 0x44, 0x4d, 0x1d, 0x5d, 0x12, 0x85, 0x7e, 0x45, 0x1e, 0xad, 0x48, 0x50, 0x2e, - 0xb0, 0x45, 0xfc, 0x70, 0x56, 0x9f, 0x32, 0x45, 0xad, 0xc7, 0x22, 0x55, 0x15, 0x4c, 0xb1, 0x64, - 0x3f, 0xdc, 0x7f, 0x9f, 0x7e, 0x38, 0xff, 0xdd, 0xfc, 0x7c, 0x01, 0x96, 0x92, 0xc6, 0xf6, 0xe4, - 0xcb, 0xbd, 0x7e, 0xdd, 0x80, 0xa5, 0x48, 0x50, 0x38, 0x4f, 0x12, 0x05, 0x21, 0x36, 0x33, 0x92, - 0x4f, 0xee, 0x36, 0xc8, 0xda, 0xdb, 0x9d, 0x04, 0x37, 0x3c, 0xc0, 0x1f, 0xbd, 0x06, 0x25, 0x79, - 0x56, 0x7f, 0xa8, 0xda, 0xaf, 0x45, 0xe6, 0x30, 0xc4, 0x24, 0xb0, 0x4a, 0x0f, 0x7d, 0xde, 0x00, - 0x68, 0x44, 0x1a, 0x3d, 0x12, 0xa4, 0x5b, 0x59, 0x09, 0x92, 0xb4, 0x15, 0xb1, 0x5f, 0x28, 0x9b, - 0x02, 0xac, 0x30, 0x46, 0xbf, 0xc1, 0x4e, 0xe9, 0xd2, 0x91, 0xa1, 0xa2, 0x43, 0x47, 0xf2, 0xa1, - 0xac, 0x45, 0x3a, 0x8e, 0xdd, 0x4a, 0xaf, 0x41, 0x01, 0x05, 0x58, 0x1b, 0x84, 0xf9, 0x02, 0xc8, - 0x5c, 0x3d, 0xdd, 0xa1, 0x2c, 0x5b, 0xbf, 0x6d, 0x85, 0xfb, 0x42, 0x04, 0xe5, 0x0e, 0xbd, 0x1a, - 0x01, 0x70, 0x8c, 0x63, 0xfe, 0xb9, 0x01, 0xcb, 0x1b, 0x41, 0x68, 0x7b, 0x97, 0x49, 0x10, 0xd2, - 0x4d, 0x4b, 0xed, 0x7b, 0xd7, 0x21, 0xc7, 0xf0, 0x90, 0x2e, 0xc3, 0x92, 0x08, 0xa8, 0x75, 0x77, - 0x03, 0x12, 0x2a, 0x5e, 0x92, 0x14, 0x9d, 0xf5, 0x04, 0x1c, 0x0f, 0xf4, 0xa0, 0x54, 0x44, 0x64, - 0x2d, 0xa6, 0x92, 0xd7, 0xa9, 0xd4, 0x13, 0x70, 0x3c, 0xd0, 0xc3, 0xfc, 0x66, 0x0e, 0x4e, 0xb3, - 0x69, 0x24, 0x0a, 0xbf, 0x7f, 0xcd, 0x80, 0x85, 0x03, 0xdb, 0x0f, 0xbb, 0x96, 0xa3, 0x86, 0x08, - 0x27, 0x96, 0x1e, 0xc6, 0xeb, 0x15, 0x8d, 0x70, 0xec, 0x17, 0xe8, 0xed, 0x38, 0x31, 0x00, 0x3a, - 0xa6, 0xc5, 0xa6, 0xbe, 0xda, 0xd9, 0x1c, 0x61, 0xd3, 0xbe, 0x23, 0x4f, 0x34, 0x25, 0x1a, 0x71, - 0x92, 0xbf, 0xf9, 0x37, 0x86, 0x58, 0x3f, 0x7d, 0xec, 0xc7, 0x90, 0x02, 0x13, 0xa6, 0x7d, 0xaf, - 0x4b, 0x8d, 0x64, 0x8e, 0x15, 0xd6, 0x03, 0xf3, 0x34, 0x58, 0x0b, 0x16, 0x10, 0x74, 0x1f, 0x66, - 0x43, 0x27, 0xe0, 0x8d, 0x42, 0x57, 0x4d, 0xe8, 0xdc, 0xee, 0x6c, 0xd6, 0x19, 0x39, 0xc5, 0xfe, - 0x88, 0x16, 0x6a, 0x47, 0x23, 0x5e, 0xe6, 0xd7, 0x0c, 0x98, 0xbd, 0xee, 0xed, 0x8a, 0xe3, 0xea, - 0x47, 0x33, 0x38, 0x3a, 0x4a, 0x0b, 0x23, 0xe3, 0x44, 0xb1, 0xd3, 0xf2, 0xa2, 0x76, 0x70, 0x7c, - 0x52, 0xa1, 0xbd, 0xca, 0xae, 0xa8, 0x50, 0x52, 0xd7, 0xbd, 0xdd, 0xa1, 0x91, 0x85, 0xdf, 0x2b, - 0xc0, 0xfc, 0xcb, 0xd6, 0x21, 0x71, 0x43, 0x4b, 0x8c, 0xf8, 0xdd, 0x30, 0x63, 0x35, 0x9b, 0x69, - 0x57, 0x36, 0xaa, 0xbc, 0x19, 0x47, 0x70, 0x76, 0x16, 0xeb, 0xb0, 0x8a, 0x02, 0xc5, 0x6b, 0x88, - 0xcf, 0x62, 0x31, 0x08, 0xab, 0x78, 0xf1, 0x26, 0x5e, 0xf7, 0xdc, 0x3d, 0xbb, 0x95, 0xb6, 0xfd, - 0xd6, 0x13, 0x70, 0x3c, 0xd0, 0x03, 0x5d, 0x07, 0x24, 0x0a, 0x0e, 0xab, 0x8d, 0x86, 0xd7, 0x75, - 0xf9, 0x36, 0xe6, 0xc7, 0x34, 0xe9, 0xbe, 0x6e, 0x0d, 0x60, 0xe0, 0x94, 0x5e, 0xe8, 0x23, 0x50, - 0x6e, 0x30, 0xca, 0xc2, 0x99, 0x51, 0x29, 0x72, 0x87, 0x56, 0x56, 0xf3, 0xac, 0x0f, 0xc1, 0xc3, - 0x43, 0x29, 0xd0, 0x91, 0x06, 0xa1, 0xe7, 0x5b, 0x2d, 0xa2, 0xd2, 0x9d, 0xd6, 0x47, 0x5a, 0x1f, - 0xc0, 0xc0, 0x29, 0xbd, 0xd0, 0xa7, 0x61, 0x36, 0xdc, 0xf7, 0x49, 0xb0, 0xef, 0x39, 0x4d, 0x11, - 0x38, 0x9e, 0xf0, 0xec, 0x2e, 0xbe, 0xfe, 0x4e, 0x44, 0x55, 0x11, 0xef, 0xa8, 0x09, 0xc7, 0x3c, - 0x91, 0x0f, 0xd3, 0x01, 0x3d, 0x38, 0x06, 0xe5, 0x62, 0x16, 0x0e, 0xaa, 0xe0, 0xce, 0xce, 0xa2, - 0x4a, 0xd4, 0x80, 0x71, 0xc0, 0x82, 0x93, 0xf9, 0xed, 0x1c, 0xcc, 0xa9, 0x88, 0xc7, 0x50, 0x11, - 0x9f, 0x33, 0x60, 0xae, 0xe1, 0xb9, 0xa1, 0xef, 0x39, 0xfc, 0x44, 0xcc, 0x37, 0xc8, 0x84, 0x17, - 0x16, 0x18, 0xa9, 0xcb, 0x24, 0xb4, 0x6c, 0x47, 0x39, 0x5c, 0x2b, 0x6c, 0xb0, 0xc6, 0x14, 0x7d, - 0xc9, 0x80, 0xc5, 0x38, 0xa3, 0x16, 0x1f, 0xcd, 0x33, 0x1d, 0x88, 0x2c, 0x7a, 0xbb, 0xa2, 0x73, - 0xc2, 0x49, 0xd6, 0xe6, 0x2e, 0x2c, 0x25, 0xbf, 0x36, 0x5d, 0xca, 0x8e, 0x25, 0xf6, 0x7a, 0x3e, - 0x5e, 0xca, 0x6d, 0x2b, 0x08, 0x30, 0x83, 0xa0, 0xf7, 0x40, 0xb1, 0x6d, 0xf9, 0x2d, 0xdb, 0xb5, - 0x1c, 0xb6, 0x8a, 0x79, 0x45, 0x21, 0x89, 0x76, 0x2c, 0x31, 0xcc, 0x1f, 0x4e, 0x41, 0x69, 0x8b, - 0x58, 0x41, 0xd7, 0x27, 0x2c, 0x76, 0x76, 0xe2, 0xce, 0xa9, 0x76, 0x03, 0x20, 0x9f, 0xdd, 0x0d, - 0x00, 0xf4, 0x2a, 0xc0, 0x9e, 0xed, 0xda, 0xc1, 0xfe, 0x43, 0xde, 0x2d, 0x60, 0xb9, 0xd5, 0xab, - 0x92, 0x02, 0x56, 0xa8, 0xc5, 0x97, 0x8b, 0x0a, 0x23, 0x2e, 0x17, 0x7d, 0xde, 0x50, 0x8c, 0x07, - 0x77, 0xfb, 0xee, 0x4c, 0x5a, 0xba, 0x2d, 0x3f, 0xcc, 0x6a, 0x64, 0x4c, 0xae, 0xb8, 0xa1, 0x7f, - 0x38, 0xd2, 0xc6, 0xec, 0x40, 0xd1, 0x27, 0x41, 0xb7, 0x4d, 0xdd, 0xec, 0x99, 0xb1, 0x97, 0x81, - 0xa5, 0x9f, 0xb0, 0xe8, 0x8f, 0x25, 0xa5, 0x73, 0x2f, 0xc0, 0xbc, 0x36, 0x04, 0xb4, 0x04, 0xf9, - 0x7b, 0xe4, 0x90, 0xcb, 0x09, 0xa6, 0x7f, 0xa2, 0x65, 0xad, 0x08, 0x57, 0x2c, 0xcb, 0x07, 0x72, - 0xcf, 0x1b, 0xe6, 0x8f, 0xa7, 0x61, 0x5a, 0xd8, 0xab, 0xa3, 0x75, 0x81, 0x1a, 0x32, 0xce, 0x3d, - 0x44, 0xc8, 0xf8, 0x3a, 0xcc, 0xd9, 0xae, 0x1d, 0xda, 0x96, 0xc3, 0xce, 0x62, 0xc2, 0x56, 0x3d, - 0x1d, 0xed, 0xff, 0x0d, 0x05, 0x96, 0x42, 0x47, 0xeb, 0x8b, 0x6e, 0x41, 0x81, 0x29, 0x73, 0x21, - 0x4f, 0xe3, 0x67, 0x14, 0x59, 0xb5, 0x00, 0xaf, 0xea, 0xe3, 0x94, 0x98, 0x37, 0xcb, 0xaf, 0x7b, - 0xc8, 0x23, 0x84, 0x10, 0xab, 0xd8, 0x9b, 0x4d, 0xc0, 0xf1, 0x40, 0x0f, 0x4a, 0x65, 0xcf, 0xb2, - 0x9d, 0xae, 0x4f, 0x62, 0x2a, 0xd3, 0x3a, 0x95, 0xab, 0x09, 0x38, 0x1e, 0xe8, 0x81, 0xf6, 0x60, - 0x4e, 0xb4, 0xf1, 0x84, 0xd2, 0xcc, 0x43, 0xce, 0x92, 0x25, 0x0e, 0xaf, 0x2a, 0x94, 0xb0, 0x46, - 0x17, 0x75, 0xe1, 0x94, 0xed, 0x36, 0x3c, 0xb7, 0xe1, 0x74, 0x03, 0xfb, 0x80, 0xc4, 0x25, 0x75, - 0x0f, 0xc3, 0xec, 0x4c, 0xbf, 0x57, 0x39, 0xb5, 0x91, 0x24, 0x87, 0x07, 0x39, 0xa0, 0xcf, 0x1a, - 0x70, 0xa6, 0xe1, 0xb9, 0x01, 0x2b, 0x2a, 0x3f, 0x20, 0x57, 0x7c, 0xdf, 0xf3, 0x39, 0xef, 0xd9, - 0x87, 0xe4, 0xcd, 0x42, 0x00, 0xeb, 0x69, 0x24, 0x71, 0x3a, 0x27, 0xf4, 0x3a, 0x14, 0x3b, 0xbe, - 0x77, 0x60, 0x37, 0x89, 0x2f, 0x92, 0x93, 0x9b, 0x59, 0xdc, 0xe7, 0xd8, 0x16, 0x34, 0x63, 0x4d, - 0x10, 0xb5, 0x60, 0xc9, 0xcf, 0xfc, 0xfa, 0x34, 0x2c, 0xe8, 0xe8, 0xe8, 0x53, 0x00, 0x1d, 0xdf, - 0x6b, 0x93, 0x70, 0x9f, 0xc8, 0xd2, 0xa8, 0x1b, 0x93, 0xde, 0xa5, 0x88, 0xe8, 0x89, 0xab, 0x26, - 0x4c, 0x93, 0xc6, 0xad, 0x58, 0xe1, 0x88, 0x7c, 0x98, 0xb9, 0xc7, 0x6d, 0x9a, 0x30, 0xf1, 0x2f, - 0x67, 0xe2, 0x90, 0x08, 0xce, 0x25, 0x6a, 0x72, 0x44, 0x13, 0x8e, 0x18, 0xa1, 0x5d, 0xc8, 0xdf, - 0x27, 0xbb, 0xd9, 0x54, 0xfd, 0xdf, 0x21, 0xe2, 0xa8, 0x50, 0x9b, 0xe9, 0xf7, 0x2a, 0xf9, 0x3b, - 0x64, 0x17, 0x53, 0xe2, 0x74, 0x5e, 0x4d, 0x9e, 0xf8, 0x12, 0xaa, 0x62, 0xc2, 0x79, 0x69, 0x59, - 0x34, 0x3e, 0x2f, 0xd1, 0x84, 0x23, 0x46, 0xe8, 0x75, 0x98, 0xbd, 0x6f, 0x1d, 0x90, 0x3d, 0xdf, - 0x73, 0x43, 0x51, 0x5a, 0x31, 0x61, 0xc9, 0xcf, 0x9d, 0x88, 0x9c, 0xe0, 0xcb, 0xac, 0xad, 0x6c, - 0xc4, 0x31, 0x3b, 0x74, 0x00, 0x45, 0x97, 0xdc, 0xc7, 0xc4, 0xb1, 0x1b, 0xa2, 0xda, 0x62, 0x42, - 0xb1, 0xbe, 0x21, 0xa8, 0x09, 0xce, 0xcc, 0x0c, 0x45, 0x6d, 0x58, 0xf2, 0xa2, 0xdf, 0xf2, 0xae, - 0xb7, 0x2b, 0x14, 0xd5, 0x84, 0xdf, 0x52, 0x1e, 0xfb, 0xf8, 0xb7, 0xbc, 0xee, 0xed, 0x62, 0x4a, - 0xdc, 0xfc, 0xe6, 0x14, 0xcc, 0xa9, 0xb7, 0x18, 0x8f, 0x61, 0xb3, 0xa4, 0xdb, 0x94, 0x1b, 0xc7, - 0x6d, 0xa2, 0x5e, 0x6f, 0x3b, 0xb6, 0xf1, 0xd1, 0xc1, 0x77, 0x23, 0x33, 0xaf, 0x21, 0xf6, 0x7a, - 0x95, 0xc6, 0x00, 0x6b, 0x4c, 0xc7, 0xc8, 0x9a, 0x51, 0x3f, 0x88, 0x9b, 0x43, 0x5e, 0x26, 0x2e, - 0xfd, 0x20, 0xcd, 0xc0, 0x5d, 0x02, 0x88, 0xef, 0x33, 0x8a, 0xd0, 0xa9, 0x0c, 0x9b, 0x29, 0xf7, - 0x2c, 0x15, 0x2c, 0xf4, 0x34, 0x4c, 0x53, 0x83, 0x41, 0x9a, 0xa2, 0x7e, 0x5b, 0x1e, 0x2d, 0xae, - 0xb2, 0x56, 0x2c, 0xa0, 0xe8, 0x79, 0x6a, 0xdb, 0x63, 0x35, 0x2f, 0xca, 0xb2, 0x97, 0x63, 0xdb, - 0x1e, 0xc3, 0xb0, 0x86, 0x49, 0x87, 0x4e, 0xa8, 0x56, 0x66, 0xaa, 0x5f, 0x19, 0x3a, 0x53, 0xd5, - 0x98, 0xc3, 0xd8, 0x51, 0x37, 0xa1, 0xc5, 0x99, 0xd2, 0x2e, 0x28, 0x47, 0xdd, 0x04, 0x1c, 0x0f, - 0xf4, 0x30, 0x3f, 0x06, 0x0b, 0xba, 0x34, 0xd3, 0x25, 0xee, 0xf8, 0xde, 0x9e, 0xed, 0x90, 0xe4, - 0x21, 0x7d, 0x9b, 0x37, 0xe3, 0x08, 0x7e, 0xbc, 0x84, 0xf7, 0x5f, 0xe4, 0xe1, 0xf4, 0x8d, 0x96, - 0xed, 0x3e, 0x48, 0xc4, 0xb2, 0xd2, 0x9e, 0x49, 0x30, 0xc6, 0x7d, 0x26, 0x21, 0xae, 0x7a, 0x13, - 0x8f, 0x3e, 0xa4, 0x57, 0xbd, 0x45, 0x2f, 0x42, 0xe8, 0xb8, 0xe8, 0xfb, 0x06, 0x3c, 0x69, 0x35, - 0xb9, 0x7f, 0x61, 0x39, 0xa2, 0x35, 0x66, 0x1a, 0xc9, 0x78, 0x30, 0xa1, 0xb6, 0x18, 0x9c, 0xfc, - 0x6a, 0x75, 0x04, 0x57, 0xee, 0x35, 0xbf, 0x4b, 0xcc, 0xe0, 0xc9, 0x51, 0xa8, 0x78, 0xe4, 0xf0, - 0xcf, 0xdd, 0x84, 0x77, 0x1e, 0xc9, 0x68, 0x2c, 0xdf, 0xf8, 0x73, 0x06, 0xcc, 0xf2, 0xe8, 0x11, - 0x26, 0x7b, 0x74, 0xf3, 0x58, 0x1d, 0xfb, 0x15, 0xe2, 0x07, 0xd1, 0x5d, 0xc7, 0xd9, 0x78, 0xf3, - 0x54, 0xb7, 0x37, 0x04, 0x04, 0x2b, 0x58, 0x54, 0x3d, 0xdd, 0xb3, 0xdd, 0xa6, 0xf8, 0x4c, 0x52, - 0x3d, 0xbd, 0x6c, 0xbb, 0x4d, 0xcc, 0x20, 0x52, 0x81, 0xe5, 0x87, 0x29, 0x30, 0xf3, 0xf7, 0x0d, - 0x58, 0x60, 0x45, 0xad, 0xb1, 0x73, 0xf8, 0x9c, 0x4c, 0x12, 0xf2, 0x61, 0x9c, 0xd7, 0x93, 0x84, - 0x6f, 0xf7, 0x2a, 0x25, 0x5e, 0x06, 0xab, 0xe7, 0x0c, 0x3f, 0x2c, 0x0e, 0x78, 0x2c, 0x95, 0x99, - 0x1b, 0xfb, 0xfc, 0x21, 0xc3, 0x19, 0xf5, 0x88, 0x08, 0x8e, 0xe9, 0x99, 0x5f, 0xcf, 0xc3, 0xe9, - 0x94, 0xea, 0x2c, 0x7a, 0xf6, 0x9a, 0x76, 0xac, 0x5d, 0xe2, 0x44, 0x89, 0xb8, 0xd7, 0x32, 0xaf, - 0x00, 0x5b, 0xdd, 0x64, 0xf4, 0xb9, 0x24, 0x49, 0xfd, 0xc4, 0x1b, 0xb1, 0x60, 0x8e, 0x7e, 0xcb, - 0x80, 0x92, 0xa5, 0x08, 0x3b, 0xcf, 0x4d, 0xee, 0x66, 0x3f, 0x98, 0x01, 0xd9, 0x56, 0x6a, 0x2a, - 0x62, 0x51, 0x56, 0xc7, 0x72, 0xee, 0xe7, 0xa1, 0xa4, 0x4c, 0x61, 0x1c, 0x19, 0x3d, 0xf7, 0x22, - 0x2c, 0x4d, 0x24, 0xe3, 0x1f, 0x82, 0x71, 0x2f, 0xcf, 0x52, 0x8b, 0x70, 0x5f, 0xad, 0xf5, 0x96, - 0x2b, 0x2e, 0x8a, 0xbd, 0x05, 0xd4, 0xdc, 0x85, 0xa5, 0xa4, 0x03, 0x3a, 0x4e, 0x4c, 0xf4, 0x58, - 0xea, 0xf6, 0x7d, 0x30, 0xe6, 0x75, 0x57, 0xf3, 0x2f, 0x73, 0x30, 0x23, 0x4a, 0x3c, 0x1f, 0x41, - 0x39, 0xd2, 0x3d, 0x2d, 0xaa, 0xbc, 0x91, 0x49, 0x65, 0xea, 0xd0, 0x5a, 0xa4, 0x20, 0x51, 0x8b, - 0xf4, 0x72, 0x36, 0xec, 0x46, 0x17, 0x22, 0x7d, 0x25, 0x07, 0x8b, 0x89, 0x92, 0x59, 0xf4, 0x05, - 0x63, 0x30, 0xff, 0x7e, 0x3b, 0xd3, 0xaa, 0x5c, 0x59, 0xec, 0x36, 0x3a, 0x15, 0x1f, 0x68, 0x17, - 0xe8, 0x6f, 0x65, 0xf6, 0xc8, 0xca, 0xc8, 0xbb, 0xf4, 0xff, 0x64, 0xc0, 0xe3, 0x43, 0x8b, 0x88, - 0xd9, 0x45, 0x25, 0x5f, 0x87, 0x0a, 0xd9, 0xcb, 0xf8, 0x52, 0x80, 0x8c, 0x66, 0x26, 0xef, 0x96, - 0x24, 0xd9, 0xa3, 0x67, 0x61, 0x8e, 0xe9, 0x71, 0xba, 0x7d, 0x42, 0xd2, 0x11, 0xaf, 0x63, 0xb0, - 0xc8, 0x41, 0x5d, 0x69, 0xc7, 0x1a, 0x96, 0xf9, 0xbb, 0x06, 0x94, 0x87, 0x5d, 0x5b, 0x39, 0x86, - 0x5f, 0xfe, 0x73, 0x89, 0xd2, 0xa0, 0xca, 0x40, 0x69, 0x50, 0xc2, 0x33, 0x8f, 0xaa, 0x80, 0x14, - 0xa7, 0x38, 0x7f, 0x44, 0xe5, 0xcb, 0x97, 0x0d, 0x38, 0x3b, 0x44, 0x70, 0x06, 0x4a, 0xc4, 0x8c, - 0x87, 0x2e, 0x11, 0xcb, 0x1d, 0xb7, 0x44, 0xcc, 0xfc, 0xeb, 0x3c, 0x2c, 0x89, 0xf1, 0xc4, 0xc6, - 0xfc, 0x79, 0xad, 0xc0, 0xea, 0x5d, 0x89, 0x02, 0xab, 0xe5, 0x24, 0xfe, 0xff, 0x55, 0x57, 0xfd, - 0x74, 0x55, 0x57, 0xfd, 0x24, 0x07, 0x67, 0x52, 0xaf, 0x04, 0xa1, 0x2f, 0xa6, 0x68, 0xc1, 0x3b, - 0x19, 0xdf, 0x3d, 0x3a, 0xa6, 0x1e, 0x9c, 0xb4, 0x24, 0xe9, 0x37, 0xd5, 0x52, 0x20, 0x7e, 0x4c, - 0xd8, 0x3b, 0x81, 0x5b, 0x54, 0x63, 0x56, 0x05, 0x99, 0xbf, 0x9a, 0x87, 0x8b, 0xc7, 0x25, 0xf4, - 0x53, 0x5a, 0x35, 0x1a, 0x68, 0x55, 0xa3, 0x8f, 0xc6, 0x42, 0x9d, 0x4c, 0x01, 0xe9, 0xd7, 0xf2, - 0xd2, 0xec, 0x0d, 0xca, 0xe7, 0xb1, 0x92, 0x0b, 0x33, 0xd4, 0x8b, 0x89, 0x1e, 0xc4, 0x88, 0x55, - 0xe1, 0x4c, 0x9d, 0x37, 0xbf, 0xdd, 0xab, 0x9c, 0x12, 0xf7, 0xee, 0xeb, 0x24, 0x14, 0x8d, 0x38, - 0xea, 0x84, 0x2e, 0x42, 0xd1, 0xe7, 0xd0, 0xa8, 0x4e, 0x4e, 0x24, 0x4c, 0x78, 0x1b, 0x96, 0x50, - 0xf4, 0x69, 0xc5, 0xed, 0x9b, 0x3a, 0xa9, 0x5b, 0x29, 0xa3, 0xf2, 0x40, 0xaf, 0x41, 0x31, 0x88, - 0x5e, 0xcb, 0xe0, 0xd1, 0xc1, 0x67, 0x8e, 0x59, 0x7e, 0x49, 0x4f, 0x09, 0xd1, 0xd3, 0x19, 0x7c, - 0x7e, 0xf2, 0x61, 0x0d, 0x49, 0x12, 0x99, 0xd2, 0x41, 0xe7, 0x21, 0x1e, 0x48, 0x71, 0xce, 0xdf, - 0x34, 0xa0, 0x24, 0xbe, 0xd6, 0x23, 0xa8, 0x08, 0xbd, 0xab, 0x57, 0x84, 0x5e, 0xc9, 0x44, 0x77, - 0x0c, 0x29, 0x07, 0xbd, 0x0b, 0x73, 0xea, 0xad, 0x50, 0xf4, 0xaa, 0xa2, 0xfb, 0x8c, 0x49, 0x6e, - 0x9f, 0x45, 0xda, 0x31, 0xd6, 0x8b, 0xe6, 0x57, 0x8b, 0x72, 0x15, 0x59, 0xdd, 0xa9, 0x2a, 0x83, - 0xc6, 0x48, 0x19, 0x54, 0x45, 0x20, 0x97, 0xbd, 0x08, 0xdc, 0x82, 0x62, 0xa4, 0xa0, 0x84, 0x19, - 0x7f, 0x4a, 0xad, 0x68, 0xa1, 0xbe, 0x00, 0x25, 0xa6, 0x08, 0x2e, 0x3b, 0x55, 0xc8, 0x6f, 0x28, - 0x15, 0xa7, 0x24, 0x83, 0x5e, 0x87, 0xd2, 0x7d, 0xcf, 0xbf, 0xe7, 0x78, 0x16, 0x7b, 0xb4, 0x06, - 0xb2, 0x88, 0xf3, 0xca, 0xe8, 0x0a, 0xaf, 0x21, 0xbc, 0x13, 0xd3, 0xc7, 0x2a, 0x33, 0x54, 0x85, - 0xc5, 0xb6, 0xed, 0x62, 0x62, 0x35, 0x65, 0xe1, 0xe7, 0x14, 0x7f, 0xa8, 0x23, 0x72, 0x72, 0xb7, - 0x74, 0x30, 0x4e, 0xe2, 0xa3, 0x4f, 0x40, 0x31, 0x10, 0x37, 0x4f, 0xb3, 0x89, 0xc8, 0xcb, 0xe3, - 0x11, 0x27, 0x1a, 0xaf, 0x5d, 0xd4, 0x82, 0x25, 0x43, 0xb4, 0x09, 0xcb, 0xbe, 0xb8, 0xdb, 0xa5, - 0xbd, 0x43, 0xc7, 0xf7, 0x27, 0x7b, 0x0f, 0x02, 0xa7, 0xc0, 0x71, 0x6a, 0x2f, 0xea, 0xc5, 0xb0, - 0xeb, 0xcd, 0x3c, 0x24, 0x5b, 0x8c, 0xbd, 0x18, 0x26, 0xf0, 0x4d, 0x2c, 0xa0, 0xa3, 0x0a, 0x89, - 0x8b, 0x13, 0x14, 0x12, 0xd7, 0xe1, 0x4c, 0x12, 0xc4, 0x6e, 0xa0, 0xb1, 0x4b, 0x6f, 0x8a, 0xf5, - 0xd8, 0x4e, 0x43, 0xc2, 0xe9, 0x7d, 0xd1, 0x1d, 0x98, 0xf5, 0x09, 0x3b, 0x5f, 0x54, 0xa3, 0x1c, - 0xe0, 0xd8, 0xc5, 0x07, 0x38, 0x22, 0x80, 0x63, 0x5a, 0xf4, 0xbb, 0x5b, 0xfa, 0x5b, 0x15, 0xb7, - 0x32, 0x7c, 0x32, 0x55, 0x7c, 0xfb, 0x21, 0x37, 0x43, 0xcd, 0xff, 0x9c, 0x87, 0x79, 0xed, 0x18, - 0x8d, 0x9e, 0x82, 0x02, 0xbb, 0x92, 0xc7, 0xd4, 0x43, 0x31, 0x56, 0x61, 0x7c, 0x71, 0x38, 0x0c, - 0x7d, 0xc5, 0x80, 0xc5, 0x8e, 0x16, 0xf2, 0x8b, 0x34, 0xe7, 0x84, 0xa9, 0x1c, 0x3d, 0x8e, 0xa8, - 0xbc, 0xf2, 0xa4, 0x33, 0xc3, 0x49, 0xee, 0x74, 0x03, 0x8a, 0x7a, 0x1c, 0x87, 0xf8, 0x0c, 0x5b, - 0xf8, 0x38, 0x92, 0xc4, 0xba, 0x0e, 0xc6, 0x49, 0x7c, 0xfa, 0x85, 0xd9, 0xec, 0x26, 0x79, 0x60, - 0xb2, 0x1a, 0x11, 0xc0, 0x31, 0x2d, 0xf4, 0x22, 0x2c, 0x88, 0x27, 0x0a, 0xb6, 0xbd, 0xe6, 0x35, - 0x2b, 0xd8, 0x17, 0xce, 0xbd, 0x3c, 0x8c, 0xac, 0x6b, 0x50, 0x9c, 0xc0, 0x66, 0x73, 0x8b, 0xdf, - 0x81, 0x60, 0x04, 0xa6, 0xf5, 0x47, 0xb0, 0xd6, 0x75, 0x30, 0x4e, 0xe2, 0xa3, 0xf7, 0x28, 0x7a, - 0x9f, 0xa7, 0x49, 0xa4, 0x36, 0x48, 0xd1, 0xfd, 0x55, 0x58, 0xec, 0xb2, 0xb3, 0x50, 0x33, 0x02, - 0x8a, 0xfd, 0x28, 0x19, 0xde, 0xd6, 0xc1, 0x38, 0x89, 0x8f, 0x5e, 0x80, 0x79, 0x9f, 0x6a, 0x37, - 0x49, 0x80, 0xe7, 0x4e, 0x64, 0x22, 0x00, 0xab, 0x40, 0xac, 0xe3, 0xa2, 0x97, 0xe0, 0x54, 0x7c, - 0x59, 0x3b, 0x22, 0xc0, 0x93, 0x29, 0xf2, 0x1d, 0x88, 0x6a, 0x12, 0x01, 0x0f, 0xf6, 0x41, 0xbf, - 0x00, 0x4b, 0xca, 0x4a, 0x6c, 0xb8, 0x4d, 0xf2, 0x40, 0x5c, 0xa8, 0x5d, 0x66, 0x09, 0x99, 0x04, - 0x0c, 0x0f, 0x60, 0xa3, 0x0f, 0xc0, 0x42, 0xc3, 0x73, 0x1c, 0xa6, 0xe3, 0xf8, 0x03, 0x4c, 0xfc, - 0xe6, 0x2c, 0xbf, 0x63, 0xac, 0x41, 0x70, 0x02, 0x13, 0x5d, 0x07, 0xe4, 0xed, 0x06, 0xc4, 0x3f, - 0x20, 0xcd, 0x97, 0xf8, 0x1b, 0xda, 0xd4, 0xc4, 0xcf, 0xeb, 0xd5, 0x80, 0x37, 0x07, 0x30, 0x70, - 0x4a, 0x2f, 0xb4, 0x0b, 0xe7, 0x22, 0x7b, 0x33, 0xd8, 0xa3, 0x5c, 0xd6, 0x8e, 0x4c, 0xe7, 0xee, - 0x0c, 0xc5, 0xc4, 0x23, 0xa8, 0xa0, 0x5f, 0xd2, 0x0b, 0xe1, 0x17, 0xb2, 0x78, 0xd2, 0x32, 0x19, - 0x1d, 0x38, 0xb2, 0x0a, 0xde, 0x87, 0x69, 0x5e, 0x00, 0x5a, 0x5e, 0xcc, 0xe2, 0x92, 0xba, 0xfa, - 0xde, 0x4b, 0x6c, 0x87, 0x78, 0x2b, 0x16, 0x9c, 0xd0, 0xa7, 0x60, 0x76, 0x37, 0x7a, 0xfc, 0xab, - 0xbc, 0x94, 0x85, 0xed, 0x4d, 0xbc, 0x63, 0x17, 0x9f, 0x7e, 0x25, 0x00, 0xc7, 0x2c, 0xd1, 0xd3, - 0x50, 0xba, 0xb6, 0x5d, 0x95, 0x92, 0x7e, 0x8a, 0x49, 0xd8, 0x14, 0xed, 0x82, 0x55, 0x00, 0xdd, - 0xc5, 0xd2, 0x27, 0x43, 0xec, 0x93, 0xc7, 0x36, 0x7d, 0xd0, 0xc5, 0xa2, 0xd8, 0x2c, 0xbf, 0x86, - 0xeb, 0xe5, 0xd3, 0x09, 0x6c, 0xd1, 0x8e, 0x25, 0x06, 0x7a, 0x0d, 0x4a, 0xc2, 0x26, 0x31, 0xfd, - 0xb7, 0xfc, 0x70, 0x97, 0x2c, 0x70, 0x4c, 0x02, 0xab, 0xf4, 0xd0, 0x73, 0x50, 0xea, 0xb0, 0x37, - 0x91, 0xc8, 0xd5, 0xae, 0xe3, 0x94, 0xcf, 0x30, 0xdd, 0x2c, 0x13, 0x0f, 0xdb, 0x31, 0x08, 0xab, - 0x78, 0xe8, 0x99, 0x28, 0x39, 0xfe, 0x0e, 0x2d, 0x8f, 0x24, 0x93, 0xe3, 0xd2, 0x93, 0x1e, 0x52, - 0x52, 0x78, 0xf6, 0x88, 0xe0, 0xc8, 0x67, 0xe3, 0xe0, 0xb0, 0x7c, 0xf6, 0xe3, 0x93, 0xaa, 0x34, - 0x18, 0x59, 0xbc, 0xf4, 0x3d, 0xf0, 0xb2, 0x1c, 0x37, 0x16, 0xa9, 0xb2, 0xd0, 0x91, 0xf2, 0x9f, - 0xc9, 0x0d, 0x61, 0xfd, 0x49, 0x13, 0x7e, 0xd2, 0xd2, 0xa5, 0xdf, 0xfc, 0xc1, 0x94, 0x0c, 0x10, - 0x25, 0x72, 0xc2, 0x3e, 0x14, 0xec, 0x20, 0xb4, 0xbd, 0x0c, 0x6f, 0x35, 0x24, 0xde, 0x02, 0x61, - 0x35, 0x6e, 0x0c, 0x80, 0x39, 0x2b, 0xca, 0xd3, 0x6d, 0xd9, 0xee, 0x03, 0x31, 0xfd, 0x5b, 0x99, - 0x27, 0x7b, 0x39, 0x4f, 0x06, 0xc0, 0x9c, 0x15, 0xba, 0x0b, 0x79, 0xcb, 0xd9, 0xcd, 0xe8, 0x55, - 0xf7, 0xe4, 0x7f, 0x46, 0xe0, 0x15, 0x22, 0xd5, 0xcd, 0x1a, 0xa6, 0x4c, 0x28, 0xaf, 0xa0, 0x6d, - 0x0b, 0xff, 0x62, 0x42, 0x5e, 0xf5, 0xad, 0x8d, 0x34, 0x5e, 0xf5, 0xad, 0x0d, 0x4c, 0x99, 0xa0, - 0x2f, 0x18, 0x00, 0x96, 0xfc, 0xaf, 0x05, 0xd9, 0x3c, 0xc3, 0x38, 0xec, 0xbf, 0x20, 0xf0, 0xd2, - 0xad, 0x18, 0x8a, 0x15, 0xce, 0xe6, 0x1b, 0x06, 0x9c, 0x1a, 0x18, 0x6c, 0xf2, 0x1f, 0x3a, 0x18, - 0xc7, 0xff, 0x87, 0x0e, 0xe2, 0xb5, 0x98, 0x7a, 0xc7, 0xb1, 0x53, 0x6f, 0x06, 0xed, 0x24, 0xe0, - 0x78, 0xa0, 0x87, 0xf9, 0x2d, 0x03, 0x4a, 0x4a, 0x6d, 0x35, 0xf5, 0x7b, 0x59, 0x0d, 0xba, 0x18, - 0x46, 0xfc, 0x50, 0x0e, 0x8b, 0x89, 0x71, 0x18, 0x0f, 0xcf, 0xb6, 0xe2, 0x20, 0xa5, 0x12, 0x9e, - 0xa5, 0xad, 0x58, 0x40, 0xd1, 0x05, 0x98, 0x0a, 0x42, 0xd2, 0x61, 0x12, 0xa5, 0x94, 0x5a, 0xb3, - 0x24, 0x05, 0x83, 0x30, 0x76, 0x54, 0x39, 0x8a, 0xba, 0x19, 0xe5, 0x5d, 0x1e, 0x8b, 0xba, 0xd9, - 0x0c, 0x86, 0xce, 0x43, 0x9e, 0xb8, 0x4d, 0xe1, 0x2d, 0x96, 0x04, 0x4a, 0xfe, 0x8a, 0xdb, 0xc4, - 0xb4, 0xdd, 0xbc, 0x09, 0x73, 0x75, 0xd2, 0xf0, 0x49, 0xf8, 0x32, 0x39, 0x3c, 0x5e, 0x00, 0xf1, - 0x3c, 0x4f, 0xbc, 0xe6, 0x74, 0x82, 0xb4, 0x3b, 0x6d, 0x37, 0xff, 0xd0, 0x80, 0xc4, 0x33, 0x49, - 0x4a, 0xa8, 0xc6, 0x18, 0x16, 0xaa, 0xd1, 0x82, 0x0a, 0xb9, 0x91, 0x41, 0x85, 0xeb, 0x80, 0xda, - 0x56, 0xd8, 0xd8, 0x17, 0xdf, 0x47, 0xbc, 0xc8, 0xc5, 0x1d, 0xf5, 0xf8, 0x26, 0xc7, 0x00, 0x06, - 0x4e, 0xe9, 0x65, 0xbe, 0x02, 0xc5, 0xe8, 0x56, 0x0e, 0x2b, 0x6d, 0x8f, 0xce, 0x2c, 0x6a, 0x69, - 0x3b, 0x3d, 0xb2, 0x30, 0x08, 0x1d, 0x63, 0xe0, 0xda, 0xd7, 0xbc, 0x20, 0x8c, 0xae, 0x12, 0xf1, - 0xc8, 0xc4, 0x8d, 0x0d, 0xd6, 0x86, 0x25, 0xd4, 0x3c, 0x05, 0x8b, 0x32, 0xe4, 0xc0, 0x25, 0xce, - 0xfc, 0x76, 0x1e, 0xe6, 0xb4, 0x87, 0xb6, 0x8f, 0x5e, 0xe9, 0xe3, 0xaf, 0x49, 0x4a, 0xe8, 0x20, - 0x3f, 0x66, 0xe8, 0x40, 0x8d, 0xd5, 0x4c, 0x9d, 0x6c, 0xac, 0xa6, 0x90, 0x4d, 0xac, 0x26, 0x84, - 0x19, 0xf1, 0xaf, 0x5d, 0x44, 0x09, 0xe0, 0x56, 0x46, 0xb7, 0x4b, 0xc5, 0x6d, 0x39, 0x56, 0xf5, - 0x18, 0x69, 0x8f, 0x88, 0x95, 0xf9, 0x8d, 0x02, 0x2c, 0xe8, 0xf7, 0x4d, 0x8f, 0xf1, 0x25, 0xdf, - 0x33, 0xf0, 0x25, 0xc7, 0x3c, 0x3a, 0xe5, 0x27, 0x3d, 0x3a, 0x4d, 0x4d, 0x7a, 0x74, 0x2a, 0x3c, - 0xc4, 0xd1, 0x69, 0xf0, 0xe0, 0x33, 0x7d, 0xec, 0x83, 0xcf, 0x07, 0x65, 0xde, 0x6f, 0x46, 0x0b, - 0x94, 0xc7, 0x79, 0x3f, 0xa4, 0x7f, 0x86, 0x75, 0xaf, 0x99, 0x9a, 0x3f, 0x2d, 0x1e, 0x51, 0x54, - 0xe8, 0xa7, 0xa6, 0xe9, 0xc6, 0x8f, 0xce, 0xbc, 0x63, 0x8c, 0x14, 0x5d, 0xfc, 0xdf, 0x8b, 0x98, - 0xe5, 0x01, 0xdd, 0x6a, 0xd5, 0x63, 0x10, 0x56, 0xf1, 0xd8, 0x4b, 0xd6, 0xfa, 0x3b, 0xdb, 0xec, - 0x24, 0xaa, 0xbe, 0x64, 0x9d, 0x78, 0x97, 0x3b, 0x89, 0x6f, 0x7e, 0x26, 0x07, 0xf1, 0x5b, 0xe1, - 0xec, 0x51, 0xaf, 0x40, 0x51, 0xff, 0xc2, 0x49, 0xbb, 0x3e, 0xe9, 0xcb, 0x79, 0x31, 0x45, 0x91, - 0x61, 0x57, 0x5a, 0xb0, 0xc6, 0xf1, 0xbf, 0xe1, 0x8d, 0x70, 0x0b, 0x16, 0x13, 0x85, 0xc6, 0x99, - 0x57, 0xec, 0x7c, 0x2b, 0x07, 0xb3, 0xb2, 0x54, 0x9b, 0x5a, 0xcc, 0xae, 0x1f, 0xbd, 0x3f, 0x24, - 0x2d, 0xe6, 0x6d, 0xbc, 0x89, 0x69, 0x3b, 0x7a, 0x00, 0x33, 0xfb, 0xc4, 0x6a, 0x12, 0x3f, 0x8a, - 0x7f, 0x6d, 0x65, 0x54, 0x23, 0x7e, 0x8d, 0x51, 0x8d, 0xe7, 0xc2, 0x7f, 0x07, 0x38, 0x62, 0x87, - 0x5e, 0x84, 0x85, 0xd0, 0x6e, 0x13, 0x7a, 0x70, 0x51, 0xac, 0x46, 0x3e, 0x0e, 0x2a, 0xed, 0x68, - 0x50, 0x9c, 0xc0, 0xa6, 0x6a, 0xed, 0x6e, 0xe0, 0xb9, 0xec, 0x2a, 0xf7, 0x94, 0x7e, 0x3a, 0xbc, - 0x5e, 0xbf, 0x79, 0x83, 0xdd, 0xe4, 0x96, 0x18, 0x14, 0xdb, 0x66, 0xa5, 0xaa, 0x3e, 0x11, 0x39, - 0xb8, 0xa5, 0xf8, 0x62, 0x0d, 0x6f, 0xc7, 0x12, 0xc3, 0xbc, 0x0d, 0x8b, 0x89, 0x89, 0x44, 0x9e, - 0x87, 0x91, 0xee, 0x79, 0x1c, 0xeb, 0x5f, 0x30, 0xd5, 0x56, 0xbf, 0xf3, 0xd6, 0xca, 0x63, 0xdf, - 0x7d, 0x6b, 0xe5, 0xb1, 0xef, 0xbd, 0xb5, 0xf2, 0xd8, 0x67, 0xfa, 0x2b, 0xc6, 0x77, 0xfa, 0x2b, - 0xc6, 0x77, 0xfb, 0x2b, 0xc6, 0xf7, 0xfa, 0x2b, 0xc6, 0x0f, 0xfa, 0x2b, 0xc6, 0x1b, 0x3f, 0x5c, - 0x79, 0xec, 0xd5, 0x62, 0xb4, 0x98, 0xff, 0x15, 0x00, 0x00, 0xff, 0xff, 0x61, 0x0a, 0x12, 0xdd, - 0x81, 0x6e, 0x00, 0x00, + // 6283 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x6d, 0x8c, 0x23, 0xc9, + 0x55, 0xd7, 0xf6, 0x78, 0xc6, 0xf3, 0x3c, 0x9f, 0xb5, 0xb3, 0x59, 0xdf, 0xdc, 0xed, 0x7a, 0xd3, + 0x17, 0x1d, 0x1b, 0x48, 0x66, 0x92, 0xbd, 0x3b, 0x38, 0x72, 0xd1, 0x09, 0x7b, 0x66, 0xf7, 0x76, + 0xf6, 0x66, 0x76, 0x67, 0xcb, 0xb3, 0xb7, 0xc9, 0x25, 0x17, 0xd2, 0x63, 0xd7, 0x78, 0x7a, 0xd7, + 0xee, 0x76, 0xba, 0xdb, 0xb3, 0x3b, 0x97, 0x28, 0x1f, 0x44, 0x09, 0x01, 0x25, 0xca, 0x41, 0x92, + 0x1f, 0x08, 0x05, 0x45, 0x88, 0x1f, 0x88, 0xf0, 0x03, 0x21, 0x24, 0xfe, 0x04, 0x11, 0x01, 0x91, + 0xc2, 0x0f, 0x50, 0x90, 0x02, 0x17, 0x90, 0x62, 0x12, 0x07, 0x09, 0xc1, 0x1f, 0x14, 0x14, 0x84, + 0x72, 0x12, 0x12, 0xaa, 0xcf, 0xae, 0x6e, 0xb7, 0x67, 0xec, 0x71, 0xcf, 0x12, 0x01, 0xff, 0xec, + 0x7a, 0xaf, 0xde, 0xab, 0x8f, 0x57, 0xef, 0xbd, 0x7a, 0xf5, 0xaa, 0x1a, 0x36, 0x1b, 0x76, 0xb0, + 0xdf, 0xd9, 0x5d, 0xa9, 0xb9, 0xad, 0x55, 0xcb, 0x6b, 0xb8, 0x6d, 0xcf, 0xbd, 0xcb, 0x7e, 0xbc, + 0xdd, 0x73, 0x9b, 0x4d, 0xb7, 0x13, 0xf8, 0xab, 0xed, 0x7b, 0x8d, 0x55, 0xab, 0x6d, 0xfb, 0xab, + 0xaa, 0xe4, 0xe0, 0x9d, 0x56, 0xb3, 0xbd, 0x6f, 0xbd, 0x73, 0xb5, 0x41, 0x1c, 0xe2, 0x59, 0x01, + 0xa9, 0xaf, 0xb4, 0x3d, 0x37, 0x70, 0xd1, 0xbb, 0x43, 0x6a, 0x2b, 0x92, 0x1a, 0xfb, 0xf1, 0x8b, + 0xb2, 0xee, 0x4a, 0xfb, 0x5e, 0x63, 0x85, 0x52, 0x5b, 0x51, 0x25, 0x92, 0xda, 0xf2, 0xdb, 0xb5, + 0xb6, 0x34, 0xdc, 0x86, 0xbb, 0xca, 0x88, 0xee, 0x76, 0xf6, 0xd8, 0x3f, 0xf6, 0x87, 0xfd, 0xe2, + 0xcc, 0x96, 0x9f, 0xb8, 0xf7, 0xac, 0xbf, 0x62, 0xbb, 0xb4, 0x6d, 0xab, 0xbb, 0x56, 0x50, 0xdb, + 0x5f, 0x3d, 0xe8, 0x6b, 0xd1, 0xb2, 0xa9, 0x21, 0xd5, 0x5c, 0x8f, 0x24, 0xe1, 0x3c, 0x1d, 0xe2, + 0xb4, 0xac, 0xda, 0xbe, 0xed, 0x10, 0xef, 0x30, 0xec, 0x75, 0x8b, 0x04, 0x56, 0x52, 0xad, 0xd5, + 0x41, 0xb5, 0xbc, 0x8e, 0x13, 0xd8, 0x2d, 0xd2, 0x57, 0xe1, 0x67, 0x8f, 0xab, 0xe0, 0xd7, 0xf6, + 0x49, 0xcb, 0xea, 0xab, 0xf7, 0xd4, 0xa0, 0x7a, 0x9d, 0xc0, 0x6e, 0xae, 0xda, 0x4e, 0xe0, 0x07, + 0x5e, 0xbc, 0x92, 0xf9, 0xef, 0x06, 0x2c, 0x96, 0x37, 0x2b, 0x3b, 0x9e, 0xb5, 0xb7, 0x67, 0xd7, + 0xb0, 0xdb, 0x09, 0x6c, 0xa7, 0x81, 0xde, 0x0a, 0x53, 0xb6, 0xd3, 0xf0, 0x88, 0xef, 0x17, 0x8d, + 0x8b, 0xc6, 0xa5, 0xe9, 0xca, 0xfc, 0x37, 0xbb, 0xa5, 0x47, 0x7a, 0xdd, 0xd2, 0xd4, 0x06, 0x2f, + 0xc6, 0x12, 0x8e, 0x9e, 0x81, 0x82, 0x4f, 0xbc, 0x03, 0xbb, 0x46, 0xb6, 0x5d, 0x2f, 0x28, 0x66, + 0x2e, 0x1a, 0x97, 0x72, 0x95, 0x33, 0x02, 0xbd, 0x50, 0x0d, 0x41, 0x58, 0xc7, 0xa3, 0xd5, 0x3c, + 0xd7, 0x0d, 0x04, 0xbc, 0x98, 0x65, 0x5c, 0x54, 0x35, 0x1c, 0x82, 0xb0, 0x8e, 0x87, 0xd6, 0x61, + 0xc1, 0x72, 0x1c, 0x37, 0xb0, 0x02, 0xdb, 0x75, 0xb6, 0x3d, 0xb2, 0x67, 0x3f, 0x28, 0x4e, 0xb0, + 0xba, 0x45, 0x51, 0x77, 0xa1, 0x1c, 0x83, 0xe3, 0xbe, 0x1a, 0xe6, 0x3a, 0x14, 0xcb, 0xad, 0x5d, + 0xcb, 0xf7, 0xad, 0xba, 0xeb, 0xc5, 0xba, 0x7e, 0x09, 0xf2, 0x2d, 0xab, 0xdd, 0xb6, 0x9d, 0x06, + 0xed, 0x7b, 0xf6, 0xd2, 0x74, 0x65, 0xa6, 0xd7, 0x2d, 0xe5, 0xb7, 0x44, 0x19, 0x56, 0x50, 0xf3, + 0xef, 0x33, 0x50, 0x28, 0x3b, 0x56, 0xf3, 0xd0, 0xb7, 0x7d, 0xdc, 0x71, 0xd0, 0x07, 0x21, 0x4f, + 0x65, 0xa0, 0x6e, 0x05, 0x16, 0x1b, 0xb5, 0xc2, 0xe5, 0x77, 0xac, 0xf0, 0x29, 0x59, 0xd1, 0xa7, + 0x24, 0x94, 0x6c, 0x8a, 0xbd, 0x72, 0xf0, 0xce, 0x95, 0x9b, 0xbb, 0x77, 0x49, 0x2d, 0xd8, 0x22, + 0x81, 0x55, 0x41, 0xa2, 0x17, 0x10, 0x96, 0x61, 0x45, 0x15, 0xb9, 0x30, 0xe1, 0xb7, 0x49, 0x8d, + 0x0d, 0x72, 0xe1, 0xf2, 0xd6, 0xca, 0x38, 0xab, 0x68, 0x45, 0x6b, 0x7a, 0xb5, 0x4d, 0x6a, 0x95, + 0x19, 0xc1, 0x7a, 0x82, 0xfe, 0xc3, 0x8c, 0x11, 0xba, 0x0f, 0x93, 0x7e, 0x60, 0x05, 0x1d, 0x9f, + 0x4d, 0x50, 0xe1, 0xf2, 0xcd, 0xf4, 0x58, 0x32, 0xb2, 0x95, 0x39, 0xc1, 0x74, 0x92, 0xff, 0xc7, + 0x82, 0x9d, 0xf9, 0x0f, 0x06, 0x9c, 0xd1, 0xb0, 0xcb, 0x5e, 0xa3, 0xd3, 0x22, 0x4e, 0x80, 0x2e, + 0xc2, 0x84, 0x63, 0xb5, 0x88, 0x90, 0x4a, 0xd5, 0xe4, 0x1b, 0x56, 0x8b, 0x60, 0x06, 0x41, 0x4f, + 0x40, 0xee, 0xc0, 0x6a, 0x76, 0x08, 0x1b, 0xa4, 0xe9, 0xca, 0xac, 0x40, 0xc9, 0xbd, 0x44, 0x0b, + 0x31, 0x87, 0xa1, 0x8f, 0xc0, 0x34, 0xfb, 0x71, 0xd5, 0x73, 0x5b, 0x29, 0x75, 0x4d, 0xb4, 0xf0, + 0x25, 0x49, 0xb6, 0x32, 0xdb, 0xeb, 0x96, 0xa6, 0xd5, 0x5f, 0x1c, 0x32, 0x34, 0xff, 0xd1, 0x80, + 0x79, 0xad, 0x73, 0x9b, 0xb6, 0x1f, 0xa0, 0xf7, 0xf7, 0x09, 0xcf, 0xca, 0x70, 0xc2, 0x43, 0x6b, + 0x33, 0xd1, 0x59, 0x10, 0x3d, 0xcd, 0xcb, 0x12, 0x4d, 0x70, 0x1c, 0xc8, 0xd9, 0x01, 0x69, 0xf9, + 0xc5, 0xcc, 0xc5, 0xec, 0xa5, 0xc2, 0xe5, 0x8d, 0xd4, 0xa6, 0x31, 0x1c, 0xdf, 0x0d, 0x4a, 0x1f, + 0x73, 0x36, 0xe6, 0x97, 0x33, 0x91, 0x1e, 0x52, 0x89, 0x42, 0x2e, 0x4c, 0xb5, 0x48, 0xe0, 0xd9, + 0x35, 0xbe, 0xae, 0x0a, 0x97, 0xd7, 0xc7, 0x6b, 0xc5, 0x16, 0x23, 0x16, 0x6a, 0x26, 0xfe, 0xdf, + 0xc7, 0x92, 0x0b, 0xda, 0x87, 0x09, 0xcb, 0x6b, 0xc8, 0x3e, 0x5f, 0x4d, 0x67, 0x7e, 0x43, 0x99, + 0x2b, 0x7b, 0x0d, 0x1f, 0x33, 0x0e, 0x68, 0x15, 0xa6, 0x03, 0xe2, 0xb5, 0x6c, 0xc7, 0x0a, 0xb8, + 0x2a, 0xcb, 0x57, 0x16, 0x05, 0xda, 0xf4, 0x8e, 0x04, 0xe0, 0x10, 0xc7, 0x7c, 0x3d, 0x03, 0x8b, + 0x7d, 0x8b, 0x01, 0x3d, 0x0d, 0xb9, 0xf6, 0xbe, 0xe5, 0x4b, 0xe9, 0xbe, 0x20, 0x87, 0x76, 0x9b, + 0x16, 0xbe, 0xd1, 0x2d, 0xcd, 0xca, 0x2a, 0xac, 0x00, 0x73, 0x64, 0xaa, 0xab, 0x5b, 0xc4, 0xf7, + 0xad, 0x86, 0x14, 0x79, 0x6d, 0x44, 0x58, 0x31, 0x96, 0x70, 0xf4, 0xcb, 0x06, 0xcc, 0xf2, 0xd1, + 0xc1, 0xc4, 0xef, 0x34, 0x03, 0xba, 0xac, 0xe9, 0xd8, 0x5c, 0x4f, 0x63, 0x26, 0x38, 0xc9, 0xca, + 0x59, 0xc1, 0x7d, 0x56, 0x2f, 0xf5, 0x71, 0x94, 0x2f, 0xba, 0x03, 0xd3, 0x7e, 0x60, 0x79, 0x01, + 0xa9, 0x97, 0x03, 0xa6, 0xc0, 0x0b, 0x97, 0x7f, 0x7a, 0x38, 0x79, 0xdf, 0xb1, 0x5b, 0x84, 0xaf, + 0xad, 0xaa, 0x24, 0x80, 0x43, 0x5a, 0xe6, 0xdf, 0x46, 0x15, 0x47, 0x35, 0xa0, 0xc6, 0xae, 0x71, + 0x88, 0xde, 0x07, 0x8f, 0xfa, 0x9d, 0x5a, 0x8d, 0xf8, 0xfe, 0x5e, 0xa7, 0x89, 0x3b, 0xce, 0x35, + 0xdb, 0x0f, 0x5c, 0xef, 0x70, 0xd3, 0x6e, 0xd9, 0x01, 0x1b, 0xef, 0x5c, 0xe5, 0x7c, 0xaf, 0x5b, + 0x7a, 0xb4, 0x3a, 0x08, 0x09, 0x0f, 0xae, 0x8f, 0x2c, 0x78, 0xac, 0xe3, 0x0c, 0x26, 0xcf, 0x6d, + 0x62, 0xa9, 0xd7, 0x2d, 0x3d, 0x76, 0x7b, 0x30, 0x1a, 0x3e, 0x8a, 0x86, 0xf9, 0xaf, 0x06, 0x2c, + 0xc8, 0x7e, 0xed, 0x90, 0x56, 0xbb, 0x69, 0x05, 0xe4, 0x21, 0x58, 0x9c, 0x20, 0x62, 0x71, 0x70, + 0x3a, 0x7a, 0x43, 0xb6, 0x7f, 0x90, 0xd9, 0x31, 0xff, 0xc5, 0x80, 0xa5, 0x38, 0xf2, 0x43, 0xd0, + 0x92, 0x7e, 0x54, 0x4b, 0xde, 0x48, 0xb7, 0xb7, 0x03, 0x54, 0xe5, 0x0f, 0x13, 0xfa, 0xfa, 0xbf, + 0x5c, 0x5f, 0x9a, 0xbf, 0x3b, 0x01, 0x33, 0x65, 0x27, 0xb0, 0xcb, 0x7b, 0x7b, 0xb6, 0x63, 0x07, + 0x87, 0xe8, 0xb3, 0x19, 0x58, 0x6d, 0x7b, 0x64, 0x8f, 0x78, 0x1e, 0xa9, 0xaf, 0x77, 0x3c, 0xdb, + 0x69, 0x54, 0x6b, 0xfb, 0xa4, 0xde, 0x69, 0xda, 0x4e, 0x63, 0xa3, 0xe1, 0xb8, 0xaa, 0xf8, 0xca, + 0x03, 0x52, 0xeb, 0x50, 0x57, 0x4e, 0xcc, 0x7f, 0x6b, 0xbc, 0x66, 0x6e, 0x8f, 0xc6, 0xb4, 0xf2, + 0x54, 0xaf, 0x5b, 0x5a, 0x1d, 0xb1, 0x12, 0x1e, 0xb5, 0x6b, 0xe8, 0x33, 0x19, 0x58, 0xf1, 0xc8, + 0x87, 0x3a, 0xf6, 0xf0, 0xa3, 0xc1, 0x17, 0x68, 0x73, 0xbc, 0xd1, 0xc0, 0x23, 0xf1, 0xac, 0x5c, + 0xee, 0x75, 0x4b, 0x23, 0xd6, 0xc1, 0x23, 0xf6, 0xcb, 0xfc, 0x73, 0x03, 0xf2, 0x23, 0x78, 0x7f, + 0xa5, 0xa8, 0xf7, 0x37, 0xdd, 0xe7, 0xf9, 0x05, 0xfd, 0x9e, 0xdf, 0x0b, 0xe3, 0x0d, 0xda, 0x30, + 0x1e, 0xdf, 0xbf, 0xd1, 0x5d, 0x56, 0xdc, 0x43, 0x44, 0xfb, 0xb0, 0xd4, 0x76, 0xeb, 0x72, 0xd1, + 0x5f, 0xb3, 0xfc, 0x7d, 0x06, 0x13, 0xdd, 0x7b, 0xba, 0xd7, 0x2d, 0x2d, 0x6d, 0x27, 0xc0, 0xdf, + 0xe8, 0x96, 0x8a, 0x8a, 0x48, 0x0c, 0x01, 0x27, 0x52, 0x44, 0x6d, 0xc8, 0xef, 0xd9, 0xa4, 0x59, + 0xc7, 0x64, 0x4f, 0x48, 0xca, 0x98, 0xcb, 0xfb, 0xaa, 0xa0, 0xc6, 0x37, 0x47, 0xf2, 0x1f, 0x56, + 0x5c, 0xcc, 0x1f, 0x4f, 0xc0, 0x7c, 0xa5, 0xd9, 0x21, 0x2f, 0x78, 0x84, 0x48, 0xff, 0xa6, 0x0c, + 0xf3, 0x6d, 0x8f, 0x1c, 0xd8, 0xe4, 0x7e, 0x95, 0x34, 0x49, 0x2d, 0x70, 0x3d, 0xd1, 0xd5, 0x73, + 0x62, 0x26, 0xe7, 0xb7, 0xa3, 0x60, 0x1c, 0xc7, 0x47, 0xcf, 0xc3, 0x9c, 0x55, 0x0b, 0xec, 0x03, + 0xa2, 0x28, 0xf0, 0x89, 0x7e, 0x93, 0xa0, 0x30, 0x57, 0x8e, 0x40, 0x71, 0x0c, 0x1b, 0xbd, 0x1f, + 0x8a, 0x7e, 0xcd, 0x6a, 0x92, 0xdb, 0x6d, 0xc1, 0x6a, 0x6d, 0x9f, 0xd4, 0xee, 0x6d, 0xbb, 0xb6, + 0x13, 0x08, 0xc7, 0xed, 0xa2, 0xa0, 0x54, 0xac, 0x0e, 0xc0, 0xc3, 0x03, 0x29, 0xa0, 0x3f, 0x35, + 0xe0, 0x7c, 0xdb, 0x23, 0xdb, 0x9e, 0xdb, 0x72, 0xa9, 0xf4, 0xf6, 0xb9, 0x78, 0xc2, 0xd5, 0x79, + 0x69, 0xcc, 0x65, 0xca, 0x4b, 0xfa, 0x77, 0x53, 0x6f, 0xee, 0x75, 0x4b, 0xe7, 0xb7, 0x8f, 0x6a, + 0x00, 0x3e, 0xba, 0x7d, 0xe8, 0xcf, 0x0c, 0xb8, 0xd0, 0x76, 0xfd, 0xe0, 0x88, 0x2e, 0xe4, 0x4e, + 0xb5, 0x0b, 0x66, 0xaf, 0x5b, 0xba, 0xb0, 0x7d, 0x64, 0x0b, 0xf0, 0x31, 0x2d, 0x34, 0x7b, 0x05, + 0x58, 0xd4, 0x64, 0x4f, 0x78, 0x80, 0xcf, 0xc1, 0xac, 0x14, 0x06, 0x1e, 0x73, 0xe0, 0xb2, 0xa7, + 0xfc, 0xd5, 0xb2, 0x0e, 0xc4, 0x51, 0x5c, 0x2a, 0x77, 0x4a, 0x14, 0x79, 0xed, 0x98, 0xdc, 0x6d, + 0x47, 0xa0, 0x38, 0x86, 0x8d, 0x36, 0xe0, 0x8c, 0x28, 0xc1, 0xa4, 0xdd, 0xb4, 0x6b, 0xd6, 0x9a, + 0xdb, 0x11, 0x22, 0x97, 0xab, 0x9c, 0xeb, 0x75, 0x4b, 0x67, 0xb6, 0xfb, 0xc1, 0x38, 0xa9, 0x0e, + 0xda, 0x84, 0x25, 0xab, 0x13, 0xb8, 0xaa, 0xff, 0x57, 0x1c, 0x6b, 0xb7, 0x49, 0xea, 0x4c, 0xb4, + 0xf2, 0x95, 0x22, 0xd5, 0x1a, 0xe5, 0x04, 0x38, 0x4e, 0xac, 0x85, 0xb6, 0x63, 0xd4, 0xaa, 0xa4, + 0xe6, 0x3a, 0x75, 0x3e, 0xcb, 0xb9, 0xca, 0xe3, 0xa2, 0x7b, 0x51, 0x8a, 0x02, 0x07, 0x27, 0xd6, + 0x44, 0x4d, 0x98, 0x6b, 0x59, 0x0f, 0x6e, 0x3b, 0xd6, 0x81, 0x65, 0x37, 0x29, 0x93, 0xe2, 0xe4, + 0x31, 0xae, 0x69, 0x27, 0xb0, 0x9b, 0x2b, 0x3c, 0x3e, 0xb5, 0xb2, 0xe1, 0x04, 0x37, 0xbd, 0x6a, + 0x40, 0x8d, 0x40, 0x05, 0xd1, 0x81, 0xdd, 0x8a, 0xd0, 0xc2, 0x31, 0xda, 0xe8, 0x26, 0x9c, 0x65, + 0xcb, 0x71, 0xdd, 0xbd, 0xef, 0xac, 0x93, 0xa6, 0x75, 0x28, 0x3b, 0x30, 0xc5, 0x3a, 0xf0, 0x68, + 0xaf, 0x5b, 0x3a, 0x5b, 0x4d, 0x42, 0xc0, 0xc9, 0xf5, 0xa8, 0x2f, 0x1f, 0x05, 0x60, 0x72, 0x60, + 0xfb, 0xb6, 0xeb, 0x70, 0x5f, 0x3e, 0x1f, 0xfa, 0xf2, 0xd5, 0xc1, 0x68, 0xf8, 0x28, 0x1a, 0xe8, + 0x37, 0x0d, 0x58, 0x4a, 0x5a, 0x86, 0xc5, 0xe9, 0x34, 0xe2, 0x3a, 0xb1, 0xa5, 0xc5, 0x25, 0x22, + 0x51, 0x29, 0x24, 0x36, 0x02, 0x7d, 0xdc, 0x80, 0x19, 0x4b, 0x73, 0xce, 0x8a, 0xc0, 0x5a, 0x75, + 0x7d, 0x5c, 0x6f, 0x38, 0xa4, 0x58, 0x59, 0xe8, 0x75, 0x4b, 0x11, 0x07, 0x10, 0x47, 0x38, 0xa2, + 0xdf, 0x32, 0xe0, 0x6c, 0xe2, 0x1a, 0x2f, 0x16, 0x4e, 0x63, 0x84, 0x98, 0x90, 0x24, 0xeb, 0x9c, + 0xe4, 0x66, 0xa0, 0xd7, 0x0c, 0x65, 0xca, 0xb6, 0xe4, 0x7e, 0x64, 0x86, 0x35, 0xed, 0xd6, 0x98, + 0xfe, 0x68, 0x68, 0xbd, 0x25, 0xe1, 0xca, 0x19, 0xcd, 0x32, 0xca, 0x42, 0x1c, 0x67, 0x8f, 0x3e, + 0x67, 0x48, 0xd3, 0xa8, 0x5a, 0x34, 0x7b, 0x5a, 0x2d, 0x42, 0xa1, 0xa5, 0x55, 0x0d, 0x8a, 0x31, + 0x47, 0x1f, 0x80, 0x65, 0x6b, 0xd7, 0xf5, 0x82, 0xc4, 0xc5, 0x57, 0x9c, 0x63, 0xcb, 0xe8, 0x42, + 0xaf, 0x5b, 0x5a, 0x2e, 0x0f, 0xc4, 0xc2, 0x47, 0x50, 0x30, 0xff, 0x39, 0x0b, 0x33, 0x6b, 0x96, + 0x63, 0x79, 0x87, 0xc2, 0x74, 0x7d, 0xcd, 0x80, 0xc7, 0x6b, 0x1d, 0xcf, 0x23, 0x4e, 0x50, 0x0d, + 0x48, 0xbb, 0xdf, 0x70, 0x19, 0xa7, 0x6a, 0xb8, 0x2e, 0xf6, 0xba, 0xa5, 0xc7, 0xd7, 0x8e, 0xe0, + 0x8f, 0x8f, 0x6c, 0x1d, 0xfa, 0x6b, 0x03, 0x4c, 0x81, 0x50, 0xb1, 0x6a, 0xf7, 0x1a, 0x9e, 0xdb, + 0x71, 0xea, 0xfd, 0x9d, 0xc8, 0x9c, 0x6a, 0x27, 0x9e, 0xec, 0x75, 0x4b, 0xe6, 0xda, 0xb1, 0xad, + 0xc0, 0x43, 0xb4, 0x14, 0xbd, 0x00, 0x8b, 0x02, 0xeb, 0xca, 0x83, 0x36, 0xf1, 0x6c, 0xea, 0xfb, + 0x8a, 0x38, 0xff, 0xa3, 0xc2, 0xac, 0x2c, 0xae, 0xc5, 0x11, 0x70, 0x7f, 0x1d, 0xf3, 0x0f, 0x26, + 0x00, 0xe4, 0x4c, 0x93, 0x36, 0xfa, 0x19, 0x98, 0xf6, 0x49, 0x70, 0x87, 0xd8, 0x8d, 0x7d, 0x19, + 0xb9, 0xe1, 0xe1, 0x20, 0x59, 0x88, 0x43, 0x38, 0xba, 0x07, 0xb9, 0xb6, 0xd5, 0xf1, 0x89, 0x18, + 0xb7, 0xeb, 0xa9, 0x8c, 0xdb, 0x36, 0xa5, 0xc8, 0xf7, 0x16, 0xec, 0x27, 0xe6, 0x3c, 0xd0, 0x27, + 0x0d, 0x00, 0x12, 0xed, 0x6b, 0xe1, 0x72, 0x35, 0x15, 0x96, 0xe1, 0x70, 0xd0, 0x31, 0xa8, 0xcc, + 0xf5, 0xba, 0x25, 0xd0, 0x46, 0x4d, 0x63, 0x8b, 0xee, 0x43, 0xde, 0x92, 0xea, 0x72, 0xe2, 0x34, + 0xd4, 0x25, 0x73, 0xf9, 0xd5, 0x7c, 0x2b, 0x66, 0xe8, 0x33, 0x06, 0xcc, 0xf9, 0x24, 0x10, 0x53, + 0x45, 0x17, 0xad, 0xf0, 0x15, 0x37, 0xc7, 0xe3, 0x5f, 0x8d, 0xd0, 0xe4, 0xca, 0x27, 0x5a, 0x86, + 0x63, 0x7c, 0xcd, 0xd7, 0x0a, 0x30, 0x27, 0x45, 0x26, 0x74, 0xff, 0x6a, 0xbc, 0x24, 0xd9, 0xfd, + 0x5b, 0xd3, 0x81, 0x38, 0x8a, 0x4b, 0x2b, 0xfb, 0x01, 0xf5, 0x37, 0xa2, 0xde, 0x9f, 0xaa, 0x5c, + 0xd5, 0x81, 0x38, 0x8a, 0x8b, 0x5a, 0x90, 0xf3, 0x03, 0xd2, 0x96, 0xc1, 0xd6, 0x6b, 0xe3, 0x8d, + 0x46, 0xb8, 0x12, 0xc2, 0x80, 0x12, 0xfd, 0xe7, 0x63, 0xce, 0x05, 0x7d, 0xde, 0x80, 0xb9, 0x20, + 0x72, 0xa6, 0x25, 0xc4, 0x20, 0x1d, 0x49, 0x8c, 0x1e, 0x97, 0xf1, 0xd9, 0x88, 0x96, 0xe1, 0x18, + 0xfb, 0x04, 0x8f, 0x30, 0x77, 0x8a, 0x1e, 0xe1, 0xcb, 0x90, 0x6f, 0x59, 0x0f, 0xaa, 0x1d, 0xaf, + 0x71, 0x72, 0xcf, 0x53, 0x1c, 0xf9, 0x71, 0x2a, 0x58, 0xd1, 0x43, 0x9f, 0x30, 0xb4, 0xc5, 0x35, + 0xc5, 0x88, 0xdf, 0x49, 0x77, 0x71, 0x29, 0x85, 0x3a, 0x70, 0x99, 0xf5, 0xf9, 0x67, 0xf9, 0x87, + 0xee, 0x9f, 0x51, 0x5f, 0x83, 0x2f, 0x10, 0xe5, 0x6b, 0x4c, 0x9f, 0xaa, 0xaf, 0xb1, 0x16, 0x61, + 0x86, 0x63, 0xcc, 0x59, 0x7b, 0xf8, 0x9a, 0x53, 0xed, 0x81, 0x53, 0x6d, 0x4f, 0x35, 0xc2, 0x0c, + 0xc7, 0x98, 0x0f, 0xde, 0x94, 0x14, 0x4e, 0x67, 0x53, 0x32, 0x93, 0xc2, 0xa6, 0xe4, 0x68, 0x7f, + 0x6d, 0x76, 0x6c, 0x7f, 0xed, 0x3f, 0x0c, 0x58, 0x58, 0x6b, 0xba, 0x9d, 0xfa, 0x1d, 0x2b, 0xa8, + 0xed, 0xf3, 0xe0, 0x33, 0x7a, 0x1e, 0xf2, 0xb6, 0x13, 0x10, 0xef, 0xc0, 0x6a, 0x0a, 0x7d, 0x6c, + 0xca, 0xf8, 0xfc, 0x86, 0x28, 0x7f, 0xa3, 0x5b, 0x9a, 0x5b, 0xef, 0x78, 0xec, 0xf8, 0x9e, 0xaf, + 0x4e, 0xac, 0xea, 0xa0, 0xaf, 0x18, 0xb0, 0xc8, 0xc3, 0xd7, 0xeb, 0x56, 0x60, 0xdd, 0xea, 0x10, + 0xcf, 0x26, 0x32, 0x80, 0x3d, 0xe6, 0xc2, 0x8c, 0xb7, 0x55, 0x32, 0x38, 0x0c, 0xbd, 0x97, 0xad, + 0x38, 0x67, 0xdc, 0xdf, 0x18, 0xf3, 0x0b, 0x59, 0x78, 0x74, 0x20, 0x2d, 0xb4, 0x0c, 0x19, 0xbb, + 0x2e, 0xba, 0x0e, 0x82, 0x6e, 0x66, 0xa3, 0x8e, 0x33, 0x76, 0x1d, 0xad, 0x30, 0x6f, 0xc2, 0x23, + 0xbe, 0x2f, 0x03, 0xbc, 0xd3, 0xca, 0xf0, 0x8b, 0x52, 0xac, 0x61, 0xa0, 0x12, 0xe4, 0x9a, 0xd6, + 0x2e, 0x69, 0x0a, 0x27, 0x8b, 0xf9, 0x27, 0x9b, 0xb4, 0x00, 0xf3, 0x72, 0xf4, 0x4b, 0x06, 0x00, + 0x6f, 0x20, 0x75, 0xd1, 0x84, 0x55, 0xc0, 0xe9, 0x0e, 0x13, 0xa5, 0xcc, 0x5b, 0x19, 0xfe, 0xc7, + 0x1a, 0x57, 0xb4, 0x03, 0x93, 0xd4, 0x55, 0x71, 0xeb, 0x27, 0x36, 0x02, 0xd0, 0xeb, 0x96, 0x26, + 0xb7, 0x19, 0x0d, 0x2c, 0x68, 0xd1, 0xb1, 0xf2, 0x48, 0xd0, 0xf1, 0x1c, 0x3a, 0xb4, 0x4c, 0xed, + 0xe7, 0x79, 0x2b, 0xb0, 0x2a, 0xc5, 0x1a, 0x86, 0xf9, 0xc7, 0x19, 0x58, 0x4a, 0x6a, 0x3a, 0xd5, + 0xae, 0x93, 0xbc, 0xb5, 0x62, 0xbf, 0xf0, 0x9e, 0xf4, 0xc7, 0x47, 0x9c, 0xc4, 0xa8, 0xdc, 0x07, + 0x71, 0x52, 0x2a, 0xf8, 0xa2, 0xf7, 0xa8, 0x11, 0xca, 0x9c, 0x70, 0x84, 0x14, 0xe5, 0xd8, 0x28, + 0x5d, 0x84, 0x09, 0x9f, 0xce, 0x7c, 0x36, 0x1a, 0x3f, 0x67, 0x73, 0xc4, 0x20, 0x14, 0xa3, 0xe3, + 0xd8, 0x81, 0xc8, 0xa9, 0x51, 0x18, 0xb7, 0x1d, 0x3b, 0xc0, 0x0c, 0x62, 0x7e, 0x29, 0x03, 0xcb, + 0x83, 0x3b, 0x85, 0xbe, 0x64, 0x00, 0xd4, 0xa9, 0x23, 0x4a, 0x45, 0x52, 0x9e, 0x5c, 0x59, 0xa7, + 0x35, 0x86, 0xeb, 0x92, 0x53, 0x78, 0x8c, 0xa9, 0x8a, 0x7c, 0xac, 0x35, 0x04, 0x5d, 0x96, 0xa2, + 0x7f, 0xc3, 0x6a, 0x49, 0xf7, 0x4d, 0xd5, 0xd9, 0x52, 0x10, 0xac, 0x61, 0xd1, 0x9d, 0x86, 0x63, + 0xb5, 0x88, 0xdf, 0xb6, 0x54, 0x86, 0x12, 0xdb, 0x69, 0xdc, 0x90, 0x85, 0x38, 0x84, 0x9b, 0x4d, + 0x78, 0x62, 0x88, 0x76, 0xa6, 0x94, 0xc0, 0x62, 0xfe, 0xd0, 0x80, 0x73, 0x6b, 0xcd, 0x8e, 0x1f, + 0x10, 0xef, 0xff, 0xcc, 0xa9, 0xf0, 0x7f, 0x1a, 0xf0, 0xd8, 0x80, 0x3e, 0x3f, 0x84, 0xc3, 0xe1, + 0x57, 0xa3, 0x87, 0xc3, 0xb7, 0xc7, 0x15, 0xe9, 0xc4, 0x7e, 0x0c, 0x38, 0x23, 0x0e, 0x60, 0x96, + 0x6a, 0xad, 0xba, 0xdb, 0x48, 0xc9, 0x6e, 0x3e, 0x01, 0xb9, 0x0f, 0x51, 0xfb, 0x13, 0x97, 0x31, + 0x66, 0x94, 0x30, 0x87, 0x99, 0x7f, 0x97, 0x01, 0x6d, 0x8f, 0xf9, 0x10, 0xc4, 0xca, 0x89, 0x88, + 0xd5, 0x98, 0xbb, 0x46, 0x6d, 0xc7, 0x3c, 0x28, 0xbb, 0xed, 0x20, 0x96, 0xdd, 0x76, 0x23, 0x35, + 0x8e, 0x47, 0x27, 0xb7, 0xbd, 0x6e, 0xc0, 0x63, 0x21, 0x72, 0x7f, 0xe4, 0xe4, 0x78, 0x1d, 0xf1, + 0x0c, 0x14, 0xac, 0xb0, 0x9a, 0x98, 0x45, 0x95, 0x3d, 0xa9, 0x51, 0xc4, 0x3a, 0x5e, 0x98, 0x60, + 0x94, 0x3d, 0x61, 0x82, 0xd1, 0xc4, 0xd1, 0x09, 0x46, 0xe6, 0x8f, 0x32, 0x70, 0xbe, 0xbf, 0x67, + 0x52, 0xba, 0x31, 0xd9, 0x1b, 0xa2, 0x6f, 0xcf, 0xc2, 0x4c, 0x20, 0x2a, 0x68, 0xba, 0x7a, 0x49, + 0x60, 0xce, 0xec, 0x68, 0x30, 0x1c, 0xc1, 0xa4, 0x35, 0x6b, 0x7c, 0x5d, 0x55, 0x6b, 0x6e, 0x5b, + 0x66, 0x62, 0xa9, 0x9a, 0x6b, 0x1a, 0x0c, 0x47, 0x30, 0x55, 0xea, 0xc3, 0xc4, 0xa9, 0xa7, 0x8a, + 0x55, 0xe1, 0xac, 0x3c, 0x01, 0xbf, 0xea, 0x7a, 0x6b, 0x6e, 0xab, 0xdd, 0x24, 0xec, 0x00, 0x3f, + 0xc7, 0x1a, 0x7b, 0x5e, 0x54, 0x39, 0x8b, 0x93, 0x90, 0x70, 0x72, 0x5d, 0xf3, 0xf5, 0x2c, 0x9c, + 0x09, 0x87, 0x7d, 0xcd, 0x75, 0xea, 0x36, 0xcb, 0x23, 0x78, 0x0e, 0x26, 0x82, 0xc3, 0xb6, 0x1c, + 0xec, 0x9f, 0x92, 0xcd, 0xd9, 0x39, 0x6c, 0xd3, 0xd9, 0x3e, 0x97, 0x50, 0x85, 0x82, 0x30, 0xab, + 0x84, 0x36, 0xd5, 0xea, 0xe0, 0x33, 0xf0, 0x74, 0x54, 0x9a, 0xdf, 0xe8, 0x96, 0x12, 0x72, 0xa6, + 0x57, 0x14, 0xa5, 0xa8, 0xcc, 0xa3, 0xbb, 0x30, 0xd7, 0xb4, 0xfc, 0xe0, 0x76, 0xbb, 0x6e, 0x05, + 0x64, 0xc7, 0x6e, 0x11, 0xb1, 0xe6, 0x46, 0xc9, 0xfa, 0x52, 0x87, 0x6d, 0x9b, 0x11, 0x4a, 0x38, + 0x46, 0x19, 0x1d, 0x00, 0xa2, 0x25, 0x3b, 0x9e, 0xe5, 0xf8, 0xbc, 0x57, 0x94, 0xdf, 0xe8, 0x59, + 0x66, 0xcb, 0x82, 0x1f, 0xda, 0xec, 0xa3, 0x86, 0x13, 0x38, 0xa0, 0x27, 0x61, 0xd2, 0x23, 0x96, + 0x2f, 0x26, 0x73, 0x3a, 0x5c, 0xff, 0x98, 0x95, 0x62, 0x01, 0xd5, 0x17, 0xd4, 0xe4, 0x31, 0x0b, + 0xea, 0xbb, 0x06, 0xcc, 0x85, 0xd3, 0xf4, 0x10, 0xcc, 0x5c, 0x2b, 0x6a, 0xe6, 0xae, 0xa5, 0xa5, + 0x12, 0x07, 0x58, 0xb6, 0x3f, 0x9c, 0xd0, 0xfb, 0xc7, 0xf2, 0x9e, 0x3e, 0x0c, 0xd3, 0x72, 0x55, + 0x4b, 0xff, 0x71, 0xcc, 0xd8, 0x46, 0xc4, 0xb3, 0xd0, 0x12, 0x33, 0x05, 0x13, 0x1c, 0xf2, 0xa3, + 0x86, 0xb5, 0x2e, 0x8c, 0xa6, 0x10, 0x7b, 0x65, 0x58, 0xa5, 0x31, 0x4d, 0x32, 0xac, 0xb2, 0x0e, + 0xba, 0x0d, 0xe7, 0xda, 0x9e, 0xcb, 0x32, 0xe3, 0xd7, 0x89, 0x55, 0x6f, 0xda, 0x0e, 0x91, 0x5b, + 0x68, 0x7e, 0xd6, 0xfb, 0x58, 0xaf, 0x5b, 0x3a, 0xb7, 0x9d, 0x8c, 0x82, 0x07, 0xd5, 0x8d, 0x26, + 0x98, 0x4e, 0x1c, 0x9f, 0x60, 0x8a, 0x7e, 0x45, 0x05, 0xaa, 0x88, 0x5f, 0xcc, 0xb1, 0x41, 0x7c, + 0x5f, 0x5a, 0x53, 0x99, 0xa0, 0xd6, 0x43, 0x91, 0x2a, 0x0b, 0xa6, 0x58, 0xb1, 0x1f, 0x1c, 0x0d, + 0x99, 0x3c, 0x59, 0x34, 0xc4, 0xfc, 0x54, 0x0e, 0x16, 0xe2, 0xc6, 0xf6, 0xf4, 0x93, 0x67, 0x7f, + 0xdd, 0x80, 0x05, 0x29, 0x28, 0x9c, 0x27, 0x91, 0x21, 0xdd, 0xcd, 0x94, 0xe4, 0x93, 0xbb, 0x0d, + 0xea, 0x26, 0xc3, 0x4e, 0x8c, 0x1b, 0xee, 0xe3, 0x8f, 0x5e, 0x81, 0x82, 0x8a, 0x7c, 0x9e, 0x28, + 0x93, 0x76, 0x9e, 0x39, 0x0c, 0x21, 0x09, 0xac, 0xd3, 0x43, 0x9f, 0x32, 0x00, 0x6a, 0x52, 0xa3, + 0x4b, 0x41, 0xba, 0x95, 0x96, 0x20, 0x29, 0x5b, 0x11, 0xfa, 0x85, 0xaa, 0xc8, 0xc7, 0x1a, 0x63, + 0xf4, 0x05, 0x16, 0xf3, 0x54, 0x8e, 0x0c, 0x15, 0x1d, 0xda, 0x92, 0xf7, 0xa6, 0x2d, 0xd2, 0xe1, + 0x49, 0x98, 0xf2, 0x1a, 0x34, 0x90, 0x8f, 0x23, 0x8d, 0x30, 0x9f, 0x03, 0x95, 0xf9, 0x44, 0x57, + 0x28, 0xcb, 0x7d, 0xda, 0xb6, 0x82, 0x7d, 0x21, 0x82, 0x6a, 0x85, 0x5e, 0x95, 0x00, 0x1c, 0xe2, + 0x98, 0x1f, 0x84, 0xb9, 0x17, 0x3c, 0xab, 0xbd, 0x6f, 0xb3, 0xd8, 0x22, 0x75, 0xea, 0xdf, 0x0a, + 0x53, 0x56, 0xbd, 0x9e, 0x74, 0xe9, 0xa6, 0xcc, 0x8b, 0xb1, 0x84, 0x0f, 0xe7, 0xbf, 0xff, 0x85, + 0x01, 0x4b, 0x1b, 0x7e, 0x60, 0xbb, 0xeb, 0xc4, 0x0f, 0xa8, 0x5a, 0xa0, 0x1e, 0x44, 0xa7, 0x49, + 0x86, 0xf0, 0xc1, 0xd6, 0x61, 0x41, 0x1c, 0x80, 0x74, 0x76, 0x7d, 0x12, 0x68, 0x7e, 0x98, 0x12, + 0xce, 0xb5, 0x18, 0x1c, 0xf7, 0xd5, 0xa0, 0x54, 0xc4, 0x49, 0x48, 0x48, 0x25, 0x1b, 0xa5, 0x52, + 0x8d, 0xc1, 0x71, 0x5f, 0x0d, 0xf3, 0xdb, 0x59, 0x38, 0xc3, 0xba, 0x11, 0xbb, 0xa8, 0xf3, 0x6b, + 0x06, 0xcc, 0x1d, 0xd8, 0x5e, 0xd0, 0xb1, 0x9a, 0xfa, 0x91, 0xce, 0xd8, 0xf2, 0xc9, 0x78, 0xbd, + 0x14, 0x21, 0x1c, 0x7a, 0x1e, 0xd1, 0x72, 0x1c, 0x6b, 0x00, 0x6d, 0xd3, 0x7c, 0x3d, 0x3a, 0xda, + 0xe9, 0x6c, 0x92, 0x93, 0xe6, 0x91, 0x27, 0x06, 0xc4, 0x0a, 0x71, 0x9c, 0x3f, 0xfa, 0xa2, 0x01, + 0xf3, 0xd1, 0x66, 0x4a, 0xb5, 0x75, 0x0a, 0x03, 0xa5, 0x32, 0xf9, 0xa2, 0xe5, 0x3e, 0x8e, 0x37, + 0xc1, 0xfc, 0xb6, 0x21, 0xa6, 0x35, 0x8a, 0x39, 0x84, 0x70, 0x9a, 0x30, 0xe9, 0xb9, 0x9d, 0x40, + 0x04, 0x7a, 0xa7, 0x79, 0x3c, 0x10, 0xb3, 0x12, 0x2c, 0x20, 0xe8, 0x3e, 0x4c, 0x07, 0x4d, 0x9f, + 0x17, 0x8a, 0xde, 0x8e, 0xe9, 0xd5, 0xef, 0x6c, 0x56, 0x19, 0x39, 0xcd, 0xf0, 0x8a, 0x12, 0xea, + 0x40, 0x48, 0x5e, 0xe6, 0x57, 0x0d, 0x98, 0xbe, 0xee, 0xee, 0x8a, 0x25, 0xfd, 0x81, 0x14, 0xf6, + 0xcc, 0xca, 0xb4, 0xaa, 0xe3, 0x86, 0xd0, 0x5b, 0x7b, 0x3e, 0xb2, 0x63, 0x7e, 0x5c, 0xa3, 0xbd, + 0xc2, 0x6e, 0x3a, 0x52, 0x52, 0xd7, 0xdd, 0xdd, 0x81, 0x21, 0x95, 0xdf, 0xce, 0xc1, 0xec, 0x8b, + 0xd6, 0x21, 0x71, 0x02, 0x6b, 0x74, 0x25, 0x44, 0x37, 0xa1, 0x6d, 0x96, 0x98, 0xa6, 0xb9, 0x4b, + 0xe1, 0x26, 0x34, 0x04, 0x61, 0x1d, 0x2f, 0xd4, 0x2d, 0x6b, 0xae, 0xb3, 0x67, 0x37, 0x92, 0xb4, + 0xc2, 0x5a, 0x0c, 0x8e, 0xfb, 0x6a, 0xa0, 0xeb, 0x80, 0x44, 0xde, 0x7a, 0xb9, 0x56, 0x73, 0x3b, + 0x0e, 0xd7, 0x2e, 0x7c, 0x7f, 0xaa, 0xfc, 0xf6, 0xad, 0x3e, 0x0c, 0x9c, 0x50, 0x0b, 0xbd, 0x1f, + 0x8a, 0x35, 0x46, 0x59, 0x78, 0x71, 0x3a, 0x45, 0xee, 0xc9, 0xab, 0xa4, 0xd0, 0xb5, 0x01, 0x78, + 0x78, 0x20, 0x05, 0xda, 0x52, 0x3f, 0x70, 0x3d, 0xab, 0x41, 0x74, 0xba, 0x93, 0xd1, 0x96, 0x56, + 0xfb, 0x30, 0x70, 0x42, 0x2d, 0xf4, 0x31, 0x98, 0x0e, 0xf6, 0x3d, 0xe2, 0xef, 0xbb, 0xcd, 0xba, + 0x38, 0x7f, 0x1c, 0x33, 0x68, 0x21, 0x66, 0x7f, 0x47, 0x52, 0xd5, 0xc4, 0x5b, 0x16, 0xe1, 0x90, + 0x27, 0xf2, 0x60, 0xd2, 0xa7, 0x3b, 0x66, 0xbf, 0x98, 0x4f, 0xc3, 0x33, 0x17, 0xdc, 0xd9, 0x26, + 0x5c, 0x0b, 0x97, 0x30, 0x0e, 0x58, 0x70, 0x32, 0xbf, 0x91, 0x81, 0x19, 0x1d, 0x71, 0x08, 0x15, + 0xf1, 0x49, 0x03, 0x66, 0x6a, 0xae, 0x13, 0x78, 0x6e, 0x93, 0x87, 0x02, 0xf8, 0x02, 0x19, 0xf3, + 0xde, 0x1b, 0x23, 0xb5, 0x4e, 0x02, 0xcb, 0x6e, 0x6a, 0x51, 0x05, 0x8d, 0x0d, 0x8e, 0x30, 0x45, + 0x9f, 0x35, 0x60, 0x3e, 0x4c, 0xcc, 0x08, 0x63, 0x12, 0xa9, 0x36, 0x44, 0x69, 0xdc, 0x2b, 0x51, + 0x4e, 0x38, 0xce, 0xda, 0xdc, 0x85, 0x85, 0xf8, 0x6c, 0xd3, 0xa1, 0x6c, 0x5b, 0x62, 0xad, 0x67, + 0xc3, 0xa1, 0xdc, 0xb6, 0x7c, 0x1f, 0x33, 0x08, 0x7a, 0x1b, 0xe4, 0x5b, 0x96, 0xd7, 0xb0, 0x1d, + 0xab, 0xc9, 0x46, 0x31, 0xab, 0x29, 0x24, 0x51, 0x8e, 0x15, 0x86, 0xf9, 0x83, 0x09, 0x28, 0x6c, + 0x11, 0xcb, 0xef, 0x78, 0x84, 0x05, 0x0d, 0x4f, 0xdd, 0x2b, 0x8f, 0x5c, 0x24, 0xcb, 0xa6, 0x77, + 0x91, 0x0c, 0xbd, 0x0c, 0xb0, 0x67, 0x3b, 0xb6, 0xbf, 0x7f, 0xc2, 0x2b, 0x6a, 0xec, 0xf4, 0xe9, + 0xaa, 0xa2, 0x80, 0x35, 0x6a, 0x61, 0x88, 0x3f, 0x77, 0xc4, 0x1d, 0xd5, 0x4f, 0x19, 0x9a, 0xf1, + 0x98, 0x4c, 0xe3, 0x48, 0x53, 0x9b, 0x98, 0x15, 0x69, 0x4c, 0xae, 0x38, 0x81, 0x77, 0x78, 0xa4, + 0x8d, 0xd9, 0x81, 0xbc, 0x47, 0xfc, 0x4e, 0x8b, 0xee, 0x2f, 0xa6, 0x46, 0x1e, 0x06, 0x96, 0xc5, + 0x80, 0x45, 0x7d, 0xac, 0x28, 0x2d, 0x3f, 0x07, 0xb3, 0x91, 0x26, 0xa0, 0x05, 0xc8, 0xde, 0x23, + 0x87, 0x5c, 0x4e, 0x30, 0xfd, 0x89, 0x96, 0x22, 0x07, 0x21, 0x62, 0x58, 0xde, 0x95, 0x79, 0xd6, + 0x30, 0x7f, 0x34, 0x09, 0xe2, 0xd0, 0x6c, 0x08, 0x5d, 0xa0, 0xc7, 0xca, 0x33, 0x27, 0x88, 0x95, + 0x5f, 0x87, 0x19, 0xdb, 0xb1, 0x03, 0xdb, 0x6a, 0xb2, 0x4d, 0xa8, 0xb0, 0x55, 0x4f, 0xca, 0xf5, + 0xbf, 0xa1, 0xc1, 0x12, 0xe8, 0x44, 0xea, 0xa2, 0x5b, 0x90, 0x63, 0xca, 0x5c, 0xc8, 0xd3, 0xe8, + 0x27, 0x7b, 0xec, 0x50, 0x97, 0x27, 0x87, 0x73, 0x4a, 0xcc, 0xc9, 0xe6, 0xb7, 0x06, 0xd5, 0xde, + 0x49, 0x88, 0x55, 0xe8, 0x64, 0xc7, 0xe0, 0xb8, 0xaf, 0x06, 0xa5, 0xb2, 0x67, 0xd9, 0xcd, 0x8e, + 0x47, 0x42, 0x2a, 0x93, 0x51, 0x2a, 0x57, 0x63, 0x70, 0xdc, 0x57, 0x03, 0xed, 0xc1, 0x8c, 0x28, + 0xe3, 0x79, 0x09, 0x53, 0x27, 0xec, 0x25, 0xcb, 0x3f, 0xb9, 0xaa, 0x51, 0xc2, 0x11, 0xba, 0xa8, + 0x03, 0x8b, 0xb6, 0x53, 0x73, 0x9d, 0x5a, 0xb3, 0xe3, 0xdb, 0x07, 0x24, 0xcc, 0xcc, 0x3e, 0x09, + 0xb3, 0xb3, 0xbd, 0x6e, 0x69, 0x71, 0x23, 0x4e, 0x0e, 0xf7, 0x73, 0x40, 0x9f, 0x30, 0xe0, 0x6c, + 0xcd, 0x75, 0x7c, 0x76, 0x37, 0xe9, 0x80, 0x5c, 0xf1, 0x3c, 0xd7, 0xe3, 0xbc, 0xa7, 0x4f, 0xc8, + 0x9b, 0xc5, 0x3e, 0xd6, 0x92, 0x48, 0xe2, 0x64, 0x4e, 0xe8, 0x55, 0xc8, 0xb7, 0x3d, 0xf7, 0xc0, + 0xae, 0x13, 0x4f, 0xe4, 0xb8, 0x6c, 0xa6, 0x71, 0x2d, 0x70, 0x5b, 0xd0, 0x0c, 0x35, 0x81, 0x2c, + 0xc1, 0x8a, 0x9f, 0xf9, 0xfb, 0x79, 0x98, 0x8b, 0xa2, 0xa3, 0x8f, 0x02, 0xb4, 0x3d, 0xb7, 0x45, + 0x82, 0x7d, 0xa2, 0x32, 0x6c, 0x6f, 0x8c, 0x7b, 0x25, 0x4f, 0xd2, 0x93, 0xe7, 0xe4, 0x54, 0x93, + 0x86, 0xa5, 0x58, 0xe3, 0x88, 0x3c, 0x98, 0xba, 0xc7, 0x6d, 0x9a, 0x30, 0xf1, 0x2f, 0xa6, 0xe2, + 0x90, 0x08, 0xce, 0x05, 0x6a, 0x72, 0x44, 0x11, 0x96, 0x8c, 0xd0, 0x2e, 0x64, 0xef, 0x93, 0xdd, + 0x74, 0x2e, 0x8f, 0xdd, 0x21, 0x62, 0xab, 0x50, 0x99, 0xea, 0x75, 0x4b, 0xd9, 0x3b, 0x64, 0x17, + 0x53, 0xe2, 0xb4, 0x5f, 0x75, 0x7e, 0xe2, 0x27, 0x54, 0xc5, 0x98, 0xfd, 0x8a, 0x1c, 0x1f, 0xf2, + 0x7e, 0x89, 0x22, 0x2c, 0x19, 0xa1, 0x57, 0x61, 0xfa, 0xbe, 0x75, 0x40, 0xf6, 0x3c, 0xd7, 0x09, + 0x44, 0x72, 0xc6, 0x98, 0x99, 0xa3, 0x77, 0x24, 0x39, 0xc1, 0x97, 0x59, 0x5b, 0x55, 0x88, 0x43, + 0x76, 0xe8, 0x00, 0xf2, 0x0e, 0xb9, 0x8f, 0x49, 0xd3, 0xae, 0x89, 0xa4, 0xbd, 0x31, 0xc5, 0xfa, + 0x86, 0xa0, 0x26, 0x38, 0x33, 0x33, 0x24, 0xcb, 0xb0, 0xe2, 0x45, 0xe7, 0xf2, 0xae, 0xbb, 0x2b, + 0x14, 0xd5, 0x98, 0x73, 0xa9, 0xb6, 0x7d, 0x7c, 0x2e, 0xaf, 0xbb, 0xbb, 0x98, 0x12, 0xa7, 0x6b, + 0xa4, 0xa6, 0x32, 0x03, 0x84, 0x9a, 0xba, 0x91, 0x6e, 0x46, 0x04, 0x5f, 0x23, 0x61, 0x29, 0xd6, + 0x38, 0xd2, 0xb1, 0x6d, 0x88, 0x48, 0x93, 0x50, 0x54, 0x63, 0x8e, 0x6d, 0x34, 0x6e, 0xc5, 0xc7, + 0x56, 0x96, 0x61, 0xc5, 0xcb, 0xfc, 0x93, 0x09, 0x98, 0xd1, 0x1f, 0x01, 0x18, 0xc2, 0x56, 0x2b, + 0x77, 0x31, 0x33, 0x8a, 0xbb, 0x48, 0xbd, 0xfd, 0x56, 0xe8, 0xdb, 0xc8, 0x0d, 0xff, 0x46, 0x6a, + 0xde, 0x52, 0xe8, 0xed, 0x6b, 0x85, 0x3e, 0x8e, 0x30, 0x1d, 0xe1, 0x98, 0x94, 0xfa, 0x7f, 0xdc, + 0x0d, 0xe0, 0xb7, 0xac, 0x94, 0xff, 0x17, 0x31, 0xec, 0x97, 0x01, 0xc2, 0xe7, 0x00, 0x44, 0xac, + 0x5c, 0xc5, 0x49, 0xb5, 0x67, 0x0a, 0x34, 0x2c, 0xf4, 0x24, 0x4c, 0x52, 0x43, 0x49, 0xea, 0xe2, + 0xfa, 0x93, 0xda, 0x52, 0x5d, 0x65, 0xa5, 0x58, 0x40, 0xd1, 0xb3, 0xd4, 0xa7, 0x09, 0xcd, 0x9b, + 0xb8, 0xd5, 0xb4, 0x14, 0xfa, 0x34, 0x21, 0x0c, 0x47, 0x30, 0x69, 0xd3, 0x09, 0xb5, 0x46, 0x4c, + 0x92, 0xb4, 0xa6, 0x33, 0x13, 0x85, 0x39, 0x8c, 0x6d, 0xf1, 0x63, 0xd6, 0x8b, 0x19, 0xab, 0x9c, + 0xb6, 0xc5, 0x8f, 0xc1, 0x71, 0x5f, 0x0d, 0xf3, 0x83, 0x30, 0x17, 0x5d, 0xc5, 0x74, 0x88, 0xdb, + 0x9e, 0xbb, 0x67, 0x37, 0x49, 0x3c, 0x38, 0xb1, 0xcd, 0x8b, 0xb1, 0x84, 0x0f, 0x17, 0x21, 0xfd, + 0xcb, 0x2c, 0x9c, 0xb9, 0xd1, 0xb0, 0x9d, 0x07, 0xb1, 0xd0, 0x62, 0xd2, 0x2b, 0x43, 0xc6, 0xa8, + 0xaf, 0x0c, 0x85, 0x49, 0xe3, 0xe2, 0xcd, 0xa4, 0xe4, 0xa4, 0x71, 0xf9, 0xa0, 0x52, 0x14, 0x17, + 0x7d, 0xd7, 0x80, 0xc7, 0xad, 0x3a, 0xf7, 0xab, 0xac, 0xa6, 0x28, 0x0d, 0x99, 0x4a, 0x19, 0xf7, + 0xc7, 0xd4, 0x92, 0xfd, 0x9d, 0x5f, 0x29, 0x1f, 0xc1, 0x95, 0xef, 0x16, 0xde, 0x22, 0x7a, 0xf0, + 0xf8, 0x51, 0xa8, 0xf8, 0xc8, 0xe6, 0x2f, 0xdf, 0x84, 0x37, 0x1f, 0xcb, 0x68, 0xa4, 0x3d, 0xc1, + 0x27, 0x0d, 0x98, 0xe6, 0x51, 0x33, 0x4c, 0xf6, 0xe8, 0xe2, 0xb1, 0xda, 0xf6, 0x4b, 0xc4, 0xf3, + 0xe5, 0x53, 0x01, 0x5a, 0xba, 0x57, 0x79, 0x7b, 0x43, 0x40, 0xb0, 0x86, 0x45, 0xd5, 0xd3, 0x3d, + 0xdb, 0xa9, 0x8b, 0x69, 0x52, 0xea, 0xe9, 0x45, 0xdb, 0xa9, 0x63, 0x06, 0x51, 0x0a, 0x2c, 0x3b, + 0x48, 0x81, 0x99, 0xbf, 0x63, 0xc0, 0x1c, 0xbb, 0x13, 0x12, 0x3a, 0xc5, 0xcf, 0xa8, 0x53, 0x61, + 0xde, 0x8c, 0xf3, 0xd1, 0x53, 0xe1, 0x37, 0xba, 0xa5, 0x02, 0xbf, 0x45, 0x12, 0x3d, 0x24, 0x7e, + 0x9f, 0xd8, 0xd8, 0xb2, 0xb3, 0xeb, 0xcc, 0xc8, 0xfb, 0x2e, 0x15, 0xc6, 0xa9, 0x4a, 0x22, 0x38, + 0xa4, 0x67, 0xfe, 0x51, 0x16, 0xce, 0x24, 0x24, 0x37, 0xd3, 0x3d, 0xe7, 0x24, 0xcb, 0x15, 0x95, + 0x27, 0xaf, 0xaf, 0xa4, 0x9e, 0x40, 0xbd, 0xc2, 0x52, 0x52, 0x85, 0x24, 0x29, 0xfd, 0xc4, 0x0b, + 0xb1, 0x60, 0x8e, 0x7e, 0xc3, 0x80, 0x82, 0xa5, 0x09, 0x3b, 0x3f, 0x8c, 0xde, 0x4d, 0xbf, 0x31, + 0x7d, 0xb2, 0xad, 0x25, 0xd1, 0x84, 0xa2, 0xac, 0xb7, 0x65, 0xf9, 0xe7, 0xa1, 0xa0, 0x75, 0x61, + 0x14, 0x19, 0x5d, 0x7e, 0x1e, 0x16, 0xc6, 0x92, 0xf1, 0xf7, 0xc2, 0xa8, 0x6f, 0x4f, 0x50, 0x8b, + 0x70, 0x5f, 0xbf, 0x2a, 0xa5, 0x46, 0x5c, 0xdc, 0x95, 0x12, 0x50, 0x73, 0x17, 0x16, 0xe2, 0x8e, + 0x77, 0xea, 0x07, 0x52, 0xef, 0x80, 0x11, 0x5f, 0x8b, 0x30, 0xff, 0x2a, 0x03, 0x53, 0xe2, 0x86, + 0xc4, 0x43, 0xc8, 0x3f, 0xbb, 0x17, 0x89, 0xa6, 0x6f, 0xa4, 0x72, 0xb1, 0x63, 0x60, 0xf2, 0x99, + 0x1f, 0x4b, 0x3e, 0x7b, 0x31, 0x1d, 0x76, 0x47, 0x67, 0x9e, 0x7d, 0x3e, 0x03, 0xf3, 0xb1, 0x1b, + 0x27, 0xe8, 0xd3, 0x46, 0x7f, 0xc2, 0xc5, 0xed, 0x54, 0x2f, 0xb5, 0xa8, 0xec, 0xc6, 0xa3, 0x73, + 0x2f, 0xfc, 0xc8, 0xfb, 0x33, 0xb7, 0x52, 0x7b, 0xa3, 0xec, 0xc8, 0xa7, 0x68, 0xfe, 0xc9, 0x80, + 0x47, 0x07, 0xde, 0xc1, 0x61, 0xf7, 0x7c, 0xbd, 0x28, 0x54, 0xc8, 0x5e, 0xca, 0x77, 0xea, 0x54, + 0x14, 0x37, 0x7e, 0x35, 0x33, 0xce, 0x1e, 0x3d, 0x0d, 0x33, 0x4c, 0x8f, 0xd3, 0xe5, 0x13, 0x90, + 0xb6, 0x78, 0x5c, 0x8a, 0x45, 0x4c, 0xaa, 0x5a, 0x39, 0x8e, 0x60, 0x99, 0x5f, 0x31, 0xa0, 0x38, + 0xe8, 0xd6, 0xe7, 0x10, 0x7e, 0xf9, 0xcf, 0xc5, 0x72, 0xc1, 0x4a, 0x7d, 0xb9, 0x60, 0x31, 0xcf, + 0x5c, 0xa6, 0x7d, 0x69, 0x4e, 0x71, 0xf6, 0x98, 0x54, 0xa7, 0xcf, 0x19, 0x70, 0x6e, 0x80, 0xe0, + 0xf4, 0xe5, 0x04, 0x1a, 0x27, 0xce, 0x09, 0xcc, 0x0c, 0x9b, 0x13, 0x68, 0xfe, 0x4d, 0x16, 0x16, + 0x44, 0x7b, 0x42, 0x63, 0xfe, 0x6c, 0x24, 0xa3, 0xee, 0x2d, 0xb1, 0x8c, 0xba, 0xa5, 0x38, 0xfe, + 0xff, 0xa7, 0xd3, 0xfd, 0x64, 0xa5, 0xd3, 0xfd, 0x38, 0x03, 0x67, 0x13, 0x6f, 0xd4, 0xa2, 0xcf, + 0x24, 0x68, 0xc1, 0x3b, 0x29, 0x5f, 0xdd, 0x1d, 0x52, 0x0f, 0x8e, 0x9b, 0x83, 0xf6, 0x45, 0x3d, + 0xf7, 0x8b, 0x6f, 0x13, 0xf6, 0x4e, 0xe1, 0x12, 0xf2, 0x88, 0x69, 0x60, 0xe6, 0xaf, 0x66, 0xe1, + 0xd2, 0xb0, 0x84, 0x7e, 0x42, 0xd3, 0x84, 0xfd, 0x48, 0x9a, 0xf0, 0xc3, 0xb1, 0x50, 0xa7, 0x93, + 0x31, 0xfc, 0xd5, 0xac, 0x32, 0x7b, 0xfd, 0xf2, 0x39, 0xd4, 0xa1, 0xca, 0x14, 0xf5, 0x62, 0xe4, + 0x7b, 0x52, 0xa1, 0x2a, 0x9c, 0xaa, 0xf2, 0xe2, 0x37, 0xba, 0xa5, 0x45, 0xf1, 0x6c, 0x4d, 0x95, + 0x04, 0xa2, 0x10, 0xcb, 0x4a, 0xe8, 0x12, 0xe4, 0x3d, 0x0e, 0x95, 0x89, 0x91, 0xe2, 0xa0, 0x88, + 0x97, 0x61, 0x05, 0x45, 0x1f, 0xd3, 0xdc, 0xbe, 0x89, 0xd3, 0xba, 0xd4, 0x79, 0xd4, 0xf9, 0xd7, + 0x2b, 0x90, 0xf7, 0xe5, 0x63, 0x53, 0x3c, 0x2a, 0xfa, 0xd4, 0x90, 0xf9, 0xb6, 0x74, 0x97, 0x20, + 0x5f, 0x9e, 0xe2, 0xfd, 0x53, 0xef, 0x52, 0x29, 0x92, 0xc8, 0x54, 0x0e, 0x3a, 0x0f, 0xf1, 0x40, + 0x82, 0x73, 0xfe, 0xba, 0x01, 0x05, 0x31, 0x5b, 0x0f, 0x21, 0x05, 0xf8, 0x6e, 0x34, 0x05, 0xf8, + 0x4a, 0x2a, 0xba, 0x63, 0x40, 0xfe, 0xef, 0x5d, 0x98, 0xd1, 0x1f, 0x55, 0x40, 0x2f, 0x6b, 0xba, + 0xcf, 0x18, 0xe7, 0xf2, 0xb6, 0xd4, 0x8e, 0xa1, 0x5e, 0x34, 0xbf, 0x9c, 0x57, 0xa3, 0xc8, 0x12, + 0x8d, 0x75, 0x19, 0x34, 0x8e, 0x94, 0x41, 0x5d, 0x04, 0x32, 0xe9, 0x8b, 0xc0, 0x2d, 0xc8, 0x4b, + 0x05, 0x25, 0xcc, 0xf8, 0x13, 0x7a, 0x26, 0x0f, 0xf5, 0x05, 0x28, 0x31, 0x4d, 0x70, 0xd9, 0xae, + 0x42, 0xcd, 0xa1, 0x52, 0x9c, 0x8a, 0x0c, 0x7a, 0x15, 0x0a, 0xf7, 0x5d, 0xef, 0x5e, 0xd3, 0xb5, + 0xd8, 0x9b, 0x6f, 0x90, 0x46, 0x7c, 0x5b, 0x45, 0x57, 0x78, 0xd2, 0xe8, 0x9d, 0x90, 0x3e, 0xd6, + 0x99, 0xa1, 0x32, 0xcc, 0xb7, 0x6c, 0x07, 0x13, 0xab, 0xae, 0x32, 0x7d, 0x27, 0xf8, 0x3b, 0x57, + 0xd2, 0xc9, 0xdd, 0x8a, 0x82, 0x71, 0x1c, 0x1f, 0x7d, 0x18, 0xf2, 0xbe, 0x78, 0xb8, 0x21, 0x9d, + 0x93, 0x08, 0xb5, 0x3d, 0xe2, 0x44, 0xc3, 0xb1, 0x93, 0x25, 0x58, 0x31, 0x44, 0x9b, 0xb0, 0xe4, + 0x89, 0xab, 0xd1, 0x91, 0x67, 0x5c, 0xf9, 0xfa, 0x64, 0xcf, 0x29, 0xe1, 0x04, 0x38, 0x4e, 0xac, + 0x45, 0xbd, 0x18, 0xf6, 0x3a, 0x08, 0x0f, 0xc9, 0xe6, 0xb5, 0xbb, 0x99, 0xac, 0x14, 0x0b, 0xe8, + 0x51, 0x99, 0xe3, 0xf9, 0x31, 0x32, 0xc7, 0xab, 0x70, 0x36, 0x0e, 0x62, 0x17, 0xb8, 0xd9, 0x9d, + 0x71, 0xcd, 0x7a, 0x6c, 0x27, 0x21, 0xe1, 0xe4, 0xba, 0xe8, 0x0e, 0x4c, 0x7b, 0x84, 0xed, 0x2f, + 0xca, 0xf2, 0xec, 0x73, 0xe4, 0xa4, 0x0b, 0x2c, 0x09, 0xe0, 0x90, 0x16, 0x9d, 0x77, 0x2b, 0xfa, + 0xd4, 0xd3, 0xad, 0x14, 0x5f, 0x1c, 0x17, 0x73, 0x3f, 0xe0, 0x61, 0x05, 0xf3, 0xbf, 0x66, 0x61, + 0x36, 0xb2, 0x8d, 0x46, 0x4f, 0x40, 0x8e, 0xdd, 0x68, 0x67, 0xea, 0x21, 0x1f, 0xaa, 0x30, 0x3e, + 0x38, 0x1c, 0x86, 0x3e, 0x6f, 0xc0, 0x7c, 0x3b, 0x12, 0xf2, 0x93, 0x9a, 0x73, 0xcc, 0x63, 0x96, + 0x68, 0x1c, 0x51, 0x7b, 0x24, 0x31, 0xca, 0x0c, 0xc7, 0xb9, 0xd3, 0x05, 0x28, 0xf2, 0x90, 0x9a, + 0xc4, 0x63, 0xd8, 0xc2, 0xc7, 0x51, 0x24, 0xd6, 0xa2, 0x60, 0x1c, 0xc7, 0xa7, 0x33, 0xcc, 0x7a, + 0x37, 0xce, 0xfb, 0xcc, 0x65, 0x49, 0x00, 0x87, 0xb4, 0xd0, 0xf3, 0x30, 0x27, 0x5e, 0xf8, 0xd9, + 0x76, 0xeb, 0xd7, 0x2c, 0x7f, 0x5f, 0x38, 0xf7, 0x6a, 0x33, 0xb2, 0x16, 0x81, 0xe2, 0x18, 0x36, + 0xeb, 0x5b, 0xf8, 0x8c, 0x12, 0x23, 0x30, 0x19, 0x7d, 0x43, 0x72, 0x2d, 0x0a, 0xc6, 0x71, 0x7c, + 0xf4, 0x36, 0x4d, 0xef, 0xf3, 0x63, 0x12, 0xa5, 0x0d, 0x12, 0x74, 0x7f, 0x19, 0xe6, 0x3b, 0x6c, + 0x2f, 0x54, 0x97, 0x40, 0xb1, 0x1e, 0x15, 0xc3, 0xdb, 0x51, 0x30, 0x8e, 0xe3, 0xa3, 0xe7, 0x60, + 0xd6, 0xa3, 0xda, 0x4d, 0x11, 0xe0, 0x67, 0x27, 0xea, 0x20, 0x00, 0xeb, 0x40, 0x1c, 0xc5, 0x45, + 0x2f, 0xc0, 0x62, 0xf8, 0xd6, 0x89, 0x24, 0xc0, 0x0f, 0x53, 0xd4, 0x43, 0x04, 0xe5, 0x38, 0x02, + 0xee, 0xaf, 0x83, 0x7e, 0x01, 0x16, 0xb4, 0x91, 0xd8, 0x70, 0xea, 0xe4, 0x81, 0x78, 0x8f, 0x62, + 0x89, 0x1d, 0xc8, 0xc4, 0x60, 0xb8, 0x0f, 0x1b, 0xbd, 0x0b, 0xe6, 0x6a, 0x6e, 0xb3, 0xc9, 0x74, + 0x1c, 0x7f, 0xbf, 0x90, 0x3f, 0x3c, 0xc1, 0x9f, 0xe8, 0x88, 0x40, 0x70, 0x0c, 0x13, 0x5d, 0x07, + 0xe4, 0xee, 0xfa, 0xc4, 0x3b, 0x20, 0xf5, 0x17, 0xf8, 0x27, 0x28, 0xa8, 0x89, 0x9f, 0x8d, 0x66, + 0x41, 0xde, 0xec, 0xc3, 0xc0, 0x09, 0xb5, 0xd0, 0x2e, 0x2c, 0x4b, 0x7b, 0xd3, 0x5f, 0xa3, 0x58, + 0x8c, 0x6c, 0x99, 0x96, 0xef, 0x0c, 0xc4, 0xc4, 0x47, 0x50, 0x61, 0x6f, 0x25, 0x68, 0x37, 0x1f, + 0xe6, 0xd2, 0x78, 0x11, 0x3a, 0x1e, 0x1d, 0x38, 0xf6, 0xda, 0x83, 0x07, 0x93, 0x3c, 0xf1, 0xb5, + 0x38, 0x9f, 0xc6, 0x1b, 0x2f, 0xfa, 0x73, 0x69, 0xa1, 0x1d, 0xe2, 0xa5, 0x58, 0x70, 0x42, 0x1f, + 0x85, 0xe9, 0x5d, 0xf9, 0x76, 0x66, 0x71, 0x21, 0x0d, 0xdb, 0x1b, 0x7b, 0x06, 0x36, 0xdc, 0xfd, + 0x2a, 0x00, 0x0e, 0x59, 0xa2, 0x27, 0xa1, 0x70, 0x6d, 0xbb, 0xac, 0x24, 0x7d, 0x91, 0x49, 0xd8, + 0x04, 0xad, 0x82, 0x75, 0x00, 0x5d, 0xc5, 0xca, 0x27, 0x43, 0x6c, 0xca, 0x43, 0x9b, 0xde, 0xef, + 0x62, 0x51, 0x6c, 0x76, 0xbe, 0x86, 0xab, 0xc5, 0x33, 0x31, 0x6c, 0x51, 0x8e, 0x15, 0x06, 0x7a, + 0x05, 0x0a, 0xc2, 0x26, 0x31, 0xfd, 0xb7, 0x74, 0xb2, 0x5b, 0x35, 0x38, 0x24, 0x81, 0x75, 0x7a, + 0xe8, 0x19, 0x28, 0xb4, 0xd9, 0x93, 0x82, 0xe4, 0x6a, 0xa7, 0xd9, 0x2c, 0x9e, 0x65, 0xba, 0x59, + 0x1d, 0x3c, 0x6c, 0x87, 0x20, 0xac, 0xe3, 0xa1, 0xa7, 0xe4, 0xe1, 0xf8, 0x9b, 0x22, 0xe7, 0x48, + 0xea, 0x70, 0x5c, 0x79, 0xd2, 0x03, 0x52, 0x29, 0xcf, 0x1d, 0x13, 0x1c, 0xf9, 0x44, 0x18, 0x1c, + 0x56, 0xaf, 0x66, 0x7d, 0x44, 0x97, 0x06, 0x23, 0x8d, 0x0f, 0x65, 0xf4, 0x3d, 0xcc, 0xca, 0x8d, + 0x45, 0xa2, 0x2c, 0xb4, 0x95, 0xfc, 0xa7, 0x72, 0x25, 0x3c, 0xfa, 0x22, 0x18, 0xdf, 0x69, 0x45, + 0xa5, 0xdf, 0xfc, 0xde, 0x84, 0x0a, 0x10, 0xc5, 0xce, 0x84, 0x3d, 0xc8, 0xd9, 0x7e, 0x60, 0xbb, + 0x29, 0x5e, 0x32, 0x89, 0x3d, 0xa5, 0xc5, 0x72, 0xfb, 0x18, 0x00, 0x73, 0x56, 0x94, 0xa7, 0xd3, + 0xb0, 0x9d, 0x07, 0xa2, 0xfb, 0xb7, 0x52, 0x3f, 0xec, 0xe5, 0x3c, 0x19, 0x00, 0x73, 0x56, 0xe8, + 0x2e, 0x64, 0xad, 0xe6, 0x6e, 0x4a, 0x1f, 0x45, 0x89, 0x7f, 0x58, 0x88, 0x67, 0xc6, 0x94, 0x37, + 0x2b, 0x98, 0x32, 0xa1, 0xbc, 0xfc, 0x96, 0x2d, 0xfc, 0x8b, 0x31, 0x79, 0x55, 0xb7, 0x36, 0x92, + 0x78, 0x55, 0xb7, 0x36, 0x30, 0x65, 0x82, 0x3e, 0x6d, 0x00, 0x58, 0xea, 0xa3, 0x3f, 0xe9, 0xbc, + 0x62, 0x3c, 0xe8, 0x23, 0x42, 0x3c, 0x1d, 0x27, 0x84, 0x62, 0x8d, 0xb3, 0xf9, 0x9a, 0x01, 0x8b, + 0x7d, 0x8d, 0x8d, 0x7f, 0x0f, 0xc9, 0x18, 0xfe, 0x7b, 0x48, 0xe2, 0xb1, 0xb5, 0x6a, 0xbb, 0x69, + 0x27, 0x5e, 0xd4, 0xda, 0x89, 0xc1, 0x71, 0x5f, 0x0d, 0xf3, 0xeb, 0x06, 0x14, 0xb4, 0x9c, 0x72, + 0xea, 0xf7, 0xb2, 0xdc, 0x7b, 0xd1, 0x8c, 0xf0, 0x9d, 0x39, 0x16, 0x13, 0xe3, 0x30, 0x1e, 0x9e, + 0x6d, 0x68, 0x4f, 0x13, 0x85, 0xe1, 0x59, 0x5a, 0x8a, 0x05, 0x94, 0x3f, 0x3a, 0x43, 0xda, 0x4c, + 0xa2, 0xb2, 0xfa, 0xa3, 0x33, 0xa4, 0x8d, 0x19, 0x84, 0xb1, 0xa3, 0xca, 0x51, 0xe4, 0xcd, 0x68, + 0xcf, 0xda, 0x59, 0xd4, 0xcd, 0x66, 0x30, 0x74, 0x1e, 0xb2, 0xc4, 0xa9, 0x0b, 0x6f, 0xb1, 0x20, + 0x50, 0xb2, 0x57, 0x9c, 0x3a, 0xa6, 0xe5, 0xe6, 0x4d, 0x98, 0xa9, 0x92, 0x9a, 0x47, 0x82, 0x17, + 0xc9, 0xe1, 0x70, 0x01, 0xc4, 0xf3, 0xfc, 0xe0, 0x35, 0x13, 0x25, 0x48, 0xab, 0xd3, 0x72, 0xf3, + 0xf7, 0x0c, 0x88, 0xbd, 0x32, 0xa8, 0x85, 0x6a, 0x8c, 0x41, 0xa1, 0x9a, 0x48, 0x50, 0x21, 0x73, + 0x64, 0x50, 0xe1, 0x3a, 0xa0, 0x96, 0x15, 0xd4, 0xf6, 0xc5, 0xfc, 0x88, 0x07, 0x2d, 0xb9, 0xa3, + 0x1e, 0xde, 0x60, 0xe9, 0xc3, 0xc0, 0x09, 0xb5, 0xcc, 0x97, 0x20, 0x2f, 0x6f, 0x23, 0xb1, 0x94, + 0x7e, 0xb9, 0x67, 0xd1, 0x53, 0xfa, 0xe9, 0x96, 0x85, 0x41, 0x68, 0x1b, 0x7d, 0xc7, 0xbe, 0xe6, + 0xfa, 0x81, 0xbc, 0x42, 0xc5, 0x23, 0x13, 0x37, 0x36, 0x58, 0x19, 0x56, 0x50, 0x73, 0x11, 0xe6, + 0x55, 0xc8, 0x81, 0x4b, 0x9c, 0xf9, 0x8d, 0x2c, 0xcc, 0x44, 0xbe, 0x53, 0x71, 0xfc, 0x48, 0x0f, + 0x3f, 0x26, 0x09, 0xa1, 0x83, 0xec, 0x88, 0xa1, 0x03, 0x3d, 0x56, 0x33, 0x71, 0xba, 0xb1, 0x9a, + 0x5c, 0x3a, 0xb1, 0x9a, 0x00, 0xa6, 0xc4, 0x97, 0xd1, 0x44, 0xea, 0xe3, 0x56, 0x4a, 0xd7, 0x89, + 0xc5, 0x9d, 0x3c, 0x96, 0xed, 0x29, 0xb5, 0x87, 0x64, 0x65, 0x7e, 0x2d, 0x07, 0x73, 0xd1, 0x0b, + 0xc6, 0x43, 0xcc, 0xe4, 0xdb, 0xfa, 0x66, 0x72, 0xc4, 0xad, 0x53, 0x76, 0xdc, 0xad, 0xd3, 0xc4, + 0xb8, 0x5b, 0xa7, 0xdc, 0x09, 0xb6, 0x4e, 0xfd, 0x1b, 0x9f, 0xc9, 0xa1, 0x37, 0x3e, 0xef, 0x56, + 0xe7, 0x7e, 0x53, 0x91, 0x40, 0x79, 0x78, 0xee, 0x87, 0xa2, 0xd3, 0xb0, 0xe6, 0xd6, 0x13, 0xcf, + 0x4f, 0xf3, 0xc7, 0x24, 0x15, 0x7a, 0x89, 0xc7, 0x74, 0xa3, 0x47, 0x67, 0xde, 0x34, 0xc2, 0x11, + 0x5d, 0xf8, 0xf1, 0x3f, 0x66, 0x79, 0x20, 0x6a, 0xb5, 0xaa, 0x21, 0x08, 0xeb, 0x78, 0xec, 0x43, + 0x10, 0xd1, 0xcf, 0x54, 0xb0, 0x9d, 0xa8, 0xfe, 0x21, 0x88, 0xd8, 0x67, 0x2d, 0xe2, 0xf8, 0xe6, + 0xc7, 0x33, 0x10, 0x7e, 0x6a, 0x83, 0xbd, 0x89, 0xe9, 0x6b, 0xea, 0x5f, 0x38, 0x69, 0xd7, 0xc7, + 0x7d, 0x78, 0x36, 0xa4, 0x28, 0x4e, 0xd8, 0xb5, 0x12, 0x1c, 0xe1, 0xf8, 0x3f, 0xf0, 0x89, 0x0d, + 0x0b, 0xe6, 0x63, 0x09, 0xd6, 0xa9, 0x67, 0xec, 0x7c, 0x3d, 0x03, 0xd3, 0x2a, 0x45, 0x9d, 0x5a, + 0xcc, 0x8e, 0x27, 0x1f, 0x9c, 0x52, 0x16, 0xf3, 0x36, 0xde, 0xc4, 0xb4, 0x1c, 0x3d, 0x80, 0xa9, + 0x7d, 0x62, 0xd5, 0x89, 0x27, 0xe3, 0x5f, 0x5b, 0x29, 0xe5, 0xc6, 0x5f, 0x63, 0x54, 0xc3, 0xbe, + 0xf0, 0xff, 0x3e, 0x96, 0xec, 0xd0, 0xf3, 0x30, 0x17, 0xd8, 0x2d, 0x42, 0x37, 0x2e, 0x9a, 0xd5, + 0xc8, 0x86, 0x41, 0xa5, 0x9d, 0x08, 0x14, 0xc7, 0xb0, 0xa9, 0x5a, 0xbb, 0xeb, 0xbb, 0x0e, 0xbb, + 0xbb, 0x3f, 0x11, 0xdd, 0x1d, 0x5e, 0xaf, 0xde, 0xbc, 0xc1, 0xae, 0xee, 0x2b, 0x0c, 0x8a, 0x6d, + 0xb3, 0x54, 0x55, 0x8f, 0x88, 0x33, 0xb8, 0x85, 0xf0, 0x42, 0x11, 0x2f, 0xc7, 0x0a, 0xc3, 0xbc, + 0x0d, 0xf3, 0xb1, 0x8e, 0x48, 0xcf, 0xc3, 0x48, 0xf6, 0x3c, 0x86, 0x7a, 0x00, 0xae, 0xb2, 0xf2, + 0xcd, 0xef, 0x5f, 0x78, 0xe4, 0x5b, 0xdf, 0xbf, 0xf0, 0xc8, 0x77, 0xbe, 0x7f, 0xe1, 0x91, 0x8f, + 0xf7, 0x2e, 0x18, 0xdf, 0xec, 0x5d, 0x30, 0xbe, 0xd5, 0xbb, 0x60, 0x7c, 0xa7, 0x77, 0xc1, 0xf8, + 0x5e, 0xef, 0x82, 0xf1, 0xda, 0x0f, 0x2e, 0x3c, 0xf2, 0x72, 0x5e, 0x0e, 0xe6, 0x7f, 0x07, 0x00, + 0x00, 0xff, 0xff, 0x15, 0xc3, 0x12, 0x0d, 0xc0, 0x75, 0x00, 0x00, } func (m *ALBTrafficRouting) Marshal() (dAtA []byte, err error) { @@ -3766,7 +3963,7 @@ func (m *CanaryStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *ClusterAnalysisTemplate) Marshal() (dAtA []byte, err error) { +func (m *CloudWatchMetric) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -3776,40 +3973,39 @@ func (m *ClusterAnalysisTemplate) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ClusterAnalysisTemplate) MarshalTo(dAtA []byte) (int, error) { +func (m *CloudWatchMetric) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ClusterAnalysisTemplate) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *CloudWatchMetric) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - { - size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.MetricDataQueries) > 0 { + for iNdEx := len(m.MetricDataQueries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.MetricDataQueries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) } + i -= len(m.Interval) + copy(dAtA[i:], m.Interval) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Interval))) i-- dAtA[i] = 0xa return len(dAtA) - i, nil } -func (m *ClusterAnalysisTemplateList) Marshal() (dAtA []byte, err error) { +func (m *CloudWatchMetricDataQuery) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -3819,28 +4015,282 @@ func (m *ClusterAnalysisTemplateList) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ClusterAnalysisTemplateList) MarshalTo(dAtA []byte) (int, error) { +func (m *CloudWatchMetricDataQuery) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ClusterAnalysisTemplateList) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *CloudWatchMetricDataQuery) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if len(m.Items) > 0 { - for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 + if m.ReturnData != nil { + i-- + if *m.ReturnData { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x30 + } + if m.Period != nil { + { + size, err := m.Period.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + if m.MetricStat != nil { + { + size, err := m.MetricStat.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.Label != nil { + i -= len(*m.Label) + copy(dAtA[i:], *m.Label) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Label))) + i-- + dAtA[i] = 0x1a + } + if m.Expression != nil { + i -= len(*m.Expression) + copy(dAtA[i:], *m.Expression) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Expression))) + i-- + dAtA[i] = 0x12 + } + i -= len(m.Id) + copy(dAtA[i:], m.Id) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Id))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *CloudWatchMetricStat) 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 *CloudWatchMetricStat) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CloudWatchMetricStat) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.Unit) + copy(dAtA[i:], m.Unit) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Unit))) + i-- + dAtA[i] = 0x22 + i -= len(m.Stat) + copy(dAtA[i:], m.Stat) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Stat))) + i-- + dAtA[i] = 0x1a + { + size, err := m.Period.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size, err := m.Metric.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *CloudWatchMetricStatMetric) 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 *CloudWatchMetricStatMetric) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CloudWatchMetricStatMetric) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Namespace != nil { + i -= len(*m.Namespace) + copy(dAtA[i:], *m.Namespace) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Namespace))) + i-- + dAtA[i] = 0x1a + } + i -= len(m.MetricName) + copy(dAtA[i:], m.MetricName) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.MetricName))) + i-- + dAtA[i] = 0x12 + if len(m.Dimensions) > 0 { + for iNdEx := len(m.Dimensions) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Dimensions[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *CloudWatchMetricStatMetricDimension) 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 *CloudWatchMetricStatMetricDimension) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CloudWatchMetricStatMetricDimension) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *ClusterAnalysisTemplate) 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 *ClusterAnalysisTemplate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ClusterAnalysisTemplate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *ClusterAnalysisTemplateList) 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 *ClusterAnalysisTemplateList) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ClusterAnalysisTemplateList) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Items) > 0 { + for iNdEx := len(m.Items) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Items[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 } } { @@ -4347,6 +4797,39 @@ func (m *FieldRef) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *GraphiteMetric) 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 *GraphiteMetric) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *GraphiteMetric) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.Query) + copy(dAtA[i:], m.Query) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Query))) + i-- + dAtA[i] = 0x12 + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *IstioDestinationRule) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4405,10 +4888,24 @@ func (m *IstioTrafficRouting) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.DestinationRule != nil { - { - size, err := m.DestinationRule.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { + if len(m.VirtualServices) > 0 { + for iNdEx := len(m.VirtualServices) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.VirtualServices[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if m.DestinationRule != nil { + { + size, err := m.DestinationRule.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } i -= size @@ -4902,6 +5399,30 @@ func (m *MetricProvider) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Graphite != nil { + { + size, err := m.Graphite.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x4a + } + if m.CloudWatch != nil { + { + size, err := m.CloudWatch.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x42 + } if m.Job != nil { { size, err := m.Job.MarshalToSizedBuffer(dAtA[:i]) @@ -7342,6 +7863,104 @@ func (m *CanaryStrategy) Size() (n int) { return n } +func (m *CloudWatchMetric) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Interval) + n += 1 + l + sovGenerated(uint64(l)) + if len(m.MetricDataQueries) > 0 { + for _, e := range m.MetricDataQueries { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } + return n +} + +func (m *CloudWatchMetricDataQuery) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Id) + n += 1 + l + sovGenerated(uint64(l)) + if m.Expression != nil { + l = len(*m.Expression) + n += 1 + l + sovGenerated(uint64(l)) + } + if m.Label != nil { + l = len(*m.Label) + n += 1 + l + sovGenerated(uint64(l)) + } + if m.MetricStat != nil { + l = m.MetricStat.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + if m.Period != nil { + l = m.Period.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + if m.ReturnData != nil { + n += 2 + } + return n +} + +func (m *CloudWatchMetricStat) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Metric.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = m.Period.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Stat) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Unit) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + +func (m *CloudWatchMetricStatMetric) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Dimensions) > 0 { + for _, e := range m.Dimensions { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } + l = len(m.MetricName) + n += 1 + l + sovGenerated(uint64(l)) + if m.Namespace != nil { + l = len(*m.Namespace) + n += 1 + l + sovGenerated(uint64(l)) + } + return n +} + +func (m *CloudWatchMetricStatMetricDimension) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Value) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *ClusterAnalysisTemplate) Size() (n int) { if m == nil { return 0 @@ -7552,6 +8171,19 @@ func (m *FieldRef) Size() (n int) { return n } +func (m *GraphiteMetric) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Query) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *IstioDestinationRule) Size() (n int) { if m == nil { return 0 @@ -7579,6 +8211,12 @@ func (m *IstioTrafficRouting) Size() (n int) { l = m.DestinationRule.Size() n += 1 + l + sovGenerated(uint64(l)) } + if len(m.VirtualServices) > 0 { + for _, e := range m.VirtualServices { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } return n } @@ -7779,6 +8417,14 @@ func (m *MetricProvider) Size() (n int) { l = m.Job.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.CloudWatch != nil { + l = m.CloudWatch.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + if m.Graphite != nil { + l = m.Graphite.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -8771,6 +9417,78 @@ func (this *CanaryStrategy) String() string { }, "") return s } +func (this *CloudWatchMetric) String() string { + if this == nil { + return "nil" + } + repeatedStringForMetricDataQueries := "[]CloudWatchMetricDataQuery{" + for _, f := range this.MetricDataQueries { + repeatedStringForMetricDataQueries += strings.Replace(strings.Replace(f.String(), "CloudWatchMetricDataQuery", "CloudWatchMetricDataQuery", 1), `&`, ``, 1) + "," + } + repeatedStringForMetricDataQueries += "}" + s := strings.Join([]string{`&CloudWatchMetric{`, + `Interval:` + fmt.Sprintf("%v", this.Interval) + `,`, + `MetricDataQueries:` + repeatedStringForMetricDataQueries + `,`, + `}`, + }, "") + return s +} +func (this *CloudWatchMetricDataQuery) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&CloudWatchMetricDataQuery{`, + `Id:` + fmt.Sprintf("%v", this.Id) + `,`, + `Expression:` + valueToStringGenerated(this.Expression) + `,`, + `Label:` + valueToStringGenerated(this.Label) + `,`, + `MetricStat:` + strings.Replace(this.MetricStat.String(), "CloudWatchMetricStat", "CloudWatchMetricStat", 1) + `,`, + `Period:` + strings.Replace(fmt.Sprintf("%v", this.Period), "IntOrString", "intstr.IntOrString", 1) + `,`, + `ReturnData:` + valueToStringGenerated(this.ReturnData) + `,`, + `}`, + }, "") + return s +} +func (this *CloudWatchMetricStat) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&CloudWatchMetricStat{`, + `Metric:` + strings.Replace(strings.Replace(this.Metric.String(), "CloudWatchMetricStatMetric", "CloudWatchMetricStatMetric", 1), `&`, ``, 1) + `,`, + `Period:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Period), "IntOrString", "intstr.IntOrString", 1), `&`, ``, 1) + `,`, + `Stat:` + fmt.Sprintf("%v", this.Stat) + `,`, + `Unit:` + fmt.Sprintf("%v", this.Unit) + `,`, + `}`, + }, "") + return s +} +func (this *CloudWatchMetricStatMetric) String() string { + if this == nil { + return "nil" + } + repeatedStringForDimensions := "[]CloudWatchMetricStatMetricDimension{" + for _, f := range this.Dimensions { + repeatedStringForDimensions += strings.Replace(strings.Replace(f.String(), "CloudWatchMetricStatMetricDimension", "CloudWatchMetricStatMetricDimension", 1), `&`, ``, 1) + "," + } + repeatedStringForDimensions += "}" + s := strings.Join([]string{`&CloudWatchMetricStatMetric{`, + `Dimensions:` + repeatedStringForDimensions + `,`, + `MetricName:` + fmt.Sprintf("%v", this.MetricName) + `,`, + `Namespace:` + valueToStringGenerated(this.Namespace) + `,`, + `}`, + }, "") + return s +} +func (this *CloudWatchMetricStatMetricDimension) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&CloudWatchMetricStatMetricDimension{`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, + `Value:` + fmt.Sprintf("%v", this.Value) + `,`, + `}`, + }, "") + return s +} func (this *ClusterAnalysisTemplate) String() string { if this == nil { return "nil" @@ -8949,6 +9667,17 @@ func (this *FieldRef) String() string { }, "") return s } +func (this *GraphiteMetric) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&GraphiteMetric{`, + `Address:` + fmt.Sprintf("%v", this.Address) + `,`, + `Query:` + fmt.Sprintf("%v", this.Query) + `,`, + `}`, + }, "") + return s +} func (this *IstioDestinationRule) String() string { if this == nil { return "nil" @@ -8965,9 +9694,15 @@ func (this *IstioTrafficRouting) String() string { if this == nil { return "nil" } + repeatedStringForVirtualServices := "[]IstioVirtualService{" + for _, f := range this.VirtualServices { + repeatedStringForVirtualServices += strings.Replace(strings.Replace(f.String(), "IstioVirtualService", "IstioVirtualService", 1), `&`, ``, 1) + "," + } + repeatedStringForVirtualServices += "}" s := strings.Join([]string{`&IstioTrafficRouting{`, `VirtualService:` + strings.Replace(strings.Replace(this.VirtualService.String(), "IstioVirtualService", "IstioVirtualService", 1), `&`, ``, 1) + `,`, `DestinationRule:` + strings.Replace(this.DestinationRule.String(), "IstioDestinationRule", "IstioDestinationRule", 1) + `,`, + `VirtualServices:` + repeatedStringForVirtualServices + `,`, `}`, }, "") return s @@ -9102,6 +9837,8 @@ func (this *MetricProvider) String() string { `Wavefront:` + strings.Replace(this.Wavefront.String(), "WavefrontMetric", "WavefrontMetric", 1) + `,`, `NewRelic:` + strings.Replace(this.NewRelic.String(), "NewRelicMetric", "NewRelicMetric", 1) + `,`, `Job:` + strings.Replace(this.Job.String(), "JobMetric", "JobMetric", 1) + `,`, + `CloudWatch:` + strings.Replace(this.CloudWatch.String(), "CloudWatchMetric", "CloudWatchMetric", 1) + `,`, + `Graphite:` + strings.Replace(this.Graphite.String(), "GraphiteMetric", "GraphiteMetric", 1) + `,`, `}`, }, "") return s @@ -12908,7 +13645,783 @@ func (m *CanaryStrategy) Unmarshal(dAtA []byte) error { if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ScaleDownDelayRevisionLimit", wireType) } - var v int32 + var v int32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ScaleDownDelayRevisionLimit = &v + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AbortScaleDownDelaySeconds", wireType) + } + var v int32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AbortScaleDownDelaySeconds = &v + 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 *CloudWatchMetric) 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: CloudWatchMetric: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CloudWatchMetric: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Interval", 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.Interval = DurationString(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MetricDataQueries", 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 + } + m.MetricDataQueries = append(m.MetricDataQueries, CloudWatchMetricDataQuery{}) + if err := m.MetricDataQueries[len(m.MetricDataQueries)-1].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 *CloudWatchMetricDataQuery) 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: CloudWatchMetricDataQuery: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CloudWatchMetricDataQuery: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Id", 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.Id = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Expression", 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 + } + s := string(dAtA[iNdEx:postIndex]) + m.Expression = &s + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Label", 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 + } + s := string(dAtA[iNdEx:postIndex]) + m.Label = &s + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MetricStat", 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.MetricStat == nil { + m.MetricStat = &CloudWatchMetricStat{} + } + if err := m.MetricStat.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Period", 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.Period == nil { + m.Period = &intstr.IntOrString{} + } + if err := m.Period.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ReturnData", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + b := bool(v != 0) + m.ReturnData = &b + 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 *CloudWatchMetricStat) 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: CloudWatchMetricStat: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CloudWatchMetricStat: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metric", 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 err := m.Metric.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Period", 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 err := m.Period.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Stat", 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.Stat = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Unit", 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.Unit = string(dAtA[iNdEx:postIndex]) + 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 *CloudWatchMetricStatMetric) 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: CloudWatchMetricStatMetric: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CloudWatchMetricStatMetric: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Dimensions", 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 + } + m.Dimensions = append(m.Dimensions, CloudWatchMetricStatMetricDimension{}) + if err := m.Dimensions[len(m.Dimensions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MetricName", 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.MetricName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Namespace", 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 + } + s := string(dAtA[iNdEx:postIndex]) + m.Namespace = &s + 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 *CloudWatchMetricStatMetricDimension) 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: CloudWatchMetricStatMetricDimension: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CloudWatchMetricStatMetricDimension: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -12918,17 +14431,29 @@ func (m *CanaryStrategy) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int32(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - m.ScaleDownDelayRevisionLimit = &v - case 13: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AbortScaleDownDelaySeconds", wireType) + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated } - var v int32 + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -12938,12 +14463,24 @@ func (m *CanaryStrategy) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int32(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - m.AbortScaleDownDelaySeconds = &v + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -14732,6 +16269,120 @@ func (m *FieldRef) Unmarshal(dAtA []byte) error { } return nil } +func (m *GraphiteMetric) 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: GraphiteMetric: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GraphiteMetric: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", 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.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Query", 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.Query = string(dAtA[iNdEx:postIndex]) + 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 *IstioDestinationRule) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -14976,6 +16627,40 @@ func (m *IstioTrafficRouting) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field VirtualServices", 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 + } + m.VirtualServices = append(m.VirtualServices, IstioVirtualService{}) + if err := m.VirtualServices[len(m.VirtualServices)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -16855,6 +18540,78 @@ func (m *MetricProvider) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CloudWatch", 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.CloudWatch == nil { + m.CloudWatch = &CloudWatchMetric{} + } + if err := m.CloudWatch.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Graphite", 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.Graphite == nil { + m.Graphite = &GraphiteMetric{} + } + if err := m.Graphite.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + 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 57bb663d99..9c03da7d36 100644 --- a/pkg/apis/rollouts/v1alpha1/generated.proto +++ b/pkg/apis/rollouts/v1alpha1/generated.proto @@ -393,6 +393,52 @@ message CanaryStrategy { optional int32 abortScaleDownDelaySeconds = 13; } +// CloudWatchMetric defines the cloudwatch query to perform canary analysis +message CloudWatchMetric { + optional string interval = 1; + + repeated CloudWatchMetricDataQuery metricDataQueries = 2; +} + +// CloudWatchMetricDataQuery defines the cloudwatch query +message CloudWatchMetricDataQuery { + optional string id = 1; + + optional string expression = 2; + + optional string label = 3; + + optional CloudWatchMetricStat metricStat = 4; + + optional k8s.io.apimachinery.pkg.util.intstr.IntOrString period = 5; + + optional bool returnData = 6; +} + +message CloudWatchMetricStat { + optional CloudWatchMetricStatMetric metric = 1; + + optional k8s.io.apimachinery.pkg.util.intstr.IntOrString period = 2; + + optional string stat = 3; + + optional string unit = 4; +} + +message CloudWatchMetricStatMetric { + repeated CloudWatchMetricStatMetricDimension dimensions = 1; + + optional string metricName = 2; + + optional string namespace = 3; +} + +message CloudWatchMetricStatMetricDimension { + optional string name = 1; + + optional string value = 2; +} + // ClusterAnalysisTemplate holds the template for performing canary analysis // +genclient // +genclient:nonNamespaced @@ -564,6 +610,15 @@ message FieldRef { optional string fieldPath = 1; } +// GraphiteMetric defines the Graphite query to perform canary analysis +message GraphiteMetric { + // Address is the HTTP address and port of the Graphite server + optional string address = 1; + + // Query is a raw Graphite query to perform + optional string query = 2; +} + // IstioDestinationRule is a reference to an Istio DestinationRule to modify and shape traffic message IstioDestinationRule { // Name holds the name of the DestinationRule @@ -583,6 +638,9 @@ message IstioTrafficRouting { // DestinationRule references an Istio DestinationRule to modify to shape traffic optional IstioDestinationRule destinationRule = 2; + + // VirtualServices references a list of Istio VirtualService to modify to shape traffic + repeated IstioVirtualService virtualServices = 3; } // IstioVirtualService holds information on the virtual service the rollout needs to modify @@ -730,6 +788,12 @@ message MetricProvider { // Job specifies the job metric run optional JobMetric job = 7; + + // CloudWatch specifies the cloudWatch metric to query + optional CloudWatchMetric cloudWatch = 8; + + // Graphite specifies the Graphite metric to query + optional GraphiteMetric graphite = 9; } // MetricResult contain a list of the most recent measurements for a single metric along with diff --git a/pkg/apis/rollouts/v1alpha1/openapi_generated.go b/pkg/apis/rollouts/v1alpha1/openapi_generated.go index c505fadc1b..5bec1c2d29 100644 --- a/pkg/apis/rollouts/v1alpha1/openapi_generated.go +++ b/pkg/apis/rollouts/v1alpha1/openapi_generated.go @@ -48,6 +48,11 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CanaryStatus": schema_pkg_apis_rollouts_v1alpha1_CanaryStatus(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CanaryStep": schema_pkg_apis_rollouts_v1alpha1_CanaryStep(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CanaryStrategy": schema_pkg_apis_rollouts_v1alpha1_CanaryStrategy(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetric": schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetric(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricDataQuery": schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricDataQuery(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStat": schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricStat(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStatMetric": schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricStatMetric(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStatMetricDimension": schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricStatMetricDimension(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.ClusterAnalysisTemplate": schema_pkg_apis_rollouts_v1alpha1_ClusterAnalysisTemplate(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.ClusterAnalysisTemplateList": schema_pkg_apis_rollouts_v1alpha1_ClusterAnalysisTemplateList(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DatadogMetric": schema_pkg_apis_rollouts_v1alpha1_DatadogMetric(ref), @@ -59,6 +64,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.ExperimentSpec": schema_pkg_apis_rollouts_v1alpha1_ExperimentSpec(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.ExperimentStatus": schema_pkg_apis_rollouts_v1alpha1_ExperimentStatus(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.FieldRef": schema_pkg_apis_rollouts_v1alpha1_FieldRef(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.GraphiteMetric": schema_pkg_apis_rollouts_v1alpha1_GraphiteMetric(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.IstioDestinationRule": schema_pkg_apis_rollouts_v1alpha1_IstioDestinationRule(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.IstioTrafficRouting": schema_pkg_apis_rollouts_v1alpha1_IstioTrafficRouting(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.IstioVirtualService": schema_pkg_apis_rollouts_v1alpha1_IstioVirtualService(ref), @@ -1036,6 +1042,191 @@ func schema_pkg_apis_rollouts_v1alpha1_CanaryStrategy(ref common.ReferenceCallba } } +func schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetric(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CloudWatchMetric defines the cloudwatch query to perform canary analysis", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "interval": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "metricDataQueries": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricDataQuery"), + }, + }, + }, + }, + }, + }, + Required: []string{"metricDataQueries"}, + }, + }, + Dependencies: []string{ + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricDataQuery"}, + } +} + +func schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricDataQuery(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CloudWatchMetricDataQuery defines the cloudwatch query", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "id": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "expression": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "label": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "metricStat": { + SchemaProps: spec.SchemaProps{ + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStat"), + }, + }, + "period": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "returnData": { + SchemaProps: spec.SchemaProps{ + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStat", "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + } +} + +func schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricStat(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "metric": { + SchemaProps: spec.SchemaProps{ + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStatMetric"), + }, + }, + "period": { + SchemaProps: spec.SchemaProps{ + Default: map[string]interface{}{}, + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "stat": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "unit": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStatMetric", "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + } +} + +func schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricStatMetric(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "dimensions": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStatMetricDimension"), + }, + }, + }, + }, + }, + "metricName": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetricStatMetricDimension"}, + } +} + +func schema_pkg_apis_rollouts_v1alpha1_CloudWatchMetricStatMetricDimension(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + } +} + func schema_pkg_apis_rollouts_v1alpha1_ClusterAnalysisTemplate(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -1603,6 +1794,33 @@ func schema_pkg_apis_rollouts_v1alpha1_FieldRef(ref common.ReferenceCallback) co } } +func schema_pkg_apis_rollouts_v1alpha1_GraphiteMetric(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GraphiteMetric defines the Graphite query to perform canary analysis", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "address": { + SchemaProps: spec.SchemaProps{ + Description: "Address is the HTTP address and port of the Graphite server", + Type: []string{"string"}, + Format: "", + }, + }, + "query": { + SchemaProps: spec.SchemaProps{ + Description: "Query is a raw Graphite query to perform", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + } +} + func schema_pkg_apis_rollouts_v1alpha1_IstioDestinationRule(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -1661,8 +1879,21 @@ func schema_pkg_apis_rollouts_v1alpha1_IstioTrafficRouting(ref common.ReferenceC Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.IstioDestinationRule"), }, }, + "virtualServices": { + SchemaProps: spec.SchemaProps{ + Description: "VirtualServices references a list of Istio VirtualService to modify to shape traffic", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.IstioVirtualService"), + }, + }, + }, + }, + }, }, - Required: []string{"virtualService"}, }, }, Dependencies: []string{ @@ -2092,11 +2323,23 @@ func schema_pkg_apis_rollouts_v1alpha1_MetricProvider(ref common.ReferenceCallba Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.JobMetric"), }, }, + "cloudWatch": { + SchemaProps: spec.SchemaProps{ + Description: "CloudWatch specifies the cloudWatch metric to query", + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetric"), + }, + }, + "graphite": { + SchemaProps: spec.SchemaProps{ + Description: "Graphite specifies the Graphite metric to query", + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.GraphiteMetric"), + }, + }, }, }, }, Dependencies: []string{ - "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DatadogMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.JobMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.KayentaMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.NewRelicMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PrometheusMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.WavefrontMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.WebMetric"}, + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.CloudWatchMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DatadogMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.GraphiteMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.JobMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.KayentaMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.NewRelicMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.PrometheusMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.WavefrontMetric", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.WebMetric"}, } } diff --git a/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go index 9993aa28e7..e38d2b584d 100644 --- a/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go @@ -1046,6 +1046,22 @@ func (in *FieldRef) DeepCopy() *FieldRef { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *GraphiteMetric) DeepCopyInto(out *GraphiteMetric) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GraphiteMetric. +func (in *GraphiteMetric) DeepCopy() *GraphiteMetric { + if in == nil { + return nil + } + out := new(GraphiteMetric) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IstioDestinationRule) DeepCopyInto(out *IstioDestinationRule) { *out = *in @@ -1308,6 +1324,11 @@ func (in *MetricProvider) DeepCopyInto(out *MetricProvider) { *out = new(CloudWatchMetric) (*in).DeepCopyInto(*out) } + if in.Graphite != nil { + in, out := &in.Graphite, &out.Graphite + *out = new(GraphiteMetric) + **out = **in + } return }