diff --git a/assets/components/contour/Chart.yaml b/assets/components/contour/Chart.yaml index a142894d6..c77c36af9 100644 --- a/assets/components/contour/Chart.yaml +++ b/assets/components/contour/Chart.yaml @@ -13,11 +13,11 @@ type: application # This is the chart version. This version number is incremented each time changes are made # to the chart and its templates, including the app version. -version: 0.2.0 +version: 0.3.0 # This is the version number of the upstream Contour # https://github.com/projectcontour/contour/releases -appVersion: v1.5.0 +appVersion: v1.7.0 description: Contour is a Kubernetes ingress controller using Lyft's Envoy proxy. home: https://projectcontour.io/ diff --git a/assets/components/contour/crds/01-crds.yaml b/assets/components/contour/crds/01-crds.yaml index a27c95920..f3e539d13 100644 --- a/assets/components/contour/crds/01-crds.yaml +++ b/assets/components/contour/crds/01-crds.yaml @@ -1,457 +1,6 @@ --- apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.2.9 - creationTimestamp: null - name: ingressroutes.contour.heptio.com -spec: - additionalPrinterColumns: - - JSONPath: .spec.virtualhost.fqdn - description: Fully qualified domain name - name: FQDN - type: string - - JSONPath: .spec.virtualhost.tls.secretName - description: Secret with TLS credentials - name: TLS Secret - type: string - - JSONPath: .spec.routes[0].match - description: First routes defined - name: First route - type: string - - JSONPath: .status.currentStatus - description: The current status of the HTTPProxy - name: Status - type: string - - JSONPath: .status.description - description: Description of the current status - name: Status Description - type: string - group: contour.heptio.com - names: - kind: IngressRoute - listKind: IngressRouteList - plural: ingressroutes - singular: ingressroute - scope: Namespaced - subresources: {} - validation: - openAPIV3Schema: - description: IngressRoute is an Ingress CRD specificiation - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: IngressRouteSpec defines the spec of the CRD - properties: - routes: - description: Routes are the ingress routes. If TCPProxy is present, - Routes is ignored. - items: - description: Route contains the set of routes for a virtual host - properties: - delegate: - description: Delegate specifies that this route should be delegated - to another IngressRoute - properties: - name: - description: Name of the IngressRoute - type: string - namespace: - description: Namespace of the IngressRoute. Defaults to the - current namespace if not supplied. - type: string - required: - - name - type: object - enableWebsockets: - description: Enables websocket support for the route - type: boolean - match: - description: Match defines the prefix match - type: string - permitInsecure: - description: Allow this path to respond to insecure requests over - HTTP which are normally not permitted when a `virtualhost.tls` - block is present. - type: boolean - prefixRewrite: - description: Indicates that during forwarding, the matched prefix - (or path) should be swapped with this value - type: string - retryPolicy: - description: The retry policy for this route - properties: - count: - description: NumRetries is maximum allowed number of retries. - If not supplied, the number of retries is one. - format: int64 - minimum: 0 - type: integer - perTryTimeout: - description: PerTryTimeout specifies the timeout per retry - attempt. Ignored if NumRetries is not supplied. - type: string - type: object - services: - description: Services are the services to proxy traffic - items: - description: Service defines an upstream to proxy traffic to - properties: - healthCheck: - description: HealthCheck defines optional healthchecks on - the upstream service - properties: - healthyThresholdCount: - description: The number of healthy health checks required - before a host is marked healthy - format: int64 - minimum: 0 - type: integer - host: - description: The value of the host header in the HTTP - health check request. If left empty (default value), - the name "contour-envoy-healthcheck" will be used. - type: string - intervalSeconds: - description: The interval (seconds) between health checks - format: int64 - type: integer - path: - description: HTTP endpoint used to perform health checks - on upstream service - type: string - timeoutSeconds: - description: The time to wait (seconds) for a health - check response - format: int64 - type: integer - unhealthyThresholdCount: - description: The number of unhealthy health checks required - before a host is marked unhealthy - format: int64 - minimum: 0 - type: integer - required: - - path - type: object - name: - description: Name is the name of Kubernetes service to proxy - traffic. Names defined here will be used to look up corresponding - endpoints which contain the ips to route. - type: string - port: - description: Port (defined as Integer) to proxy traffic - to since a service can have multiple defined - type: integer - strategy: - description: LB Algorithm to apply (see https://github.com/projectcontour/contour/blob/master/design/ingressroute-design.md#load-balancing) - type: string - validation: - description: UpstreamValidation defines how to verify the - backend service's certificate - properties: - caSecret: - description: Name of the Kubernetes secret be used to - validate the certificate presented by the backend - type: string - subjectName: - description: Key which is expected to be present in - the 'subjectAltName' of the presented certificate - type: string - required: - - caSecret - - subjectName - type: object - weight: - description: Weight defines percentage of traffic to balance - traffic - format: int64 - minimum: 0 - type: integer - required: - - name - - port - type: object - type: array - timeoutPolicy: - description: The timeout policy for this route - properties: - request: - description: Timeout for receiving a response from the server - after processing a request from client. If not supplied - the timeout duration is undefined. - type: string - type: object - required: - - match - type: object - type: array - tcpproxy: - description: TCPProxy holds TCP proxy information. - properties: - delegate: - description: Delegate specifies that this tcpproxy should be delegated - to another IngressRoute - properties: - name: - description: Name of the IngressRoute - type: string - namespace: - description: Namespace of the IngressRoute. Defaults to the - current namespace if not supplied. - type: string - required: - - name - type: object - services: - description: Services are the services to proxy traffic - items: - description: Service defines an upstream to proxy traffic to - properties: - healthCheck: - description: HealthCheck defines optional healthchecks on - the upstream service - properties: - healthyThresholdCount: - description: The number of healthy health checks required - before a host is marked healthy - format: int64 - minimum: 0 - type: integer - host: - description: The value of the host header in the HTTP - health check request. If left empty (default value), - the name "contour-envoy-healthcheck" will be used. - type: string - intervalSeconds: - description: The interval (seconds) between health checks - format: int64 - type: integer - path: - description: HTTP endpoint used to perform health checks - on upstream service - type: string - timeoutSeconds: - description: The time to wait (seconds) for a health check - response - format: int64 - type: integer - unhealthyThresholdCount: - description: The number of unhealthy health checks required - before a host is marked unhealthy - format: int64 - minimum: 0 - type: integer - required: - - path - type: object - name: - description: Name is the name of Kubernetes service to proxy - traffic. Names defined here will be used to look up corresponding - endpoints which contain the ips to route. - type: string - port: - description: Port (defined as Integer) to proxy traffic to - since a service can have multiple defined - type: integer - strategy: - description: LB Algorithm to apply (see https://github.com/projectcontour/contour/blob/master/design/ingressroute-design.md#load-balancing) - type: string - validation: - description: UpstreamValidation defines how to verify the - backend service's certificate - properties: - caSecret: - description: Name of the Kubernetes secret be used to - validate the certificate presented by the backend - type: string - subjectName: - description: Key which is expected to be present in the - 'subjectAltName' of the presented certificate - type: string - required: - - caSecret - - subjectName - type: object - weight: - description: Weight defines percentage of traffic to balance - traffic - format: int64 - minimum: 0 - type: integer - required: - - name - - port - type: object - type: array - type: object - virtualhost: - description: Virtualhost appears at most once. If it is present, the - object is considered to be a "root". - properties: - fqdn: - description: The fully qualified domain name of the root of the - ingress tree all leaves of the DAG rooted at this object relate - to the fqdn - type: string - tls: - description: If present describes tls properties. The SNI names - that will be matched on are described in fqdn, the tls.secretName - secret must contain a matching certificate - properties: - minimumProtocolVersion: - description: Minimum TLS version this vhost should negotiate - type: string - passthrough: - description: If Passthrough is set to true, the SecretName will - be ignored and the encrypted handshake will be passed through - to the backing cluster. - type: boolean - secretName: - description: required, the name of a secret in the current namespace - type: string - type: object - required: - - fqdn - type: object - type: object - status: - description: Status reports the current state of the HTTPProxy. - properties: - currentStatus: - type: string - description: - type: string - loadBalancer: - description: LoadBalancer contains the current status of the load balancer. - properties: - ingress: - description: Ingress is a list containing ingress points for the - load-balancer. Traffic intended for the service should be sent - to these ingress points. - items: - description: 'LoadBalancerIngress represents the status of a load-balancer - ingress point: traffic intended for the service should be sent - to an ingress point.' - properties: - hostname: - description: Hostname is set for load-balancer ingress points - that are DNS based (typically AWS load-balancers) - type: string - ip: - description: IP is set for load-balancer ingress points that - are IP based (typically GCE or OpenStack load-balancers) - type: string - type: object - type: array - type: object - type: object - required: - - metadata - - spec - type: object - version: v1beta1 - versions: - - name: v1beta1 - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -apiVersion: apiextensions.k8s.io/v1beta1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.2.9 - creationTimestamp: null - name: tlscertificatedelegations.contour.heptio.com -spec: - group: contour.heptio.com - names: - kind: TLSCertificateDelegation - listKind: TLSCertificateDelegationList - plural: tlscertificatedelegations - singular: tlscertificatedelegation - scope: Namespaced - validation: - openAPIV3Schema: - description: TLSCertificateDelegation is an TLS Certificate Delegation CRD specificiation. - See design/tls-certificate-delegation.md for details. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: TLSCertificateDelegationSpec defines the spec of the CRD - properties: - delegations: - items: - description: CertificateDelegation maps the authority to reference - a secret in the current namespace to a set of namespaces. - properties: - secretName: - description: required, the name of a secret in the current namespace. - type: string - targetNamespaces: - description: required, the namespaces the authority to reference - the the secret will be delegated to. If TargetNamespaces is - nil or empty, the CertificateDelegation' is ignored. If the - TargetNamespace list contains the character, "*" the secret - will be delegated to all namespaces. - items: - type: string - type: array - required: - - secretName - - targetNamespaces - type: object - type: array - required: - - delegations - type: object - required: - - metadata - - spec - type: object - version: v1beta1 - versions: - - name: v1beta1 - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -apiVersion: apiextensions.k8s.io/v1beta1 -kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.2.9 @@ -489,7 +38,7 @@ spec: status: {} validation: openAPIV3Schema: - description: HTTPProxy is an Ingress CRD specification + description: HTTPProxy is an Ingress CRD specification. properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation @@ -508,17 +57,21 @@ spec: properties: includes: description: Includes allow for specific routing configuration to be - appended to another HTTPProxy in another namespace. + included from another HTTPProxy, possibly in another namespace. items: description: Include describes a set of policies that can be applied to an HTTPProxy in a namespace. properties: conditions: - description: Conditions are a set of routing properties that is - applied to an HTTPProxy in a namespace. + description: 'Conditions are a set of rules that are applied to + included HTTPProxies. In effect, they are added onto the Conditions + of included HTTPProxy Route structs. When applied, they are + merged using AND, with one exception: There can be only one + Prefix MatchCondition per Conditions slice. More than one Prefix, + or contradictory Conditions, will make the include invalid.' items: - description: Condition are policies that are applied on top - of HTTPProxies. One of Prefix or Header must be provided. + description: MatchCondition are a general holder for matching + rules for HTTPProxies. One of Prefix or Header must be provided. properties: header: description: Header specifies the header condition to match. @@ -576,11 +129,14 @@ spec: description: Route contains the set of routes for a virtual host. properties: conditions: - description: Conditions are a set of routing properties that is - applied to an HTTPProxy in a namespace. + description: 'Conditions are a set of rules that are applied to + a Route. When applied, they are merged using AND, with one exception: + There can be only one Prefix MatchCondition per Conditions slice. + More than one Prefix, or contradictory Conditions, will make + the route invalid.' items: - description: Condition are policies that are applied on top - of HTTPProxies. One of Prefix or Header must be provided. + description: MatchCondition are a general holder for matching + rules for HTTPProxies. One of Prefix or Header must be provided. properties: header: description: Header specifies the header condition to match. @@ -684,8 +240,8 @@ spec: prefix: description: "Prefix specifies the URL path prefix to be replaced. \n If Prefix is specified, it must exactly - match the Condition prefix that is rendered by the - chain of including HTTPProxies and only that path + match the MatchCondition prefix that is rendered by + the chain of including HTTPProxies and only that path prefix will be replaced by Replacement. This allows HTTPProxies that are included through multiple roots to only replace specific path prefixes, leaving others @@ -788,6 +344,42 @@ spec: description: PerTryTimeout specifies the timeout per retry attempt. Ignored if NumRetries is not supplied. type: string + retriableStatusCodes: + description: "RetriableStatusCodes specifies the HTTP status + codes that should be retried. \n This field is only respected + when you include `retriable-status-codes` in the `RetryOn` + field." + items: + format: int32 + type: integer + type: array + retryOn: + description: "RetryOn specifies the conditions on which to + retry a request. \n Supported [HTTP conditions](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-on): + \n - `5xx` - `gateway-error` - `reset` - `connect-failure` + - `retriable-4xx` - `refused-stream` - `retriable-status-codes` + - `retriable-headers` \n Supported [gRPC conditions](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-grpc-on): + \n - `cancelled` - `deadline-exceeded` - `internal` - `resource-exhausted` + - `unavailable`" + items: + description: RetryOn is a string type alias with validation + to ensure that the value is valid. + enum: + - 5xx + - gateway-error + - reset + - connect-failure + - retriable-4xx + - refused-stream + - retriable-status-codes + - retriable-headers + - cancelled + - deadline-exceeded + - internal + - resource-exhausted + - unavailable + type: string + type: array type: object services: description: Services are the services to proxy traffic. @@ -807,6 +399,9 @@ spec: port: description: Port (defined as Integer) to proxy traffic to since a service can have multiple defined. + exclusiveMaximum: true + maximum: 65536 + minimum: 1 type: integer protocol: description: Protocol may be used to specify (or override) @@ -921,12 +516,14 @@ spec: description: Timeout after which, if there are no active requests for this route, the connection between Envoy and the backend or Envoy and the external client will be closed. If not - specified, there is no per-route idle timeout. + specified, there is no per-route idle timeout, though a + connection manager-wide stream_idle_timeout default of 5m + still applies. type: string response: description: Timeout for receiving a response from the server after processing a request from client. If not supplied, - the timeout duration is undefined. + Envoy's default value of 15s applies. type: string type: object required: @@ -1017,6 +614,9 @@ spec: port: description: Port (defined as Integer) to proxy traffic to since a service can have multiple defined. + exclusiveMaximum: true + maximum: 65536 + minimum: 1 type: integer protocol: description: Protocol may be used to specify (or override) @@ -1122,24 +722,22 @@ spec: - name - port type: object - minItems: 1 type: array - required: - - services type: object virtualhost: description: Virtualhost appears at most once. If it is present, the - object is considered to be a "root". + object is considered to be a "root" HTTPProxy. properties: fqdn: description: The fully qualified domain name of the root of the ingress tree all leaves of the DAG rooted at this object relate - to the fqdn + to the fqdn. type: string tls: description: If present describes tls properties. The SNI names that will be matched on are described in fqdn, the tls.secretName - secret must contain a matching certificate + secret must contain a certificate that itself contains a name + that matches the FQDN. properties: clientValidation: description: "ClientValidation defines how to verify the client @@ -1180,8 +778,205 @@ spec: type: object type: object status: - description: Status reports the current state of the HTTPProxy. + description: Status is a container for computed information about the HTTPProxy. properties: + conditions: + description: "Conditions contains information about the current status + of the HTTPProxy, in an upstream-friendly container. \n Contour will + update a single condition, `Valid`, that is in normal-true polarity. + That is, when `currentStatus` is `valid`, the `Valid` condition will + be `status: true`, and vice versa. \n Contour will leave untouched + any other Conditions set in this block, in case some other controller + wants to add a Condition. \n If you are another controller owner and + wish to add a condition, you *should* namespace your condition with + a label, like `controller.domain.com/ConditionName`." + items: + description: "DetailedCondition is an extension of the normal Kubernetes + conditions, with two extra fields to hold sub-conditions, which + provide more detailed reasons for the state (True or False) of the + condition. \n `errors` holds information about sub-conditions which + are fatal to that condition and render its state False. \n `warnings` + holds information about sub-conditions which are not fatal to that + condition and do not force the state to be False. \n Remember that + Conditions have a type, a status, and a reason. \n The type is the + type of the condition, the most important one in this CRD set is + `Valid`. \n In the case of `Valid`, `status: true` means that the + object is has been ingested into Contour with no errors. `warnings` + may still be present, and will be indicated in the Reason field. + \n `Valid`, `status: false` means that the object has had one or + more fatal errors during processing into Contour. The details of + the errors will be present under the `errors` field. \n There should + never be subconditions under `errors` when `status` is `true`." + properties: + errors: + description: "Errors contains a slice of relevant error subconditions + for this object. \n Subconditions are expected to appear when + relevant (when there is a error), and disappear when not relevant. + An empty slice here indicates no errors." + items: + description: "SubCondition is a Condition-like type intended + for use as a subcondition inside a DetailedCondition. \n It + contains a subset of the Condition fields. \n It is intended + for warnings and errors, so `type` names should use abnormal-true + polarity, that is, they should be of the form \"ErrorPresent: + true\". \n The expected lifecycle for these errors is that + they should only be present when the error or warning is, + and should be removed when they are not relevant." + properties: + message: + description: "Message is a human readable message indicating + details about the transition. \n This may be an empty + string." + maxLength: 32768 + type: string + reason: + description: "Reason contains a programmatic identifier + indicating the reason for the condition's last transition. + Producers of specific condition types may define expected + values and meanings for this field, and whether the values + are considered a guaranteed API. \n The value should be + a CamelCase string. \n This field may not be empty." + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: Status of the condition, one of True, False, + Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: "Type of condition in `CamelCase` or in `foo.example.com/CamelCase`. + \n This must be in abnormal-true polarity, that is, `ErrorFound` + or `controller.io/ErrorFound`. \n The regex it matches + is (dns1123SubdomainFmt/)?(qualifiedNameFmt)" + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - message + - reason + - status + - type + type: object + type: array + lastTransitionTime: + description: "lastTransitionTime is the last time the condition + transitioned from one status to another. \n This should be when + the underlying condition changed. If that is not known, then + using the time when the API field changed is acceptable." + format: date-time + type: string + message: + description: "message is a human readable message indicating details + about the transition. \n This may be an empty string." + maxLength: 32768 + type: string + observedGeneration: + description: "observedGeneration represents the .metadata.generation + that the condition was set based upon. \n For instance, if .metadata.generation + is currently 12, but the .status.conditions[x].observedGeneration + is 9, the condition is out of date with respect to the current + state of the instance." + format: int64 + minimum: 0 + type: integer + reason: + description: "Reason contains a programmatic identifier indicating + the reason for the condition's last transition. \n Producers + of specific condition types may define expected values and meanings + for this field, and whether the values are considered a guaranteed + API. \n The value should be a CamelCase string. \n This field + may not be empty." + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: "Type of condition in CamelCase or in foo.example.com/CamelCase. + \n Many .condition.type values are consistent across resources + like Available, but because arbitrary conditions can be useful + (see .node.status.conditions), the ability to deconflict is + important. \n The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)" + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + warnings: + description: "Warnings contains a slice of relevant warning subconditions + for this object. \n Subconditions are expected to appear when + relevant (when there is a warning), and disappear when not relevant. + An empty slice here indicates no warnings." + items: + description: "SubCondition is a Condition-like type intended + for use as a subcondition inside a DetailedCondition. \n It + contains a subset of the Condition fields. \n It is intended + for warnings and errors, so `type` names should use abnormal-true + polarity, that is, they should be of the form \"ErrorPresent: + true\". \n The expected lifecycle for these errors is that + they should only be present when the error or warning is, + and should be removed when they are not relevant." + properties: + message: + description: "Message is a human readable message indicating + details about the transition. \n This may be an empty + string." + maxLength: 32768 + type: string + reason: + description: "Reason contains a programmatic identifier + indicating the reason for the condition's last transition. + Producers of specific condition types may define expected + values and meanings for this field, and whether the values + are considered a guaranteed API. \n The value should be + a CamelCase string. \n This field may not be empty." + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: Status of the condition, one of True, False, + Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: "Type of condition in `CamelCase` or in `foo.example.com/CamelCase`. + \n This must be in abnormal-true polarity, that is, `ErrorFound` + or `controller.io/ErrorFound`. \n The regex it matches + is (dns1123SubdomainFmt/)?(qualifiedNameFmt)" + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - message + - reason + - status + - type + type: object + type: array + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map currentStatus: type: string description: @@ -1243,6 +1038,8 @@ spec: - tlscerts singular: tlscertificatedelegation scope: Namespaced + subresources: + status: {} validation: openAPIV3Schema: description: TLSCertificateDelegation is an TLS Certificate Delegation CRD specificiation. @@ -1288,6 +1085,208 @@ spec: required: - delegations type: object + status: + description: TLSCertificateDelegationStatus allows for the status of the + delegation to be presented to the user. + properties: + conditions: + description: "Conditions contains information about the current status + of the HTTPProxy, in an upstream-friendly container. \n Contour will + update a single condition, `Valid`, that is in normal-true polarity. + That is, when `currentStatus` is `valid`, the `Valid` condition will + be `status: true`, and vice versa. \n Contour will leave untouched + any other Conditions set in this block, in case some other controller + wants to add a Condition. \n If you are another controller owner and + wish to add a condition, you *should* namespace your condition with + a label, like `controller.domain.com\\ConditionName`." + items: + description: "DetailedCondition is an extension of the normal Kubernetes + conditions, with two extra fields to hold sub-conditions, which + provide more detailed reasons for the state (True or False) of the + condition. \n `errors` holds information about sub-conditions which + are fatal to that condition and render its state False. \n `warnings` + holds information about sub-conditions which are not fatal to that + condition and do not force the state to be False. \n Remember that + Conditions have a type, a status, and a reason. \n The type is the + type of the condition, the most important one in this CRD set is + `Valid`. \n In the case of `Valid`, `status: true` means that the + object is has been ingested into Contour with no errors. `warnings` + may still be present, and will be indicated in the Reason field. + \n `Valid`, `status: false` means that the object has had one or + more fatal errors during processing into Contour. The details of + the errors will be present under the `errors` field. \n There should + never be subconditions under `errors` when `status` is `true`." + properties: + errors: + description: "Errors contains a slice of relevant error subconditions + for this object. \n Subconditions are expected to appear when + relevant (when there is a error), and disappear when not relevant. + An empty slice here indicates no errors." + items: + description: "SubCondition is a Condition-like type intended + for use as a subcondition inside a DetailedCondition. \n It + contains a subset of the Condition fields. \n It is intended + for warnings and errors, so `type` names should use abnormal-true + polarity, that is, they should be of the form \"ErrorPresent: + true\". \n The expected lifecycle for these errors is that + they should only be present when the error or warning is, + and should be removed when they are not relevant." + properties: + message: + description: "Message is a human readable message indicating + details about the transition. \n This may be an empty + string." + maxLength: 32768 + type: string + reason: + description: "Reason contains a programmatic identifier + indicating the reason for the condition's last transition. + Producers of specific condition types may define expected + values and meanings for this field, and whether the values + are considered a guaranteed API. \n The value should be + a CamelCase string. \n This field may not be empty." + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: Status of the condition, one of True, False, + Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: "Type of condition in `CamelCase` or in `foo.example.com/CamelCase`. + \n This must be in abnormal-true polarity, that is, `ErrorFound` + or `controller.io/ErrorFound`. \n The regex it matches + is (dns1123SubdomainFmt/)?(qualifiedNameFmt)" + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - message + - reason + - status + - type + type: object + type: array + lastTransitionTime: + description: "lastTransitionTime is the last time the condition + transitioned from one status to another. \n This should be when + the underlying condition changed. If that is not known, then + using the time when the API field changed is acceptable." + format: date-time + type: string + message: + description: "message is a human readable message indicating details + about the transition. \n This may be an empty string." + maxLength: 32768 + type: string + observedGeneration: + description: "observedGeneration represents the .metadata.generation + that the condition was set based upon. \n For instance, if .metadata.generation + is currently 12, but the .status.conditions[x].observedGeneration + is 9, the condition is out of date with respect to the current + state of the instance." + format: int64 + minimum: 0 + type: integer + reason: + description: "Reason contains a programmatic identifier indicating + the reason for the condition's last transition. \n Producers + of specific condition types may define expected values and meanings + for this field, and whether the values are considered a guaranteed + API. \n The value should be a CamelCase string. \n This field + may not be empty." + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: "Type of condition in CamelCase or in foo.example.com/CamelCase. + \n Many .condition.type values are consistent across resources + like Available, but because arbitrary conditions can be useful + (see .node.status.conditions), the ability to deconflict is + important. \n The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)" + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + warnings: + description: "Warnings contains a slice of relevant warning subconditions + for this object. \n Subconditions are expected to appear when + relevant (when there is a warning), and disappear when not relevant. + An empty slice here indicates no warnings." + items: + description: "SubCondition is a Condition-like type intended + for use as a subcondition inside a DetailedCondition. \n It + contains a subset of the Condition fields. \n It is intended + for warnings and errors, so `type` names should use abnormal-true + polarity, that is, they should be of the form \"ErrorPresent: + true\". \n The expected lifecycle for these errors is that + they should only be present when the error or warning is, + and should be removed when they are not relevant." + properties: + message: + description: "Message is a human readable message indicating + details about the transition. \n This may be an empty + string." + maxLength: 32768 + type: string + reason: + description: "Reason contains a programmatic identifier + indicating the reason for the condition's last transition. + Producers of specific condition types may define expected + values and meanings for this field, and whether the values + are considered a guaranteed API. \n The value should be + a CamelCase string. \n This field may not be empty." + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: Status of the condition, one of True, False, + Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: "Type of condition in `CamelCase` or in `foo.example.com/CamelCase`. + \n This must be in abnormal-true polarity, that is, `ErrorFound` + or `controller.io/ErrorFound`. \n The regex it matches + is (dns1123SubdomainFmt/)?(qualifiedNameFmt)" + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - message + - reason + - status + - type + type: object + type: array + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map + type: object required: - metadata - spec diff --git a/assets/components/contour/dashboards/apiserver.json b/assets/components/contour/dashboards/apiserver.json index e3823483d..95eec61c7 100644 --- a/assets/components/contour/dashboards/apiserver.json +++ b/assets/components/contour/dashboards/apiserver.json @@ -284,11 +284,6 @@ "text": "Ingress", "value": "Ingress" }, - { - "selected": false, - "text": "IngressRoute", - "value": "IngressRoute" - }, { "selected": false, "text": "Secret", diff --git a/assets/components/contour/dashboards/contour-ingressroute.json b/assets/components/contour/dashboards/contour-ingressroute.json deleted file mode 100644 index e71a2ff53..000000000 --- a/assets/components/contour/dashboards/contour-ingressroute.json +++ /dev/null @@ -1,831 +0,0 @@ -{ - "__inputs": [ - { - "name": "DS_PROMETHEUS", - "label": "prometheus", - "description": "", - "type": "datasource", - "pluginId": "prometheus", - "pluginName": "Prometheus" - } - ], - "__requires": [ - { - "type": "grafana", - "id": "grafana", - "name": "Grafana", - "version": "5.0.4" - }, - { - "type": "panel", - "id": "graph", - "name": "Graph", - "version": "5.0.0" - }, - { - "type": "datasource", - "id": "prometheus", - "name": "Prometheus", - "version": "5.0.0" - } - ], - "annotations": { - "list": [ - { - "builtIn": 1, - "datasource": "-- Grafana --", - "enable": true, - "hide": true, - "iconColor": "rgba(0, 211, 255, 1)", - "name": "Annotations & Alerts", - "type": "dashboard" - } - ] - }, - "editable": false, - "gnetId": null, - "graphTooltip": 0, - "id": null, - "iteration": 1532630524651, - "links": [], - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 0, - "y": 0 - }, - "id": 2, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "avg(contour_ingressroute_total{namespace=~\"$Namespace\"}) by (namespace)", - "format": "time_series", - "interval": "", - "intervalFactor": 1, - "legendFormat": "Namespace: {{ namespace }}", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Total IngressRoutes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "decimals": 0, - "format": "short", - "label": "", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 6, - "y": 0 - }, - "id": 6, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "avg(contour_ingressroute_orphaned_total{namespace=~\"$Namespace\"}) by (namespace)", - "format": "time_series", - "interval": "", - "intervalFactor": 1, - "legendFormat": "Namespace: {{ namespace }}", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Orphaned IngressRoutes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "decimals": 0, - "format": "short", - "label": "", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 12, - "y": 0 - }, - "id": 4, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "avg(contour_ingressroute_valid_total{namespace=~\"$Namespace\",vhost=~\"$VHost\"}) by (namespace,vhost)", - "format": "time_series", - "interval": "", - "intervalFactor": 1, - "legendFormat": "Namespace: {{ namespace }} ({{ vhost }})", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Valid IngressRoutes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "decimals": 0, - "format": "short", - "label": "", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 18, - "y": 0 - }, - "id": 3, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "avg(contour_ingressroute_invalid_total{namespace=~\"$Namespace\",vhost=~\"$VHost\"}) by (namespace,vhost)", - "format": "time_series", - "interval": "", - "intervalFactor": 1, - "legendFormat": "Namespace: {{ namespace }} ({{ vhost }})", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Invalid IngressRoutes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "decimals": 0, - "format": "short", - "label": "", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 0, - "y": 8 - }, - "id": 5, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "avg(contour_ingressroute_root_total{namespace=~\"$Namespace\"}) by (namespace)", - "format": "time_series", - "interval": "", - "intervalFactor": 1, - "legendFormat": "Namespace: {{ namespace }}", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Root IngressRoutes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "decimals": 0, - "format": "short", - "label": "", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 6, - "y": 8 - }, - "id": 10, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": false, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "envoy_listener_manager_lds_update_failure", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (failure)", - "refId": "A" - }, - { - "expr": "envoy_listener_manager_lds_update_success", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (success)", - "refId": "B" - }, - { - "expr": "envoy_listener_manager_lds_update_rejected", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (rejected)", - "refId": "C" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Contour LDS Updates", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 12, - "y": 8 - }, - "id": 8, - "legend": { - "avg": false, - "current": true, - "max": false, - "min": false, - "show": false, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "envoy_cluster_manager_cds_update_success", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (Success)", - "refId": "A" - }, - { - "expr": "envoy_cluster_manager_cds_update_failure", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (Failure)", - "refId": "B" - }, - { - "expr": "envoy_cluster_manager_cds_update_rejected", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (Rejected)", - "refId": "C" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Contour CDS Updates", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "Prometheus", - "fill": 1, - "gridPos": { - "h": 8, - "w": 6, - "x": 18, - "y": 8 - }, - "id": 11, - "legend": { - "avg": false, - "current": true, - "max": false, - "min": false, - "show": false, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "envoy_http_rds_update_success", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (Success)", - "refId": "A" - }, - { - "expr": "envoy_http_rds_update_failure", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (Failure)", - "refId": "B" - }, - { - "expr": "envoy_http_rds_update_rejected", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{kubernetes_pod_name}} (Rejected)", - "refId": "C" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Contour RDS Updates", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - } - ], - "refresh": "10s", - "schemaVersion": 16, - "style": "dark", - "tags": [], - "templating": { - "list": [ - { - "allValue": ".*", - "current": {}, - "datasource": "Prometheus", - "hide": 0, - "includeAll": true, - "label": null, - "multi": true, - "name": "Namespace", - "options": [], - "query": "label_values(namespace)", - "refresh": 2, - "regex": "", - "sort": 0, - "tagValuesQuery": "", - "tags": [], - "tagsQuery": "", - "type": "query", - "useTags": false - }, - { - "allValue": ".*", - "current": {}, - "datasource": "Prometheus", - "hide": 0, - "includeAll": true, - "label": null, - "multi": true, - "name": "VHost", - "options": [], - "query": "label_values(vhost)", - "refresh": 2, - "regex": "", - "sort": 0, - "tagValuesQuery": "", - "tags": [], - "tagsQuery": "", - "type": "query", - "useTags": false - } - ] - }, - "time": { - "from": "now-30m", - "to": "now" - }, - "timepicker": { - "refresh_intervals": [ - "5s", - "10s", - "30s", - "1m", - "5m", - "15m", - "30m", - "1h", - "2h", - "1d" - ], - "time_options": [ - "5m", - "15m", - "1h", - "6h", - "12h", - "24h", - "2d", - "7d", - "30d" - ] - }, - "timezone": "", - "title": "Contour - IngressRoute", - "uid": "KYcCfvKid", - "version": 1 -} diff --git a/assets/components/contour/templates/01-contour-config.yaml b/assets/components/contour/templates/01-contour-config.yaml index bc4759691..197ebb376 100644 --- a/assets/components/contour/templates/01-contour-config.yaml +++ b/assets/components/contour/templates/01-contour-config.yaml @@ -12,13 +12,7 @@ data: # path to kubeconfig (if not running inside a k8s cluster) # kubeconfig: /path/to/.kube/config # - # Client request timeout to be passed to Envoy - # as the connection manager request_timeout. - # Defaults to 0, which Envoy interprets as disabled. - # Note that this is the timeout for the whole request, - # not an idle timeout. - # request-timeout: 0s - # disable ingressroute permitInsecure field + # disable HTTPProxy permitInsecure field disablePermitInsecure: false tls: # minimum TLS version that Contour will negotiate @@ -64,3 +58,15 @@ data: # - "upstream_service_time" # - "user_agent" # - "x_forwarded_for" + # + # default-http-versions: + # - "HTTP/2" + # - "HTTP/1.1" + # + # The following shows the default proxy timeout settings. + # timeouts: + # request-timeout: infinity + # connection-idle-timeout: 60s + # stream-idle-timeout: 5m + # max-connection-duration: infinity + # connection-shutdown-grace-period: 5s diff --git a/assets/components/contour/templates/02-job-certgen.yaml b/assets/components/contour/templates/02-job-certgen.yaml index eae5605f6..900b263c6 100644 --- a/assets/components/contour/templates/02-job-certgen.yaml +++ b/assets/components/contour/templates/02-job-certgen.yaml @@ -36,7 +36,7 @@ rules: apiVersion: batch/v1 kind: Job metadata: - name: contour-certgen-v1.5.0 + name: contour-certgen-v1.7.0 namespace: projectcontour spec: ttlSecondsAfterFinished: 0 diff --git a/assets/components/contour/templates/02-rbac.yaml b/assets/components/contour/templates/02-rbac.yaml index 0ec7f944c..e3db1ce74 100644 --- a/assets/components/contour/templates/02-rbac.yaml +++ b/assets/components/contour/templates/02-rbac.yaml @@ -1,4 +1,5 @@ --- + apiVersion: rbac.authorization.k8s.io/v1beta1 kind: ClusterRoleBinding metadata: @@ -11,125 +12,4 @@ subjects: - kind: ServiceAccount name: contour namespace: projectcontour ---- -apiVersion: rbac.authorization.k8s.io/v1beta1 -kind: ClusterRole -metadata: - name: contour -rules: -- apiGroups: - - "" - resources: - - configmaps - - endpoints - - nodes - - pods - - secrets - verbs: - - list - - watch -- apiGroups: - - "" - resources: - - nodes - verbs: - - get -- apiGroups: - - "" - resources: - - services - verbs: - - get - - list - - watch -- apiGroups: - - "networking.k8s.io" - resources: - - ingresses - verbs: - - get - - list - - watch -- apiGroups: - - "networking.k8s.io" - resources: - - "ingresses/status" - verbs: - - get - - list - - watch - - patch - - post - - update -- apiGroups: ["contour.heptio.com"] - resources: ["ingressroutes", "tlscertificatedelegations"] - verbs: - - get - - list - - watch - - put - - post - - patch -- apiGroups: ["projectcontour.io"] - resources: ["httpproxies", "tlscertificatedelegations"] - verbs: - - get - - list - - watch - - put - - post - - patch -- apiGroups: - - "projectcontour.io" - resources: - - "httpproxies/status" - verbs: - - update -- apiGroups: ["networking.x.k8s.io"] - resources: ["gatewayclasses", "gateways", "httproutes", "tcproutes"] - verbs: - - get - - list - - watch - - put - - post - - patch ---- -apiVersion: rbac.authorization.k8s.io/v1beta1 -kind: Role -metadata: - name: contour-leaderelection - namespace: projectcontour -rules: -- apiGroups: - - "" - resources: - - configmaps - verbs: - - create - - get - - list - - watch - - update -- apiGroups: - - "" - resources: - - events - verbs: - - create - - update - - patch ---- -apiVersion: rbac.authorization.k8s.io/v1beta1 -kind: RoleBinding -metadata: - name: contour-leaderelection - namespace: projectcontour -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: Role - name: contour-leaderelection -subjects: -- kind: ServiceAccount - name: contour - namespace: projectcontour + diff --git a/assets/components/contour/templates/02-role-contour.yaml b/assets/components/contour/templates/02-role-contour.yaml new file mode 100644 index 000000000..4a99eab17 --- /dev/null +++ b/assets/components/contour/templates/02-role-contour.yaml @@ -0,0 +1,87 @@ +# The following ClusterRole is generated from kubebuilder RBAC tags by +# generate-rbac.sh. Do not edit this file directly but instead edit the source +# files and re-render. + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: contour +rules: +- apiGroups: + - "" + resources: + - configmaps + verbs: + - create + - get + - update +- apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - secrets + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - services + verbs: + - get + - list + - watch +- apiGroups: + - networking.k8s.io + resources: + - gatewayclasses + - gateways + - httproutes + - tcproutes + verbs: + - get + - list + - watch +- apiGroups: + - networking.k8s.io + resources: + - ingresses + verbs: + - get + - list + - watch +- apiGroups: + - networking.k8s.io + resources: + - ingresses/status + verbs: + - create + - get + - update +- apiGroups: + - projectcontour.io + resources: + - httpproxies + - tlscertificatedelegations + verbs: + - get + - list + - watch +- apiGroups: + - projectcontour.io + resources: + - httpproxies/status + verbs: + - create + - get + - update diff --git a/assets/components/contour/templates/03-envoy.yaml b/assets/components/contour/templates/03-envoy.yaml index 7df3e18d1..99bb6eb4d 100644 --- a/assets/components/contour/templates/03-envoy.yaml +++ b/assets/components/contour/templates/03-envoy.yaml @@ -59,10 +59,11 @@ spec: imagePullPolicy: Always lifecycle: preStop: - httpGet: - path: /shutdown - port: 8090 - scheme: HTTP + exec: + command: + - /bin/contour + - envoy + - shutdown livenessProbe: httpGet: path: /healthz @@ -94,9 +95,11 @@ spec: fieldPath: metadata.name ports: - containerPort: 80 + hostPort: 80 name: http protocol: TCP - containerPort: 443 + hostPort: 443 name: https protocol: TCP readinessProbe: @@ -142,7 +145,6 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - # XXX: Lokomotive specific change automountServiceAccountToken: false serviceAccountName: envoy terminationGracePeriodSeconds: 300 diff --git a/assets/components/contour/values.yaml b/assets/components/contour/values.yaml index 587e0f78e..d2d1d2c28 100644 --- a/assets/components/contour/values.yaml +++ b/assets/components/contour/values.yaml @@ -3,11 +3,11 @@ monitoring: contour: image: docker.io/projectcontour/contour - tag: v1.5.0 + tag: v1.7.0 envoy: image: docker.io/envoyproxy/envoy - tag: v1.14.1 + tag: v1.15.0 serviceType: nodeAffinity: {} diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 8e9ee5bd4..e5578fa22 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -589,7 +589,7 @@ var vfsgenAssets = func() http.FileSystem { modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), uncompressedSize: 1048, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x31\x8f\xdb\x3e\x0c\xc5\x77\x7f\x0a\x02\x19\xb2\xfc\xff\xce\xf5\x80\x2e\xd9\x8a\xa2\x53\x6f\x3c\x74\x67\xe4\x17\x8b\xad\x4d\x09\x94\xec\xd6\xdf\xbe\xa0\xed\xdc\xe5\xae\x4b\x3b\x05\x91\x29\xbe\xdf\x7b\xa4\x38\xcb\x37\x58\x91\xa4\x67\x9a\x1f\x1b\xe5\x11\x67\x0a\x49\x6b\x9a\xac\x69\x0e\xf4\x89\x42\x64\xab\x14\x58\xe9\x02\x82\xd4\x08\x23\x56\x3a\x72\xce\x83\x04\xae\x92\xf4\x48\xc9\x88\xe9\x38\xc8\xc5\xd8\x96\xe3\x76\xa7\x6d\x0e\xde\xe0\xb5\x6c\x3b\x2e\xc4\x06\x62\x0a\x69\x18\x10\xd6\xf3\x74\xa5\x8a\x31\x0f\x5c\x51\xa8\x46\x7e\x91\xcb\x1c\x7e\x70\x8f\x8e\x44\x6b\xa2\x79\x03\x45\x47\x6c\x21\xca\x8c\xd2\x1c\xa8\x26\x2f\xec\x90\x87\xb4\xa0\xdb\x34\x9f\x36\x8e\x9b\x5e\xb6\x34\x4b\x07\x9a\x0a\xae\xd3\x40\x53\x95\x41\xaa\xa0\x38\xf5\x75\xd2\x95\xa1\xd0\x35\x19\xd5\x88\xdd\x6f\x87\x19\x43\xca\xb0\x96\x9e\x23\x96\xa3\x81\x44\xc3\x30\x75\xae\xee\xba\xec\x9a\xd0\x0e\x1a\x16\x37\xc0\x7f\xfa\xac\x89\x44\xbf\x23\x54\xaa\x31\x15\xdc\x09\xb3\x76\x77\xca\xab\x39\x97\x36\xef\x67\xa2\x7d\x73\xa0\x2c\x19\x83\x28\xda\xf7\x6e\xba\x44\x9a\x1c\xf0\x2a\x0a\x62\x5d\xee\xb2\xf3\xbe\x3e\x20\x5c\x93\xc1\x43\xf4\xca\x37\xf1\xd4\x25\xe3\x7c\x0f\xeb\x43\x7e\x8e\x52\x48\xca\x9d\xfd\x3d\xea\x76\xfb\xb4\xff\x23\x9d\xc6\x0b\xcc\x2b\x45\x83\x61\x84\x56\x74\x04\x0e\x91\xaa\x8c\xeb\x5d\xed\xb1\x0d\x78\xe4\x0e\xdb\x78\x5e\xbb\x3a\x9e\x78\x30\x37\xe0\xff\xf6\x50\x45\xfb\xb5\x8c\x73\x7e\x91\x6e\xe6\xdb\x5e\x3e\xb4\x8f\xed\xc3\x7b\xce\x77\x4c\xbe\x42\x11\x34\xe5\x52\x0d\x3c\xd2\xe7\x7d\x85\x0f\x14\x6b\xcd\xe5\x7c\x3a\xf5\x52\xe3\x74\x69\x43\x1a\x4f\xd9\x92\x8f\x65\x5f\xf3\xd3\xed\xd7\x30\x80\x0b\x4a\xc3\x39\xbf\x3e\x8a\x0f\xed\x47\x57\xef\x50\x82\x49\xae\xeb\xe1\xde\xdd\x59\x98\xbe\x4e\x17\x98\xc2\xf3\x17\xed\x0d\xa5\xac\x0f\xc8\x7c\xbf\x8d\xa6\xe2\xe6\x9e\x96\x6b\x3d\x16\xfa\xa2\x73\x5a\x7c\x1f\x7f\x2d\x6d\x13\x93\xbf\xb5\x1b\xde\x5b\xa6\x56\xd2\xa9\x91\xe0\x5a\xff\xc0\xcf\x3f\x4f\x23\x97\x8a\x97\xa3\x36\x6b\xdf\x94\x34\x59\x40\x39\x37\xff\xff\x7d\xaf\xe6\x77\x00\x00\x00\xff\xff\xe5\x9c\x0e\x7d\x18\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x31\x8f\xdb\x3e\x0c\xc5\x77\x7f\x0a\x02\x19\xb2\xfc\xff\xce\xb5\x1d\x0a\x64\x2b\x8a\x4e\xbd\xf1\xd0\x9d\x91\x5f\x2c\xb6\x36\x25\x50\xb2\x5b\x7f\xfb\x82\xb6\x73\x97\xbb\x2e\xed\x14\x44\xa6\xf8\x7e\xef\x91\xe2\x2c\xdf\x60\x45\x92\x9e\x69\x7e\xdf\x28\x8f\x38\x53\x48\x5a\xd3\x64\x4d\x73\xa0\x4f\x14\x22\x5b\xa5\xc0\x4a\x17\x10\xa4\x46\x18\xb1\xd2\x91\x73\x1e\x24\x70\x95\xa4\x47\x4a\x46\x4c\xc7\x41\x2e\xc6\xb6\x1c\xb7\x3b\x6d\x73\xf0\x06\x2f\x65\xdb\x71\x21\x36\x10\x53\x48\xc3\x80\xb0\x9e\xa7\x2b\x55\x8c\x79\xe0\x8a\x42\x35\xf2\xb3\x5c\xe6\xf0\x83\x7b\x74\x24\x5a\x13\xcd\x1b\x28\x3a\x62\x0b\x51\x66\x94\xe6\x40\x35\x79\x61\x87\x3c\xa4\x05\xdd\xa6\xf9\xb8\x71\xdc\xf4\xb2\xa5\x59\x3a\xd0\x54\x70\x9d\x06\x9a\xaa\x0c\x52\x05\xc5\xa9\xaf\x93\xae\x0c\x85\xae\xc9\xa8\x46\xec\x7e\x3b\xcc\x18\x52\x86\xb5\xf4\x14\xb1\x1c\x0d\x24\x1a\x86\xa9\x73\x75\xd7\x65\xd7\x84\x76\xd0\xb0\xb8\x01\xfe\xd3\x67\x4d\x24\xfa\x1d\xa1\x52\x8d\xa9\xe0\x4e\x98\xb5\xbb\x53\x5e\xcd\xb9\xb4\x79\x3f\x13\xed\x9b\x03\x65\xc9\x18\x44\xd1\xbe\x75\xd3\x25\xd2\xe4\x80\x57\x51\x10\xeb\x72\x97\x9d\xf7\xf5\x01\xe1\x9a\x0c\x1e\xa2\x57\xbe\x8a\xa7\x2e\x19\xe7\x7b\x58\x1f\xf2\x53\x94\x42\x52\xee\xec\xef\x51\xb7\xdb\xa7\xfd\x1f\xe9\x34\x5e\x60\x5e\x29\x1a\x0c\x23\xb4\xa2\x23\x70\x88\x54\x65\x5c\xef\x6a\x8f\x6d\xc0\x23\x77\xd8\xc6\xf3\xd2\xd5\xf1\xc4\x83\xb9\x01\xff\xb7\x87\x2a\xda\xaf\x65\x9c\xf3\xb3\x74\x33\xdf\xf6\xf2\xa1\xfd\xd0\x3e\xbc\xe5\x7c\xc3\xe4\x2b\x14\x41\x53\x2e\xd5\xc0\x23\x7d\xde\x57\xf8\x40\xb1\xd6\x5c\xce\xa7\x53\x2f\x35\x4e\x97\x36\xa4\xf1\x94\x2d\xf9\x58\xf6\x35\x3f\xdd\x7e\x0d\x03\xb8\xa0\x34\x9c\xf3\xcb\xa3\x78\xd7\x7e\x74\xf5\x0e\x25\x98\xe4\xba\x1e\xee\xdd\x9d\x85\xe9\xeb\x74\x81\x29\x3c\x7f\xd1\xde\x50\xca\xfa\x80\xcc\xf7\xdb\x68\x2a\x6e\xee\x71\xb9\xd6\x63\xa1\x2f\x3a\xa7\xc5\xf7\xf1\xd7\xd2\x36\x31\xf9\x5b\xbb\xe1\xbd\x66\x6a\x25\x9d\x1a\x09\xae\xf5\x0f\xfc\xfc\xf3\x34\x72\xa9\x78\x3e\x6a\xb3\xf6\x4d\x49\x93\x05\x94\x73\xf3\xff\xdf\xf7\x6a\x7e\x07\x00\x00\xff\xff\x51\xce\xc8\x64\x18\x04\x00\x00"), }, "/components/contour/crds": &vfsgen۰DirInfo{ name: "crds", @@ -598,9 +598,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/crds/01-crds.yaml": &vfsgen۰CompressedFileInfo{ name: "01-crds.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 61763, + uncompressedSize: 68821, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x73\xe3\x36\xb2\xe8\xbb\x7f\x05\xca\xfb\x30\x93\xad\x91\x9c\x49\x6e\xdd\xda\xf5\xdb\xac\x3d\x9b\xf8\x66\x32\xf1\xb5\xbc\x93\x87\xdd\xad\x1a\x88\x6c\x49\x38\x26\x01\x06\x00\xed\xf1\x9e\x3a\xff\xfd\x14\xbe\x48\x50\x22\x3e\x28\x4b\x39\xc9\x1e\xb1\x2a\x95\x31\x45\x82\xdd\x8d\x46\x7f\xa1\xbb\x31\x9b\xcd\xce\x70\x43\x3e\x01\x17\x84\xd1\x4b\x84\x1b\x02\x5f\x24\x50\xf5\x97\x98\x3f\xfc\x49\xcc\x09\xbb\x78\x7c\xbb\x04\x89\xdf\x9e\x3d\x10\x5a\x5e\xa2\xab\x56\x48\x56\xdf\x81\x60\x2d\x2f\xe0\x1a\x56\x84\x12\x49\x18\x3d\xab\x41\xe2\x12\x4b\x7c\x79\x86\x10\xa6\x94\x49\xac\x6e\x0b\xf5\x27\x42\x05\xa3\x92\xb3\xaa\x02\x3e\x5b\x03\x9d\x3f\xb4\x4b\x58\xb6\xa4\x2a\x81\xeb\x2f\xb8\xef\x3f\x7e\x3d\xff\x66\xfe\xe7\x33\x84\x0a\x0e\xfa\xf5\x7b\x52\x83\x90\xb8\x6e\x2e\x11\x6d\xab\xea\x0c\x21\x8a\x6b\xb8\x44\x84\xae\x39\x08\xc1\x59\x2b\x41\xcc\xd5\xe8\xac\xe5\xf3\x0d\x34\x92\xb0\x79\xc1\xea\x33\xd1\x40\xa1\x21\x29\x4b\x0d\x1e\xae\x6e\x39\xa1\x12\xf8\x15\xab\xda\xda\x80\x35\x43\xff\x6f\xf1\xd3\xc7\x5b\x2c\x37\x97\x68\xae\x5e\x98\x3f\x12\x2e\x5b\x5c\x6d\x98\x90\xf3\xd5\x2f\x25\xd5\xb0\x97\x20\x0a\x4e\xd4\xc8\xf4\x12\xfd\xb5\xad\xaa\x67\xf4\x4b\x8b\x2b\xb2\x22\x50\xa2\x92\xd5\x98\x50\x0d\x95\x7e\xd8\x80\xf7\xd7\xff\x7f\xfd\x51\xff\x29\x9f\x1b\xb8\x44\x42\x72\x42\xd7\xc9\x2f\xca\x4a\xcc\x05\x14\x1c\xe4\x47\x37\xdc\xe0\xdb\x0b\xfd\x1b\x7a\x22\x72\x83\xee\x3f\x2c\x14\x91\x4a\xa0\x92\xe0\x4a\x78\xdf\x56\xbf\x98\x27\xf3\x20\x30\x34\xfc\xfb\xd7\xff\x9c\xd7\x58\x16\x9b\x11\x94\x09\x17\x12\x99\xc7\x50\xa9\x26\x1c\x4a\x1f\xd7\xfe\xe7\xf4\x07\x25\x96\xad\x98\x17\x2d\xe7\x40\xe5\x42\xff\xb5\xfb\xc1\xfb\x0d\x20\xfb\x08\x32\x6f\x20\xb6\x42\x72\x03\xe8\xfb\xfb\xfb\xdb\x5b\xce\xbe\x3c\x7b\xdf\xf7\x46\xc9\xf8\xb4\xf7\xa1\xdd\x0f\x5f\xf7\x7f\xb8\x2f\x0e\xe1\xd8\xf9\xac\xff\xca\x18\x08\x6b\xce\xda\xe6\x12\x8d\x30\xa8\x19\xc7\x2e\x0f\xb3\xb4\x6e\x0c\x53\xdf\x75\xa4\xac\x88\x90\x3f\xec\xfc\xf4\x81\x08\x33\xb5\x4d\xd5\x72\x5c\x6d\x2d\x06\xfd\x8b\x20\x74\xdd\x56\x98\x0f\x7f\x3b\x43\x48\x14\x4c\xc1\xa7\xf8\x4b\x34\xb8\xd0\x13\x29\xda\x25\xb7\xcb\x59\x5c\xa2\xff\xfc\xaf\x33\x84\x1e\x71\x45\x4a\xbd\x00\x0d\x7c\xac\x01\xfa\xee\xf6\xe6\xd3\xb7\x8b\x62\x03\x35\x36\x37\xb7\x88\xe7\x83\x88\x88\x40\x98\xba\x5b\xe8\xea\xee\x1a\x29\x5e\x23\x2b\x52\x10\xdc\xd1\x0a\xa1\x86\xb3\x06\xb8\x24\x8e\x0e\xea\xf2\xe4\x51\x77\x6f\xeb\x53\xaf\x14\x2c\xe6\x19\xcb\x90\x42\x4f\x96\x95\x23\x50\x22\xa1\xe1\x34\x93\x48\x04\xe2\xd0\x70\x10\x40\xa5\xff\x71\x73\xb1\x95\x82\x94\x2d\xff\x03\x0a\x39\x47\x0b\xe0\x6a\x10\x24\x36\xac\xad\x4a\x35\x6f\x8f\xc0\x25\xe2\x50\xb0\x35\x25\xff\xea\x46\x16\x48\x32\xfd\xc9\x0a\x4b\xb0\xd3\xe1\x2e\x2d\x66\x28\xae\x14\x15\x5b\x78\x83\x30\x2d\x51\x8d\x9f\x11\x07\xf5\x0d\xd4\x52\x6f\x34\xfd\x88\x98\xa3\x1f\x19\x07\x44\xe8\x8a\x5d\xa2\x8d\x94\x8d\xb8\xbc\xb8\x58\x13\xe9\x24\x70\xc1\xea\xba\xa5\x44\x3e\x5f\x68\x39\x4a\x96\xad\x64\x5c\x5c\x94\xf0\x08\xd5\x85\x20\xeb\x19\xe6\xc5\x86\x48\x28\x64\xcb\xe1\x02\x37\x64\xa6\x01\xa7\x5a\x00\xcf\xeb\xf2\x0f\xdd\xfc\xbe\xf2\x20\xdd\x62\x55\x73\x69\x4e\x0c\xd2\x5d\x31\xa3\x9e\x5b\xfb\x9a\x81\xbf\x27\xaf\xba\xa5\xa8\x72\xf7\x7e\x71\x8f\xdc\x47\xf5\x14\x0c\x69\xae\xa9\xdd\xbf\x26\x7a\xc2\x2b\x42\x11\xba\x02\x6e\x26\x6e\xc5\x59\xad\x47\x04\x5a\x36\x8c\x50\x69\x16\x65\x45\x80\x0e\x89\x2e\xda\x65\x4d\xa4\x9a\xe9\x5f\x5a\x10\x52\xcd\xcf\x1c\x5d\x69\x3d\x84\x96\x80\xda\xa6\xc4\x12\xca\x39\xba\xa1\xe8\x0a\xd7\x50\x5d\x61\x01\x47\x27\xbb\xa2\xb0\x98\x29\x92\xa6\x09\xef\xab\xcf\xe1\x83\x86\x5a\xdd\x6d\xa7\xd9\x46\x67\xc8\x5f\x84\x8b\x06\x8a\xc1\xf2\x50\x6f\x3a\xb9\x76\x75\x77\xed\x8d\x31\xb6\x0e\xd5\x65\x44\xca\xf0\xde\xd6\x17\xef\x8c\x5e\xc0\x1c\xf4\xb8\x56\xde\xd8\x37\xe7\xe8\x66\x85\xee\xaf\x8c\xcc\x56\x8c\x63\x27\xfc\xcd\xd6\x88\xc8\x0d\x43\x04\x22\x6b\xca\x38\x94\xf3\xad\x47\x88\x84\x7a\x07\x92\x31\x58\xb4\xb0\xc5\x84\x5a\x9c\x41\x2a\x94\xad\xf6\x5a\x31\x8e\x30\xb2\x3a\x17\x29\xa5\xbb\x33\x60\x88\x14\xee\x73\x15\xac\xb1\x84\xb1\xdf\x76\x94\x89\x79\xd4\x49\x3e\x3d\x09\x58\x5a\x81\xa4\x21\xb5\x52\x66\x09\xdd\xb8\xe5\xe8\xb8\x48\x49\x1b\x4c\x99\xdc\x00\xdf\xd5\x12\xd3\x30\x40\x4e\x83\x05\x7e\xdb\xc2\x42\x69\x0a\xc7\x33\xc9\x2f\xa3\x10\x73\xef\x7e\x5e\x6b\x9f\x09\x30\xe8\xe7\xc7\x00\x99\xa3\x6b\x58\xe1\xb6\x92\x4e\x24\x07\xc7\x44\x9d\x32\xef\x00\x40\x64\x85\x94\x84\x10\x6d\xd3\x54\x64\x97\xe9\x26\xa0\xa5\x04\x0f\xe1\x50\x8e\xe3\x34\xeb\x2d\xc4\xf1\x91\xb7\x16\x79\x7f\x01\xc5\xcb\x0a\x7e\x86\xa5\x60\xc5\x03\xc8\xc0\x9c\x0e\xe8\xf5\x5e\xbf\x22\xd0\x93\x7b\x49\xe3\xc7\xb8\xd4\xfc\xaf\x08\xc8\x83\x53\x68\xa0\x59\x32\x56\x01\xa6\x23\x4f\x68\x1b\x31\x03\x86\x1f\xd5\x73\x03\xe9\xd3\x70\x58\x91\x2f\xa8\x37\x32\xc7\x3f\x1d\x24\x71\x03\xbc\x26\xf2\x86\x0a\x28\x5a\x9e\xb3\x00\xdf\x55\x15\x7b\x32\xcb\xad\xc1\x72\xa3\xd8\x83\x83\x68\x18\x2d\xd5\x3f\x89\x1d\xa8\xd7\x18\xec\x11\x78\x60\xfe\x95\xdd\x89\x9e\x36\xa4\xd8\x68\x41\x47\x19\xaf\xb1\xf2\x03\x14\xef\x18\xb8\x24\x94\xe8\x69\x03\x14\x61\xf4\x79\xcb\xa6\xff\x1c\x18\x74\x59\xb1\xe2\xc1\x13\x8a\xe3\xcc\x97\x9a\x10\x43\xd6\x3b\x78\xe2\x24\x4b\x2c\xdd\xd0\x92\x14\xca\x68\x31\xd2\xa8\x6c\xb5\x1e\x5f\x31\xfe\x84\x79\x49\xe8\xfa\x8d\x9e\x2c\x3d\x4b\x50\xda\xd1\x03\x08\xbc\x66\x5c\x53\xf6\x2b\x4f\x90\x89\x27\xdc\x34\x8a\x16\xca\x49\xd1\xb4\xd7\x26\xc2\x3e\x13\xce\x41\xf2\xe7\x5b\x56\x91\xe2\x39\x03\x2f\xe5\x34\xe8\x37\x50\xa3\x5f\xb1\xbc\xee\x64\xed\x9e\x92\xb2\x60\x2d\x95\xb9\x62\xaa\xad\xef\x40\x72\x62\xd4\x58\x8d\xbf\x90\xba\xad\x11\x56\x5c\x08\x25\xa2\x6d\xbd\x04\xae\x75\x91\x79\x28\x2c\x6b\x90\xd2\x9a\xbe\x58\x32\x73\xb2\x33\x82\xfa\x0c\xa3\x10\x1e\x68\xa5\xf8\x54\x2a\x27\x40\xfe\xdf\xff\x13\x7c\xaa\x26\x54\x41\x7a\x89\xbe\x4e\x48\x3f\x65\xd8\xae\x83\x6b\xa4\x01\x7e\xcf\x9f\x95\xc3\xce\xda\x5c\x92\xdd\xfa\xef\x0c\x14\x25\x20\x69\xef\x36\xc0\xcd\xc4\x46\xe8\x85\xa5\x84\xba\x91\x73\x74\x63\x8c\x07\x25\xd7\x87\xd3\x71\x20\x29\x9f\x10\xd6\x02\xf8\x23\x29\x42\xec\xb4\xe5\xcc\x9b\x47\x3b\xcb\xc9\xbd\xab\x84\x53\xa3\xed\x25\xc9\xf1\x6a\x45\x8a\xd1\xb1\x02\xe6\x50\xf8\x43\x9d\x2c\xc6\x14\xb5\x8d\x90\x1c\x70\xbd\xf3\x29\x24\x59\x68\x76\x93\x4b\x05\xa1\x0d\xe0\x4a\x6e\xae\x36\x50\x3c\x84\x1f\xda\x82\xee\xfb\xfe\x9d\x0e\x42\xd6\x98\x88\x8d\x1d\xb0\x50\x3f\x2a\x4e\x8f\x8c\x89\x34\x09\x3b\xbc\x2c\x2d\x23\x2f\xe4\xe0\xd3\xe3\xf4\x7c\xbf\xe1\x20\x36\xac\x2a\xaf\xe2\x02\x61\x04\xc3\xfb\xc1\xd2\xb5\xe3\xd9\xff\x23\x8b\x9b\x33\x1e\x12\xe3\x22\xb4\x84\x95\x72\x59\xb0\xb6\x5d\x8d\x98\xe1\x0f\x50\xba\x61\x13\xef\xe7\xc9\x03\x73\x65\x48\x05\x73\xe5\xc8\x06\x73\x29\x98\x27\x93\xce\x78\x98\xd6\xf0\xd3\x58\x6f\x00\x97\xc0\x11\xa1\x5d\x48\x28\x49\x36\x9f\xda\x4e\xe1\x6b\xdf\xa4\x82\x95\x44\x4a\x74\x3c\xa3\xd7\xa5\xb1\x23\xcd\x17\xbf\xda\x75\x51\x76\x10\x57\x13\xab\xcc\xe3\x73\x1b\xde\x99\x01\x7d\x64\xcf\x33\x8f\x6b\xcf\xd1\x13\xa9\x2a\xed\x80\x8a\x98\xdc\xb1\x03\xa6\x4d\x67\x73\xe9\x08\xc3\x23\xae\x16\x50\x30\x5a\x26\x38\x78\x84\xa6\xee\x7d\xf4\x5a\x98\x11\xbe\x42\x4b\x90\x4f\x00\x74\xc8\x97\x07\x64\xa7\x7c\x2e\x51\x16\xc5\x24\x8c\xb4\x71\xd6\xc5\x07\x14\xa1\xb5\x5c\x03\xae\xe0\x9b\x84\x10\x42\x8c\x4e\x11\x22\x68\xca\xa4\x59\x7d\xb6\xef\x9c\xa9\xd7\x15\x5e\x4f\x98\x48\x6f\xde\x8c\x47\x6b\x90\x4c\x62\xe7\xf8\x5f\x19\xc1\x22\x85\xd8\x71\x66\xb7\xa5\x87\x96\xa8\xdd\x88\x87\x96\xa9\xdd\xc0\xbf\x65\xa9\x1a\x77\x3b\xcd\x35\xd3\x6b\x2a\xf2\x40\xc2\xaa\x31\x57\x3c\x68\x30\x16\x36\x20\xa2\x97\x91\x6c\x85\x7e\x68\x97\xc0\x29\x28\xd7\xc3\x2e\xad\xce\xfe\x88\x2f\x1c\x63\x9b\xcc\x4d\x1c\xc0\xed\x40\xa0\x0d\x70\x18\x88\x57\x35\x5a\xc5\xd8\x03\x6a\x1b\x54\x30\x6e\x7d\xbd\xd4\xb2\x74\x82\x43\x58\xff\xce\x46\x8f\x4c\x30\xab\xd1\xd6\x98\x76\x20\x62\xc2\x3b\x4b\x06\x28\x07\x3c\x9b\x7e\xb7\xca\x5b\x7f\xed\x50\xc5\x02\xdd\x18\x4e\xf8\x2a\xcf\x3a\xec\x00\x63\x48\x10\x5a\x28\xe6\x76\x24\x2f\x30\x45\x1b\xfc\x08\xa8\x6e\x2b\x49\x9a\x0a\x06\x5b\x3a\x31\xfc\x52\xcc\x28\x24\xc7\x12\xd6\x01\x67\x6d\x04\xc9\x0f\x7f\x41\xef\xaa\x35\xe3\x44\x6e\xb4\x29\x8a\x9b\xa6\x7a\x56\xb2\x0d\xfc\x68\xec\xa6\x5d\xce\x0b\x56\x5f\x34\x9c\x29\xfe\xb4\xba\xf6\xc2\xfd\x7f\x59\xb1\xe5\x45\x8d\x85\x04\x7e\x51\x82\x20\x6b\x7a\xe1\xef\x79\xcc\xcc\xbd\x79\x5d\xfe\xa1\x62\xb8\x9c\x2d\x71\x85\x69\x41\xe8\xfa\xab\x97\xce\xe7\xf6\x1e\x49\x06\xc2\x7f\xb3\xaa\xe5\x53\xf7\x6a\x67\xf3\x6e\xd8\x93\x22\xc1\x23\x70\xb2\x7a\x4e\x84\xb1\x10\x5a\xe2\xe2\x01\x68\xe9\x26\xf5\x95\x40\x85\x32\x66\x57\xda\xb3\x3f\x80\xd5\x5b\x60\xb3\x83\x38\x49\x2c\xfb\xa1\xc2\xc1\x5a\xd7\xbb\x96\xfd\x22\x4d\x0a\x64\x4b\x59\xe3\x16\x79\x88\xb9\x40\x09\x94\x68\xa9\x69\xe4\xe8\x70\x28\x15\x2d\x5a\x2d\x02\x3f\x26\x24\xdd\x0e\xe6\x3f\xc0\xb3\x95\x1e\x44\x20\xf8\xd2\x40\x21\x8d\x38\x5a\x76\x30\x23\x12\x77\x5f\x90\x35\x28\x5f\x59\x18\xde\x55\x1a\x8c\x57\x8e\xa0\x3d\xea\x79\x33\x3d\x01\xef\x3c\x15\xe2\x58\x22\xfa\x90\x47\xc0\x97\xaa\x9b\x27\x20\xeb\x4d\xbe\xc0\xfc\x59\x3f\xde\x2d\xa7\x06\x78\x01\x54\xe2\xb5\xe1\xc8\xce\xbb\x45\x66\xfd\xc7\x29\x97\x96\xac\xb9\x2a\x3f\x4b\xdd\xe7\x48\xd7\xd4\x1c\x45\xe2\xcb\x5a\xff\x33\x1e\xa2\x74\x72\x32\xcc\x03\x98\x73\x3c\xa6\xa6\xad\x55\x3b\x29\x4c\xd7\x45\x76\x0e\x18\xa8\xb3\x4e\x5d\x66\xdc\xc9\x45\x9c\xd4\xa7\x39\x14\x40\x1e\x09\x5d\x23\xdc\x99\xc6\xfd\xbe\xa3\xd0\xfb\x92\xb1\xd0\xd3\x4a\x02\x57\x00\x16\x20\x84\x1b\x45\xc3\x62\x06\x31\x7b\x95\xf3\xed\x90\x5e\x8c\x1f\x3c\x12\x95\x2d\x37\x7a\x82\x08\xd4\x52\xab\xa9\x8f\x15\xbf\x0a\x33\xd9\x2c\x10\xb6\x8f\x0c\x17\x62\x1b\x59\x34\xda\x7e\x89\x6e\x2a\x76\x5b\x86\xca\x41\x10\xea\x4f\x6b\xf4\x10\x6a\x96\x1e\x61\x74\x9b\x0a\x31\x1e\x89\x6d\xdb\xe5\x6f\xda\x39\xd0\xb3\xf7\xed\xf2\x77\xed\x52\x0c\x1e\x33\xbe\x5f\xb2\x5f\x97\x64\x98\xe4\x5e\xdd\x31\x76\xea\xf6\xde\xa7\x4b\xee\x28\x84\xa5\x68\x50\x82\x46\x97\x4c\x2c\xe0\x7b\xb8\x70\x6f\x24\xd8\x7b\xf0\x50\x6f\x5a\xd4\x66\x85\x79\x8f\x11\xe4\x9d\x14\xe2\xcd\x33\x75\xf7\x08\x46\x1c\x2b\xb8\xfb\x92\xd0\x6e\x7e\x08\x22\x33\x00\x91\x1b\x7e\x48\x87\x74\x8f\x11\xd0\x3d\x42\x38\xf7\xc0\xc1\xdc\x4c\xd3\x7b\x52\x20\xf7\x38\x61\xdc\x7c\xd6\xc9\xe5\x89\x74\x00\xf7\x48\xe1\xdb\xa9\xc1\xdb\xcc\x49\x9a\x12\xb8\xdd\x27\x6c\x6b\x90\x4b\xe0\x96\x15\xb4\x3d\xfc\x5c\xee\x15\xae\x3d\x5e\xb0\xf6\x65\xa1\xda\xff\x21\x29\x99\xf6\xaf\x13\x01\xda\x0c\x7f\x79\x6a\x46\xd7\x41\x42\xb3\xc7\x0c\xcc\xbe\x3c\x2c\x9b\xb1\xba\xe3\x21\xd9\x3d\x03\xb2\xf1\x08\xd7\xcb\xc3\xb1\x39\x4c\x97\x0e\xc5\xfe\x1e\x02\xb1\x19\x33\x98\x13\x84\x3d\x46\x08\x76\xbf\x00\x6c\x9e\x4d\x9a\x17\x7c\x3d\x46\xe8\xf5\xb0\x81\xd7\x4c\xf5\x9a\x1d\x74\xdd\x23\xe4\x9a\x0c\xa4\xa3\x03\x06\x5c\xb3\xf0\xcd\x51\x06\xc9\x50\x6b\x5e\xa0\x35\x43\x6d\xa4\x82\xac\x47\x0a\xb1\xa6\x02\xac\xbf\x62\xde\xda\xde\x69\xbb\x91\xa0\x6a\x82\xf0\xe1\x80\x6a\xf0\x45\x2f\xa3\x34\x1a\x37\xfb\xd4\x3f\xa7\x84\x38\x60\x2e\x10\x96\xa8\x56\x7f\x33\x5a\x80\x76\x92\x88\xf4\x33\xf1\x47\x97\x88\x2d\xd0\x20\x42\xe9\x5d\x41\x4a\xe0\xdd\xe2\xc2\xe8\x9c\x33\x26\xcf\xa7\x84\xdf\x56\xbf\x94\xa3\xf2\x79\xc7\x50\x5c\x85\xab\xeb\xdc\xba\x54\x1f\xb7\xff\x1e\x25\xbe\x2b\x40\x90\x1c\x00\xe1\xaa\x42\x15\xe0\x47\xe8\x2a\xc8\xae\xdf\x7d\xa7\x87\x50\x4a\xdc\x86\xf5\xba\x6a\x94\x2a\xb4\xc2\x6d\xad\x4f\x57\x11\x38\x36\x6b\x81\x75\x2f\xab\x74\x6c\xe8\x66\xd5\x89\x2c\x73\x7f\x09\x42\xbd\xe8\xd1\x74\xae\xc9\xb3\xf8\x78\x63\x62\x62\xe3\x50\x6e\xb0\xec\xec\x2e\x97\xc0\xcb\xa8\x8e\x38\xb9\x71\x4b\x25\x14\x15\x1e\x26\xa5\x74\xa4\xe2\x70\xfb\xb2\x3a\xa4\x6e\x85\xec\x8c\x30\x6c\x86\x27\x74\x9d\x10\x8e\x29\x85\x67\x97\xf0\x2d\x67\x92\x15\xac\x1a\xa9\xfb\x0a\x12\xed\x47\xf3\xaa\x2e\x77\xb4\x75\x5f\x36\xdf\x58\x73\xbf\x0d\xd1\x52\x58\x33\x49\xc2\x92\x3b\x29\xb3\x1b\x2c\x84\xdc\x70\xd6\xae\x83\x3e\xed\xf6\x5c\xde\xf6\xaf\xa8\x15\x24\x40\x6a\x06\xe2\x2d\x18\xa2\x2f\x3a\x82\xeb\xd9\x0a\x0a\xaf\x25\xb8\x5a\x18\x5d\x42\x66\xaa\xa0\x0a\xfe\xdc\x28\xe6\xdd\x60\x5a\x8a\x0d\x7e\xe8\x2d\x6d\x05\xa9\x5a\xa5\xe6\xcb\x61\x91\xc8\x3a\x05\xae\xe7\xaf\x6a\x95\xc5\x16\x0f\xa8\x86\xb3\xcf\x1d\x7f\xc4\xb4\xf7\x80\x3e\x4e\xde\xbe\x19\xf8\x1f\xd8\xb1\x99\xb5\xf0\x77\x02\xc0\xfb\x4d\x5f\x44\x10\x87\xe4\xfe\x6c\x6c\x95\x07\xc6\x19\x2f\xcf\xd2\x75\xa1\xc1\x02\x2d\x5b\x36\xca\x41\x69\x0f\xb1\x53\x62\x0a\x3b\x95\xae\xfe\xcc\x84\x96\xd3\xa0\x9e\x76\x1b\xa3\x20\x8d\x7c\xb8\x72\xdf\x51\xa6\xfb\x5f\x8c\x7e\xe7\x51\x4d\xf4\xc1\x7b\x70\x58\x91\x35\x5e\xd9\xab\x06\x76\x96\xc3\x0e\x37\xc6\xc4\x88\x95\xf7\x69\x21\x6b\xf5\x82\xae\x5e\xac\x48\x2f\xcd\xd4\x2a\x70\x4a\xc3\xba\x9c\xb6\x4c\x66\x94\xe9\x3c\xe7\x05\xf8\x1c\xdd\x5b\xbb\x47\xd9\x18\xb4\x84\xb2\x2b\xb1\x71\x0e\x9e\x57\x1a\xb1\x5d\xb3\xd8\x51\x5b\x2f\x49\x01\x5b\x60\x8c\xad\xc9\xdc\x9d\x80\x57\x3e\xfd\x1d\xea\x7d\xbd\xa5\x81\xb0\x9b\x00\x3c\xc4\x2a\xb0\xd8\x06\xd0\x5d\x76\x16\xdf\x4b\x30\xb7\x5b\x64\xc3\xa1\xe7\xaf\xf6\xdd\x98\x60\x42\x4e\x08\x84\x7c\x6f\x1f\x77\x42\x5a\xc1\x3f\xa0\xc3\xd6\x7c\x44\x77\x26\xb0\xd4\x7a\xf6\xfa\xe3\x02\x2d\xb1\x92\xc3\xaf\xe5\x73\x43\x0a\x5d\x25\xf4\xee\xe7\xc5\x70\x60\xf1\x22\x9f\x97\x34\x99\x08\xde\xdc\xe6\xa2\xa6\x11\x88\xe0\xa7\x50\xbb\xb9\xdd\xc5\xec\xbb\xab\xf7\x88\x71\xf4\x53\x03\x74\x21\x71\xf1\x70\x38\x34\x0f\x6d\x43\x8f\xdc\xde\x56\x01\xb3\xae\x06\xb7\xbb\x21\x1a\x70\x5e\xca\xd6\x00\x7d\xcb\x0a\xdb\x1d\xa3\xbb\x65\x5b\x4b\x98\x2e\x01\xfd\xaf\x66\xaf\x10\xca\x4b\x6d\x09\x98\x1b\x92\x71\xbc\x06\x7b\xa7\x57\x1c\xb8\x28\x40\x29\xf9\x8f\xdb\x0d\x02\xce\xcf\xf5\x1f\xae\xee\x5f\xff\x59\x30\x6a\x3a\x5c\x88\x4b\xf4\xf7\x7f\x9e\x99\x51\xa1\xfc\xe4\x80\x51\x37\x7f\xb7\x6d\x3e\x64\x25\x3c\x03\xd3\x6e\xb6\x6b\xa0\x23\x2d\x3f\x26\xf5\x5c\xb8\xff\xb0\xb8\xea\xbf\x70\xdd\x7d\x41\x3f\xd2\xf7\x5f\x08\x3d\xb6\xd3\x8b\x21\x08\xb1\x99\xf1\xae\x2f\x43\xe8\xb9\x40\x8f\x86\x7d\x1a\x32\x84\x60\xb6\xcd\x19\x94\xe1\xec\xfd\x8e\xbc\x07\x76\xfb\x35\xf4\xba\x68\x01\xda\x9b\x20\x6b\x7a\x21\x2b\x31\xf3\x90\x98\xf5\x58\xcc\x6b\xa3\x0e\x4a\x90\x98\x54\x9d\x26\x3b\xb5\x7b\x38\xb5\x7b\x38\xb5\x7b\xd0\xd7\x61\xda\x3d\x84\x96\xf8\x01\x5a\x3f\x78\xa2\x6b\xdb\xdc\xc8\x69\xc5\x30\x2e\x79\x6a\xdc\x18\x78\x70\x2b\x37\x8c\x13\xf9\x6c\xaa\xb2\x57\xc0\x61\x3c\x64\x98\xf4\x0c\xb5\x05\xe9\xda\x3c\x74\x77\x47\x8c\xe7\xb8\xfd\x98\x72\x63\x0f\xe1\xc4\xc6\x0a\xbc\xc3\x3e\x2c\xe6\x6b\x03\x98\x41\x6c\x2f\xf0\xcc\xab\xd3\x28\x8f\x5c\x2a\xa2\x36\xe9\x6d\xe7\x29\x13\x6a\xe8\xb2\xde\xf4\xb2\xbb\x59\xa1\xfb\x2d\x20\x11\x09\x59\xcb\x94\x54\xca\x62\xd4\x39\x1a\x06\xbe\x51\x4e\x79\xe5\x77\x02\x51\x5f\x08\x07\xf2\xb7\xbe\x3d\xf0\xed\xac\xc7\xb9\xc1\x1c\x17\x12\xf8\x1b\x74\xfe\xc7\x73\x0f\xa1\x50\x54\x7c\x04\x4d\x1d\x4a\x8c\xb1\x17\x4a\x15\xe5\x66\x9a\xbc\xe3\x89\xb6\xb1\xd4\xcc\x48\x00\x6f\xb6\xc3\x3e\xbb\x01\xca\xa9\x29\x9c\x63\xa0\xcc\xd0\xb6\xa5\x13\x1c\xfc\x64\x75\xff\xe6\xad\x6e\xa5\x1b\x1b\xce\xbe\x10\x10\xf3\xe1\x66\xef\x9c\xb0\x53\x67\xbd\xac\xce\x7a\xff\x4b\x1b\xdd\xed\xb2\xcb\x88\xcf\x35\x44\xae\x77\xb2\xba\xfb\x3b\x5e\x95\xc7\x91\x66\x0d\x6f\x18\x97\xde\x42\x9d\x79\xb9\x2a\xe6\xdf\x64\xa7\x13\x9e\x1b\xe3\x39\xa7\x0d\x9e\x95\x14\x5a\x36\xec\xdf\x12\xaf\x43\x28\xd2\x0f\xef\xd4\x0e\xef\xe4\x1f\x9d\xfc\xa3\x23\xf9\x47\xdd\x02\x4c\x39\x44\x39\xbb\x2c\x84\x16\x55\x5b\x26\xda\xe1\xdd\xd8\x87\x4c\xdf\x1f\x1d\x04\x71\x2b\x5d\x27\xac\xe9\x3d\x37\x46\x57\x64\xed\x2a\x7b\xf4\xb6\xfa\x8e\x59\x86\x9b\xc6\x44\xd5\xbd\x1a\x12\x4f\x9c\xd0\xee\x66\xd0\xbb\xc8\xf1\xd2\x2c\xb4\xde\xb6\x73\xe7\x4a\xe9\xe2\xac\xae\xfe\xa5\xc0\x54\x6f\xfe\x07\x8b\x97\x4c\x1c\x7f\x08\x61\xcc\xf3\x89\x7b\x63\x9e\x79\x95\x76\x77\xae\xba\x87\x75\x9c\x1a\xfb\x3d\xff\x14\xb9\xfb\x4f\x19\x5c\x82\xbe\x89\xc5\x6e\x32\x2e\x11\x6a\xc7\xc0\xd5\xd0\x0e\xc9\xac\xe1\xb7\x50\x68\xd6\x68\x82\x11\x74\xb6\xea\x20\xd4\xf9\x01\x3f\x51\xed\x84\xde\x9a\x2e\x6b\x8c\xa3\xef\x4d\x56\xbd\xde\xb8\xd7\x49\x51\xec\x91\x94\xe1\xbc\xf5\xcc\x06\x3f\xe5\xee\xbe\x5f\x10\x53\x0b\xc1\xb0\xad\x93\x4d\xf6\xef\x66\x58\x51\x5b\x67\x13\xc4\x12\xea\xb3\xeb\x96\xad\xdb\x37\xa9\x7a\xf7\xca\xf9\x8a\x3d\xa0\x58\x09\x50\x2b\xd3\xf5\xc4\x28\x2a\x26\xc6\x44\xbb\xa9\x67\x0e\x59\xad\x16\x0e\xd6\xfd\x05\xbe\xe0\x62\x5a\x65\xf6\x7b\xf5\xc6\x10\x3d\x0f\xb7\x1e\xd0\x24\x86\x46\xbf\x39\x96\x02\x65\xac\x2b\xcd\x72\x28\xcc\x52\x2d\x26\x76\x10\x1b\xcb\x65\xf6\xe8\xee\x58\x2b\x89\x17\x5e\x2b\x06\x90\xf3\x6e\x40\xe7\xa5\xce\x1d\x13\xeb\xe5\xaf\xd7\x67\x81\xf5\x4e\xad\x50\x8e\x9c\x24\x8f\x87\x9b\x57\xca\xe4\x5e\xfc\xfb\x91\xc9\x0c\x16\x4e\xd2\x40\xcf\xaa\xb5\x0f\x7e\x0d\x36\xa6\x4c\x4e\xe7\xe4\x8f\xec\x18\xbc\x6c\xb1\xee\xf8\xd9\x38\x66\x9d\x84\x52\x0c\xc6\x03\x3d\x0c\xfd\x8b\x0c\x98\x6f\x83\x95\xcd\xff\x8c\x8c\x9a\x3e\x2c\xed\xec\xfc\x4c\x22\xdd\xad\x9d\xd3\xad\xca\xd6\xe9\x68\xea\x36\x97\x6e\xc5\x95\x5d\xf5\x96\x97\x52\xc8\x61\x8d\x79\x59\x29\x57\x87\xad\x10\x89\x6e\x9d\x9b\xcb\x90\x47\xb1\x32\x18\xb0\x04\x48\xad\xbc\x1d\xd4\x92\xa1\x15\xae\x04\xa0\x92\x81\xee\xe6\x97\xe6\x67\xfc\x60\x13\x99\x7b\x55\xc3\x5b\x70\xb3\xb4\x0d\x3c\x5e\x86\x7b\x70\xf6\x57\x3a\x1f\xca\x5c\x79\x3d\x15\x22\x35\xfb\x28\xb7\x4f\x82\xe9\xd0\x99\xdf\x58\xc6\xd8\x07\x5d\x85\xe8\xa0\x2d\xab\x2d\x4b\x72\x15\x75\x49\xd0\xa2\x9c\xfa\xc2\xc6\x02\x61\x5d\x10\xcc\x7c\x1f\xc6\x15\x26\x82\x9c\x28\x74\x8e\x97\x39\xf7\xb6\xa2\xee\x2c\xab\x8d\xea\x41\xb9\x73\x24\xbe\xbe\x67\xb1\x73\x14\x9d\x58\xb8\x78\x94\xe9\xf6\x28\xe4\xff\xf7\xef\x0d\x7e\xf2\x5a\x4e\x5e\xcb\xc9\x6b\x89\xbf\x7d\xf2\x5a\x4e\x5e\xcb\xc9\x6b\x49\xe2\x7a\xf2\x5a\x4e\x5e\xcb\xc9\x6b\xe9\xaf\x7f\x57\xaf\xe5\x78\xa7\x75\xec\x77\x3a\x84\xd7\xab\x67\x52\x8b\xb6\x41\x87\x95\xd1\x3e\x6d\xe3\xf0\xe4\x76\x0f\xca\xee\x27\x71\x8c\x6e\x3b\xfb\x76\xda\xf9\x55\x8f\x53\x88\x77\xd6\xd9\xab\xab\x4e\xba\x4d\xf4\xa4\x8e\x3a\x59\x3d\x73\x22\x1f\xcb\xeb\xa6\x93\x53\x10\x91\xdb\x45\xe7\xf0\x1d\x74\xf2\x58\x22\xeb\xf8\x8c\x68\xd7\x9c\x7d\x3b\xe6\xc4\x1b\x6a\x65\x77\xcb\xc9\x11\x9c\x99\x5d\x72\x8e\xd2\x21\x27\xd9\x1d\xe7\x70\xf3\x34\xb9\x23\xce\x71\xba\xe1\xec\xdf\x09\xe7\x37\x54\x5c\x1f\xec\x7a\x93\xd0\xc2\x7e\x15\xe2\x24\xb5\xe6\x55\x19\xea\x18\xcb\x21\x15\xdb\xc4\x9e\x2b\x0b\xfb\xf8\x56\xa0\xc1\x82\xe4\x16\x75\xba\x97\x42\x97\xe1\x81\x0b\xce\x84\x1b\x84\x55\x8a\xbf\x5c\x97\x92\x86\x95\x62\x8e\x74\xcb\x13\xf7\x81\x70\x19\xb9\xb9\x94\xcf\xf8\xf9\x0e\xd3\x92\xd5\x9f\xdf\xa0\xcf\x77\xac\xa5\xe5\x1d\x5b\x12\xaa\xfe\x32\x9d\x20\xa0\xfc\x00\x58\xc8\x3b\x03\x80\x7e\xca\x3c\x1f\x1b\x96\x96\xe8\xf3\x15\x63\x0f\x04\x3e\x6b\xfd\x82\x29\x6a\xe9\x03\x65\x4f\xb4\x23\x20\xea\x8a\xf2\x2c\x65\x4a\xc4\x62\x8e\x11\x65\x0e\x29\xf5\xce\xe0\xc8\x24\xa7\xb1\x7c\xf8\xfb\x87\x63\x92\xf1\x65\x3a\x29\xc1\xbf\x8a\xef\xed\x89\x5d\x93\xd8\xd7\xe3\x57\xae\x5f\x77\x09\x46\xfa\x7c\x33\xd7\x20\xc1\xcc\x47\x00\xf8\xbf\xdd\x7d\xb0\x2d\x6b\xbd\x67\xb5\xd7\xb7\x54\x5a\x4f\xaf\x00\x13\x4b\x74\xdd\x24\xf7\x5d\x0f\x1c\x9a\x0a\x17\x70\x9b\xb0\xf4\x87\x41\x5a\xff\x1d\x2f\x2b\x45\xb7\xe6\x71\x78\x5a\xdb\xdf\xe4\xa4\x45\x45\xa4\x83\x21\x32\x95\xd1\x08\x68\x36\x7c\x78\x00\x99\xfd\x6a\x9d\xf0\xcc\x72\xc3\x83\x69\x5f\x69\x07\xce\x73\x0b\xe1\x50\xb6\xa8\xb9\xf7\xe1\xcc\x68\xc5\xee\xd3\x10\xfd\x83\xea\xf6\x06\xe6\x65\x7f\x7d\xbe\x41\xc4\x76\x88\xd0\xb1\x91\x2a\x75\x62\x86\x3d\x46\xd0\x24\x5f\x75\x7e\xae\x83\xca\x44\xbb\x11\x07\x6a\xfa\x8e\x2c\xd3\xfd\xf0\x91\xb6\x5d\x31\xd1\xd9\xac\x66\xff\x45\x2d\x0d\x2f\xd4\xac\x25\x0f\xa3\xd5\xb3\x19\x3f\x71\x20\x86\xb9\x2c\x40\xce\x4e\x75\x84\x50\x00\xdd\x79\x53\x8c\xee\x95\xee\xd0\xf9\x5e\xe9\x90\x81\x0f\x52\x17\x3c\xb7\x3b\x46\x5d\xf3\x86\xbe\x19\x18\x67\x2c\x23\x0e\x21\x99\x41\xcd\x42\xd8\x67\x9c\x79\xb3\x0d\xe2\x8d\x6e\x85\xa2\xe8\xa2\x83\x3b\xe9\x61\x5b\x5a\xb3\x52\x4f\xf0\xee\xdc\xeb\x0d\xaa\x7e\xfe\x71\x55\xb9\x9d\x8b\x4c\xb2\xc2\xce\x0c\x3b\x32\xd8\x99\xdc\x26\xfb\x3c\xe6\x4b\x20\x63\xb2\x7c\x00\xba\x96\x9b\x4b\xf4\xf6\x50\x21\x2b\x6f\x29\x4f\x5a\x80\x1e\x7f\xb8\x48\xef\x76\xc0\x2f\x9b\x5c\xde\x8a\xdd\x61\xc5\x27\x22\x37\x96\x01\xbd\x98\x60\x72\x4c\xed\xd0\xa5\xa2\x46\x87\xa7\x67\x5e\x7c\xc9\xa3\xf9\x4b\xc3\x4c\xf1\x60\x4d\x5a\x4f\x9f\x8e\x1c\x1d\x73\x1f\x2d\xf8\x66\x8f\x41\xec\x6b\xc1\xd4\x98\xe2\xb5\x5a\x11\x9d\x11\x62\xc6\x73\x47\x92\xea\x5c\xfd\x60\x5b\x9e\x0c\xf3\xa3\x66\x8f\xb9\xad\x20\xee\xf4\xc3\x83\xf8\xbc\x2e\x23\xb3\xdb\x95\x2e\x96\x92\x32\x9a\xf5\x74\xab\x91\x5e\x60\x6f\x64\x2d\xa5\x14\x5f\x23\x24\x62\xfd\x03\xb7\x6a\x5f\x64\x12\x71\x93\x97\x9f\xda\x91\x71\xd2\x49\xf4\x35\x90\xde\x20\xae\x8c\xcf\x8d\xe9\x42\xe2\x08\xbe\x90\xe8\x36\x25\xe9\x0b\x0f\x71\x59\x2a\x6d\xa3\xf5\xd7\x13\x11\xe0\xff\xa6\xd6\x92\xb2\x89\x25\x50\x2d\x16\x63\x34\x56\x5e\x38\x3c\xa5\xb6\x37\xa6\xd9\x86\x66\x39\x7c\x1a\x56\x00\x08\x13\xc3\x70\xcc\x73\x11\x3e\x0c\xd7\x5d\x0d\x26\xd1\xe6\xca\x99\x46\xe3\x7e\x9b\x92\x03\xb8\x1f\xe0\xd9\x94\xb5\x66\x6d\x4d\x1d\x43\xfb\x6a\x6a\x4d\xc2\x62\x87\xfc\xd2\x8f\x8d\x66\xa2\x82\x3c\xcf\x73\xf9\x6c\x28\xf1\x1b\xd5\x95\x89\xbd\x98\x59\xe4\xf4\x65\x1f\x9a\xe3\xaa\x51\x17\x9d\x3b\x9c\xc2\xb0\xa7\xb4\x9c\x34\x06\x3a\x69\x8c\x91\xeb\xa4\x31\xfc\x9f\x4f\x1a\x23\x86\xc5\x49\x63\x6c\x3d\xf0\xdb\xd0\x18\x07\x3c\xfa\x7f\xdf\x00\xe6\xe9\xec\x7f\x7d\x65\x6d\x5e\x9e\xce\xfe\x3f\xce\xd9\xff\x2f\x4d\xdb\x1d\x39\x11\xca\xeb\x0f\xbf\xc8\x3d\xeb\x21\x0a\x4d\x9e\x8a\xa9\x09\xe7\x2c\x3f\x0b\xf7\x66\x85\x7e\xd4\x6f\xb8\x04\x2f\xdb\x3a\xd7\x00\xac\x35\xb8\x39\xb8\x2f\xae\x1b\x31\xe2\x80\x6d\xe0\xd7\x40\xe0\xb6\x49\x5c\xfb\xca\x1c\x59\x61\x89\x90\x95\x45\x75\x3a\x26\x39\x41\xc0\xdf\xf9\x31\xc9\x69\x04\x53\xe7\xc1\x34\xb6\xdb\xf5\x84\xec\x37\xf3\x82\xee\x06\xe0\xcd\xa2\x91\x99\xcf\xe8\xb5\xe2\xea\x47\xe0\x9c\x94\x10\x3b\xd6\x18\xd9\x83\x0d\xec\x68\x6e\x18\x0e\x58\xef\xc5\x90\x4e\x20\xcc\x8d\x55\x24\xec\x07\xe3\x43\x56\xe2\x0d\xda\x7c\xa3\xfe\x2b\xb4\xc1\xce\x4c\x68\xf2\x4d\xf7\xa1\x99\x80\x0a\x0a\xbd\xc5\xb3\xc2\x55\x25\xf4\xb6\x74\x74\x4c\x46\xbb\x95\xee\x35\xbb\x89\x51\x1e\x68\x5b\xc7\xed\x9e\xcd\x37\x89\x9f\x63\x2c\x32\x53\x68\xbe\x94\xb3\xf3\xc3\xa6\xe6\x7a\x41\xf0\x34\xee\x2f\xc4\xdc\xe4\xee\x91\x2c\x9f\x21\xe5\x32\x8f\x20\x92\xe7\x38\x27\xed\x6d\x93\xd9\x9e\xe1\x3e\x9b\x2b\xe9\x98\x99\x2b\xdb\xcf\xc8\x71\xa8\xcd\x15\x75\xab\xcd\xb5\xa7\x73\x9d\xc6\xc6\x3f\x10\x20\xcb\xc5\x4e\x0e\x39\x74\xc1\x73\x1c\xed\xe4\x90\x23\x8e\x78\xae\xbb\x6d\xae\xcc\xb9\x3d\x86\xeb\x6d\xae\x84\x03\x6e\x1f\xca\x5c\x52\xe6\xca\x71\xc6\x47\xd0\x7a\xa9\x4b\x6e\xae\x09\xae\xa9\xb9\x26\x2c\x1b\x94\xeb\xa4\x9b\xeb\x18\xae\xba\xb9\x26\x3b\xec\xe6\x3a\x2e\x6d\x72\x5c\x78\x73\x25\x1d\x79\xf7\x58\x1e\x13\x67\x39\xf5\xfe\xa3\x29\xc1\x97\x35\xe0\x84\xc0\xb0\xb9\x5e\x12\x1e\x3e\xe9\xc4\xad\xeb\xa4\x13\x4f\x3a\xf1\xa4\x13\x4f\x3a\xb1\xbf\x4e\x3a\x71\x17\xca\x5f\x5b\x27\xe6\x9c\x68\x79\x9c\x33\x2d\xf7\x3d\xd5\x72\x42\xa1\x7b\xd6\xc9\x96\xc7\x39\xdb\xf2\xd0\xa7\x5b\x4e\xe0\xe2\xec\x13\x2e\xf7\x3a\xe3\x32\x43\xe5\xc1\x01\x4f\xb9\x3c\xf0\x76\x54\xf2\xac\xcb\xdc\xd3\x2e\x33\x97\x57\xea\xc4\xcb\xa3\x9d\x79\x99\x3e\xf5\x32\xff\x80\xea\xac\xe3\xa9\x73\x82\x91\xa9\x39\x8a\x4a\xd4\xc8\x09\x98\x19\x93\x51\x13\x7a\xa3\x8d\x94\x80\xce\x88\x8b\x54\xbb\x41\x34\x69\x8b\xb0\xdb\x54\x3a\xe4\x26\x21\x29\xab\xdc\x94\x11\xb7\xd5\x65\xca\x2f\xf4\xc2\x7e\x63\xeb\xba\x39\xd8\x24\x4f\x84\x0b\x49\x1e\xfb\x0c\xd1\x38\xb3\x78\xf0\xbf\x71\x45\xe3\xd4\x86\x5a\x5d\x1d\xe3\x7b\xfa\xc8\x9e\xbb\x03\x04\xd3\x92\x8d\xf1\xad\x57\xe0\x8b\xed\xdf\x6b\xda\xcc\x76\xc6\x6d\x51\x31\x61\x9b\xf3\xc7\x0b\xdb\xbd\x34\x71\x83\xaa\xde\x92\x53\x6b\x69\xa6\x41\xd7\x34\x74\xb3\xf3\xa2\x42\x50\xe7\xf9\x4d\x9c\x10\x53\x4f\x53\x00\xd1\xc9\xf1\xb8\x77\x20\xbb\x76\xbb\xba\x89\x7c\xcc\x8a\x32\x73\xda\x70\x56\x80\x10\x6e\x14\x13\x99\xd5\x83\x18\xda\xcd\x77\x36\x77\x63\xeb\xd7\x63\xd9\xd2\x35\x8b\x25\x02\xb5\x34\xb9\x13\xf1\xb2\xad\xcc\xf8\x59\x03\x66\xa3\x72\xe7\xa7\x3d\x1a\x48\xc9\xc2\xf4\xe3\x8e\xb6\x90\xea\x1a\x44\x6d\x58\x55\x0a\xf5\xa7\xdd\xd7\x21\xd4\x48\xcb\xc1\xe1\x44\xe6\x8a\xad\xda\xac\x82\xf8\x69\xe5\xf0\xb2\x68\x82\xdb\x73\x29\x01\x32\xa9\x96\x74\xef\x5a\x78\x5b\x2d\x1a\xe4\x97\x89\x95\xf0\x9e\x9a\xfa\x36\xb4\xab\x92\xd6\x3e\x99\x55\xdb\x87\xae\xd9\xce\xd1\xb1\x69\xe0\xf3\xaa\x9d\xf7\xaf\x75\x4e\x55\x34\x1f\x06\x8b\x89\xb5\xcc\xc7\xa8\x64\xde\xb7\x8e\xf9\x10\x3c\x18\x95\x82\xb6\x18\x29\x29\x1e\x5c\x0b\xed\xad\x06\x35\x4e\x32\x18\x61\xd5\x1f\x85\xd9\x9d\x29\x33\xce\x56\x23\xcd\xbe\xc7\xc4\x7c\x4a\xac\xc4\x42\x25\x41\xe7\xaa\xd8\x90\xaa\x4c\x34\x51\xcc\xd0\x2d\x89\x46\x8a\x2f\x6b\xa5\x18\x56\x79\xec\x25\xcd\x14\x93\x68\xc5\x0c\xe5\xa0\x91\x9c\xc3\x5f\xe9\x83\x6b\xcf\x5d\x4b\xf9\x6b\x68\x38\xe8\xd3\x02\xb3\x9b\xcb\x87\x98\xcc\xb4\x72\x9f\xda\x60\x1e\xfd\x83\xa2\xf7\x5f\x48\xc8\x2c\x2d\x5b\x7b\x18\x57\x4d\x84\xd4\x27\x53\x6f\x80\x22\x7d\x3c\x00\x6b\xfc\x72\xcc\xde\xb6\x5c\x11\xa8\x4a\xf4\x84\xdd\xb2\x1f\x37\xc2\xf5\x21\x20\x66\x34\xd2\x9d\xec\xad\x93\x33\x74\xcd\xb2\x3b\xe2\xc3\xd6\xc1\x99\x31\xed\x53\x42\x86\x12\x10\x99\xa9\x95\xe3\x80\x1f\xb4\x55\xfc\x84\x79\x29\x50\xc1\xea\x06\x4b\xb2\x24\x95\x3d\x21\xeb\xf1\x2d\x6a\x05\x70\x31\x5a\x7d\x78\x5a\x86\x23\x64\xfd\x7d\x2d\xc3\xbc\x56\x12\x93\x1a\x49\xc0\x76\x1c\x6d\x34\x73\x25\xc5\x3b\xa9\x76\x12\xfb\x37\x93\x48\x3b\x97\x7b\xb4\x92\x18\x36\x8c\x08\x8e\x3c\xad\x91\xc4\xb0\x5d\x44\x70\xd0\x09\x6d\x24\x02\xcd\x22\xc2\xfc\x9c\x6c\x22\x11\x6d\x15\x91\x3a\xdb\x2f\xc6\x99\xb1\x7c\xd2\x3d\xb3\x49\x47\x46\xca\x3d\x50\x7c\x5a\x22\x69\x3c\x61\x34\x1d\x55\x49\x25\x8b\xee\x99\x2a\x8a\x70\x34\x5e\x79\x98\x44\xd1\x9c\x34\xd1\x09\xa7\x94\x1f\x2e\x45\xf4\x98\x09\xa2\x2f\x4f\x0f\xcd\x08\xef\xc4\x53\x43\xf7\x4c\x0c\x8d\xef\x1c\x1c\x20\x2d\x34\x2b\x7f\x3e\x99\x12\x7a\x94\x84\xd0\xfd\xd2\x41\x75\xca\x67\x64\xd4\xe9\xc9\xa0\x5e\xc2\x67\x2c\xc6\x96\x93\x0a\x1a\x4f\x04\x8d\xa6\x81\xc6\x93\x40\xe3\x29\xa0\x59\xc1\xc9\x29\xe9\x9f\xc7\x49\xfe\x4c\xa6\xb9\xe4\xed\xe4\xe5\xa4\xb8\x1c\xa3\x5a\x12\xe5\x55\x4c\xa2\xdc\x04\x88\xec\x1d\xbc\xbc\xfd\xdd\x64\x5a\xcb\x71\x92\x5a\xa6\xa7\xb4\xe8\x94\x95\xc4\xa8\x93\x12\x5a\xb6\x12\x56\x12\x43\x4f\x4d\x67\xc9\x9a\xcb\x63\xa5\xb2\x64\x24\xb2\x4c\x49\x63\xc9\x4d\x62\x39\x78\x0a\xcb\xc4\x24\x8d\x49\x29\x1a\xd9\xc9\x2b\xc7\x4a\x5d\xd9\x2b\x71\xe5\x78\x14\xc9\x4d\x59\xc9\x4a\x58\xc9\x4b\x57\xc9\x4e\x56\xc9\x11\x65\x19\x83\x4d\x4c\xdd\x3c\x52\xe2\xe6\x49\x9f\x0d\xc7\x3a\xe9\xb3\xe0\x75\xd2\x67\xe6\x3a\xe9\xb3\x93\x3e\xd3\xd7\x49\x9f\xf9\x57\x4e\xda\xe5\x31\x92\x2e\xf7\x4b\xb9\xcc\x5b\xa1\x79\xe9\x96\xc7\x48\xb6\x3c\x6c\xaa\x65\x26\xa7\x66\xa7\x59\xee\x91\x64\x99\xd1\x81\xf4\x70\x29\x96\xd9\xd5\xa4\xf1\x35\x99\x91\x5c\x99\x97\x5a\x99\xb1\x7c\x52\x69\x95\x47\x4a\xaa\x4c\xa5\x54\xfe\x86\x7a\x9d\x07\x25\x63\x24\x8d\x32\x41\xf8\x78\x0a\x65\x58\x30\x86\x40\x0d\xa6\x77\x05\xe1\xf0\xda\x4e\x46\xb3\xb8\x3e\xf5\xcf\xe9\x8d\x67\xcc\x05\xc2\x12\xd5\xea\x6f\x46\x0b\xd0\xf6\x1c\x91\x83\xe3\x78\xc6\x56\x9c\x3d\x29\x9f\x08\x54\x30\x2a\x88\xe9\x1e\x6b\xf7\xb3\xd1\x39\x67\x4c\x9e\x4f\x49\x06\x5b\xfd\x52\x8e\x8a\xfb\x1d\x6f\x65\xd5\x56\xd5\x33\xfa\xa5\xc5\x95\xd1\xca\x25\xab\x31\xa1\x83\xc3\xbb\xd4\xc7\xed\xbf\x47\xe7\xd2\x1d\x7e\x28\x39\x80\x6e\x97\x5b\x01\x7e\x04\xe1\x5e\xbf\x7e\xf7\x9d\x1e\x02\x4a\xe4\xb2\x47\x2c\xb2\x1c\xaa\x90\xc0\xb0\xbb\xad\x0a\x8d\x20\x03\x04\xc4\x88\xac\xd2\x1b\x4b\x37\xab\x4e\x02\xf6\xad\xae\x65\x25\x3c\x9a\x9a\x43\xa7\x16\x1f\x6f\x22\xbe\xce\xc0\x9e\xd7\x8d\x9f\xcd\x39\x81\x98\xf7\x07\xcf\x97\x4a\xc6\x2a\x3c\x4c\x1e\xab\xac\xc4\xdc\xe8\x9c\xa0\x60\xb2\x2a\x49\x77\xbd\x75\xbb\x0d\xd8\x0c\xaf\xd3\x20\xa2\xb2\x36\xa5\x3f\x4d\xba\xe6\xa7\xa4\x4d\x30\x4c\xd4\xb8\xda\x7a\x2b\x6c\x10\xd8\x0f\x04\xc5\x8d\xaf\x32\x4d\x8b\x57\xba\x93\x87\x0b\x42\xe2\x65\x45\xc4\x46\x7b\x5b\xf7\x1f\x16\x5e\xf6\x6f\x58\x8e\x31\x93\xdd\xab\x73\x39\x74\xba\x84\x3d\xb2\xea\x52\xdd\x78\x3b\xef\x4e\x23\xd2\xe3\x99\x0f\xe5\xa8\xad\xde\x7c\x9a\xa3\x6f\xe6\xe8\xce\x48\x18\x61\x87\xb0\x3b\x91\x86\x95\x2c\xac\x19\x83\xbe\x26\x73\x98\x6b\xc7\x8d\x69\x12\xe3\xca\xfb\xce\x57\x73\xf4\xed\x1c\x2d\x3a\x87\xd3\xb5\x88\x9f\x42\x59\xcb\x93\xce\x5a\x09\xb7\x98\xce\xb1\xb7\x72\xac\xad\x51\x5b\x0b\x8f\x58\x5a\xee\x90\x33\x73\x3e\x5e\x6c\xdb\x12\xa1\xab\x77\x03\xac\x96\x2d\x2d\x2b\xb0\xa7\xc1\xed\xcc\xa0\x59\x30\x0e\xe3\xe8\xb8\xf6\x78\xc1\x6d\x1b\x4e\x38\x7f\xdc\x7e\x28\x32\x46\xa6\x47\x92\xb9\x79\x12\x2f\x54\x48\xd8\x3a\x49\x1b\xc6\x9c\xdc\xf5\x57\x5c\x55\xca\x24\xbd\xea\xf1\xcd\x5a\xfb\xef\x43\x6f\x77\x32\xc0\x1e\xe0\xf6\xa8\x74\x60\x90\x16\x36\x6b\xc9\xa4\x77\xe1\x2e\xf3\xc0\x9f\xbf\x2e\x7b\x4b\x1f\xb7\x6a\x2c\xd7\x0d\x56\x33\x11\xc9\xe7\xd0\x5b\xe0\xb6\xe7\xb4\x79\xa5\x64\xf4\x95\xf4\xda\xf0\x2b\x11\xee\xb6\x4b\xf5\xfc\x12\x61\x60\x8d\xa7\x36\xc4\xb6\xb9\xad\x59\xe5\x36\x2b\x3f\x01\x17\xb9\xa2\xf4\x47\xf3\xaa\x96\x14\x8f\xe6\x3d\x0f\x24\x47\x26\x0a\x6b\x26\x49\x98\x8d\x93\x7c\xd5\x60\x21\x6c\xcb\xfd\x2c\xb0\x6e\x56\xe8\xb6\x7f\x05\x19\xe9\xa9\xb5\x30\x6f\x6d\x05\xc6\xa2\xd3\x5a\xf1\x4a\xdf\x25\xb8\xc3\x8c\xfb\x42\x0b\x5a\xf0\xe7\x46\x59\x00\x6a\x3e\xc5\x46\xa7\xd0\x59\x11\xa5\x20\xed\xcf\x07\x88\x89\x77\xe7\x54\x69\x25\x58\xb5\x42\x02\xdf\x7f\x0a\x7b\x1d\x9c\x45\x1f\xb7\x4a\xdf\x0c\xb2\x15\xb0\x13\x6a\x56\x6e\xec\x24\x87\xed\x37\x7d\x91\x15\x1d\x36\x70\x47\x4c\xa5\xc0\x38\xa3\xb7\x85\xc4\xb2\x1d\xe8\x80\xad\x34\x2c\xf5\x33\xe2\xa0\x2c\x7a\x31\x40\x56\xbd\xb9\x9b\x5c\xe7\xcf\x4c\x48\xc7\xd8\x11\x16\x3b\x9f\x8e\xd2\xc8\x87\x2b\xf7\x1d\x3f\x17\x2e\x6a\xce\x7f\xf0\x1e\x1c\x1e\xa9\xed\xa3\xdb\x76\xc6\xad\x97\x2d\xb7\xcb\x8d\x31\xdd\x6a\x8d\xe6\x8c\x24\x6c\x63\x5c\x93\x2e\xf0\x6c\xa1\x52\xab\xc0\x59\xde\x36\x41\xc5\x26\xe9\x8d\x32\x9d\x02\x74\xd6\x01\x8a\xee\xad\x2f\xaa\xfc\x3e\x9d\x2b\xeb\x12\xfc\x5c\x3a\x48\x9f\xd7\x2d\x42\x46\x87\x59\x92\x02\xb6\xc0\x18\x5b\x93\xb9\xb9\x58\xaf\x7c\xfa\x3b\xd4\xb7\xe2\x8e\xfd\x04\xe0\x21\x56\x81\xc5\x36\x80\xee\xb2\xf3\xc2\x5f\x82\xb9\x4d\x67\x1f\x0e\x3d\x7f\x35\x2e\x89\xd3\xe7\x46\x32\x21\x27\xa4\x4d\x7d\x6f\x1f\x77\x42\x5a\xc1\x3f\xa0\xc3\xd6\x7c\xc4\xcc\x13\x77\x4c\xcb\xf5\xc7\x05\x5a\x62\x25\x87\x5f\xcb\xe7\x86\x14\xfa\x3c\x86\x77\x3f\x2f\x86\x03\x8b\x70\xc6\x4d\xce\x59\x86\x4d\x6e\xd6\xdb\x6d\x2e\x6a\xa9\x26\xcc\x0a\xb5\x9b\xdb\x5d\xcc\xbe\xbb\x7a\x8f\x18\x47\x3f\x35\x40\x17\x12\x17\x0f\x87\x43\x33\x61\x8c\x85\x23\x17\xf9\xb2\x7a\x5b\x05\xcc\x50\x0d\x12\x97\x58\xe2\xee\x86\x68\xc0\x45\x8e\xb6\x06\xb0\x26\xc7\x25\x7a\x7c\xdb\xff\xa5\x39\xd3\xc4\x71\xec\x0f\x26\x47\x13\xca\xcb\xfe\x04\x62\x21\x19\xc7\x6b\xb0\x77\x7a\x75\x81\x8b\x02\x94\x6a\xd7\xa9\x77\x06\xa6\x07\x42\xcb\x4b\x74\x6e\x5c\x0e\x93\xe3\x6e\xff\xec\x8e\xfe\x15\x97\xe8\xef\xff\x3c\x33\xa3\x42\xf9\xc9\xc1\xa1\x6e\xce\x66\xb3\x33\xdc\x10\x67\x54\x21\xdc\x10\xe5\x20\x52\xfd\xc4\xfc\xe1\x4f\x62\x4e\xd8\xc5\xe3\xdb\x25\x48\xfc\xf6\xcc\x7c\xea\xaa\x15\x92\xd5\x77\x20\x58\xcb\x0b\xb8\x56\xc6\x9e\xfe\xca\x99\xa3\x8c\x06\xb4\x4f\xb2\x32\x60\x2a\x41\xca\x59\x55\x01\x9f\xad\x81\xce\x1f\xda\x25\x2c\x5b\x52\x95\xc0\xf5\x17\x3a\x4a\x7d\x3d\xff\x66\xfe\x67\x05\x3c\x07\xfd\xfa\x3d\xa9\x95\x87\x5a\x37\x97\x88\xb6\xda\x10\x32\x94\x93\x95\xf0\xcc\x59\x5b\x0e\xa3\x81\x6e\x38\x53\xf4\xb7\x67\x89\xce\x09\x3b\x53\x33\xa4\xa0\x58\x73\xd6\x36\x97\x68\xf7\x01\x9b\xe6\xee\x13\xf4\xfe\xc3\xc2\x33\xbf\xaf\xbb\xf1\xf5\x23\x4a\x35\xfc\x10\x7d\xec\x83\xeb\x2c\xee\x66\x24\x08\xaf\x99\xef\x0d\xe3\xd2\x9b\xd4\x99\x7b\xde\xfe\x6c\x4b\x13\xc2\xc3\xa8\xd9\x2d\x98\xe2\xbe\x2e\x05\xbf\x3c\xdb\xdd\x8e\x60\x0d\xd0\x77\xb7\x37\x9f\xbe\x5d\x14\x1b\xa8\xb1\xe3\xea\x61\xa0\x2a\x80\x92\xd6\x8a\x54\xdb\xd2\xbe\x63\xe2\x3d\x70\x75\x77\xdd\x15\x92\x90\xad\x92\xca\x05\xe8\x28\x0d\x59\xd3\x0b\x59\x89\x99\x87\xc4\xac\xc7\x62\x5e\x1b\x0d\x51\x82\xc4\xa4\xea\x94\xdb\x98\x54\xf7\x98\x36\x64\x46\xbd\x52\x98\x5a\xab\xdf\xb9\x4f\xda\x77\x32\xf7\xa0\x44\x42\x53\xc1\x98\x17\xc4\xd3\x7d\xbb\x45\x2f\x4c\xe7\x86\x9b\x95\x3d\xd7\x49\x86\xc0\x85\xd3\x5e\x05\xa3\x8f\xc0\x25\xe2\x50\xb0\x35\x25\xff\xea\x46\x16\xce\x92\xae\x94\xc3\x3b\x94\x51\xba\xfe\xd0\xc6\x22\x94\xd5\xaf\xcc\xf7\x1a\x3f\x23\x0e\x3a\x5c\xd7\x52\x6f\x34\xb3\xdf\x3d\x47\x3f\x32\x7d\xca\xd7\x8a\x5d\xa2\x8d\x94\x8d\xb8\xbc\xb8\x58\x13\xe9\x96\x69\xc1\xea\xba\xa5\x44\x3e\x5f\xe8\xc5\x46\x96\xad\x64\x5c\x5c\xe8\xca\x99\x0b\x41\xd6\x33\xcc\x8b\x0d\x91\x50\xc8\x96\xc3\x05\x6e\xc8\x4c\x03\x4e\xcd\xb2\xa9\xcb\x3f\x70\xbb\xa6\xc5\xab\x1d\xa1\xb8\x25\x85\xf5\x1a\x09\xd2\x5d\x2d\x0d\x63\x43\xd9\xc3\xaa\x1e\x87\x5b\x9a\xee\xb8\xc1\xbb\xf7\x8b\x7b\xe4\x3e\xaa\xa7\x60\x48\x73\x17\xb8\x74\x16\x49\x4f\x78\x45\x28\x42\x57\x60\x53\xa9\xbb\x02\xeb\xee\x34\xdb\x40\x08\x47\xb4\xcb\x9a\x48\xd1\x7b\xb1\x92\xcd\xd1\x95\x16\x56\x7a\x57\xaa\x31\xf1\x1b\x74\x43\xd1\x15\xae\xa1\xba\xc2\x02\x8e\x4e\x76\x45\x61\x31\x53\x24\x4d\x13\xde\x97\xb1\x51\x6d\xe6\x64\xde\xe8\x0c\x85\x96\xf8\xa2\x81\x62\xb0\x54\xd4\x28\xce\xfa\xbe\xba\xbb\xce\x70\x33\x3c\xc9\xb6\x6d\x81\x04\xec\xd2\x01\x64\xe3\x92\xa7\xc6\x8d\x81\x07\xb7\x72\xc3\xb8\xad\xa9\xe2\xb0\x02\x0e\xe3\x3b\x3b\x49\x67\xd1\x94\x98\x29\xbb\x87\xad\xfa\xbb\x23\xf6\x74\xdc\xa4\x4c\x79\xb6\x87\xf0\x6b\x63\xa7\x6b\x85\xdd\x5a\xcc\xd7\x06\x30\x83\xd8\x5e\xe0\x99\x57\xa7\x51\x1e\xb9\x9e\x03\xda\xca\xd7\x88\xb9\xe8\x43\x57\xb4\xaa\x97\xdd\xcd\x0a\xdd\x6f\x01\x19\x3e\x4c\x95\x92\x4a\x19\x91\xfa\xc0\x39\x03\xdf\x28\xa7\xbc\x52\x62\xc7\x06\x44\x5c\x72\x4f\x60\xc4\xad\x6f\x0f\xdc\x3d\xeb\x84\x6e\x30\xc7\x85\x04\xfe\x06\x9d\xff\xf1\xdc\x43\x28\x30\xe2\x18\x9a\x3a\x66\x16\x63\x2f\x94\x4a\xe4\xc9\xb4\x82\xc7\x33\x17\xe2\x3d\x18\x82\x1b\x23\xb3\x1d\xf6\xd9\xdd\xf8\x99\xda\xa8\x61\x0c\x94\x19\xda\x36\x84\x82\x83\xff\xbb\x1b\xe2\xff\x1d\x00\x00\xff\xff\x75\xfc\x4f\x56\x43\xf1\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfd\x73\xe4\xb6\xb1\xe0\xef\xfb\x57\xa0\x36\x57\xb5\xbb\x2e\xcd\xc8\x6b\x3f\xe7\x12\xfd\x92\xda\xd3\xda\x79\xba\xac\xd7\x7a\x92\xb2\xae\x3a\xef\x5e\x84\x21\x7b\x66\x70\x22\x81\x31\x00\x4a\x9a\xbc\x7a\xff\xfb\x15\xba\x01\x12\xf3\x41\x10\xa3\x8f\x9c\x73\x21\xab\x12\xaf\x86\x64\xb3\xd1\x68\xf4\x37\x1a\x93\xc9\xe4\x05\x5f\x89\x4f\xa0\x8d\x50\xf2\x84\xf1\x95\x80\x7b\x0b\xd2\xfd\x65\xa6\x37\x7f\x30\x53\xa1\x8e\x6f\xdf\xce\xc0\xf2\xb7\x2f\x6e\x84\x2c\x4f\xd8\x69\x63\xac\xaa\x2f\xc0\xa8\x46\x17\xf0\x1e\xe6\x42\x0a\x2b\x94\x7c\x51\x83\xe5\x25\xb7\xfc\xe4\x05\x63\x5c\x4a\x65\xb9\xfb\xd9\xb8\x3f\x19\x2b\x94\xb4\x5a\x55\x15\xe8\xc9\x02\xe4\xf4\xa6\x99\xc1\xac\x11\x55\x09\x1a\xbf\x10\xbe\x7f\xfb\xf5\xf4\x9b\xe9\x1f\x5f\x30\x56\x68\xc0\xd7\xaf\x44\x0d\xc6\xf2\x7a\x75\xc2\x64\x53\x55\x2f\x18\x93\xbc\x86\x13\xb6\xb4\x76\xb5\xd2\xea\x5e\x80\x99\xae\xb4\xfa\x3f\x50\x58\xf7\x09\xd5\x38\x78\x2f\xcc\x0a\x0a\x44\xa3\x2c\x11\x37\x5e\x9d\x6b\x21\x2d\xe8\x53\x55\x35\x35\xe1\x34\x61\xff\xf3\xf2\xa7\x8f\xe7\xdc\x2e\x4f\xd8\xd4\xbd\x30\xbd\x15\xda\x36\xbc\x5a\x2a\x63\xa7\xf3\x5f\x4b\x89\x88\x97\x60\x0a\x2d\x56\x16\xd1\xfb\xa1\xa9\xaa\x35\xfb\xb5\xe1\x95\x98\x0b\x28\x59\xa9\x6a\x2e\x24\xa2\x84\x0f\x13\x6e\x3f\xfc\xc7\xfb\x8f\xf8\xa7\x5d\xaf\xe0\x84\x19\xab\x85\x5c\x0c\x7e\xd1\x56\x66\x6a\xa0\xd0\x60\x3f\x06\x70\x1b\xdf\xbe\xc4\x7b\xec\x4e\xd8\x25\xbb\xfa\x70\xe9\x28\x54\x82\xb4\x82\x57\x26\xfa\xb6\xbb\x43\x4f\x0e\x63\x60\xb9\x6d\xcc\xb4\x68\xb4\x06\x69\x2f\xf1\xaf\xdd\xcf\x5e\x2d\x81\xf9\x47\x18\xbd\xc1\xd4\x9c\xd9\x25\xb0\x7f\xbf\xba\x3a\x3f\xd7\xea\x7e\x1d\x7d\x3e\x82\x92\xf1\xe9\xe8\x43\xbb\x1f\x7e\xdf\xfd\x11\xbe\xb8\x89\xc7\xce\x67\xe3\x57\xf6\xa1\xb0\xd0\xaa\x59\x9d\xb0\x5d\x76\x21\x30\x9e\x53\x89\xcb\x37\x07\x57\x09\x63\xff\xb2\xf9\xfb\x07\x61\x88\xc4\xab\xaa\xd1\xbc\xda\xe0\x48\xfc\xdd\x2c\x95\xc6\xa9\xf4\x70\x27\xee\xc3\x1e\x1e\xfd\xbb\x7d\x52\xc8\x45\x53\x71\xdd\xc1\x70\x4f\x99\x42\x39\xec\x11\xc2\x8a\x17\x50\xba\xdf\x9a\x99\xf6\x0b\xcf\x43\x25\x52\x9c\xb0\xff\xfc\xaf\x17\x8c\xdd\xf2\x4a\x94\xb8\x6c\xe8\xa6\x5a\x81\x7c\x77\x7e\xf6\xe9\xdb\xcb\x62\x09\x35\xa7\x1f\xb7\xc8\xdc\x0e\x88\x09\xc3\xb8\x64\x67\x72\xa1\xc1\x18\x76\x7a\xf1\x9e\x39\x1e\x15\x73\x51\x20\xc8\xa9\x7f\x7b\xa5\xd5\x0a\xb4\x15\x01\x03\x77\x45\x22\xa4\xfd\x6d\xeb\x3b\xaf\x1c\x22\xf4\x0c\x2b\x9d\xd0\x00\x83\x73\xea\x97\x3e\x94\xcc\x20\x92\x34\xd7\xc2\x30\x0d\x2b\x0d\x06\x24\x89\x91\x08\x2c\x73\x8f\x70\xc9\xd4\xcc\x4d\xe3\x94\x5d\x82\x76\x40\x1c\xc1\x9b\xaa\x74\x92\xe6\x16\xb4\x65\x1a\x0a\xb5\x90\xe2\xef\x2d\x64\xc3\xac\xc2\x4f\x56\xdc\x82\x9f\xbc\x70\xa1\x70\x90\xbc\x72\x24\x6c\xe0\x88\x71\x59\xb2\x9a\xaf\x99\x06\xf7\x0d\xd6\xc8\x08\x1a\x3e\x62\xa6\xec\x47\xa5\x81\x09\x39\x57\x34\x6f\xe6\xe4\xf8\x78\x21\x6c\x10\x9a\x85\xaa\xeb\x46\x0a\xbb\x3e\x46\xd1\x27\x66\x8d\x55\xda\x1c\x97\x70\x0b\xd5\xb1\x11\x8b\x09\xd7\xc5\x52\x58\x28\x6c\xa3\xe1\x98\xaf\xc4\x04\x11\x97\x28\x33\xa7\x75\xf9\xbb\x76\xa2\x5f\x45\x98\x6e\x71\x34\x5d\xc8\xb1\xbd\x74\x77\x7c\x8b\x73\xeb\x5f\x23\xfc\x3b\xf2\xba\x9f\x1c\x55\x2e\xbe\xbf\xbc\x62\xe1\xa3\x38\x05\x9b\x34\x47\x6a\x77\xaf\x99\x8e\xf0\x8e\x50\x42\xce\x41\xd3\xc4\xcd\xb5\xaa\x11\x22\xc8\x72\xa5\x84\xb4\xb4\x76\x2b\x01\x72\x93\xe8\xa6\x99\xd5\xc2\xba\x99\xfe\xb5\x01\x63\xdd\xfc\x4c\xd9\x29\xaa\x0e\x36\x03\xd6\xac\x4a\x6e\xa1\x9c\xb2\x33\xc9\x4e\x79\x0d\xd5\x29\x37\xf0\xec\x64\x77\x14\x36\x13\x47\xd2\x61\xc2\xc7\x1a\x6f\xf3\x41\xa2\x56\xfb\x73\xd0\x47\x7b\x67\xa8\x5d\x81\x97\x2b\x28\x36\xd6\x86\x7b\x2d\xc8\xbe\xd3\x8b\xf7\xd3\x08\xc2\xbe\x55\x48\x8c\x5c\x54\x4d\xb9\xfd\xeb\xd6\x17\xcf\xfc\x43\x8c\x57\x95\xba\x63\x73\xa5\xdb\xa5\xce\xb4\x6a\x90\x25\x0a\x25\xe7\x62\xd1\x68\x5c\x7d\x6e\xe5\xcc\x60\x0b\x64\xfb\xb1\x92\xa6\x9c\x4b\x65\x97\xa0\xbb\xf1\x1c\xb1\x95\x32\x46\xcc\x2a\xc7\x1e\xed\x6d\x19\x04\xda\x74\x0b\x9e\xb0\x50\xef\xe0\xbd\x1f\x73\xff\xe3\x0c\x90\xad\xc1\x3a\x22\xad\x54\x25\x0a\x81\x94\xe3\x96\x15\x5c\x3a\x1e\xe2\xab\x55\x25\x50\x74\x6e\x5f\x56\x39\x19\x12\x49\x3f\xc9\x78\x3f\x6e\xfd\x04\xa7\xab\x50\x92\x2c\x8d\xbd\x77\xb7\x97\xe4\x69\xfb\x34\xe3\x1a\xba\x21\xe8\xa6\x0a\xf8\xe3\xef\x84\x3c\xb3\x6a\x2f\xcc\x88\xfe\x61\x18\xce\x1a\x72\xcb\x05\xe6\x73\x28\xec\x91\x63\x9c\x35\x81\x2a\xdd\x63\x4e\xe3\x11\x33\xb5\x08\xf4\x40\x56\xf3\x5d\xe0\x6b\x76\xa1\x1a\x0b\x6e\x11\x34\x85\x5b\xff\x3f\x2f\x41\x06\x24\xbb\x6f\xf5\x40\xac\x41\x2f\xa0\x64\x8d\x53\x76\xec\xdd\xc7\xf7\x47\x64\xc9\x28\x09\x0c\xee\x0b\xe8\xac\x0d\x0d\x61\xf2\x94\xac\xd6\xee\x81\x1e\x88\xe7\x1a\xe6\xe2\x9e\xfd\xc8\x6d\xb1\x6c\x07\xc4\x56\xa0\xa3\xe1\x31\x53\x89\x22\x08\x0d\xbb\x74\x5a\x43\x82\x7f\xf3\xa8\x6f\xec\x9a\xac\x55\x5e\x8a\xc2\x2a\xbd\x8e\xc0\x39\xa4\xab\x8a\xd5\xfc\x06\x90\x8e\x9e\x46\x4c\x48\x54\xbd\xd3\x57\x7b\x41\xf6\x30\x36\x5d\x1b\x9c\xb1\x35\x16\x62\x8e\x05\x48\xd0\xbc\x62\x4b\xe5\xcc\x65\x5c\xad\xb5\x7b\x2e\x96\x44\xdb\x17\x71\x92\x7b\x74\x83\x35\x7e\x92\xe0\xa6\xd6\x53\xce\xdd\x05\xee\x60\xd6\x8d\x41\x91\xbb\xd2\xea\x56\x94\x50\xee\xb2\x3f\x5d\xe9\x45\x40\xd7\x12\x41\xf6\xdf\xdf\x96\x7e\x84\x81\x97\x3f\x5e\xf0\x11\x8c\x6e\x55\xb9\xd5\x8a\x63\xee\x43\x2c\x17\x39\xe6\x5d\x11\x2e\xfa\x56\x6a\x0f\x9a\xa7\xfe\xa5\x08\x51\xee\x14\x98\xd7\xa9\xb8\x66\x1d\x15\x07\x60\x32\xa2\x32\x6a\x50\x27\x72\xa2\xc1\xa2\x5a\x4e\x8d\x8f\xf5\xa9\xa1\x7d\x17\xdc\xf3\xc2\x1e\x34\xc2\xef\xdd\x1b\x9b\xc3\x8b\xc6\xd6\x21\x3a\x38\x42\xb2\x2f\x02\x4b\x81\xf3\x96\x9c\x66\x7f\xaa\x91\xa1\xc5\x7f\xc8\xc0\x9c\x05\xed\x0c\x20\x37\x04\xf7\x72\xd0\xa8\x9e\xee\x81\xb5\x06\xc7\xc5\x17\x8e\x01\xec\xb4\x05\xe8\xec\x16\xa1\x9d\x85\xe2\x99\x18\xd5\x07\xae\xda\x82\x1b\x27\x15\x8c\xf3\xa4\xad\xb8\x7d\xba\x79\x95\xca\x3e\x88\x7f\x3f\x2a\x9b\xc1\xc2\x83\x34\xc0\x59\xf5\xf6\xd9\x3f\x82\x8d\xa5\xb2\x87\x73\xf2\x47\xf5\x1c\xbc\xec\x47\xdd\xf2\x33\x79\xc6\xad\x84\x72\x0c\xa6\x9b\x3e\x5d\xd5\x5d\x62\x83\xf9\x96\xdc\x39\x5d\x6b\x46\xa6\xd1\xd3\xd2\xce\xcf\xcf\x41\xa4\x3b\xf7\x73\x1a\x8b\x63\x67\x4d\x1d\x3c\xcc\x3b\x67\x1b\x84\x15\x57\x86\xe1\x0a\x13\xb0\x3a\x62\x1a\x16\x5c\x97\x95\xf3\x35\x9d\xb5\x61\xfb\x4c\x91\xee\x22\xf2\x38\x56\x06\x42\xcb\x80\x45\x5b\x35\x60\x6d\x15\x9b\xf3\xca\x00\x2b\x15\x18\x37\x61\xc3\xfc\x1c\x34\x79\xa4\x6a\x74\x03\x61\x96\xb6\x91\xe7\x33\xf7\x9d\xbc\x19\x9a\x29\x55\x01\x97\x89\x67\x83\xfc\x48\xcd\xd0\xa4\x0b\x2e\xa5\x3e\xb6\xe5\x6f\x6c\x5f\x2b\x54\xf8\xd9\x3a\xd9\xdb\x07\xc1\x15\xe1\xfe\x7d\x92\x93\x68\x55\xf0\xe0\xb4\xa5\x68\x91\xc1\xa9\x83\xd8\xd3\x03\x5c\x6b\xbe\xde\x73\xbf\x5f\x17\xec\x6a\x80\xbd\x51\xab\x03\x51\x6e\xfd\x83\xcc\x8f\xe2\xb3\x3b\x5f\x76\x7c\xea\x2d\xc7\x29\x7b\x0f\x73\xde\x54\xe8\xfc\xf6\xd1\x28\x8a\x7c\xb5\x08\x38\x0e\x75\x12\xc9\x34\x64\x7f\xef\x9f\x87\xe4\x70\xfa\xd9\xaf\x87\xe9\x12\x93\xd5\x37\x4d\xce\x9b\x1c\x70\x46\xd1\xa9\x20\xad\x49\x26\x35\xc5\x9f\xe8\xcd\x29\x3b\x9b\xb3\xab\xd3\x2e\x42\x15\xc4\xc7\x0e\x72\x1e\x8c\x30\x4c\x2c\xa4\xd2\xbb\x14\xc9\x71\x2f\xc9\xc1\x09\x0a\x96\x7c\x70\xef\x9a\x11\x78\xe2\x7d\x1f\xb6\x65\x18\xb7\xfd\xa7\xf0\x14\x39\x0d\xad\xcf\x67\xcb\xf3\xce\x7a\x60\xef\xf5\xd9\x0e\xf1\xce\x7a\xe0\xee\xf5\xd9\x32\xbd\xb3\xc4\x52\xc2\x99\x1c\x3d\xb6\xe8\x1a\x3d\xb6\xe4\x35\x7a\x6c\x8f\x1c\xd9\xe8\xb1\x8d\x1e\xdb\xd0\x58\x47\x8f\x6d\xf4\xd8\x46\x8f\xad\xbb\xfe\x7f\xf5\xd8\x40\xf2\x59\x05\x3f\xc3\xcc\xa8\xe2\x06\x6c\x8e\x11\xfc\x3d\xbe\x62\xd8\x5d\x78\x09\x9d\x1e\xa5\x2d\x8e\xab\x35\xe9\x52\x1e\x50\xff\xcc\x2e\x81\x57\x76\x79\xba\x84\xe2\xe6\x5c\x55\xa2\x58\x67\x20\x74\x45\xd2\xa0\xb2\x4b\x56\xb8\x17\x29\xf5\xb4\xf6\xe8\x08\x93\xc2\x67\xd8\xe4\x21\xc8\xeb\xab\xa5\x06\xe3\x0c\xc8\x53\xd5\xa4\x44\xc2\x0e\x66\xb2\xa9\x67\xa0\xdd\x0a\xf5\x90\x36\x70\xed\x74\x60\x82\x0d\x66\x30\x57\x68\xc8\x3a\x07\xc7\xad\xa2\x9a\xeb\x1b\x5a\x56\x0e\x60\xef\x9b\x73\xa5\x6b\x6e\x4f\x98\x90\xf6\xf7\xff\xd6\xfb\x54\x2d\xa4\xa8\x9b\xfa\x84\x7d\xdd\xfb\x08\xcd\x9a\x90\x16\x16\xbd\x22\xdf\xe1\x76\x00\x59\x48\x2f\x04\x43\xc2\x8d\x2b\x08\x09\xd9\x7a\xe7\x7e\x80\x09\xca\xd0\x7c\x87\x95\xe4\x9c\xd3\x0a\xe6\x96\x41\xbd\xb2\x6b\xf6\xba\x24\x5f\x9e\xbe\xf5\xe6\xa8\xb3\x5f\x5e\xfa\x62\x93\x09\xc8\x5b\xb5\x9e\xd0\x67\x10\xd6\xcb\xc4\xc7\xd0\x9b\x99\x01\x6b\x4c\xbf\x7d\x9f\xb5\x66\xb1\xba\xe1\x96\x57\x97\xe0\x84\x66\xc2\x0c\xd9\xa1\x5a\x78\x93\xbd\x36\xf4\xee\x1b\x36\x03\x7b\x07\x20\x37\xb9\xea\x91\x2c\x91\x33\xdf\x2b\x6e\x97\x99\x98\xe3\x5c\xb6\xd5\x07\x8e\x7c\x4e\xd1\xac\x40\x3b\x6c\xb6\x96\x83\x4a\xc9\xfb\x66\x65\xac\x06\x5e\x33\x03\xfa\x56\x14\xfd\x52\x3d\x47\x70\x8a\x1a\x54\x63\x0f\x9f\x03\xf7\xa2\xc3\xff\x8e\x0b\x1b\xcd\x03\x09\xf5\x78\x30\x49\xc5\x65\x56\x4a\x9a\xfe\x01\x3c\xdd\x3c\x35\xf2\xe9\x24\x58\x0b\xeb\xe9\x64\x58\x0b\xf2\xb7\x20\xc5\xd2\xf6\xc4\x04\x79\x3e\xa1\xd6\x7a\xb5\x70\xa5\x78\xf9\x3f\x78\xc5\x65\x01\xfa\x20\xb5\xe6\x5e\x64\x33\x7c\xd3\x99\x69\x4f\xaa\xd8\x8c\xd5\xdc\xc2\xa2\x07\x95\x1d\x74\x2e\xfd\xe3\x5b\x81\x06\x8f\x52\x58\xd4\x84\x6b\xca\xdc\x6a\xab\x8b\x78\xa1\x95\x09\x40\x54\xe5\xf8\x6b\xc6\x8b\x1b\x90\x25\x5b\xa9\xd2\x4c\xd9\x27\x5e\x89\x32\x7c\x00\x3d\xc3\x04\x58\xe7\x33\x5e\x5f\x70\x59\xaa\xfa\xfa\x88\x5d\x5f\xa8\x46\x96\x17\x6a\x26\xa4\xfb\xeb\x67\x10\x8b\xa5\x85\xf2\x03\x70\x63\x2f\x08\x01\x7c\x8a\x9e\x4f\x81\x95\x25\xbb\x3e\x55\xea\x46\xc0\x35\xea\x17\x2e\x59\x23\x6f\xa4\xba\x93\x2d\x01\x49\xa7\x88\xce\x2d\x2c\x99\x4a\x39\x46\x52\x85\x41\xb9\x77\x9a\x28\xf8\xc7\x82\xc6\x8a\xf1\xef\x1e\x4e\x49\xc6\xc7\xe9\xa4\x01\xfe\x75\x7c\x7f\x01\x77\x5a\x58\x38\x88\x7d\x23\x7e\xd5\xf8\x7a\x28\x6e\x73\x00\x83\xf2\xf7\x0c\xd1\x83\xfc\x5f\x2f\x3e\x30\x3e\xb7\xa0\xe3\x67\xd1\xeb\x9b\x39\xad\x87\x2b\x00\x39\x8f\x63\xfd\x5b\x6f\xfc\x72\x78\x3d\x68\x58\x55\xbc\x80\xf3\x01\x4b\x7f\x33\x40\x1d\xbf\x13\x55\x41\x2d\xd5\x5d\x37\x4e\x6f\xfb\x53\x3d\x64\x52\x44\x06\x1c\x12\x53\x99\x0c\x85\x66\xe3\xc7\x37\x30\xf3\x5f\xad\x07\x3c\xb3\xdc\xf0\xe0\xb0\xaf\xb4\x83\xe7\x4b\x8f\xe1\xa6\x6c\x71\x73\x1f\xe3\xd9\x1b\x4e\xef\xae\x98\x86\xec\xb3\x74\x2b\xd6\x83\x8e\xd7\xe7\x11\x13\x14\x6c\xa4\x28\x5f\xd5\xaf\x7c\xc2\x45\x8e\x9b\x43\x6a\x3b\x82\xee\x51\x73\xde\x34\x46\xb4\x64\x09\x1a\x4a\x36\x1b\x86\x89\x5e\xf3\x92\x0b\xd9\x95\x77\xb9\xf5\x11\xc5\x9b\x51\xfc\x60\x08\x1f\xe1\xf7\xaa\x9f\xf8\xf2\x08\x05\x63\x35\x50\x83\xcd\xd6\x81\x1b\x70\x9e\xd9\x95\x53\x20\x58\x70\x38\x1c\x37\x88\x51\x6a\x93\x1c\x6d\x41\x9a\x5d\x6a\xd5\x2c\x96\xac\x6e\x2a\x2b\x56\x95\xf3\xff\x54\x46\x30\xc2\x2a\x1a\x9a\xc7\xb0\x2b\x79\x8c\xa6\x1c\xcc\x11\xab\x80\xdf\x3a\xba\x60\x84\x67\x18\x6c\x23\x6b\x55\xe2\x2c\xef\x32\x00\x66\xe8\x3a\x26\xe0\x55\x15\xea\x2b\x33\xc9\x0a\x1b\x33\xbc\x51\x73\x46\x33\xb9\x4d\xf6\x69\xca\xa1\x60\x64\xb7\x7c\x00\xb9\xb0\xcb\x13\xf6\xf6\xa9\xe2\x56\xd1\x7a\x3e\x68\x15\x46\xfc\x11\xc2\xbd\xdb\x51\xbf\x6c\x72\x45\xcb\x76\x87\x15\xef\x84\x5d\x7a\x06\x8c\x02\x83\x83\x30\xd1\xab\x1b\x0a\x1d\x3d\x3d\x3d\xf3\x82\x4c\x11\xcd\x1f\x1b\x6b\x4a\x47\x6c\x86\x95\x35\xe8\x5a\xd8\x33\x69\xa0\x68\x74\x4e\x66\xfc\x1d\x56\x1d\xa3\x41\x89\xd3\x66\x95\xf7\x4f\x4a\xca\x8c\x13\xa0\xce\x70\x53\xb7\xbd\xce\x06\x7a\x7a\x77\x4b\x51\x2c\x51\x44\x48\x67\xba\x57\xd5\x1a\x67\x98\xf0\x72\xda\x1a\x43\x9b\x9c\x5d\x6f\x6d\xb7\xe9\xb3\xc3\x66\x95\x2a\x6e\xa2\xc8\xe7\xc3\x22\x4b\x1e\x7d\x4a\x34\x98\x87\x9a\x31\x35\x97\x7c\xe1\x56\x44\x6b\x89\x10\x3c\x56\x36\xb8\x50\x70\xb7\x48\x1f\x3f\xe5\xd8\x20\xb5\xba\x4d\x24\x67\xb6\x96\xab\x7b\x78\x23\x48\x5f\x09\x83\xf9\xe8\x10\x3d\x69\x73\x2a\x29\x9e\x54\xfe\xb3\x8f\x30\x3a\xb2\x96\xd2\x10\x5f\x33\x66\x20\xd7\x2f\xbd\x04\x3b\x38\x70\xda\x18\x32\x94\x96\x09\xd2\xc9\x80\xdd\x8e\x3d\x95\xa0\xd1\xe6\x8f\xd2\x0d\x21\x2e\xce\xe0\x5e\x24\x73\x95\xc2\xb6\x90\xb1\xd8\xfb\x88\xf4\xd7\x9d\x30\x10\xdf\x73\x6b\xc9\x19\xc6\x16\x24\x8a\xc5\x14\x8d\x9d\x2b\x0e\x77\x43\x39\x8e\xc3\x0c\x44\x5a\x0e\x9f\x36\xb7\xa0\x18\x0a\x64\x04\xe6\x39\xc6\x2f\xa6\x4d\x3e\x2e\x52\x1e\x4f\xae\xe5\xf8\xb0\xcc\xe4\x06\xde\x37\xb0\xc6\xfd\x48\x79\xf9\xa9\xe7\xd0\xbe\x48\xad\x83\x46\xb1\x43\x7e\x1b\x07\x48\x33\x87\xc2\x22\xf7\x73\xb6\x26\x4a\xfc\x46\x75\xe5\x40\x42\x66\xc2\x86\x18\xee\x1f\xa1\x46\x43\x88\xee\xe9\x14\x06\xc1\x1b\x35\x06\xc1\x18\x35\xc6\xd6\x35\x6a\x8c\xf8\xf6\xa8\x31\x52\xa3\x18\x35\xc6\xd6\x03\xbf\x0d\x8d\x61\xf5\xfa\x20\x3d\x81\x6f\x3c\x6d\x54\xbf\x38\x20\xb9\xf3\xb1\xa9\x2f\xc0\x6a\x41\x75\xba\x35\xbf\x17\x75\x53\x53\x4c\x08\xca\x28\xed\xa3\xe9\xa1\x94\xeb\x7d\xb6\x59\xfe\xec\x73\xad\xdb\x10\xdc\x67\x94\x4c\x88\xa2\x7f\x68\xc6\x7a\x05\xfa\x4a\xaf\xaf\x28\x0f\x98\x49\xb2\xf3\xf8\x9d\xad\x70\xa5\xcf\x28\x62\x51\x2d\xce\x6c\x2a\xaf\x60\x2d\xd4\x2b\x3b\x65\x67\x54\x1d\xcd\xc4\x7c\x6b\x3a\x86\xab\xc9\x59\xde\x2a\x43\xda\xf3\x59\x05\xd4\x95\xe1\x54\xed\xd9\x8e\xdc\x33\xda\x97\x17\x7b\xde\xdd\x1a\x35\xaa\xbe\xa8\x03\xc4\xfe\xab\xc0\x37\xa9\xe6\x88\xfa\x02\xcc\xc0\x73\x05\xc5\xe9\x30\x1a\x34\x17\x50\x95\xc4\x24\x18\x18\x74\x5f\xb2\xc9\xb4\x22\x86\x12\xd6\xaa\x69\xc3\x70\xd7\xed\x70\x27\x84\xd4\x04\x3f\x7d\x1d\x34\xf5\xb5\x1b\xd2\xfa\x27\x99\x4a\xfa\x20\x1a\x89\xc8\xdd\xa0\xc2\x8c\xd8\xf8\xdb\x6f\x06\xa5\x52\x9a\x4b\x73\xac\x20\x4d\x63\x3a\x64\x56\xd7\x3f\xc9\xad\x89\xec\x2a\xe1\x99\x92\x3e\x88\x93\x8c\xb8\x93\xf4\xea\x0a\x99\xdc\x34\x5e\x52\x29\x10\x94\xec\x17\x64\x8c\x0e\xe8\x97\xd7\xa1\x3d\xc0\xdd\xdd\xdd\x14\x0b\x2f\xd0\xf4\x9d\x0a\x75\x5c\xaa\xc2\x1c\xe3\x4f\xc7\xd4\x0c\xe2\x78\x63\xbb\xfb\xb1\x7b\x13\xff\xef\x6f\x73\x51\x59\xd0\xe6\x18\x65\xa4\xf6\x7f\xfe\xee\xde\x17\x72\x20\x46\x13\x25\xdf\xa4\x26\xe7\xb3\x64\x13\x76\xfd\xdd\xfd\xfd\xb5\xfb\xef\x82\x5b\xb8\xe3\xeb\x09\x68\xad\x34\xfe\xe2\x54\xaa\xc5\x7f\x15\x4a\x4a\x28\xec\x64\xce\x45\xd5\x68\x48\xb1\xcc\x24\x66\xbc\x7f\xf3\xb0\x35\xcc\x1b\x03\xe5\x84\x8a\x16\xae\x37\x1f\xda\xe0\xce\x5c\xc8\xde\x77\xb8\xde\x22\xf5\xe2\xe2\xfc\xf4\xff\x09\xa9\x17\x7a\x55\xe4\xd1\xbb\xe0\xb2\x80\xaa\x82\x12\xc9\x50\x02\x2f\x2b\x21\x61\x02\xf7\x05\x40\xe9\x7f\x0d\x5d\x3f\xc2\x34\x60\xeb\x8b\x09\xdc\x2f\x79\x63\x2c\x94\x03\x54\x6a\x24\xbf\xe5\xa2\x72\x74\xba\x7e\xc4\xda\xdd\x72\x98\x68\xa5\xc4\xfd\x3a\xdc\x72\x64\xbc\x12\xdc\xd0\xa6\x8c\xae\xcb\x4b\xd2\x22\xb2\x8a\x81\x34\x8d\x86\x2e\x98\x4e\x06\x9b\x30\x04\x22\xa5\x5e\x41\x36\x75\xda\x42\xfa\xee\xfe\x3e\x79\x7f\x83\xcf\x07\x22\xd9\x06\x52\x7e\xca\x84\x6d\xad\x8b\x01\x68\xd1\xaa\x18\x78\x32\x5e\x2d\x99\x40\xe3\x55\x94\xf9\x8a\x5f\x43\xe9\x11\x06\x6e\x4d\x3e\xb5\xc3\xc5\xc9\xa7\x03\x77\x0f\x11\x7f\x8b\xeb\x93\x8f\x47\x3c\xff\xdc\xbe\xf6\x80\xf1\xeb\x2b\xb2\x72\x0a\x48\x7d\x9e\xbe\xdb\x63\x16\xde\xc5\xaa\x30\xda\x91\xa7\xf9\x7c\x2e\x8a\xfd\x4b\x22\x7f\x37\x90\xff\x52\x57\x87\x2b\xd9\x5f\x9a\x19\x68\x09\x16\x4c\x7b\x37\x7c\xb5\x9f\x34\x29\x6c\xf2\x7c\xd5\x5a\xb8\x75\x97\x2d\x77\xce\xe6\xec\x47\x7c\x23\x94\x8b\x23\x9d\x02\xc2\x18\x0a\xd0\x50\x80\xb8\x4d\x3b\xd9\x4e\x37\x73\x9f\x41\x26\x0c\x42\xd1\x85\x1f\x52\x96\xd3\xe1\x89\x90\x55\x93\x3d\xe4\x8f\x0f\xee\x2b\x89\xe6\xc7\xe4\xce\x0f\x8b\xe6\x88\xf6\x79\xfa\x19\x2f\x19\xee\x85\x8b\x0b\x37\x1d\xb4\x4a\xa9\x1b\xd6\xac\x58\xa1\xb4\x4f\x74\x0d\x6e\x06\xf2\xc5\x8b\xc6\xdb\x45\x7e\x07\x09\x25\x80\x57\xc8\xb8\x99\x04\x1c\x58\x85\x4e\xa3\xe7\x57\x99\x2b\x6d\xb1\xca\x15\x87\xca\x0d\x3b\x23\x4b\xf2\xcd\xce\x42\x1a\xd2\x4c\x46\xc8\x82\xb6\x33\x12\xc9\x0b\x2e\xd9\x92\xdf\x42\x97\xd3\xf7\x5f\x49\x2a\xa9\xfb\xa2\x6a\x8c\xb8\x85\x1f\xc9\x93\x3c\x19\xda\xe8\x50\x87\xe7\x7e\xff\xdd\x77\xdf\xfe\x3e\xf5\x60\x70\xf8\x52\x41\x87\x3c\x63\x7a\xa5\x95\x55\x85\xaa\x0e\x28\xe5\xa7\x17\xb0\xad\x56\xc4\x44\x64\x3c\xaf\xd9\x6b\xb7\xa8\x6e\x41\x6b\x51\xc2\x9b\x34\x9d\x97\xd0\x7e\xbe\x05\xa3\x81\x63\x61\x89\x68\xe5\xd1\x94\xa2\x3b\xc6\x7f\x30\x0d\xb2\x32\x47\x6c\xf9\x8d\xfb\x5f\x81\x81\x47\x45\x29\xd6\xa3\xf6\x43\x13\x03\x15\x14\x58\xaa\x32\xe7\x55\x65\xb0\xc6\x2e\x09\x53\xc9\x56\xd0\x44\x6d\x23\x1f\x67\x9d\x2c\x53\x5e\x90\xbb\x9d\xe2\xd0\x89\x1b\xe6\x63\x17\x56\x7e\xfa\x97\xae\x47\x24\x81\xd3\x71\xcf\x54\xb8\xbf\x7d\x24\x2b\xf6\x39\x14\xfa\xdf\x33\x90\xbc\x04\xc0\x60\xdc\x90\xb6\xe9\x65\xa4\x01\xe8\x1a\xb4\xb9\xe9\xca\x8e\x97\xe6\xb8\xc4\x74\x25\xd3\x03\x74\x3d\x30\x49\x30\x3c\x1a\x67\xe5\x1f\x94\x2a\x18\x04\xb9\x99\x4a\xc8\x49\x18\x0c\x82\xdc\x93\x50\xc8\x4d\x1b\xd0\x95\x39\xb7\xcf\x91\x42\xa0\x6b\x20\x91\xe0\x1f\xca\x5c\x52\x74\xe5\x24\x15\xf6\x0c\xeb\xb1\xa9\x05\xba\x0e\x08\xb1\xd3\x75\xc0\xb2\x61\xb9\xc9\x06\xba\x9e\x23\xe5\x40\xd7\xc1\x89\x07\xba\x9e\x97\x36\x39\xa9\x08\xba\x06\x13\x12\xe1\xb1\x3c\x26\xce\x4a\x4e\xc4\x8f\x0e\x09\xbe\x2c\x80\x07\x24\xb8\xe9\x7a\x4c\x9a\x7b\xd4\x89\x5b\xd7\xa8\x13\x47\x9d\x38\xea\xc4\x51\x27\x76\xd7\xa8\x13\x77\xb1\xfc\x47\xeb\xc4\xed\x8e\xed\xfb\xaf\x0d\x1e\xf8\xab\xdf\x93\xfa\xa9\x7d\xb5\x0d\x37\xe2\x2e\x20\xc5\x6e\x41\x8b\x39\x6e\x16\x48\x0e\x24\x6c\x7e\xf3\x31\x98\x57\x86\x15\x6e\x79\x62\xbf\xf7\xd4\x9b\xd9\x5d\x7b\x38\x1d\x44\x70\x78\xb9\x8c\x8f\x19\x6e\x84\xe6\xf0\xf0\x83\x2e\x1c\x32\x38\x9f\x9e\xb2\xbe\x57\x44\x37\xb0\x50\xd4\xdd\x6d\xa8\xf0\x74\xc8\x9a\xf4\x0c\x2e\x36\x0d\x4e\xf9\xc7\x43\x0b\x85\xfe\x02\x6b\x1f\xec\x13\x86\xc1\x3d\x65\xa2\xa9\xf1\x76\xd4\xb8\x25\x43\xe5\x01\x7b\xe5\x71\x78\x57\x21\x1a\xaf\x02\x41\xbb\xa1\xe7\xcd\xf4\x01\xe3\xce\x2b\xab\x09\x2c\x91\x7c\x28\x22\xe0\x63\x97\xd7\x1d\xee\xc3\xcc\x5e\x5a\xb4\x6d\xb3\x5d\x4e\x2b\xd0\x05\x48\xcb\x17\xc4\x91\x3e\x82\x9d\xb5\xe9\x94\x65\x04\x42\xf3\x6a\x4f\xb2\xaa\x4f\xf2\x82\x91\x43\x73\x94\x94\xa8\x13\x0c\x15\xf7\xdc\x1c\x9c\x8c\x5a\xc8\x33\x34\x52\x7a\x74\x46\x5a\xa4\xfa\x42\x97\x83\x4a\x9d\xda\xe2\x98\xa7\x2c\x76\x12\x65\x95\x5b\xfa\x1a\x4a\x76\x68\x2f\x29\x2e\xec\x23\xdf\xa4\x46\x83\xdf\xac\xc2\x78\x61\xc5\x6d\xb7\xd3\x25\xcd\x2c\x11\xfe\x47\xa1\x80\x42\xfa\x50\x6b\x68\xca\xf0\xbd\xbc\x55\x6b\xdc\xc5\x97\x27\xd9\x94\xde\x7a\x05\xee\xfd\x41\x18\x74\x5e\x43\x6b\xdc\x16\x95\x32\x78\x16\xc3\x7c\xa0\x4b\x4f\xb4\xdd\x8d\x86\x8a\xa5\x45\x6e\x2d\x4d\x7c\xe7\xbd\xb2\x6a\x67\xc7\x3d\x83\x5b\xf9\x78\x02\x62\x34\x4c\xf4\xfa\x40\x4f\xee\x44\x89\x5b\xc5\x80\xd7\x7f\x73\xf0\xfe\x16\x66\x3b\xec\x67\x56\x73\xf6\x5d\x2a\xa5\x6b\xac\x1b\x17\xf5\x41\x4c\x84\x9a\xb3\xaa\x9d\xc8\xff\x3c\x90\x2d\x68\x8b\x72\x01\x02\xb7\x1a\xf2\xce\x8d\x6d\x4f\xcf\x30\x78\xba\x46\x62\x0c\xc4\x59\x2b\xad\x0a\x30\x26\x40\xa1\xf8\x30\x02\xa1\x19\x9c\xee\x94\xca\x25\x40\x22\x2f\xbc\x32\x6c\xa3\x91\x89\x23\xe6\xdb\xef\xcc\x13\x50\x2b\x29\x26\x52\xed\x48\x43\xc2\x76\xe7\xd6\x03\x5a\x92\xda\x82\x8e\xd8\x49\x36\x25\x6d\x5b\x8e\x2e\x55\x55\x1a\xf7\xa7\xcf\x6f\x09\x49\x62\x3b\x3a\x10\x27\x5c\x29\xf1\x91\xd5\x66\xe8\xb0\x26\x43\xb6\x58\xf5\xa6\x29\x87\x24\xd9\x41\x1d\x3a\x1e\xdc\x61\xc8\xf7\xe0\xe8\xe5\x97\x03\xfb\x0b\xe5\x14\xb9\x0d\xab\xc1\xcc\x5e\x38\x4f\xdd\x09\x27\x47\xd9\x0f\x23\x9f\xd7\x43\xe6\xe1\x1d\x64\x86\xfa\xc4\x3c\xcd\x28\x0e\xec\x10\xf3\x1c\xfd\x61\x1e\xda\x1d\xe6\x29\x78\x30\x29\x05\x7d\x59\xe9\xa0\x78\x08\x07\xe1\x6c\xb5\xfd\x0b\x92\x81\x84\x55\x57\xf9\x5a\x42\x05\x0b\xde\x57\xdd\x83\x67\xe1\x6c\x1d\xde\xb3\x4f\xcc\x0f\x89\x95\x54\xcc\xa6\xd7\xcb\x2b\x96\xa2\x2a\x07\xda\x72\x67\xe8\x96\x81\xd6\xdc\x8f\x6b\xce\xdd\xaf\xf2\xd4\x63\xda\x73\x0f\x0e\x2b\x65\xb1\xf7\x5a\xeb\x39\xfc\xb5\x77\x02\x37\x8b\x76\xc3\x21\x51\xef\x61\xa5\xc1\x39\x8a\x65\xf6\x71\x51\x7d\x4c\x46\x07\x32\x81\x2c\x7d\x07\x95\x6d\x9e\xdb\x7f\x4c\x14\xfb\x2c\xd9\xf7\xf7\xa2\xcf\x3e\x2e\x1b\xa0\x76\x2c\xb5\x30\x96\xdf\x00\x95\x68\xe3\x81\x5f\x6a\x15\xf7\xb7\xe8\x8c\x5c\x2a\xfb\xbe\xe3\x61\xd9\xef\xf7\x06\xf0\x5c\x3f\x82\x26\xda\x2a\x72\x2c\x52\xc1\x4e\x30\xe1\xd4\xbe\x69\x5c\x4a\xee\x9f\x32\xb6\xaf\xa8\x4d\x51\xf3\x01\x0d\xfc\x06\xcd\xf3\x3b\xae\x4b\xc3\x0a\x55\xaf\xb8\x15\x33\x51\x09\x8b\x1c\x78\xfb\x96\x35\x06\xb4\xd9\x5b\x14\x3e\x2e\xc3\x3d\x64\xfd\xe7\x5a\x86\x79\x0d\xba\x0e\x6a\xcf\x05\xdb\x01\xbd\xbd\x96\xfa\x10\xef\x0c\x35\xe9\x7a\x78\x8b\xae\x61\x2f\xf7\x01\x0d\xba\x36\xdb\x70\xf5\x42\x3e\xac\x3d\xd7\x66\x13\xae\x5e\xa0\x07\x34\xe7\xea\x69\xc1\xd5\xcf\xcf\x83\xad\xb9\x92\x0d\xb8\x06\xd8\x39\xc9\x99\xa9\xba\xda\x07\x56\xd5\xee\x81\x94\xc8\x58\x3d\xa2\xa0\x36\x5d\x38\x3b\x1c\xde\x19\x2a\x9a\x7d\x60\xc9\x6c\x32\xba\xf1\x54\x05\xb3\x39\xe5\xb2\xe9\x9c\xda\x33\x95\xca\x3e\x67\xa1\xec\xe3\xcb\x64\x33\x22\x3c\xe9\x12\xd9\x07\x16\xc8\xa6\x53\x18\x4f\x50\x1e\x7b\x60\x71\x6c\x66\x69\x6c\x46\x61\x6c\xd6\x4e\xc8\xc1\xa2\xd8\x67\x29\x89\x7d\x58\x41\x2c\x16\xbd\x26\xa0\x1e\x5e\x0e\x1b\x95\xbc\xa6\xe2\x7b\x39\xc5\xb0\xe9\x52\xd8\x64\x21\x6c\xba\x0c\x36\x5d\x04\x9b\x15\x18\x3d\xa4\x00\xf6\x79\xca\x5f\x07\x0b\x7d\xf2\x72\x99\x39\x45\x3e\xcf\xd1\xf7\x82\xe5\xf5\xbe\x60\xb9\x25\x20\xd9\x39\xcc\xbc\x0c\xf7\x60\x61\xcf\xf3\x94\xf5\x1c\x5e\xd4\x83\x45\x3b\x03\x50\x0f\x2a\xe9\xd9\x2a\xd9\x19\x00\x7d\x68\x41\x4f\xd6\x5c\x3e\x57\x31\x4f\x46\x29\xcf\x21\x85\x3c\xb9\x65\x3c\x4f\x5e\xc4\x73\x60\x99\xca\x41\x45\x2a\xd9\xe5\x3b\xcf\x55\xbc\xf3\xa0\xd2\x9d\xe7\xa3\x48\x6e\xd1\x4e\x56\xc9\x4e\x5e\xc1\x4e\x76\xb9\x4e\x8e\x28\xcb\x00\x76\x60\xf1\xea\x33\x95\xae\x8e\xfa\x6c\x13\xd6\xa8\xcf\x7a\xaf\x51\x9f\xd1\x35\xea\xb3\x51\x9f\xe1\x35\xea\xb3\xf8\xca\x29\x3c\x7d\x8e\xb2\xd3\x87\x15\x9d\xe6\xad\xd0\xbc\x82\xd3\xe7\x28\x37\x7d\xda\x62\xd3\x4c\x4e\xcd\x2e\x34\x7d\x40\x99\xe9\x60\xf1\x30\x7b\xc2\x22\xd3\xec\xfd\xb4\xe9\x35\x99\x51\x5e\x9a\x57\x5c\x9a\xb1\x7c\x86\x0a\x4b\x9f\xa9\xac\x74\xa8\xa8\xf4\x37\x74\x74\x4d\xaf\x64\x4c\x14\x92\x0e\x10\xbe\x5f\xf4\xf5\xbe\x18\x75\xfc\x4e\xd6\x7b\x7d\xea\x9e\xc3\x14\x35\xd7\x86\x71\xcb\x6a\xf7\xb7\x92\x05\xa0\x01\x26\xec\xc6\x71\x88\xfb\x96\x08\xa1\xe0\x1e\x2b\x94\x34\x82\x1a\xf7\xfb\xcc\x37\x7b\xa9\x95\xb2\x2f\xfb\x4b\x2c\x52\x52\x6e\xfe\x6b\xb9\x57\x52\xef\x38\x1a\xf3\xa6\xaa\xd6\xec\xd7\x86\x57\xa4\x50\x4b\x55\x73\x21\x37\x8e\x51\x75\x68\xf8\x7f\xef\x9d\x86\x70\x04\xb7\xd5\x00\x78\x66\x41\x05\xfc\x16\x4c\x78\xfd\xfd\xbb\x3f\x23\x08\x28\x59\xa8\x38\xf1\xc3\xd6\x50\xf5\xad\x75\x9f\xa1\x75\xc3\xd8\x67\x2c\x26\x45\x80\xad\x86\xb3\x51\x67\xf3\x56\x7a\x75\xa7\x8e\xd8\xca\x44\x44\xa5\xf3\x3f\x2f\x3f\x9e\x25\xfc\x94\x0d\x5b\x1c\xcf\xe0\x80\x92\xf9\x73\x9d\x03\xdc\xd2\xc9\x47\x37\x10\xaa\xc2\xb5\x95\x99\x92\xbe\xe8\x15\x2a\x5e\x9d\xe0\xd9\x03\x21\x45\xc1\x37\xf4\x04\x1d\xe7\x61\x0d\x54\xf3\xee\xf8\x71\xde\xbf\x88\xe8\xf4\x62\xc4\x8f\xec\xae\x1f\xfe\xe3\xfd\xc7\x87\xe4\x7b\xa9\x48\xf4\xd3\xa0\x35\xb0\x59\x1b\x72\xba\xf5\x56\xbf\x29\xe0\x3f\xd0\x2b\x68\x62\x22\x50\x9b\x7e\xb9\x53\x83\x0c\xc6\xf2\x59\x25\xcc\x12\xfd\xac\xab\x0f\x97\x51\x49\x70\xbf\x04\x53\x54\xcd\xda\x35\xfb\xf3\x67\x8f\x9e\xb8\x1f\xde\x4e\xdb\x63\x25\x11\x1e\x7d\x28\x47\x61\x75\x86\xd3\x94\x7d\x33\x65\x17\x24\x06\x8d\x07\xe1\x93\x9f\xc4\x88\x1e\xd7\x0c\xa0\xaf\xc5\x14\xa6\xe8\xb2\x29\x24\x31\xaf\xa2\xef\xbc\x99\xb2\x6f\xa7\xec\xb2\x75\x35\xc3\x59\x3f\x87\x50\xd6\x73\x74\xb0\x53\xfa\x9b\x0d\xe6\x58\x5a\x39\x76\xd6\x5e\x2b\x8b\xef\xb1\xb1\xc2\x69\xb5\x9e\xe5\x93\x86\xc2\xe9\xbb\x8d\x51\xcd\x1a\x59\x56\xe0\x8f\xf5\xdd\x99\x41\x5a\x6e\x61\xc4\x49\xb8\xfe\x9c\xe8\x6d\xeb\xcd\x04\x4f\xdc\x7f\x28\x01\x23\xd3\x17\xc9\x4c\x9b\xa4\x37\x69\x0c\x58\x39\x83\xd6\x0b\x1d\xc1\xfa\x03\xaf\x2a\x67\x8c\x9e\x76\xe3\xcd\x5a\xfb\xdf\xf7\xbd\xdd\xca\x00\x7f\x12\xef\xad\x53\xa6\xbd\xb4\xf0\x85\x52\x54\x51\xc6\xdb\x62\x87\x0d\x99\x18\x0a\xc6\x2a\x81\x67\x78\x38\x9b\x75\xc9\xdd\x4c\x24\x4a\x48\x30\xeb\xee\xcf\x0d\xa1\x57\x4a\x25\x5f\xd9\xe8\x3c\x25\xa7\x00\x42\x86\x16\xe7\x57\x18\xc2\x35\x5d\x4d\x91\xca\xac\x7b\x83\x2a\xa4\x29\x3f\x81\x36\xb9\xa2\xf4\x47\x7a\x15\x25\xc5\x2d\xbd\x17\xa1\x14\xc8\x24\x61\xa1\xac\xe8\x67\xe3\x41\xbe\x5a\x71\x63\xfc\xb1\x49\x59\x68\x9d\xcd\xd9\x79\xf7\x0a\x23\xe9\x89\x4a\x5c\x37\x7e\xf7\xc9\x65\xab\xf3\xd2\xbb\x9c\x67\xc0\x84\xef\x39\xdb\x6e\x32\x91\x85\x5e\xaf\x9c\x01\xe1\xe6\xd3\x2c\xb1\x6a\xcf\x8b\x28\x87\x69\x77\xc6\x53\x4a\xbc\x07\x77\x0a\xcb\x0f\xab\xc6\x58\xd0\x0f\x9f\xc2\x4e\x83\x67\xd1\x27\xac\xd2\xa3\x8d\x02\x09\x1e\x84\x9a\x97\x1b\x3b\xf5\x68\x0f\x9b\xbe\xc4\x8a\xee\x93\x16\x13\x34\x50\xf2\xac\xe4\xbd\x3f\x53\x9f\xc3\x18\xec\x56\xe5\x97\xbb\x4d\x6d\x2a\xbd\xf0\x06\x8d\xd1\xed\x42\xd5\x2b\x3c\x22\x2f\xda\x29\xc1\xf8\x4c\x35\x76\xb3\xc0\x2f\x9e\xaa\x3e\xa5\xd3\x75\x18\x4d\x1a\xef\x2f\x4f\xbb\x4e\xb2\xad\x26\xd9\xff\xf9\x30\x23\x3d\xfd\x83\xb7\xab\x10\x8f\xa8\x22\xb5\x3d\x07\x76\x32\xd7\x02\x64\x59\xad\xbb\x41\xa3\x7d\x71\x4a\xc7\xfb\xee\x5f\x08\xcd\x0a\x43\x03\x1c\x2b\x46\xab\xa8\xef\xed\x11\xbb\x46\x13\xea\xfa\xa8\x3d\xce\xcd\x59\xea\x78\x86\xd1\x04\x2b\x8a\x56\xaa\xe2\x5a\xec\x3b\x84\xea\x8a\x5e\x38\x22\xa3\xe9\xda\x8f\x8b\xa6\xe5\xda\x41\xba\xbe\x6d\x41\x43\xf8\x4e\x74\x66\xfa\x5e\x4c\x67\xc0\xae\xfd\xc4\xe3\x42\xbf\x3e\xc2\x25\x8b\x25\x28\x4e\x38\xf1\x9d\xc1\x92\x6b\xc0\x1a\xf7\x8b\xb3\x95\x77\x40\x76\x47\xe5\x47\x93\xd4\x06\xb9\x85\xa1\xc3\x96\x90\xce\x05\x37\xc0\x8c\x72\x4b\x09\x5f\x70\x24\xd6\xaa\xaa\xf6\x38\xa0\x77\xdc\x9b\x5a\xbc\x2c\x19\xef\x40\x87\x13\xd8\xd6\xaa\x41\x93\x3d\x14\x13\x77\xa0\x98\xba\x73\x9c\xca\xf7\x84\x60\xee\x84\x59\x76\x30\xa3\x59\x72\xd0\xbe\x22\x49\xfc\x55\x54\x5b\xba\x76\x44\x88\x29\xba\xe7\x6c\x04\xce\x2a\x3e\x83\xea\x88\x55\xe2\x06\xb0\xc1\xaf\xc7\x63\x4a\x7e\xd9\xb4\x50\xf5\x71\x8b\xbe\x13\x3f\xd7\x3b\xa6\x59\x4f\xf8\x7c\x73\x09\xbc\x07\xcb\x45\x05\xe5\x69\x7c\xee\xbf\xb7\xa5\x25\x6a\x15\xcf\xdb\xc4\x5e\x91\x21\xb6\x47\xe0\x74\xeb\xee\xc8\x07\xfb\xef\x94\x83\xa4\x39\x95\x39\x23\xe9\x97\xaa\x2a\x99\x69\x66\x93\x8d\xa7\x9d\xca\xdd\xef\x86\xdc\x8a\x12\x58\xad\xd0\x91\x22\x5c\x99\x06\x6e\x1c\x3f\x84\x02\x56\xc7\x7b\xc0\x5e\x5f\x39\xd6\x57\x9a\xfd\xc0\x2b\x03\x6f\xfa\x3d\xd5\x62\x63\xda\xaf\xb1\xd3\xac\xb9\xf6\x5b\xb6\x76\xd7\xff\x26\xae\xbd\xa8\x3a\xbe\x99\x73\xcb\x2b\xd2\x31\x64\x9d\x7a\x9a\xba\xd5\x40\xe7\xf1\x39\x67\xcd\xe3\x8b\x68\x12\x0a\x77\x5c\x4b\x21\x17\x7b\xfb\x2b\x1f\x82\x96\xdf\x1f\x6a\x37\x11\x49\x91\x00\x51\x2b\xa9\xba\x7c\xae\x74\x01\x11\x41\xc9\x90\xea\xd0\xbc\x80\x1a\x70\x07\x4d\x0f\xd0\x68\xa5\x62\xd1\x19\x47\x15\x71\x84\x1d\x89\x9d\x70\x20\xa9\xc0\xfd\xf4\x79\x07\x0b\xa8\x4f\x31\x95\x0c\xf6\x28\xb1\xb6\xd6\xbc\x5b\x5b\xee\x4f\x8c\xb2\x88\x7a\xa5\xb4\xe5\xd2\x32\x25\xa1\x95\x0e\xa7\x17\xef\x49\x5a\xec\x63\x53\x2f\xd5\x68\xd1\x7b\x8d\xeb\x64\x88\x9a\x77\x82\x75\x53\x9e\xb1\x1a\xb8\x6c\xb7\xca\xec\x43\xb3\x0b\xe0\xb4\x47\xbe\x0a\xb9\x00\x43\x1a\xcd\xaa\x48\xfa\xd9\x25\x93\x8a\x11\xd7\x4d\xd3\x73\x5f\xf3\xb5\xdf\x72\xda\x45\x59\x89\x8a\xc1\xec\x11\xb2\x14\xb4\xc9\xc2\xdb\x0e\x17\x48\x5c\xdf\x1a\x7e\x0f\x48\xc7\x6e\x3b\x83\x9c\xbb\x39\xde\x1e\x65\x18\x93\x1b\xd0\x12\x8b\x4d\x61\xff\x79\xc1\xb8\x38\x89\xe3\x68\x54\xd1\x91\x41\x61\x8f\x69\x4c\x83\x29\xc3\x79\xa7\xe5\x6c\x98\x9a\xef\x9b\x76\x67\xee\x11\xb0\xbb\xcd\xf1\xb3\x06\xd7\x11\xaa\xa7\xb0\x74\x69\xb4\x9e\xa1\x34\xf4\x1f\x61\x2b\xe1\x16\x34\xe6\x4b\x9b\x59\xb4\x78\x08\x64\x0b\x8e\x74\xa3\x89\x94\x22\x72\xc1\x1e\xe7\x37\xed\xf6\x12\xbc\x8c\x72\xe5\x97\xdf\xd3\x50\xa3\x10\x8e\xa9\x04\x6d\x6f\xd0\x50\xc1\xad\xe3\x6f\x84\xb6\x89\x78\x8f\x5d\xd8\xd6\xfe\xd2\x0c\xfa\x86\xf7\xf1\x80\x9d\x9c\x88\x83\xf8\x14\xbb\xc4\x81\xf7\xfa\x97\x1e\x8d\xd7\x48\x9d\x76\x8f\x36\x27\xbc\xde\x10\x5b\x96\xc2\x44\xa0\x50\xaa\x84\x17\xfb\x6c\xec\x77\x92\x0e\xcc\xf4\x23\x26\xb8\x9e\xab\x4d\xb4\x52\xf6\x47\x1e\xf2\x7b\x2c\xbf\xbc\x6c\x66\x9b\x5a\xae\x13\x58\x13\x54\xb3\x24\x88\xa4\xc5\x8d\x46\xa9\x58\x39\x6b\x0c\x30\x8e\xb3\x14\x51\x95\x09\x8c\xdc\x32\xce\x76\x94\x2a\x89\x9a\x44\xcc\x25\x9a\xf7\x66\xe6\x04\x97\x97\x78\x1d\xc2\xa4\x40\x3d\x20\x32\xf9\x32\x10\x0d\xc2\x05\x27\x87\x08\x79\xc4\x8c\x62\xd7\x6e\xac\xd7\x7e\x2f\x84\x77\x16\x71\x50\xb3\xc8\x8c\xec\x4f\xab\x79\xf3\xb2\xb5\x3f\x51\x1e\xc7\xfb\x06\x3d\xfa\x4e\x67\xb1\xcf\xc4\xdd\xe7\xb4\x7c\xfb\x83\x3f\xee\x93\x9f\x5f\xb6\x6a\xa1\x65\xcf\x4a\xcc\xa1\x58\x17\x15\x04\x7d\x6f\x5a\xd1\x20\x06\xce\xc0\x8a\xb1\xc2\x5a\xf9\x48\x8c\x04\x36\xf6\xeb\xaa\x23\x96\x1b\x4f\x7f\xa0\x40\x96\x1b\x07\x83\xd4\xea\x36\x1c\x14\x8a\x1f\x0b\x0a\xb8\xe5\xfa\xc7\x04\xcc\x6a\x30\x86\x2f\xf2\xfb\x54\xbf\xfc\x91\x5e\x20\xee\x5e\x36\x35\x97\xb8\x4f\x80\xcf\x2a\x08\xc0\xc2\xda\x1a\xca\x66\x07\xe9\xdc\xf9\x40\x56\x73\x69\x3a\x76\xa6\x63\x71\xa9\xd2\x99\xfb\x35\x9c\x84\x48\x7e\x6a\xf2\xa0\xe1\x9a\xdf\x87\x70\xd8\xb7\xdf\xfc\xf7\xdf\xff\xe1\x71\x21\x31\xe6\x2d\x8d\x7c\xfa\x79\xe5\x19\x2d\xc7\x95\x56\x0b\xcd\x6b\x67\x79\x15\x4c\x94\x20\xad\x98\x8b\x81\xea\x84\x8e\xc2\xfe\x2c\x78\xd2\xc8\xde\x58\x6d\xe5\xc5\x2b\xc3\x2a\x6e\x6c\x4c\xd7\x24\xd8\x73\xad\xca\xa6\x00\x8d\x09\x95\x76\x23\x65\x27\x7e\x1c\x45\x68\x46\x28\x4c\xd5\xae\xa0\x24\x54\x7f\x94\x9c\xe3\x6b\xa7\xfe\x51\x58\xb4\xfa\x03\x85\x8e\x37\x38\x96\x80\x2e\x51\x5b\xac\x91\x2e\x24\x72\xeb\x20\x4a\x65\x71\xb6\x68\xb8\xe6\xd2\x02\x94\xec\xdd\xf9\x59\xbb\xca\xa9\xee\xa3\x5d\x51\x69\x98\xec\x94\xd7\x50\x9d\xa2\xbf\x47\xcc\xb4\x75\x22\x8f\x1b\x3c\x1d\xd2\xec\x0f\x61\xce\x64\xb6\xb7\x5f\x7f\x33\xd0\x49\x27\x27\x4a\xbb\xe2\xd6\x82\x96\x27\xec\x7f\xff\xf2\x6e\xf2\xbf\xf8\xe4\xef\x5f\x5e\xfb\x7f\x7c\x3d\xf9\xe3\xdf\x8e\x4e\xbe\x7c\x15\xfd\xf9\xe5\xcd\x9f\xfe\xdb\x63\xd9\x7b\x37\xd8\xb2\x7d\xed\x0b\xbe\xec\x1a\xd3\x68\xd9\xcd\xd9\x15\xc6\xe8\xd0\xde\x4f\xed\x5b\x60\xec\xaf\xb4\x77\xed\x71\xad\xb6\x5f\xba\xcf\xa5\xe6\x67\xc2\x5e\x22\x2e\xe9\x67\x3c\x2e\x8f\x25\x25\x3e\x94\x2d\x27\xae\xbc\x53\x12\xeb\x7e\x76\xdd\x72\xe7\xb5\xd3\x26\xee\x97\xb9\x52\x53\xb8\xe7\xf5\xaa\x02\xf2\xd8\xdb\x27\xd2\x4b\xbd\x15\xaf\x8d\xb1\x64\xe5\x6f\x6a\xe6\x7d\x1a\xf8\x1a\xb5\xec\x0f\xaa\x91\xc9\x03\x68\xb0\x77\x4f\x1c\x50\x10\xea\x38\x7a\xb3\x5d\x98\x1a\x16\x70\xcf\x44\x9b\x2d\x4c\x4b\x3c\xc3\x5e\x97\xd2\xbc\x7d\xfb\xcd\xb7\x97\xcd\x8c\x42\x14\x3f\xd4\xf6\xf8\xcd\x9f\x5e\xb7\x19\xe5\x8f\xbc\x86\x1f\x6a\xfb\x26\x57\xfe\xbf\x4d\x35\xda\xef\x96\xda\xeb\x5f\x68\x41\x7d\x79\xfd\xcb\xc4\xff\xeb\xab\xf0\xd3\x9b\x3f\xbd\xfe\x3c\x4d\xde\x7f\xf3\x95\xc3\x31\x5a\xa6\x5f\x7e\x99\x74\x6b\x74\xfa\xe5\xab\x37\x7f\x8a\xee\xbd\x79\xe4\x8a\x1d\xce\xd1\x78\x25\xdd\x7b\x9f\x74\x49\xef\xed\xe4\xf1\x66\x13\x44\xf1\xa1\xd9\x9f\x74\xfd\x98\x53\x64\x57\xad\x1e\xbb\x12\x7d\xe1\xf0\xcd\x65\xb4\xfb\x56\xd8\x3a\x48\x8a\x11\xdb\x8f\xc4\xa2\xaa\x0f\xf9\x16\x06\x94\xd4\xc3\xc8\x49\x34\x22\x46\xd4\x30\x20\x4a\xe9\xb6\x16\x5c\xc2\xe3\x71\x5f\x46\xc7\xb0\x5a\xfb\x4e\x05\x7e\xad\x17\x4b\x2e\x17\x50\x4e\x19\x55\xd7\x52\x04\xd6\xa9\x1d\x94\x44\x68\x0b\xf7\xc1\x6c\x4c\xb0\x0a\x70\x70\xad\x0d\xfa\xee\xfc\xcc\xab\x30\x0f\x1c\x4d\xb8\xa2\x80\x95\x75\xc6\x5b\x8f\x1e\x0b\x65\x3b\x25\xb7\x30\x71\x00\x13\x33\xd7\xcb\x98\x49\x23\x73\x73\xbe\xea\x83\xcc\xcb\x60\x42\xf6\x90\xe2\x20\xc3\x32\x6d\x3c\x66\x99\x8d\x03\x64\x50\x33\x6c\x9c\x55\xfe\x19\x24\xe8\x44\x49\xc3\x26\x45\x76\xdf\xda\x2e\x6c\x9d\xd6\x60\x79\xc9\x2d\x9f\x2e\xda\x67\x7a\x19\xce\x07\x5e\xa2\xe0\x30\xa7\xa8\xf7\x8c\x1b\x28\x59\xb3\xf2\x24\xfa\x01\xf5\x8b\xb1\x5c\x16\x80\xdd\xe1\x0e\xf8\x8a\x30\x21\x9b\x51\xad\xd9\xdb\x6f\x8e\xd8\xcc\x4f\xc3\x94\x16\xcc\xb4\x0b\x13\xfc\x72\xff\x65\xba\x3b\xc2\x7e\xb8\x7f\x3c\xda\x42\x5f\x18\xe6\x26\x59\xcd\x91\x45\x29\xf6\xe5\x4f\x4b\xdc\xea\xbd\xd0\x03\x94\x02\x91\xde\x62\x09\x23\x1e\x58\x0d\xfd\x45\x6c\x03\x05\x6c\x43\xc5\x6b\x29\x6f\xe2\x81\x7e\xc4\xb0\x37\x76\xa0\x07\xe1\xb8\xa3\x75\x14\x7a\x40\x1e\xe8\x3e\xec\x73\x11\x86\x02\x4f\x49\xc7\x21\xe5\x1c\xf4\x05\x89\xfa\x5d\x86\x61\xb7\xa0\x07\x66\xa6\xb3\x90\xe3\x26\x0c\x3a\x08\x4f\xe3\x1a\x0c\x88\xb0\x94\x3b\xb0\xc1\x9f\xe6\x00\x47\x20\x6d\xec\xf7\x9b\xf9\x49\x03\x3f\x6d\xda\xa7\x8d\xfa\x9c\xa4\x77\xc6\x12\xdd\x6b\xc2\x77\x8c\x44\x06\x7c\xaf\xfd\xde\x67\xbe\x7f\x96\xec\x47\x2e\xd7\xac\x13\xa2\x53\x8c\x2a\x6e\x33\xbe\xb1\x58\xe8\x45\x8d\x4b\xc2\x59\x7a\x7d\xab\x0a\x83\x93\xef\xc2\xf9\x79\x24\xb0\x67\x50\x70\x0c\xd8\xe9\x99\xb0\x9a\xeb\x75\x7c\x2c\x6a\xc1\xa5\xaf\x41\x9f\x37\x7d\x05\x16\xaf\x0d\x00\x9b\x4a\x55\xc2\xae\xdc\x7f\x43\x72\x9c\x77\x7d\x85\x4a\x28\x94\x9c\x57\xa2\xe8\x49\xa9\xb8\xab\xcd\xc4\xf4\xfa\x10\x4f\xe0\x27\x64\x78\x08\xbf\x29\xdf\x60\x80\x5b\x43\x7c\x36\x87\x63\x7f\x0e\xb1\xdc\x64\x96\x20\x04\x31\x7f\x7b\x79\x02\x8f\xd9\x33\x66\x0a\x02\x35\xc7\x5c\xc1\x98\x2b\x18\x73\x05\x3b\xd7\x98\x2b\x18\x73\x05\x63\xae\x60\xcc\x15\xf4\x5c\x63\xae\x60\xcc\x15\x6c\x5f\x63\xae\x60\xcc\x15\xf4\x60\xff\xc0\x5c\x41\xaa\x5d\xff\x6e\x3e\x60\xcf\x43\x7d\xc3\xee\x1d\x70\xef\x50\x7b\x06\xf9\x80\xb3\x01\x18\xbb\x9f\xdc\xb4\x95\xb1\x93\x4a\x18\x3b\xa9\xf9\x6a\x72\x03\xeb\x1d\x91\xbb\xf7\xab\xbb\xaf\xd3\xa7\x6a\xbe\xda\x78\x72\xa3\x5e\x7b\x1b\x72\x2f\x57\xc5\x02\x29\xf7\x9d\xb8\xd3\x6c\xb2\x8a\xfe\x43\xf4\x60\x67\x0d\xed\x16\xcd\x07\x5d\x12\xf5\xa2\xdd\xdd\x78\x91\xb2\x74\xfd\xf6\xd2\x8c\x16\xe7\xb4\x0d\x55\xb4\xdd\x55\x3c\x56\x54\x87\x48\x37\x7d\xfb\x47\x6f\x68\xed\xe5\x62\x87\xe8\xa4\x45\x94\x5d\xf9\x0d\xd7\xc1\x97\xea\xaa\x8f\x7d\xb3\xc5\xce\xd4\x37\x7d\x01\x6d\x8a\x79\x1b\xd8\x42\x63\x9f\x80\xcf\xed\x74\xfa\x2a\xa6\x7f\x18\xfa\x56\x0e\xa2\x9b\x00\xbe\x39\xaa\xbe\x48\x4e\x8c\xdd\x49\xbb\xd5\xfc\x31\x23\xf7\xcd\xe2\x37\x41\x4f\x5f\xed\x0f\xe0\x0c\xba\x3b\x4b\x65\xec\x01\x4d\x49\xff\xdd\x3f\x1e\xf6\x23\x39\xfc\x37\xe8\xb0\x35\x1f\x29\xc9\xed\x54\xa8\x33\x58\xdf\x7f\xbc\xf4\x59\x99\xd7\x76\xbd\x12\x05\xaf\xaa\x35\x7b\xf7\xf3\xe5\x26\x60\xd3\xdf\x56\x32\x43\x07\x88\x55\x6e\x4f\xd9\xf3\xdc\xa1\xa5\x7d\x60\xb2\xc5\xcf\xce\x77\x47\xf6\xe7\xd3\xef\x9d\x31\xf0\xd3\x0a\xe4\xa5\xe5\xc5\xcd\xd3\x0d\xf3\xa9\x37\xef\xef\xf9\x79\x5b\xe7\x38\x25\x42\xe9\xb2\xf6\x07\xe7\x23\xbd\xd8\x0b\xc0\xef\xae\x3b\x61\xb7\x6f\xbb\xbf\x90\x33\xa9\x59\x81\xbf\x41\x1d\x90\xa1\x8c\xfa\xa5\x1a\xab\xb4\x73\xc9\xe9\x97\xce\x00\xa7\xbc\x2e\x59\x39\x9e\xc5\x6f\x84\x2c\x4f\xd8\x4b\xb2\x77\xa8\x83\xbc\xff\x33\xda\xcb\xc4\x7e\xf9\xf2\x82\xa0\x42\xf9\x29\xe0\xe1\x7e\x9c\x4c\x26\x2f\xf8\x4a\x84\xfd\x83\x8c\xaf\x44\xbb\x7f\xc3\x4c\x6f\xfe\x60\x9c\xe1\x76\xfb\x76\x06\x96\xbf\x7d\x41\x9f\x3a\x6d\x8c\x55\xf5\x85\x8f\x3c\xbf\x77\x4e\x20\x65\xd8\x03\x65\x10\xd1\xae\x93\x28\xa1\xd9\x99\x82\x93\x05\xc8\xa9\xd3\x59\xb3\x46\x54\x25\x99\x86\x1d\xa5\xbe\x9e\x7e\x33\xfd\xa3\x43\x5e\x03\x0f\xaa\xdc\x58\x5e\xaf\x4e\x98\x6c\x70\x03\x11\x51\xce\x56\x26\xda\xb9\xe9\x0f\x9b\x40\xa4\x57\x5a\x39\xfa\x17\xbe\x62\x5c\xa8\x17\x6e\x86\x1c\x16\x0b\xad\x9a\xd5\x09\xdb\x7d\xc0\x37\x91\x8f\x09\x7a\xf5\xe1\x32\xda\x69\xfa\xbe\x85\x8f\x8f\x38\xd5\xf0\x97\xe4\x63\x1f\x84\xdf\x89\x1a\x66\xa4\x17\x5f\x9a\xef\xa5\xd2\x36\x9a\xd4\x49\x78\xde\xdf\xf6\x8d\xff\xfb\xc1\xb8\xd9\x2d\x94\xe3\xbe\xb6\xc1\xbd\x73\xc8\x4d\x33\x6b\x53\x04\x27\x9e\xb3\xa8\x6e\xff\x3f\xff\xeb\xc5\x6e\x4b\x1e\xb5\x02\xf9\xee\xfc\xec\xd3\xb7\x97\xc5\x12\x6a\x1e\x98\x7e\xb3\xe3\x43\xcf\x88\xfd\xee\x9f\xab\x0f\x97\x2c\xde\xa2\x1b\x3d\x80\x3b\x2b\x7c\x40\x41\x6c\x9d\x67\x74\x09\xd8\xed\x40\x2c\xe4\xb1\xad\xcc\x24\x1a\xe3\xa4\x1b\xe4\xb4\x26\x05\xe2\x83\x46\xe1\xed\x7d\x42\x3f\xe2\xe9\x68\x81\x6f\xaa\x3f\x37\x52\xbf\xff\x35\x6c\x24\xc6\xb0\x03\xfd\x06\x25\x33\x48\x05\xb2\x3e\x44\xa4\x1a\x77\x73\xd9\x0a\x1b\xb3\x87\x58\xf8\x25\x9e\xa3\xd5\x46\x3c\x0b\x25\x6f\x41\x5b\xa6\xa1\x50\x0b\x29\xfe\xde\x42\x36\x21\x93\x5d\x71\x0b\x5b\x3b\x97\xf1\xf0\x1f\xbf\x2b\xdf\xf9\xcb\x18\x39\xe1\x6b\xa6\x01\x77\x56\x34\x32\x82\x46\x81\x92\x29\xfb\x51\x61\x58\x7b\xae\x4e\xd8\xd2\xda\x95\x39\x39\x3e\x5e\x08\x1b\x56\x71\xa1\xea\xba\x91\xc2\xae\x8f\x71\x2d\x8a\x59\x63\x95\x36\xc7\x78\x6c\xc5\xb1\x11\x8b\x09\xd7\xc5\x52\x58\x28\x6c\xa3\xe1\x98\xaf\xc4\x04\x11\x97\xb4\xaa\xea\xf2\x77\x2d\x27\xbd\xda\x91\x99\x5b\x42\x1a\x97\x50\x2f\xdd\xdd\xca\x21\x13\x8b\x5e\xf3\xd1\x99\x96\xbc\x21\xa2\x75\xf1\xfd\xe5\x55\x9b\xe1\xc2\x29\xd8\xa4\x79\xe8\x00\x12\x0c\x96\x8e\xf0\x8e\x50\x42\xce\x21\xc4\x97\xc2\x01\x67\xa1\x79\x77\x5f\x33\x03\xd3\xcc\x6a\x61\x4d\xb7\x9f\xdb\xaa\x29\x3b\x45\x59\x86\x59\xb1\x15\x75\x32\x60\x67\x51\xbe\xef\xd9\xc9\x8e\x01\xb7\x89\x23\xe9\x30\xe1\x63\x11\x9c\xd0\x6a\xd4\xfe\xac\x77\x86\xfa\x96\xf8\xe5\x0a\x8a\x8d\xa5\xe2\xa0\xb4\x39\x84\x8b\xf7\x11\xbc\x3e\x43\x2c\x12\x7c\xdb\x06\x4a\xce\xa6\xc3\xfd\x92\xa7\xe6\x2b\xc2\x87\x37\x76\xa9\xb4\x4f\x3c\x6a\x98\x83\x86\xfd\xdd\x8d\x06\xb7\x4d\xd3\xf9\x2e\x3e\x45\xd2\xfe\xba\xc7\xdc\x4e\x5b\x9c\x43\x7b\xbc\x9f\x62\x87\xf7\xfe\x18\xcf\x50\xae\x9b\xeb\x05\x21\x46\x03\x7b\x10\x7a\xf4\xea\x61\x94\x67\xbe\x30\x85\x9c\x00\x1c\x58\xd8\xa5\xd5\x9e\x18\x85\xcb\xee\x6c\xce\xae\xb6\x90\xec\x4f\x20\x4b\x51\x39\x1b\x13\xa3\xb1\x84\xdf\x5e\x4e\x79\x85\x19\x2d\x6a\x0d\x10\x1a\x5c\xf6\x40\xdc\xfa\xf6\x86\x37\xe8\x7d\xd4\x25\xd7\xbc\xb0\xa0\x8f\xd8\xcb\xaf\x5e\x46\x03\xea\x81\xb8\x6f\x98\xd8\x3d\x22\xc5\x5e\x6c\x28\xf9\x98\x69\x24\x1f\x1e\x51\x49\x34\x18\x9a\xec\xb0\xcf\xe3\x23\x21\xfb\x50\x99\xb0\x6d\x3b\x29\x01\x7c\xa0\x7d\x40\xaf\x4c\x23\x07\x17\xbb\x82\x6c\x6e\x0b\x6e\xe3\x0e\x3d\x02\x6c\xb3\x83\x1d\x4d\x27\x16\x7e\x9a\xcd\xe0\xc4\xd8\x6a\x60\x6c\x35\xf0\xaf\xdb\x6a\xe0\xf3\xe7\xb1\xd7\xc0\xd8\x6b\x60\xec\x35\x30\xf6\x1a\x18\x7b\x0d\x8c\xbd\x06\x36\xae\xb1\xd7\xc0\x3e\x1a\x8f\xf5\x83\x63\xfd\xe0\x58\x3f\x38\xd6\x0f\x6e\x0d\x73\xac\x1f\x1c\xeb\x07\xc7\xfa\xc1\xb1\x7e\x70\xac\x1f\x1c\xeb\x07\xc7\xfa\xc1\xb1\xd7\x40\x07\x75\xec\x35\x30\xf6\x1a\x18\xa0\xc8\xd8\x6b\x20\x86\x3b\xf6\x1a\x38\xd4\x8f\x18\x7b\x0d\x8c\xbd\x06\xc6\x5e\x03\x3b\x77\xc7\x5e\x03\xf1\x35\xf6\x1a\xe8\xae\xb1\xd7\xc0\xd8\x6b\x60\xec\x35\x30\xe6\x0a\xc6\x5c\xc1\xd6\x35\xe6\x0a\xfa\x1f\x1d\x73\x05\x63\xae\x60\xcc\x15\x8c\xb9\x82\x31\x57\x30\xe6\x0a\xc6\x5c\x81\xbf\x3d\xf6\x1a\xf8\xa7\xeb\x35\xf0\x2f\xb8\x8d\xf6\xff\x06\x00\x00\xff\xff\x78\xfd\x71\xc4\xd5\x0c\x01\x00"), }, "/components/contour/dashboards": &vfsgen۰DirInfo{ name: "dashboards", @@ -609,16 +609,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/dashboards/apiserver.json": &vfsgen۰CompressedFileInfo{ name: "apiserver.json", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 7465, + uncompressedSize: 7337, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\xdf\x6f\xdb\xb6\x13\x7f\xcf\x5f\x41\x10\xc5\x17\xe9\x17\xce\x10\x3b\xf5\xd6\x19\xd8\x83\x57\xac\x5d\xd0\x0c\x71\x9b\xac\x0f\x6d\x03\x83\x16\xcf\x12\x61\x8a\xd4\x48\xca\xb1\x6b\x78\x7f\xfb\x40\xea\x17\x29\xc9\x41\x07\xb8\xdb\x5a\xe4\xc9\xd2\xe7\x4e\x3c\xde\xf1\xee\x73\x24\xbd\x3b\x41\x08\x13\x21\xa4\x21\x86\x49\xa1\xf1\x04\x59\x08\x21\xcc\x99\x36\x78\x82\x3e\xb8\x37\x54\xa2\x4e\xb2\xc8\x19\x37\x97\x02\x4f\xd0\x70\xd0\xa0\x94\x18\xa2\x65\xae\x22\xc0\x13\x84\xcf\xce\xd0\x2b\x45\x96\x44\x10\x74\x76\x86\x3d\x35\x10\x64\xc1\xad\x8a\x51\x39\x78\x78\xc2\x68\x0f\xca\x22\x29\x5e\x48\x2e\x95\x1d\x53\xc5\x0b\x72\x7a\x3e\x40\xa3\xe1\x70\x80\x46\xe3\xf1\x00\x0d\x9f\xfa\x43\x0b\x92\x3a\xdb\xd3\xc6\x1d\xf4\x3f\x34\xe5\xa0\x8c\xf6\xf5\xcc\x36\x73\x7a\x94\xe8\x64\x21\x89\xa2\xb8\x94\xed\xdd\xef\xdd\x09\x42\x7b\xab\x8e\x81\x32\xd3\x9a\x2d\x8e\x05\x98\x4b\x8a\x27\x48\xe4\x9c\x17\x88\x22\x59\x72\x2b\x25\x37\x2c\xab\x62\x82\x99\x01\xe5\xa6\x60\x91\xf1\xf3\xd1\xf0\x87\xf1\xf3\x8b\xf1\xf7\xe3\x67\x4e\xca\x99\x58\xd9\x50\x7f\xb8\x73\xaf\x19\x11\xc0\x75\x1d\xec\x2a\xd4\x98\x70\x46\xb4\x73\xdf\xad\xcb\xbe\xf2\x01\x2f\x88\x43\x96\x84\xeb\x3a\x5a\xce\x9d\x2b\x10\xb1\x49\xac\xcd\xf3\x00\x87\xae\xfa\x92\x71\x8e\x27\xe8\x22\x00\x5e\x29\x42\x19\x08\xbb\xf0\xcd\x00\xb1\x62\x74\x26\x9b\xd4\x28\xd6\x2b\x30\x82\x10\xbe\xc7\x13\x34\x7a\xe6\x01\x1b\x7f\x10\x84\xf0\xd6\xbe\x57\x91\xae\x07\x67\x36\x96\xa3\xfa\x95\x43\x0c\x82\x86\xa6\x08\x67\xb1\x98\xea\xdb\xfe\xc4\x21\xeb\xb8\xed\x1b\x42\x38\xca\x95\x2a\xfc\x68\x4b\x6c\xa2\xfd\x92\x66\x66\xdb\x9f\x83\xef\x41\xc9\xae\x24\x25\x9b\x9e\xa1\x52\x26\x7a\x50\xc5\xe2\xc4\xdc\xf4\xa6\xb3\x4e\xe4\x7d\x17\x35\xd2\x10\xde\x33\xd0\x9a\xf0\xbc\x59\xb8\x4e\xe4\x38\x13\x4e\xea\x8f\xe6\xc0\x7b\x46\x8b\x1c\xa8\x51\x9b\xab\x33\xc9\x84\xf9\x4d\xba\x69\x39\xa0\x2e\x09\x2c\xb3\xb0\xf6\x51\x55\xcf\x57\x75\x9e\x76\xac\x67\xa0\x22\x10\x86\xc4\xd0\xc9\xac\xcc\x5a\xb2\x89\x94\xeb\x60\x6d\x1d\xde\x4d\x44\x05\x82\x82\x02\x57\xe2\x4b\x2e\x4d\x33\x2f\x0d\x8a\x81\xbe\x5e\x83\x52\x8c\x42\x53\x30\x85\x30\x23\x11\xf4\xe5\xbb\x36\x24\x5a\x75\xac\x68\x03\x59\x06\xf4\x8a\x89\xee\x84\x0d\x51\x31\x18\xed\xb1\x9d\xcf\x77\x96\x08\x36\x99\x9b\x1e\x59\xc7\xa7\x8a\x18\x38\x8d\xa4\x30\x32\x57\x73\x58\x83\x30\x09\x11\x94\x83\x9a\xcb\xac\xac\xf9\xb9\x5b\xd1\xdd\x8a\x09\xfa\xd3\x9f\x1f\xf1\x93\xd7\x4c\xd0\x8f\x78\x80\x64\xe6\x5e\xaf\x2b\xbd\x8f\x78\xff\x61\x98\xde\x3d\x7d\x8a\x16\x5b\x74\x2a\xb3\x81\xfd\xc2\xa7\xb4\xba\x20\x5e\x4a\x95\x12\x9b\xcd\x78\xe7\x86\xdd\xef\xd1\x6e\x27\xb3\xfd\x3e\x54\x56\xb0\x74\xdc\x84\xa7\xb8\x86\xf7\xe5\x53\x13\x39\x93\x28\xd0\x89\xe4\xb4\x15\x51\xc3\x52\x78\xa9\x64\xea\x91\x5b\x8d\xbf\x85\xb8\x4c\x91\xd6\x07\x37\x09\x5b\x9a\xee\x17\xc6\x95\x2a\xbe\x5e\x68\x50\x6b\xa0\x68\x3a\xbb\x44\xee\x51\xa1\x3a\x4c\xda\xba\x6d\xbd\x41\x44\xd0\x06\x6e\xd6\xdf\xd4\xa4\xba\xf3\x6b\x88\x28\xa0\x3d\xb5\x25\x95\x69\xb5\x24\x57\x40\xf3\x8a\xee\x99\xa0\x6c\xcd\x68\x4e\x38\xee\x64\x73\xa5\xe3\xb8\xbc\x99\xc0\x86\x6c\x58\xab\x2c\x16\x79\xb4\x2a\x72\xc5\xf7\xd8\x92\x41\x59\x5a\x36\x28\x3d\x5d\xa9\xa5\xdd\xcf\x04\x75\xc5\xf7\x14\xdc\x96\x6c\xe0\x81\x14\x5d\xd6\x19\xa2\x13\x1b\x89\x30\x89\xc8\x02\x78\x67\x12\x56\x20\xe3\x9f\x89\x86\x30\x6e\x35\xdf\x75\xd4\x0b\xc2\xeb\xc0\x9e\x33\x4d\xda\x0d\xfe\xb3\xf3\xf4\xe9\xb4\xaf\x3e\xb6\xdd\x55\x77\x2d\xa8\x87\xa2\x1d\x7e\x05\xeb\x7a\xd6\xc1\x4e\xa2\x8c\xc1\x37\xdc\xcf\x87\x07\x1a\xfa\xc5\x63\x43\x7f\x6c\xe8\xc7\x6e\xe8\x41\x5c\xfe\xfd\x7e\xee\xf7\xee\xbf\xd3\xb8\x9b\xfe\xf7\x75\x37\x6f\x17\x94\xaa\x85\x3f\x36\xed\xc7\xa6\xfd\x8d\x34\xed\x93\x72\x58\x5b\x90\xb6\xd6\xac\xdb\xc3\xf3\xa2\x58\xb1\x8e\x12\x48\xc9\x3b\x50\xba\x3c\xdb\xff\x58\xc0\x66\xcb\xcb\x3b\x05\xb5\x2a\x34\x0d\x89\xbd\x23\xbe\x81\x34\xe3\xc4\x30\x11\x7f\xce\x0d\x0b\xe1\xfc\x9d\xcd\x2a\x3b\xe2\x77\xff\xc7\xbd\x6d\x30\x58\xa0\xc0\x58\x83\xc2\xc6\x2d\xda\xd4\xeb\x0d\xa8\x4e\xd9\x20\x2d\x1d\xfc\x64\x3e\x27\x9c\x63\x0f\xbc\xeb\x4b\x8d\xd6\x55\xcf\x4c\xc9\x14\x4c\x02\x79\x70\xc9\x42\x61\xc9\x04\x2b\x6f\x40\x8a\x1c\x99\x17\x95\xf2\x59\x64\x6b\x0f\x4b\xc1\xe5\x4e\x79\x3f\xe4\x6f\x40\x98\x88\x78\x4e\x61\xea\xf6\x3d\xad\xa2\xec\x4f\x4a\x9c\xe6\xdc\xb0\xae\x76\x75\x73\x74\xdd\x39\x83\x04\xcd\xd4\x0f\xd7\x2e\x0c\x9d\x06\x0e\x91\xe9\xa1\xb8\x07\x17\xc2\x5b\x8a\x9e\xe0\xef\x07\x9f\x65\xaf\x95\xde\x81\x41\x42\xe9\x41\x83\x56\x76\x5c\x6b\x14\x38\x18\x38\x68\xb0\x14\x1f\xd7\x66\x9e\x51\xf2\x80\xcd\x52\xec\xdb\xac\x9f\xbd\x62\xc1\x7f\xe4\xa0\xb6\xc7\xc9\xd4\x86\x36\xce\x03\x34\x06\x4b\x7b\xd8\x57\xd5\x2b\x96\xfd\xae\xf8\xcd\x56\x44\x3d\x3c\xd5\xd3\x1c\x0d\x89\x1d\x31\xe8\x37\xd5\x7c\x71\x28\x6d\xb3\x80\xc3\xfa\x95\xcb\xee\x59\x78\xee\x09\x72\x0d\xb7\xc5\x40\xbd\xdb\xd4\x47\x9a\x0a\x16\xbf\xbd\xf3\xfb\x67\x88\xea\xb5\xbf\xe5\xfa\xca\x39\xea\xd7\xdb\xdb\xd9\x4c\xc9\xcd\xf6\xa0\xd9\x46\xe3\xb8\x96\x2f\x45\xac\x40\xeb\x83\x76\x2b\xf9\x17\xb1\xfa\x56\xe6\x0f\xf0\x56\xa0\x74\x5c\xfb\x37\x10\x29\x30\x07\x2d\x97\xe2\x63\xdb\x54\x6b\x16\x1d\x76\xb7\x92\x7f\x51\x9e\xee\x94\xea\x37\xca\xd4\xee\xb7\xf9\x17\xcb\x9d\x6d\xea\x4d\xe7\xb2\x38\x23\x62\x21\xef\xcf\x86\xd5\xa9\x09\x1b\x59\x62\x38\xf8\x2c\x63\xd1\xca\x9d\xe3\xcb\x8f\xcb\x80\xcd\x99\x30\xa0\xd6\x84\xfb\x84\x83\xc7\x4d\x21\xd5\xfb\x65\xf7\x72\xe1\xbf\x0c\xd3\xe6\x79\xec\x3d\x0f\xfd\x97\x8b\x73\x5f\xe2\x9d\xed\x46\xde\xf3\xb0\xdc\xbe\x84\x9e\x7e\x92\xee\x42\x00\x97\x9b\xf0\xea\x2c\xfb\xa2\xc8\x10\x7b\x94\x2d\x4f\xb2\xda\x90\xf2\x6f\x41\x9c\xbb\x3b\x2b\x9c\x3f\x7b\x31\xba\x39\x7b\xf3\xfe\x53\x81\xae\xeb\x4d\xfe\xf3\x93\xfd\xc9\x5f\x01\x00\x00\xff\xff\x2d\xea\x81\x72\x29\x1d\x00\x00"), - }, - "/components/contour/dashboards/contour-ingressroute.json": &vfsgen۰CompressedFileInfo{ - name: "contour-ingressroute.json", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 18555, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x6b\x4f\x1b\x3d\x16\xfe\xce\xaf\xb0\xac\xd5\x8a\xae\x42\x95\x04\xc2\x22\xa4\xfd\x40\x69\xd9\xa2\xde\x58\xa0\x48\xab\x16\x8d\x9c\x99\x93\x89\x17\xc7\x9e\xda\x9e\x00\x1b\x65\x7f\xfb\xca\x9e\x9b\xe7\x12\xa0\x7d\x29\xe4\x45\xee\x87\x12\x1f\x3b\x3e\x57\x9f\xe7\x21\x13\xbc\xd8\x40\x08\x07\x01\xe5\x49\xaa\x15\xde\x47\xdf\x36\x10\x42\x68\x61\xff\x47\x08\x73\x32\x03\xbc\x8f\xf0\xdb\xb3\xe0\xe4\xf4\xcb\xa7\x77\xe7\xef\xdf\x7d\x3d\xc3\xbd\x62\x9a\x91\x31\x30\x33\x9f\x48\x31\x03\x3d\x85\x54\x55\x93\x11\xa8\x50\xd2\x44\x53\xc1\xcd\x92\x6a\x42\xdf\x26\x76\xd3\x88\x68\xa2\x44\x2a\x43\xa8\xe6\x12\x96\xc6\x94\x1f\x47\xab\x36\xcd\xe6\x3f\xe7\x66\x9d\x54\x2b\xec\x82\xe5\x06\x42\x97\xbd\xcc\x25\x09\x3f\x52\x2a\xa1\xc3\xa9\x42\x7f\x2c\xc9\x84\x70\x52\x6d\x4e\xa3\x4e\x71\x11\x84\x7f\x36\x27\xe6\x20\x55\xee\xdd\xe8\x75\xff\xf5\x4e\x6e\x44\xaf\x5b\x5d\x42\x38\xb0\x0e\x65\xc9\xb4\x53\x95\x2b\x6e\x28\xea\xdf\xad\xa8\x2b\xae\x74\x65\x44\x79\x3b\x96\xf7\xe9\x2d\xa3\x4c\x38\x17\x9a\x98\x0c\x9b\x30\x67\x86\x60\x46\x95\x2e\x83\x5e\x99\x87\x10\x1e\xa7\x94\xe9\x63\xb3\xdd\xa0\x57\x49\x1d\x73\xf7\x11\xde\xda\x42\x79\x9c\xd1\xd6\x16\x76\x96\x01\x27\x63\x66\x96\x68\x99\x82\x23\x9f\xd2\xa8\x43\x4a\x43\xc1\x0f\x05\x13\xd2\xec\x29\xe3\x31\xd9\xec\xf7\xd0\x70\x30\xe8\xa1\xe1\x68\xd4\x43\x83\x57\xee\xd6\x45\x08\x0e\x2a\x77\xd0\x5f\xd1\x01\x03\xa9\x95\xbb\xae\x0a\xb0\x9a\x8e\x05\x91\x11\xce\xe7\x96\xf6\xe7\xe5\x46\x9e\x13\x0c\x11\xd5\xb9\xb5\x13\xc2\x94\x35\x0c\xc7\x1c\xb4\x2d\x6c\x9e\x32\x96\x49\x4c\x96\xcf\x85\x60\x9a\x26\x78\x1f\xf5\xad\x90\xd6\x96\x50\x0d\x92\xe4\x47\x68\x30\xda\x1e\xee\x6e\xf7\x47\xc3\x9d\xdd\x91\x0d\x20\x66\x94\x5f\xd9\x02\xcf\xd2\x61\x2b\xac\xa3\xe0\x09\xa3\x44\xd9\x68\xd8\x34\x2d\xcb\xfc\x8e\x89\x95\x94\x36\xe6\xf9\x50\xd3\x8f\xc0\x63\x3d\x35\x3a\xfb\x35\x39\x74\x2d\x77\xd3\xd7\x55\x45\x13\xca\x98\x9b\x73\x1c\x4b\x1a\x9d\x88\xaa\x64\xb2\x3c\xe2\x7d\xb4\xe7\x04\xfb\x1a\xef\xa3\x5d\x67\x7c\x53\x44\x28\x1f\xdf\x9a\x71\x11\xff\x7a\x9d\x0f\xab\x06\x05\x31\xf0\xa8\xae\x88\x30\x1a\xf3\x03\x75\xde\x5d\x4e\x64\x1e\x37\x5d\x44\x08\x87\xa9\x94\xc0\x75\xc7\xcc\x8c\xdc\x74\x49\x29\xef\x90\xaa\xa9\xb8\x6e\x6b\xd4\x42\x13\xd6\xb1\x7a\x4e\x58\x5a\xc5\xbb\xe5\x29\xa3\xdc\xce\xba\xbb\x59\xe1\x35\x8d\xb2\xd4\xb9\x52\xa7\x4c\xb2\x92\x4f\x19\x3b\x11\x94\xeb\x4f\xc2\x1e\x1f\x2b\x70\xda\x2c\xc8\x10\xb8\x26\x31\xb4\xf2\x9d\x98\x77\x49\x12\xd1\xd4\x6c\x39\xaa\xcb\xdb\xe5\x21\x81\x47\x20\xc1\x9e\xc3\x09\x13\xba\xd2\xa1\x40\x52\x50\x5f\xe6\x20\x25\x8d\xa0\x61\x9f\x4a\x48\x08\x5d\x55\xa8\x34\x09\xaf\x5a\x5a\x94\x86\x24\x81\xe8\x23\xe5\x6d\x83\x35\x91\x31\x38\xe0\x86\x6a\x4d\xc9\x9c\xd6\x9b\xc4\x9a\x47\xe6\xf1\x66\x28\xb8\x16\xa9\x0c\x28\x8f\x25\x28\x25\x45\xaa\x21\xb0\x19\x5a\x98\x2e\x61\xcd\xfa\xc7\xff\xbe\xe3\xbf\x7c\x2e\x46\xdf\xf1\xf2\x15\x1a\xdf\xa2\xcd\x72\xde\xed\x2d\xa6\xfc\x85\x9c\x11\x53\x3a\x58\xd3\x19\x04\x99\xdb\xf5\x25\x94\x6b\x90\x73\x5b\x05\xb8\x7b\xe6\x88\x84\xda\x36\xb3\x41\x6d\x3a\xab\xef\xa3\x52\x43\x69\xd5\x3e\x5a\x2c\x50\x69\x11\x5a\x2e\xeb\xdb\x4a\x98\x64\x18\x7b\x80\x4b\xf1\x32\x7f\x55\x25\x41\x4f\x25\xa8\xa9\x60\x51\x23\x39\xc6\x8f\x23\x29\x66\x4e\xa3\x2a\xe5\x67\x53\x3a\xd1\xed\x09\x6d\xcf\x1a\x3e\x37\x91\x44\xc7\x59\x70\x4f\x4d\x70\x9d\x3e\xa1\xcb\x4e\xb8\x70\xcf\x0c\x91\x10\xb5\x4f\x8d\x12\x52\x37\x3a\x82\x3d\x30\x41\xd1\xa4\x29\x8f\xe8\x9c\x46\x29\x61\xb8\x75\x76\x1c\x06\xe0\xc2\xec\x0d\xb9\xa1\x8d\xae\x34\x4e\xc3\xab\xac\x78\x5c\x87\xcc\x09\xcf\xcf\x8d\xf1\xb9\x03\x4b\x1a\xab\xbb\x4f\x7e\x79\xc2\xbf\x5d\xb6\x4c\xbc\x25\x37\x70\x47\xcd\x46\x10\xd2\x19\xb1\xcd\xbe\xbf\xa2\xda\xd4\xd4\x84\xa8\x5e\x2e\x05\x5f\x6b\x88\x45\xfc\x86\x28\x68\x55\x57\xd6\xdb\xea\xae\x94\xcd\xad\x25\x76\x7c\xac\x6a\xaa\xd7\x6d\xfe\x83\xac\x6c\x69\xf8\x8d\x76\x16\xb5\xdf\x49\xac\x5e\x0c\x7e\xee\x3e\x0c\x3f\x77\x3d\x7e\x7a\xfc\x7c\x44\xfc\x14\x32\x99\x12\x0e\x91\x07\xd2\x47\x03\xd2\x2f\x79\x48\x3d\x96\xba\x06\x7b\x2c\xf5\x58\xfa\x54\x58\x3a\x18\x3e\x0c\x4c\x77\x3c\x98\x7a\x30\x7d\x44\x30\x9d\x13\x46\xef\x45\xd2\xde\x7c\x2a\x94\xb6\xd2\x8b\xf7\x42\xe9\x36\xb6\x66\x2b\xd6\x12\x61\xd1\xe6\x62\x81\xac\x79\x68\xb9\x7c\xb5\x1e\x78\x7b\x61\xa2\xee\xc1\xd6\x35\xd8\x83\xad\x07\xdb\x27\x03\xdb\xbd\x87\x81\xed\xb6\x07\x5b\x0f\xb6\x8f\x08\xb6\x94\x7b\xb8\x7d\x0e\xb8\x3d\xce\xe2\xee\x01\xd7\x35\xd8\x03\xae\x07\xdc\xe7\x7a\xd2\xba\xd7\x8d\xb7\x23\x8f\xb7\x1e\x6f\x1f\x11\x6f\xa5\x10\xda\x7f\x4a\xfc\x68\x30\x7a\x2a\x84\xf6\x18\xea\x1a\xec\x31\xd4\x63\xe8\x73\x3d\x6d\x5d\x81\xa1\x8e\xd1\x9d\x20\xfa\xfb\x61\xb2\x29\xf6\x38\xb9\x26\x38\x09\x7c\x2e\x6e\x03\x46\x95\x06\x0e\x32\x98\x11\x4e\x62\x90\x01\x8b\x54\x90\x26\x11\xd1\x10\x4c\x08\x65\xa9\x84\x5f\x86\xc0\x12\xe8\x86\x77\x02\xdd\x62\x71\x95\x8e\x41\x72\xd0\xa0\x82\x44\x44\x81\x69\xbc\xe6\x57\xc7\x5c\xff\x43\x7e\x6d\x5c\xd1\x9c\x1e\xee\xab\x4a\xc3\x10\x94\x7a\x36\x5f\x73\xfd\xab\x7c\x7d\xf3\x98\xbe\x4a\xf8\x0f\x84\x1a\xa2\x67\x73\xb6\x30\x60\x95\xb7\x87\x4f\xcb\x64\x0e\x33\xb6\x88\x3e\xbe\x3d\x43\x5f\x6d\x88\x3c\x95\xf9\x25\x2a\xb3\x76\x5c\xc0\x73\x96\x75\xe2\x2c\xad\xa7\xda\x2b\x48\xcb\xde\x1f\xe2\x2c\x8d\x72\x7e\x0a\xca\xe2\x24\xd3\x33\x96\xdf\xcd\x58\x42\x96\x2a\xed\x00\x5b\xb8\x3e\x20\x7e\x76\x37\x88\xff\x34\x61\xb9\xc3\xd5\xe7\xe6\x66\x47\x77\x73\xb3\x9f\xe6\x2b\x77\xb8\xfa\xec\x74\xe5\x74\x3d\xe9\xca\xa1\xa7\x2b\x9e\xae\x78\xba\xf2\x74\xdf\x0b\x58\xf5\x19\xcb\xc0\xf3\x15\xcf\x57\x50\xf9\xaf\x81\x6c\x53\xad\x93\x40\xbe\x5c\x92\xd2\xf4\xef\xa5\x31\x93\xa6\x7f\x9e\x8e\xa0\x4e\x3a\x72\xea\xe9\x88\xa7\x23\x6b\x40\x47\xca\x0b\x04\x24\x4c\x4c\xad\x1b\x43\x07\xfd\xac\x26\xb1\x0a\xa7\x30\x23\x17\xe5\xd5\x03\x83\xdd\x4c\xac\x6f\x59\xfe\xd7\xf7\xf2\x2a\x5b\xa9\x49\x5c\x1d\x11\xac\x61\x96\x30\xa2\x29\x8f\x1f\x72\x17\x01\x61\xec\xc2\xd4\x81\xd9\xf1\xf5\xdf\x70\x27\xec\x2f\x9c\xf0\xde\x4f\x6b\xaa\xbb\x08\xdc\xd3\x41\x79\xc8\xd2\x08\x0e\x2c\xe3\x69\x14\x62\x77\x22\xf0\x2c\x65\x9a\xb6\x57\x17\xb7\x14\x94\x0f\x9d\x5d\xcd\x22\x29\x6e\x61\xa8\x1a\x06\x42\xf8\x47\x0a\xd2\xd0\xa2\x4c\x55\x90\x55\x7e\xf7\xa3\x73\x27\x17\xc3\x9a\x34\x86\x9b\xc6\x43\xcc\xae\x2e\xa0\x49\x6c\xe3\xa9\xfe\x55\xa8\xc4\xf5\xd9\x96\x6d\x46\xd6\xbd\x38\x6f\x13\x99\xf1\xce\x44\xaa\xe0\x3c\xdb\xa8\xf3\x01\xd4\x8b\xc8\xae\xfd\xfe\xe0\x2f\x67\xb6\xf5\x2d\xc3\x3f\x6f\x56\xed\xcf\xea\x4a\x0d\xdb\xf0\xcb\x73\x3d\xc9\x60\x10\x73\x71\xbd\xb5\xdd\x9f\xe5\xdb\x61\x2d\x72\x21\xae\xbd\x2f\xa1\xe1\x95\x65\xa3\xf9\xbb\xf3\x98\x04\x05\xda\xbb\x0d\x1f\x8f\x1c\x68\x2c\x7a\x92\x1d\x6c\xbb\x83\xc1\xac\x7a\x3d\x72\x5e\x0f\xdc\x41\x65\x99\x99\x71\x10\x6f\xe8\xbc\x1e\xe4\xb7\x88\x5c\x16\x3e\x18\x6e\xe2\x24\xfd\x5e\x2d\xee\xc6\xbb\xee\xc6\xae\x96\xe1\x8e\x3b\xa8\x88\x11\xfe\x7b\xe4\xda\x5b\xd8\x52\x0b\xdf\x7f\x85\x65\xd8\x38\x6f\xba\x4d\x52\xb1\x55\xfb\x86\x49\xb6\x28\xcd\xee\x9b\xf9\xf0\xef\xf0\x70\x32\xff\x40\x33\x1d\xce\x75\x32\x83\x8d\xe5\xc6\xff\x03\x00\x00\xff\xff\xd5\xeb\x60\x9a\x7b\x48\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\xdb\x6e\x1b\x37\x13\xbe\xf7\x53\x10\x44\xf0\xc3\xf9\x21\x17\x96\x1c\xb5\xa9\x80\x5e\xa8\x41\x93\x1a\x71\x61\xa7\x76\x73\x91\xc4\x10\x46\xcb\xd1\x8a\x10\x97\xdc\x92\x5c\x59\x8a\xa0\x3e\x7b\x41\xee\x89\x7b\x50\x90\x02\xea\x21\x81\xaf\x44\x7e\x33\xcb\x21\x87\xdf\xcc\x90\xd4\xee\x84\x10\x0a\x52\x2a\x0b\x96\x2b\x69\xe8\x84\x38\x88\x10\x2a\xb8\xb1\x74\x42\xde\xfb\x1e\x29\x50\x2f\x99\x67\x5c\xd8\x4b\x49\x27\x64\x38\xa8\x51\x06\x16\x8c\xca\x74\x84\x74\x42\xe8\xd9\x19\x79\xa5\x61\x01\x12\xc8\xd9\x19\x0d\xd4\x50\xc2\x5c\x38\x15\xab\x33\x0c\xf0\x25\x67\x3d\x28\x8f\x94\x7c\xa1\x84\xd2\x6e\x4c\x1d\xcf\xe1\xf4\x7c\x40\x46\xc3\xe1\x80\x8c\xc6\xe3\x01\x19\x3e\x0d\x87\x96\x90\x78\xdb\xd3\x7a\x39\xe4\x7f\x64\x2a\x50\x5b\x13\xea\xd9\x6d\xea\xf5\x18\x98\xe5\x5c\x81\x66\xb4\x90\xed\xfd\xef\xfd\x09\x21\x7b\xa7\x4e\x91\x71\xdb\x9a\x2d\x8d\x25\xda\x4b\x46\x27\x44\x66\x42\xe4\x88\x86\x74\x79\xa7\x94\xb0\x3c\x2d\x7d\x42\xb9\x45\xed\xa7\xe0\x90\xf1\xf3\xd1\xf0\xbb\xf1\xf3\x8b\xf1\xb7\xe3\x67\x5e\x2a\xb8\x5c\x39\x57\xbf\xbf\xf7\xdd\x14\x24\x0a\x53\x39\xbb\x74\x35\x05\xc1\xc1\xf8\xe5\xfb\x7d\xd9\x97\x6b\xa0\x73\xf0\xc8\x02\x84\xa9\xbc\xe5\x97\x73\x85\x32\xb6\x4b\x67\xf3\xbc\x81\x63\x57\x7d\xc1\x85\xa0\x13\x72\xd1\x00\x5e\x69\x60\x1c\xa5\xdb\xf8\x7a\x80\x58\x73\x76\xa3\x6a\x6a\xe4\xfb\xd5\x30\x42\x08\x7d\xa0\x13\x32\x7a\x16\x00\x9b\x70\x10\x42\xe8\xd6\xf5\x4b\x4f\x57\x83\x73\xe7\xcb\x51\xd5\x15\x18\xa3\x64\x4d\x53\x20\x78\x2c\xa7\xe6\xae\x9f\x38\xb0\x8e\xdb\x6b\x23\x84\x46\x99\xd6\xf9\x3a\xda\x12\x47\xb4\x9f\x92\xd4\x6e\xfb\x39\xf8\x0e\xb5\xea\x4a\x12\xd8\xf4\x0c\x95\x70\xd9\x83\x6a\x1e\x2f\xed\x6d\x2f\x9d\xcd\x52\x3d\x74\x51\xab\x2c\x88\x9e\x81\xd6\x20\xb2\x7a\xe3\x3a\x9e\x13\x5c\x7a\x69\x38\x9a\x07\x1f\x38\xcb\x39\x50\xa1\x8e\xab\x37\x8a\x4b\xfb\x8b\xf2\xd3\xf2\x40\x15\x12\x54\xa5\xcd\xd8\x27\x65\x3c\x5f\x55\x3c\xed\x58\x4f\x51\x47\x28\x2d\xc4\xd8\x61\x56\xea\x2c\x39\x22\x65\xa6\xb1\xb7\x1e\xef\x12\x51\xa3\x64\xa8\xd1\x87\xf8\x42\x28\x5b\xcf\xcb\xa0\xe6\x68\xae\xd7\xa8\x35\x67\x58\x07\x4c\x2e\x4c\x21\xc2\x3e\xbe\x1b\x0b\xd1\xaa\x63\xc5\x58\x4c\x53\x64\x57\x5c\x76\x27\x6c\x41\xc7\x68\x4d\x90\xed\xc2\x7c\xe7\x12\xc1\x26\xf5\xd3\x83\x75\x7c\xaa\xc1\xe2\x69\xa4\xa4\x55\x99\x9e\xe1\x1a\xa5\x5d\x82\x64\x02\xf5\x4c\xa5\x45\xcc\xcf\xfc\x8e\xee\x56\x5c\xb2\x1f\xfe\xf8\x40\x9f\xbc\xe6\x92\x7d\xa0\x03\xa2\x52\xdf\xbd\x2e\xf5\x3e\xd0\xfd\xfb\x61\x72\xff\xf4\x29\x99\x6f\xc9\xa9\x4a\x07\xee\x8b\x30\xa5\x55\x01\xf1\x52\xe9\x04\x1c\x9b\xe9\xce\x0f\xbb\xdf\x93\xdd\x4e\xa5\xfb\x7d\x53\x59\xe3\xc2\xe7\x26\x3a\xa5\x15\xbc\x2f\x5a\xb5\xe7\xec\x52\xa3\x59\x2a\xc1\x5a\x1e\xb5\x3c\xc1\x97\x5a\x25\x41\x72\xab\xf0\x5f\x31\x2e\x28\xd2\xfa\xe0\x76\xc9\x17\xb6\xfb\x85\xf5\xa1\x4a\xaf\xe7\x06\xf5\x1a\x19\x99\xde\x5c\x12\xdf\xd4\xa4\x72\x93\x71\xcb\x76\xab\x21\x20\x59\x0d\xd7\xfb\x6f\xab\xa4\xba\x0b\x63\x08\x34\xb2\x9e\xd8\x52\xda\xb6\x4a\x92\x0f\xa0\x59\x99\xee\xb9\x64\x7c\xcd\x59\x06\x82\x76\xd8\x5c\xea\xf8\x5c\x5e\x4f\x60\x03\x1b\xde\x0a\x8b\x79\x16\xad\x72\xae\x84\x2b\x76\xc9\xa0\x08\x2d\xe7\x94\x9e\xaa\xd4\xd2\xee\xcf\x04\x55\xc4\xf7\x04\xdc\x16\x36\xf8\x09\x8a\x2e\x2a\x86\x98\xa5\xf3\x44\x93\x44\x30\x47\xd1\x99\x84\x13\xa8\xf8\x47\x30\xd8\xf4\x5b\x95\xef\x3a\xea\x79\xc2\xeb\xc0\xc1\x62\x6a\xda\x0d\xfe\xb3\xf3\x0c\xd3\x69\x5f\x7c\x6c\xbb\xbb\xee\x4b\x50\x4f\x8a\xf6\xf8\x15\xae\xab\x59\x37\x4e\x12\x85\x0f\xbe\xe2\x7a\x3e\x3c\x50\xd0\x2f\x1e\x0b\xfa\x63\x41\x3f\x76\x41\x6f\xf8\xe5\xdf\xaf\xe7\x61\xed\xfe\x2b\x85\xbb\xae\x7f\x5f\x76\xf1\xf6\x4e\x29\x4b\xf8\x63\xd1\x7e\x2c\xda\x5f\x49\xd1\x3e\x29\x86\x75\x01\xe9\x62\xcd\x2d\x7b\x78\x9e\x07\x2b\x35\xd1\x12\x13\x78\x8b\xda\x14\x77\xfb\xef\x73\xd8\x6e\x45\xf1\xa6\xa0\x57\xb9\xa6\x85\x38\xb8\xe2\x5b\x4c\x52\x01\x96\xcb\xf8\x73\x5e\x58\x40\x88\xb7\x8e\x55\x6e\xc4\x6f\xfe\x4f\x7b\xcb\x60\x63\x83\x1a\xc6\x6a\x14\x37\x7e\xd3\xa6\x41\x6d\x20\x15\x65\x1b\xb4\xf4\xf0\x93\xd9\x0c\x84\xa0\x01\x78\xdf\x47\x8d\xd6\x53\xcf\x8d\x56\x09\xda\x25\x66\x8d\x47\x16\x86\x0b\x2e\x79\xf1\x02\x92\x73\x64\x96\x47\xca\x67\x25\x5b\x77\x59\x6a\x3c\xee\x14\xef\x43\xe1\x01\x84\xcb\x48\x64\x0c\xa7\xfe\xdc\xd3\x0a\xca\x7e\x52\xd2\x24\x13\x96\x77\xb5\xcb\x97\xa3\xeb\xce\x1d\xa4\x51\x4c\x43\x77\xed\x9a\xae\x33\x28\x30\xb2\x3d\x29\xee\x93\x1b\x11\x6c\x45\x8f\xf3\xf7\x83\xcf\xb2\xd7\xa2\x77\xc3\x20\x30\x76\xd0\xa0\x93\x1d\xd7\x1a\x43\x81\x16\x0f\x1a\x2c\xc4\xc7\xb5\x99\xa5\x0c\x3e\x61\xb3\x10\x87\x36\xab\x76\x10\x2c\xf4\xf7\x0c\xf5\xf6\x38\x4c\xad\xd3\xc6\x79\x03\x8d\xd1\xa5\x3d\x1a\xaa\x9a\x15\x4f\x7f\xd3\xe2\x76\x2b\xa3\x9e\x3c\xd5\x53\x1c\x2d\xc4\x3e\x31\x98\x37\xe5\x7c\x69\x53\xda\xce\x02\x1e\xeb\x57\x2e\xaa\x67\xbe\xf2\x40\x90\x19\xbc\xcb\x07\xea\x3d\xa6\x3e\xa6\xa9\xc6\xe6\xb7\x4f\x7e\xff\x4c\xa2\x7a\x1d\x1e\xb9\xbe\xf0\x1c\xf5\xf3\xdd\xdd\xcd\x8d\x56\x9b\xed\x41\xb3\xb5\xc6\x71\x2d\x5f\xca\x58\xa3\x31\x07\xed\x96\xf2\xe3\x5a\xbd\xc5\x48\xa3\x3d\x68\xb4\x10\x1f\xdb\xa6\x5e\xf3\xe8\x70\x9a\x2c\xe5\x7f\x6b\x9e\xec\x84\xca\x57\x9a\x29\xfd\x6f\xfd\x2f\x92\xbf\x5b\x54\x87\xbe\x45\x7e\x47\xa3\x52\x3d\x9c\x0d\xcb\x5b\x0b\xb5\xaa\xc0\x68\xe3\xb3\x94\x47\x2b\x7f\x8f\x2e\x3e\x2e\x1c\x36\xe3\xd2\xa2\x5e\x83\x08\x03\x9e\x8e\x6b\x22\x57\xe7\x55\xdf\xb9\x08\x3b\xc3\xa4\x6e\x8f\x83\xf6\x30\xec\x5c\x9c\x87\x92\xe0\x6e\x35\x0a\xda\xc3\xe2\xf8\xd0\x5c\xe9\x47\xe5\x2f\xe4\xb4\x38\x04\x97\x77\xc9\x17\x39\x43\xdc\x55\xb2\xb8\x49\x1a\x0b\xc5\xdf\x72\x34\xf3\x6f\x46\x34\x7b\xf6\x62\x74\x7b\xf6\xe6\xdd\xc7\x1c\x5d\x57\x87\xec\xe7\x27\xfb\x93\x3f\x03\x00\x00\xff\xff\x7d\x73\xc3\xda\xa9\x1c\x00\x00"), }, "/components/contour/dashboards/contour-proxy.json": &vfsgen۰CompressedFileInfo{ name: "contour-proxy.json", @@ -648,23 +641,30 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/templates/01-contour-config.yaml": &vfsgen۰CompressedFileInfo{ name: "01-contour-config.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2173, + uncompressedSize: 2246, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x4d\x6f\xe4\x36\x0c\xbd\xcf\xaf\x20\x92\x43\x5b\x20\x1e\x6f\x6e\x85\x4f\x05\xd2\x16\xd8\x76\x9b\x16\x48\xd0\xab\xc1\x91\x68\x5b\x89\x2c\xba\x22\x3d\xb3\x01\xfa\xe3\x0b\x59\x72\x32\x4e\x27\x7b\x9a\x11\x3f\x9e\xc8\xa7\x47\xba\xaa\xaa\x1d\x4e\xee\x6f\x8a\xe2\x38\x34\x70\xbc\xdd\x3d\xbb\x60\x1b\xb8\xe3\xd0\xb9\xfe\x0f\x9c\x76\x23\x29\x5a\x54\x6c\x76\x00\x01\x47\x6a\xc0\x70\x50\x9e\x63\x39\xcb\x84\x86\x1a\x98\x22\x3f\x91\xd1\xd5\xb7\x66\x94\xf3\xfe\x05\x47\xdf\xc0\xbf\x3b\x00\x80\x6b\x90\x81\x67\x6f\x57\x27\xd0\xd7\x89\x8c\x82\x32\x1c\x08\xe2\x1c\x82\x0b\x3d\xb8\x20\xce\x12\x20\x3c\xff\x28\x60\xfc\x2c\x4a\xb1\xa4\xbb\x50\xce\x0d\x68\x9c\x29\x5b\x8b\x6f\x42\x1d\x12\xd2\xf3\x7c\x20\xb3\x34\x01\xdf\xbb\x0e\x02\xeb\x37\x91\x7f\x28\xe9\x6f\x69\x0d\xd4\x09\xab\x56\xae\xf7\xc9\x5a\x67\xf3\xe6\xb2\x3b\xef\x28\x28\x44\xfa\x67\x26\x51\x50\x37\x12\xcf\x6b\x23\x13\x8a\x90\x4d\x87\x5f\xc2\x91\x5f\x4a\x0a\x0a\xe8\x40\xa9\xf5\x40\x46\x1d\x07\x18\x31\x60\x4f\x71\x45\x69\x0b\xca\xbe\x24\xfc\x4c\x1d\xce\x5e\x25\x01\x7d\xba\x81\xd3\xe0\xcc\x90\x11\xc1\x05\xa5\x38\x45\x52\x49\xb0\xd6\x09\x1e\x3c\xd9\x35\xf1\x9e\x95\x40\x07\x54\xd0\xc1\x09\xb8\x7c\xf1\x5a\x63\xc7\x71\x39\x9f\x06\xf6\xb4\xde\x7d\x53\x52\x13\x5b\x18\xc0\x59\xff\x9a\xb0\xa2\x96\xc8\xaa\x98\x1b\xf8\x24\xc5\x53\xee\x07\x17\xfa\x48\x22\x91\x67\x25\x98\x28\x8e\x4e\x3f\x07\x21\x33\x47\x82\xce\x91\xb7\x4b\x7c\x89\xfe\x6b\xe3\x6f\xa0\x43\x2f\xf9\x41\xd5\x4b\x53\x90\x47\x17\xdc\x38\x8f\xf0\xf8\xe5\x01\x8e\x59\xaa\xb9\xb1\xbb\x22\xa0\x93\xf3\x1e\x02\xf5\xac\x0e\x95\xb6\x59\xd5\x14\x59\xd9\xb0\xaf\x8e\xab\xca\xaf\x6e\xf7\xb7\x57\x6f\xf4\xba\x40\x99\x9b\xdf\xe7\x03\xc5\x40\x4a\xb2\x28\xbb\x7e\x95\x37\x8c\xa8\x66\x48\xda\x41\x10\x32\x91\x96\x37\x9e\x85\xb6\x8f\xda\xa1\xf7\x07\x34\xcf\x60\x28\xaa\xeb\x9c\x41\x4d\x04\x53\x58\x59\x93\xf2\x7c\x96\xc3\x77\x9a\x41\x53\x62\x41\x79\xb8\xff\x0c\x76\x29\xc7\x2e\xcf\x83\x70\x1c\x58\x0a\xf3\xf0\x8a\x5e\x9d\xa1\xaf\x0c\xad\xa3\xf9\x1a\x93\xab\xac\x92\x75\x13\x72\x79\x5a\x73\xc4\x63\x6a\x81\xbd\xe7\x53\xea\xb4\x0c\x8f\x0c\x7c\xca\xdd\xd9\x55\x88\xab\x74\x3c\xa1\xa5\x08\xe4\xb3\x90\x57\x85\x64\xf3\x6a\x7d\xab\x30\x03\x8e\x38\x55\xb9\xd6\x1c\x57\x2d\x81\x1f\x04\x7d\xa3\xda\xeb\x6b\xf8\xc2\x7d\x9f\x2a\xe5\x29\x5d\x24\xdb\x79\x01\x21\x55\x17\xf2\xbc\xa2\x31\x24\xe2\xb9\xaf\x3a\x8e\x23\x6a\x03\x74\x36\x92\x8f\x0c\x14\x16\xe9\xfe\xf6\xf0\xe7\x3d\xf8\x02\xeb\xc2\x76\x70\xff\x87\xf1\x24\x1c\xce\xa8\x2b\xfc\x64\x8d\x4b\x16\xe8\x22\xcc\x03\x2d\x98\x64\x01\x23\x81\x4c\x64\x5c\xe7\xc8\xc2\x81\x3c\x9f\xf6\x6f\x45\x98\x59\x94\x47\x27\x94\x07\xd6\x3b\xd1\x1b\x78\x9a\x45\x01\xad\x05\x4e\x1b\x62\xe4\x23\x01\x05\x8d\x8e\x64\x7f\x76\xb7\xc1\xc0\xc1\x19\xf4\x4b\x56\x9a\x75\x3c\xa2\xf3\x4b\x53\xb8\xb2\x3b\xa8\x4e\xd2\xd4\x75\xcf\x96\xcd\x9e\x63\x5f\xf7\x4e\x87\xf9\xb0\x37\x3c\xd6\x5b\x8e\xeb\xf5\x77\x59\x31\x01\x7d\xbd\x10\x76\x9d\x08\xfa\x75\xe9\xaf\x60\x26\x0e\xaa\xdc\xf1\xdb\x4b\x57\x70\xf5\x53\xda\x0f\xa2\x38\x4e\x57\xe7\x66\x9c\x75\xe0\xe8\xf4\x65\x63\x3d\xbc\x28\x49\x1b\xc9\x90\x3b\x92\xbd\xe0\x12\x0a\xba\x31\x5b\x3e\x05\xd1\x48\x38\xb6\x9e\x0d\xfa\x16\xad\x4d\x4b\xe7\xa3\xa0\xc4\x9c\xd2\xe5\xa8\x39\x62\xd2\xcf\xc6\x38\x92\x0e\xbc\xad\x24\x7d\x0c\xb6\x86\xb2\x57\x36\xc6\x75\x89\x3b\x7b\xc9\x4c\xb6\x15\x8a\x47\x8a\x6d\x52\xf7\xbb\x08\x99\x38\x08\xb5\x86\xed\x07\x9e\xce\x63\xbf\xad\x3d\xed\xab\x56\x23\x1a\x7a\x7f\xe1\x3c\x95\xce\xcb\xf7\xed\xb2\x33\xad\x97\xcb\x9e\x8f\x59\x7d\x0d\x49\x9d\x38\x43\xcb\xf7\x6a\x1b\x21\x14\x5b\xec\xdf\xbf\xd9\xd7\xb6\xe3\x78\xc2\x68\xc9\xa6\x7f\x57\xbb\xff\x02\x00\x00\xff\xff\x60\x97\x1d\xea\x7d\x08\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x4d\x8f\xe3\x44\x10\xbd\xe7\x57\x94\x32\x07\x40\xc2\x31\x8b\xb4\x08\xf9\x84\xc4\x87\x58\x58\x96\x95\x66\xc4\xd5\xaa\x74\x97\xed\x9e\x69\x77\x99\xae\x72\x32\x91\xf8\xf1\xa8\xed\x76\x12\xcf\x66\xe6\x94\xf8\xd5\xeb\xd7\xf5\xf1\x5c\x2e\x8a\x62\x83\x83\xfb\x87\xa2\x38\x0e\x15\x1c\xde\x6d\x9e\x5c\xb0\x15\xfc\xcc\xa1\x71\xed\x5f\x38\x6c\x7a\x52\xb4\xa8\x58\x6d\x00\x02\xf6\x54\x81\xe1\xa0\x3c\xc6\xfc\x2c\x03\x1a\xaa\x60\x88\xfc\x48\x46\x97\xd8\x72\x22\x3f\xef\x4e\xd8\xfb\x0a\xfe\xdb\x00\x00\xdc\x81\x74\x3c\x7a\xbb\x04\x81\x9e\x07\x32\x0a\xca\xb0\x27\x88\x63\x08\x2e\xb4\xe0\x82\x38\x4b\x80\xf0\xf4\xa3\x80\xf1\xa3\x28\xc5\x7c\xdc\x85\xfc\x5c\x81\xc6\x91\x66\x34\xc7\x06\xd4\x2e\x29\x3d\x8d\x7b\x32\x53\x11\xf0\xb5\x6b\x20\xb0\xbe\xa9\xfc\x4d\x3e\x7e\x39\x56\x41\x99\xb4\x4a\xe5\x72\x97\xd0\x72\x86\x57\x97\x59\x27\xb8\xf7\x04\xbf\x3f\x3c\x7c\xfe\x1c\xf9\xf9\x04\x03\xc5\xde\xe9\x87\x20\x64\xc6\x48\xd0\x38\xf2\x76\x22\x67\xea\xe7\x55\xbc\x82\x06\xbd\xcc\x05\xa8\x97\x2a\xcb\xf6\x2e\xb8\x7e\xec\xe1\xe1\xe3\x3d\x1c\xe6\xd1\x80\x76\xa8\x69\x2a\x53\xc3\x8e\xce\x7b\x08\xd4\xb2\x3a\x54\x5a\x9f\x2a\x86\xc8\xca\x86\x7d\x71\x58\xa6\xba\x7d\xb7\x7b\xb7\xcd\xac\x5f\xa8\x71\x81\x04\xb4\x23\xf8\x73\xdc\x53\x0c\xa4\x24\xd3\x24\xcb\xf3\x38\xa1\x47\x35\x5d\xea\x15\x82\x90\x89\x34\x0d\x67\x94\xe5\x2a\x9c\xcf\x37\xe8\xfd\x1e\xcd\x13\x18\x8a\xea\x1a\x67\x50\x09\x8e\x1d\x05\x88\xf4\xef\x48\xa2\x02\xc7\xce\x99\x0e\x2c\x87\xaf\x74\x16\x4d\x07\xb3\xca\xfd\xa7\x0f\x60\xa7\x74\x2c\x34\x1c\x01\xe1\xd0\xb1\xe8\x6e\x0a\xc3\x59\xbd\xb8\x52\x5f\x3a\xb4\x58\xf1\xcc\x99\xb3\x2c\x12\xba\xa2\xdc\x76\xe7\xcc\x78\x48\x25\xb0\xf7\x7c\x4c\x95\x66\xb3\x48\xc7\xc7\xb9\x3a\x4b\x0d\x8e\x5e\x65\xca\x2d\x01\x9e\xd0\x52\x04\xf2\x64\xd4\x71\xd8\x65\x99\x19\x5e\xd0\x4b\x86\xb3\x60\x8f\x43\x31\xe7\x3a\xf3\x8a\x89\xf8\x0a\xe9\x8d\x6c\xef\xee\xe0\x23\xb7\x6d\xca\x94\x87\x74\x91\x5c\x06\x9a\xd2\x04\x21\x55\x17\x66\x7f\xa2\x31\x24\xe2\xb9\x2d\x1a\x8e\x3d\x6a\x05\x14\x0e\x7c\x5a\xea\x66\xa0\x30\xf9\xf6\x8f\xfb\xbf\x3f\x81\xcf\xb2\x2e\xc0\xaf\x57\xac\x2f\x35\x1e\x85\xc3\x55\xeb\x72\x7f\x66\x8f\xcb\x6c\xd0\xc9\x98\x7b\x9a\x34\xc9\x02\x46\x02\x19\xc8\xb8\xc6\x91\x85\x3d\x79\x3e\xee\x2e\x49\x98\x51\x94\x7b\x27\x04\xda\x39\x01\xef\x44\xbf\x85\xc7\x51\x14\xd0\x5a\xe0\x08\x91\x7a\x3e\x10\x50\xd0\xe8\x48\x76\x57\x77\x1b\x0c\x1c\x9c\x41\x3f\x9d\x02\x27\x80\x07\x74\x7e\x2a\x0a\x97\xee\x76\xaa\x83\x54\x65\xd9\xb2\x65\xb3\xe3\xd8\x96\xad\xd3\x6e\xdc\xef\x0c\xf7\xe5\xba\xc7\xe5\xf2\xeb\x82\x52\x0c\xe8\xcb\xa9\x61\x77\xa9\x41\xbf\x4d\xf5\x65\xcd\xd4\x83\x62\xae\xf8\x32\xe9\x02\xb6\x3f\xa9\xeb\x49\x14\xfb\x61\x7b\x0d\xe3\xa8\x1d\x47\xa7\xa7\x15\xba\x3f\x29\x49\x1d\xc9\x90\x3b\x90\xbd\x11\x12\x0a\xba\x82\x2d\x1f\x83\x68\x24\xec\x6b\xcf\x06\x7d\x8d\xd6\x46\x12\x79\x8d\x94\x3a\xa7\x74\x9b\x35\x46\x4c\xfe\x59\x81\x3d\x69\xc7\xeb\x4c\xd2\xf2\x5b\x03\x79\xaf\xac\xc0\xfc\xa2\xd7\xce\xde\x82\xc9\xd6\x42\xf1\x40\xb1\x4e\xee\x7e\xc1\x90\x81\x83\x50\x6d\xd8\xbe\x12\x69\x3c\xb6\xeb\xdc\xd3\xbe\xaa\x35\xa2\xa1\x97\x17\x8e\x43\xae\x3c\xef\xf3\xdb\xc1\xb4\x5e\x6e\x47\x5e\xef\xea\x99\x92\x2a\x71\x86\xea\x34\xe9\x35\x43\x28\xd6\xd8\xbe\x9c\xd9\x73\xdd\x70\x3c\x62\xb4\x64\xd3\xbf\xed\xfa\xcb\x31\xbf\x3c\x45\xf2\xe8\xb2\xa8\xcf\x8e\x2a\x60\x9b\xbe\x28\xe5\xf7\xdb\x17\xc0\x65\x8f\xdf\x5c\x61\x5f\xec\xae\xb4\x49\x9e\x4f\x90\x32\xe6\xf1\xbc\x22\xce\x6f\x52\xc6\xaf\x9c\x9c\xe7\x56\xe4\x48\x05\x2e\x34\x2e\x38\x3d\x5d\x2f\xac\x30\x6f\xba\xc2\x59\x4f\x17\xe6\x0f\xdf\xc9\x99\x34\x77\xec\x05\xe1\x7d\x7f\x8e\xf7\xf8\x5c\x5c\x09\x2d\x96\x7c\xfb\x3a\xe9\x46\x4d\x16\x2f\xda\x64\x80\x62\xa0\xe8\xd8\x56\xf0\x5e\x36\xff\x07\x00\x00\xff\xff\x41\x94\x74\x85\xc6\x08\x00\x00"), }, "/components/contour/templates/02-job-certgen.yaml": &vfsgen۰CompressedFileInfo{ name: "02-job-certgen.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), uncompressedSize: 1758, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xc1\x6e\xdb\x46\x10\xbd\xf3\x2b\x06\x76\x0f\x2d\x60\x32\x96\x1d\x15\xed\x16\x39\xa8\x46\x52\xa0\x48\x14\xc3\x4e\x02\xf4\x54\x0c\x97\x23\x69\xe3\xe5\x0e\x3b\x3b\x4b\x57\x0d\xf2\xef\xc5\x4a\x14\x25\xd9\xb5\x7b\x28\x50\x5e\x44\xbd\x79\x3b\xef\xed\xdb\xe1\x96\x65\x59\x60\xe7\x3e\x91\x44\xc7\xc1\x40\x3f\x29\xee\x5c\x68\x0c\xdc\x92\xf4\xce\xd2\xcc\x5a\x4e\x41\x8b\x96\x14\x1b\x54\x34\x05\x40\xc0\x96\x0c\x58\x0e\xca\x49\x4a\x4b\xa2\x4b\x0a\x03\x1e\x3b\xb4\x64\xa0\x13\xfe\x4c\x56\x07\x4e\xf1\x50\x45\x6a\xb4\x15\x26\x5d\xb1\xb8\xbf\x50\x1d\x87\xea\xee\x87\x58\x39\x7e\xd1\x4f\x6a\x52\xdc\x99\xb8\x61\x4f\x3f\xbb\xd0\xb8\xb0\x7c\xda\xc1\xb3\xca\xc2\x9e\x6e\x68\x91\x17\x61\xe7\x7e\x11\x4e\xdd\x33\xf2\x05\xc0\x5e\xf8\xc9\x9d\xc6\x54\x67\x89\x68\x8a\x12\xfe\x31\xac\xff\x3b\xa2\xff\x78\x3a\x92\x3c\x6d\x36\xb3\x4b\x28\xe6\x3e\x25\x9c\x9c\x14\x00\x42\x91\x93\x58\x1a\xb0\x48\x56\x48\x63\x01\xd0\x93\xd4\x03\x68\x85\x50\x69\xf3\x9a\xba\x26\xbf\x3e\xdc\x4d\x8d\x6a\x57\x2f\xc6\xe1\xfa\x95\xeb\x7f\xf7\x5c\xf6\x93\x6a\x5a\x9d\x3f\x6b\x3d\x76\x64\x73\x03\x55\x7f\x4b\x96\x43\x13\x67\x0b\x25\x79\xe3\x82\x8b\x2b\x6a\x0c\xe4\xe5\x4a\x6d\xe7\x51\x29\x13\x01\x0e\x75\xf3\xe3\xb1\x26\x1f\x77\xff\xf2\x98\x74\x06\x4e\x1e\x78\x39\xd9\x94\x77\x6a\xf9\xc9\x04\x74\x81\x64\x5c\x5a\x3e\x1a\xcb\xed\x73\x0a\x1f\x56\x2e\xe6\xbc\x72\x16\xe0\x22\x44\x52\x50\x86\xec\x29\x2a\xd4\x64\x31\x45\xca\xa1\x6c\x14\x22\xa0\x10\xb8\xb6\x4d\x8a\xb5\xa7\x9f\x0e\x1a\xb9\x05\xdc\x13\xd8\x15\x86\x25\x81\xe6\xae\x1c\x80\xd0\xae\x76\xdd\xcf\x60\xcd\x09\x2c\x06\x08\x0c\x9e\xc3\x92\x04\x52\xb7\x14\x6c\xe8\xa0\xcd\xe7\x94\x65\xd7\x79\xab\x7e\xed\xc2\x12\x74\x45\xd0\x50\xe7\x79\xdd\x52\x50\xf8\x6d\xf6\xee\x6d\x75\xc0\xbf\x25\x82\xd3\x8b\x97\x17\x97\x67\x70\x7a\x71\xf9\xe3\x34\xff\x4c\xa6\xe7\x67\x80\xa1\x81\xd3\x8b\xf3\xcb\x73\x58\xb0\x00\xa1\x78\x47\x02\x7f\x24\x8a\x79\x60\x23\x60\xcd\x49\x37\x46\xf7\xed\x5c\x8b\x4b\x32\xf0\xe5\x4b\xf5\x09\x7d\xa2\x58\x0d\x79\x55\x9b\xc2\xd7\xaf\x66\x1b\xcb\x31\xff\x3a\x79\x7f\xcd\xde\xd9\xb5\x81\x99\xbf\xc7\x75\x1c\xeb\x96\xdb\x16\x43\xb3\x3f\xc0\xf2\xd1\x09\x94\xb0\xff\x0c\x76\x48\x59\xde\xa5\x9a\x8e\x00\x17\xac\x4f\x51\x49\x8e\x50\xee\x49\xee\xc5\xe9\x31\x77\xf8\x0e\xca\x05\x4b\x8b\xfa\xca\x72\xdb\xa1\xd5\x23\xca\x38\xb5\xaf\xbe\xf9\xf6\xea\xfd\xfc\xc3\xfb\x8f\x37\xbf\xcf\x67\xef\x5e\xdf\x5e\xcf\xae\x5e\x7f\x37\x52\x29\xf4\x87\xde\xb7\x33\xf4\x88\x3f\x32\x00\xfa\x1c\xdb\x1b\xe1\xd6\x1c\x80\x00\x0b\x47\xbe\x19\xae\xba\x47\xf8\x35\xea\xca\x8c\xa3\x5f\x8d\xd6\x06\xae\x50\x54\x14\xdd\x25\x3c\xa7\x7e\x0c\x21\x1e\x5d\x6d\xf3\x27\x2e\x97\x2d\xd3\x26\x71\xba\xbe\xe2\xa0\xf4\xa7\xee\x7d\x48\x0a\xb3\x38\xe7\x70\xc3\xac\x06\x54\x12\x1d\x97\x3e\x46\x12\x03\xdf\x4f\xa7\x97\x2f\x8f\x0b\xc3\x75\xbd\xab\x74\x28\xe8\x3d\x79\x17\x5b\x03\x93\x62\x73\xf4\x9d\xa7\xcd\xa8\x6d\x81\x1a\xed\x1d\x2f\x16\x6f\x5d\xeb\x34\x23\x7f\x07\x00\x00\xff\xff\xf8\x41\x41\x24\xde\x06\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\x4d\x6f\xdb\x46\x10\xbd\xf3\x57\x0c\xec\x1e\x5a\xc0\x64\x2c\x3b\xee\xc7\x16\x39\xa8\x46\x52\xa0\x48\x14\xc3\x4e\x02\xf4\x54\x0c\x97\x23\x69\xe3\xe5\x0e\x3b\x3b\x4b\x57\x0d\xfc\xdf\x8b\x95\x28\x4a\xb2\x6b\xf7\x50\x20\xbc\x88\x7a\xf3\x76\xde\xdb\xb7\xc3\x2d\xcb\xb2\xc0\xce\x7d\x22\x89\x8e\x83\x81\x7e\x52\xdc\xba\xd0\x18\xb8\x21\xe9\x9d\xa5\xa9\xb5\x9c\x82\x16\x2d\x29\x36\xa8\x68\x0a\x80\x80\x2d\x19\xb0\x1c\x94\x93\x94\x96\x44\x17\x14\x06\x3c\x76\x68\xc9\x40\x27\xfc\x99\xac\x0e\x9c\xe2\xa1\x8a\xd4\x68\x2b\x4c\xba\x64\x71\x7f\xa3\x3a\x0e\xd5\xed\x8f\xb1\x72\xfc\xa2\x9f\xd4\xa4\xb8\x35\x71\xcd\x9e\x7e\x71\xa1\x71\x61\xf1\xb4\x83\x67\x95\x85\x3d\x5d\xd3\x3c\x2f\xc2\xce\xfd\x2a\x9c\xba\x67\xe4\x0b\x80\x9d\xf0\x93\x3b\x8d\xa9\xce\x12\xd1\x14\x25\xfc\x6b\x58\x5f\x3b\xa2\xff\x79\x3a\x92\x3c\xad\x37\xb3\x4d\x28\xe6\x3e\x25\x1c\x1d\x15\x00\x42\x91\x93\x58\x1a\xb0\x48\x56\x48\x63\x01\xd0\x93\xd4\x03\x68\x85\x50\x69\xfd\x9a\xba\x26\xbf\x3e\xdc\x4d\x8d\x6a\x97\x2f\xc6\xe1\xfa\x8d\xeb\xff\xf6\x5c\xf6\x93\xea\x87\xea\xf4\x59\xeb\xb1\x23\x9b\x1b\xa8\xfa\x1b\xb2\x1c\x9a\x38\x9d\x2b\xc9\x1b\x17\x5c\x5c\x52\x63\x20\x2f\x57\x6a\x3b\x8f\x4a\x99\x08\xb0\xaf\x9b\x1f\x8f\x35\xf9\xb8\xfd\x97\xc7\xa4\x33\x70\xf4\xc0\xcb\xd1\xba\xbc\x55\xcb\x4f\x26\xa0\x0b\x24\xe3\xd2\xf2\xd1\x58\x6e\x9e\x63\xf8\xb0\x74\x31\xe7\x95\xb3\x00\x17\x21\x92\x82\x32\x64\x4f\x51\xa1\x26\x8b\x29\x52\x0e\x65\xad\x10\x01\x85\xc0\xb5\x6d\x52\xac\x3d\xfd\xbc\xd7\xc8\xcd\xe1\x8e\xc0\x2e\x31\x2c\x08\x34\x77\xe5\x00\x84\x76\xb9\xed\x7e\x02\x2b\x4e\x60\x31\x40\x60\xf0\x1c\x16\x24\x90\xba\x85\x60\x43\x7b\x6d\x3e\xa7\x2c\xbb\xca\x5b\xf5\x2b\x17\x16\xa0\x4b\x82\x86\x3a\xcf\xab\x96\x82\xc2\xef\xd3\x77\x6f\xab\x3d\xfe\x0d\x11\x1c\x9f\xbd\x3c\x3b\x3f\x81\xe3\xb3\xf3\x9f\x2e\xf2\xcf\xe4\xe2\xf4\x04\x30\x34\x70\x7c\x76\x7a\x7e\x0a\x73\x16\x20\x14\xef\x48\xe0\xcf\x44\x31\x0f\x6c\x04\xac\x39\xe9\xda\xe8\xae\x9d\x6b\x71\x41\x06\xbe\x7c\xa9\x3e\xa1\x4f\x14\xab\x21\xaf\x6a\x5d\xb8\xbf\x37\x9b\x58\x0e\xf9\x57\xc9\xfb\x2b\xf6\xce\xae\x0c\x4c\xfd\x1d\xae\xe2\x58\xb7\xdc\xb6\x18\x9a\xdd\x01\x96\x8f\x4e\xa0\x84\xdd\x67\xb0\x45\xca\xf2\x36\xd5\x74\x00\xb8\x60\x7d\x8a\x4a\x72\x80\x72\x4f\x72\x27\x4e\x0f\xb9\xc3\x77\x50\xce\x59\x5a\xd4\x57\x96\xdb\x0e\xad\x1e\x50\xc6\xa9\x7d\xf5\xcd\xb7\x97\xef\x67\x1f\xde\x7f\xbc\xfe\x63\x36\x7d\xf7\xfa\xe6\x6a\x7a\xf9\xfa\xbb\x91\x4a\xa1\xdf\xf7\xbe\x99\xa1\x47\xfc\x91\x01\xd0\xe7\xd8\xde\x08\xb7\x66\x0f\x04\x98\x3b\xf2\xcd\x70\xd5\x3d\xc2\xaf\x50\x97\x66\x1c\xfd\x6a\xb4\x36\x70\x85\xa2\xa2\xe8\x36\xe1\x19\xf5\x63\x08\xf1\xe0\x6a\x9b\x3d\x71\xb9\x6c\x98\x36\x89\xd3\xd5\x25\x07\xa5\xbf\x74\xe7\x43\x52\x98\xc6\x19\x87\x6b\x66\x35\xa0\x92\xe8\xb0\xf4\x31\x92\x18\xf8\xfe\xe2\xe2\xfc\xe5\x61\x61\xb8\xae\xb7\x95\x0e\x05\xbd\x27\xef\x62\x6b\x60\x52\xac\x8f\xbe\xf3\xb4\x1e\xb5\x0d\x50\xa3\xbd\xe5\xf9\xfc\xad\x6b\x9d\x66\xe4\x9f\x00\x00\x00\xff\xff\xa0\x94\xa8\xc2\xde\x06\x00\x00"), }, "/components/contour/templates/02-rbac.yaml": &vfsgen۰CompressedFileInfo{ name: "02-rbac.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2079, + uncompressedSize: 263, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8d\x31\x4e\xc6\x30\x0c\x46\x77\x9f\xc2\x17\x48\x51\x37\x94\x0d\x18\xd8\x8b\xc4\xee\xa6\x06\x4c\x5b\x3b\x72\x9c\x0e\x9c\x1e\x55\xf0\x4f\x95\xfe\xd1\x7a\x7e\xdf\x4b\x29\x01\x50\x95\x77\xf6\x26\xa6\x19\x7d\xa6\x32\x50\x8f\x2f\x73\xf9\xa1\x10\xd3\x61\x7d\x6c\x83\xd8\xc3\x31\xce\x1c\x34\xc2\x2a\xba\x64\x7c\xd9\x7a\x0b\xf6\xc9\x36\x7e\x16\x5d\x44\x3f\x61\xe7\xa0\x85\x82\x32\x20\x2a\xed\x9c\xb1\x98\x86\x75\x07\xb7\x8d\x27\xfe\x38\x01\x55\x79\x75\xeb\xf5\x4e\x09\x10\x2f\x8d\xcb\x64\xeb\xf3\x37\x97\x68\x19\xd2\xff\xf7\x1b\xfb\x21\x85\x9f\x4a\xb1\xae\x71\x11\xfe\xee\x56\xa9\x70\xc6\xea\x76\xda\x37\x06\xbf\x01\x00\x00\xff\xff\x8f\x18\xdd\x8d\x07\x01\x00\x00"), + }, + "/components/contour/templates/02-role-contour.yaml": &vfsgen۰CompressedFileInfo{ + name: "02-role-contour.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1220, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x55\x4d\x93\xd3\x30\x0c\xbd\xe7\x57\x78\x72\x26\xdd\xd9\x1b\x93\x1b\x70\xe0\xbe\xcc\x70\xe9\x70\x50\x1d\x35\x35\x75\x2d\x8f\x24\xb7\x0b\xbf\x9e\x71\x3e\x98\x74\x13\xba\xa5\x94\xbd\xc9\xb1\xa5\xf7\xf4\xa4\x48\x55\x55\x15\x10\xdd\x57\x64\x71\x14\x6a\xc3\x1b\xb0\x2b\x48\xba\x23\x76\x3f\x41\x1d\x85\xd5\xfe\xbd\xac\x1c\x3d\x1c\x1f\x37\xa8\xf0\x58\xec\x5d\x68\x6a\xf3\xc9\x27\x51\xe4\x27\xf2\xf8\xd1\x85\xc6\x85\xb6\x38\xa0\x42\x03\x0a\x75\x61\x4c\x80\x03\xd6\xc6\x52\x50\x4a\x5c\x30\x79\x7c\xc2\x6d\xbe\x80\xe8\x3e\x33\xa5\x78\x01\xa9\x30\x66\x86\x31\x0b\x29\x69\xf3\x1d\xad\x4a\x5d\x54\xc3\xeb\x2f\xc8\x47\x67\xf1\x83\xb5\x94\x82\xce\x1c\xfa\xb3\x44\xb0\x58\x9b\xc8\x94\xbd\xc7\xbb\x3b\x88\x70\x29\xfb\xe4\xb1\xe3\x39\xe6\x2e\xf9\x4d\x65\xca\xb2\x30\x86\x51\x28\xb1\xc5\xe1\x9b\xa5\xb0\x75\xed\x01\xa2\x74\x47\x0c\x4d\x24\x17\xb4\x3f\x05\x6a\xb0\xb7\x22\x35\xbd\x21\x68\x19\xbb\xeb\x23\xf2\x66\x08\xe2\x9d\x68\x67\x9c\x40\xed\xee\x3a\xe0\x31\xf6\x24\x4c\x8b\x7a\x9d\xaf\xf4\xca\x2f\xb8\x5f\xc5\x26\xa0\x9e\x88\xf7\x2e\xb4\x83\xca\x0b\x10\x2e\xb4\x8c\x22\xff\x15\xa3\xfc\x0d\xf2\x20\x0a\x9a\xa4\xbc\x0a\xac\xab\x47\xb6\xcc\x50\x9a\xe1\x36\xc5\x06\x14\xcf\xb8\x98\x75\x39\x34\xc5\x6a\x87\x51\x1d\xad\x2c\x1d\xca\x6f\x67\x54\xcc\x7a\xe4\xc1\x94\x14\xa5\x7c\x67\x4a\xf5\x62\x91\xd5\x6d\x9d\x05\xc5\x06\x3d\xb6\x5d\x57\x4a\xe7\x7b\x25\xc5\xa4\xe7\xfc\xe2\x4c\x2a\xb3\x2e\xcf\x7f\x8c\xac\xd3\x8c\xdd\x4e\x35\x46\xa6\x67\xf7\xa6\xdc\xfa\x0a\xcd\xe9\x2d\x94\x71\x42\x70\xb9\x90\xcb\x95\x99\xb4\xc8\xf3\xd8\x24\xb3\xe4\x5b\x50\x3c\xc1\x0f\xeb\x21\xf7\x49\xce\x7f\xf8\xd2\xd9\x19\x79\x52\x35\x3b\x1e\xfe\x5d\x89\x1b\x07\xd4\xe5\xc9\x54\x79\x84\x06\x19\x3d\xda\x1c\xe2\xe2\x88\xbc\x79\x88\x4d\xf2\xb6\x8c\x59\xf7\x57\x24\x58\xa8\xce\x1f\x91\xf0\x88\xe1\xe5\xf4\x9b\xa0\x0c\xa1\xee\xa3\xe3\xab\x6b\xee\xaf\xe4\xbc\x6d\x23\x2e\xad\xc2\x97\xb0\x77\xdd\x8c\xbf\x02\x00\x00\xff\xff\x7d\x7b\x11\x7e\x1f\x08\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xc1\x6e\xdb\x30\x0c\xbd\xeb\x2b\x88\xe6\xec\x14\xbb\x0d\xbe\x6d\x1d\xb0\x7b\x51\xec\x4e\x4b\x8c\xcd\x45\x16\x05\x92\x4a\x96\x7d\xfd\x10\xc7\xe9\x86\x6d\x87\x36\x68\x4f\x96\x9e\xc9\xf7\x1e\x29\x72\x03\x4f\x13\xc1\x4e\x72\x96\x23\x97\x11\x1e\x72\x33\x27\x7d\x94\x4c\xc0\x06\x23\x15\x52\x74\x4a\xb0\x53\x99\x61\xdf\x06\x1a\x1a\xe7\x44\x0a\x8f\x9f\x3f\x3d\x80\xe3\x68\x30\x9c\xc2\xe6\x39\xb2\xd3\x01\xe3\xd6\xa6\x2d\x7c\x11\x28\xe2\x40\x89\x1d\x7c\x62\x83\x1d\x67\x82\xc4\x4a\xd1\xf3\x09\x86\xe6\xc0\xc5\x9c\x30\x5d\x63\x08\x4c\x9a\x46\x0a\x9b\x25\xd6\x00\x4b\x02\xa5\x4e\xa9\x24\xd2\x6d\x08\x5d\xd7\x05\xac\xfc\x8d\xd4\x58\x4a\x0f\x8b\x16\x36\x9f\x44\xf9\x27\x3a\x4b\xd9\xee\x3f\xda\x96\xe5\xfe\xf0\x21\xec\xb9\xa4\xfe\xcf\x82\xc2\x4c\x8e\x09\x1d\xfb\x00\x10\x95\x96\x84\x27\x9e\xc9\x1c\xe7\xda\x43\x69\x39\x07\x80\x82\x33\xf5\x10\xa5\xb8\x34\x0d\xda\x32\x59\x1f\x3a\xc0\xca\x5f\x55\x5a\xb5\x73\x76\x07\x77\x77\x01\x40\xe9\x62\x78\xc5\xa2\x94\x1d\x8f\x33\x56\x0b\x00\x07\xd2\xe1\x8a\x9f\xb5\x68\x39\x8e\xe4\xcb\xb7\xd5\x74\x86\x5e\x44\x4b\x25\x55\xe1\xe2\x7f\xb1\x5e\xa9\x32\xdb\xe5\x70\x44\x8f\xd3\xcb\x28\x8d\xa2\xd2\xdb\x12\xea\x81\x23\xdd\xc8\x58\xc8\x8f\xa2\x7b\x2e\xe3\xfa\x7e\xff\x0a\x8c\xe8\x74\xc4\x53\xcc\x68\xb6\xc8\x3c\x43\x97\xcb\xe4\x5e\x55\x9a\xaf\xff\x3c\xfe\xbe\xbd\x8f\x21\x2e\xa3\xd2\xea\xe5\x9d\x15\xee\xcd\xd1\xdb\xed\x43\x55\x55\xbe\x53\xf4\x75\xa4\xff\xab\x75\x6e\x5f\x55\xf9\xc1\xd7\xfe\x65\x8b\xa4\xce\x3b\x8e\xe7\xf5\xa7\x4c\xe3\xb2\x2e\x37\x56\xfb\x3a\x07\xaf\xac\xf7\x57\x00\x00\x00\xff\xff\xd6\x25\x9b\xee\xc4\x04\x00\x00"), }, "/components/contour/templates/02-service-contour.yaml": &vfsgen۰CompressedFileInfo{ name: "02-service-contour.yaml", @@ -690,9 +690,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/templates/03-envoy.yaml": &vfsgen۰CompressedFileInfo{ name: "03-envoy.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3881, + uncompressedSize: 3908, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4b\x6f\xdb\x46\x10\xbe\xeb\x57\x2c\xdc\x14\x48\x0f\xd4\x23\xc9\xc1\x25\xe0\x83\x6b\xbb\x6e\x81\x44\x16\x2c\xdb\x70\x4e\xc1\x6a\x39\x22\x37\x5a\xee\x10\xbb\x43\x3a\x8c\xea\xff\x5e\x2c\x29\x52\x4b\xea\x61\x17\x45\x83\xfa\x64\xcc\x7c\xf3\xfe\x66\x96\x0a\x82\x60\xf0\x13\x7b\x7c\x7c\x0c\xd9\x47\x5c\x61\x8a\x24\x0b\x60\x36\x03\x21\x97\x52\x30\x91\x70\x1d\xc3\x60\x25\x75\x14\xb2\x5b\x54\xf0\x9b\xd4\x91\xd4\xf1\x80\x67\xf2\x01\x8c\x95\xa8\x43\x66\x16\x5c\x0c\x79\x4e\x09\x1a\xf9\x9d\x93\x44\x3d\x5c\x9d\xda\xa1\xc4\x51\x31\x19\xa4\x40\x3c\xe2\xc4\xc3\x01\x63\x9a\xa7\x10\x32\xd0\x05\x96\x41\x66\x64\x21\x15\xc4\x10\x05\x99\xcd\x36\x4a\x9b\x71\x01\x21\xcb\x0c\x7e\x05\x41\x02\x35\x61\x6e\x06\x06\x15\xdc\xc2\xd2\x79\xa8\x13\xb9\x50\xb9\x25\x30\x2e\x9f\xd6\xeb\x8e\x3f\x9e\xc9\x6b\x83\x79\x76\x24\xbf\x81\xcd\x17\x2e\x90\x0d\x07\xc1\xc6\xf5\x1c\x4c\x21\x05\x9c\x0b\x81\xb9\xa6\x6e\xce\x47\x93\x74\x8d\xf4\x9b\xc2\xb3\xcc\xba\xfa\x6b\xb7\x97\x1c\x52\xd4\x73\xa0\x4e\x3f\x14\x5f\x80\xb2\xee\x3f\x97\x6e\xd6\x0d\xf3\x9a\xa0\x6e\x4e\xce\x3c\xcf\x22\x4e\x30\x27\xc3\x09\xe2\xb2\x76\x48\x65\x06\xd5\xcc\x94\xd4\xf1\x7d\x05\xa8\xe4\xc6\x97\xd4\x50\xc6\x52\xfe\xed\x5e\xf3\x82\x4b\xc5\x17\x0a\x42\x36\x19\xff\x3c\x60\xcc\x82\x02\x41\x68\x6a\x54\xca\x49\x24\x1f\xbd\x94\x7b\x49\x13\xa4\x99\x6a\x7d\xfa\x75\x56\x50\xad\x91\xaa\xe6\xb7\xd6\xcc\x95\x93\x02\x25\x90\x57\x6c\xb1\xc2\x70\x97\xf3\x09\x99\x1c\x4e\x0e\x80\x32\x34\x14\xb2\x93\xd3\xf1\xf8\xdd\x41\x08\xa7\x24\x64\x27\x23\x4b\x9c\xec\x68\xab\x6b\xf0\xaa\x53\x43\xaf\x0a\xc6\x9a\xa6\xba\xbf\xf5\x3a\x60\x4f\x92\x12\x36\x7c\xe0\x2a\x07\x3b\xd4\x18\xc1\xf9\x72\x29\xb5\xa4\x92\x3d\x3f\x37\xc5\x6d\x24\x5b\x9f\x3e\x2e\x1c\xac\xd7\x8c\xf0\x33\x4f\x15\x1b\xb2\xbf\x98\xd4\x11\x68\x62\x93\xf1\xd6\x81\x8b\x03\x3a\x72\x82\x43\x91\x09\x15\x98\xba\x81\x5b\x3b\x4f\x78\x20\xca\xe9\xb1\x20\x8e\x47\x5c\x6a\x30\x6d\x37\x02\x26\x30\x4d\xb9\x8e\xb6\xa5\x04\x6c\xb4\x90\x7a\xd4\x70\xae\xed\x9a\x89\xbd\x1e\x3a\xd8\xb6\x85\x8d\xc4\x26\x39\x45\xf8\xa4\x83\x94\x6b\x1e\xc3\xd6\x58\xa6\x3c\x86\x90\xad\xd7\x4d\x75\x1b\xef\xc3\x4a\xf1\xfc\x1c\xee\x6a\x88\xc7\x6d\x25\x1b\x07\xb3\x5c\xa9\x19\x2a\x29\xca\x90\x9d\xab\x27\x5e\xda\x56\xaf\xe4\x12\x44\x29\x14\xf8\x29\x66\x06\xe6\x84\x99\x2f\x62\x2c\x21\xca\xae\x81\xba\x42\xc6\x6a\x12\x8d\x9a\x0a\xfa\xda\x8a\x85\xa7\xe3\x5f\xc7\x3d\x85\x15\x09\xb8\xdd\xfd\xe3\xee\x6e\xe6\x25\x53\x80\x06\x6b\x67\x06\x17\x9d\x84\xf6\xc6\xde\x44\x4e\x80\x2b\x4a\xbe\x0f\x5e\x0c\xeb\x38\x26\xb9\xba\x04\xc5\xcb\x39\x08\xd4\x91\x0d\xd9\x7b\xbf\x6c\x30\x12\xa3\x56\x35\xd9\x1a\xd7\x77\xe6\xc0\x94\x82\xde\x88\x03\x16\x08\x9f\x14\x02\xf5\x52\xc6\xa3\x6a\xea\xc3\xaf\x16\xb5\x8f\x0c\x6c\x7d\x48\x03\x51\xdf\x6a\xf6\xe6\xed\xc5\xcd\xf4\xee\xe6\xfe\xf6\xcb\xf4\xfc\xd3\xd5\x7c\x76\x7e\x71\xf5\xcb\x5e\x03\xb7\x39\xec\xcd\xdb\xab\xe9\xc3\xcd\xe7\x2f\xb3\x9b\xcb\x0a\xdf\x85\x2a\x8c\x03\x05\x05\x28\x26\xf5\x12\x5b\xd5\x1e\xe6\x76\x29\xb9\xc3\xba\x3a\xf7\x5d\xce\xd5\xf2\x17\x18\xf7\xe7\x72\x8a\x34\x33\x60\xa1\x7a\x28\xfc\x8e\x76\xc3\x82\x2e\xfc\x9c\x6a\xc8\x4e\x37\xbc\x81\x15\x2e\x8b\xdf\x0d\xa6\x5d\x62\x2c\x25\xa8\x68\xf3\x10\xfa\x7f\xfe\xb3\x53\x4c\x7a\xca\xca\x68\x56\x51\xaa\x39\xc9\xc3\xf6\x41\xd9\xc9\xaa\xdb\xf5\x1f\x9c\xd2\xf6\x9c\xa3\xa1\x0e\xf1\xda\x3b\x35\xdb\x2c\x80\xe7\xb1\x4e\xdc\x6d\x52\x67\xd3\x91\x50\xa0\x0a\xd9\xdd\xc5\xec\xb0\xa3\x0f\x1f\xde\xef\xf5\x64\x5f\x74\x65\x80\x47\xf2\x1f\xef\xb4\xb3\x2a\xf7\x6e\xf4\xf8\xdd\xbf\xd8\xe8\x0f\xad\xaa\x40\x95\xa7\xf0\xc9\x7d\xbb\xf4\x8e\xb3\xff\xed\x55\x6f\x6e\x27\x8f\xd4\x99\xd4\x33\x19\xed\xa8\x3b\xd6\x02\x0c\x1d\x36\x05\x43\xff\xcb\x23\xec\x5a\x7a\xb1\xe7\xb5\xeb\x9f\xb8\x05\x22\x59\x32\x3c\x7b\xfd\xa5\xfb\x16\xd9\x80\x47\x91\x01\x6b\xcf\xfa\x8f\x64\xa3\x77\xa9\x9e\x9d\x8e\xc7\x93\x8e\xc6\x80\xc5\xdc\x08\xb0\x41\x24\xcd\x59\x13\xa6\x95\x76\xb0\x9b\xc9\xf1\xa5\x54\x70\x56\xf7\x79\x24\xf8\x50\x78\xc3\xf0\x60\x60\x28\xf0\x91\xa4\xec\x01\xe8\x0a\xca\x1d\xe4\x0a\xca\x63\x47\xb5\x5f\xe4\x7f\xfe\x98\xfb\xdc\x75\x83\xec\x11\x74\x3f\xe9\x5f\xa0\xfc\x11\xc2\x1f\xa3\xfb\x61\xb2\xd7\x37\xe1\x46\xab\x32\x64\xee\x03\xf6\x87\x9d\xff\xd7\x5c\xf8\x97\x7f\xe2\xd5\x38\x9e\x13\x56\x25\x76\x7f\x07\xdd\xe1\x0a\x74\xc8\x96\x5c\xd9\x06\x69\x3b\x80\xe9\xce\xb3\x47\x60\x52\xa9\xab\x4f\xd3\x6b\xc3\x05\xcc\xba\x27\xeb\xfd\xb8\x59\xda\x7a\x7a\xaf\x1f\x1c\xa4\x19\x95\x97\xd2\x84\x6c\xfd\xfc\xaa\x91\x59\x10\xa6\x7f\x5a\x6a\xd9\x74\xaf\x8d\x01\x4b\xdc\x50\x8f\x8b\x7f\x07\x00\x00\xff\xff\x59\x8b\x96\xe0\x29\x0f\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x57\xdd\x6f\xdb\x36\x10\x7f\xf7\x5f\x41\x64\x1d\xd0\x3d\xc8\x1f\x6d\x1f\x32\x01\x79\xc8\x92\x2e\x1b\xd0\x3a\x46\x9c\x04\xe9\x53\x41\x53\x67\x9b\x35\xc5\x13\xc8\x93\x12\xd5\xcb\xff\x3e\x50\xb2\x64\x52\xfe\x48\xb6\x61\xd5\x93\x71\x9f\xbf\xfb\xdd\xf1\x48\x47\x51\xd4\xfb\x89\x3d\x3c\x3c\xc4\xec\x13\xae\x30\x45\x92\x05\x30\x9b\x81\x90\x73\x29\x98\x58\x72\xbd\x80\xde\x4a\xea\x24\x66\x37\xa8\xe0\x37\xa9\x13\xa9\x17\x3d\x9e\xc9\x7b\x30\x56\xa2\x8e\x99\x99\x71\xd1\xe7\x39\x2d\xd1\xc8\xef\x9c\x24\xea\xfe\xea\xd4\xf6\x25\x0e\x8a\x51\x2f\x05\xe2\x09\x27\x1e\xf7\x18\xd3\x3c\x85\x98\x81\x2e\xb0\x8c\x32\x23\x0b\xa9\x60\x01\x49\x94\xd9\x6c\xa3\xb4\x19\x17\x10\xb3\xcc\xe0\x37\x10\x24\x50\x13\xe6\xa6\x67\x50\xc1\x0d\xcc\x5d\x84\x1a\xc8\x85\xca\x2d\x81\x71\x78\xda\xa8\x3b\xf1\x78\x26\xaf\x0c\xe6\xd9\x11\x7c\x3d\x9b\xcf\x5c\x22\x1b\xf7\xa2\x4d\xe8\x29\x98\x42\x0a\x38\x17\x02\x73\x4d\x21\xe6\xa3\x20\x1d\x91\x3e\x29\x3c\xcb\xac\xab\xbf\x0e\x7b\xc9\x21\x45\x3d\x05\x0a\xf8\x50\x7c\x06\xca\xba\x5f\x0e\x6e\x16\xa6\x79\x4d\x52\xd7\x27\xe7\x9e\x67\x09\x27\x98\x92\xe1\x04\x8b\xb2\x0e\x48\x65\x06\x55\xcf\x94\xd4\x8b\xbb\xca\xa0\x92\x1b\x5f\x52\x9b\x32\x96\xf2\xa7\x3b\xcd\x0b\x2e\x15\x9f\x29\x88\xd9\x68\xf8\x73\x8f\x31\x0b\x0a\x04\xa1\xa9\xad\x52\x4e\x62\xf9\xc9\x83\xdc\x01\x4d\x90\x66\xaa\x8d\xe9\xd7\x59\x99\x6a\x8d\x54\x91\xdf\x7a\x33\x57\x4e\x0a\xb4\x84\xbc\x9a\x16\x2b\x0c\x77\x98\x4f\xc8\xe4\x70\x72\xc0\x28\x43\x43\x31\x3b\x39\x1d\x0e\xdf\x1d\x34\xe1\xb4\x8c\xd9\xc9\xc0\x12\x27\x3b\xd8\xea\x1a\x7b\x15\xd4\xd0\xa9\x82\xb1\x86\x54\xf7\xad\xd7\x11\x7b\x94\xb4\x64\xfd\x7b\xae\x72\xb0\x7d\x8d\x09\x9c\xcf\xe7\x52\x4b\x2a\xd9\xf3\x73\x53\xdc\x46\xb2\x8d\xe9\xdb\xc5\xbd\xf5\x9a\x11\x7e\xe1\xa9\x62\x7d\xf6\x17\x93\x3a\x01\x4d\x6c\x34\xdc\x06\x70\x79\x40\x27\x4e\x70\x28\x33\xa1\x02\x53\x13\xb8\xf5\xf3\x84\x07\xb2\x9c\x1e\x4b\xe2\xe6\x88\x4b\x0d\xa6\x65\x23\x62\x02\xd3\x94\xeb\x64\x5b\x4a\xc4\x06\x33\xa9\x07\xcd\xcc\xb5\xac\x99\x85\xc7\xa1\x33\xdb\x52\xd8\x48\xec\x32\xa7\x04\x1f\x75\x94\x72\xcd\x17\xb0\x75\x96\x29\x5f\x40\xcc\xd6\xeb\xa6\xba\x4d\xf4\x7e\xa5\x78\x7e\x8e\x77\x35\xc4\x17\x6d\x25\x9b\x00\x93\x5c\xa9\x09\x2a\x29\xca\x98\x9d\xab\x47\x5e\xda\x56\xaf\xe4\x1c\x44\x29\x14\xf8\x10\x33\x03\x53\xc2\xcc\x17\x31\x06\x4f\xdb\x76\x37\xdf\x0e\x07\x2f\x70\x71\x98\x83\x2e\x13\x1e\xc0\x02\x34\x58\x3b\x31\x38\x0b\x40\x2e\x89\xb2\x2b\xa0\x30\x77\x3d\xd2\x83\x25\x70\x45\xcb\xef\xa1\xaa\x3a\x10\xa7\xc3\x5f\x87\x9e\xd8\xcd\x9d\xe4\xea\x12\x14\x2f\xa7\x20\x50\x27\x36\x66\xef\x7d\x2a\xc0\x48\x4c\x5a\xd5\x68\xeb\x5c\xef\x9e\x03\x9d\x8b\x3a\x6d\x8f\x58\x24\xfc\x41\x11\xa8\xe7\x72\x31\xa8\x58\xe8\x7f\xb3\xa8\x7d\xcb\xc8\xd6\xcb\x35\x12\xf5\xfe\x66\x6f\xde\x5e\x5c\x8f\x6f\xaf\xef\x6e\xbe\x8e\xcf\x3f\x7f\x9c\x4e\xce\x2f\x3e\xfe\xb2\xd7\xc1\x9d\x26\xf6\xe6\xed\xc7\xf1\xfd\xf5\x97\xaf\x93\xeb\xcb\xca\x3e\x34\x55\xb8\x88\x14\x14\xa0\x98\xd4\x73\xec\x1d\xec\x64\xb7\x45\x3b\x93\x58\x63\xdf\x9d\xc3\x5a\xfe\xc2\x14\xfe\x39\x1f\x23\x4d\x0c\x58\xa8\x2e\x0f\x9f\xd1\x30\x2d\xe8\xc2\xc7\x54\x9b\xec\xb0\xe1\x35\xac\x70\x28\x7e\x37\x98\x86\x83\x31\x97\xa0\x92\xcd\xe5\xe8\x7f\xfe\x55\x54\x8c\x3a\xca\xca\x69\x52\x8d\x54\xb3\xa6\xfb\xed\x25\xb3\x83\x2a\x64\xfd\x07\x43\xda\xae\x78\x34\x14\x0c\x5e\xbb\xbb\x26\x9b\x03\xe0\x9f\x21\xb4\xb4\x47\x5c\xd7\xe3\x0e\x58\xb0\x14\x90\x50\xa0\x8a\xd9\xed\xc5\xe4\x70\xfc\x0f\x1f\xde\xef\x4d\x10\xca\xb7\x19\xec\x8b\x29\x0c\xf0\x44\xfe\xe3\x15\xe0\xbc\xca\xbd\x0b\x60\xf8\xee\x3f\x2c\x80\x0f\xad\xaa\x40\x95\xa7\xf0\xd9\x3d\x7f\x3a\xfb\xdd\x7f\xbe\xd5\x07\x3d\xc0\x91\x3a\x97\xba\x85\x83\x1d\x75\xe0\x2d\xc0\xd0\x61\x57\x30\xf4\x6f\xf6\xf8\x5e\xd2\x5a\xda\x76\xf6\x6f\xc8\x5d\xb0\x3c\xdd\x67\xc5\x12\x1c\xde\x3f\x6e\x6f\x9b\x8e\x39\x4a\x2f\xf6\x5c\x98\xdd\x8d\x38\x43\x24\x4b\x86\x67\xaf\x5f\x8c\x4f\x89\x8d\x78\x92\x18\xb0\xf6\xac\x7b\xb7\x34\x7a\x07\xf5\xec\x74\x38\x1c\x05\x1a\x03\x16\x73\x23\xc0\x46\x89\x34\x67\x4d\x9a\x56\x1a\xd8\x6e\x3a\xc7\xe7\x52\xc1\x59\xcd\xf3\x40\xf0\xbe\xf0\x9a\xe1\x99\x81\xa1\xc8\xb7\x24\x65\x0f\x98\xae\xa0\xdc\xb1\x5c\x41\x79\x6c\x07\x77\x8b\xfc\xdf\xdf\x03\xfe\xec\xba\x46\x76\x06\x74\xff\xd0\xbf\x30\xf2\x47\x06\xfe\xd8\xb8\x1f\x1e\xf6\x7a\x27\x5c\x6b\x55\xc6\xcc\xbd\x81\x7f\xd8\x6d\xf1\x9a\x0b\x81\xe7\x84\x15\xf4\xf0\x2f\xd2\x2d\xae\x40\xc7\x6c\xce\x95\x6d\x2c\x6d\x60\x30\xde\xb9\xfd\x08\x4c\x2a\x75\xf5\x6a\xbd\x32\x5c\xc0\x24\x5c\x45\xef\x87\xcd\x61\xac\xbb\xf2\xfa\x86\x40\x9a\x51\x79\x29\x4d\xcc\xd6\xcf\xaf\x6a\x85\x05\x61\xba\x2b\xa3\x96\x8d\xf7\xfa\x18\xb0\xc4\x0d\x75\x66\xec\xef\x00\x00\x00\xff\xff\x7e\x8d\x74\xab\x44\x0f\x00\x00"), }, "/components/contour/templates/alerts.yaml": &vfsgen۰CompressedFileInfo{ name: "alerts.yaml", @@ -727,7 +727,7 @@ var vfsgenAssets = func() http.FileSystem { modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), uncompressedSize: 495, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3d\x4f\xc3\x40\x0c\x86\x77\xff\x0a\x4b\x99\x9b\x52\x09\x96\xdb\x90\xe8\xc0\xc2\xd2\x6e\x88\xe1\xb8\x38\xa9\xc9\xe5\x9c\x3a\x4e\x48\x84\xf8\xef\x28\xe9\x87\x8a\x84\xc4\x94\xe8\x79\xfc\xbe\x96\x75\x8d\x24\x36\x51\x4e\x95\x03\x44\x4a\xfe\x3d\x92\xc3\xd2\xc7\x8e\x00\x82\x24\x93\x5e\x67\xc3\x8d\xaf\xc8\x61\x21\xa1\x26\xcd\x59\xd6\xad\xca\x07\x05\x3b\x8f\xac\xcf\x5f\x40\x34\x5f\x39\x1c\x36\xf9\x43\x7e\x07\x40\x69\x90\xe9\xcf\xfc\x62\x5a\x95\x71\x3a\xfd\xde\x24\x37\xf7\xf9\x06\x10\x3b\xd2\x81\x03\xed\xa7\x96\x1c\x40\x92\x82\x1e\xcb\x92\x13\xdb\xe4\xf0\xeb\x1b\x32\xfc\x85\x20\x43\x44\xa5\x63\xcf\x4a\xc5\x53\x3f\x5f\xb4\x0b\x07\x2a\xfa\xc8\xa9\x7a\xae\x92\x5c\xf1\x76\xa4\xd0\x1b\x4b\x3a\x65\x70\xe9\xd9\x51\xa4\x60\xa2\x7b\xd2\xa6\xbb\x88\x15\x36\xde\xc2\x61\x3b\xb6\x4a\x5d\xc7\x92\xae\x66\x76\x35\x4d\x0e\x13\xd9\xa7\x68\x9d\x47\xa9\xa5\x11\xe3\x81\x72\x96\xeb\x10\xa2\xb4\xa4\xde\x44\x1d\x6e\x47\xee\xac\x03\x00\x93\x38\xb3\xa5\x0e\x5f\xdf\x20\xc3\x5b\x02\x19\xae\x90\xca\x92\x82\x39\x7c\x91\xf3\x0d\xb4\x54\xfe\xb3\xf1\x66\xd7\xb1\xf7\x71\x61\x83\x8f\x3d\x39\xbc\x3c\xcf\x4f\x00\x00\x00\xff\xff\xc2\x5f\x3f\x33\xef\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xf3\x40\x0c\xc6\x77\x7d\x0a\x81\xe7\x38\xc9\xf0\xf2\xc2\x6d\x85\x66\xe8\xd2\x25\xd9\x4a\x87\xeb\x59\x76\x54\x9f\x4f\x8e\x2c\xbb\x36\xa5\xdf\xbd\xd8\xf9\x43\x0a\x85\x4e\x36\xbf\x9f\x9e\x47\x88\x6b\x24\xb1\x89\x72\xaa\x1c\x20\x52\xf2\x6f\x91\x1c\x96\x3e\x76\x04\x10\x24\x99\xf4\x3a\x1b\x6e\x7c\x45\x0e\x0b\x09\x35\x69\xce\xb2\x6e\x55\xde\x29\xd8\x65\x64\x7d\xf9\x02\xa2\xf9\xca\xe1\xb0\xcd\xff\xe7\x1b\x00\x4a\x83\x4c\xbf\xe6\x17\xd3\xaa\x8c\xd3\xf9\xf7\x2e\xb9\xfd\x97\x6f\x00\xb1\x23\x1d\x38\xd0\x61\x6a\xc9\x01\x24\x29\xe8\xa1\x2c\x39\xb1\x4d\x0e\x3f\xbf\x20\xc3\x1f\x08\x32\x44\x54\x3a\xf5\xac\x54\x3c\xf6\xf3\x45\xfb\x70\xa4\xa2\x8f\x9c\xaa\xa7\x2a\xc9\x0d\xef\x46\x0a\xbd\xb1\xa4\x73\x06\x97\x9e\x3d\x45\x0a\x26\x7a\x20\x6d\xba\xab\x58\x61\xe3\x2d\x1c\x77\x63\xab\xd4\x75\x2c\xe9\x66\x66\x57\xd3\xe4\x30\x91\x7d\x88\xd6\x79\x94\x5a\x1a\x31\x1e\x28\x67\xb9\x0d\x21\x4a\x4b\xea\x4d\xd4\xe1\x6e\xe4\xce\x3a\x00\x30\x89\x33\x5b\xea\xf0\xe5\x15\x32\xbc\x27\x90\xe1\x0a\xa9\x2c\x29\x98\xc3\x67\xb9\xdc\x40\x4b\xe5\x1f\x1b\xef\x76\x9d\x7a\x1f\x17\x36\xf8\xd8\x93\xc3\xeb\xf3\x7c\x07\x00\x00\xff\xff\xc9\x1a\xfd\xbd\xef\x01\x00\x00"), }, "/components/external-dns": &vfsgen۰DirInfo{ name: "external-dns", @@ -5174,7 +5174,6 @@ var vfsgenAssets = func() http.FileSystem { } fs["/components/contour/dashboards"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/components/contour/dashboards/apiserver.json"].(os.FileInfo), - fs["/components/contour/dashboards/contour-ingressroute.json"].(os.FileInfo), fs["/components/contour/dashboards/contour-proxy.json"].(os.FileInfo), fs["/components/contour/dashboards/envoy.json"].(os.FileInfo), } @@ -5183,6 +5182,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/components/contour/templates/01-contour-config.yaml"].(os.FileInfo), fs["/components/contour/templates/02-job-certgen.yaml"].(os.FileInfo), fs["/components/contour/templates/02-rbac.yaml"].(os.FileInfo), + fs["/components/contour/templates/02-role-contour.yaml"].(os.FileInfo), fs["/components/contour/templates/02-service-contour.yaml"].(os.FileInfo), fs["/components/contour/templates/02-service-envoy.yaml"].(os.FileInfo), fs["/components/contour/templates/03-contour.yaml"].(os.FileInfo),