diff --git a/Makefile b/Makefile index 31ff7bd13..665bfdb97 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ CONTROLLER_GEN ?= $(LOCALBIN)/controller-gen YQ ?= $(LOCALBIN)/yq ## Tool Versions -CONTROLLER_TOOLS_VERSION ?= v0.9.0 +CONTROLLER_TOOLS_VERSION ?= v0.14.0 YQ_VERSION ?= v4.28.1 .PHONY: controller-gen diff --git a/crds/operators.coreos.com_catalogsources.yaml b/crds/operators.coreos.com_catalogsources.yaml index 4d1664b08..b3f1db4b3 100644 --- a/crds/operators.coreos.com_catalogsources.yaml +++ b/crds/operators.coreos.com_catalogsources.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: catalogsources.operators.coreos.com spec: group: operators.coreos.com @@ -44,10 +43,19 @@ spec: - spec 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' + 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' + 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 @@ -57,10 +65,16 @@ spec: - sourceType properties: address: - description: 'Address is a host that OLM can use to connect to a pre-existing registry. Format: : Only used when SourceType = SourceTypeGrpc. Ignored when the Image field is set.' + description: |- + Address is a host that OLM can use to connect to a pre-existing registry. + Format: : + Only used when SourceType = SourceTypeGrpc. + Ignored when the Image field is set. type: string configMap: - description: ConfigMap is the name of the ConfigMap to be used to back a configmap-server registry. Only used when SourceType = SourceTypeConfigmap or SourceTypeInternal. + description: |- + ConfigMap is the name of the ConfigMap to be used to back a configmap-server registry. + Only used when SourceType = SourceTypeConfigmap or SourceTypeInternal. type: string description: type: string @@ -68,7 +82,9 @@ spec: description: Metadata type: string grpcPodConfig: - description: GrpcPodConfig exposes different overrides for the pod spec of the CatalogSource Pod. Only used when SourceType = SourceTypeGrpc and Image is set. + description: |- + GrpcPodConfig exposes different overrides for the pod spec of the CatalogSource Pod. + Only used when SourceType = SourceTypeGrpc and Image is set. type: object properties: affinity: @@ -80,10 +96,21 @@ spec: type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node matches the corresponding matchExpressions; the + node(s) with the highest sum are the most preferred. type: array items: - description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + description: |- + An empty preferred scheduling term matches all objects with implicit weight 0 + (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). type: object required: - preference @@ -97,7 +124,9 @@ spec: description: A list of node selector requirements by node's labels. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -107,10 +136,17 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string @@ -118,7 +154,9 @@ spec: description: A list of node selector requirements by node's fields. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -128,19 +166,32 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string + x-kubernetes-map-type: atomic weight: description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to an update), the system + may or may not try to eventually evict the pod from its node. type: object required: - nodeSelectorTerms @@ -149,14 +200,19 @@ spec: description: Required. A list of node selector terms. The terms are ORed. type: array items: - description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + description: |- + A null or empty node selector term matches no objects. The requirements of + them are ANDed. + The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. type: object properties: matchExpressions: description: A list of node selector requirements by node's labels. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -166,10 +222,17 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string @@ -177,7 +240,9 @@ spec: description: A list of node selector requirements by node's fields. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -187,19 +252,37 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string + x-kubernetes-map-type: atomic + x-kubernetes-map-type: atomic podAffinity: description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. type: array items: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) @@ -215,14 +298,18 @@ spec: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -232,27 +319,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -262,48 +396,86 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -313,27 +485,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -343,32 +562,60 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string podAntiAffinity: description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the anti-affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling anti-affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. type: array items: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) @@ -384,14 +631,18 @@ spec: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -401,27 +652,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -431,48 +729,86 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + description: |- + If the anti-affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the anti-affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -482,27 +818,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -512,28 +895,50 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string extractContent: - description: ExtractContent configures the gRPC catalog Pod to extract catalog metadata from the provided index image and use a well-known version of the `opm` server to expose it. The catalog index image that this CatalogSource is configured to use *must* be using the file-based catalogs in order to utilize this feature. + description: |- + ExtractContent configures the gRPC catalog Pod to extract catalog metadata from the provided index image and + use a well-known version of the `opm` server to expose it. The catalog index image that this CatalogSource is + configured to use *must* be using the file-based catalogs in order to utilize this feature. type: object required: - cacheDir @@ -546,22 +951,55 @@ spec: description: CatalogDir is the directory storing the file-based catalog contents. type: string memoryTarget: - description: "MemoryTarget configures the $GOMEMLIMIT value for the gRPC catalog Pod. This is a soft memory limit for the server, which the runtime will attempt to meet but makes no guarantees that it will do so. If this value is set, the Pod will have the following modifications made to the container running the server: - the $GOMEMLIMIT environment variable will be set to this value in bytes - the memory request will be set to this value \n This field should be set if it's desired to reduce the footprint of a catalog server as much as possible, or if a catalog being served is very large and needs more than the default allocation. If your index image has a file- system cache, determine a good approximation for this value by doubling the size of the package cache at /tmp/cache/cache/packages.json in the index image. \n This field is best-effort; if unset, no default will be used and no Pod memory limit or $GOMEMLIMIT value will be set." + description: |- + MemoryTarget configures the $GOMEMLIMIT value for the gRPC catalog Pod. This is a soft memory limit for the server, + which the runtime will attempt to meet but makes no guarantees that it will do so. If this value is set, the Pod + will have the following modifications made to the container running the server: + - the $GOMEMLIMIT environment variable will be set to this value in bytes + - the memory request will be set to this value + + + This field should be set if it's desired to reduce the footprint of a catalog server as much as possible, or if + a catalog being served is very large and needs more than the default allocation. If your index image has a file- + system cache, determine a good approximation for this value by doubling the size of the package cache at + /tmp/cache/cache/packages.json in the index image. + + + This field is best-effort; if unset, no default will be used and no Pod memory limit or $GOMEMLIMIT value will be set. pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ anyOf: - type: integer - type: string x-kubernetes-int-or-string: true nodeSelector: - description: NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. + description: |- + NodeSelector is a selector which must be true for the pod to fit on a node. + Selector which must match a node's labels for the pod to be scheduled on that node. type: object additionalProperties: type: string priorityClassName: - description: If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default. + description: |- + If specified, indicates the pod's priority. + If not specified, the pod priority will be default or zero if there is no + default. type: string securityContextConfig: - description: "SecurityContextConfig can be one of `legacy` or `restricted`. The CatalogSource's pod is either injected with the right pod.spec.securityContext and pod.spec.container[*].securityContext values to allow the pod to run in Pod Security Admission (PSA) `restricted` mode, or doesn't set these values at all, in which case the pod can only be run in PSA `baseline` or `privileged` namespaces. Currently if the SecurityContextConfig is unspecified, the default value of `legacy` is used. Specifying a value other than `legacy` or `restricted` result in a validation error. When using older catalog images, which could not be run in `restricted` mode, the SecurityContextConfig should be set to `legacy`. \n In a future version will the default will be set to `restricted`, catalog maintainers should rebuild their catalogs with a version of opm that supports running catalogSource pods in `restricted` mode to prepare for these changes. \n More information about PSA can be found here: https://kubernetes.io/docs/concepts/security/pod-security-admission/'" + description: |- + SecurityContextConfig can be one of `legacy` or `restricted`. The CatalogSource's pod is either injected with the + right pod.spec.securityContext and pod.spec.container[*].securityContext values to allow the pod to run in Pod + Security Admission (PSA) `restricted` mode, or doesn't set these values at all, in which case the pod can only be + run in PSA `baseline` or `privileged` namespaces. Currently if the SecurityContextConfig is unspecified, the default + value of `legacy` is used. Specifying a value other than `legacy` or `restricted` result in a validation error. + When using older catalog images, which could not be run in `restricted` mode, the SecurityContextConfig should be + set to `legacy`. + + + In a future version will the default will be set to `restricted`, catalog maintainers should rebuild their catalogs + with a version of opm that supports running catalogSource pods in `restricted` mode to prepare for these changes. + + + More information about PSA can be found here: https://kubernetes.io/docs/concepts/security/pod-security-admission/' type: string default: legacy enum: @@ -571,24 +1009,40 @@ spec: description: Tolerations are the catalog source's pod's tolerations. type: array items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + description: |- + The pod this Toleration is attached to tolerates any taint that matches + the triple using the matching operator . type: object properties: effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + description: |- + Effect indicates the taint effect to match. Empty means match all taint effects. + When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. type: string key: - description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + description: |- + Key is the taint key that the toleration applies to. Empty means match all taint keys. + If the key is empty, operator must be Exists; this combination means to match all values and all keys. type: string operator: - description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + description: |- + Operator represents a key's relationship to the value. + Valid operators are Exists and Equal. Defaults to Equal. + Exists is equivalent to wildcard for value, so that a pod can + tolerate all taints of a particular category. type: string tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + description: |- + TolerationSeconds represents the period of time the toleration (which must be + of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + it is not set, which means tolerate the taint forever (do not evict). Zero and + negative values will be treated as 0 (evict immediately) by the system. type: integer format: int64 value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + description: |- + Value is the taint value the toleration matches to. + If the operator is Exists, the value should be empty, otherwise just a regular string. type: string icon: type: object @@ -601,15 +1055,26 @@ spec: mediatype: type: string image: - description: Image is an operator-registry container image to instantiate a registry-server with. Only used when SourceType = SourceTypeGrpc. If present, the address field is ignored. + description: |- + Image is an operator-registry container image to instantiate a registry-server with. + Only used when SourceType = SourceTypeGrpc. + If present, the address field is ignored. type: string priority: - description: 'Priority field assigns a weight to the catalog source to prioritize them so that it can be consumed by the dependency resolver. Usage: Higher weight indicates that this catalog source is preferred over lower weighted catalog sources during dependency resolution. The range of the priority value can go from positive to negative in the range of int32. The default value to a catalog source with unassigned priority would be 0. The catalog source with the same priority values will be ranked lexicographically based on its name.' + description: |- + Priority field assigns a weight to the catalog source to prioritize them so that it can be consumed by the dependency resolver. + Usage: + Higher weight indicates that this catalog source is preferred over lower weighted catalog sources during dependency resolution. + The range of the priority value can go from positive to negative in the range of int32. + The default value to a catalog source with unassigned priority would be 0. + The catalog source with the same priority values will be ranked lexicographically based on its name. type: integer publisher: type: string secrets: - description: Secrets represent set of secrets that can be used to access the contents of the catalog. It is best to keep this list small, since each will need to be tried for every catalog entry. + description: |- + Secrets represent set of secrets that can be used to access the contents of the catalog. + It is best to keep this list small, since each will need to be tried for every catalog entry. type: array items: type: string @@ -617,23 +1082,48 @@ spec: description: SourceType is the type of source type: string updateStrategy: - description: UpdateStrategy defines how updated catalog source images can be discovered Consists of an interval that defines polling duration and an embedded strategy type + description: |- + UpdateStrategy defines how updated catalog source images can be discovered + Consists of an interval that defines polling duration and an embedded strategy type type: object properties: registryPoll: type: object properties: interval: - description: Interval is used to determine the time interval between checks of the latest catalog source version. The catalog operator polls to see if a new version of the catalog source is available. If available, the latest image is pulled and gRPC traffic is directed to the latest catalog source. + description: |- + Interval is used to determine the time interval between checks of the latest catalog source version. + The catalog operator polls to see if a new version of the catalog source is available. + If available, the latest image is pulled and gRPC traffic is directed to the latest catalog source. type: string status: type: object properties: conditions: - description: Represents the state of a CatalogSource. Note that Message and Reason represent the original status information, which may be migrated to be conditions based in the future. Any new features introduced will use conditions. + description: |- + Represents the state of a CatalogSource. Note that Message and Reason represent the original + status information, which may be migrated to be conditions based in the future. Any new features + introduced will use conditions. type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - lastTransitionTime @@ -643,20 +1133,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -669,7 +1171,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ @@ -693,7 +1200,10 @@ spec: resourceVersion: type: string uid: - description: UID is a type that holds unique ID values, including UUIDs. Because we don't ONLY use UUIDs, this is an alias to string. Being a type captures intent and helps make sure that UIDs and names do not get conflated. + description: |- + UID is a type that holds unique ID values, including UUIDs. Because we + don't ONLY use UUIDs, this is an alias to string. Being a type captures + intent and helps make sure that UIDs and names do not get conflated. type: string connectionState: description: ConnectionState represents the current state of the CatalogSource's connection to the registry diff --git a/crds/operators.coreos.com_clusterserviceversions.yaml b/crds/operators.coreos.com_clusterserviceversions.yaml index bffe75cde..c65bc25d3 100644 --- a/crds/operators.coreos.com_clusterserviceversions.yaml +++ b/crds/operators.coreos.com_clusterserviceversions.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: clusterserviceversions.operators.coreos.com spec: group: operators.coreos.com @@ -45,27 +44,42 @@ spec: - spec 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' + 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' + 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: ClusterServiceVersionSpec declarations tell OLM how to install an operator that can manage apps for a given version. + description: |- + ClusterServiceVersionSpec declarations tell OLM how to install an operator + that can manage apps for a given version. type: object required: - displayName - install properties: annotations: - description: Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. type: object additionalProperties: type: string apiservicedefinitions: - description: APIServiceDefinitions declares all of the extension apis managed or required by an operator being ran by ClusterServiceVersion. + description: |- + APIServiceDefinitions declares all of the extension apis managed or required by + an operator being ran by ClusterServiceVersion. type: object properties: owned: @@ -94,7 +108,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -150,7 +167,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -172,7 +192,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -207,7 +230,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -263,7 +289,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -285,7 +314,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -303,7 +335,12 @@ spec: enabled: type: boolean customresourcedefinitions: - description: "CustomResourceDefinitions declares all of the CRDs managed or required by an operator being ran by ClusterServiceVersion. \n If the CRD is present in the Owned list, it is implicitly required." + description: |- + CustomResourceDefinitions declares all of the CRDs managed or required by + an operator being ran by ClusterServiceVersion. + + + If the CRD is present in the Owned list, it is implicitly required. type: object properties: owned: @@ -331,7 +368,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -380,7 +420,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -402,7 +445,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -436,7 +482,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -485,7 +534,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -507,7 +559,10 @@ spec: path: type: string value: - description: RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding. + description: |- + RawMessage is a raw encoded JSON value. + It implements Marshaler and Unmarshaler and can + be used to delay JSON decoding or precompute a JSON encoding. type: string format: byte x-descriptors: @@ -517,7 +572,9 @@ spec: version: type: string description: - description: Description of the operator. Can include the features, limitations or use-cases of the operator. + description: |- + Description of the operator. Can include the features, limitations or use-cases of the + operator. type: string displayName: description: The name of the operator in display format. @@ -536,13 +593,17 @@ spec: mediatype: type: string install: - description: NamedInstallStrategy represents the block of an ClusterServiceVersion resource where the install strategy is specified. + description: |- + NamedInstallStrategy represents the block of an ClusterServiceVersion resource + where the install strategy is specified. type: object required: - strategy properties: spec: - description: StrategyDetailsDeployment represents the parsed details of a Deployment InstallStrategy. + description: |- + StrategyDetailsDeployment represents the parsed details of a Deployment + InstallStrategy. type: object required: - deployments @@ -559,18 +620,25 @@ spec: rules: type: array items: - description: PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. + description: |- + PolicyRule holds information that describes a policy rule, but does not contain information + about who the rule applies to or which namespace the rule applies to. type: object required: - verbs properties: apiGroups: - description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups. + description: |- + APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of + the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups. type: array items: type: string nonResourceURLs: - description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. + description: |- + NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path + Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. + Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. type: array items: type: string @@ -615,33 +683,51 @@ spec: - template properties: minReadySeconds: - description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) + description: |- + Minimum number of seconds for which a newly created pod should be ready + without any of its container crashing, for it to be considered available. + Defaults to 0 (pod will be considered available as soon as it is ready) type: integer format: int32 paused: description: Indicates that the deployment is paused. type: boolean progressDeadlineSeconds: - description: The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. + description: |- + The maximum time in seconds for a deployment to make progress before it + is considered to be failed. The deployment controller will continue to + process failed deployments and a condition with a ProgressDeadlineExceeded + reason will be surfaced in the deployment status. Note that progress will + not be estimated during the time a deployment is paused. Defaults to 600s. type: integer format: int32 replicas: - description: Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. + description: |- + Number of desired pods. This is a pointer to distinguish between explicit + zero and not specified. Defaults to 1. type: integer format: int32 revisionHistoryLimit: - description: The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. + description: |- + The number of old ReplicaSets to retain to allow rollback. + This is a pointer to distinguish between explicit zero and not specified. + Defaults to 10. type: integer format: int32 selector: - description: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. + description: |- + Label selector for pods. Existing ReplicaSets whose pods are + selected by this will be the ones affected by this deployment. + It must match the pod template's labels. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -651,34 +737,70 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic strategy: description: The deployment strategy to use to replace existing pods with new ones. type: object properties: rollingUpdate: - description: 'Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. --- TODO: Update this to follow our convention for oneOf, whatever we decide it to be.' + description: |- + Rolling update config params. Present only if DeploymentStrategyType = + RollingUpdate. + --- + TODO: Update this to follow our convention for oneOf, whatever we decide it + to be. type: object properties: maxSurge: - description: 'The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.' + description: |- + The maximum number of pods that can be scheduled above the desired number of + pods. + Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + This can not be 0 if MaxUnavailable is 0. + Absolute number is calculated from percentage by rounding up. + Defaults to 25%. + Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when + the rolling update starts, such that the total number of old and new pods do not exceed + 130% of desired pods. Once old pods have been killed, + new ReplicaSet can be scaled up further, ensuring that total number of pods running + at any time during the update is at most 130% of desired pods. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true maxUnavailable: - description: 'The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.' + description: |- + The maximum number of pods that can be unavailable during the update. + Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + Absolute number is calculated from percentage by rounding down. + This can not be 0 if MaxSurge is 0. + Defaults to 25%. + Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods + immediately when the rolling update starts. Once new pods are ready, old ReplicaSet + can be scaled down further, followed by scaling up the new ReplicaSet, ensuring + that the total number of pods available at all times during the update is at + least 70% of desired pods. anyOf: - type: integer - type: string @@ -687,21 +809,30 @@ spec: description: Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. type: string template: - description: Template describes the pods that will be created. The only allowed template.spec.restartPolicy value is "Always". + description: |- + Template describes the pods that will be created. + The only allowed template.spec.restartPolicy value is "Always". type: object properties: metadata: - description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' + description: |- + Standard object's metadata. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata type: object x-kubernetes-preserve-unknown-fields: true spec: - description: 'Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + description: |- + Specification of the desired behavior of the pod. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status type: object required: - containers properties: activeDeadlineSeconds: - description: Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. + description: |- + Optional duration in seconds the pod may be active on the node relative to + StartTime before the system will actively try to mark it failed and kill associated containers. + Value must be a positive integer. type: integer format: int64 affinity: @@ -713,10 +844,21 @@ spec: type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node matches the corresponding matchExpressions; the + node(s) with the highest sum are the most preferred. type: array items: - description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + description: |- + An empty preferred scheduling term matches all objects with implicit weight 0 + (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). type: object required: - preference @@ -730,7 +872,9 @@ spec: description: A list of node selector requirements by node's labels. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -740,10 +884,17 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string @@ -751,7 +902,9 @@ spec: description: A list of node selector requirements by node's fields. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -761,19 +914,32 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string + x-kubernetes-map-type: atomic weight: description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to an update), the system + may or may not try to eventually evict the pod from its node. type: object required: - nodeSelectorTerms @@ -782,14 +948,19 @@ spec: description: Required. A list of node selector terms. The terms are ORed. type: array items: - description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + description: |- + A null or empty node selector term matches no objects. The requirements of + them are ANDed. + The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. type: object properties: matchExpressions: description: A list of node selector requirements by node's labels. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -799,10 +970,17 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string @@ -810,7 +988,9 @@ spec: description: A list of node selector requirements by node's fields. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -820,19 +1000,37 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string + x-kubernetes-map-type: atomic + x-kubernetes-map-type: atomic podAffinity: description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. type: array items: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) @@ -848,14 +1046,18 @@ spec: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -865,27 +1067,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -895,48 +1144,86 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -946,27 +1233,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -976,32 +1310,60 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string podAntiAffinity: description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the anti-affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling anti-affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. type: array items: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) @@ -1017,14 +1379,18 @@ spec: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -1034,27 +1400,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -1064,48 +1477,86 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + description: |- + If the anti-affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the anti-affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -1115,27 +1566,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -1145,31 +1643,54 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string automountServiceAccountToken: description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. type: boolean containers: - description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + description: |- + List of containers belonging to the pod. + Containers cannot currently be added or removed. + There must be at least one container in a Pod. + Cannot be updated. type: array items: description: A single application container that you want to run within a pod. @@ -1178,17 +1699,35 @@ spec: - name properties: args: - description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + description: |- + Arguments to the entrypoint. + The container image's CMD is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell type: array items: type: string command: - description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + description: |- + Entrypoint array. Not executed within a shell. + The container image's ENTRYPOINT is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell type: array items: type: string env: - description: List of environment variables to set in the container. Cannot be updated. + description: |- + List of environment variables to set in the container. + Cannot be updated. type: array items: description: EnvVar represents an environment variable present in a Container. @@ -1200,7 +1739,16 @@ spec: description: Name of the environment variable. Must be a C_IDENTIFIER. type: string value: - description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. @@ -1216,13 +1764,19 @@ spec: description: The key to select. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean + x-kubernetes-map-type: atomic fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. type: object required: - fieldPath @@ -1233,8 +1787,11 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. type: object required: - resource @@ -1252,6 +1809,7 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic secretKeyRef: description: Selects a key of a secret in the pod's namespace type: object @@ -1262,13 +1820,23 @@ spec: description: The key of the secret to select from. Must be a valid secret key. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret or its key must be defined type: boolean + x-kubernetes-map-type: atomic envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Cannot be updated. type: array items: description: EnvFromSource represents the source of a set of ConfigMaps @@ -1279,11 +1847,15 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap must be defined type: boolean + x-kubernetes-map-type: atomic prefix: description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. type: string @@ -1292,23 +1864,42 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret must be defined type: boolean + x-kubernetes-map-type: atomic image: - description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + description: |- + Container image name. + More info: https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher level config management to default or override + container images in workload controllers like Deployments and StatefulSets. type: string imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + description: |- + Image pull policy. + One of Always, Never, IfNotPresent. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images type: string lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. + description: |- + Actions that the management system should take in response to container lifecycle events. + Cannot be updated. type: object properties: postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' + description: |- + PostStart is called immediately after a container is created. If the handler fails, + the container is terminated and restarted according to its restart policy. + Other management of the container blocks until the hook completes. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks type: object properties: exec: @@ -1316,7 +1907,12 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string @@ -1327,7 +1923,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -1340,7 +1938,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -1349,16 +1949,34 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string + sleep: + description: Sleep represents the duration that the container should sleep before being terminated. + type: object + required: + - seconds + properties: + seconds: + description: Seconds is the number of seconds to sleep. + type: integer + format: int64 tcpSocket: - description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified. + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. type: object required: - port @@ -1367,13 +1985,25 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod''s termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' + description: |- + PreStop is called immediately before a container is terminated due to an + API request or management event such as liveness/startup probe failure, + preemption, resource contention, etc. The handler is not called if the + container crashes or exits. The Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). Other management of the container blocks until the hook completes + or until the termination grace period is reached. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks type: object properties: exec: @@ -1381,7 +2011,12 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string @@ -1392,7 +2027,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -1405,7 +2042,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -1414,16 +2053,34 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string + sleep: + description: Sleep represents the duration that the container should sleep before being terminated. + type: object + required: + - seconds + properties: + seconds: + description: Seconds is the number of seconds to sleep. + type: integer + format: int64 tcpSocket: - description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified. + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. type: object required: - port @@ -1432,13 +2089,20 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Periodic probe of container liveness. + Container will be restarted if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: object properties: exec: @@ -1446,12 +2110,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -1465,7 +2136,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -1474,7 +2150,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -1487,7 +2165,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -1496,24 +2176,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -1526,24 +2217,50 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + description: |- + Name of the container specified as a DNS_LABEL. + Each container in a pod must have a unique name (DNS_LABEL). + Cannot be updated. type: string ports: - description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + description: |- + List of ports to expose from the container. Not specifying a port here + DOES NOT prevent that port from being exposed. Any port which is + listening on the default "0.0.0.0" address inside a container will be + accessible from the network. + Modifying this array with strategic merge patch may corrupt the data. + For more information See https://github.com/kubernetes/kubernetes/issues/108255. + Cannot be updated. type: array items: description: ContainerPort represents a network port in a single container. @@ -1552,21 +2269,32 @@ spec: - containerPort properties: containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + description: |- + Number of port to expose on the pod's IP address. + This must be a valid port number, 0 < x < 65536. type: integer format: int32 hostIP: description: What host IP to bind the external port to. type: string hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. + description: |- + Number of port to expose on the host. + If specified, this must be a valid port number, 0 < x < 65536. + If HostNetwork is specified, this must match ContainerPort. + Most containers do not need this. type: integer format: int32 name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + description: |- + If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + named port in a pod must have a unique name. Name for the port that can be + referred to by services. type: string protocol: - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + description: |- + Protocol for port. Must be UDP, TCP, or SCTP. + Defaults to "TCP". type: string default: TCP x-kubernetes-list-map-keys: @@ -1574,7 +2302,11 @@ spec: - protocol x-kubernetes-list-type: map readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Periodic probe of container service readiness. + Container will be removed from service endpoints if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: object properties: exec: @@ -1582,12 +2314,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -1601,7 +2340,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -1610,7 +2354,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -1623,7 +2369,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -1632,24 +2380,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -1662,17 +2421,33 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 resizePolicy: @@ -1686,18 +2461,34 @@ spec: - restartPolicy properties: resourceName: - description: 'Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.' + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. type: string restartPolicy: - description: Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired. + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. type: string x-kubernetes-list-type: atomic resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Compute Resources required by this container. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object properties: claims: - description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. type: array items: description: ResourceClaim references one entry in PodSpec.ResourceClaims. @@ -1706,13 +2497,18 @@ spec: - name properties: name: - description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. type: string x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -1721,7 +2517,11 @@ spec: - type: string x-kubernetes-int-or-string: true requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -1730,17 +2530,45 @@ spec: - type: string x-kubernetes-int-or-string: true restartPolicy: - description: 'RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is "Always". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod''s restart policy and the container type. Setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.' + description: |- + RestartPolicy defines the restart behavior of individual containers in a pod. + This field may only be set for init containers, and the only allowed value is "Always". + For non-init containers or when this field is not specified, + the restart behavior is defined by the Pod's restart policy and the container type. + Setting the RestartPolicy as "Always" for the init container will have the following effect: + this init container will be continually restarted on + exit until all regular containers have terminated. Once all regular + containers have completed, all init containers with restartPolicy "Always" + will be shut down. This lifecycle differs from normal init containers and + is often referred to as a "sidecar" container. Although this init + container still starts in the init container sequence, it does not wait + for the container to complete before proceeding to the next init + container. Instead, the next init container starts immediately after this + init container is started, or after any startupProbe has successfully + completed. type: string securityContext: - description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + description: |- + SecurityContext defines the security options the container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ type: object properties: allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + description: |- + AllowPrivilegeEscalation controls whether a process can gain more + privileges than its parent process. This bool directly controls if + the no_new_privs flag will be set on the container process. + AllowPrivilegeEscalation is true always when the container is: + 1) run as Privileged + 2) has CAP_SYS_ADMIN + Note that this field cannot be set when spec.os.name is windows. type: boolean capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. type: object properties: add: @@ -1756,27 +2584,60 @@ spec: description: Capability represent POSIX capabilities type type: string privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows. + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. type: boolean procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows. + description: |- + procMount denotes the type of proc mount to use for the containers. + The default is DefaultProcMount which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. type: string readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. type: boolean runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The SELinux context to be applied to the container. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: object properties: level: @@ -1792,35 +2653,72 @@ spec: description: User is a SELinux user label that applies to the container. type: string seccompProfile: - description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + description: |- + The seccomp options to use by this container. If seccomp options are + provided at both the pod & container level, the container options + override the pod options. + Note that this field cannot be set when spec.os.name is windows. type: object required: - type properties: localhostProfile: - description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is "Localhost". Must NOT be set for any other type. + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. type: string type: - description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. type: string windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux. + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options from the PodSecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. type: object properties: gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. type: string gmsaCredentialSpecName: description: GMSACredentialSpecName is the name of the GMSA credential spec to use. type: string hostProcess: - description: HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true. + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. type: boolean runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: string startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + StartupProbe indicates that the Pod has successfully initialized. + If specified, no other probes are executed until this completes successfully. + If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + when it might take a long time to load data or warm a cache, than during steady-state operation. + This cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: object properties: exec: @@ -1828,12 +2726,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -1847,7 +2752,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -1856,7 +2766,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -1869,7 +2781,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -1878,24 +2792,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -1908,33 +2833,75 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. + description: |- + Whether this container should allocate a buffer for stdin in the container runtime. If this + is not set, reads from stdin in the container will always result in EOF. + Default is false. type: boolean stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false + description: |- + Whether the container runtime should close the stdin channel after it has been opened by + a single attach. When stdin is true the stdin stream will remain open across multiple attach + sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + first client attaches to stdin, and then remains open and accepts data until the client disconnects, + at which time stdin is closed and remains closed until the container is restarted. If this + flag is false, a container processes that reads from stdin will never receive an EOF. + Default is false type: boolean terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + description: |- + Optional: Path at which the file to which the container's termination message + will be written is mounted into the container's filesystem. + Message written is intended to be brief final status, such as an assertion failure message. + Will be truncated by the node if greater than 4096 bytes. The total message length across + all containers will be limited to 12kb. + Defaults to /dev/termination-log. + Cannot be updated. type: string terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + description: |- + Indicate how the termination message should be populated. File will use the contents of + terminationMessagePath to populate the container status message on both success and failure. + FallbackToLogsOnError will use the last chunk of container log output if the termination + message file is empty and the container exited with an error. + The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + Defaults to File. + Cannot be updated. type: string tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. + description: |- + Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. @@ -1953,7 +2920,9 @@ spec: description: name must match the name of a persistentVolumeClaim in the pod type: string volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. + description: |- + Pod volumes to mount into the container's filesystem. + Cannot be updated. type: array items: description: VolumeMount describes a mounting of a Volume within a container. @@ -1963,37 +2932,65 @@ spec: - name properties: mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. type: string mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. type: string name: description: This must match the Name of a Volume. type: string readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. type: boolean subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). type: string subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. type: string workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + description: |- + Container's working directory. + If not specified, the container runtime's default will be used, which + might be configured in the container image. + Cannot be updated. type: string dnsConfig: - description: Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. + description: |- + Specifies the DNS parameters of a pod. + Parameters specified here will be merged to the generated DNS + configuration based on DNSPolicy. type: object properties: nameservers: - description: A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. + description: |- + A list of DNS name server IP addresses. + This will be appended to the base nameservers generated from DNSPolicy. + Duplicated nameservers will be removed. type: array items: type: string options: - description: A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. + description: |- + A list of DNS resolver options. + This will be merged with the base options generated from DNSPolicy. + Duplicated entries will be removed. Resolution options given in Options + will override those that appear in the base DNSPolicy. type: array items: description: PodDNSConfigOption defines DNS resolver options of a pod. @@ -2005,37 +3002,80 @@ spec: value: type: string searches: - description: A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. + description: |- + A list of DNS search domains for host-name lookup. + This will be appended to the base search paths generated from DNSPolicy. + Duplicated search paths will be removed. type: array items: type: string dnsPolicy: - description: Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. + description: |- + Set DNS policy for the pod. + Defaults to "ClusterFirst". + Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. + DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. + To have DNS options set along with hostNetwork, you have to specify DNS policy + explicitly to 'ClusterFirstWithHostNet'. type: string enableServiceLinks: - description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Defaults to true.' + description: |- + EnableServiceLinks indicates whether information about services should be injected into pod's + environment variables, matching the syntax of Docker links. + Optional: Defaults to true. type: boolean ephemeralContainers: - description: List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. + description: |- + List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing + pod to perform user-initiated actions such as debugging. This list cannot be specified when + creating a pod, and it cannot be modified by updating the pod spec. In order to add an + ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. type: array items: - description: "An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation. \n To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted." + description: |- + An EphemeralContainer is a temporary container that you may add to an existing Pod for + user-initiated activities such as debugging. Ephemeral containers have no resource or + scheduling guarantees, and they will not be restarted when they exit or when a Pod is + removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the + Pod to exceed its resource allocation. + + + To add an ephemeral container, use the ephemeralcontainers subresource of an existing + Pod. Ephemeral containers may not be removed or restarted. type: object required: - name properties: args: - description: 'Arguments to the entrypoint. The image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + description: |- + Arguments to the entrypoint. + The image's CMD is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell type: array items: type: string command: - description: 'Entrypoint array. Not executed within a shell. The image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + description: |- + Entrypoint array. Not executed within a shell. + The image's ENTRYPOINT is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell type: array items: type: string env: - description: List of environment variables to set in the container. Cannot be updated. + description: |- + List of environment variables to set in the container. + Cannot be updated. type: array items: description: EnvVar represents an environment variable present in a Container. @@ -2047,7 +3087,16 @@ spec: description: Name of the environment variable. Must be a C_IDENTIFIER. type: string value: - description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. @@ -2063,13 +3112,19 @@ spec: description: The key to select. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean + x-kubernetes-map-type: atomic fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. type: object required: - fieldPath @@ -2080,8 +3135,11 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. type: object required: - resource @@ -2099,6 +3157,7 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic secretKeyRef: description: Selects a key of a secret in the pod's namespace type: object @@ -2109,13 +3168,23 @@ spec: description: The key of the secret to select from. Must be a valid secret key. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret or its key must be defined type: boolean + x-kubernetes-map-type: atomic envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Cannot be updated. type: array items: description: EnvFromSource represents the source of a set of ConfigMaps @@ -2126,11 +3195,15 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap must be defined type: boolean + x-kubernetes-map-type: atomic prefix: description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. type: string @@ -2139,23 +3212,38 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret must be defined type: boolean + x-kubernetes-map-type: atomic image: - description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images' + description: |- + Container image name. + More info: https://kubernetes.io/docs/concepts/containers/images type: string imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + description: |- + Image pull policy. + One of Always, Never, IfNotPresent. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images type: string lifecycle: description: Lifecycle is not allowed for ephemeral containers. type: object properties: postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' + description: |- + PostStart is called immediately after a container is created. If the handler fails, + the container is terminated and restarted according to its restart policy. + Other management of the container blocks until the hook completes. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks type: object properties: exec: @@ -2163,7 +3251,12 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string @@ -2174,7 +3267,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -2187,7 +3282,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -2196,16 +3293,34 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string + sleep: + description: Sleep represents the duration that the container should sleep before being terminated. + type: object + required: + - seconds + properties: + seconds: + description: Seconds is the number of seconds to sleep. + type: integer + format: int64 tcpSocket: - description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified. + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. type: object required: - port @@ -2214,13 +3329,25 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod''s termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' + description: |- + PreStop is called immediately before a container is terminated due to an + API request or management event such as liveness/startup probe failure, + preemption, resource contention, etc. The handler is not called if the + container crashes or exits. The Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). Other management of the container blocks until the hook completes + or until the termination grace period is reached. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks type: object properties: exec: @@ -2228,7 +3355,12 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string @@ -2239,7 +3371,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -2252,7 +3386,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -2261,16 +3397,34 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string + sleep: + description: Sleep represents the duration that the container should sleep before being terminated. + type: object + required: + - seconds + properties: + seconds: + description: Seconds is the number of seconds to sleep. + type: integer + format: int64 tcpSocket: - description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified. + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. type: object required: - port @@ -2279,7 +3433,10 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string @@ -2293,12 +3450,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -2312,7 +3476,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -2321,7 +3490,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -2334,7 +3505,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -2343,24 +3516,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -2373,21 +3557,39 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 name: - description: Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers. + description: |- + Name of the ephemeral container specified as a DNS_LABEL. + This name must be unique among all containers, init containers and ephemeral containers. type: string ports: description: Ports are not allowed for ephemeral containers. @@ -2399,21 +3601,32 @@ spec: - containerPort properties: containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + description: |- + Number of port to expose on the pod's IP address. + This must be a valid port number, 0 < x < 65536. type: integer format: int32 hostIP: description: What host IP to bind the external port to. type: string hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. + description: |- + Number of port to expose on the host. + If specified, this must be a valid port number, 0 < x < 65536. + If HostNetwork is specified, this must match ContainerPort. + Most containers do not need this. type: integer format: int32 name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + description: |- + If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + named port in a pod must have a unique name. Name for the port that can be + referred to by services. type: string protocol: - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + description: |- + Protocol for port. Must be UDP, TCP, or SCTP. + Defaults to "TCP". type: string default: TCP x-kubernetes-list-map-keys: @@ -2429,12 +3642,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -2448,7 +3668,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -2457,7 +3682,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -2470,7 +3697,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -2479,24 +3708,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -2509,17 +3749,33 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 resizePolicy: @@ -2533,18 +3789,33 @@ spec: - restartPolicy properties: resourceName: - description: 'Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.' + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. type: string restartPolicy: - description: Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired. + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. type: string x-kubernetes-list-type: atomic resources: - description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. + description: |- + Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources + already allocated to the pod. type: object properties: claims: - description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. type: array items: description: ResourceClaim references one entry in PodSpec.ResourceClaims. @@ -2553,13 +3824,18 @@ spec: - name properties: name: - description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. type: string x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -2568,7 +3844,11 @@ spec: - type: string x-kubernetes-int-or-string: true requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -2577,17 +3857,33 @@ spec: - type: string x-kubernetes-int-or-string: true restartPolicy: - description: Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers. + description: |- + Restart policy for the container to manage the restart behavior of each + container within a pod. + This may only be set for init containers. You cannot set this field on + ephemeral containers. type: string securityContext: - description: 'Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.' + description: |- + Optional: SecurityContext defines the security options the ephemeral container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. type: object properties: allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + description: |- + AllowPrivilegeEscalation controls whether a process can gain more + privileges than its parent process. This bool directly controls if + the no_new_privs flag will be set on the container process. + AllowPrivilegeEscalation is true always when the container is: + 1) run as Privileged + 2) has CAP_SYS_ADMIN + Note that this field cannot be set when spec.os.name is windows. type: boolean capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. type: object properties: add: @@ -2603,27 +3899,60 @@ spec: description: Capability represent POSIX capabilities type type: string privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows. + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. type: boolean procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows. + description: |- + procMount denotes the type of proc mount to use for the containers. + The default is DefaultProcMount which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. type: string readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. type: boolean runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The SELinux context to be applied to the container. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: object properties: level: @@ -2639,32 +3968,62 @@ spec: description: User is a SELinux user label that applies to the container. type: string seccompProfile: - description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + description: |- + The seccomp options to use by this container. If seccomp options are + provided at both the pod & container level, the container options + override the pod options. + Note that this field cannot be set when spec.os.name is windows. type: object required: - type properties: localhostProfile: - description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is "Localhost". Must NOT be set for any other type. + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. type: string type: - description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. type: string windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux. + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options from the PodSecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. type: object properties: gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. type: string gmsaCredentialSpecName: description: GMSACredentialSpecName is the name of the GMSA credential spec to use. type: string hostProcess: - description: HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true. + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. type: boolean runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: string startupProbe: description: Probes are not allowed for ephemeral containers. @@ -2675,12 +4034,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -2694,7 +4060,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -2703,7 +4074,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -2716,7 +4089,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -2725,24 +4100,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -2755,36 +4141,85 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. + description: |- + Whether this container should allocate a buffer for stdin in the container runtime. If this + is not set, reads from stdin in the container will always result in EOF. + Default is false. type: boolean stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false + description: |- + Whether the container runtime should close the stdin channel after it has been opened by + a single attach. When stdin is true the stdin stream will remain open across multiple attach + sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + first client attaches to stdin, and then remains open and accepts data until the client disconnects, + at which time stdin is closed and remains closed until the container is restarted. If this + flag is false, a container processes that reads from stdin will never receive an EOF. + Default is false type: boolean targetContainerName: - description: "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec. \n The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined." + description: |- + If set, the name of the container from PodSpec that this ephemeral container targets. + The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. + If not set then the ephemeral container uses the namespaces configured in the Pod spec. + + + The container runtime must implement support for this feature. If the runtime does not + support namespace targeting then the result of setting this field is undefined. type: string terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + description: |- + Optional: Path at which the file to which the container's termination message + will be written is mounted into the container's filesystem. + Message written is intended to be brief final status, such as an assertion failure message. + Will be truncated by the node if greater than 4096 bytes. The total message length across + all containers will be limited to 12kb. + Defaults to /dev/termination-log. + Cannot be updated. type: string terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + description: |- + Indicate how the termination message should be populated. File will use the contents of + terminationMessagePath to populate the container status message on both success and failure. + FallbackToLogsOnError will use the last chunk of container log output if the termination + message file is empty and the container exited with an error. + The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + Defaults to File. + Cannot be updated. type: string tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. + description: |- + Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. @@ -2803,7 +4238,9 @@ spec: description: name must match the name of a persistentVolumeClaim in the pod type: string volumeMounts: - description: Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated. + description: |- + Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. + Cannot be updated. type: array items: description: VolumeMount describes a mounting of a Volume within a container. @@ -2813,31 +4250,53 @@ spec: - name properties: mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. type: string mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. type: string name: description: This must match the Name of a Volume. type: string readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. type: boolean subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). type: string subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. type: string workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + description: |- + Container's working directory. + If not specified, the container runtime's default will be used, which + might be configured in the container image. + Cannot be updated. type: string hostAliases: - description: HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. + description: |- + HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts + file if specified. This is only valid for non-hostNetwork pods. type: array items: - description: HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file. + description: |- + HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the + pod's hosts file. type: object properties: hostnames: @@ -2849,32 +4308,72 @@ spec: description: IP address of the host file entry. type: string hostIPC: - description: 'Use the host''s ipc namespace. Optional: Default to false.' + description: |- + Use the host's ipc namespace. + Optional: Default to false. type: boolean hostNetwork: - description: Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false. + description: |- + Host networking requested for this pod. Use the host's network namespace. + If this option is set, the ports that will be used must be specified. + Default to false. type: boolean hostPID: - description: 'Use the host''s pid namespace. Optional: Default to false.' + description: |- + Use the host's pid namespace. + Optional: Default to false. type: boolean hostUsers: - description: 'Use the host''s user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.' + description: |- + Use the host's user namespace. + Optional: Default to true. + If set to true or not present, the pod will be run in the host user namespace, useful + for when the pod needs a feature only available to the host user namespace, such as + loading a kernel module with CAP_SYS_MODULE. + When set to false, a new userns is created for the pod. Setting false is useful for + mitigating container breakout vulnerabilities even allowing users to run their + containers as root without actually having root privileges on the host. + This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature. type: boolean hostname: - description: Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value. + description: |- + Specifies the hostname of the Pod + If not specified, the pod's hostname will be set to a system-defined value. type: string imagePullSecrets: - description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + description: |- + ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. + If specified, these secrets will be passed to individual puller implementations for them to use. + More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod type: array items: - description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + description: |- + LocalObjectReference contains enough information to let you locate the + referenced object inside the same namespace. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic initContainers: - description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + description: |- + List of initialization containers belonging to the pod. + Init containers are executed in order prior to containers being started. If any + init container fails, the pod is considered to have failed and is handled according + to its restartPolicy. The name for an init container or normal container must be + unique among all containers. + Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. + The resourceRequirements of an init container are taken into account during scheduling + by finding the highest request/limit for each resource type, and then using the max of + of that value or the sum of the normal containers. Limits are applied to init containers + in a similar fashion. + Init containers cannot currently be added or removed. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ type: array items: description: A single application container that you want to run within a pod. @@ -2883,17 +4382,35 @@ spec: - name properties: args: - description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + description: |- + Arguments to the entrypoint. + The container image's CMD is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell type: array items: type: string command: - description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + description: |- + Entrypoint array. Not executed within a shell. + The container image's ENTRYPOINT is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell type: array items: type: string env: - description: List of environment variables to set in the container. Cannot be updated. + description: |- + List of environment variables to set in the container. + Cannot be updated. type: array items: description: EnvVar represents an environment variable present in a Container. @@ -2905,7 +4422,16 @@ spec: description: Name of the environment variable. Must be a C_IDENTIFIER. type: string value: - description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. @@ -2921,13 +4447,19 @@ spec: description: The key to select. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean + x-kubernetes-map-type: atomic fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. type: object required: - fieldPath @@ -2938,8 +4470,11 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. type: object required: - resource @@ -2957,6 +4492,7 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic secretKeyRef: description: Selects a key of a secret in the pod's namespace type: object @@ -2967,13 +4503,23 @@ spec: description: The key of the secret to select from. Must be a valid secret key. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret or its key must be defined type: boolean + x-kubernetes-map-type: atomic envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Cannot be updated. type: array items: description: EnvFromSource represents the source of a set of ConfigMaps @@ -2984,11 +4530,15 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap must be defined type: boolean + x-kubernetes-map-type: atomic prefix: description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. type: string @@ -2997,23 +4547,42 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret must be defined type: boolean + x-kubernetes-map-type: atomic image: - description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + description: |- + Container image name. + More info: https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher level config management to default or override + container images in workload controllers like Deployments and StatefulSets. type: string imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + description: |- + Image pull policy. + One of Always, Never, IfNotPresent. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images type: string lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. + description: |- + Actions that the management system should take in response to container lifecycle events. + Cannot be updated. type: object properties: postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' + description: |- + PostStart is called immediately after a container is created. If the handler fails, + the container is terminated and restarted according to its restart policy. + Other management of the container blocks until the hook completes. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks type: object properties: exec: @@ -3021,7 +4590,12 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string @@ -3032,7 +4606,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -3045,7 +4621,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -3054,16 +4632,34 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string + sleep: + description: Sleep represents the duration that the container should sleep before being terminated. + type: object + required: + - seconds + properties: + seconds: + description: Seconds is the number of seconds to sleep. + type: integer + format: int64 tcpSocket: - description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified. + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. type: object required: - port @@ -3072,13 +4668,25 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod''s termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' + description: |- + PreStop is called immediately before a container is terminated due to an + API request or management event such as liveness/startup probe failure, + preemption, resource contention, etc. The handler is not called if the + container crashes or exits. The Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). Other management of the container blocks until the hook completes + or until the termination grace period is reached. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks type: object properties: exec: @@ -3086,7 +4694,12 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string @@ -3097,7 +4710,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -3110,7 +4725,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -3119,16 +4736,34 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string + sleep: + description: Sleep represents the duration that the container should sleep before being terminated. + type: object + required: + - seconds + properties: + seconds: + description: Seconds is the number of seconds to sleep. + type: integer + format: int64 tcpSocket: - description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified. + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. type: object required: - port @@ -3137,13 +4772,20 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Periodic probe of container liveness. + Container will be restarted if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: object properties: exec: @@ -3151,12 +4793,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -3170,7 +4819,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -3179,7 +4833,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -3192,7 +4848,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -3201,24 +4859,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -3231,24 +4900,50 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + description: |- + Name of the container specified as a DNS_LABEL. + Each container in a pod must have a unique name (DNS_LABEL). + Cannot be updated. type: string ports: - description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + description: |- + List of ports to expose from the container. Not specifying a port here + DOES NOT prevent that port from being exposed. Any port which is + listening on the default "0.0.0.0" address inside a container will be + accessible from the network. + Modifying this array with strategic merge patch may corrupt the data. + For more information See https://github.com/kubernetes/kubernetes/issues/108255. + Cannot be updated. type: array items: description: ContainerPort represents a network port in a single container. @@ -3257,21 +4952,32 @@ spec: - containerPort properties: containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + description: |- + Number of port to expose on the pod's IP address. + This must be a valid port number, 0 < x < 65536. type: integer format: int32 hostIP: description: What host IP to bind the external port to. type: string hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. + description: |- + Number of port to expose on the host. + If specified, this must be a valid port number, 0 < x < 65536. + If HostNetwork is specified, this must match ContainerPort. + Most containers do not need this. type: integer format: int32 name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + description: |- + If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + named port in a pod must have a unique name. Name for the port that can be + referred to by services. type: string protocol: - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + description: |- + Protocol for port. Must be UDP, TCP, or SCTP. + Defaults to "TCP". type: string default: TCP x-kubernetes-list-map-keys: @@ -3279,7 +4985,11 @@ spec: - protocol x-kubernetes-list-type: map readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Periodic probe of container service readiness. + Container will be removed from service endpoints if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: object properties: exec: @@ -3287,12 +4997,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -3306,7 +5023,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -3315,7 +5037,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -3328,7 +5052,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -3337,24 +5063,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -3367,17 +5104,33 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 resizePolicy: @@ -3391,18 +5144,34 @@ spec: - restartPolicy properties: resourceName: - description: 'Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.' + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. type: string restartPolicy: - description: Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired. + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. type: string x-kubernetes-list-type: atomic resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Compute Resources required by this container. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object properties: claims: - description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. type: array items: description: ResourceClaim references one entry in PodSpec.ResourceClaims. @@ -3411,13 +5180,18 @@ spec: - name properties: name: - description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. type: string x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -3426,7 +5200,11 @@ spec: - type: string x-kubernetes-int-or-string: true requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -3435,17 +5213,45 @@ spec: - type: string x-kubernetes-int-or-string: true restartPolicy: - description: 'RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is "Always". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod''s restart policy and the container type. Setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.' + description: |- + RestartPolicy defines the restart behavior of individual containers in a pod. + This field may only be set for init containers, and the only allowed value is "Always". + For non-init containers or when this field is not specified, + the restart behavior is defined by the Pod's restart policy and the container type. + Setting the RestartPolicy as "Always" for the init container will have the following effect: + this init container will be continually restarted on + exit until all regular containers have terminated. Once all regular + containers have completed, all init containers with restartPolicy "Always" + will be shut down. This lifecycle differs from normal init containers and + is often referred to as a "sidecar" container. Although this init + container still starts in the init container sequence, it does not wait + for the container to complete before proceeding to the next init + container. Instead, the next init container starts immediately after this + init container is started, or after any startupProbe has successfully + completed. type: string securityContext: - description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + description: |- + SecurityContext defines the security options the container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ type: object properties: allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + description: |- + AllowPrivilegeEscalation controls whether a process can gain more + privileges than its parent process. This bool directly controls if + the no_new_privs flag will be set on the container process. + AllowPrivilegeEscalation is true always when the container is: + 1) run as Privileged + 2) has CAP_SYS_ADMIN + Note that this field cannot be set when spec.os.name is windows. type: boolean capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. type: object properties: add: @@ -3461,27 +5267,60 @@ spec: description: Capability represent POSIX capabilities type type: string privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows. + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. type: boolean procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows. + description: |- + procMount denotes the type of proc mount to use for the containers. + The default is DefaultProcMount which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. type: string readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. type: boolean runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + description: |- + The SELinux context to be applied to the container. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. type: object properties: level: @@ -3497,35 +5336,72 @@ spec: description: User is a SELinux user label that applies to the container. type: string seccompProfile: - description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + description: |- + The seccomp options to use by this container. If seccomp options are + provided at both the pod & container level, the container options + override the pod options. + Note that this field cannot be set when spec.os.name is windows. type: object required: - type properties: localhostProfile: - description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is "Localhost". Must NOT be set for any other type. + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. type: string type: - description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. type: string windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux. + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options from the PodSecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. type: object properties: gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. type: string gmsaCredentialSpecName: description: GMSACredentialSpecName is the name of the GMSA credential spec to use. type: string hostProcess: - description: HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true. + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. type: boolean runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: string startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + StartupProbe indicates that the Pod has successfully initialized. + If specified, no other probes are executed until this completes successfully. + If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + when it might take a long time to load data or warm a cache, than during steady-state operation. + This cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: object properties: exec: @@ -3533,12 +5409,19 @@ spec: type: object properties: command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. type: array items: type: string failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. type: integer format: int32 grpc: @@ -3552,7 +5435,12 @@ spec: type: integer format: int32 service: - description: "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \n If this is not specified, the default behavior is defined by gRPC." + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. type: string httpGet: description: HTTPGet specifies the http request to perform. @@ -3561,7 +5449,9 @@ spec: - port properties: host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. @@ -3574,7 +5464,9 @@ spec: - value properties: name: - description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value @@ -3583,24 +5475,35 @@ spec: description: Path to access on the HTTP server. type: string port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. type: string initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. type: integer format: int32 successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. type: integer format: int32 tcpSocket: @@ -3613,33 +5516,75 @@ spec: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. anyOf: - type: integer - type: string x-kubernetes-int-or-string: true terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. type: integer format: int64 timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes type: integer format: int32 stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. + description: |- + Whether this container should allocate a buffer for stdin in the container runtime. If this + is not set, reads from stdin in the container will always result in EOF. + Default is false. type: boolean stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false + description: |- + Whether the container runtime should close the stdin channel after it has been opened by + a single attach. When stdin is true the stdin stream will remain open across multiple attach + sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + first client attaches to stdin, and then remains open and accepts data until the client disconnects, + at which time stdin is closed and remains closed until the container is restarted. If this + flag is false, a container processes that reads from stdin will never receive an EOF. + Default is false type: boolean terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + description: |- + Optional: Path at which the file to which the container's termination message + will be written is mounted into the container's filesystem. + Message written is intended to be brief final status, such as an assertion failure message. + Will be truncated by the node if greater than 4096 bytes. The total message length across + all containers will be limited to 12kb. + Defaults to /dev/termination-log. + Cannot be updated. type: string terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + description: |- + Indicate how the termination message should be populated. File will use the contents of + terminationMessagePath to populate the container status message on both success and failure. + FallbackToLogsOnError will use the last chunk of container log output if the termination + message file is empty and the container exited with an error. + The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + Defaults to File. + Cannot be updated. type: string tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. + description: |- + Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. @@ -3658,7 +5603,9 @@ spec: description: name must match the name of a persistentVolumeClaim in the pod type: string volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. + description: |- + Pod volumes to mount into the container's filesystem. + Cannot be updated. type: array items: description: VolumeMount describes a mounting of a Volume within a container. @@ -3668,46 +5615,111 @@ spec: - name properties: mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. type: string mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. type: string name: description: This must match the Name of a Volume. type: string readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. type: boolean subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). type: string subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. type: string workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + description: |- + Container's working directory. + If not specified, the container runtime's default will be used, which + might be configured in the container image. + Cannot be updated. type: string nodeName: - description: NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. + description: |- + NodeName is a request to schedule this pod onto a specific node. If it is non-empty, + the scheduler simply schedules this pod onto that node, assuming that it fits resource + requirements. type: string nodeSelector: - description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + description: |- + NodeSelector is a selector which must be true for the pod to fit on a node. + Selector which must match a node's labels for the pod to be scheduled on that node. + More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ type: object additionalProperties: type: string x-kubernetes-map-type: atomic os: - description: "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set. \n If the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions \n If the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup" + description: |- + Specifies the OS of the containers in the pod. + Some pod and container fields are restricted if this is set. + + + If the OS field is set to linux, the following fields must be unset: + -securityContext.windowsOptions + + + If the OS field is set to windows, following fields must be unset: + - spec.hostPID + - spec.hostIPC + - spec.hostUsers + - spec.securityContext.seLinuxOptions + - spec.securityContext.seccompProfile + - spec.securityContext.fsGroup + - spec.securityContext.fsGroupChangePolicy + - spec.securityContext.sysctls + - spec.shareProcessNamespace + - spec.securityContext.runAsUser + - spec.securityContext.runAsGroup + - spec.securityContext.supplementalGroups + - spec.containers[*].securityContext.seLinuxOptions + - spec.containers[*].securityContext.seccompProfile + - spec.containers[*].securityContext.capabilities + - spec.containers[*].securityContext.readOnlyRootFilesystem + - spec.containers[*].securityContext.privileged + - spec.containers[*].securityContext.allowPrivilegeEscalation + - spec.containers[*].securityContext.procMount + - spec.containers[*].securityContext.runAsUser + - spec.containers[*].securityContext.runAsGroup type: object required: - name properties: name: - description: 'Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null' + description: |- + Name is the name of the operating system. The currently supported values are linux and windows. + Additional value may be defined in future and can be one of: + https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration + Clients should expect to handle additional values and treat unrecognized values in this field as os: null type: string overhead: - description: 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md' + description: |- + Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. + This field will be autopopulated at admission time by the RuntimeClass admission controller. If + the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. + The RuntimeClass admission controller will reject Pod create requests which have the overhead already + set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value + defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. + More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -3716,17 +5728,35 @@ spec: - type: string x-kubernetes-int-or-string: true preemptionPolicy: - description: PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. + description: |- + PreemptionPolicy is the Policy for preempting pods with lower priority. + One of Never, PreemptLowerPriority. + Defaults to PreemptLowerPriority if unset. type: string priority: - description: The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. + description: |- + The priority value. Various system components use this field to find the + priority of the pod. When Priority Admission Controller is enabled, it + prevents users from setting this field. The admission controller populates + this field from PriorityClassName. + The higher the value, the higher the priority. type: integer format: int32 priorityClassName: - description: If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default. + description: |- + If specified, indicates the pod's priority. "system-node-critical" and + "system-cluster-critical" are two special keywords which indicate the + highest priorities with the former being the highest priority. Any other + name must be defined by creating a PriorityClass object with that name. + If not specified, the pod priority will be default or zero if there is no + default. type: string readinessGates: - description: 'If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to "True" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates' + description: |- + If specified, all readiness gates will be evaluated for pod readiness. + A pod is ready when all its containers are ready AND + all conditions specified in the readiness gates have status equal to "True" + More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates type: array items: description: PodReadinessGate contains the reference to a pod condition @@ -3738,41 +5768,93 @@ spec: description: ConditionType refers to a condition in the pod's condition list with matching type. type: string resourceClaims: - description: "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." + description: |- + ResourceClaims defines which ResourceClaims must be allocated + and reserved before the Pod is allowed to start. The resources + will be made available to those containers which consume them + by name. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. type: array items: - description: PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name. + description: |- + PodResourceClaim references exactly one ResourceClaim through a ClaimSource. + It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. + Containers that need access to the ResourceClaim reference it with this name. type: object required: - name properties: name: - description: Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL. + description: |- + Name uniquely identifies this resource claim inside the pod. + This must be a DNS_LABEL. type: string source: description: Source describes where to find the ResourceClaim. type: object properties: resourceClaimName: - description: ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod. + description: |- + ResourceClaimName is the name of a ResourceClaim object in the same + namespace as this pod. type: string resourceClaimTemplateName: - description: "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod. \n The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. \n This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim." + description: |- + ResourceClaimTemplateName is the name of a ResourceClaimTemplate + object in the same namespace as this pod. + + + The template will be used to create a new ResourceClaim, which will + be bound to this pod. When this pod is deleted, the ResourceClaim + will also be deleted. The pod name and resource name, along with a + generated component, will be used to form a unique name for the + ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. + + + This field is immutable and no changes will be made to the + corresponding ResourceClaim by the control plane after creating the + ResourceClaim. type: string x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map restartPolicy: - description: 'Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy' + description: |- + Restart policy for all containers within the pod. + One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. + Default to Always. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy type: string runtimeClassName: - description: 'RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class' + description: |- + RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used + to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. + If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an + empty definition that uses the default runtime handler. + More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class type: string schedulerName: - description: If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. + description: |- + If specified, the pod will be dispatched by specified scheduler. + If not specified, the pod will be dispatched by default scheduler. type: string schedulingGates: - description: "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod. \n SchedulingGates can only be set at pod creation time, and be removed only afterwards. \n This is a beta feature enabled by the PodSchedulingReadiness feature gate." + description: |- + SchedulingGates is an opaque list of values that if specified will block scheduling the pod. + If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the + scheduler will not attempt to schedule the pod. + + + SchedulingGates can only be set at pod creation time, and be removed only afterwards. + + + This is a beta feature enabled by the PodSchedulingReadiness feature gate. type: array items: description: PodSchedulingGate is associated to a Pod to guard its scheduling. @@ -3781,35 +5863,82 @@ spec: - name properties: name: - description: Name of the scheduling gate. Each scheduling gate must have a unique name field. + description: |- + Name of the scheduling gate. + Each scheduling gate must have a unique name field. type: string x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map securityContext: - description: 'SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.' + description: |- + SecurityContext holds pod-level security attributes and common container settings. + Optional: Defaults to empty. See type description for default values of each field. type: object properties: fsGroup: - description: "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows." + description: |- + A special supplemental group that applies to all containers in a pod. + Some volume types allow the Kubelet to change the ownership of that volume + to be owned by the pod: + + + 1. The owning GID will be the FSGroup + 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) + 3. The permission bits are OR'd with rw-rw---- + + + If unset, the Kubelet will not modify the ownership and permissions of any volume. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. Note that this field cannot be set when spec.os.name is windows.' + description: |- + fsGroupChangePolicy defines behavior of changing ownership and permission of the volume + before being exposed inside Pod. This field will only apply to + volume types which support fsGroup based ownership(and permissions). + It will have no effect on ephemeral volume types such as: secret, configmaps + and emptydir. + Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. + Note that this field cannot be set when spec.os.name is windows. type: string runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence + for that container. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence + for that container. + Note that this field cannot be set when spec.os.name is windows. type: integer format: int64 seLinuxOptions: - description: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. + description: |- + The SELinux context to be applied to all containers. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in SecurityContext. If set in + both SecurityContext and PodSecurityContext, the value specified in SecurityContext + takes precedence for that container. + Note that this field cannot be set when spec.os.name is windows. type: object properties: level: @@ -3825,25 +5954,48 @@ spec: description: User is a SELinux user label that applies to the container. type: string seccompProfile: - description: The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows. + description: |- + The seccomp options to use by the containers in this pod. + Note that this field cannot be set when spec.os.name is windows. type: object required: - type properties: localhostProfile: - description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is "Localhost". Must NOT be set for any other type. + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. type: string type: - description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. type: string supplementalGroups: - description: A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows. + description: |- + A list of groups applied to the first process run in each container, in addition + to the container's primary GID, the fsGroup (if specified), and group memberships + defined in the container image for the uid of the container process. If unspecified, + no additional groups are added to any container. Note that group memberships + defined in the container image for the uid of the container process are still effective, + even if they are not included in this list. + Note that this field cannot be set when spec.os.name is windows. type: array items: type: integer format: int64 sysctls: - description: Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows. + description: |- + Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported + sysctls (by the container runtime) might fail to launch. + Note that this field cannot be set when spec.os.name is windows. type: array items: description: Sysctl defines a kernel parameter to be set @@ -3859,65 +6011,123 @@ spec: description: Value of a property to set type: string windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux. + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options within a container's SecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. type: object properties: gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. type: string gmsaCredentialSpecName: description: GMSACredentialSpecName is the name of the GMSA credential spec to use. type: string hostProcess: - description: HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true. + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. type: boolean runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. type: string serviceAccount: - description: 'DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.' + description: |- + DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. + Deprecated: Use serviceAccountName instead. type: string serviceAccountName: - description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + description: |- + ServiceAccountName is the name of the ServiceAccount to use to run this pod. + More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ type: string setHostnameAsFQDN: - description: If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false. + description: |- + If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). + In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). + In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. + If a pod does not have FQDN, this has no effect. + Default to false. type: boolean shareProcessNamespace: - description: 'Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.' + description: |- + Share a single process namespace between all of the containers in a pod. + When this is set containers will be able to view and signal processes from other containers + in the same pod, and the first process in each container will not be assigned PID 1. + HostPID and ShareProcessNamespace cannot both be set. + Optional: Default to false. type: boolean subdomain: - description: If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all. + description: |- + If specified, the fully qualified Pod hostname will be "...svc.". + If not specified, the pod will not have a domainname at all. type: string terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. + description: |- + Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + If this value is nil, the default grace period will be used instead. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + Defaults to 30 seconds. type: integer format: int64 tolerations: description: If specified, the pod's tolerations. type: array items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + description: |- + The pod this Toleration is attached to tolerates any taint that matches + the triple using the matching operator . type: object properties: effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + description: |- + Effect indicates the taint effect to match. Empty means match all taint effects. + When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. type: string key: - description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + description: |- + Key is the taint key that the toleration applies to. Empty means match all taint keys. + If the key is empty, operator must be Exists; this combination means to match all values and all keys. type: string operator: - description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + description: |- + Operator represents a key's relationship to the value. + Valid operators are Exists and Equal. Defaults to Equal. + Exists is equivalent to wildcard for value, so that a pod can + tolerate all taints of a particular category. type: string tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + description: |- + TolerationSeconds represents the period of time the toleration (which must be + of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + it is not set, which means tolerate the taint forever (do not evict). Zero and + negative values will be treated as 0 (evict immediately) by the system. type: integer format: int64 value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + description: |- + Value is the taint value the toleration matches to. + If the operator is Exists, the value should be empty, otherwise just a regular string. type: string topologySpreadConstraints: - description: TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed. + description: |- + TopologySpreadConstraints describes how a group of pods ought to spread across topology + domains. Scheduler will schedule pods in a way which abides by the constraints. + All topologySpreadConstraints are ANDed. type: array items: description: TopologySpreadConstraint specifies how to spread matching pods among the given topology. @@ -3928,14 +6138,19 @@ spec: - whenUnsatisfiable properties: labelSelector: - description: LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain. + description: |- + LabelSelector is used to find matching pods. + Pods that match this label selector are counted to determine the number of pods + in their corresponding topology domain. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -3945,50 +6160,158 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic matchLabelKeys: - description: "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector. \n This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)." + description: |- + MatchLabelKeys is a set of pod label keys to select the pods over which + spreading will be calculated. The keys are used to lookup values from the + incoming pod labels, those key-value labels are ANDed with labelSelector + to select the group of existing pods over which spreading will be calculated + for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + MatchLabelKeys cannot be set when LabelSelector isn't set. + Keys that don't exist in the incoming pod labels will + be ignored. A null or empty list means only match against labelSelector. + + + This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). type: array items: type: string x-kubernetes-list-type: atomic maxSkew: - description: 'MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It''s a required field. Default value is 1 and 0 is not allowed.' + description: |- + MaxSkew describes the degree to which pods may be unevenly distributed. + When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference + between the number of matching pods in the target topology and the global minimum. + The global minimum is the minimum number of matching pods in an eligible domain + or zero if the number of eligible domains is less than MinDomains. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 2/2/1: + In this case, the global minimum is 1. + | zone1 | zone2 | zone3 | + | P P | P P | P | + - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) + violate MaxSkew(1). + - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence + to topologies that satisfy it. + It's a required field. Default value is 1 and 0 is not allowed. type: integer format: int32 minDomains: - description: "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule. \n For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew. \n This is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default)." + description: |- + MinDomains indicates a minimum number of eligible domains. + When the number of eligible domains with matching topology keys is less than minDomains, + Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + And when the number of eligible domains with matching topology keys equals or greater than minDomains, + this value has no effect on scheduling. + As a result, when the number of eligible domains is less than minDomains, + scheduler won't schedule more than maxSkew Pods to those domains. + If value is nil, the constraint behaves as if MinDomains is equal to 1. + Valid values are integers greater than 0. + When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + + + For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + labelSelector spread as 2/2/2: + | zone1 | zone2 | zone3 | + | P P | P P | P P | + The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + In this situation, new pod with the same labelSelector cannot be scheduled, + because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + it will violate MaxSkew. + + + This is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default). type: integer format: int32 nodeAffinityPolicy: - description: "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. \n If this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag." + description: |- + NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + when calculating pod topology spread skew. Options are: + - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + + + If this value is nil, the behavior is equivalent to the Honor policy. + This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. type: string nodeTaintsPolicy: - description: "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included. \n If this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag." + description: |- + NodeTaintsPolicy indicates how we will treat node taints when calculating + pod topology spread skew. Options are: + - Honor: nodes without taints, along with tainted nodes for which the incoming pod + has a toleration, are included. + - Ignore: node taints are ignored. All nodes are included. + + + If this value is nil, the behavior is equivalent to the Ignore policy. + This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. type: string topologyKey: - description: TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a "bucket", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. It's a required field. + description: |- + TopologyKey is the key of node labels. Nodes that have a label with this key + and identical values are considered to be in the same topology. + We consider each as a "bucket", and try to put balanced number + of pods into each bucket. + We define a domain as a particular instance of a topology. + Also, we define an eligible domain as a domain whose nodes meet the requirements of + nodeAffinityPolicy and nodeTaintsPolicy. + e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + It's a required field. type: string whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how to deal with a pod if it doesn''t satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered "Unsatisfiable" for an incoming pod if and only if every possible node assignment for that pod would violate "MaxSkew" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won''t make it *more* imbalanced. It''s a required field.' + description: |- + WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + the spread constraint. + - DoNotSchedule (default) tells the scheduler not to schedule it. + - ScheduleAnyway tells the scheduler to schedule the pod in any location, + but giving higher precedence to topologies that would help reduce the + skew. + A constraint is considered "Unsatisfiable" for an incoming pod + if and only if every possible node assignment for that pod would violate + "MaxSkew" on some topology. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 3/1/1: + | zone1 | zone2 | zone3 | + | P P P | P | P | + If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + won't make it *more* imbalanced. + It's a required field. type: string x-kubernetes-list-map-keys: - topologyKey - whenUnsatisfiable x-kubernetes-list-type: map volumes: - description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + description: |- + List of volumes that can be mounted by containers belonging to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes type: array items: description: Volume represents a named volume in a pod that may be accessed by any container in the pod. @@ -3997,23 +6320,39 @@ spec: - name properties: awsElasticBlockStore: - description: 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' + description: |- + awsElasticBlockStore represents an AWS Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore type: object required: - volumeID properties: fsType: - description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + TODO: how do we prevent errors in the filesystem from compromising the machine type: string partition: - description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' + description: |- + partition is the partition in the volume that you want to mount. + If omitted, the default is to mount by volume name. + Examples: For volume /dev/sda1, you specify the partition as "1". + Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). type: integer format: int32 readOnly: - description: 'readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' + description: |- + readOnly value true will force the readOnly setting in VolumeMounts. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore type: boolean volumeID: - description: 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' + description: |- + volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore type: string azureDisk: description: azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. @@ -4032,13 +6371,18 @@ spec: description: diskURI is the URI of data disk in the blob storage type: string fsType: - description: fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is Filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string kind: description: 'kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' type: string readOnly: - description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean azureFile: description: azureFile represents an Azure File Service mount on the host and bind mount to the pod. @@ -4048,7 +6392,9 @@ spec: - shareName properties: readOnly: - description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretName: description: secretName is the name of secret that contains Azure Storage Account Name and Key @@ -4063,7 +6409,9 @@ spec: - monitors properties: monitors: - description: 'monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + monitors is Required: Monitors is a collection of Ceph monitors + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: array items: type: string @@ -4071,53 +6419,97 @@ spec: description: 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /' type: string readOnly: - description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: boolean secretFile: - description: 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: string secretRef: - description: 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic user: - description: 'user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + user is optional: User is the rados user name, default is admin + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: string cinder: - description: 'cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + cinder represents a cinder volume attached and mounted on kubelets host machine. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: object required: - volumeID properties: fsType: - description: 'fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: string readOnly: - description: 'readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: boolean secretRef: - description: 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.' + description: |- + secretRef is optional: points to a secret object containing parameters used to connect + to OpenStack. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic volumeID: - description: 'volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + volumeID used to identify the volume in cinder. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: string configMap: description: configMap represents a configMap that should populate this volume type: object properties: defaultMode: - description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + defaultMode is optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 items: - description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -4130,18 +6522,32 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean + x-kubernetes-map-type: atomic csi: description: csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature). type: object @@ -4149,23 +6555,41 @@ spec: - driver properties: driver: - description: driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. + description: |- + driver is the name of the CSI driver that handles this volume. + Consult with your admin for the correct name as registered in the cluster. type: string fsType: - description: fsType to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. + description: |- + fsType to mount. Ex. "ext4", "xfs", "ntfs". + If not provided, the empty value is passed to the associated CSI driver + which will determine the default filesystem to apply. type: string nodePublishSecretRef: - description: nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. + description: |- + nodePublishSecretRef is a reference to the secret object containing + sensitive information to pass to the CSI driver to complete the CSI + NodePublishVolume and NodeUnpublishVolume calls. + This field is optional, and may be empty if no secret is required. If the + secret object contains more than one secret, all secret references are passed. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic readOnly: - description: readOnly specifies a read-only configuration for the volume. Defaults to false (read/write). + description: |- + readOnly specifies a read-only configuration for the volume. + Defaults to false (read/write). type: boolean volumeAttributes: - description: volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. + description: |- + volumeAttributes stores driver-specific properties that are passed to the CSI + driver. Consult your driver's documentation for supported values. type: object additionalProperties: type: string @@ -4174,7 +6598,15 @@ spec: type: object properties: defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + Optional: mode bits to use on created files by default. Must be a + Optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 items: @@ -4198,15 +6630,24 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic mode: - description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' type: string resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. type: object required: - resource @@ -4224,51 +6665,136 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic emptyDir: - description: 'emptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' + description: |- + emptyDir represents a temporary directory that shares a pod's lifetime. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir type: object properties: medium: - description: 'medium represents what type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' + description: |- + medium represents what type of storage medium should back this directory. + The default is "" which means to use the node's default medium. + Must be an empty string (default) or Memory. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir type: string sizeLimit: - description: 'sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' + description: |- + sizeLimit is the total amount of local storage required for this EmptyDir volume. + The size limit is also applicable for memory medium. + The maximum usage on memory medium EmptyDir would be the minimum value between + the SizeLimit specified here and the sum of memory limits of all containers in a pod. + The default is nil which means that the limit is undefined. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ anyOf: - type: integer - type: string x-kubernetes-int-or-string: true ephemeral: - description: "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \n Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \n Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \n Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \n A pod can use both types of ephemeral volumes and persistent volumes at the same time." + description: |- + ephemeral represents a volume that is handled by a cluster storage driver. + The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, + and deleted when the pod is removed. + + + Use this if: + a) the volume is only needed while the pod runs, + b) features of normal volumes like restoring from snapshot or capacity + tracking are needed, + c) the storage driver is specified through a storage class, and + d) the storage driver supports dynamic volume provisioning through + a PersistentVolumeClaim (see EphemeralVolumeSource for more + information on the connection between this volume type + and PersistentVolumeClaim). + + + Use PersistentVolumeClaim or one of the vendor-specific + APIs for volumes that persist for longer than the lifecycle + of an individual pod. + + + Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to + be used that way - see the documentation of the driver for + more information. + + + A pod can use both types of ephemeral volumes and + persistent volumes at the same time. type: object properties: volumeClaimTemplate: - description: "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `-` where `` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \n An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \n Required, must not be nil." + description: |- + Will be used to create a stand-alone PVC to provision the volume. + The pod in which this EphemeralVolumeSource is embedded will be the + owner of the PVC, i.e. the PVC will be deleted together with the + pod. The name of the PVC will be `-` where + `` is the name from the `PodSpec.Volumes` array + entry. Pod validation will reject the pod if the concatenated name + is not valid for a PVC (for example, too long). + + + An existing PVC with that name that is not owned by the pod + will *not* be used for the pod to avoid using an unrelated + volume by mistake. Starting the pod is then blocked until + the unrelated PVC is removed. If such a pre-created PVC is + meant to be used by the pod, the PVC has to updated with an + owner reference to the pod once the pod exists. Normally + this should not be necessary, but it may be useful when + manually reconstructing a broken cluster. + + + This field is read-only and no changes will be made by Kubernetes + to the PVC after it has been created. + + + Required, must not be nil. type: object required: - spec properties: metadata: - description: May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation. + description: |- + May contain labels and annotations that will be copied into the PVC + when creating it. No other fields are allowed and will be rejected during + validation. type: object spec: - description: The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here. + description: |- + The specification for the PersistentVolumeClaim. The entire content is + copied unchanged into the PVC that gets created from this + template. The same fields as in a PersistentVolumeClaim + are also valid here. type: object properties: accessModes: - description: 'accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 type: array items: type: string dataSource: - description: 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.' + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. type: object required: - kind - name properties: apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced @@ -4276,15 +6802,42 @@ spec: name: description: Name is the name of resource being referenced type: string + x-kubernetes-map-type: atomic dataSourceRef: - description: 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn''t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn''t set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While dataSource ignores disallowed values (dropping them), dataSourceRef preserves all values, and generates an error if a disallowed value is specified. * While dataSource only allows local objects, dataSourceRef allows objects in any namespaces. (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.' + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. type: object required: - kind - name properties: apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced @@ -4293,29 +6846,24 @@ spec: description: Name is the name of resource being referenced type: string namespace: - description: Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. type: string resources: - description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources type: object properties: - claims: - description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." - type: array - items: - description: ResourceClaim references one entry in PodSpec.ResourceClaims. - type: object - required: - - name - properties: - name: - description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. - type: string - x-kubernetes-list-map-keys: - - name - x-kubernetes-list-type: map limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -4324,7 +6872,11 @@ spec: - type: string x-kubernetes-int-or-string: true requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -4340,7 +6892,9 @@ spec: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -4350,23 +6904,52 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic storageClassName: - description: 'storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. type: string volumeMode: - description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. type: string volumeName: description: volumeName is the binding reference to the PersistentVolume backing this claim. @@ -4376,14 +6959,20 @@ spec: type: object properties: fsType: - description: 'fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + TODO: how do we prevent errors in the filesystem from compromising the machine type: string lun: description: 'lun is Optional: FC target lun number' type: integer format: int32 readOnly: - description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean targetWWNs: description: 'targetWWNs is Optional: FC target worldwide names (WWNs)' @@ -4391,12 +6980,16 @@ spec: items: type: string wwids: - description: 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' + description: |- + wwids Optional: FC volume world wide identifiers (wwids) + Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. type: array items: type: string flexVolume: - description: flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. + description: |- + flexVolume represents a generic volume resource that is + provisioned/attached using an exec based plugin. type: object required: - driver @@ -4405,7 +6998,10 @@ spec: description: driver is the name of the driver to use for this volume. type: string fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. type: string options: description: 'options is Optional: this field holds extra command options if any.' @@ -4413,52 +7009,91 @@ spec: additionalProperties: type: string readOnly: - description: 'readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' + description: |- + readOnly is Optional: defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretRef: - description: 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' + description: |- + secretRef is Optional: secretRef is reference to the secret object containing + sensitive information to pass to the plugin scripts. This may be + empty if no secret object is specified. If the secret object + contains more than one secret, all secrets are passed to the plugin + scripts. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic flocker: description: flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running type: object properties: datasetName: - description: datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated + description: |- + datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker + should be considered as deprecated type: string datasetUUID: description: datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset type: string gcePersistentDisk: - description: 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + gcePersistentDisk represents a GCE Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: object required: - pdName properties: fsType: - description: 'fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + TODO: how do we prevent errors in the filesystem from compromising the machine type: string partition: - description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + partition is the partition in the volume that you want to mount. + If omitted, the default is to mount by volume name. + Examples: For volume /dev/sda1, you specify the partition as "1". + Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: integer format: int32 pdName: - description: 'pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: string readOnly: - description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: boolean gitRepo: - description: 'gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' + description: |- + gitRepo represents a git repository at a particular revision. + DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an + EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir + into the Pod's container. type: object required: - repository properties: directory: - description: directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. + description: |- + directory is the target directory name. + Must not contain or start with '..'. If '.' is supplied, the volume directory will be the + git repository. Otherwise, if specified, the volume will contain the git repository in + the subdirectory with the given name. type: string repository: description: repository is the URL @@ -4467,35 +7102,61 @@ spec: description: revision is the commit hash for the specified revision. type: string glusterfs: - description: 'glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md' + description: |- + glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. + More info: https://examples.k8s.io/volumes/glusterfs/README.md type: object required: - endpoints - path properties: endpoints: - description: 'endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' + description: |- + endpoints is the endpoint name that details Glusterfs topology. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod type: string path: - description: 'path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' + description: |- + path is the Glusterfs volume path. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod type: string readOnly: - description: 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' + description: |- + readOnly here will force the Glusterfs volume to be mounted with read-only permissions. + Defaults to false. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod type: boolean hostPath: - description: 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.' + description: |- + hostPath represents a pre-existing file or directory on the host + machine that is directly exposed to the container. This is generally + used for system agents or other privileged things that are allowed + to see the host machine. Most containers will NOT need this. + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + --- + TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not + mount host directories as read/write. type: object required: - path properties: path: - description: 'path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' + description: |- + path of the directory on the host. + If the path is a symlink, it will follow the link to the real path. + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath type: string type: - description: 'type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' + description: |- + type for HostPath Volume + Defaults to "" + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath type: string iscsi: - description: 'iscsi represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' + description: |- + iscsi represents an ISCSI Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://examples.k8s.io/volumes/iscsi/README.md type: object required: - iqn @@ -4509,69 +7170,108 @@ spec: description: chapAuthSession defines whether support iSCSI Session CHAP authentication type: boolean fsType: - description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi + TODO: how do we prevent errors in the filesystem from compromising the machine type: string initiatorName: - description: initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. + description: |- + initiatorName is the custom iSCSI Initiator Name. + If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface + : will be created for the connection. type: string iqn: description: iqn is the target iSCSI Qualified Name. type: string iscsiInterface: - description: iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). + description: |- + iscsiInterface is the interface Name that uses an iSCSI transport. + Defaults to 'default' (tcp). type: string lun: description: lun represents iSCSI Target Lun number. type: integer format: int32 portals: - description: portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + description: |- + portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port + is other than default (typically TCP ports 860 and 3260). type: array items: type: string readOnly: - description: readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. type: boolean secretRef: description: secretRef is the CHAP Secret for iSCSI target and initiator authentication type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic targetPortal: - description: targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + description: |- + targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port + is other than default (typically TCP ports 860 and 3260). type: string name: - description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + name of the volume. + Must be a DNS_LABEL and unique within the pod. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string nfs: - description: 'nfs represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + nfs represents an NFS mount on the host that shares a pod's lifetime + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: object required: - path - server properties: path: - description: 'path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + path that is exported by the NFS server. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: string readOnly: - description: 'readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + readOnly here will force the NFS export to be mounted with read-only permissions. + Defaults to false. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: boolean server: - description: 'server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + server is the hostname or IP address of the NFS server. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: string persistentVolumeClaim: - description: 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' + description: |- + persistentVolumeClaimVolumeSource represents a reference to a + PersistentVolumeClaim in the same namespace. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims type: object required: - claimName properties: claimName: - description: 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' + description: |- + claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims type: string readOnly: - description: readOnly Will force the ReadOnly setting in VolumeMounts. Default false. + description: |- + readOnly Will force the ReadOnly setting in VolumeMounts. + Default false. type: boolean photonPersistentDisk: description: photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine @@ -4580,7 +7280,10 @@ spec: - pdID properties: fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string pdID: description: pdID is the ID that identifies Photon Controller persistent disk @@ -4592,10 +7295,15 @@ spec: - volumeID properties: fsType: - description: fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fSType represents the filesystem type to mount + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: - description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean volumeID: description: volumeID uniquely identifies a Portworx volume @@ -4605,7 +7313,13 @@ spec: type: object properties: defaultMode: - description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + description: |- + defaultMode are the mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 sources: @@ -4615,12 +7329,109 @@ spec: description: Projection that may be projected along with other supported volume types type: object properties: + clusterTrustBundle: + description: |- + ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + of ClusterTrustBundle objects in an auto-updating file. + + + Alpha, gated by the ClusterTrustBundleProjection feature gate. + + + ClusterTrustBundle objects can either be selected by name, or by the + combination of signer name and a label selector. + + + Kubelet performs aggressive normalization of the PEM contents written + into the pod filesystem. Esoteric PEM features such as inter-block + comments and block headers are stripped. Certificates are deduplicated. + The ordering of certificates within the file is arbitrary, and Kubelet + may change the order over time. + type: object + required: + - path + properties: + labelSelector: + description: |- + Select all ClusterTrustBundles that match this label selector. Only has + effect if signerName is set. Mutually-exclusive with name. If unset, + interpreted as "match nothing". If set but empty, interpreted as "match + everything". + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + type: array + items: + type: string + matchLabels: + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + x-kubernetes-map-type: atomic + name: + description: |- + Select a single ClusterTrustBundle by object name. Mutually-exclusive + with signerName and labelSelector. + type: string + optional: + description: |- + If true, don't block pod startup if the referenced ClusterTrustBundle(s) + aren't available. If using name, then the named ClusterTrustBundle is + allowed not to exist. If using signerName, then the combination of + signerName and labelSelector is allowed to match zero + ClusterTrustBundles. + type: boolean + path: + description: Relative path from the volume root to write the bundle. + type: string + signerName: + description: |- + Select all ClusterTrustBundles that match this signer name. + Mutually-exclusive with name. The contents of all selected + ClusterTrustBundles will be unified and deduplicated. + type: string configMap: description: configMap information about the configMap data to project type: object properties: items: - description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -4633,18 +7444,32 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean + x-kubernetes-map-type: atomic downwardAPI: description: downwardAPI information about the downwardAPI data to project type: object @@ -4670,15 +7495,24 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic mode: - description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' type: string resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. type: object required: - resource @@ -4696,12 +7530,20 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic secret: description: secret information about the secret data to project type: object properties: items: - description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -4714,18 +7556,32 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: optional field specify whether the Secret or its key must be defined type: boolean + x-kubernetes-map-type: atomic serviceAccountToken: description: serviceAccountToken is information about the serviceAccountToken data to project type: object @@ -4733,14 +7589,26 @@ spec: - path properties: audience: - description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + description: |- + audience is the intended audience of the token. A recipient of a token + must identify itself with an identifier specified in the audience of the + token, and otherwise should reject the token. The audience defaults to the + identifier of the apiserver. type: string expirationSeconds: - description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + description: |- + expirationSeconds is the requested duration of validity of the service + account token. As the token approaches expiration, the kubelet volume + plugin will proactively rotate the service account token. The kubelet will + start trying to rotate the token if the token is older than 80 percent of + its time to live or if the token is older than 24 hours.Defaults to 1 hour + and must be at least 10 minutes. type: integer format: int64 path: - description: path is the path relative to the mount point of the file to project the token into. + description: |- + path is the path relative to the mount point of the file to project the + token into. type: string quobyte: description: quobyte represents a Quobyte mount on the host that shares a pod's lifetime @@ -4750,59 +7618,101 @@ spec: - volume properties: group: - description: group to map volume access to Default is no group + description: |- + group to map volume access to + Default is no group type: string readOnly: - description: readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. + description: |- + readOnly here will force the Quobyte volume to be mounted with read-only permissions. + Defaults to false. type: boolean registry: - description: registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes + description: |- + registry represents a single or multiple Quobyte Registry services + specified as a string as host:port pair (multiple entries are separated with commas) + which acts as the central registry for volumes type: string tenant: - description: tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin + description: |- + tenant owning the given Quobyte volume in the Backend + Used with dynamically provisioned Quobyte volumes, value is set by the plugin type: string user: - description: user to map volume access to Defaults to serivceaccount user + description: |- + user to map volume access to + Defaults to serivceaccount user type: string volume: description: volume is a string that references an already created Quobyte volume by name. type: string rbd: - description: 'rbd represents a Rados Block Device mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md' + description: |- + rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. + More info: https://examples.k8s.io/volumes/rbd/README.md type: object required: - image - monitors properties: fsType: - description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd + TODO: how do we prevent errors in the filesystem from compromising the machine type: string image: - description: 'image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + image is the rados image name. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string keyring: - description: 'keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + keyring is the path to key ring for RBDUser. + Default is /etc/ceph/keyring. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string monitors: - description: 'monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + monitors is a collection of Ceph monitors. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: array items: type: string pool: - description: 'pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + pool is the rados pool name. + Default is rbd. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string readOnly: - description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: boolean secretRef: - description: 'secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + secretRef is name of the authentication secret for RBDUser. If provided + overrides keyring. + Default is nil. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic user: - description: 'user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + user is the rados user name. + Default is admin. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string scaleIO: description: scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. @@ -4813,7 +7723,11 @@ spec: - system properties: fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". + Default is "xfs". type: string gateway: description: gateway is the host address of the ScaleIO API Gateway. @@ -4822,20 +7736,30 @@ spec: description: protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. type: string readOnly: - description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretRef: - description: secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. + description: |- + secretRef references to the secret for ScaleIO user and other + sensitive information. If this is not provided, Login operation will fail. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic sslEnabled: description: sslEnabled Flag enable/disable SSL communication with Gateway, default false type: boolean storageMode: - description: storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. + description: |- + storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. + Default is ThinProvisioned. type: string storagePool: description: storagePool is the ScaleIO Storage Pool associated with the protection domain. @@ -4844,18 +7768,36 @@ spec: description: system is the name of the storage system as configured in ScaleIO. type: string volumeName: - description: volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source. + description: |- + volumeName is the name of a volume already created in the ScaleIO system + that is associated with this volume source. type: string secret: - description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + description: |- + secret represents a secret that should populate this volume. + More info: https://kubernetes.io/docs/concepts/storage/volumes#secret type: object properties: defaultMode: - description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + defaultMode is Optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values + for mode bits. Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 items: - description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items If unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -4868,40 +7810,71 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string optional: description: optional field specify whether the Secret or its keys must be defined type: boolean secretName: - description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + description: |- + secretName is the name of the secret in the pod's namespace to use. + More info: https://kubernetes.io/docs/concepts/storage/volumes#secret type: string storageos: description: storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. type: object properties: fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: - description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretRef: - description: secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. + description: |- + secretRef specifies the secret to use for obtaining the StorageOS API + credentials. If not specified, default values will be attempted. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic volumeName: - description: volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. + description: |- + volumeName is the human-readable name of the StorageOS volume. Volume + names are only unique within a namespace. type: string volumeNamespace: - description: volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. + description: |- + volumeNamespace specifies the scope of the volume within StorageOS. If no + namespace is specified then the Pod's namespace will be used. This allows the + Kubernetes name scoping to be mirrored within StorageOS for tighter integration. + Set VolumeName to any name to override the default behaviour. + Set to "default" if you are not using namespaces within StorageOS. + Namespaces that do not pre-exist within StorageOS will be created. type: string vsphereVolume: description: vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine @@ -4910,7 +7883,10 @@ spec: - volumePath properties: fsType: - description: fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string storagePolicyID: description: storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. @@ -4933,18 +7909,25 @@ spec: rules: type: array items: - description: PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. + description: |- + PolicyRule holds information that describes a policy rule, but does not contain information + about who the rule applies to or which namespace the rule applies to. type: object required: - verbs properties: apiGroups: - description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups. + description: |- + APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of + the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups. type: array items: type: string nonResourceURLs: - description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. + description: |- + NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path + Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. + Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. type: array items: type: string @@ -4988,7 +7971,9 @@ spec: items: type: string labels: - description: Map of string keys and values that can be used to organize and categorize (scope and select) objects. + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. type: object additionalProperties: type: string @@ -5019,7 +8004,9 @@ spec: nativeAPIs: type: array items: - description: GroupVersionKind unambiguously identifies a kind. It doesn't anonymously include GroupVersion to avoid automatic coercion. It doesn't use a GroupVersion to avoid custom marshalling + description: |- + GroupVersionKind unambiguously identifies a kind. It doesn't anonymously include GroupVersion + to avoid automatic coercion. It doesn't use a GroupVersion to avoid custom marshalling type: object required: - group @@ -5041,7 +8028,10 @@ spec: url: type: string relatedImages: - description: List any related images, or other container images that your Operator might require to perform their functions. This list should also include operand images as well. All image references should be specified by digest (SHA) and not by tag. This field is only used during catalog creation and plays no part in cluster runtime. + description: |- + List any related images, or other container images that your Operator might require to perform their functions. + This list should also include operand images as well. All image references should be specified by + digest (SHA) and not by tag. This field is only used during catalog creation and plays no part in cluster runtime. type: array items: type: object @@ -5064,7 +8054,9 @@ spec: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -5074,20 +8066,33 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic skips: - description: The name(s) of one or more CSV(s) that should be skipped in the upgrade graph. Should match the `metadata.Name` field of the CSV that should be skipped. This field is only used during catalog creation and plays no part in cluster runtime. + description: |- + The name(s) of one or more CSV(s) that should be skipped in the upgrade graph. + Should match the `metadata.Name` field of the CSV that should be skipped. + This field is only used during catalog creation and plays no part in cluster runtime. type: array items: type: string @@ -5129,14 +8134,19 @@ spec: description: MatchPolicyType specifies the type of match policy. type: string objectSelector: - description: A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects. + description: |- + A label selector is a label query over a set of resources. The result of matchLabels and + matchExpressions are ANDed. An empty label selector matches all objects. A null + label selector matches no objects. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -5146,54 +8156,102 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic reinvocationPolicy: description: ReinvocationPolicyType specifies what type of policy the admission hook uses. type: string rules: type: array items: - description: RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid. + description: |- + RuleWithOperations is a tuple of Operations and Resources. It is recommended to make + sure that all the tuple expansions are valid. type: object properties: apiGroups: - description: APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. + description: |- + APIGroups is the API groups the resources belong to. '*' is all groups. + If '*' is present, the length of the slice must be one. + Required. type: array items: type: string x-kubernetes-list-type: atomic apiVersions: - description: APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. + description: |- + APIVersions is the API versions the resources belong to. '*' is all versions. + If '*' is present, the length of the slice must be one. + Required. type: array items: type: string x-kubernetes-list-type: atomic operations: - description: Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required. + description: |- + Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * + for all of those operations and any future admission operations that are added. + If '*' is present, the length of the slice must be one. + Required. type: array items: description: OperationType specifies an operation for a request. type: string x-kubernetes-list-type: atomic resources: - description: "Resources is a list of resources this rule applies to. \n For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. \n If wildcard is present, the validation rule will ensure resources do not overlap with each other. \n Depending on the enclosing object, subresources might not be allowed. Required." + description: |- + Resources is a list of resources this rule applies to. + + + For example: + 'pods' means pods. + 'pods/log' means the log subresource of pods. + '*' means all resources, but not subresources. + 'pods/*' means all subresources of pods. + '*/scale' means all scale subresources. + '*/*' means all resources and their subresources. + + + If wildcard is present, the validation rule will ensure resources do not + overlap with each other. + + + Depending on the enclosing object, subresources might not be allowed. + Required. type: array items: type: string x-kubernetes-list-type: atomic scope: - description: scope specifies the scope of this rule. Valid values are "Cluster", "Namespaced", and "*" "Cluster" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. "Namespaced" means that only namespaced resources will match this rule. "*" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is "*". + description: |- + scope specifies the scope of this rule. + Valid values are "Cluster", "Namespaced", and "*" + "Cluster" means that only cluster-scoped resources will match this rule. + Namespace API objects are cluster-scoped. + "Namespaced" means that only namespaced resources will match this rule. + "*" means that there are no scope restrictions. + Subresources match the scope of their parent resource. + Default is "*". type: string sideEffects: description: SideEffectClass specifies the types of side effects a webhook may have. @@ -5216,7 +8274,9 @@ spec: webhookPath: type: string status: - description: ClusterServiceVersionStatus represents information about the status of a CSV. Status may trail the actual state of a system. + description: |- + ClusterServiceVersionStatus represents information about the status of a CSV. Status may trail the actual + state of a system. type: object properties: certsLastUpdated: @@ -5232,7 +8292,9 @@ spec: type: object properties: pendingDeletion: - description: PendingDeletion is the list of custom resource objects that are pending deletion and blocked on finalizers. This indicates the progress of cleanup that is blocking CSV deletion or operator uninstall. + description: |- + PendingDeletion is the list of custom resource objects that are pending deletion and blocked on finalizers. + This indicates the progress of cleanup that is blocking CSV deletion or operator uninstall. type: array items: description: ResourceList represents a list of resources which are of the same Group/Kind @@ -5280,7 +8342,9 @@ spec: description: Condition of the ClusterServiceVersion type: string reason: - description: A brief CamelCase message indicating details about why the ClusterServiceVersion is in this state. e.g. 'RequirementsNotMet' + description: |- + A brief CamelCase message indicating details about why the ClusterServiceVersion is in this state. + e.g. 'RequirementsNotMet' type: string lastTransitionTime: description: Last time the status transitioned from one status to another. @@ -5297,7 +8361,9 @@ spec: description: Current condition of the ClusterServiceVersion type: string reason: - description: A brief CamelCase message indicating details about why the ClusterServiceVersion is in this state. e.g. 'RequirementsNotMet' + description: |- + A brief CamelCase message indicating details about why the ClusterServiceVersion is in this state. + e.g. 'RequirementsNotMet' type: string requirementStatus: description: The status of each requirement for this CSV diff --git a/crds/operators.coreos.com_installplans.yaml b/crds/operators.coreos.com_installplans.yaml index b85b77c56..afdb6cfd7 100644 --- a/crds/operators.coreos.com_installplans.yaml +++ b/crds/operators.coreos.com_installplans.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: installplans.operators.coreos.com spec: group: operators.coreos.com @@ -40,10 +39,19 @@ spec: - spec 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' + 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' + 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 @@ -56,7 +64,9 @@ spec: - clusterServiceVersionNames properties: approval: - description: Approval is the user approval policy for an InstallPlan. It must be one of "Automatic" or "Manual". + description: |- + Approval is the user approval policy for an InstallPlan. + It must be one of "Automatic" or "Manual". type: string approved: type: boolean @@ -71,37 +81,63 @@ spec: sourceNamespace: type: string status: - description: "InstallPlanStatus represents the information about the status of steps required to complete installation. \n Status may trail the actual state of a system." + description: |- + InstallPlanStatus represents the information about the status of + steps required to complete installation. + + + Status may trail the actual state of a system. type: object required: - catalogSources - phase properties: attenuatedServiceAccountRef: - description: AttenuatedServiceAccountRef references the service account that is used to do scoped operator install. + description: |- + AttenuatedServiceAccountRef references the service account that is used + to do scoped operator install. type: object properties: apiVersion: description: API version of the referent. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic bundleLookups: description: BundleLookups is the set of in-progress requests to pull and unpackage bundle content to the cluster. type: array @@ -122,23 +158,42 @@ spec: description: API version of the referent. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic conditions: description: Conditions represents the overall state of a BundleLookup. type: array @@ -172,7 +227,9 @@ spec: description: Identifier is the catalog-unique name of the operator (the name of the CSV for bundles that contain CSVs) type: string path: - description: Path refers to the location of a bundle to pull. It's typically an image reference. + description: |- + Path refers to the location of a bundle to pull. + It's typically an image reference. type: string properties: description: The effective properties of the unpacked bundle. @@ -187,7 +244,9 @@ spec: conditions: type: array items: - description: InstallPlanCondition represents the overall status of the execution of an InstallPlan. + description: |- + InstallPlanCondition represents the overall status of the execution of + an InstallPlan. type: object properties: lastTransitionTime: @@ -207,7 +266,10 @@ spec: description: InstallPlanConditionType describes the state of an InstallPlan at a certain point as a whole. type: string message: - description: Message is a human-readable message containing detailed information that may be important to understanding why the plan has its current status. + description: |- + Message is a human-readable message containing detailed + information that may be important to understanding why the + plan has its current status. type: string phase: description: InstallPlanPhase is the current status of a InstallPlan as a whole. @@ -227,7 +289,9 @@ spec: resolving: type: string resource: - description: StepResource represents the status of a resource to be tracked by an InstallPlan. + description: |- + StepResource represents the status of a resource to be tracked by an + InstallPlan. type: object required: - group @@ -252,10 +316,14 @@ spec: version: type: string status: - description: StepStatus is the current status of a particular resource an in InstallPlan + description: |- + StepStatus is the current status of a particular resource an in + InstallPlan type: string startTime: - description: StartTime is the time when the controller began applying the resources listed in the plan to the cluster. + description: |- + StartTime is the time when the controller began applying + the resources listed in the plan to the cluster. type: string format: date-time served: true diff --git a/crds/operators.coreos.com_olmconfigs.yaml b/crds/operators.coreos.com_olmconfigs.yaml index 81fc5a7ae..e90729ad6 100644 --- a/crds/operators.coreos.com_olmconfigs.yaml +++ b/crds/operators.coreos.com_olmconfigs.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: olmconfigs.operators.coreos.com spec: group: operators.coreos.com @@ -25,10 +24,19 @@ spec: - metadata 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' + 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' + 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 @@ -41,10 +49,22 @@ spec: type: object properties: disableCopiedCSVs: - description: DisableCopiedCSVs is used to disable OLM's "Copied CSV" feature for operators installed at the cluster scope, where a cluster scoped operator is one that has been installed in an OperatorGroup that targets all namespaces. When reenabled, OLM will recreate the "Copied CSVs" for each cluster scoped operator. + description: |- + DisableCopiedCSVs is used to disable OLM's "Copied CSV" feature + for operators installed at the cluster scope, where a cluster + scoped operator is one that has been installed in an + OperatorGroup that targets all namespaces. + When reenabled, OLM will recreate the "Copied CSVs" for each + cluster scoped operator. type: boolean packageServerSyncInterval: - description: PackageServerSyncInterval is used to define the sync interval for packagerserver pods. Packageserver pods periodically check the status of CatalogSources; this specifies the period using duration format (e.g. "60m"). For this parameter, only hours ("h"), minutes ("m"), and seconds ("s") may be specified. When not specified, the period defaults to the value specified within the packageserver. + description: |- + PackageServerSyncInterval is used to define the sync interval for + packagerserver pods. Packageserver pods periodically check the + status of CatalogSources; this specifies the period using duration + format (e.g. "60m"). For this parameter, only hours ("h"), minutes + ("m"), and seconds ("s") may be specified. When not specified, the + period defaults to the value specified within the packageserver. type: string pattern: ^([0-9]+(\.[0-9]+)?(s|m|h))+$ status: @@ -54,7 +74,24 @@ spec: conditions: type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - lastTransitionTime @@ -64,20 +101,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -90,7 +139,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ diff --git a/crds/operators.coreos.com_operatorconditions.yaml b/crds/operators.coreos.com_operatorconditions.yaml index ef4b7bef7..dada8e93b 100644 --- a/crds/operators.coreos.com_operatorconditions.yaml +++ b/crds/operators.coreos.com_operatorconditions.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: operatorconditions.operators.coreos.com spec: group: operators.coreos.com @@ -27,10 +26,19 @@ spec: - metadata 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' + 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' + 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 @@ -45,7 +53,24 @@ spec: overrides: type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - message @@ -54,20 +79,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -80,7 +117,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ @@ -89,13 +131,32 @@ spec: items: type: string status: - description: OperatorConditionStatus allows an operator to convey information its state to OLM. The status may trail the actual state of a system. + description: |- + OperatorConditionStatus allows an operator to convey information its state to OLM. The status may trail the actual + state of a system. type: object properties: conditions: type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - lastTransitionTime @@ -105,20 +166,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -131,7 +204,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ @@ -148,21 +226,49 @@ spec: - metadata 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' + 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' + 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: OperatorConditionSpec allows an operator to report state to OLM and provides cluster admin with the ability to manually override state reported by the operator. + description: |- + OperatorConditionSpec allows an operator to report state to OLM and provides + cluster admin with the ability to manually override state reported by the operator. type: object properties: conditions: type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - lastTransitionTime @@ -172,20 +278,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -198,7 +316,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ @@ -209,7 +332,24 @@ spec: overrides: type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - message @@ -218,20 +358,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -244,7 +396,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ @@ -259,7 +416,24 @@ spec: conditions: type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - lastTransitionTime @@ -269,20 +443,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -295,7 +481,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ diff --git a/crds/operators.coreos.com_operatorgroups.yaml b/crds/operators.coreos.com_operatorgroups.yaml index f6794075b..3daddc999 100644 --- a/crds/operators.coreos.com_operatorgroups.yaml +++ b/crds/operators.coreos.com_operatorgroups.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: operatorgroups.operators.coreos.com spec: group: operators.coreos.com @@ -21,16 +20,27 @@ spec: - name: v1 schema: openAPIV3Schema: - description: OperatorGroup is the unit of multitenancy for OLM managed operators. It constrains the installation of operators in its namespace to a specified set of target namespaces. + description: |- + OperatorGroup is the unit of multitenancy for OLM managed operators. + It constrains the installation of operators in its namespace to a specified set of target namespaces. type: object required: - metadata 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' + 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' + 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 @@ -48,7 +58,9 @@ spec: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -58,32 +70,66 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic serviceAccountName: - description: ServiceAccountName is the admin specified service account which will be used to deploy operator(s) in this operator group. + description: |- + ServiceAccountName is the admin specified service account which will be + used to deploy operator(s) in this operator group. type: string staticProvidedAPIs: description: Static tells OLM not to update the OperatorGroup's providedAPIs annotation type: boolean targetNamespaces: - description: TargetNamespaces is an explicit set of namespaces to target. If it is set, Selector is ignored. + description: |- + TargetNamespaces is an explicit set of namespaces to target. + If it is set, Selector is ignored. type: array items: type: string x-kubernetes-list-type: set upgradeStrategy: - description: "UpgradeStrategy defines the upgrade strategy for operators in the namespace. There are currently two supported upgrade strategies: \n Default: OLM will only allow clusterServiceVersions to move to the replacing phase from the succeeded phase. This effectively means that OLM will not allow operators to move to the next version if an installation or upgrade has failed. \n TechPreviewUnsafeFailForward: OLM will allow clusterServiceVersions to move to the replacing phase from the succeeded phase or from the failed phase. Additionally, OLM will generate new installPlans when a subscription references a failed installPlan and the catalog has been updated with a new upgrade for the existing set of operators. \n WARNING: The TechPreviewUnsafeFailForward upgrade strategy is unsafe and may result in unexpected behavior or unrecoverable data loss unless you have deep understanding of the set of operators being managed in the namespace." + description: |- + UpgradeStrategy defines the upgrade strategy for operators in the namespace. + There are currently two supported upgrade strategies: + + + Default: OLM will only allow clusterServiceVersions to move to the replacing + phase from the succeeded phase. This effectively means that OLM will not + allow operators to move to the next version if an installation or upgrade + has failed. + + + TechPreviewUnsafeFailForward: OLM will allow clusterServiceVersions to move to the + replacing phase from the succeeded phase or from the failed phase. + Additionally, OLM will generate new installPlans when a subscription references + a failed installPlan and the catalog has been updated with a new upgrade for + the existing set of operators. + + + WARNING: The TechPreviewUnsafeFailForward upgrade strategy is unsafe and may result + in unexpected behavior or unrecoverable data loss unless you have deep + understanding of the set of operators being managed in the namespace. type: string default: Default enum: @@ -99,7 +145,24 @@ spec: description: Conditions is an array of the OperatorGroup's conditions. type: array items: - description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }" + description: |- + Condition contains details for one aspect of the current state of this API Resource. + --- + This struct is intended for direct use as an array at the field path .status.conditions. For example, + + + type FooStatus struct{ + // Represents the observations of a foo's current state. + // Known .status.conditions.type are: "Available", "Progressing", and "Degraded" + // +patchMergeKey=type + // +patchStrategy=merge + // +listType=map + // +listMapKey=type + Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"` + + + // other fields + } type: object required: - lastTransitionTime @@ -109,20 +172,32 @@ spec: - type properties: lastTransitionTime: - description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. type: string format: date-time message: - description: message is a human readable message indicating details about the transition. This may be an empty string. + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. type: string maxLength: 32768 observedGeneration: - description: observedGeneration represents the .metadata.generation that the condition was set based upon. 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. + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + 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. type: integer format: int64 minimum: 0 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. The value should be a CamelCase string. This field may not be empty. + 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. + The value should be a CamelCase string. + This field may not be empty. type: string maxLength: 1024 minLength: 1 @@ -135,7 +210,12 @@ spec: - "False" - Unknown type: - description: type of condition in CamelCase or in foo.example.com/CamelCase. --- 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. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + 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. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) type: string 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])$ @@ -157,23 +237,42 @@ spec: description: API version of the referent. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic served: true storage: true subresources: @@ -181,16 +280,27 @@ spec: - name: v1alpha2 schema: openAPIV3Schema: - description: OperatorGroup is the unit of multitenancy for OLM managed operators. It constrains the installation of operators in its namespace to a specified set of target namespaces. + description: |- + OperatorGroup is the unit of multitenancy for OLM managed operators. + It constrains the installation of operators in its namespace to a specified set of target namespaces. type: object required: - metadata 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' + 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' + 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 @@ -206,7 +316,9 @@ spec: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -216,26 +328,40 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic serviceAccountName: - description: ServiceAccountName is the admin specified service account which will be used to deploy operator(s) in this operator group. + description: |- + ServiceAccountName is the admin specified service account which will be + used to deploy operator(s) in this operator group. type: string staticProvidedAPIs: description: Static tells OLM not to update the OperatorGroup's providedAPIs annotation type: boolean targetNamespaces: - description: TargetNamespaces is an explicit set of namespaces to target. If it is set, Selector is ignored. + description: |- + TargetNamespaces is an explicit set of namespaces to target. + If it is set, Selector is ignored. type: array items: type: string @@ -262,23 +388,42 @@ spec: description: API version of the referent. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic served: true storage: false subresources: diff --git a/crds/operators.coreos.com_operators.yaml b/crds/operators.coreos.com_operators.yaml index 73b202874..e58f182cf 100644 --- a/crds/operators.coreos.com_operators.yaml +++ b/crds/operators.coreos.com_operators.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: operators.operators.coreos.com spec: group: operators.coreos.com @@ -23,10 +22,19 @@ spec: type: object 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' + 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' + 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 @@ -51,7 +59,9 @@ spec: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -61,18 +71,28 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic refs: description: Refs are a set of references to the operator's component resources, selected with LabelSelector. type: array @@ -114,23 +134,42 @@ spec: description: Type of condition. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic served: true storage: true subresources: diff --git a/crds/operators.coreos.com_subscriptions.yaml b/crds/operators.coreos.com_subscriptions.yaml index 611591814..df5ecd967 100644 --- a/crds/operators.coreos.com_subscriptions.yaml +++ b/crds/operators.coreos.com_subscriptions.yaml @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.9.0 - creationTimestamp: null + controller-gen.kubebuilder.io/version: v0.14.0 name: subscriptions.operators.coreos.com spec: group: operators.coreos.com @@ -42,10 +41,19 @@ spec: - spec 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' + 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' + 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 @@ -64,7 +72,10 @@ spec: type: object properties: affinity: - description: If specified, overrides the pod's scheduling constraints. nil sub-attributes will *not* override the original values in the pod.spec for those sub-attributes. Use empty object ({}) to erase original sub-attribute values. + description: |- + If specified, overrides the pod's scheduling constraints. + nil sub-attributes will *not* override the original values in the pod.spec for those sub-attributes. + Use empty object ({}) to erase original sub-attribute values. type: object properties: nodeAffinity: @@ -72,10 +83,21 @@ spec: type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node matches the corresponding matchExpressions; the + node(s) with the highest sum are the most preferred. type: array items: - description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + description: |- + An empty preferred scheduling term matches all objects with implicit weight 0 + (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). type: object required: - preference @@ -89,7 +111,9 @@ spec: description: A list of node selector requirements by node's labels. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -99,10 +123,17 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string @@ -110,7 +141,9 @@ spec: description: A list of node selector requirements by node's fields. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -120,19 +153,32 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string + x-kubernetes-map-type: atomic weight: description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to an update), the system + may or may not try to eventually evict the pod from its node. type: object required: - nodeSelectorTerms @@ -141,14 +187,19 @@ spec: description: Required. A list of node selector terms. The terms are ORed. type: array items: - description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + description: |- + A null or empty node selector term matches no objects. The requirements of + them are ANDed. + The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. type: object properties: matchExpressions: description: A list of node selector requirements by node's labels. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -158,10 +209,17 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string @@ -169,7 +227,9 @@ spec: description: A list of node selector requirements by node's fields. type: array items: - description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. type: object required: - key @@ -179,19 +239,37 @@ spec: description: The label key that the selector applies to. type: string operator: - description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: - description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. type: array items: type: string + x-kubernetes-map-type: atomic + x-kubernetes-map-type: atomic podAffinity: description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. type: array items: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) @@ -207,14 +285,18 @@ spec: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -224,27 +306,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -254,48 +383,86 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -305,27 +472,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -335,32 +549,60 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string podAntiAffinity: description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). type: object properties: preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the anti-affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling anti-affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. type: array items: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) @@ -376,14 +618,18 @@ spec: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -393,27 +639,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -423,48 +716,86 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. type: integer format: int32 requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + description: |- + If the anti-affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the anti-affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: - description: A label query over a set of resources, in this case pods. + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -474,27 +805,74 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + Also, MatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. + Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + type: array + items: + type: string + x-kubernetes-list-type: atomic namespaceSelector: - description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -504,33 +882,58 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic namespaces: - description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. type: string annotations: - description: Annotations is an unstructured key value map stored with each Deployment, Pod, APIService in the Operator. Typically, annotations may be set by external tools to store and retrieve arbitrary metadata. Use this field to pre-define annotations that OLM should add to each of the Subscription's deployments, pods, and apiservices. + description: |- + Annotations is an unstructured key value map stored with each Deployment, Pod, APIService in the Operator. + Typically, annotations may be set by external tools to store and retrieve arbitrary metadata. + Use this field to pre-define annotations that OLM should add to each of the Subscription's + deployments, pods, and apiservices. type: object additionalProperties: type: string env: - description: Env is a list of environment variables to set in the container. Cannot be updated. + description: |- + Env is a list of environment variables to set in the container. + Cannot be updated. type: array items: description: EnvVar represents an environment variable present in a Container. @@ -542,7 +945,16 @@ spec: description: Name of the environment variable. Must be a C_IDENTIFIER. type: string value: - description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. @@ -558,13 +970,19 @@ spec: description: The key to select. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean + x-kubernetes-map-type: atomic fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. type: object required: - fieldPath @@ -575,8 +993,11 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. type: object required: - resource @@ -594,6 +1015,7 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic secretKeyRef: description: Selects a key of a secret in the pod's namespace type: object @@ -604,13 +1026,23 @@ spec: description: The key of the secret to select from. Must be a valid secret key. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret or its key must be defined type: boolean + x-kubernetes-map-type: atomic envFrom: - description: EnvFrom is a list of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Immutable. + description: |- + EnvFrom is a list of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Immutable. type: array items: description: EnvFromSource represents the source of a set of ConfigMaps @@ -621,11 +1053,15 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the ConfigMap must be defined type: boolean + x-kubernetes-map-type: atomic prefix: description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. type: string @@ -634,22 +1070,41 @@ spec: type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: Specify whether the Secret must be defined type: boolean + x-kubernetes-map-type: atomic nodeSelector: - description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + description: |- + NodeSelector is a selector which must be true for the pod to fit on a node. + Selector which must match a node's labels for the pod to be scheduled on that node. + More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ type: object additionalProperties: type: string resources: - description: 'Resources represents compute resources required by this container. Immutable. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' + description: |- + Resources represents compute resources required by this container. + Immutable. + More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ type: object properties: claims: - description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. type: array items: description: ResourceClaim references one entry in PodSpec.ResourceClaims. @@ -658,13 +1113,18 @@ spec: - name properties: name: - description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. type: string x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -673,7 +1133,11 @@ spec: - type: string x-kubernetes-int-or-string: true requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -682,14 +1146,20 @@ spec: - type: string x-kubernetes-int-or-string: true selector: - description: Selector is the label selector for pods to be configured. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. + description: |- + Selector is the label selector for pods to be configured. + Existing ReplicaSets whose pods are + selected by this will be the ones affected by this deployment. + It must match the pod template's labels. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -699,40 +1169,66 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic tolerations: description: Tolerations are the pod's tolerations. type: array items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + description: |- + The pod this Toleration is attached to tolerates any taint that matches + the triple using the matching operator . type: object properties: effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + description: |- + Effect indicates the taint effect to match. Empty means match all taint effects. + When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. type: string key: - description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + description: |- + Key is the taint key that the toleration applies to. Empty means match all taint keys. + If the key is empty, operator must be Exists; this combination means to match all values and all keys. type: string operator: - description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + description: |- + Operator represents a key's relationship to the value. + Valid operators are Exists and Equal. Defaults to Equal. + Exists is equivalent to wildcard for value, so that a pod can + tolerate all taints of a particular category. type: string tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + description: |- + TolerationSeconds represents the period of time the toleration (which must be + of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + it is not set, which means tolerate the taint forever (do not evict). Zero and + negative values will be treated as 0 (evict immediately) by the system. type: integer format: int64 value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + description: |- + Value is the taint value the toleration matches to. + If the operator is Exists, the value should be empty, otherwise just a regular string. type: string volumeMounts: description: List of VolumeMounts to set in the container. @@ -745,22 +1241,36 @@ spec: - name properties: mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. type: string mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. type: string name: description: This must match the Name of a Volume. type: string readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. type: boolean subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). type: string subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. type: string volumes: description: List of Volumes to set in the podSpec. @@ -772,23 +1282,39 @@ spec: - name properties: awsElasticBlockStore: - description: 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' + description: |- + awsElasticBlockStore represents an AWS Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore type: object required: - volumeID properties: fsType: - description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + TODO: how do we prevent errors in the filesystem from compromising the machine type: string partition: - description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' + description: |- + partition is the partition in the volume that you want to mount. + If omitted, the default is to mount by volume name. + Examples: For volume /dev/sda1, you specify the partition as "1". + Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). type: integer format: int32 readOnly: - description: 'readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' + description: |- + readOnly value true will force the readOnly setting in VolumeMounts. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore type: boolean volumeID: - description: 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' + description: |- + volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore type: string azureDisk: description: azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. @@ -807,13 +1333,18 @@ spec: description: diskURI is the URI of data disk in the blob storage type: string fsType: - description: fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is Filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string kind: description: 'kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' type: string readOnly: - description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean azureFile: description: azureFile represents an Azure File Service mount on the host and bind mount to the pod. @@ -823,7 +1354,9 @@ spec: - shareName properties: readOnly: - description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretName: description: secretName is the name of secret that contains Azure Storage Account Name and Key @@ -838,7 +1371,9 @@ spec: - monitors properties: monitors: - description: 'monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + monitors is Required: Monitors is a collection of Ceph monitors + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: array items: type: string @@ -846,53 +1381,97 @@ spec: description: 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /' type: string readOnly: - description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: boolean secretFile: - description: 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: string secretRef: - description: 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic user: - description: 'user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' + description: |- + user is optional: User is the rados user name, default is admin + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it type: string cinder: - description: 'cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + cinder represents a cinder volume attached and mounted on kubelets host machine. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: object required: - volumeID properties: fsType: - description: 'fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: string readOnly: - description: 'readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: boolean secretRef: - description: 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.' + description: |- + secretRef is optional: points to a secret object containing parameters used to connect + to OpenStack. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic volumeID: - description: 'volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' + description: |- + volumeID used to identify the volume in cinder. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md type: string configMap: description: configMap represents a configMap that should populate this volume type: object properties: defaultMode: - description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + defaultMode is optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 items: - description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -905,18 +1484,32 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean + x-kubernetes-map-type: atomic csi: description: csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature). type: object @@ -924,23 +1517,41 @@ spec: - driver properties: driver: - description: driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. + description: |- + driver is the name of the CSI driver that handles this volume. + Consult with your admin for the correct name as registered in the cluster. type: string fsType: - description: fsType to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. + description: |- + fsType to mount. Ex. "ext4", "xfs", "ntfs". + If not provided, the empty value is passed to the associated CSI driver + which will determine the default filesystem to apply. type: string nodePublishSecretRef: - description: nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. + description: |- + nodePublishSecretRef is a reference to the secret object containing + sensitive information to pass to the CSI driver to complete the CSI + NodePublishVolume and NodeUnpublishVolume calls. + This field is optional, and may be empty if no secret is required. If the + secret object contains more than one secret, all secret references are passed. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic readOnly: - description: readOnly specifies a read-only configuration for the volume. Defaults to false (read/write). + description: |- + readOnly specifies a read-only configuration for the volume. + Defaults to false (read/write). type: boolean volumeAttributes: - description: volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. + description: |- + volumeAttributes stores driver-specific properties that are passed to the CSI + driver. Consult your driver's documentation for supported values. type: object additionalProperties: type: string @@ -949,7 +1560,15 @@ spec: type: object properties: defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + Optional: mode bits to use on created files by default. Must be a + Optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 items: @@ -973,15 +1592,24 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic mode: - description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' type: string resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. type: object required: - resource @@ -999,51 +1627,136 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic emptyDir: - description: 'emptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' + description: |- + emptyDir represents a temporary directory that shares a pod's lifetime. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir type: object properties: medium: - description: 'medium represents what type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' + description: |- + medium represents what type of storage medium should back this directory. + The default is "" which means to use the node's default medium. + Must be an empty string (default) or Memory. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir type: string sizeLimit: - description: 'sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' + description: |- + sizeLimit is the total amount of local storage required for this EmptyDir volume. + The size limit is also applicable for memory medium. + The maximum usage on memory medium EmptyDir would be the minimum value between + the SizeLimit specified here and the sum of memory limits of all containers in a pod. + The default is nil which means that the limit is undefined. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ anyOf: - type: integer - type: string x-kubernetes-int-or-string: true ephemeral: - description: "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \n Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \n Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \n Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \n A pod can use both types of ephemeral volumes and persistent volumes at the same time." + description: |- + ephemeral represents a volume that is handled by a cluster storage driver. + The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, + and deleted when the pod is removed. + + + Use this if: + a) the volume is only needed while the pod runs, + b) features of normal volumes like restoring from snapshot or capacity + tracking are needed, + c) the storage driver is specified through a storage class, and + d) the storage driver supports dynamic volume provisioning through + a PersistentVolumeClaim (see EphemeralVolumeSource for more + information on the connection between this volume type + and PersistentVolumeClaim). + + + Use PersistentVolumeClaim or one of the vendor-specific + APIs for volumes that persist for longer than the lifecycle + of an individual pod. + + + Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to + be used that way - see the documentation of the driver for + more information. + + + A pod can use both types of ephemeral volumes and + persistent volumes at the same time. type: object properties: volumeClaimTemplate: - description: "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `-` where `` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \n An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \n Required, must not be nil." + description: |- + Will be used to create a stand-alone PVC to provision the volume. + The pod in which this EphemeralVolumeSource is embedded will be the + owner of the PVC, i.e. the PVC will be deleted together with the + pod. The name of the PVC will be `-` where + `` is the name from the `PodSpec.Volumes` array + entry. Pod validation will reject the pod if the concatenated name + is not valid for a PVC (for example, too long). + + + An existing PVC with that name that is not owned by the pod + will *not* be used for the pod to avoid using an unrelated + volume by mistake. Starting the pod is then blocked until + the unrelated PVC is removed. If such a pre-created PVC is + meant to be used by the pod, the PVC has to updated with an + owner reference to the pod once the pod exists. Normally + this should not be necessary, but it may be useful when + manually reconstructing a broken cluster. + + + This field is read-only and no changes will be made by Kubernetes + to the PVC after it has been created. + + + Required, must not be nil. type: object required: - spec properties: metadata: - description: May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation. + description: |- + May contain labels and annotations that will be copied into the PVC + when creating it. No other fields are allowed and will be rejected during + validation. type: object spec: - description: The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here. + description: |- + The specification for the PersistentVolumeClaim. The entire content is + copied unchanged into the PVC that gets created from this + template. The same fields as in a PersistentVolumeClaim + are also valid here. type: object properties: accessModes: - description: 'accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 type: array items: type: string dataSource: - description: 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.' + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. type: object required: - kind - name properties: apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced @@ -1051,15 +1764,42 @@ spec: name: description: Name is the name of resource being referenced type: string + x-kubernetes-map-type: atomic dataSourceRef: - description: 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn''t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn''t set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While dataSource ignores disallowed values (dropping them), dataSourceRef preserves all values, and generates an error if a disallowed value is specified. * While dataSource only allows local objects, dataSourceRef allows objects in any namespaces. (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.' + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. type: object required: - kind - name properties: apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced @@ -1068,29 +1808,24 @@ spec: description: Name is the name of resource being referenced type: string namespace: - description: Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. type: string resources: - description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources type: object properties: - claims: - description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." - type: array - items: - description: ResourceClaim references one entry in PodSpec.ResourceClaims. - type: object - required: - - name - properties: - name: - description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. - type: string - x-kubernetes-list-map-keys: - - name - x-kubernetes-list-type: map limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -1099,7 +1834,11 @@ spec: - type: string x-kubernetes-int-or-string: true requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ type: object additionalProperties: pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ @@ -1115,7 +1854,9 @@ spec: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. type: object required: - key @@ -1125,23 +1866,52 @@ spec: description: key is the label key that the selector applies to. type: string operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. type: array items: type: string matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string + x-kubernetes-map-type: atomic storageClassName: - description: 'storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. type: string volumeMode: - description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. type: string volumeName: description: volumeName is the binding reference to the PersistentVolume backing this claim. @@ -1151,14 +1921,20 @@ spec: type: object properties: fsType: - description: 'fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + TODO: how do we prevent errors in the filesystem from compromising the machine type: string lun: description: 'lun is Optional: FC target lun number' type: integer format: int32 readOnly: - description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean targetWWNs: description: 'targetWWNs is Optional: FC target worldwide names (WWNs)' @@ -1166,12 +1942,16 @@ spec: items: type: string wwids: - description: 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' + description: |- + wwids Optional: FC volume world wide identifiers (wwids) + Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. type: array items: type: string flexVolume: - description: flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. + description: |- + flexVolume represents a generic volume resource that is + provisioned/attached using an exec based plugin. type: object required: - driver @@ -1180,7 +1960,10 @@ spec: description: driver is the name of the driver to use for this volume. type: string fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. type: string options: description: 'options is Optional: this field holds extra command options if any.' @@ -1188,52 +1971,91 @@ spec: additionalProperties: type: string readOnly: - description: 'readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' + description: |- + readOnly is Optional: defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretRef: - description: 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' + description: |- + secretRef is Optional: secretRef is reference to the secret object containing + sensitive information to pass to the plugin scripts. This may be + empty if no secret object is specified. If the secret object + contains more than one secret, all secrets are passed to the plugin + scripts. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic flocker: description: flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running type: object properties: datasetName: - description: datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated + description: |- + datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker + should be considered as deprecated type: string datasetUUID: description: datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset type: string gcePersistentDisk: - description: 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + gcePersistentDisk represents a GCE Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: object required: - pdName properties: fsType: - description: 'fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + TODO: how do we prevent errors in the filesystem from compromising the machine type: string partition: - description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + partition is the partition in the volume that you want to mount. + If omitted, the default is to mount by volume name. + Examples: For volume /dev/sda1, you specify the partition as "1". + Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: integer format: int32 pdName: - description: 'pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: string readOnly: - description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk type: boolean gitRepo: - description: 'gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' + description: |- + gitRepo represents a git repository at a particular revision. + DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an + EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir + into the Pod's container. type: object required: - repository properties: directory: - description: directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. + description: |- + directory is the target directory name. + Must not contain or start with '..'. If '.' is supplied, the volume directory will be the + git repository. Otherwise, if specified, the volume will contain the git repository in + the subdirectory with the given name. type: string repository: description: repository is the URL @@ -1242,35 +2064,61 @@ spec: description: revision is the commit hash for the specified revision. type: string glusterfs: - description: 'glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md' + description: |- + glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. + More info: https://examples.k8s.io/volumes/glusterfs/README.md type: object required: - endpoints - path properties: endpoints: - description: 'endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' + description: |- + endpoints is the endpoint name that details Glusterfs topology. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod type: string path: - description: 'path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' + description: |- + path is the Glusterfs volume path. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod type: string readOnly: - description: 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' + description: |- + readOnly here will force the Glusterfs volume to be mounted with read-only permissions. + Defaults to false. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod type: boolean hostPath: - description: 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.' + description: |- + hostPath represents a pre-existing file or directory on the host + machine that is directly exposed to the container. This is generally + used for system agents or other privileged things that are allowed + to see the host machine. Most containers will NOT need this. + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + --- + TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not + mount host directories as read/write. type: object required: - path properties: path: - description: 'path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' + description: |- + path of the directory on the host. + If the path is a symlink, it will follow the link to the real path. + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath type: string type: - description: 'type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' + description: |- + type for HostPath Volume + Defaults to "" + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath type: string iscsi: - description: 'iscsi represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' + description: |- + iscsi represents an ISCSI Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://examples.k8s.io/volumes/iscsi/README.md type: object required: - iqn @@ -1284,69 +2132,108 @@ spec: description: chapAuthSession defines whether support iSCSI Session CHAP authentication type: boolean fsType: - description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi + TODO: how do we prevent errors in the filesystem from compromising the machine type: string initiatorName: - description: initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. + description: |- + initiatorName is the custom iSCSI Initiator Name. + If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface + : will be created for the connection. type: string iqn: description: iqn is the target iSCSI Qualified Name. type: string iscsiInterface: - description: iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). + description: |- + iscsiInterface is the interface Name that uses an iSCSI transport. + Defaults to 'default' (tcp). type: string lun: description: lun represents iSCSI Target Lun number. type: integer format: int32 portals: - description: portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + description: |- + portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port + is other than default (typically TCP ports 860 and 3260). type: array items: type: string readOnly: - description: readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. type: boolean secretRef: description: secretRef is the CHAP Secret for iSCSI target and initiator authentication type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic targetPortal: - description: targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + description: |- + targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port + is other than default (typically TCP ports 860 and 3260). type: string name: - description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + name of the volume. + Must be a DNS_LABEL and unique within the pod. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string nfs: - description: 'nfs represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + nfs represents an NFS mount on the host that shares a pod's lifetime + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: object required: - path - server properties: path: - description: 'path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + path that is exported by the NFS server. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: string readOnly: - description: 'readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + readOnly here will force the NFS export to be mounted with read-only permissions. + Defaults to false. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: boolean server: - description: 'server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' + description: |- + server is the hostname or IP address of the NFS server. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs type: string persistentVolumeClaim: - description: 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' + description: |- + persistentVolumeClaimVolumeSource represents a reference to a + PersistentVolumeClaim in the same namespace. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims type: object required: - claimName properties: claimName: - description: 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' + description: |- + claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims type: string readOnly: - description: readOnly Will force the ReadOnly setting in VolumeMounts. Default false. + description: |- + readOnly Will force the ReadOnly setting in VolumeMounts. + Default false. type: boolean photonPersistentDisk: description: photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine @@ -1355,7 +2242,10 @@ spec: - pdID properties: fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string pdID: description: pdID is the ID that identifies Photon Controller persistent disk @@ -1367,10 +2257,15 @@ spec: - volumeID properties: fsType: - description: fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fSType represents the filesystem type to mount + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: - description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean volumeID: description: volumeID uniquely identifies a Portworx volume @@ -1380,7 +2275,13 @@ spec: type: object properties: defaultMode: - description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + description: |- + defaultMode are the mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 sources: @@ -1390,12 +2291,109 @@ spec: description: Projection that may be projected along with other supported volume types type: object properties: + clusterTrustBundle: + description: |- + ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + of ClusterTrustBundle objects in an auto-updating file. + + + Alpha, gated by the ClusterTrustBundleProjection feature gate. + + + ClusterTrustBundle objects can either be selected by name, or by the + combination of signer name and a label selector. + + + Kubelet performs aggressive normalization of the PEM contents written + into the pod filesystem. Esoteric PEM features such as inter-block + comments and block headers are stripped. Certificates are deduplicated. + The ordering of certificates within the file is arbitrary, and Kubelet + may change the order over time. + type: object + required: + - path + properties: + labelSelector: + description: |- + Select all ClusterTrustBundles that match this label selector. Only has + effect if signerName is set. Mutually-exclusive with name. If unset, + interpreted as "match nothing". If set but empty, interpreted as "match + everything". + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + type: array + items: + type: string + matchLabels: + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + x-kubernetes-map-type: atomic + name: + description: |- + Select a single ClusterTrustBundle by object name. Mutually-exclusive + with signerName and labelSelector. + type: string + optional: + description: |- + If true, don't block pod startup if the referenced ClusterTrustBundle(s) + aren't available. If using name, then the named ClusterTrustBundle is + allowed not to exist. If using signerName, then the combination of + signerName and labelSelector is allowed to match zero + ClusterTrustBundles. + type: boolean + path: + description: Relative path from the volume root to write the bundle. + type: string + signerName: + description: |- + Select all ClusterTrustBundles that match this signer name. + Mutually-exclusive with name. The contents of all selected + ClusterTrustBundles will be unified and deduplicated. + type: string configMap: description: configMap information about the configMap data to project type: object properties: items: - description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -1408,18 +2406,32 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean + x-kubernetes-map-type: atomic downwardAPI: description: downwardAPI information about the downwardAPI data to project type: object @@ -1445,15 +2457,24 @@ spec: fieldPath: description: Path of the field to select in the specified API version. type: string + x-kubernetes-map-type: atomic mode: - description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' type: string resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. type: object required: - resource @@ -1471,12 +2492,20 @@ spec: resource: description: 'Required: resource to select' type: string + x-kubernetes-map-type: atomic secret: description: secret information about the secret data to project type: object properties: items: - description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -1489,18 +2518,32 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string optional: description: optional field specify whether the Secret or its key must be defined type: boolean + x-kubernetes-map-type: atomic serviceAccountToken: description: serviceAccountToken is information about the serviceAccountToken data to project type: object @@ -1508,14 +2551,26 @@ spec: - path properties: audience: - description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + description: |- + audience is the intended audience of the token. A recipient of a token + must identify itself with an identifier specified in the audience of the + token, and otherwise should reject the token. The audience defaults to the + identifier of the apiserver. type: string expirationSeconds: - description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + description: |- + expirationSeconds is the requested duration of validity of the service + account token. As the token approaches expiration, the kubelet volume + plugin will proactively rotate the service account token. The kubelet will + start trying to rotate the token if the token is older than 80 percent of + its time to live or if the token is older than 24 hours.Defaults to 1 hour + and must be at least 10 minutes. type: integer format: int64 path: - description: path is the path relative to the mount point of the file to project the token into. + description: |- + path is the path relative to the mount point of the file to project the + token into. type: string quobyte: description: quobyte represents a Quobyte mount on the host that shares a pod's lifetime @@ -1525,59 +2580,101 @@ spec: - volume properties: group: - description: group to map volume access to Default is no group + description: |- + group to map volume access to + Default is no group type: string readOnly: - description: readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. + description: |- + readOnly here will force the Quobyte volume to be mounted with read-only permissions. + Defaults to false. type: boolean registry: - description: registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes + description: |- + registry represents a single or multiple Quobyte Registry services + specified as a string as host:port pair (multiple entries are separated with commas) + which acts as the central registry for volumes type: string tenant: - description: tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin + description: |- + tenant owning the given Quobyte volume in the Backend + Used with dynamically provisioned Quobyte volumes, value is set by the plugin type: string user: - description: user to map volume access to Defaults to serivceaccount user + description: |- + user to map volume access to + Defaults to serivceaccount user type: string volume: description: volume is a string that references an already created Quobyte volume by name. type: string rbd: - description: 'rbd represents a Rados Block Device mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md' + description: |- + rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. + More info: https://examples.k8s.io/volumes/rbd/README.md type: object required: - image - monitors properties: fsType: - description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine' + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd + TODO: how do we prevent errors in the filesystem from compromising the machine type: string image: - description: 'image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + image is the rados image name. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string keyring: - description: 'keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + keyring is the path to key ring for RBDUser. + Default is /etc/ceph/keyring. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string monitors: - description: 'monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + monitors is a collection of Ceph monitors. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: array items: type: string pool: - description: 'pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + pool is the rados pool name. + Default is rbd. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string readOnly: - description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: boolean secretRef: - description: 'secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + secretRef is name of the authentication secret for RBDUser. If provided + overrides keyring. + Default is nil. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic user: - description: 'user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + description: |- + user is the rados user name. + Default is admin. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it type: string scaleIO: description: scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. @@ -1588,7 +2685,11 @@ spec: - system properties: fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". + Default is "xfs". type: string gateway: description: gateway is the host address of the ScaleIO API Gateway. @@ -1597,20 +2698,30 @@ spec: description: protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. type: string readOnly: - description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretRef: - description: secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. + description: |- + secretRef references to the secret for ScaleIO user and other + sensitive information. If this is not provided, Login operation will fail. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic sslEnabled: description: sslEnabled Flag enable/disable SSL communication with Gateway, default false type: boolean storageMode: - description: storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. + description: |- + storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. + Default is ThinProvisioned. type: string storagePool: description: storagePool is the ScaleIO Storage Pool associated with the protection domain. @@ -1619,18 +2730,36 @@ spec: description: system is the name of the storage system as configured in ScaleIO. type: string volumeName: - description: volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source. + description: |- + volumeName is the name of a volume already created in the ScaleIO system + that is associated with this volume source. type: string secret: - description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + description: |- + secret represents a secret that should populate this volume. + More info: https://kubernetes.io/docs/concepts/storage/volumes#secret type: object properties: defaultMode: - description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + defaultMode is Optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values + for mode bits. Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 items: - description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + description: |- + items If unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. type: array items: description: Maps a string key to a path within a volume. @@ -1643,40 +2772,71 @@ spec: description: key is the key to project. type: string mode: - description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. type: integer format: int32 path: - description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. type: string optional: description: optional field specify whether the Secret or its keys must be defined type: boolean secretName: - description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + description: |- + secretName is the name of the secret in the pod's namespace to use. + More info: https://kubernetes.io/docs/concepts/storage/volumes#secret type: string storageos: description: storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. type: object properties: fsType: - description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: - description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. type: boolean secretRef: - description: secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. + description: |- + secretRef specifies the secret to use for obtaining the StorageOS API + credentials. If not specified, default values will be attempted. type: object properties: name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, uid? type: string + x-kubernetes-map-type: atomic volumeName: - description: volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. + description: |- + volumeName is the human-readable name of the StorageOS volume. Volume + names are only unique within a namespace. type: string volumeNamespace: - description: volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. + description: |- + volumeNamespace specifies the scope of the volume within StorageOS. If no + namespace is specified then the Pod's namespace will be used. This allows the + Kubernetes name scoping to be mirrored within StorageOS for tighter integration. + Set VolumeName to any name to override the default behaviour. + Set to "default" if you are not using namespaces within StorageOS. + Namespaces that do not pre-exist within StorageOS will be created. type: string vsphereVolume: description: vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine @@ -1685,7 +2845,10 @@ spec: - volumePath properties: fsType: - description: fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + description: |- + fsType is filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string storagePolicyID: description: storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. @@ -1697,7 +2860,9 @@ spec: description: volumePath is the path that identifies vSphere volume vmdk type: string installPlanApproval: - description: Approval is the user approval policy for an InstallPlan. It must be one of "Automatic" or "Manual". + description: |- + Approval is the user approval policy for an InstallPlan. + It must be one of "Automatic" or "Manual". type: string name: type: string @@ -1713,7 +2878,9 @@ spec: - lastUpdated properties: catalogHealth: - description: CatalogHealth contains the Subscription's view of its relevant CatalogSources' status. It is used to determine SubscriptionStatusConditions related to CatalogSources. + description: |- + CatalogHealth contains the Subscription's view of its relevant CatalogSources' status. + It is used to determine SubscriptionStatusConditions related to CatalogSources. type: array items: description: SubscriptionCatalogHealth describes the health of a CatalogSource the Subscription knows about. @@ -1731,23 +2898,42 @@ spec: description: API version of the referent. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic healthy: description: Healthy is true if the CatalogSource is healthy; false otherwise. type: boolean @@ -1799,28 +2985,49 @@ spec: description: API version of the referent. type: string fieldPath: - description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + TODO: this design is not final and this field is subject to change in the future. type: string kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds type: string name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names type: string namespace: - description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ type: string resourceVersion: - description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency type: string uid: - description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids type: string + x-kubernetes-map-type: atomic installedCSV: description: InstalledCSV is the CSV currently installed by the Subscription. type: string installplan: - description: 'Install is a reference to the latest InstallPlan generated for the Subscription. DEPRECATED: InstallPlanRef' + description: |- + Install is a reference to the latest InstallPlan generated for the Subscription. + DEPRECATED: InstallPlanRef type: object required: - apiVersion @@ -1835,7 +3042,10 @@ spec: name: type: string uuid: - description: UID is a type that holds unique ID values, including UUIDs. Because we don't ONLY use UUIDs, this is an alias to string. Being a type captures intent and helps make sure that UIDs and names do not get conflated. + description: |- + UID is a type that holds unique ID values, including UUIDs. Because we + don't ONLY use UUIDs, this is an alias to string. Being a type captures + intent and helps make sure that UIDs and names do not get conflated. type: string lastUpdated: description: LastUpdated represents the last time that the Subscription status was updated. diff --git a/crds/zz_defs.go b/crds/zz_defs.go index 45e787bc6..8d7b58d40 100644 --- a/crds/zz_defs.go +++ b/crds/zz_defs.go @@ -85,7 +85,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _operatorsCoreosCom_catalogsourcesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\xdc\x36\xb2\xef\xff\xfe\x14\x5d\xba\xa7\x4a\x52\x76\x86\xb2\xb3\xa7\xf6\x9e\xd5\xe6\x51\x5a\xd9\xf1\x55\x25\xb6\x55\x96\x93\x53\xf7\x58\xbe\xd7\x18\xb2\x67\x06\x11\x09\x30\x00\x28\x69\xb2\xbb\xdf\xfd\x54\x37\x00\x92\xf3\xe6\x8c\xe5\xd8\xae\x43\xfe\x91\x68\x48\x3c\x1b\x8d\xee\x5f\x3f\x00\x8b\x52\xfe\x82\xc6\x4a\xad\x4e\x41\x94\x12\xef\x1d\x2a\xfa\x65\x93\x9b\xff\xb0\x89\xd4\x27\xb7\x4f\x1e\xdd\x48\x95\x9d\xc2\x79\x65\x9d\x2e\x5e\xa3\xd5\x95\x49\xf1\x29\x8e\xa5\x92\x4e\x6a\xf5\xa8\x40\x27\x32\xe1\xc4\xe9\x23\x00\xa1\x94\x76\x82\x5e\x5b\xfa\x09\x90\x6a\xe5\x8c\xce\x73\x34\xc3\x09\xaa\xe4\xa6\x1a\xe1\xa8\x92\x79\x86\x86\x1b\x8f\x5d\xdf\x3e\x4e\xfe\x9a\x3c\x7e\x04\x90\x1a\xe4\xea\x6f\x64\x81\xd6\x89\xa2\x3c\x05\x55\xe5\xf9\x23\x00\x25\x0a\x3c\x85\x54\x38\x91\xeb\x89\x1f\x84\x4d\x74\x89\x46\x38\x6d\x6c\x92\x6a\x83\x9a\xfe\x57\x3c\xb2\x25\xa6\xd4\xfb\xc4\xe8\xaa\x3c\x85\x95\x65\x7c\x7b\x71\x90\xc2\xe1\x44\x1b\x19\x7f\x03\x0c\x41\xe7\x05\xff\x1d\x26\xef\xbb\xbd\xe2\x6e\xf9\x7d\x2e\xad\xfb\x71\xf9\xdb\x4f\xd2\x3a\xfe\x5e\xe6\x95\x11\xf9\xe2\x80\xf9\x93\x9d\x6a\xe3\x5e\x36\xdd\x53\x77\xa9\x70\xd6\xa4\xfe\xb3\x54\x93\x2a\x17\x66\xa1\xee\x23\x00\x9b\xea\x12\x4f\x81\xab\x96\x22\xc5\xec\x11\x40\x20\x61\x68\x6a\x08\x22\xcb\x78\x59\x44\x7e\x69\xa4\x72\x68\xce\x75\x5e\x15\xaa\xee\x8a\xca\x64\x68\x53\x23\x4b\xc7\xa4\x7f\x33\x45\x28\x0d\x3a\x37\x63\x92\x80\x1e\x83\x9b\x62\xec\xbb\xae\x05\xf0\xab\xd5\xea\x52\xb8\xe9\x29\x24\x44\xe1\x24\x93\xb6\xcc\xc5\x8c\x46\xd3\x2a\xe5\x97\xe9\xa9\xff\xd6\x7a\xef\x66\x34\x74\xeb\x8c\x54\x93\x4d\x43\xa1\x72\xdd\xc7\xe0\x49\xf3\x66\x56\x2e\x0f\x61\xe1\x65\xd7\xfe\xcb\x6a\x94\x4b\x3b\x45\xd3\x7d\x10\x75\x95\xa5\x31\x5c\xae\xf8\xb2\x66\x20\xad\x46\xe3\x86\x4a\x96\x36\xc3\x52\x07\x67\x93\xe5\x39\x66\xc2\xc5\x97\xbe\xd0\xed\x13\x91\x97\x53\xf1\x24\xbc\xb4\xe9\x14\x0b\xd1\xf0\x83\x2e\x51\x9d\x5d\x5e\xfc\xf2\xe7\xab\x85\x0f\x30\x4f\x9d\x39\x3e\x07\x69\x41\x80\xc1\x52\x5b\xe9\xb4\x99\x11\xb5\xce\xaf\x7e\xb1\x03\x38\x7f\xfd\xd4\x0e\x40\xa8\xac\xde\x78\x50\x8a\xf4\x46\x4c\xd0\x26\x4b\x63\xd5\xa3\x5f\x31\x75\xad\xd7\x06\x7f\xab\xa4\xc1\xac\x3d\x0a\x22\x4f\xa4\xc9\xc2\x6b\xa2\x7f\xeb\x55\x69\xa8\x4f\xd7\xda\xc8\xfe\x69\x49\xb9\xb9\xf7\x0b\x33\x3c\x24\x32\xf8\x72\x90\x91\x80\x43\xcb\x2c\x10\xf6\x18\x66\x81\x76\x9e\x35\xa4\xa5\xf9\x1b\xb4\xa8\xbc\xc8\xa3\xd7\x42\x85\x39\x25\x70\x85\x86\x2a\xd2\x76\xaf\xf2\x8c\x24\xe1\x2d\x1a\x07\x06\x53\x3d\x51\xf2\xf7\xba\x35\x0b\x4e\x73\x37\xb9\x70\x68\x1d\xf0\xae\x55\x22\x87\x5b\x91\x57\xe8\x49\x59\x88\x19\x18\xa4\x76\xa1\x52\xad\x16\xb8\x88\x4d\xe0\x85\x36\x08\x52\x8d\xf5\x29\x4c\x9d\x2b\xed\xe9\xc9\xc9\x44\xba\x28\xc3\x53\x5d\x14\x95\x92\x6e\x76\xc2\xe2\x58\x8e\x2a\x12\x87\x27\x19\xde\x62\x7e\x62\xe5\x64\x28\x4c\x3a\x95\x0e\x53\x57\x19\x3c\x11\xa5\x1c\xf2\x60\x15\xcb\xf1\xa4\xc8\xfe\x97\x09\x52\xdf\x1e\x2e\x90\x6f\x25\x33\x43\x14\x9b\x1b\x69\x4d\xc2\xd3\x73\x91\xaf\xee\xe7\xd2\x90\x94\x5e\x11\x55\x5e\x3f\xbb\x7a\x03\x71\x00\x9e\xec\x9e\xc2\x4d\x51\xdb\x10\x9b\x08\x25\xd5\x18\x8d\x2f\x39\x36\xba\xe0\x56\x50\x65\xa5\x96\xca\xf9\x2d\x9d\x4b\x54\x0e\x6c\x35\x2a\xa4\xb3\xcc\x73\x68\x1d\xad\x43\x02\xe7\xac\xc2\x60\x84\x50\x95\xb4\x93\xb2\x04\x2e\x14\x9c\x8b\x02\xf3\x73\x61\xf1\xa3\x93\x9a\x28\x6a\x87\x44\xbe\xee\xc4\x6e\x6b\xe0\xe5\x0a\x4b\x7b\x0c\x20\x6a\xc8\x4e\x85\xd7\x6d\x4a\xf0\x3b\x70\x95\x04\x86\x0d\x7b\x91\x1e\x91\x65\x06\xed\x8a\x0f\x4b\x1b\xd2\x17\xf4\x7c\x32\xd5\x96\xd6\x4f\x38\x78\xf5\xd3\x0b\x48\x85\x82\xca\x22\x6d\x9e\x54\x2b\x45\x0c\xe1\x34\x08\xd2\x65\x43\xbc\x97\x96\x19\xc8\xe0\x44\x5a\x67\x66\x09\xfc\xa0\x4d\x21\xdc\x29\x7c\x13\x5f\x0d\xb9\x39\x6d\x40\x96\xdf\x9d\x7e\x53\x6a\xe3\xbe\x83\x57\x2a\x9f\x51\xa3\x19\xdc\x4d\x51\xc1\x55\x3d\x37\xf8\xb6\xf5\xe3\xb9\x29\xd3\x04\x2e\x26\x4a\x9b\x58\x92\xb8\xea\xa2\x10\x13\x84\xb1\xc4\x9c\xf9\xda\xa2\x4b\x16\x57\x70\xe3\x2a\x82\x87\x4b\x63\x39\x79\x21\xca\xad\xa4\x39\x8f\x25\xa9\x2f\xea\xbe\xad\xbc\x9b\x8f\x4e\x33\x2b\xd3\x94\xe8\x4f\x91\xde\x80\x08\xbd\x14\xa2\x1c\x5a\xde\x36\x2d\x32\x75\xa3\xc0\x79\x6c\x80\xe8\xd7\xbc\xbe\x08\x92\x2b\xd9\x75\xda\xed\x99\xed\x5c\xb7\x81\x21\x5b\x89\xf6\x62\x95\x16\xe9\xd0\xc7\xc4\x94\xe9\xa5\xce\xfc\xb4\xb7\xf6\xf2\xbc\x5d\x1a\xf0\xbe\xd4\x16\x2d\x64\x72\x3c\x46\x43\x72\x47\xdf\xa2\x31\x32\x43\x0b\x63\x6d\x78\xbd\x4a\x9d\xf1\x9e\xac\xd7\x6f\x4e\xd5\x5e\xea\xac\xeb\xc2\x50\xd7\xac\x30\x3c\x33\x06\x36\x5c\x3b\xdd\x95\xbb\x1d\xb6\x6c\x5e\x7a\xc4\x98\xe1\xff\x6c\xf5\xd7\x05\x7a\x9c\x85\xc2\x91\x53\x03\xa2\x0a\xa2\xe3\xd0\xd2\xf4\x0f\x6d\xdd\xe6\xaa\xe1\x76\x18\x72\x97\x61\xd3\xa3\x74\x86\x67\x5b\x86\xbf\x34\x85\xa7\xfc\x63\x84\x96\xab\xd7\x43\x65\x0d\x9e\x55\x39\x8b\x9a\x2a\x9f\x5f\xd1\x75\xf3\xe8\x38\x97\xae\xf3\xf1\xe5\x70\x8c\xc6\x60\xf6\xb4\x22\xfe\xbd\xaa\x47\x15\x84\x94\x7f\xfd\xec\x1e\xd3\x6a\xdd\x1e\x5b\x3b\x75\x02\xc5\x61\x9a\x68\xe0\x4e\xe6\x79\xe8\x8e\x04\x4a\xfc\x40\xf3\x65\x1c\x43\xe4\xb1\x5e\x48\x5b\xe1\xa4\x1d\xcf\x98\x1c\x35\xc1\xf0\x9e\x74\x36\x5b\x2c\xcc\xf1\x72\x2c\x31\x83\xd1\x2c\xa8\x6b\x12\x9e\x03\x18\x55\x0e\xa4\x63\x5d\x9e\x4e\xb5\xb6\x08\xc2\xd3\x9d\xdb\xbd\x95\x9a\x91\x12\x68\x85\x24\x7f\x0a\x52\xc8\x61\xe3\xb4\x9a\x4f\x78\xe4\x4d\x35\x69\xa1\x20\x89\x5f\xd3\x2a\xb2\x23\x35\x73\x27\xdd\x94\x7f\x4c\x08\x72\x13\x0a\xb3\x55\x41\x8d\xde\xa1\x9c\x4c\x9d\x1d\x80\x4c\x30\xe1\xd5\x45\x91\x4e\x5b\xcd\x16\x88\xce\x82\xc8\xf3\x38\x84\x36\x4b\x78\xbd\x59\x10\x44\x81\xa3\x1a\xc3\x04\xbc\x31\xa8\xf5\xea\xe2\xaa\xad\x24\xd7\x00\xd0\xa5\xc9\xf1\x00\x52\x5d\x94\x95\x23\x9a\xd0\x18\x47\x33\x90\x8e\x70\xb6\xc7\x4b\x46\x57\x13\x3f\x13\xcc\x43\xc7\x11\xac\x7a\xcd\x44\xc2\x81\x6c\x44\x35\x81\x03\x3f\xb9\x83\x88\x3f\xa9\x39\xe9\x27\xc1\xf3\x2b\x84\x4b\xa7\x01\x02\xa7\xda\x18\xb4\xa5\x56\x5c\x93\xbf\x3c\x6b\xc6\xf6\xb7\xba\xd2\x91\x3d\x6e\x88\x39\x95\x93\x69\xa4\xa5\x30\xc8\xef\xe6\xd7\x60\xd3\x1e\x69\xf6\x89\x30\x66\xce\x96\x5c\xf5\x48\x87\xc5\x96\x5d\xb2\xc4\xda\x67\x0a\xb0\x28\xdd\xac\xc5\x13\xad\xd5\x73\x68\x8a\x9a\x06\xbc\xc0\xbc\x5d\xad\x9f\x9f\x2c\xca\x5c\xa6\xd2\x05\x0e\x81\xc7\x70\xc4\x2c\x22\x1d\x89\x32\x50\x7a\xa8\xcb\xe3\x04\xce\xd8\x7d\xd1\xa1\x03\xa5\xeb\xf6\x43\x43\xd4\xa9\xd5\x4d\x5b\x5b\xe7\xd6\x51\xa8\xf8\x67\x3d\xa6\x5b\x7e\x86\x61\xfc\xa8\xd2\x45\x94\xb7\xba\xb8\xa7\xc9\xd6\xa2\x5d\xc5\x5b\x2c\x1d\xc7\xd0\xa5\xf4\xe2\x52\x7b\x96\xb6\x98\x63\x4a\x26\x29\xd1\x7e\x00\xc2\x5a\x9d\x4a\x42\xf9\x0d\xd3\xce\x73\xba\x9f\xc9\x76\xda\xc3\xae\xf4\x87\x9d\xe7\x4f\xcf\xe2\xc6\xeb\x5a\x6f\x89\x1a\xb9\x24\xf0\x3b\x5e\xa0\xca\x9c\xc0\x1a\xcd\xf8\xeb\xa1\x85\x5c\x8c\x30\xb7\xdd\x88\x00\x3b\xed\xda\xe6\xe9\xb8\x7f\xd7\x4e\x68\xed\x44\x82\x8d\x59\x2f\x3c\x09\x6d\xb2\xcd\x84\x54\x36\xd8\xcf\x03\x10\x70\x83\x33\x6f\x6a\x93\x05\x1f\x1d\x17\x5c\xd8\xa0\x57\x37\xc4\x1c\x37\x38\xe3\x42\xc1\xee\xde\x61\xb8\x3b\x33\x87\x7f\x76\xd9\xa6\xcd\x33\xa4\x81\xee\x58\x23\x4e\x7a\x87\x6a\xbb\xf3\xaf\x7f\x6e\x70\x23\xf2\x5a\xf5\x2c\x41\x12\xe6\x49\x5e\x0f\x5e\x24\xd6\x5f\x71\x8d\x45\x59\xe6\x12\xd9\x9e\xdf\xb1\x9b\x8d\x56\xc0\xa6\x27\x52\xef\x83\xe6\xf5\xba\x76\x68\x78\x86\x3c\xb4\x9e\xf9\x68\xa7\x4f\x65\xe9\xed\x5b\x8b\xbc\x71\xa3\xe7\xe7\x17\x91\xcb\xc6\xd5\x66\x59\xcf\x5e\xa8\x01\xbc\xd4\x8e\xfe\xf7\x8c\x2c\x61\x3b\x80\xa7\x1a\xed\x4b\xed\xf8\x67\x02\xcf\x9d\xe7\xf5\x9f\x3a\x4a\xb6\x07\x20\x90\x1f\xef\x07\x91\xe7\x4c\x79\x99\x42\xd3\x6f\xfb\x8c\x6c\x02\x17\x1e\xb6\xd4\x1b\x57\x5a\xb8\x50\x04\x0e\x03\x19\xd8\x8b\xc7\x65\x43\x13\x45\x65\xd9\xc9\xa3\xb4\x1a\x32\x06\x58\xd9\x86\xa7\x1e\xb5\xd3\xa6\xdf\x86\xe6\xd6\x37\xf5\x9c\x7d\x0d\x3f\xad\xad\x3c\x15\xb7\x0c\xe9\xa4\x9a\xe4\x35\x78\x1b\xc0\xdd\x54\xa6\x53\x8f\xba\x47\xe8\x5d\x83\xa5\x41\x52\x58\xc2\x92\xa8\xa2\x37\x13\x34\x04\x76\x65\x6c\xcf\x3b\x26\x73\x91\x62\x06\x19\x43\x4b\xef\x64\x13\x0e\x27\x32\x85\x02\xcd\x04\xa1\x24\x4d\xb2\xdf\xea\xef\x26\xd8\xfd\xb3\xb3\x78\x6f\x77\xb8\x13\xbb\xb1\x8a\xfc\x81\xb0\xee\x1f\xa4\x1d\x19\x57\xf7\xda\xb1\xd7\x8e\x0b\x4f\xaf\x1d\xeb\xa7\xd7\x8e\x5b\x9e\x5e\x3b\xf6\xda\xf1\xa3\x6b\x47\x6f\xcb\xee\x61\x3c\xff\xa7\x77\x71\x2c\x5a\xcb\xac\x69\x63\x98\x6e\xde\x6c\x26\x7d\x73\x15\x04\xce\x1b\x36\xb5\xa5\x0f\x92\x18\xa1\x26\x08\x4f\x86\x4f\x1e\x3f\xde\xc5\xa8\x0e\x0b\xd9\xa9\xc6\x38\x44\x7a\xa4\x72\x7f\xfe\x7a\x63\x8d\x75\xfe\xb7\x07\xf0\x9a\x06\x1e\xaf\x1d\x79\x73\xd8\x61\x8d\xe3\x93\xa5\x93\xd2\x0e\x0a\x74\x20\xdc\x9c\xab\x48\x16\x38\xa8\x43\x05\xcc\xf0\x21\x4a\x19\x3d\xb0\x19\x68\x15\xfc\x78\x44\xfc\x64\xbf\x11\xa4\x28\x7c\x48\x6d\x84\xf5\x28\x74\x41\xbd\x4a\xe5\xe2\x76\xa1\x21\x60\xa4\x0a\x1c\x61\x32\x49\x20\xab\xb8\x9a\x50\x21\x6c\x7a\xec\x47\x6b\x67\xd6\x61\xc1\x9e\x5c\x6d\xf8\x7f\x34\x6c\x67\x66\x54\x18\x6f\x51\xb9\x4a\xe4\xf9\x0c\xf0\x56\xa6\xae\x9e\x1f\x47\x6d\xa5\xf3\xce\xf6\x6e\x2e\xc2\x4e\xd0\xa1\x3b\x5c\x18\x2e\x71\xb0\xdd\x52\x67\x17\x6d\xbf\xd4\x76\x97\x3d\xb9\xa0\x0b\xfd\x4c\x92\xb5\x60\xd5\x51\xbb\xde\x07\xce\x7f\x32\x73\xbd\x7a\xbd\xdd\xe5\x0a\x3b\x4b\xb2\x1d\xa4\xd7\x22\x2c\xad\xf2\x9c\x18\xc3\x7b\x61\x97\x27\xb0\xc2\x3b\xea\xa7\x34\xc7\xcc\xde\xf1\xee\x5d\xcc\x67\x2f\x9f\x12\x55\xa8\xcc\x1b\x5d\xea\x5c\x4f\x66\x6d\x4a\xfb\xf4\x22\x59\x94\xd1\x39\x2e\xc0\x56\xa3\x00\x1a\x88\xfd\x5e\x2e\x2c\x4d\xef\xf9\xeb\x3d\x7f\xbd\x6d\xb3\xf4\xf4\xb6\x4d\xfd\xf4\xb6\xcd\x96\xa7\xb7\x6d\x7a\xdb\xa6\xf7\xfc\x41\xaf\x1d\x37\xd0\xa4\xd7\x8e\xd0\x6b\xc7\xb5\xf3\xea\xb5\xe3\x46\xf2\xf4\xda\xb1\xd7\x8e\xab\x9e\x52\x67\x1f\x90\xe8\x58\xea\x6c\x43\x9e\xa3\xf7\xfa\xa4\x7a\x98\xeb\x54\xb8\x90\x97\x4f\x55\x82\x9f\xcf\x8a\xc2\x3b\xa2\x06\xf0\xbb\x56\xe8\x93\xd7\x68\x6d\xd8\x9d\xa4\xdd\x14\x0d\x15\x3f\xb2\xc7\x1b\x13\x9b\xfa\x3c\xc9\x3e\x4f\xf2\xb3\xcf\x93\x9c\x0a\xeb\xd7\xd5\x0b\xa5\xf5\x69\x93\xad\x0d\xf9\x06\x4d\xf1\x85\x66\x4d\x12\xbb\x84\xe5\xe6\x13\x4f\xcd\x92\xfa\x99\x67\x21\x5e\x80\xd9\xe5\xfc\x7c\x03\x5e\xe6\x49\x89\x2c\xc3\x0c\x4a\x34\x43\xcf\x22\x1a\xc6\x52\x65\x2b\xe6\x1a\xe9\xf3\x49\xb3\x1f\xe7\xe7\xf1\x09\x53\x20\xe7\x07\xb2\x87\xcf\xb5\xed\x38\x9e\x93\xf0\x9f\x45\x42\xe4\xae\xa8\x7e\x08\x2e\x38\x79\x7f\xec\x88\xeb\x77\x87\xe6\x0c\xa8\xa3\x4b\x78\x7f\xbb\x92\x61\xf9\x6f\x15\x9a\x19\x9f\xff\x68\x00\x6b\x7d\xb6\x2e\xc4\xc8\xa4\x85\x54\x58\xaf\x29\x76\x35\x2d\x77\x34\xa3\xf6\xb3\x53\xf6\xf7\x44\xc3\x22\x5d\x16\x9b\xf2\x36\x69\xb4\xc1\x3d\xcd\x56\x1a\xe1\x2b\xa2\x00\x8d\xf7\x7f\xa7\xf1\xec\x0b\xdd\xf6\x02\x6e\x2b\x99\xe2\x33\x36\xce\x61\x7f\x03\x1d\xf6\x36\xd2\x61\x2f\x43\x1d\xf6\x35\xd6\xe1\x03\x0c\x76\xd8\xcf\x68\x87\x45\x56\xa0\x15\x0a\x28\xeb\xe3\xd8\xef\xf0\x21\x26\x2a\x7c\x80\x1d\x0f\x8b\x53\xad\xd9\xd4\x7c\x2c\xa3\x9e\x79\x7d\xce\xae\xff\xa3\x89\xb5\x9f\x4d\x0f\x8b\xa4\x0a\xc6\xb0\x64\x83\xf6\x0b\xb1\xf0\xff\x10\x73\x1b\x3e\xc8\xe4\x86\xfd\xcd\x6e\xd8\x9f\x33\x58\xd5\xfd\xc4\xe1\xd4\x0f\x55\x98\xbe\x15\xaf\x22\xf8\x0c\xee\x18\xfe\x41\x9a\x80\xd7\xe5\x5f\x50\x0a\x69\x2c\xe1\xbb\xe0\x33\x69\x7f\x0b\xd6\x79\xbb\x99\xc2\x1f\x21\x26\x51\x7d\x2b\x72\xd2\x3d\x3e\x8f\x23\xd8\x45\xd4\xfa\xa2\x9a\x1e\xc0\xdd\x94\xac\x4d\x92\x52\xf5\x79\xe7\x83\x1b\x9c\x1d\x0c\x96\x18\xe9\xe0\x42\x1d\x78\x1d\xb5\xc4\x3a\xb5\x42\xd3\x2a\x9f\xc1\x01\x7f\x3b\x78\x68\xcd\xbe\x87\xe2\x6a\x5f\xa1\xb2\xaf\x5e\xd8\x83\x4b\x54\xbc\xd6\xe5\xe1\xc1\xa6\xd7\x22\x3e\xb0\x11\x7b\xb1\x8d\x82\xe1\x54\x8b\x96\x72\xa9\xb3\x46\x98\xc7\xf8\x7d\x16\x8d\xdf\x4a\x85\x9b\x2e\xe2\x99\xf3\xd0\x98\x57\x52\xcb\x29\x4d\x61\xe1\xb5\x42\xcb\xc0\x0e\x6b\x17\x51\xab\x32\x97\x4d\x7c\x3a\x48\xa3\xed\x54\xb6\x98\x20\xd2\xd4\x60\x8c\x58\xa0\x50\x16\x0e\xa2\xef\xe9\xd0\x36\x25\x0e\x92\xe6\x74\x5f\xdd\xe2\xd1\x3f\xfe\x75\x3c\x77\xa2\xaf\x69\xb0\x47\xda\x3d\xd2\xee\x91\xf6\x0e\xb5\x7a\xa4\xbd\xfe\xe9\x91\xf6\x0e\x4f\x8f\xb4\x7b\xa4\xbd\xa9\xe3\x1e\x69\xf7\x48\x7b\x7b\xe7\xfb\x21\xed\x7d\xf3\x84\xda\xb8\x37\x04\xe7\xfc\x45\x66\xc2\xc9\xb4\xc9\x21\x8a\xa5\xfc\x5f\x0f\x8b\xb7\xdb\x58\x7a\x35\xda\x6e\x23\xf2\x25\xdb\x22\xd9\x02\xad\x6b\xf0\xbd\x54\x73\x33\xea\xfe\xbc\x72\xa1\xf6\xe0\x8d\x56\x40\x61\x4f\xe6\x78\x13\x43\xe1\xe1\xe2\xbf\x11\x36\x71\xf2\x0c\x8e\x62\xc4\xe5\x98\x88\xaf\xb4\x9b\xff\xa8\x9c\x1c\x36\x25\xea\x18\x0c\x87\x17\xe7\xce\xdb\xcc\x85\x25\xea\xa8\x7b\x1d\x29\x6e\xd6\x93\x44\x08\x9a\xb9\x31\x48\x1b\xae\x37\xe4\x6c\x09\x53\x29\x45\xad\x6a\x15\xc3\xc7\x5e\xe6\xf8\xfb\xf8\x02\xe7\x79\xb0\xc4\xe3\x61\xc4\xd4\x50\xa9\x15\xef\x14\xce\x5f\x81\x18\x52\xf9\xb5\x0a\x11\x51\x7a\x13\xa3\xbe\x91\x29\x79\x46\xb2\xee\x3d\x81\x67\xcc\x87\xed\x86\xa5\x65\xfa\x88\x3c\xd7\x77\xbb\x88\xa4\x3f\xea\x58\xd4\xdd\xce\xc7\xa2\x16\xe2\x77\xfd\xa9\xa8\xff\x21\xa7\xa2\xf8\xa3\xdf\x42\x0f\x7e\x3c\x0a\xfe\x33\x5c\x40\x68\x90\x49\x55\x54\xb9\x93\x65\x93\x2b\x65\x7d\x57\xb9\x47\x99\xe3\x90\x79\x32\xcf\x97\xd4\x9b\x48\xa7\x8b\xfc\xc9\xed\x71\x6e\x95\xe5\x4d\x1b\xb2\x3b\x44\x9e\x87\x33\x45\x11\x92\xfa\x14\x16\xf9\xa9\x33\x13\x9e\x86\x3b\x5b\x6b\x6b\x86\x85\xcc\x11\xc9\xc2\x9c\x16\x94\xa4\xda\x06\x21\xea\x8d\xa2\x5b\x8c\xaa\x77\x22\x6f\x51\x35\x92\xf4\xc8\x1e\x1f\x47\x1d\xfe\xa0\x12\xfe\xa3\x48\xe8\x6f\x5a\x92\xf4\xbb\x2e\x32\x9a\x27\x54\x4b\xe9\x86\x7c\x8d\x8c\xfe\x94\x29\x18\xbb\xc4\xf9\x77\xf3\x31\xec\x11\xdf\xff\x03\x63\xfb\x5f\xce\xc9\xb2\x4f\xec\x61\xfc\x14\xb9\xf5\x9f\xbd\x57\xb1\x4f\xae\x6f\x9e\x0f\x4d\xae\xff\xe8\x9e\xc3\x4f\x9b\x63\xff\x05\x78\x0b\x3f\x65\x8e\x7d\xef\x21\xdc\xb8\x28\x9f\x5b\xea\xfb\xfc\xb3\x97\x47\xb0\xf7\x06\xee\xad\x85\x77\x54\x38\x1f\xea\x05\xdc\x91\x23\xf6\x8c\xb3\xf7\x31\xf6\x3f\x26\xc6\xde\x23\xde\x8e\x4f\x8f\x78\xd7\x12\xa5\x47\xbc\xd0\x23\xde\x6d\xd3\xeb\x11\xef\x46\xf2\xf4\x88\x77\xe3\xa2\xf4\x88\xb7\x47\xbc\xf0\xa5\x21\xde\x7d\x6e\xe9\xea\x63\xdd\x1f\x14\xeb\xde\x55\x5a\xec\x24\x23\x76\xe4\x83\x9d\x63\xdb\x7d\x5c\xfb\x73\x89\x6b\x77\x3e\xf0\xaf\x9c\xfc\xd0\x43\xff\xed\xb5\x5a\x77\xf2\x5f\xdc\x6a\x99\x41\x59\xb9\x70\x9e\xba\x3f\xfd\xff\x10\xa7\xff\xe7\x28\xdf\x5f\x01\xd0\xe9\x0a\x80\x75\x34\xeb\xef\x01\xe8\xef\x01\x78\xe0\x20\x74\x7f\x0f\x40\x7f\x0f\x40\x7f\x0f\x40\x7c\xfa\xd3\x49\xd0\x9f\x4e\xea\xf4\xf4\xa7\x93\xd6\x3f\xfd\xe9\xa4\xcf\xd6\xfb\x0a\xfd\xe9\xa4\xcf\xdb\x13\x0b\xfd\xe9\xa4\xde\x3b\xdb\x71\xa1\xbe\xc0\xd3\x49\xfd\x3d\x00\x9f\x6b\x8e\x02\xf4\x48\xbb\x47\xda\x3d\xd2\xee\x91\xf6\xe6\xa7\x47\xda\x3b\x3c\x3d\xd2\xee\x91\xf6\xa6\x8e\x7b\xa4\xdd\x23\xed\xed\x9d\xf7\xf7\x00\x7c\x41\xb9\x11\xd0\xdf\x03\xd0\xe7\x4b\xf4\xf7\x00\xfc\xcf\xbd\x07\x60\x2e\x76\xff\xe9\x2e\x03\xd8\x7d\x18\xfd\x8d\x00\xfd\x8d\x00\xfd\x8d\x00\xfd\x8d\x00\xf1\xe9\x6f\x04\xf0\xcf\xe7\xe4\x6b\xec\xcf\x47\xad\x25\x4a\x7f\x3e\x0a\xfa\xf3\x51\xdb\xa6\xf7\x05\xf8\x0d\xfb\xf3\x51\x9f\xa1\xaf\xb0\x3f\x1f\xd5\xfb\x05\x17\x17\xe7\x0b\x39\x1f\xd5\xdf\x08\xf0\x39\x46\xdb\x7b\xc4\xdb\xf1\xe9\x11\xef\x5a\xa2\xf4\x88\x17\x7a\xc4\xbb\x6d\x7a\x3d\xe2\xdd\x48\x9e\x1e\xf1\x6e\x5c\x94\x1e\xf1\xf6\x88\x17\xbe\x34\xc4\xdb\xdf\x08\xd0\xdf\x08\xd0\xdf\x08\xf0\x25\x46\xb8\xb7\xae\x34\xde\x3b\x23\x52\x77\xae\x95\x43\xb5\x36\xae\x3d\xb7\xa0\xcf\xe6\xaa\x90\x90\x1c\xcb\x49\x65\x02\x06\x9f\xbc\xbe\x3c\x87\x54\x38\x91\xeb\x09\x5c\x6a\xde\xa4\xa1\x93\xfa\x75\x81\x4e\x64\xc2\x09\x1f\x92\xe4\x05\x35\xfa\x56\x66\xbc\x59\x33\xbc\x07\x59\x88\x09\xf2\x06\xab\xf8\xb0\xfa\x1d\xe6\xf9\xf0\x46\xe9\x3b\x05\xb7\x68\x6c\x6b\xbb\xbf\xd7\x65\xf1\x1e\x2c\x9a\x5b\x7f\x8a\x1e\xef\x4b\x5a\x2c\xe9\xbc\xc4\x88\x3d\xb6\x9b\x6d\x62\x71\xe7\xfe\xeb\x95\x3f\x46\x2e\x6d\x33\x17\x1e\x36\xf5\xfd\x15\x41\x85\xaf\x88\x69\x2b\x1b\x79\x6d\x2c\x73\x1c\x8e\x84\xc5\x2c\xb6\x6f\x89\xe3\xb4\xc9\xfc\x18\x2a\x27\x73\xf9\x3b\x06\xa9\x83\xc2\x55\x06\xd7\x2d\x57\x07\x3d\xb0\xdd\xc8\x18\x42\x2a\xd2\x29\x3e\x95\xeb\xcd\x83\x61\x1c\xea\xfa\x42\x5d\xec\x85\xd8\x4f\xe7\x5b\x23\xce\x43\x85\x68\x11\x64\xd2\xf0\x16\x9d\x81\x75\xda\x44\x8a\x96\x06\x87\xa9\xc8\xd3\x2a\xe7\x0d\x79\x76\x79\xe1\x7b\xda\x7e\xef\xc3\x16\x21\xd6\x4c\x7a\x87\x11\xc7\x2a\x9b\xc7\xbc\xcc\x05\x8c\x17\xd8\x50\xff\x90\x61\x17\x58\x68\x33\x7b\x23\xcc\x04\xbb\xed\xc7\x83\x17\xad\x1a\x8b\xdb\xf1\xdf\x9e\xbf\x7a\xf1\xec\xc5\x4f\x17\x2f\x2e\xde\x04\x09\x36\xd6\x66\xe5\x46\x0d\x30\xd8\xdb\xe3\x7a\xec\xc2\x40\x20\x97\x85\x74\x75\x2d\xbf\xd3\x06\x41\x92\x71\x3a\x4a\xa5\x9c\x2c\xd0\x27\x53\x08\xe7\x48\x59\xd2\x2e\x28\x10\x1d\xdf\x3c\x51\x88\x1b\x24\xd1\x05\x93\x4a\x18\xa1\x1c\x46\xe1\x28\x9d\xaf\x94\x69\xb0\x3a\x00\x7a\x19\xac\x7e\x1a\x87\xc5\x80\xdd\x2f\x63\xae\xc6\x54\xdc\xfa\x2b\x0e\xc6\x9a\xa4\x20\x2d\x45\xa1\x33\x39\x96\xa9\x37\xbb\xa0\x10\x59\x1d\x87\x0f\xe8\x0d\x4d\x2d\xd2\x9b\x09\x9c\xc2\x70\x89\x3c\xa8\x6e\xa5\xd1\x8a\x31\xe5\xad\x30\x52\x8c\xf2\x30\xab\x91\x77\xd1\x71\xbb\xcd\x00\x15\x8c\x66\x0e\x6d\x68\x29\x50\x2b\xdc\x45\xb1\xa1\xde\xb5\xf2\x84\xf6\x70\xa4\x51\x8a\x54\x52\x8e\x41\xba\x43\x52\x47\x56\x06\x21\x64\x30\xab\xd2\x38\x69\xed\x4a\x23\x3d\xe4\x15\xf5\xda\x05\xe1\x27\x2c\x14\x15\x69\x17\xd2\xb6\xd6\xca\x51\x8e\x03\xd2\xa9\xb2\x5d\x76\x84\x44\x07\xae\xc1\x7a\xef\x16\x69\x85\x89\x73\x3c\x9c\x41\x24\xc5\xaa\xf9\x22\x09\xe1\x95\x68\x86\x63\x51\xe5\x5e\xef\x78\x32\xf3\x52\xcd\x74\x65\xe6\xc4\xea\x54\x10\xe7\xf0\xae\x88\x09\x2a\xbc\x87\x07\x90\x21\x01\x37\xa9\x48\x92\x4f\xb4\xce\x08\xbf\x19\x7d\x2f\x0b\x6e\x2d\xb0\x56\x4d\x9f\xd1\x0c\x32\x5d\x8d\xf2\x7a\xc1\x48\x94\x06\x69\x5f\x8a\xf4\x86\xfa\xe2\x86\x41\x38\x38\x71\x45\x79\xc2\xbf\xc2\x7f\x43\x09\x9b\xfc\x6a\xb5\x8a\x38\xa0\x35\xcc\x64\x81\xfe\xd2\xc2\x08\xad\x1b\xe2\x78\xac\x8d\xfb\x1b\x51\xab\x52\xcc\x78\x4a\xd7\x53\x8f\x8b\x59\xd1\x66\x67\x3a\x69\xe6\xc9\xb9\x1d\xa2\xcd\x8a\xcd\xd6\x62\x83\xe4\x60\x9d\xdc\xa5\x4d\x63\xd4\x29\xfc\xbf\xa3\xeb\x3f\xfd\x73\x78\xfc\xfd\xd1\xd1\xdb\xc7\xc3\xbf\xbe\xfb\xd3\xd1\x75\xc2\x7f\x7c\x75\xfc\xfd\xf1\x3f\xe3\x8f\x3f\x1d\x1f\x1f\x1d\xbd\xfd\xf1\xc5\xf3\x37\x97\xcf\xde\xc9\xe3\x7f\xbe\x55\x55\x71\xe3\x7f\xfd\xf3\xe8\x2d\x3e\x7b\xd7\xb1\x91\xe3\xe3\xef\xff\x6d\xcd\x80\x84\x9a\xbd\x1a\x6f\xd2\x36\xdd\x12\xca\x86\x5d\x44\xf4\xfd\xf0\xa6\x1a\xa1\x51\xe8\xd0\x0e\xa5\x72\x43\x6d\x86\xbe\xc2\x29\x38\x53\xe1\xca\x6a\x04\xa7\xb6\x79\xe1\xe7\x44\xe4\xcb\x56\x85\x05\x8f\x63\xb8\x86\x25\x38\x04\xa8\xcb\x5a\xd6\x95\x1e\xbd\x8c\x69\x71\x23\x18\x4c\xe0\x6a\x45\x4d\xc6\x7c\xa1\xc4\xa1\xf5\xe8\xd0\x2e\xb6\xb3\x90\x64\xe6\x65\x20\xb7\xb9\x3f\x36\xd8\xcd\x22\xdc\xba\x1e\xa5\x91\xda\x48\x37\x3b\xcf\x85\xb5\x2f\x45\x81\x9d\xa8\x7b\x31\x6e\x90\xf6\x80\x36\x1b\x89\xe3\xa0\x7f\xbc\xf5\x13\xdb\x65\xc9\x41\x20\xb6\x55\x3e\x52\x28\x96\xa9\xf7\x4c\xdc\x7d\xda\xc0\xef\x68\x74\xb8\x45\xc7\xa0\x07\xc2\xf1\xf3\x66\xe2\x6d\x98\xab\xc5\xb4\xe2\xb9\x92\xd2\xbe\x27\x38\x3b\x96\x93\x6e\x0a\xf7\x6a\x55\x55\x48\x85\xa2\x61\xf3\x2d\x4a\x63\x78\x9f\xe3\x44\xa4\xb3\xf7\x34\xfc\xf7\x06\x69\x20\x04\xf4\xdf\x7b\x5c\x3a\x87\x3c\x0f\xc3\xb5\x58\x16\x50\xf2\xad\x57\x52\xfd\xea\xad\x82\xda\xe0\x31\x9c\x3c\x5a\xea\x2c\x21\xca\x25\x0b\x63\x67\x99\x54\x7f\xac\xf5\xde\xdb\xaf\xde\x2d\x95\x0c\xfe\x0d\xa7\xbd\x1d\xd1\xe6\x4f\x53\xb1\xc0\x24\xc1\x16\x27\x08\x67\x59\x21\xd9\xa5\x02\x47\x97\x57\x67\xc7\x73\x33\x21\xd5\xeb\x55\x4c\xa6\xd1\xaa\x43\xe7\x95\xdd\x14\x6d\xe3\x46\x61\xb5\xc1\x59\x4c\x7e\xb7\x70\x1a\x53\xec\x93\x08\xc6\x9e\x95\x11\xd6\x9d\x5f\x9d\xc1\x7b\x02\x55\xb9\x54\xe8\x69\x57\x1a\x79\x2b\x73\x9c\x50\x8f\xad\xa0\x10\x9c\x57\xc6\xa0\x72\xf9\x2c\x5e\xaf\xb4\x7a\x55\xa4\x25\x81\x3e\xcf\x6e\x91\xb3\x6a\x93\xae\x5e\x2c\x2a\x6d\x31\x4b\xe0\x8a\x6b\xcc\xbc\xff\x2f\x94\xe3\xb5\x61\xbd\xb8\x6e\x71\xc1\xa0\xa5\x86\xa5\xf2\xb5\x64\xe6\x55\x1c\x1a\xa3\x4d\x48\xb9\xf4\x76\x84\xce\xc9\x58\xa8\xcd\x13\x52\x4d\x36\xa2\xaa\x94\x21\x41\xc8\x4b\x0d\x84\x59\x41\xf8\xf5\x73\x9e\x07\x15\x4e\xd7\xe3\x65\xed\x77\x41\x83\x1b\x57\x64\x95\xd4\xd6\x14\xef\xb9\x36\x69\x16\xf0\x4b\xbb\xfb\x41\x63\xc7\x09\x19\x58\xcd\xc6\x3e\x0d\x8e\x2a\x99\xb3\x8b\x45\x9a\xc6\x3c\x62\x46\x16\x6d\xe3\x4d\x97\x45\xb8\xdb\xac\x2a\x4b\x6d\x5c\x63\x78\xa7\x73\x56\x99\x37\x8c\x57\x10\x80\x86\x55\x1a\x2c\x85\xa9\x25\xb6\x45\x48\xa7\x42\x91\xfa\xa7\x89\xbe\xd0\x9c\x87\xea\x93\x99\xa9\x5b\x31\xd2\x95\x63\x1e\x0b\x7b\x75\xac\x2b\x95\x01\x09\x95\x53\x98\x3a\x57\xda\xd3\x93\x93\x46\x1f\x25\x52\x9f\x64\x3a\xb5\x27\xa9\x56\x29\x96\xce\x9e\xc4\xdd\x74\x52\xea\x6c\x18\x7f\x0c\x45\xdc\x24\x27\x87\xeb\x74\x7c\x07\x4d\x18\x28\x7f\x0a\x7e\xad\xd6\x94\x42\x55\x6d\xb8\xc9\x69\xb8\xb9\x32\x15\x68\xc8\xb8\xb2\x90\xd3\x39\xdf\x7b\xb6\x21\xbc\x39\xef\xdd\x69\xca\xd7\xf7\x8f\xd5\xc0\xb4\x25\xdd\x0e\x6d\xbb\xe9\xcd\x42\x7b\x93\xd7\x6b\x8b\x9f\x6b\xe9\xee\x31\x96\x6d\x04\xf7\x9a\x81\x32\x00\x70\x4e\xf0\xed\x63\x84\xcd\xfd\x17\x12\x57\x6a\x06\xc4\xcf\x2e\x5c\x45\xd7\xba\x9b\xcd\x19\x4e\x8e\xfe\xa6\x76\x55\x0f\x70\x3c\xc6\xd4\x7d\xd7\xf2\x0b\xd4\x0e\xa9\xda\xbd\xfc\x4d\xfc\xeb\xbb\xf5\x26\x61\x27\x4f\x70\xb7\x58\x9e\x1f\xd2\x66\x1f\xdd\xbc\x2b\x87\x2b\x2c\xa8\x6c\x4f\x01\xdf\x16\x1b\x72\x1c\xed\x08\x0e\x29\xef\xd9\x0c\x78\x87\x64\x46\xab\xb0\x0d\x12\xae\x25\x6d\x83\xb3\xaa\x71\xab\x23\xbc\xd4\xe1\x94\x00\x0e\xe0\x92\x2f\x6e\x6b\xde\xb0\x22\x7b\xa9\xfd\x79\x81\x8d\xd6\x7f\x67\x27\xe6\xd6\x68\xe6\x1c\x41\x7e\x6c\x62\x97\x7e\x66\x73\xb1\xcb\x86\x83\xe7\x5c\xd3\x9b\x28\x73\x83\xb3\x26\xde\x15\x22\xa3\xec\x4e\x1e\x34\x5c\x12\xc1\xa7\x0f\x5f\xfd\x2d\x24\xfc\xea\x62\x24\x95\xef\xcc\x37\x1d\x97\x82\x5b\x8f\x04\x55\x19\xff\xe4\x6e\x1e\x82\x5c\xdd\x42\xa4\x73\x34\x7b\xb5\x43\x40\xb4\x0e\xb1\xac\x0e\x85\xb6\xe2\x9f\xcf\x7e\xab\x44\x9e\xc0\x53\x2f\x15\x79\xf6\xe1\x55\x28\xb4\x14\x12\xba\x93\x79\x96\x0a\x93\xb1\x36\xf0\x7b\x14\xac\xf6\xab\x27\x6a\xc0\x11\x77\x7b\xb3\x46\xfe\x62\x42\x28\x85\x71\x32\xad\x72\xc1\x6a\x0b\x27\xda\xcc\x1e\x84\xa2\x0d\xd3\x5c\x61\xaa\x55\xb6\xc5\x4b\xbf\x46\xba\x86\xba\x6d\x1a\x33\x8c\x42\x23\x43\xfe\xbd\x2c\x70\x91\x49\x8f\xe6\x8d\x1b\x3d\x8e\xbb\xba\xde\x62\x03\x8f\x6a\xee\xa4\xc5\x76\x90\x44\x5a\x90\xfe\x00\xcf\x71\x4b\x3c\xd6\xbb\x22\x81\xbf\xcf\xa2\xbe\x1a\x80\x74\xd1\x35\xcd\x76\x73\xe8\x33\xb0\x6c\x20\x76\xb3\xa1\xc6\xda\xe0\x2d\x1a\x38\xca\x34\xd7\xe1\x33\x2a\xc7\x09\xfc\x17\x41\x7c\xef\x83\x98\xf8\xe3\x14\x81\xc5\x23\x12\x71\x7c\x93\x28\xbb\xe8\x1f\xc3\x91\x3f\xda\x22\x8b\x02\x33\x29\x1c\xe6\xb3\x63\x9f\xdd\x14\x0f\xc7\x74\x59\xba\x2e\x27\xa2\x5a\x27\xa1\xfe\xf2\xef\x1b\x4a\xf2\x60\x77\x58\xd9\x5f\xa2\x93\xab\xa1\x8c\x47\x99\x0b\x4b\x58\xeb\x20\xbd\x21\xe2\xdd\x8a\x70\xb7\xb0\x5f\x14\x33\xf5\x02\xff\x4a\x7c\x20\xc0\xe0\x84\xb9\xdc\x73\xee\x07\xf0\xb8\x4c\x57\x9f\xe8\xda\xa2\xd1\x36\xfb\xb3\x87\x40\xf0\xff\x2f\xff\x9e\x09\x27\xd6\x14\xf0\x6b\x3e\x2b\x57\x39\x07\xb6\x29\xca\xa6\xf1\x75\x8b\xd5\xc1\x41\x1b\xba\xdf\xab\x05\x86\xfa\xab\x6a\xce\x9b\xd4\xec\x52\xf3\x49\x14\x71\xbd\x87\x06\x27\xd2\x3a\x33\x6b\x79\x36\x43\x44\x43\x83\x54\xd6\x09\xe5\x24\x4b\x36\x88\x25\x87\xc1\x37\x48\xf0\x3b\x81\x57\x64\x6b\xb1\x0f\xeb\x8e\xd4\xb4\x07\xd8\x6f\x66\x25\xc2\xb7\xad\x1f\xcf\x4d\x99\x32\xaf\x05\x41\xe3\x99\x4b\x64\x99\x41\xbb\x2c\x1f\x56\xb1\xcf\xc6\xf9\x47\x33\x7f\x2b\x09\x0e\x2f\xa3\x43\x20\x04\x6e\xad\x95\x13\x42\x99\xf1\x28\x65\x74\xf3\xce\xa1\x4d\x6f\x15\x70\x45\x1f\x82\xc1\xa2\x56\x02\xd2\x45\xdc\x9f\x6a\x65\xab\x22\x66\x44\x92\xd5\x53\xa2\xca\x50\xa5\x33\x3e\x7b\x93\xdf\xa2\x49\xe0\x67\x4b\x2b\x05\xff\x47\x4e\xc8\xee\x0b\x9d\xb6\xa1\x52\x0c\x23\x2d\x8c\x40\xda\xd6\x85\xb4\x9c\xe3\x49\x18\x28\xb6\xd0\x0a\x17\x84\x43\x3e\x31\xcf\x64\x71\x10\x95\xf7\xb5\xbe\xa9\x8f\x7c\x46\x27\x68\xa4\x8b\xdf\xf0\x34\xa5\x89\xf6\xa1\xb4\x52\x5b\x19\x8f\xa2\xd5\x72\x74\xee\xd8\xa8\x1e\xfb\x43\x9d\xbe\xdd\x79\x43\x98\x13\x96\x16\x26\xc3\x86\x5b\xa5\x3c\xf1\xb1\xed\xa5\x89\x62\xe6\xf1\x7c\xa4\xad\x5d\xcf\xc5\x5b\xbe\xe7\x87\xdc\xc8\x74\x23\xd4\x0d\x66\x90\xe3\xbd\x4c\xf5\xc4\x88\x72\x2a\x53\x3e\xb9\xe8\xe3\x2a\x84\xd5\x9d\x8f\x9d\x27\x87\x6b\x19\x6d\x9d\x18\x2f\xab\x51\x2e\xed\x14\x57\x62\x99\x8d\x3c\x6a\x31\x35\xe8\x56\x4a\x90\x39\x16\xbd\xf2\xe5\x1a\xa5\x1c\xd3\xbd\x42\x03\x21\x9d\xd1\xf3\x1c\x6f\x3c\x22\x71\x9a\xd2\x46\x8a\x11\x8a\xe6\x36\xe9\x9a\x86\x09\x5c\xb8\xe8\x98\xa6\x1a\x37\x88\xa5\xe7\x34\xce\x3b\xb0\x05\xfb\x54\xac\x54\x29\xfa\xf3\x97\xfe\x1c\x2b\x62\x74\x33\x3a\x23\xd1\xc3\x20\x64\x07\x7f\x5c\x1b\x54\x6e\x35\xa8\xd9\x6c\x77\x6d\xb0\xb9\x36\x93\xb1\x96\x29\xdb\x29\xd9\xc8\xa2\xa8\x13\xe9\x6f\x22\x25\x7f\xd9\x75\x05\xfd\x71\xd9\x2b\x9f\xb7\xb5\x5d\xd6\xfc\x3c\x57\x3c\x64\x03\x58\x98\xea\xbb\xd0\xd2\xe2\xa6\x0d\x1e\x9b\xb8\xb6\x99\xb4\x29\xed\x74\xcc\xe0\x5c\x2b\x1b\xcf\xcc\x0a\xe5\x8f\xc1\xde\x8a\xdc\xb3\x42\x6c\xb8\xd4\x39\xc7\x37\xb2\x2a\x9a\x13\x3e\xb5\x15\x8b\x11\xf2\x5d\xd7\x36\x0e\x65\x8d\x9a\xdb\xa2\x62\xb7\x69\xc1\xa8\x1f\x2e\x75\x9e\x6f\xd6\x62\x1b\xed\xd2\x2e\x56\x69\x24\x40\xe7\xf8\xeb\x45\xa4\x58\xf0\xc5\x11\x4f\x37\x11\x24\x66\x0d\x82\xba\x35\x61\x47\xe8\xee\x10\x15\xa4\x53\x4c\x6f\x6c\x93\xa0\xc1\xb7\xce\x2f\xac\x5a\xf0\x3f\xcd\x4b\xac\x1a\x4f\xd1\xaa\xb0\xa1\x61\x11\x7d\xd8\x4c\xe1\xdd\x62\xc2\xc1\xb2\xb0\x17\xb7\x42\xe6\x62\x94\xfb\xb3\xe2\xf5\xaf\x41\x7b\x1c\x32\xea\xf3\xb2\xca\xf3\x10\x44\xe2\x00\xac\x33\x62\x3c\x96\x29\xe7\xa0\x70\x98\xb9\x49\x6b\x5a\x39\x85\xbd\x42\xcb\xd6\x09\x57\x2d\xad\xd1\x86\x05\xde\xb4\xb0\x64\x87\xc8\xb5\x0e\xa2\x85\xfb\xc3\xe7\x8c\x15\x1a\x06\x7a\x63\x6b\xce\xff\x9d\xc0\x4b\xed\x42\x5e\xc6\x0b\xb4\x36\xe6\x7e\xbc\x46\x61\xb5\x6a\x49\x57\x46\xbf\x46\x4e\xa4\x12\x79\x98\x54\xdb\xbf\x57\xdb\x1e\x82\x5d\xca\x85\x9c\x18\xe1\x6a\xa1\xd8\x8c\x3b\x68\x97\xa0\x17\xbd\x27\x34\x81\x33\x35\xe3\xf5\x0e\x09\x1b\xd4\xb2\x33\x3a\xab\x52\x0c\xc1\xe7\xca\xb6\x1b\x79\x50\x31\x3a\x1f\x5e\x38\x8f\x9d\x34\x09\x88\x19\x3a\x21\x43\x48\x49\x2b\x04\x61\x4b\xb2\xe3\x22\x4f\x7a\x57\x78\x43\x60\x56\x16\x67\x97\x17\xf0\x3a\x9c\x24\x4e\x60\x38\x1c\xfa\xb8\xa7\x75\xa6\x4a\x59\xbf\xd0\x16\x52\x59\xd0\x14\x9e\xfb\x7c\xbe\x4d\x2b\x77\x37\x78\x3e\x3c\x04\x2b\x85\x9b\x42\xe2\x09\x9f\xb4\x48\x01\xf0\x03\xe9\x9a\x7b\x51\x94\xc4\xf7\xd7\xca\x4b\xef\x1f\xb4\xbe\xf2\x8b\xe4\xfb\xfc\x07\x9c\x9c\x2c\xf2\x84\x1e\x11\x44\x0d\x0e\x44\x66\x8d\xb1\xd6\x87\x76\x7e\x4a\x09\x55\xfc\x91\xd3\x7f\x56\xf4\xce\x7d\x09\x83\xa7\x70\x7d\x70\x16\x77\xdf\xf5\xc1\x00\xae\x0f\x2e\x8d\x9e\x70\x4e\xa8\x9a\x5c\x87\x24\xcf\xeb\x83\xa7\x38\x31\x22\xc3\xec\xfa\x80\x9a\xfd\x13\x27\xf3\xbe\x40\x33\xc1\x1f\x71\xf6\x2d\x37\x56\xbf\x8e\x1a\xe1\x5b\x9f\xf7\x4b\xef\x49\x05\x93\x9e\xfa\xb6\x10\x65\xfd\xe2\x85\x28\xeb\xca\xe7\x0d\x9f\xbd\x7d\x57\xa0\x13\xb7\x4f\x92\x66\x45\xdf\xff\x6a\xb5\x3a\xbd\x3e\x68\xc6\x3f\xd0\x85\xe4\xa4\x89\xd9\xf5\x01\xcc\xf5\x7a\x7a\x7d\xc0\xfd\xc6\xf7\x71\x90\xa7\xd7\x07\xd4\x13\xbd\x36\xda\xe9\x51\x35\x3e\xbd\x3e\xe0\x5c\x84\xc1\x93\x81\xc1\x72\x40\x80\xe9\xdb\xa6\x87\xeb\x83\xf7\xb4\x26\x27\x27\x21\x84\x11\xfe\x65\x85\x7f\xad\x76\x56\x6f\x95\xfb\xdb\xf2\x91\x86\x90\x0b\xeb\xde\x18\xa1\x2c\xf7\xff\x46\x16\xab\xc3\xb8\xde\x96\xe3\xfd\xbe\xf6\xbb\x61\x19\xb0\xf6\xb3\xe7\x86\xb5\x9f\xd7\x68\xcf\x2e\x9a\x6b\x79\x0e\x1d\xbd\xce\xcb\x15\x9b\xd3\x10\x84\xe7\xa2\x9f\xa6\x5e\x1f\xd2\x01\xa1\x34\x86\x5b\x3a\x68\x8b\x07\xf9\xc6\xb9\xce\xbc\x6e\x21\x41\xa7\x31\xf0\xef\xc2\x0d\x1e\x50\xa9\x0c\x4d\xce\xc1\xaa\xa6\x55\x1f\x09\xc9\x12\xf0\x7e\x03\x51\x7b\x69\x38\x8f\x8e\xb5\x93\x6a\x39\xaf\x7d\x0e\x4f\x6c\x91\x64\x47\xb8\xc4\xc4\x37\xc3\x8a\x2e\x4d\xb1\x74\xac\xe9\xf6\x0f\x31\x43\xcb\xa9\x42\xc8\x6a\xe8\xd6\xb3\x47\x60\x8e\x8e\x84\x0f\xa5\x7d\x7c\x7f\x5a\x15\x82\x54\x87\xc8\x38\x8d\xa7\xfe\xe6\xcd\x37\x6f\x6e\x79\x91\xea\x83\x42\xde\xc7\x1f\xd7\x21\x90\x3a\x28\x12\x51\x9f\x56\xdb\xe2\x31\xe9\x34\xf9\x42\xdc\xff\x84\x6a\xe2\xa6\xa7\xf0\xe7\xaf\xff\xf7\x5f\xfe\x63\x4d\x41\x2f\x18\x31\x7b\x8e\x2a\xf8\x82\x3a\x92\x61\xb9\xe2\xa2\xd3\x30\x89\xf9\x97\xc9\xa4\x29\x53\x3b\xb9\x1b\x0e\xba\x13\x9c\x83\x15\xd4\x65\x55\x12\x5d\x7e\xe0\xec\x5a\xeb\x84\x4a\x71\x40\x20\x69\x65\x63\xb2\x16\xe0\xf9\x0c\x9e\x7c\xed\xff\x05\x22\xee\x7a\x49\x7c\xbf\xbd\x7f\x97\xac\x18\xb2\xb4\xf0\xd7\xc1\xc2\x78\xa4\x05\x5a\x2a\x3d\x66\xc6\xf1\x26\xa6\x41\xaf\x09\xa3\x33\x60\x59\x13\x62\x3d\xde\x6d\x0b\xb7\xcd\x1f\xd8\xcd\x17\x58\x48\x25\x8b\xaa\x38\x85\xc7\x6b\xf3\x39\x49\xa4\x75\x5c\x4d\x5f\xb8\x01\x02\x82\x44\xd7\xc4\x88\xa2\xe0\x3c\x7a\x99\xa1\x72\x72\x2c\x39\x69\xa0\x66\x6d\x36\xf7\x7d\xc5\x98\x83\x52\x53\x91\xd3\x53\x48\x0e\xb5\x98\xfd\xd2\xe3\x1c\xc3\x1a\x38\x44\x6f\xd2\xb6\x80\x9a\x95\xe8\x77\x83\x37\x60\x00\xef\x4b\x0f\x55\x5b\x61\x88\x02\x85\x92\x6a\x62\x9b\x7c\xae\xf0\xaf\x4f\xd1\xc7\xbb\x29\x86\xe8\x39\xb6\x63\x41\x29\x19\x4b\x19\xdb\x4d\xa2\x49\x0f\xe4\x04\x50\x8f\xd1\x17\x7d\x9a\x84\x1c\x0b\xcc\xcf\x85\xc5\xb8\x1b\xdb\xd9\x5c\xf1\x2a\xa4\xfa\x68\xcf\x83\x6d\xd5\x27\x8f\xbf\xde\xb8\xe4\x75\xb9\xf5\x21\xbc\x3a\xcd\xeb\xed\xd9\xf0\xbf\xc4\xf0\xf7\x77\x47\xe1\x8f\xc7\xc3\xbf\xfe\xff\xc1\xe9\xbb\xaf\x5a\x3f\xdf\xad\xcf\xce\x5a\x0d\xe6\xd7\xb0\x4f\x50\x22\x11\x27\xc6\x15\x1d\xc4\x2c\x95\x37\xa6\xc2\x01\xfc\x20\x72\x8b\x03\xf8\x59\xb1\x6a\xf8\x40\xa2\x6d\x8e\x50\x93\x56\x3e\xa0\x5e\xd7\x45\xca\x43\x11\x1e\xd2\xe6\x32\x61\xb8\x9b\xcc\xd7\x6e\x44\x8a\xae\x86\x96\xa4\x51\x2d\x3e\xf3\xe7\x09\xc6\x5a\x27\x01\xe1\x26\xa9\x2e\x4e\xea\xef\x1e\x5a\xbf\x10\x6a\x06\x8d\x58\xf3\xa0\x74\x91\xd3\x2d\x27\xcc\x8b\xd4\x68\x6b\x9b\x4b\x7e\x20\x97\x37\x08\x67\x8d\xdd\x48\xc2\x72\x84\xa9\x60\x2c\x6e\x46\xd2\x19\xe1\x9d\xbe\x11\x57\x36\x1e\xa5\x71\x95\xc3\x11\x99\xab\x09\x27\x92\x2d\x49\xd7\x70\x61\x98\x18\xc9\x9c\xff\xdd\x26\x32\xa5\x53\xad\xc6\xb9\x0c\x26\x40\x51\x6a\xe3\x84\x72\xf1\x54\xd3\x04\xef\xfd\x3f\x15\xe7\xc3\x0e\xd2\xc2\x51\xa6\xec\x93\x27\x5f\xff\xf9\xaa\x1a\x65\xba\x10\x52\xfd\x50\xb8\x93\xe3\xef\x8f\x7e\xab\x44\xce\x51\xde\x97\xa2\xc0\x1f\x0a\xb7\xfe\x1f\xdd\xda\x59\x2d\x3e\xf9\x4b\x87\x5d\x74\xf4\xd6\xef\x95\x77\x47\x6f\x87\xe1\xaf\xaf\xe2\xab\xe3\xef\x8f\xae\x93\x8d\xdf\x8f\xbf\x3a\xe1\x1c\xc9\x7a\xcb\xbd\x7b\x3b\x6c\xb6\x5f\xf2\xee\xab\xe3\xef\x5b\xdf\x8e\x57\x6d\xc6\xb9\xd4\x45\xb2\x02\x86\x85\x28\x87\x37\x38\x5b\xb3\x39\xd7\xc2\xd1\xe5\x86\x3c\xc5\x0a\x51\xae\xb2\xbe\xc7\x72\xf2\x42\x94\xaf\x71\x8c\x06\x55\xba\xdd\xb7\x76\xbe\x54\x05\x8e\x32\x42\x04\x7c\xfa\xe5\x38\xa2\x53\x53\x7f\x0d\xba\xb4\xae\x17\xb5\x4f\x7d\x4d\xe1\x62\x7e\x47\xcc\x39\xaf\xad\xf0\x80\x22\x57\xf8\x4a\x9a\x56\x1f\x3e\x70\x44\x66\xcf\x86\x4f\x9c\x38\xb6\x87\xb3\x8c\xd4\xa5\x77\x10\x6e\xb2\x02\x3a\x30\x79\x37\xd8\xab\x36\xa4\x5d\x6e\xed\xa4\x9e\xe7\xde\x2d\x44\xb1\xf4\x8b\x77\x7b\xed\xdd\x4e\x25\xd7\x1a\x88\xf3\xae\xd7\x8b\xa7\x9e\x31\x58\x62\x32\x0a\x9d\x6a\x32\x4f\x2b\x25\x7f\xab\x10\x2e\x9e\xd6\xd7\x00\x48\x95\xe6\x15\x5f\x3c\xf8\xf3\xcf\x17\x4f\x6d\x02\xf0\xf7\x20\x25\xef\x10\x32\xad\x0e\x1d\xbc\x7a\xf9\xd3\xff\x65\x1f\x06\x97\x18\x78\x1c\x12\xce\x22\xe7\x52\x78\xef\x5e\xc0\x0d\xf0\x77\xf4\xe9\x7d\xdc\x73\x2a\xca\xda\xed\xc3\x52\x9a\x13\xc3\xf2\xd2\xf2\xf9\x05\xb0\x95\x09\xa3\xa3\x86\x7d\xa0\x9a\x4f\x2c\x86\x30\x76\x3c\x7a\xc1\x07\x58\xf6\xca\x49\x4d\xb5\x52\x98\x72\xac\x9f\xc0\x6b\x97\x6d\xdd\x2e\xbf\x08\xf2\x57\x22\xe1\xc5\xb4\xd3\xa6\xcf\xb8\xe9\xa3\x67\xf8\xe1\x77\x27\x6d\xa3\x57\x01\xe8\xf3\x88\xf7\xd8\x8a\x21\x0a\xb9\x37\x53\xd2\x18\x02\xdd\x3e\xfa\x3e\x5e\x9a\xef\x5e\x3d\x7a\x27\x30\x87\x83\x5f\x6f\x71\xda\x2f\xe5\xbe\xcd\xfb\x1b\x16\x0e\xbb\xb1\x43\xba\x8e\x28\x4f\x85\x85\x11\xa2\x62\x1f\xb8\x77\x99\xa2\x0a\x3c\x8f\x8d\xf7\xba\x2a\x87\x4e\x0f\xb3\xd5\x8b\xb7\x85\x72\xdb\xa9\xb6\xc1\xdc\x5f\xb8\x4f\x64\x57\xeb\xfe\x6e\x3a\x5b\x45\x03\xdb\x5c\xaf\x58\x03\xb7\x5d\x27\xb6\xde\x9a\x5b\x70\x85\xb3\x39\x56\xeb\x5a\xfe\xb5\x3c\x24\x32\xb9\xe7\xdc\x41\x4e\x73\x08\x74\xde\x1d\xba\xfb\x18\xfd\x32\x5f\xa1\xb9\x95\x1d\x10\xc3\xeb\xf9\xf2\x9d\x44\xcb\xf3\xd7\x97\xe7\x7c\xb0\x88\x2a\xc4\xb8\x0d\x73\x7f\x1b\x0a\x3c\x7c\x28\x2b\xf5\x69\x41\x67\x1f\x7f\x43\x13\x52\xde\xbb\x13\xf6\xd4\xa6\x7a\x4b\xb4\x6d\xe3\x71\x05\x26\xed\xa6\x43\x19\xbb\xb4\xb1\x2b\x48\xf0\x72\x6c\xee\x4c\x8e\x75\xda\x70\x86\x44\xfb\x5d\x35\xaa\xed\x9a\xa6\xf5\x60\xb2\xc2\x3f\xfe\xf5\xe8\xbf\x03\x00\x00\xff\xff\xa9\x21\x8f\xa8\x4b\xf2\x00\x00") +var _operatorsCoreosCom_catalogsourcesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x69\x73\xdb\xb8\x96\xe8\xe7\xc9\xaf\x40\xf9\x4d\x55\xac\x5c\x49\x4e\xfa\xde\xea\x37\xd7\xb7\x97\xf2\x38\xcb\x73\x75\x16\x57\xec\xee\xa9\x37\xb9\x79\x2f\x10\x79\x24\xa1\x4d\x02\x6c\x00\xb4\xad\x5e\xfe\xfb\x14\x0e\x00\x92\xa2\xc4\x4d\xde\x92\xbe\xc0\x87\xee\x58\x24\xb1\x1c\x9c\x73\x70\x76\xd0\x8c\xfd\x04\x52\x31\xc1\x0f\x09\xcd\x18\x5c\x6b\xe0\xe6\x2f\x35\xbd\xf8\x0f\x35\x65\xe2\xe0\xf2\xd9\xa3\x0b\xc6\xe3\x43\x72\x9c\x2b\x2d\xd2\xf7\xa0\x44\x2e\x23\x78\x0e\x73\xc6\x99\x66\x82\x3f\x4a\x41\xd3\x98\x6a\x7a\xf8\x88\x10\xca\xb9\xd0\xd4\xfc\xac\xcc\x9f\x84\x44\x82\x6b\x29\x92\x04\xe4\x64\x01\x7c\x7a\x91\xcf\x60\x96\xb3\x24\x06\x89\x9d\xfb\xa1\x2f\x9f\x4e\x9f\xfd\x6d\xfa\xf4\x11\x21\x9c\xa6\x70\x48\x22\xaa\x69\x22\x16\x76\x2c\x35\x15\x19\x48\xaa\x85\x54\xd3\x48\x48\x10\xe6\x7f\xe9\x23\x95\x41\x64\x06\x59\x48\x91\x67\x87\x64\xeb\x3b\xb6\x3f\x3f\x17\xaa\x61\x21\x24\xf3\x7f\x13\x32\x21\x22\x49\xf1\xdf\x6e\x8d\x76\xd8\x33\x1c\x16\x7f\x4f\x98\xd2\x3f\x6c\x3e\x7b\xcd\x94\xc6\xe7\x59\x92\x4b\x9a\xd4\x27\x8c\x8f\xd4\x52\x48\xfd\xb6\x1c\xde\x0c\x17\x51\xad\x64\x64\x1f\x33\xbe\xc8\x13\x2a\x6b\xdf\x3e\x22\x44\x45\x22\x83\x43\x82\x9f\x66\x34\x82\xf8\x11\x21\x0e\x52\xae\xab\x09\xa1\x71\x8c\xd0\xa7\xc9\xa9\x64\x5c\x83\x3c\x16\x49\x9e\xf2\x62\x28\xf3\x4e\x0c\x2a\x92\x2c\xd3\x08\xe1\xf3\x25\x90\x4c\x82\xd6\x2b\x04\x09\x11\x73\xa2\x97\xe0\xc7\x2e\xbe\x22\xe4\x67\x25\xf8\x29\xd5\xcb\x43\x32\x35\x10\x9e\xc6\x4c\x65\x09\x5d\x99\xd9\x54\xde\xb2\xdb\xf4\xdc\x3e\xab\xfc\xae\x57\x66\xea\x4a\x4b\xc6\x17\x6d\x53\x31\xef\xf5\x9f\x83\x05\xcd\xf9\x2a\xdb\x9c\x42\xed\xc7\xbe\xe3\x67\xf9\x2c\x61\x6a\x09\xb2\xff\x24\x8a\x4f\x36\xe6\x70\xba\xe5\x49\xc3\x44\x2a\x9d\x7a\xba\x99\x46\x12\x90\x64\xce\x59\x0a\x4a\xd3\x34\xdb\x18\xe0\x68\xb1\xb9\xc6\x98\x6a\xff\xa3\x7d\xe9\xf2\x19\x4d\xb2\x25\x7d\xe6\x7e\x54\xd1\x12\x52\x5a\xe2\x83\xc8\x80\x1f\x9d\x9e\xfc\xf4\xd7\xb3\xda\x03\xb2\x0e\x9d\x35\x3c\x27\x4c\x11\x4a\x24\x64\x42\x31\x2d\xe4\xca\x40\xeb\xf8\xec\x27\x35\x26\xc7\xef\x9f\xab\x31\xa1\x3c\x2e\x08\x8f\x64\x34\xba\xa0\x0b\x50\xd3\x8d\xb9\x8a\xd9\xcf\x10\xe9\xca\xcf\x12\x7e\xc9\x99\x84\xb8\x3a\x0b\x03\x1e\x0f\x93\xda\xcf\x06\xfe\x95\x9f\x32\x69\xc6\xd4\x15\x42\xb6\xad\xc2\xcc\xd6\x7e\xaf\xad\xf0\xf7\x49\xed\x29\x21\x06\x30\xf6\x4b\x12\x1b\xce\x06\x0a\x91\xc2\x51\x1d\xc4\x0e\x9a\x16\x59\x98\x32\x10\x91\xa0\x80\x5b\x5e\x67\x7e\xa6\xdc\xad\x72\xba\xd1\xf9\x19\x48\xd3\x91\x61\x08\x79\x12\x1b\x96\x78\x09\x52\x13\x09\x91\x58\x70\xf6\x6b\xd1\xbb\x22\x5a\xe0\xb0\x09\xd5\xa0\x34\x41\xba\xe6\x34\x21\x97\x34\xc9\x01\x81\xbd\xd1\x77\x4a\x57\x44\x82\x19\x97\xe4\xbc\xd2\x23\x7e\xa2\x36\xe7\xf2\x46\x48\x20\x8c\xcf\xc5\x21\x59\x6a\x9d\xa9\xc3\x83\x83\x05\xd3\x9e\xd9\x47\x22\x4d\x73\xce\xf4\xea\x00\xf9\x36\x9b\xe5\x86\xa1\x1e\xc4\x70\x09\xc9\x81\x62\x8b\x09\x95\xd1\x92\x69\x88\x74\x2e\xe1\x80\x66\x6c\x82\x8b\xe1\xc8\xf0\xa7\x69\xfc\xbf\x24\x54\x39\x60\x1d\x0d\x6a\xd4\x40\x3c\xdf\x1d\xb8\x59\x86\x1f\x5b\xc4\xb4\x1d\xda\xc5\x96\x7b\x62\x7e\x32\x60\x7c\xff\xe2\xec\x9c\xf8\x19\xd9\x7d\xb3\x5b\x54\xbe\xba\x05\x42\x7e\xb7\x0c\x64\x19\x9f\x83\xb4\x5f\xce\xa5\x48\xb1\x57\xe0\x71\x26\x18\xd7\x96\x6b\x24\x0c\xb8\x26\x2a\x9f\xa5\x4c\x2b\x44\x6b\x50\xda\x6c\xe4\x66\xc7\xc7\x78\x38\x92\x19\x90\x3c\x33\xc4\x1b\x6f\xbe\x72\xc2\xc9\x31\x4d\x21\x39\xa6\x0a\xee\x7d\xef\xcc\x1e\xa9\x89\xd9\x90\xde\xbb\x57\x3d\xfa\x37\x3f\xd8\xa0\x7a\x42\xfc\x99\xdd\xeb\xe5\x26\x36\x41\x2c\x4f\xd8\x76\x26\x90\x16\xee\x60\x1a\x8d\x63\x09\x6a\xcb\x83\x6e\xac\x33\xed\xc8\x7e\x6e\x91\x6f\x29\x94\x41\x02\xaa\xc9\xbb\xd7\x6f\x48\x44\x39\xc9\x15\x18\x12\x8e\x04\xe7\x06\xcb\xb4\x20\xd4\x9c\xb9\x13\xb8\x66\x0a\xb1\x52\xc2\x82\x29\x2d\x57\x9b\x7b\x6b\xda\x4b\x21\x53\xaa\x0f\xc9\x37\xfe\xb5\x09\x0e\x21\x24\x61\xd9\x77\x87\xdf\x64\x42\xea\xef\xb6\x7e\xf8\x8e\x27\x2b\x33\x78\x4c\xae\x96\xc0\xc9\x59\x01\x19\xf2\x6d\xe5\x8f\x57\x32\x8b\xb6\x0f\x7c\xb2\xe0\x42\xfa\xaf\x0d\x5a\x9f\xa4\x74\x01\x64\xce\x20\x41\x42\x53\xb0\x85\xab\xb5\xa0\x05\xb1\x82\xdf\x9c\x2d\xde\xd0\x6c\x57\x58\x1f\xfb\x0e\xcc\x0c\xcc\xa4\xaa\x62\x4b\xf9\x50\x0b\xa4\x28\xb3\x78\xf3\x4f\x1a\x5d\x10\xea\x06\x4f\x69\x36\x51\x48\xcd\x1d\x80\xef\x07\xbf\x63\xdf\xa9\xd9\x91\xf2\xe7\x13\xc7\xa5\x07\x43\xa8\x0a\x84\xc1\xdf\x96\x42\x59\x27\x7c\xdf\x6c\x3b\x53\x7b\x8c\xb1\x90\x59\x74\x2a\x62\xbb\xec\x5d\x77\xf1\x55\xb5\x13\x02\xd7\x99\x50\xa0\x48\xcc\xe6\x73\x90\x86\x73\x8a\x4b\x90\x92\xc5\xa0\xc8\x5c\x48\xdc\xda\x4c\xc4\xc8\x26\x8a\xad\x5e\x93\x47\x4e\xc5\x16\xb6\x49\x06\xd1\x00\x0a\x2d\x16\xc3\xbb\x70\x7b\x2b\x53\x22\x1d\x3c\xc6\x34\x3a\x47\xf5\x68\xb5\xfd\x69\x0d\x74\x47\xee\x65\x8f\xe8\x4e\x14\x75\x1c\xee\xb1\x32\x20\x79\xac\x8a\x3e\xb7\xaf\xbf\x73\xca\x7d\xa6\x6d\x1a\x17\x31\x1c\x75\x4c\x7f\x63\x09\xcf\xf1\x8f\x19\x28\xfc\xbc\x98\x2a\x0a\x36\x71\x9e\x20\xef\xcb\x93\xf5\x5d\x6e\x5a\x47\xcf\xb5\xf4\x5d\x8f\x7d\x0f\xe6\x20\x25\xc4\xcf\x73\x83\xea\x67\xc5\xac\x1c\xe7\xb3\x3f\xbf\xb8\x86\x28\x6f\x22\xc7\xc6\xa5\x37\x20\x7e\xb5\x19\x85\xc3\x41\x02\x24\xb9\x62\x49\xe2\x66\x64\x58\x96\x7f\x60\x40\x82\x12\xa0\x81\xa0\xb2\x07\x8b\xa2\x9a\xa9\xf9\xaa\x73\x00\x03\xd1\x02\xe6\x70\x6d\x84\x1b\xd4\x16\x91\x90\xd8\x9c\x41\x4c\x66\x2b\x27\xc7\x18\xa6\x3e\x26\xb3\x5c\x13\xa6\x51\xc8\x89\x96\x42\xa8\xfa\x21\xba\xd9\xa8\xdd\x5a\x9c\xd7\x25\x13\x28\xa3\x12\xc1\xc1\x70\xc3\xd4\x48\x26\x8e\x5e\x2b\xc3\x4f\x71\xe5\xe5\x67\xac\x2e\x58\x6c\xb6\xd4\x9c\x78\xc5\x76\x79\x8a\x30\xc3\x5c\x31\xbd\xc4\x3f\x16\x46\x5d\x32\xf2\xb1\xca\x53\x33\xe8\x15\xb0\xc5\x52\xab\x31\x61\xd3\x2d\x42\x53\xbd\x19\x04\x04\x1a\x2d\x2b\xd3\x4a\x01\xb4\x22\x34\x49\xfc\x12\xaa\x58\x6b\x25\x90\xd4\xc8\x8a\x64\xdf\x0b\x93\x9d\xa3\x38\x41\x70\x5c\x48\x30\x75\xc4\xdb\xba\x5d\x63\x02\x3a\x9a\x8e\xc6\x9d\xdd\x47\x22\xcd\x72\x0d\x46\x02\xce\x53\xb3\xb5\x4c\x1b\x1d\xcc\x0a\xbe\x52\xe4\x0b\x0b\x29\x48\xdc\xc4\xbd\xda\x62\x4f\x74\xc3\xff\x68\x1c\x6f\xe3\xf9\xf5\xb6\x67\x81\xbb\xe7\x35\x13\x33\x1c\xb3\x40\x42\xf8\xa5\x54\x47\x4b\xa7\x2c\x45\x42\x4a\x50\x99\xe0\xa6\x67\xfb\xe4\x45\xb9\xb6\x7f\x98\x77\x3a\xc7\x33\x9d\xee\xab\x51\xb9\xd9\x4b\xb6\x58\xfa\xbd\xa6\x12\xf0\xb7\x75\x1c\xe9\xda\x72\xcb\x4a\xa8\x94\xb4\x8b\x8e\x98\x86\xb4\x83\x91\x90\x1d\xa8\x9f\x90\x23\x4e\x20\xcd\xf4\xaa\x82\xd8\x15\x14\xd3\x20\xd3\x02\x90\x88\x85\xc8\xf6\x94\x05\x02\x4b\xb3\x84\x45\x4c\x3b\x34\x27\x4f\x7b\x8c\xb7\x6f\x28\x81\x30\x6d\x0e\x0d\xc2\xc5\x44\x64\xa3\x29\x39\x22\x3c\x2f\x18\x4f\xdb\x14\xb8\x28\x66\xe0\x3a\x32\xd3\x52\xa2\xec\xab\x9b\x1f\xf5\x63\xdf\xb6\x35\x0b\xf9\x9b\x6d\xe2\xe6\x0f\xbc\x07\x11\x9a\xd7\x2d\xd4\x3a\x5f\xed\x7b\x90\xf8\xb7\xfd\x1c\xfa\xbc\x5d\x3f\xed\x2d\xe5\x28\x48\x20\xd2\xe6\x34\x04\x99\x8e\x09\x55\x4a\x44\xcc\x68\x85\x25\xee\xaf\x13\x94\x5d\x49\x37\xec\xc9\x50\xf8\x93\xc1\xeb\x27\x68\x78\x58\xa7\xef\xbe\xdf\x6d\x40\x23\x61\x46\xc7\x99\xd7\xa0\xb2\xc6\x77\x67\x2b\x7c\xfa\x58\x91\x84\xce\x20\xd9\xa2\xb4\x37\xb5\xfe\xc4\x5f\xb6\x9e\x6c\xa0\x61\x41\xbd\x18\x42\xd9\xea\xd8\x50\x59\xb7\x33\x71\x14\x78\x62\x8e\x2a\xa3\xda\x53\xc6\x95\xb3\xef\x8c\x09\x25\x17\xb0\xb2\x76\x38\xca\x0b\x53\xdc\xa0\x29\x60\xc7\x12\xec\x81\x6e\xf0\xee\x02\x56\xd8\x61\x93\x0d\xa9\xa5\xab\xa1\x78\x67\xdb\x10\x0e\x50\xb6\x89\x99\xe8\xc0\x2f\x76\x00\xd0\x70\xd2\xb0\xed\x02\x5a\xc5\xe7\x6d\x6d\xc3\x4a\x8d\xe8\x8e\xfb\x81\x9b\x84\x27\xb0\xc7\x07\x9a\x65\x09\x83\xed\xa6\xa6\xf6\xd6\xaa\xf5\xb5\x35\x0f\xbd\x1b\xad\x6b\x20\x81\x98\xf6\xbe\x30\xd7\x59\x7c\x7f\xac\x2c\xbe\x1a\xbe\xb3\x64\x99\x35\xb4\x28\x40\x36\x32\x1c\x69\x6d\xfb\x89\x26\xac\xb4\x65\x2b\x14\x36\x4e\xf8\x98\xbc\x15\xda\xfc\xef\xc5\x35\x53\x46\xc6\x7c\x2e\x40\xbd\x15\x1a\xff\x9c\x92\x57\xda\x92\xde\xeb\x9e\x7c\xb9\x6c\x3b\xef\x81\x5d\xdf\x7d\xef\xc0\x11\xb7\x4c\xd4\x40\xb8\x6a\x74\x55\x53\x72\x62\xc5\xc1\xc2\x0b\xc0\x14\x39\xe1\x46\x29\xb0\x90\x1b\x3c\x14\xda\xdd\xb1\x6f\x37\x64\x9a\x2b\xb4\x9a\x72\xc1\x27\x28\x46\x6d\x1d\xd3\x6e\x90\x19\xb7\xba\x45\xb7\x38\x7c\xf3\xd0\xaf\xd0\x46\xf7\x5a\x8f\x2b\x1f\x0f\x1e\xb7\x32\xd8\x92\x5e\xa2\x68\xcf\xf8\x22\x29\x84\xf8\x31\xb9\x5a\xb2\x68\x69\xb5\xc7\x19\x58\xe7\x40\x26\xc1\x48\x0c\x54\x19\xe6\x6f\x7e\x59\x80\x1c\x8e\xfa\xe7\x46\x35\xb0\xe3\x5b\xd7\x46\x42\x23\x88\x49\x8c\x2a\x8b\xb5\xb2\x53\x0d\x0b\x16\x91\x14\xe4\x02\x48\x66\x8e\xfe\xdd\x10\x7e\xd8\x49\x6c\xdb\xe0\xf3\xb8\x3a\xe0\x20\x0a\x43\x99\xe6\xa5\xd1\x91\xee\x49\x9c\x41\x7d\x2c\x88\x33\x41\x9c\x09\xe2\x4c\x10\x67\x82\x38\xd3\xbb\x05\x71\xe6\xc6\xc3\x07\x71\xe6\x4f\x2e\xce\x5c\x4f\x2e\xf2\x19\x48\x0e\x1a\xd4\x24\xa5\xd9\xc4\x4d\x59\x8b\x94\x45\x3d\x7a\xb0\xf6\xa6\x1d\x0c\x5c\xff\x65\x0d\x95\x75\x8b\x16\x0a\x57\x3e\x34\x63\xdd\xb4\x65\x64\x86\x33\x77\x10\x9c\xa3\x39\x8c\x59\x3f\xb4\xa4\x7c\x01\xe4\xd9\xe4\xd9\xd3\xa7\x43\x0c\x5f\x0e\x75\x7a\x7d\x31\x77\x4e\x77\xc6\xf5\x5f\xbf\x6a\xfd\xa2\xc9\x94\x7f\x3f\x3e\x24\x47\xa8\x85\xdb\x60\x4d\xa2\x6c\x70\xf3\x20\xd7\xe7\x42\x93\x14\x34\xa1\xdd\x22\x4c\xd5\x22\xcc\x52\x18\x17\xfe\x58\xa4\x52\x17\xbc\xe2\xfd\x55\x31\x11\xdc\x79\x05\xcc\xfe\x75\xef\xcf\x4e\x2b\x88\x80\xda\xa0\x8a\x19\x98\x55\x74\x7b\xa9\x34\x51\x22\x35\xb3\x66\x5c\x7b\x9a\x37\x4b\x00\xbf\x31\x64\x1f\xa6\x8b\x29\x89\x73\xec\x96\x72\x17\x8d\x33\xb2\xab\x55\x2b\xa5\x21\xed\x76\x53\x99\xb3\x43\xe2\xff\x0c\x58\xb4\x5c\x99\xce\xe0\x12\xb8\xce\x69\x92\xac\x08\x5c\xb2\x48\x17\xf0\xc3\xe0\x21\xa6\x55\x2f\x48\x0d\x90\x3a\xfb\x4b\x9a\x93\x0d\x22\xeb\xe2\xe9\x43\x04\xc5\x8d\xbe\xfb\xb0\x8d\x35\x0a\x78\xef\x56\x32\x6d\x54\xa1\xb4\xe9\xd7\x7a\x14\xf1\x9f\x88\xdc\xef\xde\x77\x3b\x80\xc8\x60\x76\x3d\x80\x45\xef\x26\x89\x38\x5f\x8c\x90\xce\x2f\xb4\xb9\xd2\x2d\xde\x18\xbb\xf6\x35\xaa\x11\xf3\x9e\x03\xea\x25\x58\xff\xd9\xd1\xdb\xe7\xfd\x20\x46\x9c\xdf\xfa\x5c\x64\x22\x11\x8b\x55\x75\x7b\x6d\xf4\x2e\x4b\x33\xef\x5f\xa4\x44\xe5\x33\x27\xb1\x1a\x9c\x7f\x5b\xc3\x87\xe0\xb5\x08\x5e\x8b\xa0\xe6\x63\x0b\x6a\x7e\x50\xf3\x83\x9a\xdf\xaf\x05\x35\xff\xc6\xc3\x07\x35\xff\x4f\xae\xe6\x07\xaf\xc5\x96\x05\x05\x71\x26\x88\x33\xd8\x82\x38\xb3\x7d\x5d\x41\x9c\x21\x41\x9c\x69\x69\x41\x9c\x09\xe2\xcc\x5a\xfb\x12\xbc\x16\xbb\x7d\x9b\x89\xf8\x06\xe9\x2e\x99\x88\x5b\xb2\x5d\xac\xa9\x39\x12\x93\x44\x44\x54\xbb\x1c\x54\xf3\x89\xf3\x6f\x28\x9a\x5a\xeb\xf9\x98\xfc\x2a\x38\xd8\xf8\x7f\x83\x49\x68\xc3\x16\x7a\x09\xd2\xbc\xbe\xaf\x46\xad\x41\xd7\x21\x5b\x26\x64\xcb\x84\x6c\x99\xc6\xf6\xd9\x64\xcb\x2c\xa9\xb2\x78\x6b\x4f\x91\xe6\xe4\x99\x0a\x4f\x3a\x07\x99\xfe\x49\x73\x67\x0c\xba\x3b\x74\xc4\x0a\x0a\x25\x4a\x59\xc8\xc4\xce\x95\x0c\xf1\xe9\x3a\x3c\x9c\x06\x8a\x8b\xa2\x71\x0c\x31\xc9\x40\x4e\x2c\x8a\x0a\x32\x67\x3c\xde\xb2\x56\x0f\x9f\x6e\xf6\x70\x87\xc9\x2b\xeb\xeb\xe8\xf5\xcd\xdd\x64\xb0\xac\x4f\x64\x07\x5f\x57\xd5\x61\xb7\x76\x08\x7e\x16\xf9\x2c\x43\x95\xd9\x09\xd1\xce\xcf\xf5\x43\x4f\x75\x76\xb8\x46\x8a\x7a\xa4\xf7\x8a\xed\x68\xa9\x19\xa4\x35\x1c\x39\xd5\xf5\x97\x1c\xe4\x0a\x33\xad\x4b\x0d\xad\x28\xd4\xe1\x62\x2d\x98\x22\x11\x55\xf6\x58\x1d\x22\x55\x9e\xcc\x6d\x9e\x19\xcf\x93\x64\x6c\xfb\xa9\x13\xab\x67\x73\x88\x07\x5c\x98\xe7\x83\x8d\x47\x03\xad\x19\xbb\x99\x0b\x76\x77\x0e\x92\xfa\x3e\xd5\xbb\xb2\x66\x24\x6f\x65\xb3\xdb\xb2\xd5\xcc\xb6\xc5\xc9\x3b\xd8\x6d\x6b\xdb\xae\xb2\xfe\x4e\x92\xfe\x8d\x55\xdb\x16\x98\xdc\xc0\x04\x87\x2f\x0f\x9e\xcc\xed\x98\xe1\xc8\xee\xa6\x38\xb2\xb3\x39\x8e\xec\x64\x92\x23\xbb\x9a\xe5\xc8\x0d\x4c\x73\x64\x37\xf3\x1c\xa9\x63\x9b\xd9\x21\x27\xf8\xde\x8d\xa5\x8e\xdc\xc4\x52\x44\x6e\x60\xb1\x23\xb7\x40\x58\xd5\xf1\x2b\x65\x8f\xee\xce\x84\x47\xfa\x9a\xf1\x90\xac\xd6\x2c\x79\xf7\xbd\x2f\xbb\x59\xf1\xc8\x2d\xed\x8a\xb3\x6f\x31\x34\x1b\xdd\x97\x5d\x8f\x3c\xbc\x6d\xaf\x75\x0a\x6e\xf8\xde\xc6\xb0\x9d\x46\xbf\x81\x01\x8d\xdc\xc8\x88\x46\x76\x37\xa4\x91\xdd\x91\x1d\x65\x91\xd7\x18\x82\x74\x03\x89\x66\x30\x96\x57\x86\xb5\x27\x38\x56\x4e\x9a\x93\xdf\xcc\x41\x8d\x9b\xff\x07\xc9\x28\x93\xca\x68\x10\xce\xcc\x5a\x7d\xe6\x4c\x64\x95\x6e\x06\x4f\x00\x4b\x47\x99\x73\xf4\x92\x26\x46\x90\xb0\xf1\x9e\x4e\xcf\x37\x73\xa9\x8b\x69\x63\x72\xb5\x14\xca\x9e\xfa\x45\xf5\xab\xbd\x0b\x58\xed\x8d\x7b\xa9\xe0\xeb\xad\x4a\x3d\x7b\x27\x7c\xcf\x8a\x27\x1b\xb8\x5f\xc8\x32\x82\x27\x2b\xb2\x87\xcf\xf6\x6e\x5b\x0e\xdc\x41\x06\xa9\x96\x18\xdd\xf5\x88\xdf\x09\x65\x6f\x1a\xb9\x4e\xd6\xb0\xef\x07\x58\xed\xea\x17\x1f\x84\xf3\x6f\xd6\x46\xf4\x42\x2b\xa2\x99\xd1\x8f\x0b\xd9\x04\xad\x96\x56\x2c\x71\x76\x20\x6b\x12\x62\x49\x32\x60\xb4\x19\x10\x4d\x2f\x00\x1d\x0e\x58\x71\x4e\xb1\x18\x8d\x5a\x82\x5b\xd4\xc1\x91\x0c\xca\xf8\xd2\x68\x89\x10\x17\x79\xe6\x51\xcf\x97\x33\x1c\x30\x24\xe3\x91\x48\x7d\x38\xb5\x0d\x69\x34\x54\xe1\xe8\x65\x62\x8b\x30\xda\xdf\x71\x60\x64\xb3\x4e\xfd\xff\xf4\xba\xaa\xfc\x7e\x22\x54\x91\x4f\x28\xb8\x71\xb2\x8f\x1f\x8e\x3e\x0d\xf1\x70\x17\x00\xb4\x16\x4e\x91\x23\x67\x29\xca\xec\x55\x6c\x6c\x05\x6c\xdb\x20\x36\x60\x68\x5f\xbf\xaa\x0a\x0c\x5b\xa1\x8b\xec\x53\xae\xd9\xa8\x2c\xd3\x45\x10\x0f\x50\x12\x8d\x05\x7f\xac\xed\xfc\x3c\x5f\xf3\x1d\x0c\x71\x82\x17\x70\x2f\x1d\x50\xd6\x22\x6f\xb7\x3c\x86\x39\xcd\x13\xed\xca\x61\x1a\xd6\x87\xa7\xe9\x80\x11\xce\xbd\x4f\xc2\x09\xd5\x73\x21\x67\x2c\x8e\x81\x63\x74\xbb\x9f\xfe\x4c\xe8\x65\x1d\xdd\xd1\x01\x5b\xdd\xe3\x21\xc3\x1e\x25\x4a\x8c\xeb\x3d\x46\x45\xb9\x4c\x43\x45\x58\xd4\x6d\x6d\x00\xc2\x94\x01\x6a\x43\xfd\xb6\xe6\x15\xb2\x42\xe6\x4a\xb2\x25\xad\x18\x79\x1d\xb3\x55\x04\x38\x9d\xa1\xd5\x79\x7d\x46\x27\xbc\x62\xd9\x20\x73\xa0\x3a\x97\x40\x16\x54\xf7\xb0\xa3\xfb\x76\x2f\xa1\x30\x37\x67\xba\x09\x53\x7a\x27\xae\xcb\xd4\x03\x30\xde\xfa\xa0\x81\xf7\xf6\xe2\xbd\x5c\xe8\xc0\x7e\xbf\x58\xf6\xbb\x81\xf4\xb7\xc1\x81\x37\x3a\x0d\x4c\xd8\xb5\x2f\x88\x09\x73\x7f\x6f\xc0\x03\xfb\x1a\xac\xf9\xcd\x86\x95\xfa\x29\xa9\xd2\x32\x87\x59\x4e\xbb\x59\xe5\x7c\x0e\x18\xe2\x10\xf6\x10\x7b\x97\x6b\xce\x5d\x3d\x76\x5f\x31\xd8\x0d\x6b\x19\x56\xdd\xb3\x3f\x60\x4c\xaf\xba\x09\x0e\x0a\x0d\xf9\x50\x44\x71\x54\x86\xc1\x5e\x87\x2c\x05\xf3\xc0\x4a\x23\x25\x8f\xeb\x99\x61\x65\xdf\xe8\x3d\x48\x81\x72\x45\xf6\x7c\x20\xc9\x63\x55\xbe\xb1\x37\x88\xe0\x7d\x49\xc2\x62\xec\xfd\xdf\xfe\x18\xad\x95\x21\x2c\x87\x0e\xde\x9a\xe0\xad\xa9\xb6\xe0\xad\xd9\x9c\x44\xf0\xd6\x34\xb5\xe0\xad\xd9\x69\xfc\xe0\xad\x59\x6f\xc1\x5b\x13\xbc\x35\xc1\x5b\xd3\xdc\x82\xb7\x26\x78\x6b\xbe\x54\x6f\x4d\xa9\x6a\xdc\x87\xae\x5a\x55\x0b\x5d\xc4\xb7\xbd\x4c\x8a\x6a\x16\x95\xa9\x90\xfe\x2d\xfb\xaf\x87\x52\x5c\xab\xaa\xe6\x4d\xd5\xd6\xaa\x12\xbc\x61\x25\x18\xac\xb5\x36\xea\xa8\x85\x16\xbb\x31\xc6\x2d\xa9\xaf\x9f\xab\x01\xa7\x12\x43\x7a\x1f\x78\x7c\xee\xb3\x49\xdc\xc5\x72\x33\x28\x53\x4d\x62\xb2\xef\x2d\xa1\x23\xb3\x53\x5c\xe8\xf5\x87\x5c\xb3\x49\xf9\x46\x11\xa3\x8b\x06\x5b\x5f\xaa\x6b\x08\xb4\xbc\x40\x5f\x5a\x06\x5d\x8a\x4b\x91\x53\x51\xa2\x89\x61\xdc\x20\xd7\x66\xcb\x94\xbb\x78\x0f\x13\xa9\x64\xce\xb9\x91\x1d\x04\x77\x89\x14\x03\x66\x62\xcf\x04\x6b\x84\x75\xe4\x64\x35\x0d\x5c\x23\xaa\x1b\xe5\x36\x55\x62\xf0\xa9\xb6\xd7\xf8\xb9\x6a\x3c\x82\x3b\x13\xb6\xf9\xc5\xf6\x33\x60\x12\x05\xa5\x21\x3c\x59\xb1\xa2\x21\x44\xf6\x02\x89\xab\x3a\x59\xa6\x70\x1f\x69\x92\x88\xab\x21\x07\xcb\x40\x54\xde\xb9\xf2\x5b\x6f\xec\xbd\x1a\x5c\x22\xae\x16\xb0\xde\x57\x90\x0d\x75\xe4\xea\x2d\xd4\x91\xbb\x9b\x3a\x72\x15\x47\x63\xb5\xa0\x5c\x37\xac\xb0\xe0\xdc\x9d\x16\x94\x23\xe4\xbf\xdc\xc5\x7e\x12\xac\x77\x30\x4f\x34\xcb\xca\xb4\x56\x65\x77\x28\xb1\x2a\xe3\xdc\xe5\xd4\xad\x13\xa0\x99\x0d\x8d\x96\x9d\x43\xd5\x08\x15\xc7\xc3\x34\x59\x85\x0c\xd1\xe6\x9d\xa1\x7d\xd9\x56\x71\xf3\xba\xa4\x4d\xde\x63\x0f\x9d\x93\xd4\x8b\x85\x3d\x77\x57\xc4\x56\x9d\xcc\x8a\xec\x9b\x03\x2e\x59\x39\xb7\xec\x1a\x2f\x5b\x3b\x19\x7b\x0c\x60\xed\x3c\x97\xe0\x85\xc3\x05\xbb\x04\x5e\x1e\xa0\xfb\x6a\x34\xf2\xf2\x68\x5d\x04\xe8\xd1\xfb\x4d\x84\x84\x3e\x8c\x77\xe8\xe1\x5e\x3b\xb2\x7b\x8c\xb0\xe5\x50\xff\xa6\x72\x50\x7e\xd7\x7d\xac\xf7\x18\xc4\x92\xb4\x4f\x72\xac\x6c\x74\x79\x9c\x77\xf6\x72\x87\xb9\x64\x43\x12\x96\x86\x59\x7d\x77\x48\x54\xda\xb5\x0c\xe2\xdd\x26\x28\xdd\x69\x72\xd2\x97\x53\xad\xf0\x81\xdd\x5b\x5f\x40\xf9\x9f\xcf\xc4\x9d\x15\xea\xff\x34\xb5\x87\xaa\xff\x73\xe7\xee\xaa\x2f\xae\x0c\xd0\xbd\xba\xa7\xee\xc7\x35\xf5\x85\x95\x01\x7a\x10\x57\xd4\x67\x5e\x10\xe8\xee\x5c\x50\x7f\xea\x6a\x3b\x3b\xba\x9b\x76\xc7\xe0\x07\x75\x33\x3d\xa8\x8b\xe9\xe1\xdd\x4b\x3b\xc9\x05\x37\x75\x2b\xdd\xfb\xb5\x15\xbb\xc4\x9f\xef\x86\xcf\xf7\x97\xf0\x73\xcf\x01\xe7\x9f\x47\xa2\xcf\x03\x45\x99\x3f\x54\x84\xf9\xdd\x46\x97\x3f\x40\x62\xcf\x3d\x25\xf5\x3c\x60\x2c\xf9\xd0\xf3\x7d\xd0\xa9\x7e\x33\xc6\xb9\x4b\xec\xf8\x8e\xc9\x3b\x3b\x32\xcf\xfb\x4c\xda\xf9\x13\xf0\xcf\x9d\x92\x75\x02\x0b\x7d\x20\x16\x7a\x7b\xc9\x39\xf7\x97\x98\x13\x18\xa9\x6b\x37\x66\xa4\x3b\x26\xe0\xdc\x9a\x0d\xfd\x6e\x12\x6f\xee\x3b\xe9\xe6\x0e\x12\x6e\x1e\x22\xd9\xe6\x0e\x12\x6d\x82\xe7\xa1\x67\x0b\x9e\x87\xbe\x2d\x78\x1e\x9a\x5a\xf0\x3c\xd4\x5b\xf0\x3c\x04\xcf\x43\xf0\x3c\x04\xcf\xc3\xe6\x80\xc1\xf3\xd0\x38\x78\xf0\x3c\xfc\xe9\x3d\x0f\x43\x93\x58\x76\xc3\xe5\x87\x49\x5e\xb9\xdf\xc4\x95\xdb\x4f\x5a\x79\xc0\x84\x95\xcf\xc9\xb8\x31\x38\x41\x65\x37\x1c\xfd\x5c\x12\x53\x3e\x8f\xa4\x94\x07\x4f\x48\xb9\x69\x32\xca\xed\x24\xa2\xf4\x42\xd5\x4c\xc4\x47\x5c\xb3\x9b\x5e\xc8\x53\xc5\xa1\xa6\x5b\x79\xe8\xa5\x60\x31\xc9\x72\xed\x2e\x02\x09\x37\xf3\x74\x6e\xe3\xfd\xdc\xcc\xb3\xb6\x79\xe1\x7a\x9e\xb6\xf6\xd9\x5c\xcf\xd3\xb4\x67\xe1\x8e\x9e\xf5\x16\xee\xe8\x09\x77\xf4\x84\x3b\x7a\x6c\x0b\x77\xf4\x84\x3b\x7a\x42\xd5\xb7\x50\xf5\x2d\x54\x7d\xeb\xff\x55\xa8\xfa\xd6\xdc\x42\xd5\xb7\x21\x2d\x54\x7d\xeb\x3d\x7a\xa8\xfa\x16\xaa\xbe\x0d\x1b\x38\x54\x7d\xeb\x3d\x81\x50\xf5\xed\x5f\xb6\xea\x5b\xb8\xa3\xe7\x8b\xb8\x27\x22\x5c\x12\x31\x24\x5c\xec\xb3\xba\x24\x22\xdc\xd1\x13\xae\x87\xa8\xb7\x70\x47\xcf\x17\xc4\x7b\xc3\x1d\x3d\x5f\x32\xfb\x0d\x77\xf4\x04\x26\xbc\xbd\x85\x3b\x7a\xc2\x1d\x3d\x9d\x2d\xdc\xd1\x13\xbc\x35\xc1\x5b\xb3\xde\x82\xb7\xa6\xbd\x05\x6f\x4d\x57\x0b\xde\x9a\xd6\x16\xbc\x35\xc3\x5b\xf0\xd6\x04\x6f\x4d\xaf\x16\xbc\x35\xc1\x5b\xf3\xa5\x7a\x6b\xc2\x1d\x3d\xe1\x8e\x9e\x70\x47\x4f\xb8\xa3\x27\xdc\xd1\x53\x69\xe1\x8e\x9e\x70\x47\xcf\xdd\xdd\xd1\xb3\x96\x55\xf3\xe5\x5e\xd4\x33\x7c\x19\xe1\xb6\x9e\x70\x5b\x4f\x43\x0b\xb7\xf5\x84\xdb\x7a\xb6\xb5\x70\x5b\x4f\xb8\xad\xa7\xa5\x85\x9a\x79\x3d\x5b\xa8\x99\xd7\xb7\x85\x9a\x79\x4d\x2d\xd4\xcc\xab\xb7\x50\x33\x2f\xd4\xcc\x0b\x35\xf3\x42\xcd\xbc\xcd\x01\x43\xcd\xbc\xc6\xc1\x43\xcd\xbc\x3f\x7d\xcd\xbc\x70\x5b\xcf\x67\x79\xdb\x44\xb8\x6a\xa2\xa3\x7d\x3e\x57\x4d\x84\xdb\x7a\xfe\x35\x2f\x99\x08\xb7\xf5\x7c\xc6\xfc\x33\xdc\xd6\xd3\xdd\x3e\x1f\x16\x1a\x6e\xeb\xf9\x57\x66\xa4\xe1\xb6\x9e\x70\x5b\x4f\xd1\xc2\x6d\x3d\xc1\xf3\xd0\xd8\x82\xe7\x81\x04\xcf\x43\xd1\x82\xe7\xa1\xd7\xb8\xc1\xf3\x10\x3c\x0f\xc1\xf3\xd0\x3e\xe9\xe0\x79\x68\x19\x2e\x78\x1e\x82\xe7\x61\x4b\x0b\xb7\xf5\x34\xb7\x70\x5b\x4f\xb8\xad\x27\xdc\xd6\x13\x6e\xeb\xb9\xcb\xdb\x7a\xe0\x5a\x4b\x1a\xe9\x63\xc1\x35\xf0\xc6\x44\x94\xbe\x18\xf9\x62\xad\x37\x73\xba\xcd\xd9\x22\x97\x4e\xc7\x5d\xbc\x3f\x3d\x26\x11\xd5\x34\x11\x0b\x72\x2a\x62\x6b\xc3\xc5\x2f\x8a\x9f\x53\xd0\x34\xa6\x9a\x16\xe6\x7f\xa3\x0b\x5e\xb2\x18\x99\x5a\x0c\xd7\x84\xa5\x74\x01\x86\x79\x34\x4e\x22\x57\x40\x28\xb9\x82\x24\x99\x5c\x70\x71\xc5\xc9\x25\x48\x55\x61\x97\x9f\x44\x96\x7e\x22\x0a\xe4\xa5\xbd\xf1\x06\xae\x33\x83\x2b\x4c\xdb\x73\xd7\xcf\xa4\x3a\x5c\x19\xf6\x7d\x6c\x9f\x9e\x61\x98\x6c\xdb\xe5\x31\xc5\xda\x71\x99\x66\x4e\x4f\x8c\x10\xfb\xc4\xd0\x65\xae\x7c\x8c\xfa\x9c\x25\x30\x99\x51\x05\xb1\x1f\x57\x19\x72\x11\x32\xb6\x73\xcb\x35\x4b\xd8\xaf\xe0\xb8\xb9\xb5\xf1\x36\xed\x7c\x8f\x03\xbf\x5b\xe9\x9f\x90\x88\x46\x4b\x78\xce\x9a\xd5\xf5\x89\x9f\x6a\xf3\x4b\x7d\xf4\x77\x3f\x4e\xef\xcb\xa1\x8e\xdd\x07\x5e\x43\x8f\x99\x44\xfe\xb2\x22\x4a\x0b\xe9\x21\x9a\x49\x98\x44\x34\x89\xf2\x04\xb9\xc9\xd1\xe9\x89\x1d\xa9\xfb\x7a\xa7\x0e\x86\x5e\x2e\x7a\xc0\x8c\xfd\x27\xed\x73\xde\xc4\x02\x14\x0c\xd1\x26\x77\x93\x69\xa7\x90\x0a\xb9\x3a\xa7\x72\x01\x37\x26\xed\x37\x95\xbe\xea\x84\xfd\xef\xaf\xde\xbd\x79\xf1\xe6\xf5\xc9\x9b\x93\x73\xc7\x72\xbd\x37\xaa\x4e\xf2\xd3\xd2\xe3\x41\x94\x98\x6b\x37\x45\x92\xb0\x94\xe9\xe2\x2b\x4b\x9b\xcd\x6a\xa3\x65\xc9\x98\x6d\x96\x73\xcd\x52\xb0\xae\x27\xaa\xb5\x11\x35\x0c\xdd\xa4\x00\x1a\xef\x93\x4a\xe9\x05\x18\xbe\x49\x16\x39\x95\x94\x6b\xf0\x5c\x9e\x69\xfb\x51\x2c\x88\x12\x4e\x99\x65\xaa\x74\x53\x29\xd0\x36\x41\xe7\x54\x34\xb3\x1a\xec\x61\x49\x2f\xed\x85\x3f\x73\x61\x58\xb3\xd9\xd4\x54\xc4\x6c\xce\x22\x6b\x1d\x21\x29\x8d\x8b\xa4\x12\x27\xf0\x83\x2c\x4e\xb6\x72\xc1\x6d\x54\x59\x07\x33\xf0\x4b\x26\x05\x47\x45\xe6\x92\x4a\x46\x67\x09\x14\x0e\x38\x05\xda\x8e\x57\x2e\x88\x93\xd9\x4a\x43\x33\xbb\xb2\x23\xb8\xdd\x70\x37\x45\x35\xf7\xf7\xe8\x51\x63\x47\xe7\x65\xfa\x57\x29\x88\x98\x0e\x98\xcb\x0b\x88\x41\x31\xc7\x15\x25\xc4\x79\xe4\x61\x27\x74\x26\x99\x55\xcb\x68\x81\x32\x8e\x4b\x53\x45\xd2\xdc\x9c\xc2\x46\xc2\x51\x8a\xcd\x12\x18\x1b\x39\x86\x35\xe7\xad\x94\x7d\xcc\xc0\x80\x19\x7b\x42\xe9\xe2\x12\x0c\xc2\x19\x44\xb6\x32\x28\x80\x11\x72\x04\xde\xda\x44\xad\xa8\xe2\x9d\x96\xe6\xac\x8d\x9c\xcb\xfa\x64\x4e\x56\x22\x97\x6b\xe7\xc2\x92\x1a\x44\x46\xf2\x6d\x9c\x88\xcb\x35\x43\x26\x34\x26\x31\x18\x89\x9e\x71\x73\x44\x2d\x84\x88\x8d\x60\x2f\xc5\x35\x4b\x71\x14\x47\x01\xc5\xb6\xcd\x56\x24\x16\xb9\xf5\xfe\x21\x9e\x98\xb3\xc0\x1d\x63\x19\x8d\x2e\xcc\x1c\xb0\xe3\xb6\x2c\xc1\x03\x9d\x66\x07\xf8\x96\xfb\xaf\xfb\x52\x4d\x7f\x56\x82\x97\x6e\xdf\x62\x59\xd3\x7e\xdb\xcb\x14\x99\x81\xd2\x13\x98\xcf\x85\xd4\xff\x30\x1b\x9c\x73\x24\x1b\x2e\x0a\x08\x7a\x14\x42\x1f\x3f\x82\x1b\xd3\x3d\xd6\xe9\x5e\xc8\x2d\x2c\xa4\x82\x7c\x4d\x4c\x30\x33\x14\x2f\xf9\x21\xf9\x7f\xfb\xff\xfc\xcb\xef\x93\xd1\xf7\xfb\xfb\x1f\x9e\x4e\xfe\xfe\xf1\x2f\xfb\xff\x9c\xe2\x3f\x9e\x8c\xbe\x1f\xfd\xee\xff\xf8\xcb\x68\xb4\xbf\xff\xe1\x87\x37\xaf\xce\x4f\x5f\x7c\x64\xa3\xdf\x3f\xf0\x3c\xbd\xb0\x7f\xfd\xbe\xff\x01\x5e\x7c\xec\xd9\xc9\x68\xf4\xfd\xbf\x37\x4c\x88\xf2\xd5\xbb\x79\x2b\x19\xf7\x4a\x76\x9d\xf4\x39\x91\xd6\x34\x67\xc6\xf5\x44\xc8\x89\xfd\xe0\x90\x68\x99\x6f\x97\x53\x8d\x50\xdb\xe5\x20\xed\x7b\x22\xbc\xad\xf4\x55\xf3\x9b\xb8\x4b\xd7\x9c\xd1\xce\xcc\xa6\xe0\xed\x99\x95\xfb\xe6\x66\xdb\xbd\x4c\xdf\x7c\xc8\x9d\x6d\xe9\x11\x85\x75\xf7\xe5\x63\xe5\x83\x0f\x6a\xfd\xd7\x12\x5e\x2d\xcf\x6f\x1b\xab\x87\xf4\x34\xcc\x38\xd2\xb9\x85\x99\x64\x42\x32\xbd\x3a\x4e\xa8\x52\x6f\x69\x0a\x37\xdd\x90\x93\x79\xa9\x63\x8d\x0d\x41\x9b\x13\xc8\x1d\xd1\x2e\x1a\xc4\x0d\xd9\x0c\xf0\x93\x39\x2a\x19\x95\x7e\x3c\x50\xfd\xb7\x05\x61\x7a\x12\x17\x92\xfc\x0a\x52\xb8\xeb\xf7\x24\x58\x45\xa5\x71\x04\xf7\x59\xfb\x3e\xb4\x80\x4d\x41\x94\x23\xd8\x8c\x84\x74\x6d\x74\x8d\x39\x5b\xdc\x14\x74\x67\xdb\x3a\x25\x11\xe5\x66\xa1\x78\xa1\xe4\x9c\x7c\x4a\x60\x41\xa3\xd5\x27\xb3\xe0\x4f\x12\xcc\x14\x8d\x82\xf7\xc9\xaa\x0d\x6b\x8a\x81\x0b\xbc\x61\x8a\x00\xc3\x3b\x46\x19\xff\xd9\x6a\x83\x5e\xb5\x6e\x9c\x89\xc4\x74\xfd\x4c\xc4\x53\xb3\x07\xd3\xda\x6a\x91\x85\x16\x0f\x0b\x61\xe2\xc3\x93\x8f\x1b\x6f\x3a\x3b\xa3\x16\x56\x63\xac\x12\x87\xcc\x91\xed\xb7\x49\x36\x1e\x20\xe4\x28\x4e\x19\x1a\x47\xc9\xfe\xe9\xd9\xd1\x68\x6d\xe5\x46\xce\xb1\x07\x71\x2c\xc0\x87\xbe\x98\x81\x54\x69\xe6\xc4\x43\x14\xd3\x09\x2d\x09\x63\x3e\xa1\x9f\x8b\x01\x30\x5a\x3e\x5b\x52\x68\xfd\x64\xcf\x8e\xc8\x27\x23\x23\x27\x8c\x83\xdd\x83\x4c\xb2\x4b\x96\xc0\xc2\xcc\xa4\xe2\xce\x27\xc7\xb9\x94\xc0\x75\xb2\xf2\x37\x42\x6e\xdf\x5d\xa6\xcc\x79\xb5\x8e\xe8\x0e\x39\x1b\x27\x53\x18\x14\x0a\x64\x30\xbd\x28\x88\xa7\xe4\x0c\x7b\x5a\x59\x07\x84\x7b\x0f\xf7\x1e\xa5\x8a\x26\xe4\x21\x12\x94\x21\x22\xc6\xed\x57\x2c\xb6\x82\x00\x48\xd9\x66\x68\xc3\xdc\x72\xab\x46\x8a\xc4\xe8\x8a\x85\xd6\x6a\x0e\x70\x34\xab\x20\xb0\x51\x00\x73\x31\x4b\x0e\x90\x5b\x36\xb0\x19\x46\xdd\x19\xce\x4e\x36\xf4\xeb\x6b\x93\x1d\x4e\xcc\x1a\xe7\x39\xc6\x29\x79\x9d\x1c\x99\x49\x55\xe4\xaa\xc9\x9c\xd5\xd9\x8e\x4b\x2b\x01\x65\x0e\xf3\x95\x9f\xa2\x84\x59\xce\x12\x34\x61\xb2\x02\x1c\xcd\xf2\x2e\xd2\x21\xad\x9a\x06\x44\x96\xba\x5b\x6e\xf3\x2c\x13\x52\x97\xb6\xa7\x68\x4d\xe7\xb7\xf6\x9c\x2d\x70\x34\xd3\xcd\x24\x64\x54\x16\xa7\x9d\x02\x12\x2d\x29\x37\xb2\x56\x0b\x5c\xde\x08\x4c\xd7\xb7\x65\x2d\xcc\x6c\xe8\x4c\xe4\x1a\x31\xde\x71\xa0\xb9\xc8\x79\x4c\x0c\x73\x3d\x24\x4b\xad\x33\x75\x78\x70\x50\x9e\xfe\x53\x26\x0e\x62\x11\xa9\x83\x48\xf0\x08\x32\xad\x0e\x3c\x2f\x38\xc8\x44\x3c\xf1\x7f\x4c\xa8\x27\xe5\x83\xc7\xbb\x32\xdf\x82\x7d\x1f\x12\xbb\xe1\x0d\x6f\x01\xcf\x5b\x6e\xba\x9c\xb4\x7f\x6c\x5e\x28\x81\xbb\xf5\x25\x2d\x12\x17\x1e\xd9\x78\x02\xaf\xdf\x7f\x5a\xbe\x5f\xdc\xcf\x5a\xe8\x18\x15\x96\xfd\x58\x55\xbb\x6e\x3f\xa3\xda\xac\xcb\x1d\xf6\xe4\xfe\x16\xde\x73\xcf\xb5\x8d\xdc\x5d\xae\x02\xe5\x2d\xad\x29\x5e\xdd\x6a\x54\x33\xfb\xc4\x30\x5c\xbe\x22\x86\x34\xb4\xbb\x47\xd8\x5a\x36\xdb\xac\x08\x4b\x23\xa1\x61\x65\x8a\x6f\x0a\xd7\xdb\x18\xe6\x73\x88\xf4\x77\x15\x53\x55\x51\x5b\xa1\x70\x6d\x7d\xe3\xff\xf5\x5d\x33\xa3\xea\xe5\x85\xea\x17\xee\x61\xa7\xd4\x6e\x42\x1f\x66\x3a\x7f\x81\x3d\xd6\x24\x25\x0b\x3c\x3b\x18\x9a\x12\xd0\x17\xec\xec\xb1\xd6\x33\xe1\x24\x50\xc3\xb9\x2a\x2f\x77\x06\x3c\x20\xd3\xae\x1c\x38\xce\x92\x5b\x7a\x04\x81\xbc\x15\xae\x48\x0d\x8c\xc9\x29\x5e\xa7\x5b\xfe\x82\x67\xff\x5b\x61\xcb\xd5\x74\x04\x79\xf6\x74\x51\x74\xc6\xcb\x0c\x83\xe7\x0f\x65\xf8\x8c\x05\xcc\x5a\xf8\x4c\x49\x58\x55\x5f\x58\x2b\x60\x2f\x60\xd5\x09\x55\x17\x86\xe0\x42\x77\xd0\xd7\x34\x2e\x71\xd4\xeb\x20\x36\x32\xe1\x1f\xae\xa6\x81\x48\x67\x8c\xdb\xa9\xd8\x81\xfd\x3e\xe3\xd8\x7e\x3f\x78\x8c\x7f\x76\x4f\xa2\x27\xb4\xfb\xc5\xf0\x0c\x03\xf9\xbb\x01\xf1\x39\x85\xf7\xb9\x0b\xa4\xdb\xe2\x70\x2a\xc1\x37\x2f\x7e\xc9\x69\x32\x25\xcf\xed\x49\x80\xc0\xb3\x3f\x75\x91\x9b\xed\x62\xc3\x27\x7f\xc5\x92\x38\xa2\x32\xc6\x53\xd3\xb2\x1f\xa2\x84\x45\x1c\xea\xe5\xc4\x8e\xbe\x3d\x03\x2c\x91\xc7\x5e\x74\x4d\x32\x2a\x35\x8b\xf2\x84\xa2\x50\x00\x0b\x21\x3b\x82\xcf\x7b\x6e\x66\x89\xcd\x67\x10\x09\x1e\x77\x78\x0f\x87\xed\xea\x79\xbd\xf3\xea\xf6\xa2\xf0\x0c\x92\xb9\x3a\x29\x2c\x85\x3a\x79\xed\xaf\xe9\xdf\x1d\x63\x89\xb9\x67\x76\x05\x6f\x19\x5b\xc9\xf5\x8a\x29\xa8\x96\x73\x62\xca\x87\xf6\x8f\x2a\x07\x4e\x41\xed\x53\xf2\x9f\x2b\x2f\x1e\x74\x85\xfc\x30\xed\xdd\x59\x68\x30\x72\xf3\x75\xa4\xe8\x76\xb2\x64\x23\x73\x21\xe1\x12\x24\xd9\x8f\x05\x7e\x83\x65\x99\x46\x53\xf2\xdf\x46\xed\x6c\x73\x05\xd9\xc6\x61\x61\x0b\xfb\x38\xc2\x2e\x32\x2e\xf0\xd2\x7e\x74\x33\x3e\x25\xfb\xb6\xd6\x13\x4b\x53\x88\x19\xd5\x90\xac\x46\x36\x82\x1a\x9c\x05\xaf\x0f\xd6\xf4\xa9\x62\x56\xa9\x5e\xf6\xf5\xdf\x5a\xde\xc4\xc9\xde\x26\x52\xfd\xe4\x4d\xdb\x25\x60\xad\x9a\x52\xc3\x9e\xc2\x19\xda\x19\xa8\xd0\x18\x01\x36\x2e\x79\x4d\xc5\x0a\xec\x79\x73\x81\x5b\x3f\x1b\x04\xa5\x44\xc2\x02\xe9\xd3\xd2\xdc\x0d\xa8\x93\x45\xdb\x8b\xb8\x75\x08\x21\xed\x5e\xb1\x09\x31\x5a\xe7\xd7\x7f\x8b\xa9\xa6\x0d\x2f\x58\x94\x59\x65\xdb\x48\xad\x4b\xb6\x29\x3b\x6f\xda\xeb\x1e\x6e\x1e\x37\xfc\x4e\x3d\xa0\xc6\xb8\xed\xcb\x3e\xd8\x75\x82\x66\x70\x1b\x9b\xe8\xd1\x60\x22\x61\xc1\x94\x96\xab\x8a\xb3\xc3\xb9\x51\x05\x61\x5c\x69\xca\x35\x43\x56\x4d\xfc\x9b\x13\x67\xe7\x37\x5a\xd9\xf6\xfd\x7f\xc7\x93\x95\x35\x22\x63\xda\x8d\xd5\xc5\xce\x57\x19\x90\x6f\x2b\x7f\xbc\x92\x59\xb4\xfd\xfb\x93\x39\x71\x0c\xd4\xe2\x26\x8d\x63\x09\x6a\x93\xb3\x6d\xfb\xba\x15\x7c\xde\x2c\xb6\x2b\x04\x4f\xbd\x59\xcd\x65\xfe\x28\xc5\x16\x46\x49\xf1\x85\x1b\xbd\xdf\x68\x4d\x59\xb1\xaa\x26\x7e\x68\xbd\xc3\x90\x16\x27\x26\xd3\x5e\x6b\x8c\x04\x57\x79\xea\x33\x41\x8c\x8a\x9d\x01\x8f\x81\x47\x2b\x2c\xf4\x94\x5c\x42\x83\x85\xe1\x47\xd5\x80\x12\x84\xfc\x1f\xb6\x58\x9a\x8d\xb2\x93\xab\x4a\xce\xde\x43\x5e\x9b\x29\x53\x06\xf0\x73\x90\x12\x62\x9b\x29\x63\x84\x5e\xdf\x43\xc5\xe3\xe9\x2a\x4f\xf9\x20\xce\xfa\x64\xb1\xfc\xdf\xf6\xe9\x9e\x17\x65\x27\xbd\x6b\xc4\xc3\xd4\x72\x20\x03\x8e\x85\xb0\x11\x05\x99\x50\xcc\x17\x79\x2b\xce\x85\xb5\xd2\x95\x62\x6e\x0b\x4b\x36\x8f\xb5\x9e\xd2\x86\x81\xcf\xb5\x45\xa3\x75\x21\xe7\x76\x33\xa1\x6a\x3b\xf5\xbc\xb0\xa1\x38\xe6\xf9\xe6\x56\x17\xc1\x38\x98\x07\xb7\xbe\xb4\xf2\x2c\x93\x94\x5f\x40\x4c\x12\xb8\x66\x91\x58\x48\x9a\x2d\x59\x84\x25\x0c\xad\x5b\xd9\x68\x8c\xda\x86\x51\x35\x63\x78\xd3\xe9\x95\xe5\xb3\x84\xa9\xe5\x76\x07\x65\x2b\x71\x28\x88\x24\xe8\xad\x9c\xaf\x0f\x6d\x9c\xd9\xcf\x4b\xe1\xc7\x07\x98\xbb\x7e\x5d\x7e\x86\xc5\x76\x9f\x45\x4a\xa3\xc8\x10\xb6\x77\xb6\x82\x93\x04\x2b\x44\xd4\xc0\x21\xb4\xf7\x68\x99\x5e\x2e\x00\x32\x8b\xcf\x18\xac\xa6\x52\xb4\x62\x2a\xc6\x23\xc0\x92\x8c\xae\xb4\x26\x80\xf7\x36\x68\xc9\xc0\x4a\xb0\x80\x0e\x46\xbf\x8b\xc0\xf5\x76\x89\xb3\xdd\x88\xd0\x62\x40\x68\x87\x78\xc1\x0b\x3b\x81\x5e\xe1\xa1\x5e\x28\x30\xff\x36\xe0\xc5\x27\x43\x37\xdb\x56\xe0\x3c\xb3\xa1\xd7\x3b\xf3\xc3\x1f\xd7\x7a\x71\xa1\x60\x8a\x2c\xc5\x95\x1b\xa0\xce\x31\x9c\xc9\xd3\xa3\x41\xcc\x54\x64\xd8\x4c\x83\xe1\xe8\x58\x70\xe5\x2b\x6e\x52\x6e\x8b\x64\x5e\xd2\xc4\x65\xc3\xba\xc1\x32\x91\xa0\xcb\x35\xce\xbd\xbe\x6a\x53\x7d\x20\x9d\x41\x1c\x43\xec\xe3\xcb\x57\xa4\xe1\xd0\xef\x10\x38\xba\x64\x02\x7f\x2c\x9e\x8a\x24\x69\x3f\xd3\x5b\x0d\x2b\x7d\xcc\x2a\x1e\x00\xbd\x63\x5a\x3a\xc4\xcc\x13\x0f\x50\x67\x17\x37\xd4\x51\xfa\xbc\x11\xc9\x8c\xc2\x52\xc0\x7d\x06\xfa\x0a\x80\x93\x68\x09\xd1\x85\x2a\x43\xf5\xb4\xa1\xc3\xda\x46\x3b\x63\x6d\xbb\x80\x58\xe5\xa0\x85\x60\x6a\x36\xd4\x65\xb4\x03\x61\x46\x2d\xe4\x70\x55\x8f\x0b\xdb\x3c\xb8\xe8\x25\x65\x09\x9d\x25\x1d\x0a\xf3\xc9\xbc\x7c\x73\x5c\x9d\x3f\xf3\xd2\x51\x96\x27\x89\xf3\x7f\x63\x44\x8c\x96\x74\x3e\x67\x11\xc6\x3a\x62\x44\x50\x19\xd9\xbb\x75\xe9\x3b\x45\x01\x29\x4d\x75\xbe\xb1\xf5\x2d\x78\xd3\x86\x2f\x46\x0b\x65\x8d\xf6\xd6\x3e\x18\xf2\x7e\x5d\x83\x35\xb3\x03\xab\xa2\xaf\xb9\xce\xa6\xe4\xad\xd0\x2e\xe2\xee\x0d\x28\xe5\xa2\xfd\xc8\x7b\xa0\x4a\xf0\xca\x51\x80\x9a\x87\x64\x0b\xc6\xe9\xf6\x92\x04\x76\xfd\x55\xc3\x7a\xa1\x68\xd2\x15\x96\x24\x66\x0b\x49\x75\xc1\xc1\xcb\x25\xba\x43\xd3\x89\x05\xd6\x63\x31\x25\x47\x7c\x85\x68\xe3\xc2\xf0\xb6\xdb\x54\x19\xd7\x52\xc4\x79\x04\xae\xf8\x72\xae\xaa\x1d\xdf\xea\x39\xd0\x8f\x2c\x8f\xfd\xe0\x65\xae\x41\x0c\x9a\x32\xe7\x32\x17\x1c\x08\x55\x99\x51\xff\x3d\x19\x58\xef\x59\xb9\x41\x78\x0a\x1e\x9d\x9e\x90\xf7\xd0\x8e\x8d\x93\x49\xd3\x24\x30\x6a\x44\x69\x99\x47\x78\xc8\x1a\xea\xe7\xb1\x3b\x2e\x2d\x01\xd8\xa8\xcd\x4a\x8e\x93\x33\x1a\x5a\xa9\x38\xa3\x7a\x49\xa6\x76\x43\xa7\x15\x70\x12\xf2\xd2\x1c\xb8\xd7\x34\xcd\x12\x18\x37\xba\x58\xfe\x0d\x0f\xb6\x97\x42\x9c\x59\x94\xb0\x33\xf9\xad\xe9\x6d\xf3\x9f\x83\x83\x3a\xc2\x8a\x99\x51\x52\x9c\x0f\x01\xf1\x76\x2e\xc4\x63\xb5\x0e\xaf\x26\xd0\xf8\x3e\x7f\xc0\x80\xd4\x2d\x2b\xc1\x19\x52\x09\x87\x64\xef\xc8\xf3\x92\xbd\x31\xd9\x3b\x95\x62\x81\xd9\x29\x7c\xe1\x72\x48\xf6\x9e\xc3\x42\xd2\x18\xe2\xbd\x8e\xb1\xfe\x82\x59\x4c\x6f\x40\x2e\xe0\x07\x58\x7d\xdb\x70\x54\x6d\x7e\xe1\xcf\xde\x6f\x31\x17\xaa\xeb\x13\x23\x1e\x19\x19\xe2\xdb\x94\x66\x7d\xde\x7d\x43\xb3\x3e\xb3\x39\x2e\x89\xf1\xc3\xc7\x14\x34\xbd\x7c\x36\x2d\x51\xf9\xd3\xcf\x4a\xf0\xc3\xbd\x12\x7e\x63\x91\x32\x0c\xfe\x5b\xed\x91\xb5\x45\x1c\xee\xe1\x2a\xdc\xaf\x1e\x18\x87\x7b\x66\xfc\x3d\xc3\xf1\xb4\x98\xe5\xf3\xc3\x3d\x8c\x8e\x1b\x3f\x1b\x4b\xc8\xc6\x46\x4a\xfe\xb6\xec\x7b\xef\x53\x33\x62\xb9\x95\x59\x47\x2f\xe2\x6a\x93\xab\xe5\xdf\xfe\x68\x11\xe6\x5a\x8e\xf1\xae\x90\xdd\x09\x49\xa8\xd2\xe7\x92\x72\x85\xd3\x3d\x67\x69\x13\x60\x27\x24\xb5\x0c\xb5\xf1\xb9\x44\x26\xdb\xf8\xd8\xa2\x6d\xe3\xe3\xc6\x3d\xed\x16\x44\x36\xd7\x70\x1b\xce\xb3\xcd\x5e\xcb\xec\x5e\x23\xe6\x7b\xd3\x69\xb1\xd7\xe6\x60\x76\x6f\x83\xab\xf7\x6e\x18\xa4\x3b\x49\x30\x7d\x0c\xb7\xba\xed\x3c\xb6\xbc\xae\x30\x7a\x5d\xb9\x2a\xf0\x24\xe7\x31\xc8\x04\xe3\x03\xca\xf1\xac\x77\x38\x9e\x3a\x5b\x1a\x2d\xcc\xa2\x18\xb9\x8e\xc2\x04\xaf\xf8\xe0\x6c\xac\xab\xef\xd1\xf0\x64\x57\x68\xdf\x76\x83\x32\x4b\x14\x41\xa6\xdb\x85\x96\x5e\x26\x6e\x6f\xa7\x34\x32\xf7\x44\x37\x63\x95\xc3\xa9\xdb\xd8\x2f\xd7\x95\x0d\x26\x5b\xe6\x29\x35\xe7\x3d\x8d\x31\xb6\xb5\x78\x66\x4d\x0e\xd6\x44\x60\xcf\x31\xeb\x2e\xb7\x7e\x4c\xbf\x7d\x9d\x3b\xe4\x64\x00\x5a\x54\x8a\xe8\x30\x3e\xf6\x82\x59\x4a\xaf\x5f\x03\x5f\xe8\xe5\x21\xf9\xeb\x57\xff\xfb\xeb\xff\x68\x78\xd1\x1e\x25\x10\xbf\x02\xee\x8c\xae\xb7\x01\xbd\xcd\x5e\xeb\x5e\x83\xa9\xcf\xae\x98\x2e\xca\x77\x0a\xff\x5c\x89\x95\x57\x14\xe3\x9f\x9d\x18\x94\x67\xed\xe0\x7c\x89\x29\x3e\x4a\x53\x1e\xc1\xd8\x48\xd7\x5b\x87\x61\xc5\x49\x99\xac\xc8\xb3\xaf\xc6\x18\x9d\x8d\x93\xda\x38\x0c\x3f\x5c\x7f\x9c\x6e\x59\x0c\x53\xe4\xef\xe3\xda\x4c\x99\x22\x66\xef\xc5\x1c\xd1\xb4\x65\x92\x68\x45\x91\x60\x25\x1d\x6f\x53\xdb\x94\x74\xa0\x58\x49\x17\x26\x74\x99\xfa\xfb\x99\xf9\x53\xc6\x59\x9a\xa7\x87\xe4\x69\xc3\x2b\x96\x23\xdf\x06\x7a\xd8\x9e\x4a\x29\x90\x1a\xb6\xbc\x90\x34\x4d\x31\x89\x91\xc5\xc0\x35\x9b\x33\x0c\x56\x2b\x48\x0c\xcd\x62\xf6\x43\x1f\x60\x59\x00\x1f\x63\x2f\x0d\x1b\xed\x45\x74\xa7\x56\x2c\x96\x28\x3b\x39\x27\x78\x54\xe5\xbc\xab\x0c\x2c\x55\x5a\x2d\x9c\xc0\x75\x66\x15\xa3\x8a\x3b\x36\x05\xca\x19\x5f\xa8\x32\x4e\x1a\xf9\x5f\x9b\xb7\xc9\x7c\x76\xb5\x04\x17\x89\x05\x55\x67\xbb\x2f\xb3\x65\x34\xb3\x32\x3f\x00\x73\x46\xda\xd9\xc7\xa6\x6b\xc3\x28\x31\x29\x24\xc7\x54\x41\x0f\x37\x46\x25\x88\xda\xdf\x3d\x52\xe4\xb6\xdf\x1a\x03\x7a\xf6\xf4\xab\x56\xbc\x2b\xde\x6b\x7c\xa9\x0c\xaf\xfe\x70\x34\xf9\x6f\x3a\xf9\xf5\xe3\xbe\xfb\xc7\xd3\xc9\xdf\xff\xff\xf8\xf0\xe3\x93\xca\x9f\x1f\x9b\xa3\xa2\xb7\x2b\xa2\x65\x5b\xc3\x61\x77\xd6\x7a\x65\xc4\xe3\xc7\xd8\x47\x61\x9e\xcb\x1c\xc6\xe4\x25\x4d\x14\x8c\xc9\x8f\x1c\xcf\xc9\x1b\x02\xad\x3d\x58\xc9\x48\x36\x7b\x66\xd4\x26\x79\xdb\xbd\x82\x53\x6a\x7f\xc7\x4d\xb7\xcd\xa2\x73\x0b\x84\xee\xad\x78\x15\x2e\xc9\x2b\xe8\x69\x13\x32\xe7\x42\x4c\x9d\xde\x34\x8d\x44\x7a\x50\x3c\x6f\xc3\xdb\x66\x05\x8f\x60\x69\x56\xbe\x22\x25\x1b\xb7\x2a\x4d\x9d\xdc\x14\x26\x06\xd2\x48\x0a\xa5\xca\xeb\x26\x48\xc2\x2e\x80\x1c\x95\x46\x14\x73\x38\xcc\x20\xa2\xa8\x15\xca\x19\xd3\x92\x5a\x7f\x92\x57\x0a\xac\xb5\xaf\x65\x36\xb9\x82\x79\x9e\x90\x7d\x05\x40\xa6\x18\xf8\xbd\x71\xce\x8c\x9c\x2b\x68\xc6\x12\x86\xb9\x96\x24\x86\x48\xf0\x79\xc2\x9c\x9a\x9a\x66\x42\x6a\xca\x5b\x2b\x8c\xd8\x54\xfd\x05\x5c\x13\x56\x44\x5b\x99\x8f\xf7\x63\xae\x9e\x3d\xfb\xea\xaf\x67\xf9\x2c\x16\x29\x65\xfc\x65\xaa\x0f\x46\xdf\xef\xff\x92\xd3\x04\xe3\x7f\xde\xd2\x14\x5e\xa6\x7a\x74\x7b\x12\xc7\xb3\xaf\x7b\x90\xf2\xfe\x07\x4b\xb0\x1f\xf7\x3f\x4c\xdc\xbf\x9e\xf8\x9f\x46\xdf\xef\xff\x73\xda\xfa\x7c\xf4\xe4\x00\x13\x24\x0a\xba\xff\xf8\x61\x52\xf2\x80\xe9\xc7\x27\xa3\xef\x2b\xcf\x46\xdb\x38\xc2\x66\xa5\xb7\x94\x66\x93\x8b\xc6\xd2\x97\x8d\x7a\x45\x53\xc9\xb8\x6d\x8a\xa8\x4d\x58\x7b\x43\xb3\xf7\x30\x07\x09\x3c\xea\x36\x8f\x1f\x6f\x7c\x42\xf6\x63\x23\x4f\x61\x9a\xf2\xc8\x6b\x12\xb2\x78\xea\xa4\x8a\xe2\x3b\x7f\xd4\x16\xb7\xac\xd5\xe3\x0d\x7d\x16\x5d\x61\x9b\x72\x72\xfd\x16\x43\x64\xd9\xeb\x70\x6b\x73\x97\x7b\xdb\xa8\xbb\x2d\x8f\x30\xaa\x7a\x07\x23\xb6\x91\x0d\xac\x31\xbf\x4d\x9d\xeb\x81\xe4\xfd\x14\x11\xde\x92\x40\xd1\x39\x48\xb1\xce\x9d\x7b\xf0\xac\xec\x27\x6b\x53\xde\xb9\x9f\x9c\x35\x6a\xfa\x7d\x4f\x80\x1f\x4f\x9e\x5b\x9c\x41\x06\x8c\xe2\xfd\x52\x24\xb1\x22\x39\x67\xbf\xe4\x40\x4e\x9e\x17\x95\xcc\x18\x8f\x92\x1c\x6f\x1a\xfb\xf1\xc7\x93\xe7\x6a\x4a\xc8\x7f\x3a\xa6\x7b\xd5\xcc\x5b\x6d\xcd\xd0\x77\x6f\x5f\xff\x5f\x34\xda\xe1\x97\xee\xa2\x1f\x5f\xc9\x92\x51\x6b\x6d\xb7\x92\x90\xe9\xd5\x86\xc5\xe3\x8c\x22\x9a\x35\xdb\x4f\x89\xf3\x49\x70\x9b\xea\xb0\x84\x24\x53\x98\xc4\x49\x54\x2e\xdd\x6a\xcc\x80\x36\x97\x0c\xcb\x6c\xb8\xa0\x20\x9f\x97\x8a\x79\xbf\x3b\x65\x97\x44\x82\x73\x88\x30\xea\xca\x68\x04\x7d\x38\x44\xf5\xfd\xba\xb6\xb5\x55\xbd\xa8\xa7\x89\x94\x63\x7a\xfe\xe1\x9d\x3f\xb7\x4f\xe8\x86\x22\xdf\x39\xbd\x0a\x67\xbc\x03\x55\xbb\xb8\x89\x9d\xf1\xdb\xcc\xc1\xc1\xed\xce\x59\xc2\xc6\x7a\x77\x1a\xd1\x3a\x64\x30\xd0\xe5\x7d\x87\x5f\x6e\x3d\xe4\x7c\xc3\xcc\x54\xab\x1d\x80\xce\xa1\x22\x56\x66\x49\x15\x99\x01\x70\xf4\x55\x59\x9f\x04\x70\x87\xf3\x50\x7a\x92\xf2\x6c\xa2\xc5\xa4\x41\xd9\xed\x80\x5c\x37\xd4\x5a\x6c\x39\x6b\x6b\x3b\x1a\x6c\x9d\xb9\x5a\xae\xb6\xc1\x40\x95\xf7\x8c\x15\x72\xe3\xd0\x85\x35\xab\xc8\x6b\x73\x76\x0e\xa4\xe2\xd8\xc6\xbf\x36\xa7\x74\x65\x58\x57\xd5\x0a\xa8\x05\x86\x4e\x74\x9a\xf9\x3b\xe6\x68\xb7\xf9\x0c\xe4\x25\xeb\x21\x7c\xbc\x5f\x7f\xbf\x17\x6b\x79\xf5\xfe\xf4\x18\xd3\x9c\xcd\x07\xde\xf7\x8a\xd8\x5f\x95\x2a\x86\xb3\x95\x2e\x96\x10\xd9\x30\xca\xa3\xbb\x27\x68\x23\x8e\xef\x3c\x08\xda\xfa\x23\xd1\xe1\x50\x6f\x4d\x3c\x44\xd0\xb6\x65\x6a\x0e\xe9\x63\xa8\xbc\x61\xf9\xd8\x5a\x6e\xaf\xd2\x42\x1a\x72\x5d\xfb\x2d\x9f\x15\x6a\x55\xd9\xbb\x53\xc1\xc9\x6f\x7f\x3c\xfa\x9f\x00\x00\x00\xff\xff\x0e\x0a\xc6\x9d\x2b\x56\x01\x00") func operatorsCoreosCom_catalogsourcesYamlBytes() ([]byte, error) { return bindataRead( @@ -105,7 +105,7 @@ func operatorsCoreosCom_catalogsourcesYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_clusterserviceversionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x73\xe3\x36\x96\x30\x8c\xff\x3f\x9f\x02\xe5\xc9\x3e\xb6\x67\x24\xb9\x7b\x6e\xbf\x99\xfe\xcd\xbb\x29\xaf\xed\x24\x7e\xd3\xed\x56\xd9\x4e\xe6\x99\x4a\xb2\x59\x88\x3c\x92\xb0\x26\x01\x2e\x00\xca\xd6\x3c\x79\xbe\xfb\x5b\x38\x00\x48\x50\x17\x5b\x12\xd9\x6d\xd9\x01\xa6\x2a\xd3\x16\x49\x10\x3c\x38\x38\xf7\x0b\x2d\xd8\xf7\x20\x15\x13\xfc\x1d\xa1\x05\x83\x07\x0d\xdc\xfc\xa5\x06\x77\x7f\x55\x03\x26\x4e\x66\x6f\x7f\x73\xc7\x78\xfa\x8e\x9c\x95\x4a\x8b\xfc\x1a\x94\x28\x65\x02\xe7\x30\x66\x9c\x69\x26\xf8\x6f\x72\xd0\x34\xa5\x9a\xbe\xfb\x0d\x21\x94\x73\xa1\xa9\xf9\x59\x99\x3f\x09\x49\x04\xd7\x52\x64\x19\xc8\xfe\x04\xf8\xe0\xae\x1c\xc1\xa8\x64\x59\x0a\x12\x27\xf7\xaf\x9e\xbd\x19\xfc\x6d\xf0\xe6\x37\x84\x24\x12\xf0\xf1\x5b\x96\x83\xd2\x34\x2f\xde\x11\x5e\x66\xd9\x6f\x08\xe1\x34\x87\x77\x24\xc9\x4a\xa5\x41\x2a\x90\x33\x96\x80\x7b\x5e\x0d\x44\x01\x92\x6a\x21\xd5\x20\x11\x12\x84\xf9\xbf\xfc\x37\xaa\x80\xc4\xac\x62\x22\x45\x59\xbc\x23\x2b\xef\xb1\xf3\xfa\xc5\x52\x0d\x13\x21\x99\xff\x9b\x90\x3e\x11\x59\x8e\xff\x76\x40\xb0\xaf\xbf\xb1\xaf\x77\x90\xc3\xeb\x19\x53\xfa\xdb\xf5\xf7\xbc\x67\x4a\xe3\x7d\x45\x56\x4a\x9a\xad\xfb\x10\xbc\x45\x4d\x85\xd4\x57\xf5\xb2\xcc\x32\x12\x35\x0b\xff\xed\x6e\x64\x7c\x52\x66\x54\xae\x99\xed\x37\x84\xa8\x44\x14\xf0\x8e\xe0\x64\x05\x4d\x20\xfd\x0d\x21\xfe\x5d\x76\xf2\x3e\xa1\x69\x8a\x1b\x49\xb3\xa1\x64\x5c\x83\x3c\x13\x59\x99\xf3\xea\xe5\xe6\x9e\x14\x54\x22\x59\xa1\x71\xb3\x6e\xa7\x80\x50\x23\x62\x4c\xf4\x14\xc8\xd9\xcd\xf7\xd5\xad\x84\xfc\xb7\x12\x7c\x48\xf5\xf4\x1d\x19\x98\x0d\x18\xa4\x4c\x15\x19\x9d\x9b\x25\x04\x77\xd9\xdd\x3c\xb7\xd7\x82\xdf\xf5\xdc\xac\x57\x69\xc9\xf8\xe4\xb1\xf7\xbb\x8f\xd8\x6c\x09\xb3\x60\x9f\xc2\xd7\x7f\xbf\xf4\xfb\xa6\xaf\xf7\x9f\x4f\xcd\x9b\x89\x9e\x52\x4d\xf4\x94\x29\x22\x38\x10\x09\x45\x46\x13\x50\x8f\x2c\x68\xc5\x2d\x76\x45\xd7\xcb\x17\xd6\x2c\x29\x9c\x52\x53\x5d\xaa\x41\x31\xa5\x6a\x19\xc4\xc3\x85\x5f\x57\x4c\x67\x6f\x9c\xbd\xa5\x59\x31\xa5\x6f\xdd\x8f\x2a\x99\x42\x4e\x6b\x1c\x10\x05\xf0\xd3\xe1\xe5\xf7\x7f\xbc\x59\xb8\x40\x9a\xd0\x59\x89\xfd\x84\x29\x03\x2a\xa4\x20\xc4\x93\x10\xdc\xbb\x79\x01\xe4\xbf\x56\x3e\x73\x53\x40\xf2\x5f\x83\xa5\x95\x8b\xd1\x7f\x43\xa2\x83\x9f\x25\xfc\x4f\xc9\x24\xa4\xe1\x8a\x0c\x80\x3c\x59\x5a\xf8\xd9\xc0\x3f\xf8\xa9\x90\x86\x2c\xe8\xe0\xc8\xdb\x11\xd0\xc5\xc6\xef\x0b\x5f\x7b\x68\x40\xe2\xbe\x31\x35\x24\x11\x14\xe2\xa3\xc3\x38\x48\x1d\x1c\x2d\x9e\x32\x65\x90\x43\x82\x02\x6e\x89\x24\xa2\x10\x77\xdf\x34\x20\x06\x00\x20\x95\x21\x00\x65\x96\x1a\xda\x39\x03\xa9\x89\x84\x44\x4c\x38\xfb\x57\x35\x9b\x22\x5a\xe0\x6b\x32\xaa\x41\x69\x82\xa7\x96\xd3\x8c\xcc\x68\x56\x42\x8f\x50\x9e\x92\x9c\xce\x89\x04\x33\x2f\x29\x79\x30\x03\xde\xa2\x06\xe4\x83\x90\x40\x18\x1f\x8b\x77\x64\xaa\x75\xa1\xde\x9d\x9c\x4c\x98\xf6\x54\x3f\x11\x79\x5e\x72\xa6\xe7\x27\x48\xc0\xd9\xa8\x34\x84\xf3\x24\x85\x19\x64\x27\x8a\x4d\xfa\x54\x26\x53\xa6\x21\xd1\xa5\x84\x13\x5a\xb0\x3e\x2e\x96\x23\xe5\x1f\xe4\xe9\x6f\xa5\xdb\x64\x75\xb8\x00\xbe\x95\xe8\x4c\x3c\x81\x7d\x14\xd6\x86\xbc\x5a\x4c\xb2\x8f\xdb\x6f\xa9\x41\x6a\x7e\x32\x50\xb9\xbe\xb8\xb9\x25\x7e\x01\xee\x5c\x22\x84\xeb\x5b\x55\x0d\x6c\x03\x28\xc6\xc7\x20\xed\x9d\x63\x29\x72\x9c\x05\x78\x5a\x08\xc6\x35\xfe\x91\x64\x0c\xb8\x26\xaa\x1c\xe5\x4c\x2b\xc4\x39\x50\xda\xec\xc3\x80\x9c\x21\xd3\x23\x23\x20\x65\x91\x52\x0d\xe9\x80\x5c\x72\x72\x46\x73\xc8\xce\xa8\x82\x4f\x0e\x6a\x03\x51\xd5\x37\xe0\xdb\x1c\xd8\x21\xcf\x5e\x7e\x60\xe9\x8c\x11\xe2\x79\xe9\xda\xdd\x59\x7b\x86\x49\x0a\x49\x46\xa5\x15\x0a\x88\x86\x2c\x23\x1f\xdf\x7f\x20\x53\x71\x6f\xb0\x98\x71\xa5\x69\x96\xe1\x29\x70\xfc\xd9\x92\xd3\x84\x72\x92\x53\x4e\x27\x40\x68\x51\x28\x32\x16\x92\x50\x32\x61\x33\xe0\xfe\x74\x0d\x36\x5d\xfc\x3a\x22\x41\x2c\x71\x5f\xc9\xa0\xfc\x55\xb7\xc0\x85\x2b\xeb\xc8\x86\x19\x4b\x32\xd0\x23\x50\x3b\xad\xef\x45\xcc\xe6\xa4\xe4\x4a\xcb\x12\x37\x3b\x25\x77\x30\x77\x48\x9e\xd3\x82\x28\x2d\xcc\x8f\xf7\x4c\x4f\x09\x0d\x11\x9c\x6a\xc4\xe2\x11\x10\x05\x9a\x8c\xe6\xc4\x88\x71\x48\x10\xb4\x10\x19\x52\x0b\x7c\x16\x09\x83\x04\x2d\x19\xcc\x80\x50\x39\x62\x5a\x52\x39\xaf\xb0\x61\x11\xa0\x4f\x00\x15\x3f\x36\x10\x1e\xd6\x83\x84\x3c\x86\x8b\xc4\x92\x5b\x27\xbb\xa4\x95\x60\xb9\x01\xf4\x86\x97\x0e\xdf\x6a\x71\x54\x39\x7c\x03\x45\x0c\x5e\x39\xf9\xa0\x92\x6b\xf1\x4d\x0e\xb1\x52\x22\x64\x85\x19\x06\x6c\x21\x12\x8e\xc0\x90\x13\x49\xb9\xb9\xb0\x12\xb9\x77\x80\xd6\x63\x68\x63\x86\xb8\xe7\xab\x70\x34\x9c\x9b\x4a\xd9\x10\x98\xc2\xc1\x34\xe4\x6b\x66\x7e\x14\x76\xd5\xcf\x66\x81\x33\x96\x82\x01\xa2\xa6\xcc\xa2\x8e\x39\xad\x74\x24\x4a\x6d\x61\xe7\x6e\x49\xc9\x8c\x51\x42\x27\x13\x09\x13\x44\xe0\xb5\xaf\x7d\x02\x26\x76\xac\x3f\xa0\xf5\xe8\x5b\x49\xfe\xd1\x3b\x0c\x19\x7c\xf4\x06\xbe\xea\x98\x87\x37\x2c\x0b\x8b\xcd\xf1\xd4\x1e\xda\x41\x13\x03\x13\x0f\x5a\x21\x1f\xbd\x79\x93\xbd\xb5\xe3\x89\x1d\xb6\xa3\xb9\xcf\x0b\x0b\x71\x57\x47\xe6\x7c\xd4\xa4\xd9\x90\x03\xbc\xb1\x26\xbe\x23\x20\x05\xc8\xb1\x90\xb9\x39\x28\x9c\x50\x92\x58\xf9\xad\x22\x3c\x48\x1a\x79\xf2\x18\x38\xc9\xa6\xfb\x6f\xc7\x26\x58\x60\x47\x9f\x14\x54\x4f\x9f\xb8\x6d\xb3\xad\xb2\x23\x04\xda\x93\x37\x3f\x41\xcd\x96\xe6\xae\x39\x4c\xe7\x73\x1b\x30\x74\x3e\x29\xf2\x9c\x4d\x66\x6d\xa0\xda\x35\xbd\xff\x00\x4a\x19\x96\x8d\x52\x9a\xa4\xf7\x04\x78\x22\x0c\xb1\xf8\x7f\x6f\x3e\x5e\xd9\x69\x07\xe4\x52\x13\x96\x17\x19\xe4\x46\x10\x23\x1f\xa8\x54\x53\x9a\x81\x44\xee\xf4\x1d\xcf\x1b\x7f\x3b\x4c\x2c\x15\xa4\x86\x16\xa5\x90\xd1\xb9\x9d\x2c\x85\x44\xa4\x86\x46\x0b\x49\x0a\x23\xe0\xe6\x45\xa9\x81\x50\x7b\x15\xdf\xcb\xf8\x64\x15\x91\x6e\x05\x1a\x62\x24\x91\x9c\xea\x77\x64\x34\xd7\x4f\xa1\x3e\x21\x0f\xfd\x74\x53\x1a\x10\x2e\xe6\x69\x4a\x60\xc7\x46\xf4\x20\x9c\xf8\xc9\xaf\x34\x42\x28\x65\x1c\xe4\x50\x48\xbd\x09\xd1\x32\xca\xc7\x04\xe4\xa3\x77\x7a\x90\x31\xae\xff\xf8\x87\x47\xee\x4c\xa1\xc8\xc4\xdc\xe0\xc5\xd3\x67\x65\xc3\xef\xd9\xf8\x5c\x6f\x3a\xdf\xa6\x67\x79\xc3\xf9\xac\x71\xaa\x8b\x99\x56\x29\x50\x3b\x4d\xc4\xbb\xfa\xb6\x4a\x09\x7c\x36\xe6\x37\xbc\xf4\xd6\x86\x6b\x18\x83\x04\x9e\x78\xda\x54\xfd\xa9\x05\xa1\xe4\xdb\x72\x04\x92\x83\x06\x15\xc8\xd5\xf3\x02\xbc\x69\x07\xec\x03\x12\x24\x29\x35\xcb\xd8\xbf\x40\x3d\x45\x59\x3e\x11\xdb\x7b\x42\xc0\xf1\xb7\x3d\x21\xe6\xf8\xdb\x9e\x12\x76\xec\xd8\x86\x8f\x3e\x8d\x85\x76\x34\xf6\x09\x35\x7b\x27\xaa\x57\x3b\x93\x36\xb7\xa2\x73\x4a\xfe\x34\x9a\xaf\x58\xe9\x10\xcd\xb7\x0d\xf3\xe7\xba\x05\x93\xa3\x75\x26\xf3\x81\xd1\x8b\x07\x68\x94\xfd\xe1\xa7\x81\x9d\xf2\x78\x40\x2e\xf2\x42\xcf\xbd\x6d\x83\x3d\x31\x39\x53\x84\x0b\xbd\x2c\x95\x75\x0e\xa6\xd9\x6a\x33\xd8\x93\x90\x3a\x1d\x5e\x7a\x03\xeb\x67\xdc\x5a\x55\x40\xb2\x07\x52\xf7\x4d\x63\x19\x0d\x99\x7b\xcc\x20\x4b\x09\x33\x02\xb5\x59\x2c\x19\x65\x22\xb9\x73\xb6\xe4\xeb\x73\xa2\x84\xa5\x39\x46\xeb\x32\xc2\x4f\x22\xb8\x2a\x73\x20\xec\x29\x22\x12\xc5\xec\x28\x66\x47\x31\xfb\xa5\x88\xd9\xd6\x67\xb3\x0f\x94\x6a\x61\x21\x6b\x69\x15\xde\x17\xa9\xd5\x63\x23\x52\x2b\x1c\x91\x5a\x3d\x31\x5e\x1c\xb5\xda\x48\x06\x7c\x72\xae\xa7\x0e\x72\x34\x70\x47\x03\x77\x34\x70\xbb\x11\x79\x99\x1b\x91\x97\x45\x5e\x16\x0d\xdc\x8f\x4d\x19\x0d\xdc\x5b\x4e\x14\x0d\xdc\xd1\xc0\xdd\x18\xd1\xc0\x1d\x0d\xdc\xd1\xc0\x1d\x0d\xdc\x6b\x46\x14\xb3\x77\x9c\x34\x8a\xd9\x8f\x8c\xd7\x2d\x66\x47\x03\x77\xa4\x56\x91\x5a\x45\x6a\xf5\x32\xa8\x55\x7b\x03\x77\x92\x01\xe5\xab\x15\xdd\x85\x3c\x09\xbc\x0f\x45\x23\x36\x66\x2e\x5f\xc8\x3d\x4d\x46\x30\xa5\x33\x26\x4a\x49\xee\xa7\xc0\x7d\x6a\x1b\x99\x80\x56\x06\x0b\x40\xc3\x2a\xdd\xe8\x09\x5a\xf3\x38\x7d\xe9\x13\xe0\x74\x94\xad\x9c\xf8\x29\x52\xe2\x9e\x7c\xdc\xa0\x3f\x12\xc2\x7c\xdd\x32\xc4\x50\xae\xf7\x72\xf2\x36\x71\xff\x07\xeb\xf4\x8e\xd5\xc1\xff\x67\xd7\xe7\x5d\x85\xfc\x93\x1f\x39\xb9\xac\x66\x25\xe8\x2d\xc0\x84\x22\xc3\x43\xcc\xaf\x1f\xef\x39\xa4\x98\x0c\xda\x23\x4c\x9b\x1b\xcc\xa1\x67\x09\xd3\xd9\xbc\x7a\xf1\xe0\x60\xfb\x4d\xdc\xa3\xd4\x81\xb3\xeb\xf3\xcd\x5d\x2a\x7e\x03\x3e\x87\xf7\x24\xfa\x46\xa2\x6f\xa4\x1a\x51\x0c\xda\x71\xd2\x28\x06\x3d\x32\x5e\xb7\x18\xb4\xef\xbe\x84\xe8\x01\x20\xd1\x03\xe0\x6f\x8b\x1e\x80\xe8\x01\xe8\x06\x4c\xd1\x03\x10\x3d\x00\x8f\xdf\x14\x85\xc9\x1d\x27\x8d\xc2\xe4\x23\xe3\x75\x0b\x93\xd1\x03\x10\xa9\x55\xa4\x56\x91\x5a\xbd\x0c\x6a\xf5\x12\x43\xdc\xa3\x21\x36\x1a\x62\xa3\x21\x36\x72\xa3\xc8\x8d\x9e\x18\x2f\x8e\x1b\x45\x43\xec\xb6\x13\x45\x43\x6c\x34\xc4\xae\x1b\xd1\x10\x1b\x0d\xb1\xd1\x10\x1b\x0d\xb1\x8f\x8f\x28\x4c\xe2\x88\xc2\xe4\x13\xe3\xc5\x09\x93\xd1\x10\x1b\xa9\x55\xa4\x56\x91\x5a\xbd\x0c\x6a\xd5\xde\x10\xfb\xc4\x49\x6a\xa0\x4c\x68\x3f\x75\x92\xa3\x8f\x07\xc6\xca\xfe\x84\xf1\x24\x2b\x53\xc0\x2b\x63\xa0\xba\x94\xa0\x7a\x24\x63\x39\xf3\x75\xdb\x85\x34\xd8\xd1\x4f\xa8\x02\xb5\x34\xc7\x8a\xf7\x3f\xbe\xf6\xc7\x4f\xea\xa3\x7d\x58\xaa\x40\x66\xc6\xfd\x3c\x0e\x57\xb6\x5e\x06\x4b\x36\x80\x9d\x79\xbf\xb9\x11\x6b\xf3\xdb\x36\x0b\x4f\x7e\xf6\x3a\xbc\x7a\x04\x8f\x9e\x24\xdf\x4f\x11\xed\x3e\x19\x51\x05\x7f\xf9\xd3\x52\x37\x90\xf0\x96\x1c\x52\x46\xcd\xab\x56\xde\xf1\x34\x21\xaf\x5f\xb1\x1e\x73\x37\x38\x01\xd5\x32\x76\x9c\xc5\xb5\x2b\x78\x72\xef\x0c\x82\xa5\x97\xf6\xe6\x1b\x2d\xa9\x86\xc9\x3c\x68\x8f\x81\xf8\x54\xf3\x5f\xbe\xa6\xad\x4b\xa5\x59\xdd\x4f\x41\xda\x33\xe2\x1b\x3a\x28\x3f\x29\x53\x55\xae\x43\xba\x43\xc9\xfc\xa7\x92\x17\xfc\x7b\x56\x5c\x7e\x6a\xd3\x56\xf5\xb4\x58\x09\x2c\x0f\xa0\x73\xeb\x57\x39\xaf\x8a\x38\x2c\x42\xac\xa0\xd2\xf0\x09\xef\x7f\x41\xd1\x25\xb8\x7b\x01\xde\xeb\x58\xc3\x06\xf2\xca\xd3\x72\x4a\x3f\xa8\x35\xb1\xce\xe7\xb3\x89\x78\xe2\x3a\x4b\x0d\x41\xe6\x4c\xa9\x75\xe9\x19\xcd\xa5\x3f\xc5\x3c\x36\x60\x1a\x6b\xe0\xef\xbf\x28\x58\x4e\x25\x44\x5a\xb5\x7f\x44\x13\x22\xcb\xcc\x88\x94\x3c\x25\xae\xa9\x04\xa1\x49\x22\x4a\xae\x09\x07\x48\x6d\xe2\xc7\x2a\x5c\xdd\x80\xe5\x6c\x20\x45\x6e\x2a\x43\xf6\xed\x3a\x9f\xbc\xcb\x7d\xc3\xa9\xfd\x84\x95\x6d\x4a\xc2\xb1\xb9\xcc\x89\xaf\x7f\x9a\x77\x6f\x23\x10\x6c\x2c\x0e\x34\x0d\x5d\x22\x63\xc9\xfc\xba\xcc\x80\x4c\x45\x96\x2a\x6c\x96\x63\xf8\x56\xe5\x0a\x0b\x15\x85\x02\xef\xc6\xd5\xf7\xc8\xa8\xd4\x24\x15\x60\x0d\x54\xae\xb4\x4b\xe3\x71\xeb\xfc\xbc\x9f\xda\x86\x49\xe6\x21\x42\x8b\x22\xc3\xc4\x2b\x61\x78\xf7\xfd\x94\x25\x53\xdb\x05\xae\xa0\x09\xac\xba\x6d\x73\x19\x6e\x23\x25\x83\x6c\xa5\x68\x10\x6f\x3c\x1d\x3d\x85\x2a\x64\x4b\x8d\x83\xd8\xc6\x2b\x5f\x4b\x51\x16\x1b\xde\xbe\x6c\x77\xb3\x4f\x1b\x2a\xaf\x17\xc4\x11\x7f\xd1\x39\x33\xed\xde\x28\x67\x9c\x73\xc6\xfa\x01\x21\x97\x63\x92\x97\x99\x66\x45\x86\x8f\xd8\x7a\x31\x8a\x50\x09\x35\xdf\xe8\x11\xca\xe7\xde\x37\xea\x9a\x2f\x41\x4a\xe8\xc4\xcc\xa8\xb1\xeb\x9a\x6f\xf4\xc2\xcb\xdc\xc8\x20\x81\xd9\x4f\xa1\x52\xc9\xe7\xf5\xec\xe4\x9e\x65\x99\x91\xea\x69\x96\x89\x7b\x48\x07\xe4\xe0\x60\x91\x94\x27\x42\x06\xeb\x41\x62\x72\xf0\xbb\xc6\x5d\x86\x72\xd4\x0b\xde\x04\x47\xc8\xd6\xe2\x35\xd9\x4e\xc4\x26\xdb\x2b\x13\x84\x70\xc1\xbd\xd9\xf8\xbb\xeb\xf7\xbb\x21\xc2\x55\x73\x0e\xd7\xa5\x0b\xb4\xd9\x96\x82\x4a\xcd\x68\x46\x4a\x99\x29\x8b\x0b\xd4\x08\xcc\xd2\xb7\x39\x9b\x52\xf4\x7b\x27\xa0\x6c\x3f\x2d\xf2\x3b\xbb\xfb\x6e\x73\xec\x19\x17\x3c\x9b\x13\x6a\xb7\x66\x5c\x66\x59\x8f\x8c\x19\xa7\x86\x74\x43\xe1\x73\xef\x8c\x26\x4a\x6e\x18\x4f\xc0\x7c\x53\xbf\x12\x4e\x70\x45\x66\x46\x43\x23\xaa\x83\x9e\xf6\x5c\xc3\x2f\x6b\x77\x50\xee\x15\xe6\xd0\x27\x74\x94\x01\x4a\xb5\x4e\xec\xb9\x16\x19\x7a\x6b\x2a\x93\x32\x76\x09\xa3\xe1\xe5\xff\x60\x1c\xd5\x3d\x72\x8d\xcc\xc7\xa8\x8d\xc0\xf4\xd4\x68\x91\x45\x91\xcd\x0d\xb1\x31\xc8\x52\x23\xe5\x91\x2a\x93\xa9\xf9\xa4\x83\x42\xa4\xea\xc0\x90\xa2\x03\x05\x89\x04\xad\x0e\x8e\xcd\x5f\x8b\xdf\x80\xdf\x17\x3e\x77\x42\x0b\x76\x70\xdc\x23\x08\x20\x6c\x41\x26\xf4\xf4\xe5\xe2\xa1\xff\xd6\x46\xe7\xcb\xa7\x46\x53\xff\x0f\x67\x70\xfd\xb4\x44\x61\xdb\x53\x19\x3a\xaf\x01\x33\x33\x0d\x52\x22\x1a\x04\x1e\xb7\x05\x82\x4f\xc8\x29\x27\x60\x7d\x24\xa0\x49\x0e\x94\xbb\xbb\x61\x06\x72\xae\xa7\xe8\x36\x51\x15\x01\x79\xf1\x40\x6f\x07\x70\x77\xe0\x3d\x70\x6b\x24\xb7\x3d\x0f\x17\x81\x7b\xf8\xbb\xc3\x45\x42\x5a\x73\x84\x17\x0b\x4a\x64\xd1\x3b\x81\xf1\x7b\xf3\x64\x13\x84\xf6\x27\x4b\x2d\x2b\xfa\xf1\xfe\xbd\xed\x6f\xe8\x60\xf5\x2d\xe3\xa9\xaa\xea\xd9\xa5\x96\x0c\x3a\x78\xaf\x04\x32\xae\xf0\x25\x02\x78\x59\x04\xde\x54\x6c\x7d\x62\xfa\x40\x47\xda\x07\xb5\x06\xfb\x25\x36\x24\x25\x43\xa7\x7a\xd6\x79\x67\x44\x90\x8c\x8e\x20\x53\xce\xe0\x02\xc1\xf2\xc9\xe9\xfb\x0f\x55\xdf\x50\x09\xf4\x09\xcb\xe0\x27\x50\x66\x36\x88\x02\x58\xea\xbe\xba\x3c\x36\x97\x5f\x11\x14\xdb\x99\xd5\xc9\x0d\x68\x7b\xcc\x72\x5a\x98\x53\x66\xe7\x58\x69\x15\x7e\x8f\x90\x7e\xfa\xb0\x6c\x25\xf7\x6f\xde\x2d\x71\xd5\x4b\x36\x3a\x2a\x9b\x45\x1a\x6c\x73\xf6\x1e\xb1\x92\xd4\x63\xc1\xa8\xda\x40\x68\xa7\x1b\x38\x69\x3e\xa1\xa1\xb1\x35\x05\x65\x4b\x31\xd8\xc2\x17\xd2\xff\x5e\x4f\xd1\xf1\x16\x6c\xa3\x78\x19\xdd\x3b\x83\x44\x8b\xc7\x8b\x7f\xfa\x9b\x35\xe4\x45\xf6\xd4\xc9\x23\x5b\x2b\x69\x39\xe3\xd7\x40\xd3\xf9\x0d\x24\x82\xa7\x1b\x12\xd8\xc6\x7e\x7c\x60\x9c\xe5\x65\x4e\x78\x99\x8f\x00\x41\xac\xec\x5c\x48\x48\xac\x02\x4c\x09\x87\xfb\x6c\xee\x88\x47\x4a\x0a\x91\x7a\x7a\x32\x32\x0a\x1b\x4d\xe7\xd8\x79\x14\xcb\x64\xf3\xb9\x99\x84\xe9\x9a\xfb\x48\x92\x48\xaa\x8c\x58\xd4\xc3\x49\x99\x36\x1c\x6b\x04\xe8\xa5\x63\x29\x98\x3d\xa6\x33\xca\x32\x23\x5a\x0f\xc8\x39\x8c\x69\x99\x61\x03\x5d\xf2\x86\x1c\x99\x97\x79\x9d\x6c\xd5\x03\x46\xdc\x55\xc2\x68\xf3\xca\x55\xd5\xc0\x05\x1d\x6f\xe1\x77\xd8\xa4\x8a\xab\x1f\x9b\x56\x73\xf5\xa3\xa0\xa5\xda\x54\x95\x6f\x6c\xcc\x25\x4f\xcd\x79\x08\x25\xd1\x80\xa4\x33\xe5\x66\xde\x8c\x65\x3f\x5e\x6d\x65\xc5\xaa\xa5\x98\x48\x50\xea\x1c\x68\x9a\x31\x0e\xbb\xe3\xd7\xed\x14\x48\x4e\x1f\x10\xc7\x34\xcb\xc1\x48\x22\x21\x86\xd1\xf0\xab\xb4\x20\x39\xbd\x83\xea\xf5\x64\x04\x63\x6c\x90\x8c\x1f\x1c\xec\xbe\xc5\x9f\x31\x65\x99\xd1\xd0\x6f\x9b\xb0\xc1\x5e\xc9\x22\xcb\x40\x5a\xc4\x31\x7f\x33\x5e\x62\x88\x5d\x21\x05\x2a\x93\xf6\xd1\x90\xc7\x23\x0f\xa5\xe6\x66\x4b\x87\x7d\x2f\xdd\xe1\x02\x28\x2e\x1e\x12\x6b\x28\x94\x40\x15\xde\x66\x71\x53\x95\x72\x6c\x54\x47\xaf\x71\x06\x0b\x72\x4d\xd8\xc9\x95\xd0\x2e\x92\xaf\xfa\x40\x7c\xda\xb5\x88\x06\xa5\x59\x8e\x07\x2c\x2d\xa5\x6f\x58\x8d\x30\xa3\xab\xb7\xbe\x71\x54\xfe\xf2\xe6\xcd\x86\xf2\xdb\xa7\x47\x7a\x09\xa8\x29\xef\x82\x2f\x57\x15\x1d\xf2\xe4\xdf\xa8\xc0\x66\x8f\x99\x13\x83\xb1\xf3\x36\x48\xf4\xb8\x32\xa5\x19\x9f\x94\x4c\x4d\xc9\x08\xf4\x3d\x00\x27\xf0\x60\x6b\xea\x90\x7f\x81\x14\xb8\xa9\x06\xbc\xb5\x9b\xa1\x01\xb4\xb7\xfb\x03\xb1\x19\x53\x4c\xf0\x6f\x98\xd2\x42\xce\xdf\xb3\x9c\x3d\x51\x80\xda\x8f\x65\xb7\x5f\x05\x41\x91\xa5\xe4\xda\x6e\xc5\x0d\xd8\x0f\x96\x80\x56\x50\x2d\xac\x7a\x4a\xcc\x39\x19\xd1\xe4\xee\x93\x01\xf8\xcd\xbe\x40\xd8\xb3\xeb\x1d\xa0\x8a\xf2\x5e\x35\x01\x92\x2d\x8b\x94\x17\x0f\x16\x3e\x0d\x28\xdf\x4f\x85\x02\xbc\xc1\x1a\x2a\xf1\x31\xef\x58\x60\xaa\x22\x18\xe8\x96\xe5\xa0\x08\x1d\x8f\x9b\x77\xd4\x87\x1d\x25\xcf\xbc\x54\x9a\xe4\x54\x27\x53\x6b\xca\x12\x69\x25\x4e\x1c\x2a\x27\xf6\x6f\x03\xe5\x8d\x0d\xd1\xdb\x9b\x8c\x89\x5d\xe7\xc5\x83\xd1\x2d\x9f\xf4\x08\x35\x47\x03\xe4\x8b\xd3\x34\x35\xe0\xac\xb9\x21\x4e\x6e\xcb\x6d\xf3\xfe\x5b\x34\x22\xd7\xbf\xe0\x2e\x9c\x5e\x9d\x6f\x6e\x8a\xd9\x45\xc1\xdd\x5a\xc5\x5d\x34\x97\x3f\xf2\x51\xde\x64\xea\xae\x34\x6d\xe6\xa8\xa1\xa8\x1e\xa1\xe4\x0e\xe6\x3d\xcb\xc5\x16\x1b\xe6\x4b\xc8\x9c\x24\x01\xd8\x37\xde\xdc\x64\x9f\xdb\x1c\x24\x3b\x60\x8f\x1d\xdb\xb9\x33\xfc\xe8\x9b\x85\x6e\xf9\x84\xff\xe8\x2d\x1e\xdb\x1e\xc1\xed\xb8\x83\xf9\x76\x0f\x2c\x6c\xb7\xd9\x05\xa7\xfb\xd8\x7d\x37\x3f\x54\x82\x5e\xb5\xd5\xdb\xf9\x99\xc2\xb1\xb5\x89\xca\x0f\x0f\xc4\x56\x9f\x57\xa1\x5f\x68\x65\x32\xdf\x78\xa8\x2c\x32\x9a\x33\x3d\x65\x85\xcd\x7a\x70\xce\x00\x87\x91\xe4\x7b\x9a\xb1\xb4\x9a\xc2\x9e\xdf\x4b\xde\x33\xe2\x93\xf9\x3f\x24\xba\x56\x5c\x3b\x17\xa0\xae\x84\xc6\x5f\x3e\x1b\x80\xec\x32\x5b\x81\xc7\x4e\xe1\xac\xd0\x48\x65\x50\xf1\xb2\x11\xf7\x1e\x0c\x97\x8b\x91\x3b\x8a\x5c\x72\x22\xa4\x87\x83\xb9\xe8\x26\xb2\x53\x20\x9f\x18\x59\x07\x07\xda\xa7\x57\xce\xe1\xc0\x27\x64\x03\x7a\x8f\x4c\xe7\xa6\x42\xf9\xc0\x5e\x41\x1d\xab\xc8\x50\xda\x75\xa2\x2a\xf5\x8e\x72\x96\x90\x1c\xe4\x04\x3d\x2e\xc9\xc6\x1e\x87\xe6\xa6\x6c\x47\x77\xed\xd8\x9a\xfa\x86\x2f\xdc\x0a\x0b\x90\x35\x59\x13\x50\x1b\xe6\x66\x67\x68\x98\x9c\xfe\x8f\xa1\xe0\xb8\x07\xff\x97\x14\x94\x49\x35\x20\xa7\x44\x31\x3e\xc9\xa0\x71\xcd\x69\x18\xe1\x34\x66\x06\xa6\x88\x21\xb5\x33\x9a\x39\x5d\x8a\x72\x02\xd6\x66\x65\x66\x5f\x64\xa9\x3d\x27\xa9\x18\xca\x53\x39\xba\x0e\xee\x60\x7e\xd0\x5b\x42\x9a\x83\x4b\x7e\x60\x79\xcb\x12\x9a\x54\x8c\x08\x7d\x64\x07\x78\xed\xa0\x4b\x2e\xbc\x25\xc3\xd9\xd5\x8e\xd6\x7c\xe9\xc6\x18\xe1\xe3\x43\x76\x14\xd6\x1b\x5a\xa2\x8b\x8a\xd2\x82\x94\x0a\xac\xb4\x8e\xa7\x8c\x80\x97\x33\x51\xaa\x44\xc5\x94\xc3\x3d\x4a\x8f\x7b\x23\xf8\x19\x4d\x82\xf1\xc9\x77\x45\x4a\xf5\x46\xe1\xb9\x76\x34\x20\x72\x78\x6d\x27\x21\x25\xce\x62\x70\x6b\xcc\x26\xa4\xa0\x92\xe6\x6a\x40\x86\xae\x9e\x2a\x62\x1a\x1b\x87\xb6\x44\x07\xbb\xdb\x79\x01\xe4\xff\x21\xd7\xe1\x5a\x06\xa4\xdf\xef\x93\xdb\x8f\xe7\x1f\xdf\x11\xfb\x8b\x95\xb2\xb5\x20\x63\x81\x4a\x90\x28\xa5\x79\xd5\x0c\x38\x2a\xfe\x46\xbe\x17\x1c\x3e\x8e\xcd\x09\xa1\x1a\x66\x20\xc9\xbd\xd9\xaa\x84\xa5\x50\x59\xaf\x06\x87\x9f\x16\x8f\x77\x93\x4c\x72\xfa\x70\x53\xca\xc9\x16\x1b\x40\x96\x36\x21\x34\xd9\xd4\xca\x24\xa2\x5e\x98\x7b\xae\x92\x29\xa4\x65\x06\x29\xa1\x23\x31\x83\x86\xc9\xb6\xf9\x18\xb2\xf4\x12\xfc\x83\x86\xe7\x8d\x94\xc8\x4a\x5d\x29\xab\x47\xf0\xf0\x8e\xfc\x19\x5d\xdb\x94\x14\x20\x13\xe0\x9a\x4e\x60\xd1\x0c\x60\xef\x7b\xfb\xe6\xdf\x8e\x1d\x3f\x32\x33\x3a\xeb\xc9\x1b\x83\x11\x1f\xe8\xc3\x77\xbc\x36\x0d\x32\x45\xde\x0c\xc8\xe9\xc2\xcb\xf0\xb9\x2c\x29\x33\xb4\xb5\xa0\xbb\x3e\x78\xe5\x68\x4e\xa4\x28\xd1\x61\x4f\xca\xa2\xa9\xcd\xfe\xe1\xcf\xff\x66\x94\x3e\x9a\x17\x19\xbc\xf3\x65\x98\xad\xda\x6c\x64\x18\x2d\xc8\x1f\xdf\xfc\x9b\xa5\x9e\xe6\x7c\xd6\x5a\x61\x0d\x33\x6a\x00\x56\x16\x84\xe5\x36\x9c\x13\xb2\x79\x5d\xcf\x59\x36\xd1\x5f\x69\x2a\xb5\xea\x11\xf4\xea\x57\xc2\xa1\x16\x9a\x66\x0b\x5a\x3e\x6a\xe1\x70\x6f\x81\x94\x0a\x84\x09\xa0\xa1\x8a\xbc\xfd\xe3\x9b\x7f\x5b\x36\xa7\x7c\xe4\x09\xe0\x93\xf8\x04\x86\x59\x8c\x8c\x72\x7f\xc7\xb2\x0c\xd2\xde\x93\xcb\x1f\x97\x52\x4f\x41\xf6\x08\x70\xe5\x8d\x55\x66\x7d\x0b\x6b\xc3\xd9\x65\xc9\x39\xca\x08\xd6\x3a\x8c\x16\xad\xc0\xc2\xe5\x3e\xd6\x30\x42\x4d\x72\xa1\xf4\xea\x25\x6f\x7e\xdc\xcc\xa0\x7c\xfe\x71\xbc\xad\x38\xd0\xdf\xc1\x0c\xb1\xfc\xf4\x0e\x22\xe5\x43\xff\xae\x4a\xfc\xed\x33\xae\xfb\x42\xf6\xed\x34\xef\x88\x96\xe5\xd3\x5e\x83\x7a\xe4\x8d\x13\xf0\x19\xc8\x40\x19\x9c\xb7\xa5\x5d\xfd\x24\x27\x7f\xf7\xf3\x9c\x8a\x7b\xbe\x9e\x72\x20\xe1\x74\x34\x63\xc7\x53\xdf\xb4\xb8\x2d\x1c\x1b\xf3\x76\x73\xf7\xff\x6f\x19\xbb\xb7\x20\x07\xee\xec\x56\xa7\xdd\xc8\x55\xe8\xf1\xe8\x6d\xf0\xf6\xea\xd8\x5a\xce\x67\x6d\x4e\xe6\x06\xfb\x9a\x15\x94\x6b\xe9\x84\xaf\xa0\x40\x76\x1d\xb5\x43\x46\x63\x44\x81\x39\xe7\x6a\xed\x41\xcf\x80\x2a\xbd\x0a\x14\xf1\xa0\x3f\x3d\x1e\x4f\x02\x58\x1c\x4d\xa1\xd3\x48\x48\x08\xf2\xda\xc6\x78\x66\x11\xe5\xe0\x1a\xac\x87\xcf\x06\x9c\x35\x84\xa8\x83\xea\x48\x98\xfd\x6b\xca\x57\x9f\x2a\x6c\xc6\x1b\x39\x77\x11\xad\xdd\xa3\x41\x70\xb0\x33\x9d\x3a\xe2\x55\x79\x14\xad\x4b\xd3\xea\x2b\x36\xca\xcf\x1d\x0c\xff\xf6\x81\x2a\x20\x19\x48\xc0\xd3\x67\xa3\x91\xad\x02\x84\x7a\xd1\x69\x76\x4f\xe7\xea\x60\x6f\xa4\xf0\x1c\x34\x7d\x3c\xd1\x64\x71\x34\x89\xfe\x8d\xa6\x3c\xa5\x32\x75\xab\x3c\x3c\x54\xd5\x94\x03\xf2\x01\x7d\x71\x7c\x2c\xde\x91\xa9\xd6\x85\x7a\x77\x72\x32\x61\x7a\x70\xf7\x57\x35\x60\xe2\x24\x11\x79\x5e\x72\xa6\xe7\x27\xe8\x80\x63\xa3\x52\x0b\xa9\x4e\x52\x98\x41\x76\xa2\xd8\xa4\x4f\x65\x32\x65\x1a\x12\x5d\x4a\x38\xa1\x05\xeb\xd7\x32\xb7\x1a\xe4\xe9\x6f\xfd\x8b\x3e\xb1\x60\xdd\x38\x83\x68\x9d\x92\x33\xe8\x97\xfc\x8e\x8b\x7b\xde\x47\x4d\x58\x6d\x75\x1a\x37\x8b\x82\xf0\x63\x01\xde\xdb\x04\x3e\x14\x22\xfd\xe4\x9b\x60\x3e\xa6\x4f\x79\xda\xb7\x4e\xcb\x4f\xbc\x17\xbb\xd8\x86\xfb\x75\x60\xc1\x26\x51\xef\x76\xec\xa6\x4d\xd1\x44\xb3\x19\xec\xe4\x04\xf7\xa3\xb1\xdd\x1f\x7d\xc0\x69\x5a\x4a\xbb\xe3\x81\x37\xdc\xfb\x76\x72\x3a\x47\x59\x09\xdf\x4d\x84\x15\x05\xb8\x48\xc1\x59\x4e\x67\x68\x1a\xb8\x31\xe4\xe8\xd6\x88\xd2\xce\x47\x8e\x76\xe3\xb9\xd2\x90\x5b\xe2\x66\x9f\xcf\xe6\x44\xcb\xb9\x75\xac\xcb\x3b\xa3\xbc\x3a\xcf\xb7\xd1\x18\xee\xf0\x3e\xa5\x44\xc2\x50\x74\xaa\xe1\xea\xe5\x36\x6f\x03\xa4\xa4\x10\x8a\xe1\xbb\x1d\xcf\xdc\xce\xb2\xb7\x3b\xbb\x0d\xdc\x7c\x7f\xf9\xd3\x36\x5b\x37\xc6\x2a\x27\x5b\x5a\xe9\x9b\x11\x18\xe3\x30\xcb\xc0\x6d\xcf\xa1\xf2\x8a\xaf\x11\x6b\x12\xc1\x95\x96\x94\xad\xcf\xa3\x5a\x3d\x76\x74\xa5\xec\xee\xaf\x20\x88\x41\xa7\x3b\x01\x85\xac\x4e\x8c\x1d\x61\x66\x4d\x0a\x15\xa8\x43\xc0\xd8\x34\x2b\x1f\x8b\x68\x08\xd7\x8e\xa6\xd9\x1d\x60\x44\x5a\xc1\xc9\x3e\x6d\xab\x2c\xa5\xe7\x28\xbd\xde\x54\xdf\x75\x39\xe1\xa2\xfa\xf9\xe2\x01\x92\x72\xd3\x9c\xfc\xe5\xb1\x64\x0b\xf4\x06\x15\x17\xb6\x62\x17\x61\x8e\xae\xbf\xe0\xe4\x17\x81\x60\x77\x82\x8c\xa2\x9a\xa9\xb1\xcd\x59\xab\x36\x02\x02\xc7\x69\x85\xc2\x95\x7b\x19\x59\x9c\x4d\x9d\x60\x1a\xc9\x4d\x32\x15\x42\x99\x53\x8e\xfb\x89\xf3\xce\x98\xb0\x3e\x43\x4c\xa0\x91\x24\x37\x34\xc6\x27\xd2\xd4\xd3\x5b\xc1\xa9\x7e\x8c\x29\xab\xc2\x57\x10\xf4\x5e\x2e\x33\x0d\x1a\x2e\xcd\x1f\x13\x94\xba\x94\x26\xaa\xcc\xcd\xa4\xf7\xc0\x26\x53\xad\x7a\x84\x0d\x60\x80\x58\x03\x34\x99\x06\xd3\xe6\x00\xba\xd1\xb7\x29\x44\xb5\xd0\xca\x7c\x54\x65\x45\xb8\x54\xa0\x5e\xc5\x63\x16\xf7\x72\x25\xb8\x7a\x04\x74\x32\x38\xee\x91\x3a\x65\xdf\xac\x71\x34\x27\x4c\x83\xa1\xd9\xa8\xcb\x48\x51\x4e\xec\x97\x80\x8f\x09\xc5\x75\x55\x29\x23\xe8\x85\x4d\x51\xe7\x3c\xb0\x1f\x77\x60\xf6\x0d\x57\x5e\xe6\xbe\xa8\x12\x7e\x1f\x9a\xe5\xa1\x4a\x2c\x92\xa0\x0a\x61\xb5\xd5\x45\x83\xfd\xff\xbf\x7a\xe8\x48\x1d\xd7\xc0\x9c\xb2\xc9\xd4\xc3\x92\x3a\x46\xd0\xdc\x83\xed\xcf\x1e\x69\xe5\x8b\xb1\x63\x47\x8f\x8c\x1d\x4d\xdf\xb8\xcf\xb7\xa8\xb1\x2a\xd8\x7f\x0d\x32\xaf\xa0\x88\x28\x82\x24\xc3\xd9\xc9\x7d\x8b\x2d\x87\x63\xe4\x0d\x39\x42\x24\x63\xfa\x50\x21\xc2\xf7\x45\x71\x3c\x20\xa7\x84\x97\xd5\x99\x7b\xec\x05\x5c\x54\xf3\xbb\x89\xcc\x4b\x95\xa8\xe7\xda\xf1\x8b\x5b\x91\x3b\x3b\x76\xf3\xb4\x87\xa3\xef\x20\x00\x4f\x17\x0d\x7d\x6c\x12\x0b\xeb\x1d\x27\x68\x47\xba\xfd\x1c\xfe\x2b\x76\x9f\x63\x29\x40\x03\x8f\x6b\x1d\x85\x01\x32\xef\x85\xd2\x53\x75\x20\x9b\xa7\xd8\xc2\x62\x57\xac\x20\xdd\x60\x06\xe9\x08\xae\xa4\x55\x84\xcf\xea\xb1\x18\x06\xe3\xb3\xb0\x1a\xd0\x6e\x10\xf9\xd1\x1c\xaf\x6e\x19\xfc\xb4\x7e\xb4\xa5\x74\xf5\x68\x45\xf3\xea\xf1\x28\xe2\xed\x5f\x60\xd0\xea\xd1\x11\xda\xda\xd1\x9e\xb4\xd5\x63\xfb\xd0\xa2\x75\xf3\xec\x10\x70\xb4\x7a\x74\x75\x36\xed\xd8\x21\x38\x69\xf5\x58\x12\x51\x3f\x4d\xac\xd2\xea\xb1\xb3\x91\x75\xf5\xd8\x35\xae\x69\xf5\x58\x48\x75\xfc\x44\x41\x4e\xbd\x66\x84\x13\xf9\x5a\xdb\x73\xfc\xbe\x15\x3f\xa9\x47\xc7\x20\xde\x2d\x32\x6a\xf5\x58\x14\x00\x5f\x48\x94\xd4\x8a\xa9\xbe\xd6\x66\x9a\xf7\x6b\x1f\xb6\x39\xee\x3e\xce\xc7\x29\x14\x3d\x97\x7a\xe3\xed\xd4\x18\x91\x5d\x48\xc0\xd2\x06\x18\x36\xe6\xed\x30\x9f\x27\x30\x6b\xf5\xe8\x8e\x71\xda\xd1\x11\xfb\xb4\xa3\x33\xe4\x46\x81\xe7\x2b\x6b\x17\x7e\x46\x59\xc7\x5a\xa6\xa3\xac\x13\x65\x9d\x2d\x46\x94\x75\x36\x1d\x51\xd6\x59\x37\xa2\xac\xb3\x62\x44\x59\x27\xca\x3a\xad\xc6\xfe\xc9\x3a\xd6\x52\xd5\x99\xc1\xec\x1f\xd6\xe0\xba\x68\x21\x43\x69\xca\x87\x04\x35\x4d\x65\x86\xf7\xdf\x38\x12\x7b\x8b\xe6\x35\x17\xe9\x2e\x29\x9f\x00\x79\xdb\x7f\xfb\x66\xc3\x74\xc2\xd5\xa3\x4d\xd0\x4f\x38\xb6\x4d\x3d\x5c\x1c\xeb\x3c\x12\x9f\xcc\xbb\xe4\x4e\x6a\xe5\xf0\x68\x48\x98\x6b\x1c\x44\x55\x55\xac\x1c\x34\xa1\xba\x61\x10\x67\x39\x54\x0e\xd1\x46\x0a\x73\x1d\x13\x2c\xb8\xf3\x77\x98\x4d\x1d\xec\xb6\x82\x04\xa8\x8d\x83\x1f\x41\xb5\x0a\x91\x83\x4d\x50\xf5\x87\xde\x2c\x01\x3c\xac\xc8\x11\x0c\x26\x03\x92\xda\x64\x6f\xca\x5d\xcc\xd9\x71\x2f\x74\x8f\xe7\x86\xb8\x4a\xfc\x3f\xb3\x6c\xe7\x1f\x87\x19\x70\x5d\xd2\x2c\x9b\x13\x98\xb1\x44\x57\xdf\x87\x01\x85\x4c\x5b\x67\x67\x1b\x57\x4a\x0b\xf1\xb0\xad\x48\xd8\x5f\x3a\x5b\xdb\xf9\xab\xfd\x68\x2f\xbb\x2d\xad\x63\x77\x7a\xb3\x20\x97\x58\x08\x0d\xd6\xaa\x55\xda\xbc\xcd\xfa\x2b\xf1\x9f\x88\xe0\x1f\xaf\x77\x75\x8f\x91\x8e\x78\x42\x6b\x3e\xb0\xa8\x40\x95\x59\x66\xd0\xdb\x7a\xcc\x96\x41\xb0\xc2\x93\xb5\x22\x5b\xc7\xba\x59\xf3\x20\x6b\x07\xef\xb9\x15\x85\xc8\xc4\x64\x1e\xee\xa0\xeb\x03\x53\x97\xc7\xa1\x44\x95\x23\x27\x02\x9a\x43\x74\xb5\xb0\xe5\xd1\x17\xb2\x76\x44\x5f\xc8\xd2\x88\xf6\x81\xc5\x11\xed\x03\x5b\x8c\x68\x1f\x58\x31\xa2\x7d\x60\x79\x44\xfb\x40\xb4\x0f\xb4\x19\xaf\xdf\x3e\x40\xa2\x2f\x64\xdd\x88\xb2\x4e\x3d\xa2\xac\xb3\xf9\x88\xb2\xce\xf2\x88\xb2\x4e\x94\x75\xa2\xac\x13\x65\x9d\x5d\x47\x0b\xe4\x2e\x44\xda\x79\x8a\x4c\x21\xd2\x47\x32\x64\xac\xbd\x3a\x11\xfd\x4c\x24\x55\x65\x12\xf3\x88\xf3\x7c\x28\x9a\x5b\x13\x7a\x8f\xfc\x4b\x70\xb0\xe9\x09\xb6\xe4\x6d\x0e\x44\x60\x13\x89\x42\xa4\x47\xea\x78\x87\xc0\xf3\x98\x61\x13\x33\x6c\x7e\x05\x19\x36\x53\xaa\x5c\xe1\x24\x24\xad\xeb\x13\x6e\x82\xe3\x7f\x0b\x32\xff\xd5\xe6\xdb\x18\x84\x73\x08\x83\x7d\xea\x6a\xa4\xb0\xb0\x4b\x9d\x6f\x17\xd2\x61\x13\x62\x4e\x2f\xb3\x2d\x7a\xd2\x14\x52\x52\x80\xec\x5b\x24\x13\x64\xcc\x5c\xfd\xb0\x05\xfc\x75\x10\x7e\xe1\x79\x33\x4d\x48\xbc\xe8\xe4\x99\xe6\xa7\x74\xe6\x9b\x0a\x5d\x74\x0d\xae\xf8\xe2\x52\x69\xba\xd1\x4a\xfb\x44\x3b\x77\xda\xb7\xad\xf4\xd2\xae\x94\x48\x54\xf2\x6e\xb6\x2a\x93\xbc\x7e\xac\x2c\x6e\xfb\x3f\x25\xc8\x39\x11\x33\x90\xb5\x62\x54\x75\xf7\xe9\x55\x4d\x6a\x12\xea\x0a\x28\x77\x63\xe0\xe9\xc4\x14\xd1\xa5\xa6\xde\xb5\xd7\x90\xec\x59\xf5\xe4\xf5\xa3\x5b\xc5\xa1\x43\xb5\xe1\xa5\xd5\x62\x5e\x3f\x3a\x35\xbf\x91\x8e\x4d\x70\xa4\x43\x33\x1c\xe9\xd6\x14\x47\x3a\x37\xc7\x91\x2e\x4d\x72\xe4\xb3\x57\x90\x5e\x3f\x3a\x36\x1f\x91\xce\xad\x74\xe4\x05\xd6\xa3\x5e\x3f\x3e\x01\xb8\xbb\xb4\xd8\x91\x58\xdd\xba\xf5\xe8\xda\xa0\x46\xba\x36\xaa\x91\xae\xf1\x70\xa7\x2a\xda\xeb\x47\xac\xaf\xfd\x09\xe4\xb4\xce\x84\x88\xb6\x35\xb9\x9f\x5a\x68\x07\x38\x59\xf5\xfe\xfd\x5c\x0a\x90\xe5\xd2\x75\xc3\x59\xf3\xee\xa0\xd7\x17\x86\x6a\x86\x8d\x51\x7d\xdc\x2a\x62\x34\xfe\x9e\x7a\x83\x57\xc9\x83\xe2\x71\xc1\x64\x4b\xad\x67\x6a\xd3\x59\xd5\x7c\xc6\x28\x05\x75\xd3\xaa\xe0\x61\xbc\x77\x60\xc3\x49\x6b\x69\x82\xa7\x8b\x01\xa6\xf5\x13\xa8\x5f\xd8\x76\xb8\x07\xde\x8e\x7d\xa8\xea\x3b\x0e\x06\x61\xe7\x5c\x37\xe3\xd1\xff\xf9\xbf\xc7\x8d\xea\x2d\xf5\x84\x51\xfb\xdb\x78\x44\xed\xaf\xd5\x88\xda\xdf\xda\x11\xb5\xbf\x16\x23\x6a\x7f\x9b\x8d\xa8\xfd\xad\x1f\x51\xfb\x8b\xda\xdf\x0e\x23\x6a\x7f\x51\xfb\xdb\x75\xfc\x8a\xb5\xbf\x6e\xa3\x9a\x43\x5d\xcc\x05\x89\xa0\xfc\xa8\xa9\x66\x49\x1d\xf1\xec\xef\xb2\xff\xea\x56\x07\x0c\xf5\xbb\xd5\x1a\x60\xa8\x25\x2e\x69\xc1\x83\x27\xd4\xbd\x4a\x21\x5c\x7a\xf2\x71\x4d\xf0\xb5\x45\x6e\x77\x86\x89\x81\x4b\xb8\x53\x54\xbc\xf5\x81\x65\x75\xe3\xf6\x2a\xea\x2c\x25\x47\xde\x17\x8f\x8d\x58\xb8\xd0\xcd\x8b\x5c\xb3\x7e\x7d\x47\xe5\x9d\xc7\xa0\x9a\x46\x3e\x7f\xc3\x85\x5c\xc5\xb0\x55\xf1\x51\x35\xf6\x18\xf2\x08\xb2\xb1\x06\x6c\x7c\x3b\x66\xdc\x46\x3a\xfa\xa6\x41\x82\xfb\xa0\x29\x4b\x4f\x6d\xeb\x05\x87\xe7\x56\xf4\xc5\xf5\xa0\xfc\x5b\xc3\x2e\x88\xf2\xa1\x78\xc8\x28\x77\xc9\xb0\x82\xfb\xae\xf6\xb6\x53\x7d\x2d\x2f\x57\xbd\x58\xaa\xb7\x0f\xc8\x05\x62\x7d\x38\x31\x53\x08\x1f\xd7\x26\xa2\x1b\x44\xde\xaf\xc2\x0d\xf7\x5b\x17\x6e\x58\x88\x18\x89\x75\x1b\x62\xdd\x86\x56\x75\x1b\xf0\xa2\x3d\xdc\x9d\x17\x70\x20\xff\x70\xed\x95\x24\x20\xa8\xf2\x32\xd3\xac\xa8\x23\xb0\x95\x7d\x55\x66\x35\x89\xb1\x8b\x04\x6d\xe2\xbb\x79\x1b\x4d\xa6\x8b\x78\x8f\xf3\x61\xc4\xb6\x42\x72\xe2\xa2\x2d\xb1\x19\x12\x56\x1c\xf0\x6a\x87\x0d\x29\x65\x2f\x3f\x52\xf0\x1c\x09\xb6\xaa\xb5\x66\xdb\xab\xcb\xd0\xf9\xcc\xa0\x84\xa1\xd8\x8f\x30\x88\xb0\xa1\x05\x46\xad\xb2\x19\xf0\x9a\x4b\x1c\xa9\xe3\x63\x2f\x0d\x75\xca\xbd\x3e\x09\xf7\xf9\x7b\xc0\x25\xfe\x7d\x13\xfe\x83\x1f\x54\x71\xa0\x1a\x7c\x35\xff\x79\xd9\x21\x91\xed\xa3\xdb\xba\xb0\xc8\x75\x16\xd5\xf6\xec\x11\x6d\xbf\xa6\xda\x17\x7b\xe9\xc3\xd8\x3b\xad\xe3\x75\xf8\x2d\x62\xc2\xe8\xe6\xe3\x25\x24\x8c\x3e\x93\x6f\xe2\xe5\xe4\x8d\xbe\x58\x7f\xc4\x4b\xc9\x1b\x8d\x3e\x88\xad\xc6\x6b\x4d\xe7\x6c\x8e\x0e\x7d\x0e\xd1\xdf\xd0\xb1\x4c\xd5\x09\xf3\xff\x34\x7e\x86\x4e\xf0\xaf\xd3\xe8\xb2\x18\x59\xf6\x9c\x91\x65\x51\x0b\x8b\x5a\x58\x73\x44\x2d\x6c\x69\x44\x2d\x6c\x8b\x11\xb5\xb0\xf5\x23\x6a\x61\xcb\x23\x6a\x61\x51\x0b\xdb\x60\x44\x2d\x2c\x6a\x61\x9b\x8e\x5f\x99\x16\xd6\x5d\xbd\xf5\x18\xe1\xf5\x09\x22\xbc\xba\xa1\x84\x1d\xd0\xbf\x4e\xb0\xae\xa3\x88\xae\x18\xcd\xb5\xdf\xd1\x5c\x2d\xcb\xce\x71\xcd\x3e\x4d\xe9\xb9\x70\xb7\xd7\xd5\x9f\xa3\x33\xc1\x52\x52\x94\xda\x55\xdf\x8a\x35\xe8\xf6\xb9\x06\x5d\x63\x47\x63\x21\xba\x8d\x0a\xd1\xad\x83\x59\xac\x46\xb7\x66\xec\x4f\x8c\x59\xac\x46\xb7\xed\x88\xd5\xe8\x56\x8f\x58\x8d\xee\x91\x11\xab\xd1\xc5\x6a\x74\xb1\x1e\x41\x8b\x11\xeb\x11\xac\x18\xb1\x1e\xc1\xee\x23\xd6\x23\xd8\x68\xc4\x7a\x04\xb1\x1e\x41\x73\x44\x2f\x54\xbb\x11\xeb\x11\xb4\x1c\xd1\x33\x15\xeb\x11\xb4\x9a\x30\x56\xa3\x7b\x55\x31\x83\x24\x6a\x7f\x51\xfb\xdb\x78\x44\xed\x6f\xed\x88\xda\x5f\x8b\x11\xb5\xbf\xcd\x46\xd4\xfe\xd6\x8f\xa8\xfd\x45\xed\x6f\x87\x11\xb5\xbf\xa8\xfd\xed\x3a\x7e\xc5\xda\x5f\xac\x46\xb7\xf7\xb1\x8a\x64\x1f\x33\x92\x62\x35\xba\x18\xbf\xb8\xd3\x76\xc7\x6a\x74\x4f\x8f\x5f\x7d\x35\xba\x46\x2c\xdd\xf3\x95\xa4\xdb\x7e\x19\xb1\x2e\x5d\xac\x4b\x17\xeb\xd2\xc5\xba\x74\xb1\x2e\x5d\xac\x4b\xb7\xf9\xd8\x7f\x6f\xc6\xde\xe9\x1f\xaf\xc3\x83\x11\x2b\x22\x6c\x3e\x62\x45\x84\xb5\x23\x56\x44\x88\x15\x11\xa2\x37\x62\x97\x11\x2b\x22\x6c\x39\xa2\xe7\x21\x56\x44\xd8\x6a\xc4\xba\x74\xaf\x26\xc6\x2c\x6a\x61\x51\x0b\x6b\x8e\xa8\x85\x2d\x8d\xa8\x85\x6d\x31\xa2\x16\xb6\x7e\x44\x2d\x6c\x79\x44\x2d\x2c\x6a\x61\x1b\x8c\xa8\x85\x45\x2d\x6c\xd3\xf1\x2b\xd3\xc2\x62\x5d\xba\xbd\x8e\xf5\x8a\x75\xe9\x56\x8c\x18\xd7\xb5\xdf\x71\x5d\x3b\xe2\x0a\x2d\xb5\xc8\x45\xc9\xf5\x0d\xc8\x19\x4b\xe0\x34\x49\xcc\x5f\xb7\xe2\x0e\xb6\x8c\x25\x6a\xaa\xa1\x8f\x4c\x4b\x18\x4f\x59\x82\x8a\xe4\xfd\x14\xb0\xac\x9c\x91\x6f\xf1\x3e\x42\xed\x8d\x44\xe3\x9d\x35\x7a\xe1\x3a\x0d\x51\xc3\x00\x1b\x9c\x7a\x5b\x78\x59\x08\x8d\x84\xc8\x80\xf2\x2d\x9e\x74\xdc\x10\xe4\x96\xa7\xb9\x01\x90\xf7\x8e\x14\xd7\x93\x91\x11\x64\x82\x4f\x5c\x3c\x8f\x3b\x01\x03\x72\x56\xdf\x90\x50\x8e\x87\xa7\x94\x12\xb8\xce\xe6\x08\x07\x2c\x70\x85\x5a\x43\x2e\x66\x90\x22\xc9\xc6\x30\x22\x2b\x47\x52\x4d\x32\xa0\xe6\x5d\x1c\xea\x97\x99\xc3\x43\xc9\x10\xe7\xb7\x93\x8e\xc0\x85\x36\xed\x04\xc4\xed\x69\xe3\x4e\xd4\x70\xc1\xb2\xe1\xc4\x26\xe4\x4b\x09\xea\x47\xc1\x17\xe2\xd1\x9c\x8b\x92\xdc\x53\x2b\x29\xc9\x92\xe3\x61\xc6\x4f\x37\xa0\xdd\xf2\xe5\x2d\x64\x92\xdd\xcd\x0f\x7d\xa4\x6a\x5b\x3e\xd6\xc6\x1c\x40\xe5\x64\x27\x26\xd5\xd8\x9a\xc3\x53\x39\x29\xad\x48\xe8\x50\x19\xb8\x96\x73\x8c\xb7\xb3\x32\x45\x80\x89\x39\x9d\xc0\xe1\xa1\x22\x67\x1f\xce\x0d\xf9\x2b\x95\xa1\xd6\xae\xca\x9e\x23\x87\x85\x14\x33\x96\x1a\xe4\xfe\x9e\x4a\x46\x47\x99\x91\x3b\xc7\x20\x81\x1b\xb1\xe0\x8b\xa3\xef\x4f\xaf\x7f\xbe\x3a\xfd\x70\x71\x8c\x12\x28\x3c\x14\x94\x9b\x53\x51\xaa\x3a\x50\xd4\xbd\xce\xbc\x08\xf8\x8c\x49\xc1\xcd\xfa\x50\x57\xa3\x64\xe6\x67\x4d\xaa\xc3\x20\x41\x89\x6c\x06\xa9\x95\x93\xab\xb7\x79\xae\xc3\x78\x51\x6a\xaf\x3b\x62\xf8\xa2\x39\x40\x3c\x99\x52\x3e\x31\xeb\x3c\x17\xa5\x99\xef\x8b\x2f\x70\x45\x12\xd2\x32\xb1\x92\x13\xf5\x58\xfb\x45\xcf\x73\x0a\x43\xeb\x95\x2d\x89\xa8\x12\x5a\xf8\x35\x87\x9f\xa5\xe6\x5c\xd3\x87\x77\x36\x7e\xef\xe0\x8b\xe0\xd2\x81\x2f\x27\x29\xcc\x2b\x2c\xbf\xb1\xab\xca\xb0\x92\x61\x46\x0e\xc2\xbb\x07\xe4\xc2\xbc\x03\xd2\x10\x80\x36\xfc\x12\x66\x20\x51\xf3\x74\xe0\xeb\x11\x09\x13\x2a\xd3\x0c\x14\x06\x1e\x7a\xda\x6c\xb5\x03\x07\x30\xa8\xf4\x5a\x2e\xf4\x2a\x62\x42\x3e\x08\x0c\x42\x1c\x8b\x77\x64\xaa\x75\xa1\xde\x9d\x9c\xdc\x95\x23\x90\x1c\x34\xa8\x01\x13\x27\xa9\x48\xd4\x89\xa6\xea\x4e\x9d\x30\x6e\x0e\x57\x3f\xa5\x9a\xf6\x83\x53\x7d\x62\x39\x77\x3f\x11\x79\x4e\x79\xda\xa7\x0e\xbb\xfa\xd5\xb6\x9e\xfc\xd6\xf1\xd4\x3e\xad\xee\x62\xbc\x4f\xfb\x6a\x0a\x59\x76\xb8\x03\x3e\xb7\x93\xf9\x5a\xc8\x7a\xad\x64\x3c\xf7\xed\xed\x0f\xf0\x45\x75\x5e\x2d\x0c\x06\xe4\x4a\x68\x17\x1f\xeb\x42\xb1\x91\x8e\x22\x7c\xd7\x1e\xe9\x8b\xab\xdb\xeb\x7f\x0e\x3f\x5e\x5e\xdd\xc6\x93\x1d\x4f\x76\x3c\xd9\x2d\x4e\x36\xf0\x59\xeb\x53\xed\x65\xce\xe0\x98\x54\xfb\x8d\x9c\x5a\x81\xf6\xc7\xa0\xda\x80\xd6\x12\xa2\x1d\xcf\x06\xf5\x06\x04\x2e\xf8\xec\x7b\xda\xb4\xb0\xf3\x95\xe0\x20\xee\x06\x2b\x28\x57\x32\x78\x9b\xf8\xf8\x16\xd6\xac\xb6\xee\xab\x9d\xa4\x48\x3b\xda\xbb\x96\xcc\xab\x77\x37\x34\x34\xb6\xef\x8a\xe6\x75\x85\xea\x15\xbb\x36\x20\x1f\xbc\xda\x43\xce\x7e\xbe\x3c\xbf\xb8\xba\xbd\xfc\xea\xf2\xe2\x7a\x77\x3d\xba\x03\x8b\x0b\xda\x14\x3a\x02\xc0\xe1\x8e\x5c\xb2\x90\x30\x63\xa2\x54\xd9\xbc\xb2\x82\xac\x26\x02\x8b\xa7\xdf\xf9\x7d\xe7\x95\x3e\xbe\xf2\xb1\xc8\x6c\xbb\x65\xb6\xe7\x30\xa6\x65\x66\xb5\xa7\x83\x83\xc1\x2e\x5c\xce\x8e\xae\xd0\xf7\x2b\x29\x5a\x54\x60\x6e\xa0\xf0\x8d\xad\xdd\x3e\x16\x72\xed\x31\x3e\x74\xd1\x07\x0d\xd6\xe3\x84\x47\x6b\xa1\x73\xd2\xa3\x75\x92\xb5\x84\x4e\x4b\x2f\x43\x37\xbe\xf7\x44\xf0\x31\x9b\x7c\xa0\xc5\xb7\x30\xbf\x86\x71\x3b\x33\x71\x13\xde\x68\x7d\x74\xae\x64\xb4\x55\x1a\x76\x66\x5f\xd6\xce\x4d\xd3\x99\x93\xa6\xab\xe8\x8c\xf6\x91\x19\xdd\x05\x52\x74\x12\x44\xb1\x54\x0f\xdf\xda\xa1\x9d\x45\xb9\xab\x18\x9b\x4e\x3c\xf7\xed\xb8\xbc\x1f\x4d\x66\x17\xb2\x7b\x47\x67\xf5\xa6\x6a\x47\x22\x78\x02\x85\x56\x27\x62\x66\x38\x17\xdc\x9f\xdc\x0b\x79\x67\xf4\x08\xa3\xbb\xf6\x2d\xd6\xaa\x13\xf4\x19\x9c\xfc\xd6\xba\xc1\x6e\x3f\x9e\x7f\x7c\x47\x4e\xd3\xd4\x35\x37\x29\x15\x8c\xcb\xcc\xb5\x13\x18\x10\x5a\xb0\xef\x41\x2a\x26\x78\x8f\xdc\x31\x9e\xf6\x48\xc9\xd2\x2f\x77\x27\xce\x7e\x74\xb8\x0b\xa2\xb0\xae\xce\x8e\x77\xe2\x06\x7d\x2c\xf3\x06\xef\xaa\x88\x88\xe1\x5a\x4c\x2b\xc4\x4d\x6f\x75\x76\x42\x46\x47\xa0\xd9\xde\x44\xbf\x38\x70\x0b\xbb\xa5\xab\x87\x35\x61\xb5\x2e\x4e\x87\xa8\x85\x48\xdf\x11\x55\x16\x85\x90\x5a\x91\x1c\x34\x35\x4a\xef\xc0\x60\x58\xaf\xf9\x27\xfa\xaa\x7a\xe4\xbf\xaa\x1f\xd1\xe1\xa4\x7e\x38\x3c\xfc\xfb\xb7\x17\xff\xfc\xf7\xc3\xc3\x9f\xfe\x2b\xbc\x8a\xac\xd0\x46\x01\x35\x6f\x51\x05\x24\x03\x2e\x52\xb8\xc2\x77\xe0\x9f\xaa\xe1\x66\x71\x17\x34\xd5\xa5\x1a\x4c\x85\xd2\x97\xc3\xea\xcf\x42\xa4\x8b\x7f\xa9\x16\x12\x07\xd9\x4f\xc6\x80\x5b\x34\xa4\x7a\xba\x27\xec\xa1\xa6\x25\x1d\x1f\x55\x37\x6b\xd8\x44\x27\xa7\xf8\xcf\xaf\x3c\x08\x8c\xf4\x74\x2f\x99\xd6\xe8\x7a\x73\xa9\xe0\x62\xdc\x33\xa7\xb6\x16\x3b\x67\x6f\x5b\xd7\x47\xe9\x94\xb4\x55\x3b\xd8\x31\xc0\x10\x22\x0e\x5a\xf6\x20\x57\x0c\x76\xd9\xc5\x7c\x3a\xbc\x24\x33\x0b\xe1\xbd\x01\x8e\x4f\xef\xfd\xea\x93\xd2\xb8\xaa\xe9\x92\x03\x55\xa5\x21\xbe\xb3\x41\x41\x55\x92\x31\xc9\x58\xce\x5c\xac\xa1\x6b\xd0\xa4\xc8\x91\xfd\x71\x90\x14\x65\xcf\xdd\x30\xc8\x21\x17\x72\x5e\xfd\x09\xc5\x14\x72\xa3\x69\xf5\x95\x16\x92\x4e\xa0\x57\x3d\x6e\x1f\xab\xfe\xb2\x0f\x36\x5e\xb0\xfc\xb4\x55\x85\x6b\x57\xa9\xa3\xc8\x90\xbe\x3e\xda\xe6\x41\xbf\x27\xa4\xad\xc2\x8c\xab\x4f\x20\x12\x56\x96\x38\x2b\x70\x56\x50\x44\x7d\x72\x26\xb2\x32\x07\xd5\xab\xc4\x20\x6b\x0d\xe0\x33\xa3\x59\xaa\xbd\x12\xd4\x52\x36\x63\xaa\x8b\x30\xe2\x15\x72\x1a\x73\x11\xf9\xa2\xd4\x45\xa9\x5d\xbd\x99\xa0\xb1\x9b\x50\x68\xb7\xa8\x8a\x02\x34\xc8\xfe\xdb\x83\xf6\xd1\xe8\x54\x6b\x90\xfc\x1d\xf9\xcf\xa3\x1f\x7f\xff\x4b\xff\xf8\xcb\xa3\xa3\x1f\xde\xf4\xff\xf6\xd3\xef\x8f\x7e\x1c\xe0\x3f\x7e\x77\xfc\xe5\xf1\x2f\xfe\x8f\xdf\x1f\x1f\x1f\x1d\xfd\xf0\xed\x87\xaf\x6f\x87\x17\x3f\xb1\xe3\x5f\x7e\xe0\x65\x7e\x67\xff\xfa\xe5\xe8\x07\xb8\xf8\x69\xc3\x49\x8e\x8f\xbf\xfc\xa2\xf5\xd2\x29\x9f\x7f\x6c\x49\x40\xed\xe8\x77\x56\x2e\x68\x71\xc6\x8e\xe2\xac\x1f\xfa\xb5\xd2\xd4\x67\x5c\xf7\x85\xec\xdb\xa9\xdf\x11\x2d\xcb\x76\xc4\xa4\x66\x4a\x5d\x9f\x7f\xdf\xbd\xeb\x5d\xcd\x90\x2a\x76\xbd\x37\x07\x5c\x41\x22\x41\x7f\x0e\x4b\x8e\x7d\x93\x97\x53\x16\x62\x1e\x5f\x1b\x9f\xfb\x35\x18\x77\xaa\x90\x41\xdc\xd7\x5a\x12\x1d\x4b\x91\x0f\x48\xe0\xde\x98\x61\xc2\x87\xbb\xef\x0e\x5a\x58\x41\xfd\x88\xc6\xa0\x68\x0c\x5a\x33\x9e\x34\x06\xdd\x58\x3c\xdc\x5b\x4b\x10\xf0\xd9\xae\x2e\x8c\x95\x1e\x74\xaf\xeb\x68\x41\x0a\x51\x94\x19\xd5\x6b\x3c\x63\x2b\xdc\xe9\xee\xa8\xd7\xf1\xc8\x75\x30\x8d\x65\x68\xf9\x6a\x1f\x26\x39\xcd\x32\xc2\xb8\x3d\xf8\x38\x81\x77\x98\x49\xb0\xaa\x0d\xa1\xd6\x9f\x3d\x33\x4b\xb8\x77\x65\xe5\xc2\xb8\x1c\x45\x94\xa6\x52\x63\xec\x31\x96\x9d\xb3\xac\xc4\x79\x9f\x18\xaf\x8b\xcf\x55\xc2\x61\x95\x0b\xb2\xb2\x33\x66\x46\x95\xf6\xcb\xc6\xd5\x68\x7a\x87\xde\xc6\x04\x52\xe0\x09\x60\x62\x5a\x09\xf5\xb7\x8e\x8c\xde\x46\x2e\xf8\xcc\xce\x41\x49\x5a\xda\x60\x10\x4b\xfe\x56\xcf\xf1\xba\x02\x10\x0c\x22\xde\xf8\x06\xc6\x55\x1c\x02\x52\xfd\x4a\xc3\xae\xf2\xfb\x2a\x2b\xab\x7a\x9e\xc8\x83\xf6\x3c\xb3\xf2\x6c\xb5\x12\x86\x96\x98\x65\x6d\x7e\x6e\x32\xc9\xd7\xe0\x0c\x6c\xcf\x3e\x7f\x75\xac\xb3\x23\xb6\xd9\x0d\xcb\xdc\xc2\x77\xd2\x25\x9b\xec\xc2\x59\x52\x48\x18\xb3\x87\x8e\xce\xe9\x29\xaf\x2d\x31\x2c\x05\xae\xd9\x98\xd9\x9e\xf7\x85\x84\x02\x78\x5a\x15\x2e\xc5\xe4\x70\xde\x84\xcd\x5e\x06\xf3\x58\x81\xbb\x5b\x52\x76\xb3\x4a\xd8\x8f\x74\x8c\x44\x3a\xb6\xf3\xf8\x4c\x74\xcc\x61\xee\xfe\x10\x31\x8c\x3c\x6f\x1f\xfd\x7e\xd6\x0c\x65\x47\x44\xde\x1a\xd1\xea\xcc\xae\x13\x9c\x45\xd9\x2c\xc9\x2a\x0d\xbb\x22\x8d\x5a\xd8\xe0\x35\x32\x65\x13\x03\xd9\x0c\x66\x90\x39\xb9\x89\xe4\x94\xd3\x89\xcd\xef\xd6\xc2\x9b\x6a\x8d\xa2\x65\xf0\x58\xb2\x74\x29\xee\x1e\xe5\x78\x83\xdb\x99\xa0\x29\x5e\x94\x22\xcb\x40\x2a\x92\xb1\x3b\x20\xe7\x50\x64\x62\xee\xd2\xb5\x79\x4a\x6e\x34\xd5\x06\xab\x6f\x40\xef\xe6\xf6\x6d\x85\xb1\xb8\xe2\x61\x99\x65\x43\x91\xb1\x64\x27\xa3\x4a\x73\xe7\x2e\x71\xbf\x8a\x32\xcb\x48\x81\x53\x0e\xc8\x47\x8e\x44\xe3\x34\xbb\xa7\x73\xd5\x23\x57\x30\x03\xd9\x23\x97\xe3\x2b\xa1\x87\x56\xfa\x6e\x06\xdc\xd9\x1b\x09\x1b\x93\x77\x58\xdd\x46\x13\x4d\x27\xa8\x3b\x79\x37\x60\xcf\xc0\x3f\x9c\xc0\xd2\x87\x7b\xa6\x56\x2a\x2b\xad\x11\xe7\xb7\x38\x93\xa1\x55\xf6\xef\xcf\xbe\x4d\x19\x1b\x43\x32\x4f\xb2\xf6\x47\xeb\x34\xc1\x00\x86\x3a\xe3\x3c\xc0\x6f\x57\x4d\xdd\xe5\x78\xa2\x16\xc8\x38\xb1\x65\xce\x6d\xfd\xf6\x1a\xd5\xab\x15\x59\x6d\x57\x75\xaa\x24\xee\xcc\x3c\xdb\xb2\xcd\x42\x28\x7d\x63\x34\xf4\x4e\x8a\xa1\x1f\x0e\xfd\x74\x04\x4b\x3e\x67\x19\xa4\x84\xe5\x39\xa4\x46\x8b\xcf\xe6\x84\x8e\x35\xe6\xda\x36\x2c\x04\x89\x04\x8b\xb5\xae\x8a\xc9\x94\xf2\x34\x03\x49\xc6\x94\x65\xce\x1e\xd0\xb8\x5f\x83\xcc\x19\x47\xb3\x80\xf5\xc8\xa2\x89\xc1\xfc\x95\x24\x42\xfa\xf2\xf4\x4c\x2b\x7f\xa9\x3e\x98\xc8\x47\x02\x04\x58\x74\x2d\x93\x51\x26\x92\x3b\x45\x4a\xae\x59\x66\x17\x23\xc4\x1d\x49\x44\x5e\x64\x78\x74\x5a\x9c\xac\xea\x9f\xfd\x0a\x95\xfa\x66\x76\x75\xf2\xdb\xfa\x12\xfe\xb0\x2b\x43\xef\x40\x10\xeb\x42\x0c\x83\x07\x48\x3a\xcb\xf3\xbf\x78\x80\x24\x28\x2c\x81\xfd\x18\xf0\x44\x63\x9e\x27\xbd\x83\x57\x54\xc9\xae\x45\x2e\x5d\x38\x1a\xf0\x3b\xb3\x73\xfa\x42\x58\xee\x15\x24\x63\x1c\xe9\x9b\xcb\xaf\x23\x8c\x2b\xc3\xd9\x1b\x87\xc1\x1e\x3d\x27\xb4\x92\x94\x49\xac\x82\x30\xaf\x02\xa9\xfd\x5c\x58\x60\x40\x08\x4d\x8e\x0e\x4f\x0e\x8f\x97\xec\x8f\x87\x46\x02\xc9\xc0\xd2\x5a\x9f\xb8\x57\x2d\x4a\xb1\xbc\xc8\xe6\xb8\x8e\xc3\xb4\x47\x98\xf6\x91\xd6\xb2\xe4\x7e\x55\x2e\xe9\xaf\x47\x94\x20\x5a\x52\x5f\x5d\xc5\xfe\x6a\x6e\xd2\xb2\x74\x54\xfe\xe8\xf0\x97\xc3\x1e\x01\x9d\x1c\x93\x7b\xc1\x0f\x35\x2e\x7f\x40\x6e\x85\x11\xa5\xeb\x89\xe6\xa2\x24\x1c\x6c\x60\x3f\x3c\x14\x19\x4b\x98\xce\xe6\x48\xb1\x88\x28\xb5\xcd\x21\xa6\xda\x27\x1b\x5e\x3c\x30\xed\xe2\xd5\x0c\xc9\x78\x83\xd0\xb4\x54\x8b\x50\x23\xe6\xcc\xe0\x64\x0a\x34\xd3\x53\x1b\x24\xc2\x05\xef\xff\x0b\xa4\xc0\x1c\x44\xee\xae\xbc\xba\xaa\x7f\x9d\x68\x0e\x86\x88\x7e\x0d\xdd\x35\xf1\xf9\xe6\xf6\x76\xf8\x35\xe8\x05\x92\x61\xde\xe2\x43\x77\xd0\x1a\x00\x72\x2c\x64\xbe\x07\xb4\xa3\x1b\x67\x65\x9f\x14\x42\xee\x03\x09\x9b\x0a\xd5\x6a\x2f\xc9\xd2\x7e\x0a\xa5\x51\x1b\x72\xd2\x18\x87\xc4\xec\x60\x33\x86\xc4\xf7\xb9\xb9\x1c\x0e\xc8\x3f\x45\x69\xbe\x66\x44\x47\xd9\xbc\xaa\xc4\xa0\x40\x93\x03\x33\xd5\x81\x21\x4f\x06\x1b\xbe\x01\x9a\x1a\x15\xc5\x50\x0f\xa0\xfb\xd1\xcf\x8a\xb8\xf3\xe0\xd6\xd6\x2d\x1f\x28\x95\x16\x39\x99\xba\xcf\x6e\xa6\x5e\xba\x93\x31\xc0\xd3\xe3\xf3\x9a\x24\x14\x96\xc2\xb9\x67\x5e\x1d\xfd\x5a\xa2\x1b\x16\xee\xee\xf7\x11\x96\xb1\x4a\x42\xb0\xb9\x86\x4e\x36\x31\x88\x5b\x60\x19\x54\x83\xdd\x5c\x25\xe1\xd8\xe3\xda\xa3\x3b\x27\x72\x2e\x4e\x84\x4e\xbd\xf6\xb1\x5e\x9d\x56\x1e\xed\x26\x6e\x80\xac\x32\xb2\x3a\x9c\xb1\xd6\x17\x6b\xcf\x41\x73\x8c\xf7\xa1\x26\x94\x0b\xce\x12\x9a\xb1\x7f\x41\x4a\xca\x42\x70\x17\x3f\x87\x72\x4e\x42\x15\xf4\xd1\xa9\xcb\xb5\xab\x99\x56\x67\x2b\x9a\xe3\xa8\x85\x40\xe1\x03\xdd\x78\x86\x3e\xda\xf7\xed\x6f\x81\xcd\xcf\x01\xe6\x6e\x50\x8c\x74\x09\x81\xa2\x83\x00\xf2\xe5\xf0\x71\x2d\x8c\xb6\x8b\x09\x9e\x96\x84\x23\x31\x52\x20\x67\xed\x51\xa0\xbb\x4f\x17\xbb\xdb\x15\xfc\x58\x91\x8d\x2d\x09\x2f\xf3\x11\xc8\x3a\xff\x45\xea\x65\x80\x04\xf1\x0f\x57\xf6\x76\x6f\x34\x6e\x36\x69\x34\x4f\xfe\xe5\xcf\x7f\xfe\xe3\x9f\x07\x76\xfa\x2a\x16\x82\x93\xcb\xd3\xab\xd3\x9f\x6f\xbe\x3f\xc3\x14\xdc\xb6\x50\xed\x28\xd0\xb3\xeb\x30\xcf\x4e\x83\x3c\x3f\x69\x88\x27\x26\x96\xb4\xa6\x22\x4d\x0f\x03\x4e\x69\x30\xc0\x68\x87\x46\xaf\x75\x12\x66\x50\x12\xcd\x48\xb4\x4d\x73\xad\x39\x6a\x7b\x71\xc6\x74\x52\xdc\x88\xe4\xae\x43\xed\xe9\x1c\x0a\x09\x89\xb5\xc6\xdd\x9e\x0d\xed\xec\x46\x8b\xbd\xfa\x78\x5b\x27\x34\x60\xd4\x0f\x79\xef\xad\x58\xdf\x38\x7b\x9d\xd1\x7c\xef\xa0\xd0\x95\x81\x60\x44\x93\xbb\x7b\x2a\x53\xb4\x9f\x51\xcd\x46\x2c\x63\xb6\xc4\xb0\x6f\x3d\xc9\x85\x0d\x2b\xb4\xa5\xd4\xc4\x78\xb1\x80\x67\x6d\x74\x45\xc3\x98\x65\x81\x63\xca\x32\xb4\xd3\x96\x5c\xb3\x1c\x5c\xdc\x51\x52\x54\x86\xc3\xd0\x72\x1e\x55\x3c\x3f\xf6\x56\xc5\x3b\xfc\xe8\x7d\x87\x5b\x6b\x7b\x6d\xa3\x1f\xf7\x98\xd5\x39\x16\x67\xd3\x4e\x22\xab\xfb\x55\xb0\xba\x42\xc2\x8d\x16\x45\x47\xbe\x18\x3b\xd9\x1a\x4f\xcc\x08\xc6\xc2\x10\xe1\xb5\xae\x15\xdf\x89\x98\x63\x0a\xa2\xb7\x9d\x89\x86\xfb\xc4\xc6\x7d\xaa\x32\x99\x7a\x33\x28\x07\xa5\x4e\xd0\xe9\x52\x16\x56\x37\x46\x72\x5d\x4a\xe8\x99\xaf\x83\x1c\x57\xd7\xab\x73\x29\xcc\xeb\x81\xdb\x1f\x41\x27\xd6\x3e\x1c\x10\x72\x2c\x3f\xea\x96\xbf\xe8\xac\x49\x24\x55\x53\xc0\x22\x26\xf0\xc0\x7c\xcf\x95\xa1\x48\x0f\x0f\xeb\x4f\x31\x8c\x65\x22\x69\x02\xa4\x00\xc9\x84\x61\x46\x25\xd7\xa9\xb8\xe7\x64\x04\x13\xc6\x95\x07\x85\x99\xdb\xc3\x0c\xbd\x3e\x4c\x55\xe5\xe7\x06\xe4\xba\x51\x52\xc5\x25\x3b\x25\xa2\x3e\x9a\x6e\xcd\x8b\xfe\x2a\xe4\x58\x41\x63\xe6\x0a\xc2\x3e\x08\x57\x6f\xb0\xe4\xa3\x92\xe3\x9b\x53\xc8\xe8\xdc\xc6\xb4\x8e\x19\x47\xcd\x51\xaa\xe3\x0e\xfc\x5a\x06\x84\xf5\xb5\xb5\xeb\xc0\x86\x00\x34\x99\xb6\x73\x31\x47\x47\xd8\x86\x23\x3a\xc2\xda\x4c\x12\x1d\x61\xd1\x11\xf6\xc4\x88\x8e\xb0\xe8\x08\x5b\x18\x7b\xab\x25\x45\x47\xd8\xce\x23\x3a\xc2\x1e\x1f\xd1\x11\xb6\xc1\x88\x8e\xb0\x0d\x47\x74\x84\xad\x1f\xd1\x11\xd6\x6e\x31\xd1\x11\x16\x1d\x61\x6e\xfc\xfa\xac\x83\x7e\x44\x47\xd8\xd2\x24\xd1\x11\x16\x1d\x61\x1b\x8f\xbd\x55\xf1\xa2\x23\xcc\x8e\xe8\x08\x6b\x8e\x5f\x17\xab\xf3\x6e\xa4\xa1\x51\x28\xdb\xe7\xe7\x0d\xd1\x75\xc1\x12\xe7\x8d\x0a\x1b\xe0\x55\xaf\x0a\x7a\xde\x05\x25\x4e\x7c\x5a\x91\xf3\x3b\xd5\xde\xac\x95\xb9\x5f\xdb\x3a\x44\x7c\xc2\xa4\x3a\x29\x84\xfd\x4f\xed\x0e\x09\xfc\x20\x56\xad\xde\x3d\xff\xee\xd9\x32\xcb\xda\x38\x3f\x3e\x8f\xe3\x63\x4f\xbc\x44\x1d\x38\x3b\xa2\xa3\xe3\xd5\x39\x3a\x5e\x4f\x07\x60\xe7\xff\xbf\x9d\x4a\x50\x53\x91\xed\x8c\xe8\x0d\x24\xff\xc0\x38\xcb\xcb\xdc\xe0\x9c\x32\xf8\xcc\x66\x55\xa0\x81\xaa\xd0\xd5\x52\x6c\x6b\xab\x34\x37\xb2\x14\xb0\x70\x2b\x65\x99\xd9\x46\xcc\x45\x9d\xd2\x99\xc1\x75\x55\x26\x09\x00\xb6\x85\x0b\x35\x9c\x3f\x0e\xaa\x37\x55\x6d\x40\xde\xb6\xa3\x37\xed\x98\xb8\x2d\xad\x8a\xb3\xfc\xf1\x0f\x3b\xcd\x31\x91\x45\x37\x74\xf9\xeb\xeb\xe1\x59\xd8\xf2\x9b\x7b\xb2\xcc\xf8\x4c\x64\x08\x55\x6a\x6f\x32\xc2\xda\x33\x12\xe9\xf6\x6a\x47\x2b\x95\xa3\x0b\x1e\xd1\x56\xaa\x6e\xda\xcd\x8c\xec\xdc\xb4\x1c\x4d\x70\x2f\x6d\x05\xff\x8d\x65\xe7\xd6\xd4\xad\xbd\x3c\xdb\xfe\x38\x10\x2c\xb1\x83\x1f\xde\x19\x80\x0f\x5c\xcb\x69\xcf\x82\x43\xc5\xc5\x77\xb5\xd2\x82\x14\x19\xad\xfb\x52\xe1\x0e\x7c\x83\x7c\xe3\x6c\x0a\xc9\xdd\xb5\xf3\xd1\x1e\x29\x80\x4a\x9e\x9c\x30\x3d\x2d\x47\x83\x44\xe4\x27\xe6\x18\xdb\xff\x8c\x32\x31\x3a\xc9\xa9\xd2\x20\x8d\x88\xe9\xd8\x52\x3f\x31\xb3\x30\x3e\x19\xe4\xe9\xf1\x80\xfc\xc8\x6d\x76\x7d\xdd\x07\x33\xa8\x2d\x61\xde\xef\xeb\x7c\x8c\xc0\x50\x44\x21\xc3\xf6\xe5\xa3\x39\x2e\x6f\xd0\xa6\x50\x73\x6b\x36\xd2\xd2\x3f\xfe\xf9\x7d\xe3\x91\x72\x91\x0e\x8c\x24\x2f\xcd\x07\xde\x59\x2c\x48\x07\xbe\xef\x3d\xf2\x7b\xef\x8d\x38\xbb\x2f\xbe\xee\x3d\xac\x76\xdd\x81\x7f\xbb\x0b\xdf\x76\x77\x7e\xed\x4f\x50\x14\xfa\x25\xfb\xb3\x3b\x34\xfa\x75\xe4\xc7\xfe\x1c\x3e\xec\x4e\xbe\xba\xad\xef\xfa\xf3\xf9\xad\xbb\xf9\xdc\x2e\xd5\x8d\x97\xea\xab\xee\xc0\x78\xdf\xa5\xe1\xbe\x33\xa3\xfd\x27\xf3\x4d\xb7\xf7\x4b\xef\x81\x4f\xba\x35\x90\x19\x67\x9a\xd1\xec\x1c\x32\x3a\xbf\x81\x44\xf0\x74\x67\x3e\xb6\x50\x8b\xb4\x3a\x3f\xca\x4e\xeb\x2c\x58\xcd\x44\x8f\x29\x75\x25\xd7\x8d\xde\x66\x13\x5b\xbc\x97\xc3\x89\x2d\xe8\x6f\xb6\xab\xdc\x4b\xbf\x05\xd9\x1b\x53\x99\xcd\x7a\xe9\x72\x13\xbf\x11\xf7\x44\x8c\x35\x70\x72\xc4\xb8\xdf\xc7\xe3\x40\xd9\xac\xed\x96\x15\x5a\x9b\xab\x6f\xdf\xf8\x9b\x5f\x9f\x41\x12\x4d\xaf\x4a\x7d\x7a\xfb\xb0\x7b\xd1\xd3\x06\x62\x77\xe3\xb8\xcc\x9a\x46\x62\x6b\x38\x6e\xd2\x9b\xb7\x75\xd1\xe8\xb7\x38\x6f\x75\xda\x28\x4f\x89\xcb\x84\x7b\x7d\x9b\xd6\x3a\xe2\xa6\x29\xfa\x55\x11\x36\x4f\xd9\x93\x6f\xcf\x86\xd1\x9c\xbc\x5f\x46\x99\x67\x8a\x5a\xd9\x43\x41\xf7\x85\x46\xaa\x44\x41\x77\x8b\x11\xe4\xc6\x7e\x2d\x69\x02\xc3\xce\x65\x04\x7f\x9c\x48\x5a\x4a\xea\x08\x60\x25\xf2\xf9\xc3\xc3\x01\x52\x7b\x9a\xaa\x7c\x62\xcc\xd4\x1d\x97\x59\x36\xb7\x36\x87\x46\xf6\xb5\xf5\xc2\x2f\x26\xf3\xa2\xe1\x7f\xc5\x5b\x6a\xc1\xb2\x90\xc2\xf1\x4c\x59\x72\x6e\x68\x70\xdd\xf9\x0d\x05\x49\x2c\x46\x4d\x1b\x29\xc3\x8a\x4d\xcc\xf2\x0d\xff\xc3\x6c\xe2\x3a\x34\xb1\x31\xa1\x79\x7a\x2c\x64\xc2\x46\xd9\x9c\x4c\x69\x56\xb5\xf9\xa1\xe4\x8e\x65\x99\x9b\x66\x40\x6e\x40\x5b\xc7\x85\xe5\x9d\x99\xe0\x13\x5c\x1c\xe5\xbe\xbd\x24\x24\xe6\xd9\x24\x03\xca\xcb\xc2\xbe\xcf\x70\xe2\xb9\x28\xa5\x7f\xdf\xa0\x72\x7f\x54\x1c\x98\xb3\xac\x17\x34\xb1\x7b\x74\x63\x6b\x13\x8d\x32\x02\xc0\x47\x5f\x7c\xbb\x17\xce\xe9\xeb\xa3\xab\xa0\x85\x51\x21\xc5\x8c\xa5\xd6\x87\xe2\xc1\x86\xed\xb2\x6d\x9b\xa2\xea\x3c\x73\xc1\xfb\x1c\x26\x14\x05\x15\x77\x8a\xec\x9e\xd9\x79\x6c\x6c\x01\x4f\xb1\x71\x91\x91\xf0\x45\xd1\x48\xe7\x9f\x31\xdb\x72\x39\x80\x1c\x39\xe2\x82\x08\x8c\x54\x2d\x39\xd3\xb6\x8d\xff\xb4\xd4\x24\x15\xf7\xfc\xd8\xd9\xac\x98\x22\x94\x8c\x40\xd3\x20\xd6\xd4\x31\x38\x45\x80\xd3\x51\x66\xf6\x1c\x43\xb1\x6e\x57\x02\x88\x8c\x81\xea\x52\x02\x99\x50\x0d\x2b\xe5\x1c\xfb\xbd\x8f\x83\x97\x29\x67\x60\x1d\x93\x92\x2b\x68\xc9\xde\x3b\x13\x8e\xfe\xf2\xa7\xdd\x68\x04\xcb\x41\x94\xfa\xb3\x68\x7f\xf7\x53\x96\x4c\x43\x61\x96\xe5\xa0\x88\x28\x17\xd4\xe2\xb7\xee\xb1\xd5\x3b\x14\x55\xc0\x55\x63\x57\xf3\xf1\x0a\xeb\xd7\x62\x39\x86\xba\xbf\x37\x46\x90\x9f\x5f\xdd\xfc\xfc\xfe\xf4\x3f\x2e\xde\x0f\xc8\x05\x4d\xa6\x61\x4d\x0e\x4e\x28\x12\x0d\x24\x14\x53\x3a\x03\x42\x49\xc9\xd9\xff\x94\xce\xad\x7c\x54\x3d\x7b\xdc\x69\x45\xfa\x1d\xb9\xaf\xa1\x36\x3b\x61\xfc\xca\xa6\x77\x38\x9b\x8b\xd8\x12\x0a\xb0\x4d\xcd\x92\xf8\x54\xf9\xb2\xe7\x56\x45\x40\x81\x0b\x03\xeb\xcf\x3f\x5e\xdc\x60\xc0\x7e\x21\x6d\xa5\x12\x8c\xf0\xc2\xeb\x38\xd3\x08\xcc\x13\xae\x3f\xf1\x80\x9c\xf2\xb9\xbd\x68\xcf\x14\x53\x24\x63\x4a\x03\x72\x3d\x27\xb6\x79\x2f\xf9\xc1\x9b\x01\xfe\xef\x80\xd0\x34\x95\x46\xae\xab\x02\xd7\x92\xa5\x48\x52\x2b\xf9\xb1\x51\x16\x7c\x00\x07\x6d\xe3\xd4\x3e\x88\xd4\xad\x1c\x39\x09\x7a\xc8\x2c\x1b\x54\x5a\x52\x0d\x13\x96\x90\x1c\xe4\x04\x48\x41\x75\x32\x25\x39\x9d\x93\x44\x48\x59\x16\xb6\x9b\x41\x4a\x35\x1d\x90\xaf\x84\x24\xb9\x3f\xc4\x06\xe7\x0d\x1f\xbe\x59\x1d\x39\x50\x9f\xec\xf0\x9f\x4c\xa9\x12\xd4\xc9\xdb\x37\x7f\xfd\xc3\x9f\xff\xfc\xaa\x1a\xe0\x55\xa1\xbd\x18\xf7\x12\x34\xc0\xa3\x7e\x17\xec\xae\xdb\x86\x88\x8c\x4f\xb2\x10\xbf\x76\x63\x00\x6d\xb5\xcc\xb6\x3a\x66\xbf\xfe\x82\xe1\xae\xaa\x66\x27\x8d\xf8\xea\x35\x74\xd4\xbe\xaa\xe6\x83\x5e\xb1\x72\xb4\x41\x84\x1d\x89\x2f\x87\xfe\x60\x3a\x39\x27\x5f\x68\x63\x5b\xd4\x31\x50\x3d\xf2\x86\xfc\x9d\x3c\x90\xbf\xa3\xa2\xf5\x97\xb6\xcd\xbe\xda\xaa\x40\x5d\x84\x34\x19\xfd\xfe\x72\xd8\x11\xc4\xff\x61\x88\xa6\x99\xd1\x40\x55\x0b\x32\x62\x4e\xb0\x87\x07\x0d\xd2\x08\x9a\x6e\x27\x9e\xb5\x4d\x9a\x59\xe0\x67\x44\x33\xeb\x78\xb8\x1c\x37\xc3\xa8\xb6\x43\x34\xf3\xf8\x37\x42\xe9\x2b\x47\x85\x9a\x0d\x7f\xea\xd9\x72\x24\xfc\x0d\x32\x66\xf8\x86\xd2\xf5\x01\x53\x24\x15\x18\xd5\x65\x43\x9c\xa7\xac\x45\xb0\xc6\xfe\xa0\x71\x3b\xff\x7d\x63\x3f\x1f\xdb\xa9\x05\x53\x0a\xea\x40\x4e\xc4\x0a\x6a\x74\x15\x22\x75\xd2\x99\x59\x56\x1a\xf0\x8c\x47\xc4\x33\x67\xb5\xa9\xec\xcd\x88\x4b\xe6\x3c\x25\x94\xdb\x24\x93\x31\x48\x69\xa3\xd2\x47\x73\x1f\x1c\xd8\x7a\xf3\x5a\x9d\xa4\x42\x0a\x2d\x12\xd1\xa2\x93\x5b\xd3\xdb\xed\xa6\x43\x20\x14\x16\x77\x1d\xe4\xbf\x3b\x1f\xf6\xc8\xed\xd9\x10\xbb\x5b\xdd\x9c\xdd\x0e\x9b\x3a\xcb\xc1\xed\xd9\xf0\xe0\x59\x41\x41\xbc\xc0\x87\x26\xea\x1d\x26\x69\x98\xa0\x8c\x34\xd9\xcf\x69\xd1\xbf\x83\xf9\x8e\x3c\xb5\x0b\xbe\xde\xaf\x76\xb8\x93\x0f\xb2\x60\xce\x69\xb1\xf5\x6c\x12\x68\xca\x3e\x53\xa6\x97\x0f\xbb\xad\xde\xb9\x3a\xe5\x2b\x17\x33\x48\xad\x94\xee\x9f\x00\x9e\x16\x82\x19\x79\x31\xe6\x81\x6d\xff\x74\xcc\x03\xdb\x78\xc4\x3c\xb0\x98\x07\xb6\x3c\xf6\x26\x70\x36\xe6\x81\xbd\x2e\x0f\x7e\xcc\x03\xdb\x7e\x3c\xbb\xe3\x3e\xe6\x81\xad\x1e\x31\x0f\x2c\xe6\x81\x6d\x36\x62\x1e\xd8\xf6\x63\xef\x42\x8e\x62\x1e\xd8\x56\x23\xe6\x81\x2d\x8f\x98\x07\xb6\x66\xc4\x3c\xb0\x35\x23\xe6\x81\x2d\x8f\x98\x07\xb6\xdd\x88\x79\x60\x31\x0f\xec\x55\x87\xc7\x92\x98\x07\xe6\x46\xcc\x03\x7b\x15\x41\x80\x24\xe6\x81\x6d\x34\x62\x1e\x58\xcc\x03\xdb\x65\xc4\x3c\xb0\xd7\x62\x94\x89\x79\x60\x31\x0f\xec\xd7\x23\xe8\xc6\x3c\xb0\x98\x07\x16\xf3\xc0\x62\x1e\xd8\xa3\xab\x88\x79\x60\xaf\x41\x05\x94\xa0\xd8\xbf\x60\x28\x32\x96\xcc\x5b\x47\x29\x5e\xbb\xc6\xc7\xca\x4d\x4b\x0a\x9c\x37\x08\xad\x6a\x91\x79\xb2\x67\x09\x37\xd7\x01\xe0\xc2\xc4\x9b\xaa\xf9\xf3\x27\x00\xc1\x5e\x24\xdf\xf8\x0f\xbc\xda\xdd\x93\xd2\xf7\x0d\x08\x2c\xf8\x76\xb3\x5b\xb4\x56\x11\xc2\x0f\xe9\x28\x1e\xfc\x30\xcc\x88\xac\x30\x41\x8b\x8a\x82\xb1\xb5\x08\x42\x8b\x22\x63\xa0\x06\xe4\xa6\x6a\xc0\x83\xd4\x4b\xbd\x23\x49\x51\xf6\x48\x0e\xb9\x90\xf3\x16\xda\x44\x07\x02\x67\x63\xd7\x3a\x02\xd9\xb5\x9d\xd3\x83\xc1\x28\x11\x45\x91\xcd\xad\x30\x55\xa7\x92\x56\x50\x63\x9e\xb8\xa4\x28\xee\x2c\x44\x79\x30\xdd\x50\xc3\xae\x84\xbe\x76\x08\xff\x6c\xb1\xf6\xeb\xa2\xca\xa9\x16\x39\x4b\x76\x21\xd8\x96\xc6\xb6\x8f\x29\x3f\x13\x79\x51\x6a\x68\x90\x6d\x0b\x2c\x2b\xc9\x31\x15\xaa\x70\xed\xa3\xc1\x13\xc1\xc7\x6c\xe2\x44\xf1\x13\xdb\xd1\xbd\x5f\x7d\x4f\x3f\xe8\xa2\xfe\x02\x43\xc1\x93\x8c\xb2\xdd\xfd\xf6\xcd\xd0\xaa\x33\x9c\x0b\x33\x74\xeb\xe0\x2a\x8c\xd1\xad\xa0\xd5\xab\x02\x97\x98\x3d\x26\x03\x7f\xc9\x3e\xdc\xb3\x91\xbe\x46\xff\x40\xa1\x73\xc5\x86\xfe\xc8\x6b\xf1\x98\x13\x9a\x15\xd3\xc7\x05\x64\xb3\x90\xf3\x39\xa7\x39\x4b\x3c\xc6\x9c\x66\x99\x48\xac\x42\xd4\x14\x91\xfd\xdc\x76\x3e\xf3\x92\x3c\x2f\x35\x1d\x65\x30\x20\x97\x36\x43\x48\xf0\x6c\x6e\xb0\x49\x81\xf6\x8e\x0f\xb7\xfd\x3b\xc7\x60\xb5\x0f\xc0\x68\x19\x7c\xb1\x52\x1a\xc2\x0d\xb1\xd9\x50\xc0\xcd\x29\x13\x1c\x08\x70\x2d\xe7\x66\xef\x86\x22\xbd\x31\xdb\xd7\xb8\xbb\x75\x92\x54\xcb\x98\x8b\x2e\xe2\x2d\x5a\xc6\x5a\x74\x13\x21\xd1\x3e\x3a\x62\xd9\xcd\x1b\xe4\x2d\x86\x81\x8f\x8d\x5d\x2d\x44\x3a\x58\x71\x2a\xbd\x68\x30\x14\xa9\x61\x70\x12\xc2\x56\x78\x4e\x3f\xc4\x03\x92\xd3\x3b\x54\xb1\xa9\xae\x39\x1f\x9d\x51\x96\x99\x23\xb4\x22\x1f\xbf\x5d\xe0\x44\x07\xa2\x41\xd7\xc9\x60\xa4\x2d\x06\x75\x99\xcc\x45\xb0\x73\x57\xce\x76\xab\xfe\x40\x96\x18\xef\x7b\x9c\x2b\x08\xc7\x32\x38\x91\xd3\x07\xd4\x59\x69\x2e\x4a\xae\x6d\x86\x97\xe5\xcf\x15\xd1\xb7\x41\x6b\x7b\xc7\x79\x49\x37\x64\x87\xa6\x3e\x05\x66\xd8\x45\x34\x39\xd5\x1a\x24\x7f\x47\xfe\xf3\xe8\xc7\xdf\xff\xd2\x3f\xfe\xf2\xe8\xe8\x87\x37\xfd\xbf\xfd\xf4\xfb\xa3\x1f\x07\xf8\x8f\xdf\x1d\x7f\x79\xfc\x8b\xff\xe3\xf7\xc7\xc7\x47\x47\x3f\x7c\xfb\xe1\xeb\xdb\xe1\xc5\x4f\xec\xf8\x97\x1f\x78\x99\xdf\xd9\xbf\x7e\x39\xfa\x01\x2e\x7e\xda\x70\x92\xe3\xe3\x2f\xbf\xd8\x79\xc9\xad\x6d\xd4\xdd\x59\xa8\x3b\xb2\x4f\x7f\x12\xeb\xb4\x8b\xe3\xec\xe8\x2c\xba\x18\xf4\xa5\xd3\xe8\x2c\x48\x8f\x9d\x46\xcf\x25\x51\x11\xa9\xe6\x61\x8a\x88\x9c\x69\xa3\xc0\x19\xb1\x86\x86\x99\x67\x0b\xea\x89\xa3\x03\x98\x7b\x49\x31\x45\x2c\xc8\xda\x0a\xb4\x1a\xe1\x4d\xb1\xa8\x1e\x71\xc2\xf2\x22\x83\x1c\xb8\xc6\xf3\xdc\xf7\x92\x20\xea\x8b\x83\x7a\x25\x89\x95\xd8\xe1\x21\x01\x48\xdd\xcb\x22\xe9\x78\x7a\x44\xd2\xf1\x1a\x49\x47\x6b\xe3\xc5\x22\xdd\x08\xa6\x73\xca\x98\xf2\x76\x1f\xb4\x68\x54\x59\x26\x62\x8c\x5e\x8d\x19\x4b\x4b\x9a\x85\x75\x2d\x7c\x85\x85\x41\xa8\x2c\xe5\x74\xbe\xa4\x1b\x31\xce\xc2\x82\x18\xbd\xca\xef\x84\x37\x3a\xa9\xa0\xb6\x76\x1f\x9c\x66\xf7\x74\xae\x0e\x6c\xed\x24\x2e\x78\x7f\x61\x02\x22\xa4\xf7\x56\x85\xe2\xe7\x8a\x94\x99\xa5\x8f\x69\xa6\xcc\x38\x61\xf6\xf0\x50\x55\x77\x7a\x7b\x96\x5b\x61\x1d\xb5\x65\xd0\x02\x3d\x5d\xda\x6b\x93\x4d\x18\xd2\x7a\xe1\x95\xb9\xb4\xb9\x6e\xeb\xa1\xc2\x4a\x14\xe6\xe2\x58\x98\x0f\xc7\x32\x57\xe3\x31\x24\xfa\x9d\xcb\xfd\x59\xf1\x8c\x8d\x7d\xd1\x8c\x97\x34\xcb\xe6\x41\xff\x53\xc1\x09\x3c\x30\x4d\x4a\xae\x59\x66\x20\x49\x24\x4c\xca\x8c\x86\xfa\xa8\x7b\xa3\x77\x42\xa6\x03\xf2\x91\x1b\x79\xfc\x91\x9b\x0d\xb3\xc8\x40\x1b\x28\x52\x4c\xe6\x6d\x82\x1f\x5d\x80\x0d\x84\xac\x3f\xdd\xaf\xb7\x72\x63\x39\xec\xa8\xbb\x64\xa7\x6c\x3c\x36\xb3\x60\x2a\x3f\x17\x32\xa7\xcb\x6f\x70\x79\xc8\x36\x0e\x2b\xac\xc4\x81\x35\xd9\x0e\x8c\xfe\x90\x50\x79\x10\xda\x03\x4e\x33\x3d\x15\xe5\x64\xba\x12\x8a\x4a\xa3\xd3\xcd\x2c\x58\x79\xf7\xe8\xe2\x2d\x86\xef\xf0\x04\x2c\x9b\x13\x60\xf1\xe9\x9e\x32\xbd\x6c\xfd\xb6\xb1\x13\x16\x46\x3e\x84\x0f\xbd\x98\x90\x06\x91\x8f\x1c\x1e\xf4\xc2\x5b\x06\xe4\xd2\xe6\xaf\xf4\xd6\xdd\x51\x2d\x32\xf0\x1c\x7a\x5f\xef\xf2\x77\xb1\x2a\x92\x10\x0b\x75\xd8\x1b\x29\x9f\xfb\xa8\x26\xf4\x0a\xda\x80\xc3\x2a\x60\x2a\x9b\xd7\xfb\xbb\x93\x41\xb6\x15\x81\x54\x90\x94\x92\xe9\xf9\x99\xe0\x1a\x1e\x76\x8a\xec\x68\x52\xb2\x9b\xe6\x84\x0d\x5a\xe6\x5f\x46\x44\x61\x33\xd1\x17\x4a\xfd\x4d\x45\x99\xa5\x58\x5e\xa2\xe4\x88\xd5\xb6\x6e\x10\x68\xbb\x3d\x48\x59\x50\xeb\x5d\x7c\x89\xf7\x23\x5b\xf7\xf6\xff\x94\x6c\x46\x33\xe0\x3a\x78\x62\x88\x9e\xd3\xf0\xa1\x4d\x65\x17\x4d\xd5\x5d\x2d\xb8\x40\xbf\x10\x69\x2d\xa7\x9c\xf8\x4f\xc2\x9f\xe0\x41\xbf\x44\x63\x23\x52\xfc\xa1\x64\x33\x96\xc1\x04\x2e\x54\x42\x33\x94\xcf\xba\x11\x89\x4f\xd7\xcc\x8e\x1b\x2f\x45\xa6\x0c\xef\x30\x22\xa9\xe1\x5e\x36\xf4\x00\x2d\x7a\x13\xca\xb8\xad\xd4\x57\xf8\x87\x95\x8d\x61\x30\x52\x6e\x41\xa5\xd9\xe0\x2a\x56\x01\x89\xda\x48\x88\xcc\xd5\x60\xc0\x53\xe5\xe6\x77\xd5\x48\xb8\xf8\x99\xc3\xfd\xcf\x66\x36\x45\xc6\x19\x9d\xd4\xc4\x11\xf4\x52\x94\x51\x3d\xf5\xda\x0f\xc0\x02\x07\xa5\x21\xdd\x86\xd6\xd6\x01\x1b\x21\x3d\x78\x47\xde\x1e\x23\x3a\x53\x45\xaa\x39\x52\xf2\x87\x63\xa4\x02\x67\xa7\xc3\x9f\x6f\xfe\x79\xf3\xf3\xe9\xf9\x87\xcb\x2b\x72\x25\x34\x58\xd9\x3d\x60\xa4\x49\x65\x28\x37\xab\xac\xfc\x18\x03\xa1\x06\x68\x2b\xc2\x2c\x1a\x9e\x8a\x7b\xb5\xb3\x37\xc7\xa2\x9f\x01\x1e\x50\xbe\x9b\xb9\x9a\x16\x74\xc4\x32\xd6\x46\x52\x5e\xca\x6c\x09\x27\x45\x5e\x93\xa6\x27\xa9\x14\x85\x05\x82\x0f\xae\x09\x0c\xbd\x0d\xf7\x7d\x98\xa1\x8b\xfb\x3b\x6e\x4e\x38\x91\x94\xeb\x5a\xec\xa8\xf7\x4c\x1a\xe6\x8d\xf5\xa8\x5a\x6e\xc7\xf3\x29\x30\x5d\x58\x3b\x69\xda\x5d\x7d\x95\xd3\x34\x85\xb4\x01\xfe\xd6\x51\x8c\xfb\x96\x17\x79\xe6\x3f\x2e\x70\xdf\x93\xe1\xc7\x9b\xcb\xff\xbd\x80\xc7\xf3\xa2\x5d\x82\x56\x37\xb5\xba\xa4\x28\x3a\xdb\xdd\x6b\x57\x0b\x2a\xee\xef\x5e\xec\x6f\xc5\x2d\xbb\x49\x0b\xb8\x2e\x79\xb3\xc8\x72\x3d\x3f\xc9\x45\x0a\x03\x32\xac\xe2\x13\x9b\x57\x43\xfd\x41\x02\x31\xb7\x70\xcd\x50\x63\x0a\x44\x34\x2d\x6c\x5d\xa4\x46\xb5\xc8\x90\x90\x8f\x69\xa6\x9e\x9b\x1a\xb7\xe1\x8d\x46\x8e\xf8\x20\x4a\xde\x4d\xdc\x7f\x35\x1b\x49\x81\x0b\xed\x04\x6b\xb3\x4a\xac\xc0\x29\x45\x42\xac\x8d\x31\x48\x02\x6b\xf0\x37\x65\x63\x24\x3d\x6b\x64\xca\x03\x7b\x58\xcd\x6c\xc3\x4b\x4a\x05\x8b\x02\xba\x63\x8d\xb5\xd5\xd1\xcc\x2e\x81\xa6\x68\x38\x28\xa8\x9e\x5a\x55\x31\xa7\xea\x0e\x52\xfb\x83\x13\xcd\x2a\x07\x30\xea\xf8\xfe\x55\xb7\x66\xdd\xde\xd7\x8b\x22\x99\xcd\x2c\x41\x2f\xb1\x51\x8d\x9f\x75\xd7\x5b\x1c\x42\x03\x94\x8f\x3c\x9b\x5f\x0b\xa1\xbf\xaa\x0a\x7b\x75\x82\x01\xff\x70\xd2\x72\xd3\x01\x8f\xe2\x24\xc5\xf7\xf6\x71\x37\xf0\x50\x85\x35\xc5\xce\xeb\x1d\x7f\xe9\x47\x4a\x96\xfc\x54\x7d\x2d\x45\xb9\x33\x13\x5b\x12\x36\xbf\xbe\x3c\x47\x52\x54\xba\x10\x69\xae\xe5\x1c\x8b\x19\x2e\x57\xa4\xaf\x14\x83\xef\x5c\x90\x77\x78\x26\xea\x78\x5c\xf2\x81\xce\x09\xcd\x94\xf0\xb0\x74\xee\xf9\x45\x2d\xd4\xa9\xb8\xe6\xf2\x48\xe8\xe9\x92\x6e\x6b\x0e\xd4\xf2\x73\xbd\x20\x62\xba\x8e\x6b\x62\x7c\xe9\x71\x8d\xbe\xdf\x42\x42\x02\x29\xf0\xe4\xb9\xb7\xfd\xb9\x03\x8d\x11\x75\xae\x04\x37\x07\xb3\x13\xe4\xb9\xac\x22\xcc\x1d\x48\x43\x54\x41\xe7\xbe\xd3\xfe\x28\x9a\x4e\xf1\x58\x96\x0a\x4d\x4f\x63\x54\x1f\xed\x4e\x7e\x5b\x8e\x20\x33\x90\x37\x2a\x29\xd6\x43\xa6\xda\x9a\x33\x58\x4e\x27\x40\xa8\xae\x30\x4d\x0b\x02\x5c\x95\xd2\x6d\x62\x68\x1e\x73\xaf\xfa\xee\xf2\x9c\xbc\x21\x47\xe6\x5d\xc7\x88\x3f\x63\xca\x32\x0c\x66\x47\x9b\xea\x82\x8e\x3a\xf6\x53\xe0\x92\x10\x79\x89\x90\x96\x48\xf4\x08\x17\x44\x95\xc9\xd4\xaf\xc9\xe8\xbd\x5e\x6d\x76\x09\x98\xe8\x41\xde\x4f\x5c\x7f\x5e\x0a\xf5\x9d\x02\xd9\x19\x81\xfa\x6e\x07\x02\x15\x8a\x51\x06\xe7\x9a\xd0\xb3\x88\x95\x83\xa6\x29\xd5\xd4\x11\x2e\x7f\xc3\xde\x6e\xe9\xaf\x9b\x7c\x29\x78\xcf\x78\xf9\x60\x13\x9e\xba\x33\xb5\xdc\x5c\xe0\xb4\x24\xf1\x50\xc7\x5d\xb7\x41\xc4\xa9\xb7\xa6\x84\x56\xf3\x06\xae\xf4\xd6\x88\x89\x48\x27\xa8\x0d\xea\x03\x23\x9c\x50\x9e\x8a\x7c\xe9\x65\x46\x88\x84\x46\x2f\x97\x01\x89\xd8\xd7\x1c\x7b\x62\x14\xca\x60\x06\x2d\xaa\x9d\x2f\xf6\xae\x31\xb3\x19\xe0\x78\x8c\xc0\xe9\x49\x46\x47\x90\xb9\x80\x53\x1b\xc6\xbe\x8c\x81\xcf\x9d\x05\x2b\x45\xd6\x5d\xd9\x8e\x6b\x91\x81\x4d\x2b\xf3\x80\x30\xd3\xbf\x08\x38\xe0\x24\x5d\xc1\x01\xb5\xc1\x06\x1c\x50\xaf\x7d\x09\x70\x28\x5b\xb0\x7a\xb2\x08\x07\x23\x37\x34\xe1\x80\xcc\x7b\xdf\xe1\xa0\x20\x49\x44\x5e\x0c\xa5\x30\x6a\x67\x67\xbc\xc9\x4d\x5b\xfb\x0c\xad\x61\x63\x45\x08\x3a\xf2\x82\xe6\xcd\x54\x06\x09\xa5\x54\x5b\x26\xe1\xb3\x4a\xff\x57\xc0\xb3\x90\xf4\x2c\x32\x32\x3f\x4b\xc3\xbd\x68\x9e\x74\x17\x5e\x32\x3b\xe8\xa2\x26\x43\x0b\x63\x67\x27\xdc\x48\x24\x34\xc3\x6e\x36\xed\x50\x8e\x2c\xa2\xdd\xe2\xc4\x41\x1a\x31\xfa\x28\xf1\xb7\x20\x63\x82\xa2\xa1\xc5\x9b\x30\xb9\x48\x21\xf0\x65\xdb\x28\xec\x5b\x9b\x6e\x8a\xf7\xf9\x0c\x66\x23\x57\x78\xb7\x72\xda\x78\x5a\x0b\x57\x93\xfd\x43\xd5\x23\xc7\x2c\x10\x38\xc6\x33\x14\x54\x4f\x7b\x44\x42\x66\x73\x9f\x1d\x11\xb8\xb3\x1a\xe4\x21\x1e\x09\x3f\xa9\x3f\x0f\xfe\xd5\x3e\xc1\xa2\x9e\x19\xa5\xa7\xb1\xa5\xb4\x4c\x91\x83\xf7\xfe\xdb\x0f\xdc\x3d\x57\x1f\x6f\xc3\xe0\x21\xca\xe7\x36\x82\xd0\x46\xe0\x3c\x37\xe1\xed\x94\x01\x1d\x58\x28\x54\x9b\x6d\x0d\xa1\x77\x8c\xa7\x2e\x8b\xb8\x01\xcb\xaa\x69\x9d\x15\x93\x31\x3f\x9d\xa5\x21\xe9\x79\x47\x7e\xe4\xa4\x02\x28\xe9\xef\x8c\x3d\xd7\x56\xa2\xf6\x26\xbc\xfe\xe3\x76\xd9\xea\x25\x8b\xd3\x7c\xc7\x11\x35\xcc\x7b\xfb\x46\xb1\x5f\xbe\xcf\x7f\xcb\xb3\xd6\x2d\x76\xc4\xb1\x6b\x25\xe7\x1f\x76\x5a\x2f\xf1\x27\x06\xa5\x35\xe3\x13\x15\x2a\x3a\x34\xcb\x1a\xb6\xf2\x55\x9a\x8e\xdf\xe1\xaa\x45\xe1\xb2\x86\xb1\x50\xfd\xe0\xa5\x68\x29\x99\x91\x36\x5e\xb8\x8e\x32\xc9\x15\x3d\x93\x06\x12\x9a\xd1\xec\xa6\xd8\xbd\xa7\x0a\x59\xaa\xdf\xff\xe1\xe6\xb4\x39\x35\xf2\x72\x97\x7a\x03\x78\x9d\xd0\x34\x67\x4a\xa1\x9d\x0c\x46\x53\x21\xee\xc8\xd1\xa3\xad\x25\xfb\x8a\x4d\xd4\x89\xc3\xf9\xbe\x59\xfd\x31\x61\x3c\xab\x82\xa6\x50\x4d\xe6\xba\xca\xf6\xc1\x97\x24\xd5\x2a\x70\x0f\x5d\xa3\x2d\x17\xcb\xb0\xbc\x4c\xdb\x5a\xcb\x60\xc1\xb3\x13\xec\xe5\xed\x69\x97\x31\xfd\xe4\x16\x5d\x39\xdc\x5e\x2c\x2b\xbf\x12\x8e\x56\xb8\x7c\x76\x20\x39\xd9\x23\x01\xd5\x5d\x35\xeb\x6f\xea\x39\x49\x0a\x36\xfe\x14\x30\x38\x8a\xae\x8d\xc1\x43\xb3\xf5\x21\xd6\xa8\x72\x8f\x1e\x36\x63\x3c\x33\x03\x4d\x8a\x41\xbb\x2a\x74\xf8\xd6\x4d\xde\xaa\x9a\xbc\x36\xaa\xd6\x08\x2c\xe1\x4a\x2c\x79\x3b\xaa\x5b\xda\xf8\xf0\x63\x2d\x7c\x93\xb8\x9c\x3d\x98\xb7\x84\x4f\x2d\x84\xa6\x72\xc1\xfb\xab\x2f\x1f\x0f\xc8\x25\xaf\x02\xfa\x7b\xe6\x6b\xc3\x1b\x7d\x04\x97\x36\xc4\x30\x6c\x30\x88\xeb\x0f\xed\x4f\x46\xc8\x92\x65\x07\x98\xd1\xc6\xaa\x4c\x42\xcb\x72\xa7\xc7\x06\x2d\xcc\x6e\x52\xc3\x62\x3c\xaf\x6c\x63\x71\x36\xb7\x7c\x2a\xab\xf3\xcb\xf0\x23\x90\xd6\xd1\xb9\x41\xd8\x70\x07\xa1\xb9\x61\x10\x32\x5b\xf6\x5b\x0d\x45\xba\x1c\x9b\xec\x8a\xb3\x56\x25\x12\x02\x59\x88\x0b\xa7\x09\x04\x55\x52\x5d\xaf\xac\xd4\x85\xc0\x3b\x15\xdd\x86\x37\x37\x67\xae\xeb\x4b\x05\x6d\xe2\x7a\x75\x42\x6b\xd5\x69\xae\x8a\xa8\xfe\x6f\x3c\x94\x55\x3c\xa7\x2f\x1b\x39\xac\x1e\x07\x9f\xfb\xe0\x7a\x46\x62\xae\xba\x16\xde\x02\xe0\x42\xdd\x5d\xdc\xa8\x51\xc0\xa8\xa4\xb9\x21\x85\x8a\x38\x10\x8c\x60\xc2\x6c\x5c\x61\x45\xd7\x0e\x83\x60\xf9\x9e\x15\x9b\x98\x26\x39\x9b\x4c\x2d\xa2\x10\x8a\x05\xb6\x88\xf7\xcd\x65\x82\xa6\xd8\x6b\x1a\xd3\x22\xa8\xcc\x0d\x7d\xa5\xc9\x14\x1d\x7d\x94\x93\xb4\x94\xd8\x3e\x49\x03\x4d\xe7\x7d\xa5\xa9\x36\x12\x25\x48\xa7\x97\xf9\xf5\xc7\x5e\x79\x8f\x8e\xd8\x2b\x6f\xc3\x11\x7b\xe5\xc5\x5e\x79\xcb\x63\x6f\x82\x2c\x63\xaf\xbc\xd7\x55\xe5\x38\xf6\xca\xdb\x7e\x3c\x7b\x71\xe3\xd8\x2b\x6f\xf5\x88\xbd\xf2\x62\xaf\xbc\xcd\x46\xec\x95\xb7\xfd\xd8\xbb\xb2\xec\xb1\x57\xde\x56\x23\xf6\xca\x5b\x1e\xb1\x57\xde\x9a\x11\x7b\xe5\xad\x19\xb1\x57\xde\xf2\x88\xbd\xf2\xb6\x1b\xb1\x57\x5e\xec\x95\xf7\xaa\x5b\x88\x90\xd8\x2b\xcf\x8d\xd8\x2b\xef\x55\x34\x4a\x20\xb1\x57\xde\x46\x23\xf6\xca\x8b\xbd\xf2\x76\x19\xb1\x57\xde\x6b\x31\xca\xc4\x5e\x79\xb1\x57\xde\xaf\x47\xd0\x8d\xbd\xf2\x62\xaf\xbc\xd8\x2b\x2f\xf6\xca\x7b\x74\x15\xb1\x57\xde\x6b\x50\x01\x95\x4e\xd9\x4e\x25\x36\x37\xa9\x06\xe4\xc2\xb8\x83\xe4\xfb\x51\x39\x1e\x83\x44\xca\x85\x6f\x5e\x0a\xab\xaa\x0b\x1f\x2e\xba\x72\x41\xf7\xb0\xb0\x90\xcb\x78\x59\xf3\xb8\xcb\xf6\xc7\x52\x98\x12\x14\xd6\xc2\xe1\xe4\xe2\xe3\x57\x2b\x4a\x0f\xed\x1c\x6f\xb8\x6b\xf4\x34\xae\xf9\x23\xdf\xcd\x0b\xbf\x06\xe0\xab\x32\xb0\x1c\xdc\x93\x4c\x28\x17\xfa\x8e\xc0\x4a\xa6\x94\x73\xf0\xfa\x1e\xd3\x68\x47\x19\x01\x70\x22\x0a\x70\x3e\x70\x4a\x14\xe3\x93\x0c\x08\xd5\x9a\x26\xd3\x81\x79\x13\xf7\xc0\xae\xe3\xd4\xdd\x2f\x4a\x4b\xa0\xb9\x05\xba\x84\x9c\x32\x3b\x15\xa1\x89\x14\x4a\x91\xbc\xcc\x34\x2b\xaa\xc9\x88\x02\x4c\x49\xb1\x8c\xaa\x02\x06\xc6\xcb\xd5\xc1\xed\xbd\xfa\x6d\x6e\x59\x82\x2f\x56\x42\xee\x61\x5f\x81\xbc\xd0\xf3\x2a\xc2\x17\xc8\x98\x49\xa5\x49\x92\x31\xe4\xd6\xf8\x46\x9b\x9c\x8c\xf3\x55\xf5\xc5\xb9\x5b\xa9\x72\x4b\xe5\x29\x8a\xad\x85\x56\x36\x5e\xb6\x9e\xd0\x4d\x95\x32\xe5\xc4\x7c\xd5\x23\xd4\x17\x26\xb3\x80\xf6\x2b\x45\x50\x7b\xce\x62\x67\x77\x3f\x05\xd3\x85\x05\x9a\xab\x80\xe2\x1a\xd1\xb1\xf2\x98\x47\xce\x5e\x23\x1f\xa2\x16\x28\x5c\xfb\x9c\x85\x63\x80\x1b\xc0\x61\x66\x70\x00\x12\x30\xfc\x95\xae\xc1\xfa\xcf\x8e\xf4\x01\x53\xfc\x00\x4a\xd1\x09\x0c\x77\x74\x34\xac\xd3\xc8\xd0\xd7\x50\x6f\x0c\xa2\x42\xd6\x68\x51\x18\xc6\x6d\x36\xc5\x20\x92\xdb\x35\x55\xc2\xcf\xbd\x64\x5a\x03\x6e\x2a\x96\xb0\x43\x8f\xe8\x62\x86\xfb\xe1\x42\xf4\xe7\x07\x3f\x49\xfd\xb0\x21\xea\x3c\xb5\xb1\x98\x23\x20\x23\xc9\x60\x4c\xc6\x0c\x03\x3c\x31\xe4\xb2\x67\x2b\x1a\x51\x6b\x05\x50\xca\xe8\xbb\x82\x7b\x59\xd6\xaf\x6b\x40\xfe\xe1\x16\xa6\x65\xc9\x13\x1a\x14\x8b\xc5\x1c\x4d\x36\x26\x13\x0c\xd9\x74\xd2\xe2\x9f\xde\xfc\xed\x2f\x64\x34\x37\x2c\x0d\x25\x2b\x2d\x34\xcd\xaa\x8f\xcc\x80\x4f\x0c\xac\xec\xf1\x6c\x66\x19\x56\x10\xc0\xae\x40\x76\xe1\x6f\xff\x70\x37\x6a\xf2\xd8\x93\x14\x66\x27\x01\xfc\xfa\x99\x98\xac\xea\xa3\xf7\xd9\x4b\x88\xaf\x40\xb3\x6e\xba\x22\xf8\xd2\x5a\x64\x2a\xee\xad\xac\xbf\x02\x7b\xea\x84\xa5\x42\x14\x65\x66\x8d\xce\x5f\x55\xf9\xb9\xa5\x82\xe5\x2c\xba\x95\xe7\x02\xcd\xa4\x6e\x8a\xc5\xc2\xe4\x36\x52\xd7\xbf\x52\xb8\xac\x13\x67\xc8\xab\x2a\x6c\xa1\x22\xf4\x15\xcd\xb2\x11\x4d\xee\x6e\xc5\x7b\x31\x51\x1f\xf9\x85\x94\x42\x36\xd7\x92\x51\x43\x2d\xa7\x25\xbf\xb3\x9d\x60\xaa\x1a\x04\x62\xe2\x5c\xb9\x3e\xc5\x61\xd5\x07\xdb\x84\x74\x4f\x84\x97\x1b\x23\xc0\x03\xab\x75\x1d\x4e\xc0\xbc\xdf\x62\x64\x38\xbf\x0a\x91\xed\x0f\x6f\xfe\xf4\x57\x8b\xba\x44\x48\xf2\xd7\x37\x18\xcd\xad\x7a\xf6\x10\x23\x6d\x33\x8c\x22\xa7\x59\x66\xd4\x86\x10\x29\x0d\xa0\x57\x21\xe1\x67\xc7\x41\xdd\x1e\xdd\x36\x16\xa5\x6e\x6f\xff\x69\xfb\x68\x68\x05\xd9\xb8\x67\xf3\x95\x2a\xb5\xe6\x10\x19\xc3\xa1\xa3\x3e\x98\x34\xb6\x07\x02\xd0\x4c\x64\x65\x0e\xe7\x30\x63\x5d\x34\xfb\x6c\xcc\xe6\x55\xfd\x8c\x29\x4c\x0d\x1b\x65\x22\xb9\x23\xa9\xbb\x18\xc4\xb7\x2c\x96\xda\x7e\xb9\x7d\x9b\xc3\xef\x6f\xc4\xf6\xe4\xb4\x28\xaa\xec\x21\x49\xef\x1b\xc0\xc0\x33\x89\x09\xff\x2f\xbf\x6f\xb3\xfd\x22\x43\x37\x77\x9e\x62\xe7\x80\xa0\xf6\x36\xea\x7a\xf5\x1d\x75\xe7\xac\x27\xf4\xa7\xa1\xc0\x7f\xdb\x7c\x93\xa5\x7c\xc9\x2a\xe5\xae\x42\x0c\x2b\x00\x18\xf4\x41\x92\xfc\x6c\xfd\x85\x49\xeb\xc0\xa6\x06\x5c\xf8\x23\x2d\x2e\x29\x29\x40\x2a\xa6\x0c\x5f\xfe\x1e\x0f\x94\xed\x6d\x5a\x9b\x00\x9f\x07\x08\xf6\x70\x63\x7d\xe2\xf6\x94\x72\x28\x52\x37\x21\x92\x42\x5b\x9b\x79\x85\x58\xdb\x94\x6a\x3b\x64\xa8\xcf\x4d\x2a\xbf\xaf\xa1\xd9\xa4\x94\xe6\x97\x8a\x54\xda\xbb\x5e\x13\x81\xc4\xef\x7b\xa9\xf4\xb1\x5a\x7c\x47\x64\x00\x09\xa3\xdb\xdc\x26\x25\x6c\x28\x8f\xf6\xa0\x04\x22\xbd\xd3\x03\x07\xc4\x7a\xc1\xcd\x99\x70\x8f\x92\xc3\x77\x87\xcf\x4a\x24\x2d\x88\xa4\x28\xe8\xa4\x55\xb3\x9c\x05\x48\x2d\x4e\x1b\x96\x6a\x30\x6a\x10\x5e\xaf\xea\x9a\xe1\x5d\x90\xd6\x95\x68\xb0\xce\x90\xf5\x8e\x7a\x00\xfb\xde\x6e\x28\xdb\xde\xd3\x39\xa1\x52\x94\x3c\x75\xf6\xa5\xca\xc0\xf7\x61\xe1\xc5\x57\x82\x43\xdd\x44\xb8\xd9\x7e\x1b\x2d\xfa\x8c\x93\xb7\x83\xb7\x6f\x5e\x0b\xa7\xc2\x2f\x5c\xe0\x54\x57\x15\xa7\xb2\xf4\xe9\x59\xbf\xd5\x97\x94\xef\xe8\x7b\x3f\x38\x13\x4b\x5d\x31\x9e\xf9\x7a\xd4\xf8\xd3\xbd\x64\x1a\x82\x5e\xa1\x47\xa8\xb8\x18\xfd\x30\xa8\xd7\x70\xbc\xaa\x55\x43\x4b\x20\xb5\x2b\x90\xa1\xca\xd1\x27\xa4\x5b\x8e\x40\xe1\x71\x5b\x65\xe1\x52\x8f\x90\xb0\x10\x50\x07\x07\xe4\xc8\xde\x79\x68\x53\x9d\x8f\x9f\x15\xb5\x1c\xd0\x2e\x1e\x8a\x16\x45\x2c\x17\xb2\xea\x0b\x8a\x36\xb8\xa2\x43\x08\xfe\x07\x4c\xe9\x0c\x30\xc5\x9b\x65\x54\x66\xe8\x73\xbc\xb1\x6b\x27\xa3\x52\x13\xe0\x33\x26\x05\xcf\x81\x6b\x82\x31\xf0\xa3\x0c\xc2\x56\xf9\x5f\x1c\x7d\x7f\x7a\x8d\x01\x0d\xc7\xae\x58\x85\x5b\x65\xa9\x7c\x13\xc9\x70\x25\xc1\x74\x4f\x6e\x9f\x5f\x87\x81\x21\xd2\x5c\xbf\x2e\xf3\x9e\xbc\xd4\xb6\x53\x24\x3c\x24\x59\xa9\xd8\xec\xb9\x28\x89\xcb\xbd\x3f\x67\x3b\xed\xf3\x42\x1d\x80\x1a\x50\x4b\x29\xfd\x68\x5a\x5f\x91\x06\xb8\xe4\x30\x39\x54\x55\x6a\x60\xe8\x03\x77\xa6\x27\x57\x65\xc3\x86\xcf\xf9\x92\x86\x4b\x22\x04\x56\x94\x79\x5e\x23\x54\xca\xd5\x19\xae\x70\x3b\xb0\x36\x03\x92\x1b\xd9\x82\xe7\x57\x37\x61\x79\x12\xab\x2e\x89\x74\x40\x86\xf5\x8f\x75\x0d\x1b\xac\x40\x56\x29\x91\x20\x27\x75\xd5\xee\x09\x70\x90\x28\x24\x98\x29\x1b\xfd\x97\xc9\x88\x2a\xeb\xe4\x39\xbf\xba\xb1\x36\xdb\xed\x60\xb6\xb3\x98\xbd\xbb\x84\x8a\x29\x2d\x98\xc6\xb0\x83\x70\xdb\x6c\x4a\x56\x19\xac\x0c\x60\x50\x29\xb5\x13\x93\xcb\x21\xa1\x69\x2a\xd1\xed\xb3\x90\x7c\x63\xf4\x73\xef\x5b\xc0\x7a\x31\x54\x41\xb8\xa6\x00\xdc\x48\xe2\x6a\xc0\x92\xf3\xb2\xc8\x98\x75\x23\x84\x0f\xd4\x75\x6e\xb0\x8b\xd6\xf6\x48\xdb\x46\xcd\xdb\x59\xc9\x6b\x41\x85\xc4\xae\x65\x1d\x1f\xd9\x3d\x09\x4a\x64\xb3\xba\x62\xef\xc2\xae\xb9\x13\x81\x26\xf1\x6a\xd7\x7c\x15\xc7\x8d\x76\x0c\xb8\x96\x0c\x96\x77\x8b\x5c\x9b\x37\x97\x78\x9a\xaa\x09\xd9\x0c\xd0\x3f\xee\x0a\x58\xda\x87\x82\x1a\xc2\xd6\x37\x6c\xcb\x38\x03\x95\x9e\xa2\xe1\xaa\x76\x3c\x89\xe4\xb9\x10\x61\xd1\xd8\x71\x7e\x75\x63\x29\xa1\xfd\xf8\xaa\xfd\xeb\xaa\x5d\xaa\xa9\xda\xce\x18\xf8\x6c\xf5\x87\xda\x68\x1e\x0b\xdd\xf3\x5c\xdb\xff\x56\x81\x2c\x2d\xc4\xbf\x56\xc9\x76\x2d\xde\xae\x80\xca\x64\xba\x0b\xfc\x1f\x21\x04\x76\x52\x92\x0a\x1b\x09\x30\x16\x12\x55\xe2\x3e\x92\xf7\x4c\x88\xbb\xb2\xd8\x84\xa2\xbb\x69\x6c\x47\xb3\x8d\x08\x44\xe3\x89\x5f\x15\x4d\x4f\xb9\xda\xc5\xdf\xdb\x94\x7d\x40\x5b\x89\xc7\x76\x2f\xaf\x12\x28\xc4\xa2\xde\x74\x96\x95\x4a\x83\xfc\x8a\x49\x2c\x50\x6d\x2b\x2e\x23\x06\x5b\x9b\xc8\x61\x78\xc3\x3f\x98\x9e\xba\xa2\x8e\x87\xbd\xe6\x25\xf3\xb7\x9b\xf8\xd0\xe8\xb4\x87\x57\x82\xc3\xe1\x60\x51\xec\xaa\x48\x79\x45\xd6\xd6\xf2\x14\xb7\x74\x05\x99\x8d\x17\xc5\x0b\x01\xae\xdc\xba\x7a\x96\xe6\x0d\x9e\xfe\x29\xd0\x84\x62\xf1\x38\xbc\x7b\x5a\x17\xa0\xb4\x15\xa5\x6c\x01\x4d\xe1\x04\xbd\x79\x08\xa2\xa0\xc8\x94\x16\xeb\x3f\x7b\x17\x79\x6e\x6b\x0c\xb0\xdd\xfa\x5c\x55\x92\xf7\x8c\xdf\x6d\x89\x7e\xcd\xe8\x92\x8b\xa5\xd9\x1a\x15\xb9\xad\x8f\x96\x71\x1b\x7c\x67\x58\x0c\x1d\x89\x52\xfb\xca\x27\x2a\x50\x1c\x19\xff\x6f\xbb\x17\x68\x6f\x2f\x6c\x2d\xbf\x55\x3a\xa2\xea\x59\xa3\x8f\x57\x02\xd5\x9c\x6b\x8a\x45\x47\xcf\x45\x72\x07\x92\x64\x66\x19\x03\x52\x07\xbe\x34\xea\x5c\xca\x12\xb6\x8c\xba\xd8\xd5\xd2\x01\xc5\x14\x72\x90\x34\xab\xb4\xaf\x36\xa0\x7e\xef\x08\x67\x35\x6b\x18\x93\x62\xcb\xa5\xb9\x02\x8d\xe6\x1c\x5e\xac\xba\x2b\xa7\x73\x5f\x2b\x96\x71\x0c\x37\x78\x60\x0a\xcd\xfa\x85\x48\xc3\xc4\xb3\x52\x81\xec\x57\x69\x81\x2e\xf7\x46\x55\x81\x38\x29\x8c\xca\xc9\x84\xf1\x89\xa3\xce\x48\xd3\x83\x82\xd5\x95\xa6\x83\x91\xde\x89\x04\xaa\x6d\xc6\x4e\x21\x52\x1b\x5f\xc6\xc2\xfb\x73\x91\xda\xdb\x47\x73\xab\x0d\xfa\x9d\xad\x03\xa4\x2f\x39\x11\xd2\x15\x60\xa0\x69\x8a\x6b\x5f\xfe\x42\xbc\xda\xfc\xaa\x5e\x15\xc7\x61\x23\xbb\xab\xa7\x02\xb0\xa8\x72\x64\x84\x9d\x52\x6e\x5b\x3b\x74\x57\xc2\xbf\x13\xd1\x6f\x56\x15\x3a\xe5\xf5\x16\x9f\x85\x01\x73\x94\x68\xc8\x0b\x21\xa9\x9c\x2f\xba\x30\x0d\x91\x32\x28\x60\x00\xb8\x00\xa9\xa1\x48\x91\x8e\xaf\xd8\xf8\x99\x6d\x95\xbb\x62\xef\x57\xe2\x18\x52\x41\x2e\x88\x87\xa8\xa1\xd7\x2a\x99\x42\x5a\x62\xf4\xf8\xa4\xa4\xd8\xca\xdb\x9c\x62\x67\xec\x9e\xbb\xb0\x3c\x8b\x0c\x55\xc0\x5f\x95\x26\x30\xc7\x20\x19\xac\xcf\x69\x7e\xc1\x3a\x9f\x36\x34\xd0\x76\x32\xc6\xae\xa6\x55\x94\xe0\x6d\xdd\x5c\x01\x3f\x16\x66\x2c\xd1\xfe\xa1\xf1\x3a\xc4\x49\x68\xd5\x40\x75\x28\x5c\x5d\xc0\x04\x0c\x31\xd2\xaa\xfe\x14\x17\x55\x82\x95\x3f\x7f\xe4\x86\x49\xac\xc7\xc5\x1a\xf1\x9e\x40\x39\x94\xab\x9b\x5b\xf1\xc8\xf1\xad\xa0\xb4\xe2\xdb\xb7\x2d\xc9\xd4\x42\x28\xdf\xdd\xe3\xb6\x93\xa7\xac\x8d\xfc\x4f\xe5\xa4\xbd\xae\x74\x78\x2a\x27\x65\x8e\x21\x69\x4e\xf2\xac\x0b\x2c\x5b\x9c\x43\xbb\x96\x61\x59\x67\x1f\xce\xc3\x14\x86\x30\x36\xdb\x27\x80\x18\x51\xa8\xa5\xbd\x73\xd1\xe0\x79\x69\x94\xb3\xca\x8a\x5a\xd3\x56\xa7\xc5\x39\x8b\x5e\xf5\x36\xaf\xc5\x32\x5e\x18\x6e\x8c\x32\x44\x50\x7a\x24\x99\x52\x3e\x41\x33\xb8\x28\xcd\x7c\x5f\x7c\x81\x2b\x92\x90\x96\x89\xeb\xbc\xe0\xe3\x9f\xbf\xf0\xd6\x3f\x57\x28\x08\xfb\xc3\xa9\x84\x16\x7e\xcd\xe1\x67\x59\x56\xfd\x8e\xb0\x01\x0c\xc8\xc1\x17\xc1\xa5\x03\xfb\xf6\x42\x0a\xf3\x0a\x17\x3a\x8d\xab\xca\x98\xc6\x83\x70\x10\xde\x3d\x20\x17\xe6\x1d\xe8\x11\xa9\x00\x18\x44\xf7\x8e\x6a\xf0\xf5\x88\x84\x09\x95\x69\x86\x19\x77\xe3\x4a\x28\xb1\x79\x39\x0e\x60\x78\xfa\x30\x9e\x8e\x0b\xbd\xca\x3a\xb9\x61\x5a\x84\xa6\xea\x4e\x9d\x58\x51\xa6\x9f\x52\x4d\xfb\xd8\xad\xc2\x12\x8d\x13\xab\x5e\xf7\x5d\xfd\xd3\x3e\x75\x38\xd5\xaf\xb6\xf5\xe4\xb7\x2e\xb3\xaa\x4f\xab\xbb\x18\xef\xd3\x3e\x56\x22\xdd\x3d\x56\xf4\x19\xc2\x0a\x5a\x69\xba\x2d\xca\xe0\x2e\x8a\xa7\x55\x19\x74\x84\x01\x36\xdb\xa8\xcb\x5e\x57\x11\x0c\xae\xd2\x6b\xe3\x20\x5f\x5c\xdd\x5e\xff\x73\xf8\xf1\xf2\xea\x36\x9e\xe7\x78\x9e\xe3\x79\x6e\x71\x9e\x81\xcf\x5a\x9f\xe5\x4a\xff\x59\xa5\x12\x2e\x94\xb0\x0b\x32\xaa\x5f\x51\x70\xd6\x05\x9f\x7d\x4f\x8d\xc0\x57\x48\x50\x28\x8b\x18\xb9\x71\x95\x17\xd5\xdd\x60\xfb\x55\x9d\xbd\xf8\xe8\xac\x67\x8c\xad\xea\x30\x66\xe5\x2a\x28\x04\xb0\x6a\xd7\xc2\xfe\x71\x67\x3f\x5f\x9e\x5f\x5c\xdd\x5e\x7e\x75\x79\x71\xfd\xac\xc1\x06\x2d\x8b\xbb\x35\xb9\xf1\x8e\x5c\xb2\x90\x30\x63\xa2\x54\xd9\xbc\xaa\x42\xbb\x9a\x08\x2c\xc7\xab\xf1\x14\x5b\xe0\xf9\x42\xbb\x2b\x1f\x8b\xcc\xb6\x5b\x66\xdb\x8c\xbd\x68\x51\xd7\xa3\x2b\xf4\xfd\x4a\x8a\xbc\x23\x14\xbe\xb1\x2a\xbb\x37\x79\xaf\xc2\xa7\x43\x57\x02\xa0\xc1\x7a\x9c\xf0\x58\xd7\x1b\x30\x52\x68\x5e\xe8\x16\x6d\x01\x3a\x29\x1a\xda\x4d\x7d\x4d\x1b\xa7\xf0\x81\x16\xdf\xc2\xfc\x1a\x5a\x96\x0f\x59\x70\x35\x64\x90\x18\x46\x47\xee\x60\x6e\x3d\x90\x67\xfe\x65\xed\x8a\x60\xee\x61\xcd\xd5\x3b\x68\x53\x0f\xb7\xcb\x62\xa9\x77\xd0\x22\x70\xd1\x8f\xa5\x82\x9e\x66\x0b\x51\x4e\x33\x7b\xba\x57\x25\x4c\x3f\x41\x71\xd8\xc3\x90\xdd\x3b\x3a\xab\xb7\xae\xae\x20\x66\x86\x73\xc1\xfd\x89\x0b\xda\xea\x1b\x8d\xb5\x6f\xb1\x56\x9d\x60\x64\xca\xc9\x6f\x6d\xe1\xd8\xdb\x8f\xe7\x1f\xdf\x91\xd3\x34\x75\xc1\xc3\xa5\x82\x71\x99\xd9\x30\x60\x35\x20\xb4\x60\xdf\x83\x54\xd8\x57\xed\x8e\xf1\xb4\x47\x4a\x96\x7e\xd9\xa6\xe8\x92\x1d\x1d\xee\x82\xf0\x0e\x9b\x6e\x77\xe2\xc6\xf9\xe3\x42\xde\x55\x11\x11\x62\x33\x03\x11\x37\x7d\xfd\x15\x27\x64\x74\x04\x9a\xb6\x2d\xe4\x88\xdd\xc2\x6e\xe9\xea\x61\x4d\x58\x6d\x9c\x78\x55\xa0\x2a\x7d\x47\x54\x89\x85\x62\x54\xd5\xf7\x0d\x3b\x8e\xf6\x9a\x7f\xaa\x82\x26\xd0\x23\xff\x55\xfd\x88\x0d\xcf\xd5\x0f\x87\x87\x7f\xff\xf6\xe2\x9f\xff\x7e\x78\xf8\xd3\x7f\x85\x57\x91\x15\xa2\xd6\xbc\x70\x0b\xfa\x77\xb8\x48\xe1\x0a\xdf\x81\x7f\x3a\x71\xed\x34\x49\x44\xc9\xb5\xbb\x80\x59\xbd\x83\xa9\x50\xfa\x72\x58\xfd\x59\x88\x74\xf1\x2f\xd5\xaa\x92\xd8\x5e\x32\x06\xdc\xa2\x16\xd9\x29\x76\x74\xc7\x1e\x6a\x5a\xd2\xf1\x51\x75\xb3\x56\xfd\x31\x92\x29\xe4\xb6\x96\xd1\x57\x1e\x04\xd8\xc3\xd5\x97\x0f\xe0\x98\x73\x6d\x24\xd3\x66\x59\xb9\x83\xd9\xdb\x83\xbd\x62\x30\xd5\x0e\x76\x0c\x30\x84\x88\x83\x96\x3d\xc8\x15\x83\xf5\x5a\x4a\xed\x8d\x3d\x1d\x5e\x92\x99\x85\xf0\xde\x00\xc7\x7b\xc1\xbe\xfa\xa4\x34\x2e\xf4\xb5\x35\x34\xc4\x77\x04\x93\x29\xfc\x75\x97\x67\xaf\xaa\xd2\x57\x60\x14\x9b\x23\xfb\xe3\x20\x29\xca\x9e\xbb\x61\x90\x43\x2e\xe4\xbc\xfa\xb3\xf2\xf1\xf5\x95\x16\x92\x4e\x30\x2f\xc3\x3e\x6e\x1f\xab\xfe\xb2\x0f\x36\x5e\xb0\xfc\xb4\x55\x85\x93\x52\x1a\xa1\x21\x9b\x7b\x8a\xbc\x63\xbd\x88\x7a\xec\x21\x6d\xf3\xa0\xdf\x13\xd2\x56\x61\x46\xdb\x86\xad\x76\x34\x11\xb2\x76\xd4\xa3\xc0\x59\x41\x11\xf5\x49\x97\x77\xda\xab\xc4\x20\x6b\x0d\xe0\x33\xa3\x59\xee\x5c\x39\xab\x1e\x1d\x52\xb3\x94\xcd\x98\x12\x2d\xb2\x4f\xaa\x89\xd6\x87\xd4\xbb\xd2\x17\x36\x70\xa8\x32\x9b\x3d\x14\x58\x2c\xa8\x3a\xaf\x0b\x64\xff\x6d\x9b\xae\x44\x76\x14\x54\x6b\x90\xfc\x1d\xf9\xcf\xa3\x1f\x7f\xff\x4b\xff\xf8\xcb\xa3\xa3\x1f\xde\xf4\xff\xf6\xd3\xef\x8f\x7e\x1c\xe0\x3f\x7e\x77\xfc\xe5\xf1\x2f\xfe\x8f\xdf\x1f\x1f\x1f\x1d\xfd\xf0\xed\x87\xaf\x6f\x87\x17\x3f\xb1\xe3\x5f\x7e\xe0\x65\x7e\x67\xff\xfa\xe5\xe8\x07\xb8\xf8\x69\xc3\x49\x8e\x8f\xbf\xfc\xa2\xf5\xd2\x3b\xa8\xdd\x69\x47\x97\x15\x3c\x9b\x33\x76\x82\x7e\x9f\xb0\x6c\xbd\x1d\x1e\xbd\xba\x3e\xff\x3e\x7a\xf8\x5d\xcd\x90\x2a\x76\xbd\x37\x07\x5c\x41\x22\x41\x7f\x0e\x4b\x8e\x7d\x53\x50\x41\xe0\x50\x91\x4a\xb5\x78\x6d\x7c\xee\xd7\x60\xdc\xa9\xda\xda\xe1\xbe\xd6\x92\xe8\x58\x8a\xdc\x67\x85\xa3\x7b\x63\x86\x91\xc0\xee\xbe\x3b\x68\xd5\x1c\xd5\x8e\x68\x0c\x8a\xc6\xa0\x35\xe3\x49\x63\xd0\x8d\xc5\xc3\xbd\xb5\x04\x01\x9f\xed\xea\xc2\x58\xe9\x41\xf7\xba\x4e\x58\x42\x6d\x33\x87\xda\xc0\x1f\xf5\xba\x1f\x64\x1d\x42\x63\x19\x5a\xbe\xda\x87\x49\x4e\xb1\x57\xb3\x3d\xf8\x38\x41\x9d\x76\x61\x55\x1b\x57\xe1\x0f\x66\x66\x09\x55\x89\xe8\x46\x31\x48\x0c\x74\xc4\xd0\xd3\x7f\xd8\x48\xd0\x3b\x1b\x1c\x6a\x94\x34\xc6\xeb\x32\x9a\x95\x70\x58\xd7\x5e\xa6\x4a\x89\xc4\x06\xb5\x56\x49\x00\x58\xd9\xcd\x2d\x1b\x57\x83\x0d\xe2\x0b\x09\x09\xa4\xc0\x13\x70\x75\x99\x1b\xbd\x2f\x29\x27\x17\x7c\xe6\x6b\x53\xa7\x3e\xa5\x04\x57\xb2\x7a\x8e\xd7\x15\x80\x60\x10\xd1\x39\xc1\x82\x38\x04\xa4\xfa\x75\x34\x2b\x86\x62\x88\x71\x6d\x65\xdd\xad\x3d\x5e\x6b\x2e\xde\x9e\x67\x56\x9e\xad\x56\xc2\xd0\x12\xb3\xac\xcd\xcf\x4d\x26\xf9\x1a\x9c\x81\xed\xd9\xe7\xaf\x8e\x75\x76\xc4\x36\xbb\x61\x99\x5b\xf8\x4e\xba\x64\x93\x5d\x38\x4b\x0a\x09\x63\xf6\xd0\xd1\x39\x3d\xe5\xb5\x25\x86\xa5\xc0\x35\x1b\x33\x9b\x62\x52\x48\x28\x80\xdb\x2c\x01\x9a\x4c\x91\xf6\x3b\x4e\x59\x3b\xa7\xf7\x31\x98\xc7\x0a\xdc\xdd\x92\xb2\x9b\x55\xc2\x7e\xa4\x63\x24\xd2\xb1\x9d\xc7\x67\xa2\x63\x0e\x73\xf7\x87\x88\x61\xe4\x79\xfb\x98\xf7\xb3\x66\xad\x15\xd7\x95\x76\x4b\x44\xab\xd3\x8e\x4e\x70\x96\x9d\x0c\xd0\xad\xf0\x01\x5f\x3b\x2c\xb3\xac\xa3\xfa\xd4\x87\x97\x08\x8d\xa2\xcc\x32\x97\x96\x3b\x20\x1f\x39\x1e\xc9\x53\xec\x83\xd0\x23\x57\x30\x03\xd9\x23\x97\xe3\x2b\xa1\x87\x56\xb6\x6d\x86\xb3\xd9\x1b\x09\x1b\x93\x77\x46\x6b\x52\x9a\x68\x5b\x8b\x3e\xa8\x9c\x23\x64\x63\x82\xba\x28\x57\x8b\x30\xf4\xf5\xdb\xf2\x5b\x9f\x30\xd9\x7f\xa6\x6d\xaa\x9a\x7d\x74\xa0\x9e\xba\x99\x7c\x80\x1c\x06\x45\x3a\xef\xc8\xaa\xac\xd7\x17\x58\x88\xa2\x10\x4a\xdf\x18\x2d\xb6\x9b\x46\x30\x43\x3f\x1d\xf6\x56\xa0\x59\x06\x69\xa3\x13\x90\xed\x60\x41\x9b\x5a\x34\xe6\xe3\x56\x0d\x15\x80\x4c\x29\x4f\x33\x90\x58\x14\x5d\x2d\x56\x7e\x62\x75\x17\x80\xaa\x6f\x83\x4f\xd0\xa4\x49\x22\x64\xea\x3a\xb0\xba\x44\x49\x5c\x4c\x75\xbc\x90\xd6\xe6\x94\xd3\x09\xa0\x65\x61\xa9\xb4\x2e\x16\x5c\x56\x41\xf3\x87\xa9\x10\x77\x24\x11\x79\x91\xe1\x01\x68\x71\x3e\xea\xde\x33\x15\x8a\xf6\xcd\xec\xea\x24\x68\x4b\x83\x3f\xb4\xeb\x4a\xd3\x4a\x58\xe9\x42\x54\x81\x07\x48\x3a\xeb\x5b\x77\xf1\x00\x49\xd0\x78\xd1\x6c\x89\xeb\xbc\xa8\x05\xda\x36\xda\xf7\xd3\x6d\x6d\x96\xef\xca\x14\xde\x22\xcb\x2c\x1c\x0b\x85\xd6\x70\x4e\x5f\x57\xda\xbd\x02\x4b\xf4\xdb\xac\x62\xcc\x3c\xf3\xa5\xa6\x1b\x87\xc1\x1e\xbd\xa5\xea\x6c\x55\xb0\xb1\x9f\x0b\x73\x9f\x85\xd0\xe4\xe8\xf0\xe4\xf0\x78\xc9\x46\xb7\x50\x9c\xf8\x36\x78\x92\x61\x35\xbe\x02\x4b\xdb\x41\x72\x98\xf6\x08\xd3\x9e\xd8\xda\xa2\x00\xb8\x2a\x97\x0e\x87\x1d\xea\xb5\xa4\x29\x73\x5a\x10\xfe\x6a\x6e\xd2\xb2\x74\x15\x01\x8e\x0e\x7f\x39\xec\x11\xd0\xc9\x31\xb9\x17\xfc\x50\xe3\xf2\xb1\x7c\x46\xa9\x82\x89\xe6\xa2\xc4\x2e\x75\x16\x04\x55\x2d\x0c\x43\xb1\x88\x28\x6d\x4b\x9b\x29\xd5\x3e\x0d\xef\xe2\x81\x69\xdf\xc6\x41\x8c\xc9\x1b\xdb\x51\x07\xa8\xb3\x12\x66\x6c\x06\x27\x53\xa0\x99\x9e\xda\x40\x0a\x2e\x78\xdf\x36\x45\x33\xa4\xc4\x5d\x69\xeb\x53\x68\x67\x72\x0b\x47\x0b\xf3\xdb\xf2\x82\x5a\x4a\xd7\x86\x88\x7e\xbd\x7b\xa7\x56\xb2\xd4\xc4\xf8\xf6\x76\xf8\x75\xa3\x57\x2b\x52\x71\xad\x0b\x1f\xde\x12\xd4\x95\xd8\x03\xda\xd1\x8d\x43\xaf\x55\xd3\x56\xd2\x21\x09\x6b\xdb\xbc\x95\x2c\x37\xa5\xde\xae\x6b\x2b\xf9\xa7\x28\xb1\xdb\x1c\x1d\x65\x73\x72\x4f\xb9\xf6\xa9\x78\x07\x66\xaa\x03\x43\x9e\x0c\x36\x7c\x03\x34\x05\xa9\x90\x7a\x00\xdd\xb9\x7e\x96\x1f\x9d\x39\x9a\x82\xb5\x75\xcb\x07\x4a\xa5\x45\x4e\xa6\xee\xb3\x9b\xe9\x89\xee\x64\x0c\xf0\xf4\xf8\xdc\x1f\x09\x85\xa5\x70\xee\x99\x57\x47\xbf\x96\xe8\x86\x85\x7b\xa3\xce\x7c\x12\x82\x2d\xec\x46\xc2\xb8\x05\x96\xed\x23\xd8\x11\x2d\xed\x20\x40\x80\x74\x18\x24\x40\xda\x25\x3b\x2e\x4e\x84\x8e\xaf\xf6\xf1\x50\x9d\xc5\x1d\x90\xce\x7c\xeb\x64\x95\x21\xd2\xe1\x8c\x8d\x82\xb5\x36\x8f\x46\xe9\xb8\x84\x72\xc1\x59\x42\x33\xf6\x2f\x48\x6d\x57\x5c\x1b\x63\x86\x72\x4e\x42\x15\xf4\xd1\xf1\xc9\x2d\xfd\x0b\xda\xbc\x72\x73\x1c\xb5\x10\x28\x7c\xa0\xab\xcb\xd0\x47\xfb\xbe\xf6\x91\x0b\xa4\x5b\xbf\x39\x69\x9f\xb4\x19\x8e\xc7\xc1\xdc\x0d\x8a\x91\x2e\x21\x50\x74\x10\x64\xbd\x1c\x62\xbd\xd4\xb3\x1b\x89\x91\xad\x0a\xbb\x37\xbc\xac\x6d\x03\x73\xb2\x3a\x63\x59\x12\x5e\xf5\x9b\x7d\x19\x4d\xcc\x49\x77\xc1\x90\x5d\x87\x42\x76\x1a\x08\xf9\x49\xc3\x20\x31\xf9\xa2\x35\x15\x69\x5a\xe1\x71\x4a\x83\x01\x46\x3b\x34\x7a\xad\x93\x30\x9d\x0d\xc9\xf7\xc4\x68\x1a\x5d\xcd\x51\xdb\x8b\x33\xa6\x93\xe2\x46\x24\x77\x1d\x6a\x4f\xe7\x50\x48\x48\xac\x35\xee\xf6\x6c\x68\x67\x37\x5a\xec\xd5\xc7\xdb\x3a\xe8\x1f\x23\x63\x6a\xf3\xe8\x37\xce\x5e\x67\x34\xdf\x3b\x28\x74\x65\x20\x18\xd1\xe4\xee\x9e\xca\x14\xed\x67\x54\xb3\x11\xcb\x98\x9e\xa3\x09\x40\x02\x66\x14\x70\x61\x43\xef\x6c\x29\x46\xe1\x1b\xaa\x56\xdd\xbe\x2b\x4b\x19\xda\xe1\x1c\x0b\x1c\x53\x66\xb4\xfe\xaa\x6b\xae\x8d\xcd\x49\x8a\xca\x70\x18\xda\xbf\xa3\x8a\xe7\xc7\xde\xaa\x78\x41\x47\xd8\x6d\xb5\xbd\xb6\x11\x82\x7b\xcc\xea\x1c\x8b\x93\x55\xc3\xb3\xc8\xea\x3a\x9a\x6f\x7f\x59\x5d\x21\xe1\x46\x8b\xa2\x23\x5f\x8c\x9d\x6c\x8d\x27\x66\x04\x63\x61\x88\xf0\x5a\xd7\x4a\x5a\x82\x2b\xca\x79\x3a\xbc\xac\x6c\x67\xa2\xe1\x3e\xb1\xb1\x91\xbe\x12\x67\xc6\x66\xc0\x41\xa9\x13\x74\xba\x94\x85\x6b\xfa\xef\x7a\xdb\xf6\xcc\xd7\x41\x8e\xab\xeb\xd5\xf9\x06\xae\xb3\x2e\xfe\x08\x3a\xb1\xf6\xe1\x80\x90\x63\xd3\x2e\xb7\xfc\x45\x67\x4d\x22\xa9\x9a\xda\xae\xb3\xf0\xc0\xb4\xeb\x9c\x3c\xb4\x95\x7a\xc3\xe6\xb7\x13\x49\x13\x20\x05\x48\x26\x0c\x33\x2a\xb9\x4e\xc5\x3d\x27\x23\x98\x30\xae\x3c\x28\xb0\xd6\xa6\x83\x19\x7a\x7d\x98\xaa\x0a\xb3\x0d\xc8\x75\xa3\xec\x88\x4b\x08\x4a\x44\x7d\x34\xdd\x9a\x17\xfd\x55\xc8\xb1\x10\x4e\xb6\x87\x4b\x05\xe1\xb0\xad\xcd\x53\x4b\x3e\x2a\x39\xbe\x39\x85\x8c\xce\x6d\xdc\x27\x76\xa4\x66\xff\x02\xa9\x8e\x3b\xf0\x6b\xd9\xc6\x4c\xfe\xda\xda\x75\x60\x91\x53\x9a\x4c\xdb\x39\x8a\xa3\x23\x6c\xc3\x11\x1d\x61\x6d\x26\x89\x8e\xb0\xe8\x08\x7b\x62\x44\x47\x58\x74\x84\x2d\x8c\xbd\xd5\x92\xa2\x23\x6c\xe7\x11\x1d\x61\x8f\x8f\xe8\x08\xdb\x60\x44\x47\xd8\x86\x23\x3a\xc2\xd6\x8f\xe8\x08\x6b\xb7\x98\xe8\x08\x8b\x8e\x30\x37\x7e\x7d\xd6\x41\x3f\xa2\x23\x6c\x69\x92\xe8\x08\x8b\x8e\xb0\x8d\xc7\xde\xaa\x78\xd1\x11\x66\x47\x74\x84\x35\xc7\xaf\x8b\xd5\x79\x37\xd2\xd0\x28\x94\xed\x9b\x0a\xa3\x5a\xea\x68\xec\xab\x4c\xe1\x6a\xe3\x65\xf8\x3c\x1e\x86\x3d\x71\xc7\x74\xe0\x55\x88\x1e\x85\x57\xe7\x51\xe8\xc6\x1a\xd7\x81\x25\xae\x35\x4d\x76\x8e\xf6\xdb\xa9\x04\x35\x15\xd9\xce\x88\xde\x40\xf2\x0f\x8c\xb3\xbc\xcc\x0d\xce\x29\x83\xcf\x6c\x56\x79\xf4\x55\xdd\x69\x19\x1d\xfd\xd6\x28\x68\x6e\x64\x29\x60\x15\x51\xca\x32\xb3\x8d\x98\xf4\x39\xa5\x33\x83\xeb\xaa\x4c\x12\x00\xec\x51\x16\xaa\x12\x7f\x1c\x54\x6f\xaa\x7a\x52\xbc\x6d\x47\x6f\xda\x71\x4b\x5b\xe7\x13\x67\xf9\xe3\x1f\x76\x9a\x63\x22\x8b\x6e\xe8\xf2\xd7\xd7\xc3\xb3\x80\x2e\x53\xee\xc9\x32\xe3\x33\x91\xcd\x6c\x27\x5b\xbc\xc9\x48\x45\xcf\x48\xa4\xdb\xcb\xf7\xad\x64\xfb\x2e\x78\x44\x5b\xf1\xb5\x29\x7b\x18\x21\xb5\x69\xa2\x99\xe0\x5e\xda\x72\xf2\x1b\x0b\xa9\xad\xa9\x5b\x7b\xc1\xb1\xfd\x71\x20\x58\xef\x05\x3f\xbc\x33\x00\x1f\xb8\x3e\xdf\x9e\x05\x87\x1a\x82\x6f\xb1\xa4\x05\x29\x32\x5a\x37\x49\xc2\x1d\xf8\x06\xf9\xc6\xd9\x14\x92\xbb\x6b\xe7\x0c\x3d\x52\x00\x55\x24\xcb\x84\xe9\x69\x39\x1a\x24\x22\x3f\x31\xc7\xd8\xfe\x67\x94\x89\xd1\x49\x4e\x95\x06\x79\x92\x8a\xc4\xb1\xa5\x7e\x62\x66\x61\x7c\x32\xc8\xd3\x63\x6c\xc3\x7b\xd9\x6c\xca\x18\x94\x62\x30\xef\x77\x0a\x1c\x19\x81\xa1\x88\x02\x95\xf4\xa0\x9e\x9b\x59\xde\xd6\x8d\x73\xc3\xd1\x9a\x8d\xb4\x74\x44\x7f\x7e\x27\x74\xa4\x5c\xa4\x03\x6b\xc4\x4b\x73\x36\x77\x16\x74\xd1\x81\x93\x79\x8f\x1c\xcc\x7b\x23\xce\xee\x8b\x53\x79\x0f\x4b\x2f\x77\xe0\x48\xee\xc2\x89\xdc\x9d\x03\xf9\x13\x54\x28\x7e\xc9\x8e\xe3\x0e\xad\x6b\x1d\x39\x8c\x3f\x87\xb3\xb8\x93\xaf\x6e\xeb\x24\xfe\x7c\x0e\xe2\x6e\x3e\xb7\x4b\x75\xe3\xa5\x3a\x85\x3b\xb0\x92\x77\x69\x21\xef\xcc\x3a\xfe\xc9\x9c\xc0\xed\x1d\xc0\x7b\xe0\xfc\x6d\x0d\x64\xc6\x99\x66\x34\x3b\x87\x8c\xce\x6f\x20\x11\x3c\xdd\x99\x8f\x2d\x14\xc6\xac\xce\x8f\xb2\xd3\x3a\x0b\x56\x33\xa3\x62\x4a\x5d\xfd\x6f\xa3\xb7\xd9\x0c\x12\xef\xb9\x70\x62\x0b\x3a\x1d\xec\x2a\x77\x29\xad\x77\x2f\xe4\x5d\x26\x68\xaa\x4e\x0a\x61\xff\x53\xe7\x4b\x04\x89\x12\xf6\x5d\xed\x32\x25\x9e\xdb\x54\x66\xd3\x4b\xba\xdc\xc4\x6f\xc4\x3d\x11\x63\x0d\x9c\x1c\x31\xee\xf7\xf1\x38\x50\x36\x6b\xbb\x65\x85\xd6\xe6\xea\xdb\x37\xfe\xe6\xd7\x67\x90\x44\xd3\xab\x52\x9f\xde\x3e\xec\x5e\xf4\xb4\x81\xd8\xdd\x38\x2e\xb3\xa6\x91\xd8\x1a\x8e\x9b\xf4\xe6\x6d\x5d\xc1\xf8\x2d\xce\x5b\x9d\x36\xca\x53\xe2\x52\xce\x5e\xdf\xa6\xb5\x0e\x6d\x69\x8a\x7e\x55\x28\xcb\x53\xf6\xe4\xdb\xb3\x61\x34\x27\xef\x97\x51\xe6\x99\xc2\x43\xf6\x50\xd0\x7d\xa1\x21\x21\x51\xd0\xdd\x62\x04\x49\xa8\x5f\x4b\x9a\xc0\xb0\x73\x19\xc1\x1f\x27\x92\x96\x92\x3a\x02\x58\x89\x7c\xfe\xf0\x70\x80\xd4\x9e\xa6\x2a\x71\x17\x53\x62\xc7\x65\x96\xcd\xad\xcd\xa1\x91\xe6\x6c\xbd\xf0\x8b\x59\xb3\x68\xf8\x5f\xf1\x96\x5a\xb0\x2c\xa4\x70\x3c\x53\x96\x9c\x1b\x1a\x5c\xb7\x21\x43\x41\x12\x6b\x37\xd3\x46\x6e\xae\x62\x13\xb3\x7c\xc3\xff\x30\x6d\xb7\x8e\x01\x6c\x4c\x68\x9e\x1e\x0b\x99\xb0\x51\x36\x27\x53\x9a\x55\x3d\x67\x28\xb9\x63\x59\xe6\xa6\x19\x90\x1b\xd0\xd6\x71\x61\x79\x67\x26\xf8\x04\x17\x47\xb9\xef\x75\x08\x89\x79\x36\xc9\x80\xf2\xb2\xb0\xef\x33\x9c\x78\x2e\x4a\xe9\xdf\x37\xa8\xdc\x1f\x15\x07\xe6\x2c\xeb\x05\x1d\xd5\x1e\xdd\xd8\xda\x44\xa3\x8c\x00\xf0\xd1\xd7\xaa\xee\x85\x73\x8a\x19\x48\xc9\x52\xe7\x4d\xb0\xbf\x15\x52\xcc\x58\x6a\x7d\x28\x1e\x6c\xd8\xbb\xd9\xf6\xcc\xa9\xce\x33\x17\xbc\xcf\x61\x42\x51\x50\x71\xa7\xc8\xee\x99\x9d\xc7\xc6\x16\xf0\x14\xbb\xe8\x18\x09\x5f\x14\x8d\xbc\xf9\x19\xb3\xfd\x7f\x03\xc8\x91\x23\x2e\x88\xc0\x90\xd0\x92\x33\x6d\x7b\xca\x4f\x4b\x4d\x52\x71\xcf\x8f\x9d\xcd\x8a\x29\x42\xc9\x08\x34\x0d\x82\x3a\x1d\x83\x53\x04\x38\x1d\x65\x66\xcf\x31\x5a\xe9\x76\x25\x80\xc8\x18\xa8\x2e\x25\x90\x09\xd5\xb0\x52\xce\xb1\xdf\xfb\x38\x78\x99\x72\x06\xd6\x31\x29\xb9\x82\x96\xec\xbd\x33\xe1\xe8\x2f\x7f\xda\x8d\x46\xb0\x1c\x44\xa9\x3f\x8b\xf6\x77\x3f\x65\xc9\x34\x14\x66\x59\x0e\x8a\x88\x72\x41\x2d\x7e\xeb\x1e\x5b\xbd\x43\x51\x05\x5c\x35\x76\x35\x1f\xaf\xb0\x7e\xb9\xb6\xac\xcb\x91\x7d\x41\xdb\x69\x0c\xda\x3e\xbf\xba\xf9\xf9\xfd\xe9\x7f\x5c\xbc\x77\xe7\x93\x87\x4c\xbf\xe4\xec\x7f\x4a\x20\x34\x17\x46\x16\xce\xc2\x00\xc1\x1e\x6a\xf4\xc1\x0f\x78\x92\xbb\x0d\x25\xdc\x91\x21\x63\x8f\xfc\xf6\x01\x93\xd8\x69\xff\xd3\xc7\x4b\x3e\x77\xef\xb0\xaa\x2b\x05\x46\x69\x04\xbd\xc3\x28\xe1\xa0\xcd\xc9\xb3\x12\xa5\xed\x25\xc7\xf8\x24\x0b\x85\xc9\xdd\xc8\x55\x5b\x9d\xa8\xad\x46\xd4\xaf\xbf\x60\xb8\xab\x62\xd4\x49\x0f\xb3\x7a\x0d\x1d\x75\xfe\xa9\xa9\xb6\x57\x03\x6c\x6b\x66\xaf\x06\x58\xd1\xe3\x72\x48\x68\x9a\x4a\x14\x53\xf0\xd4\xe7\x0b\x1d\x40\x8b\x3a\x62\xa7\x47\xde\x90\xbf\x93\x07\xf2\x77\x54\x0b\xfe\xd2\xb6\x4f\x52\x5b\x81\xbd\x8b\x00\x1c\xa3\x8d\x5e\x0e\x3b\x82\xf8\x3f\xa6\x54\xe3\x8c\x06\xaa\x5a\x90\x11\x73\x62\x28\x3c\x68\x90\x46\x2c\x72\x3b\xf1\xac\x1d\xa6\xcc\x02\x3f\x23\x9a\x59\x33\xf9\xe5\xb8\x19\xf4\xb3\x1d\xa2\x99\xc7\x8d\x7e\x7f\xe5\xa8\x50\xb3\x9b\x4b\x3d\x5b\x4e\x75\x32\x6d\x92\x31\x23\x60\xa8\x06\x73\x4a\x05\x92\x71\x1b\x90\x3b\x65\x2d\x42\x0b\xf6\x07\x8d\xdb\x79\x9b\x1b\xfb\xf9\xd8\x4e\x2d\x28\xfe\xc8\xe7\x9d\x60\x10\x94\x6e\x2a\x44\x3a\x20\x17\x34\x99\xe2\xb2\xd2\x80\x67\x18\x0d\x04\x27\x9b\xd2\x99\xd9\x78\xf7\xac\xf5\x63\xa3\xb4\x52\x59\x47\x11\x97\xcc\x79\x4a\x28\xb7\x2d\x48\xc7\x20\xa5\x8d\xa1\x1e\xcd\x7d\x28\x5b\xeb\xcd\x6b\x75\x92\x0a\x29\xb4\x48\x44\x8b\x26\x58\x8b\x79\x19\x38\x1d\x02\xa1\xb0\xb8\xeb\x20\xff\xdd\xf9\xb0\x47\x6e\xcf\x86\xd8\xba\xe8\xe6\xec\x76\xd8\x94\xb0\x0f\x6e\xcf\x86\x07\xcf\x0a\x0a\xe2\xcd\x6c\x68\x50\xdd\x61\x92\x86\xc1\x24\x63\x4a\xf7\x73\x5a\xf4\xef\x60\xbe\x23\x4f\xed\x82\xaf\xf7\xab\x1d\xee\xe4\x83\x2c\x98\x73\x5a\x6c\x3d\x9b\x04\x9a\xb2\x98\x00\xb4\xf9\x88\x09\x40\x1b\x8e\x98\x00\x14\x13\x80\x96\xc7\xde\x44\x4c\xc6\x04\xa0\xd7\xe5\xba\x8d\x09\x40\xdb\x8f\x67\xf7\xd8\xc6\x04\xa0\xd5\x23\x26\x00\xc5\x04\xa0\xcd\x46\x4c\x00\xda\x7e\xec\x5d\xac\x49\x4c\x00\xda\x6a\xc4\x04\xa0\xe5\x11\x13\x80\xd6\x8c\x98\x00\xb4\x66\xc4\x04\xa0\xe5\x11\x13\x80\xb6\x1b\x31\x01\x28\x26\x00\xbd\xea\xb8\x48\x12\x13\x80\xdc\x88\x09\x40\xaf\x22\xfa\x8b\xc4\x04\xa0\x8d\x46\x4c\x00\x8a\x09\x40\xbb\x8c\x98\x00\xf4\x5a\x8c\x32\x31\x01\x28\x26\x00\xfd\x7a\x04\xdd\x98\x00\x14\x13\x80\x62\x02\x50\x4c\x00\x7a\x74\x15\x31\x01\xe8\x35\xa8\x80\x12\x14\xfb\x17\x0c\x45\xc6\x92\x79\xeb\x80\xbf\x6b\xd7\x5a\x56\xb9\x69\x49\x81\xf3\x06\xa1\x55\x2d\x92\x38\xf6\x2c\x77\xe5\x3a\x00\x5c\x98\xc3\x52\xb5\xd7\xfd\x04\x20\xd8\x8b\x3c\x16\xff\x81\x57\xbb\x7b\x52\x70\x12\xa3\x35\x5a\xf0\xed\x66\xb7\x68\xad\x22\x84\x1f\xd2\x51\x68\xf5\x61\x98\x0a\x57\x61\x82\x16\x15\x05\x63\x6b\x11\x84\x16\x45\xc6\x40\x0d\xc8\x4d\xd5\xe2\x04\xa9\x97\x7a\x47\x92\xa2\xec\x91\x1c\x72\x21\xe7\x2d\xb4\x89\x0e\x04\xce\xc6\xae\x75\x04\xb2\x6b\x3b\xa7\x07\x83\x51\x22\x8a\x22\x9b\x5b\x61\xaa\xce\x1c\xac\xa0\xc6\x3c\x71\x49\x51\xdc\x59\x88\xf2\x60\xba\xa1\x86\x5d\x09\x7d\xed\x10\xfe\xd9\xc2\xd6\xd7\x05\x68\x53\x2d\x72\x96\xec\x42\xb0\x2d\x8d\xed\x90\x5a\x6f\x1c\xa1\x4d\x2e\x56\xfc\x8a\xa6\x6b\x55\x98\x49\x64\x3d\x65\x26\x81\xa6\x73\x9c\x12\x9b\xf9\x04\x5a\xf1\x0b\x0c\xf4\x4e\x32\xca\x76\xf7\xca\x37\x03\xa7\xce\x70\x2e\x62\x50\xa1\x0e\x9d\xc2\x08\xdc\x0a\x7c\xbd\x2a\x2c\x89\xd9\x43\x30\xf0\x97\xec\xc3\x3d\x1b\xc7\x6b\x40\x8e\x22\x25\x0a\xde\x4c\x85\x1a\xf7\x8f\xbc\x16\x7e\x39\xa1\x59\x31\x7d\x5c\xfc\x35\x0b\x39\x9f\x73\x9a\xb3\xc4\x23\xc6\xa9\xdd\x3b\xa3\xee\x34\x05\x60\x3f\xb7\x9d\xcf\xbc\x24\xcf\x4b\x4d\x47\x19\x0c\xc8\xa5\x4d\xa5\x11\x1c\x3b\xdd\x63\xfc\x85\x73\x6b\x78\x24\xda\x35\xc2\xaa\x7d\x78\x45\xcb\xd0\x8a\x95\xa7\x07\x37\xc4\xa6\x0d\x01\x37\x98\x2f\x38\x10\xe0\x5a\xce\xcd\xde\x0d\x45\x7a\x63\xb6\xaf\x71\x77\xeb\x6c\xa2\x96\x11\x15\x5d\x44\x53\xb4\x8c\xa4\xe8\x26\xfe\xa1\x7d\xec\xc3\xb2\x13\x37\x48\xf0\x0b\xc3\x1a\x1b\xbb\x6a\x68\xd8\x8a\x53\xe9\x19\xff\x50\xa4\x86\x7d\x49\x08\x5b\x89\x39\xed\x0f\x0f\x48\x4e\xef\x50\x81\xa6\xba\xe6\x6b\x74\x46\x59\x66\x8e\x50\x9d\x1e\xd0\x52\x56\xf4\xa3\x03\xc6\xdf\x75\xd6\x14\x69\x8b\x41\x5d\x66\x3d\x11\xec\x7c\x94\xb3\xdd\x32\xf8\xc9\x92\x0c\xf8\x1e\xe7\x0a\x82\xad\x0c\x4e\xe4\xf4\x01\x35\x52\x9a\x8b\x92\x6b\x83\x29\x89\xc8\x8b\x52\x37\x79\x26\xb2\xdf\xad\x55\xd5\x44\xf0\x31\x9b\x38\x13\xd7\x49\x4e\x39\x9d\x40\xbf\x9a\xb6\x5f\x93\xde\x93\x76\x7a\x6a\x2b\xb2\x43\x53\x9f\xe0\x32\xec\x22\x56\x9c\x6a\x0d\x92\xbf\x23\xff\x79\xf4\xe3\xef\x7f\xe9\x1f\x7f\x79\x74\xf4\xc3\x9b\xfe\xdf\x7e\xfa\xfd\xd1\x8f\x03\xfc\xc7\xef\x8e\xbf\x3c\xfe\xc5\xff\xf1\xfb\xe3\xe3\xa3\xa3\x1f\xbe\xfd\xf0\xf5\xed\xf0\xe2\x27\x76\xfc\xcb\x0f\xbc\xcc\xef\xec\x5f\xbf\x1c\xfd\x00\x17\x3f\x6d\x38\xc9\xf1\xf1\x97\x5f\xec\xbc\xe4\xd6\x16\xe8\xee\xec\xcf\x1d\x59\x9f\x3f\x89\xed\xd9\x45\x69\x76\x74\x16\x5d\x84\xf9\xd2\x69\x74\xf6\xa1\xc7\x4e\xa3\xe7\x92\xa8\x66\x54\xf3\x30\x45\x44\xce\xb4\x76\x52\x32\x0d\xf3\xca\x16\x94\x0f\x47\x07\xd8\xd8\x52\x7a\xa6\xc2\x9c\xac\x40\x67\x11\xde\xd0\x8a\xca\x0f\x27\x2c\x2f\x32\xc8\x81\x6b\x3c\xcf\x7d\x2f\x09\xa2\x36\x38\xa8\x57\x92\x50\x6e\x64\x76\x78\x48\x00\x52\xf7\xb2\x48\x3a\x9e\x1e\x91\x74\xbc\x46\xd2\xd1\xda\x34\xf1\x98\x51\x62\xc9\x78\x67\x4e\xaa\x3d\x2c\xde\xd2\x83\xb7\x57\x79\x25\x62\x4c\x80\x26\xd3\xe0\x01\x57\xb7\x80\xda\xaa\x05\xb6\x02\x0a\x9d\x2f\xa9\x49\x0b\x15\x8e\x6c\x70\xbf\x3b\xe9\xca\xfb\x88\xac\x40\x29\xf8\x7e\xd4\x3e\x52\x90\x94\x92\xe9\xf9\x99\xe0\x1a\x1e\x76\xf2\x34\xaf\x73\xb5\xdf\x34\xa7\x76\x4a\xb1\x8b\x1a\x76\xd7\x88\x28\x6c\x8e\xec\xda\xea\x53\x53\x51\x66\x29\xd6\x76\x28\x39\xee\x83\x2d\x13\x02\xda\x7a\xc6\x10\x9a\x28\xbb\x2f\xbe\xce\xfb\xba\xec\xd4\xff\x53\xb2\x19\xcd\x80\xeb\xe0\x89\x21\x7a\x77\xc2\x87\x76\x32\xd0\x3d\xb3\x71\x03\xe5\xce\xa1\x64\x33\x96\xc1\x04\x2e\x54\x42\x33\xe4\x07\xdd\xb0\xe0\xd3\x35\xb3\xe3\x16\x49\x91\x29\xa3\x2b\x19\x16\x68\x0e\x87\x75\x64\xa2\x05\x61\x42\x19\x27\xb9\x61\x67\x85\x7f\x58\x59\x8f\xa8\xe1\xaa\x05\x95\x66\x2b\x2a\xcf\x27\x9e\xa8\x91\x10\x99\xcb\xe8\xce\xe6\xf5\xfc\xcc\xaa\x65\x5c\xfc\xcc\xe1\xfe\x67\x33\x9b\x22\xe3\x8c\x4e\x2a\x87\xa7\x39\x59\x8b\x31\x0b\xf5\xd4\x6b\x3f\x00\xd3\xa5\x4b\x20\x34\xbb\xa7\x73\x55\xbb\x7f\xeb\x39\x98\x7a\x47\xde\x1e\x23\xe2\x51\x45\xaa\x39\x52\xf2\x87\x63\x0c\x62\x3c\x3b\x1d\xfe\x7c\xf3\xcf\x9b\x9f\x4f\xcf\x3f\x5c\x5e\x91\x2b\xa1\xc1\xca\x0a\xc1\x31\x77\x87\xdf\xad\xb2\xb2\x8a\x0e\x84\x1a\xa0\x6e\x8a\x31\xf9\x3c\x15\xf7\x6a\x67\xdb\xb0\x45\x3f\x03\x3c\xa0\x7c\x37\xf3\x18\x2d\x28\x76\xd6\x6e\xc1\x99\x97\xe2\xe4\xc3\x49\x51\x34\x4a\xd3\x93\x54\x8a\xc2\x02\xc1\xbb\xea\x43\x62\x79\xbe\x10\x81\xe3\xf3\xfd\x70\x7f\xc7\xcd\x09\x27\x92\x72\x5d\xfb\xac\xeb\x3d\x73\x2d\xbd\x07\xad\xb7\xe3\xf9\x04\xa6\x2e\xac\x2b\x34\xed\xae\x5a\xc3\x69\x9a\x42\xda\x00\x7f\xeb\x98\xa8\x7d\xcb\xb2\x3a\xf3\x1f\x17\x38\x03\xc9\xf0\xe3\xcd\xe5\xff\x5e\xc0\xe3\x79\xd1\x2e\xdd\xa3\x9b\x22\x3a\x52\x14\x9d\xed\xee\x35\xe4\x62\x16\xf7\x77\x5f\xf6\xb7\xe2\x96\xdd\x04\x19\x5f\x97\x3c\x64\x68\x3c\x98\x9f\xe4\x22\x85\x01\x19\x56\xd1\x4e\xcd\xab\x61\xa1\x4e\x09\xc4\xdc\xc2\x35\xa3\x59\x36\x0f\x85\x29\x2d\x6c\x95\x95\x46\x19\xb7\x90\x90\x8f\x69\xa6\x9e\x9b\x1a\xb7\xe1\x8d\x46\x8e\xf8\x20\x4a\xde\x4d\x14\x71\x35\x1b\x49\x81\x0b\xed\x84\x61\xb3\x4a\x2c\x8d\x27\x45\x42\xac\x4d\x23\x48\x29\x69\xf0\x37\x65\x23\xae\x3c\x6b\x64\xca\x03\x7b\x58\xcd\x6c\x9d\xd5\xa5\x02\xb5\x9a\x35\xd6\x56\x0e\x33\xbb\x04\x9a\xa2\x1a\x53\x50\x3d\xb5\x11\xe1\x39\x55\x77\x90\xda\x1f\x9c\x68\x56\x39\x9c\xd0\x40\xee\x5f\x75\x6b\xd6\xed\x7d\x4b\x28\x92\xd9\x38\x75\xf4\x4a\x41\xfa\xcc\xbb\xde\xe2\x10\x1a\xa0\x7c\xe4\xd9\xfc\x5a\x08\xfd\x55\x55\x26\xa8\x13\x0c\xf8\x87\x93\x96\x9b\x0e\x3f\x14\x27\x29\xbe\xb7\x8f\xbb\x81\x87\x2a\xac\x50\x74\x5e\xef\xf8\x4b\x3f\x52\xb2\xe4\xa7\xea\x6b\x29\xca\x9d\x99\xd8\x92\xb0\xf9\xf5\xe5\x39\x92\xa2\xd2\x05\x5c\x72\x2d\xe7\x85\x60\xd6\x38\xb8\x46\x31\xf8\xce\x85\x8c\x86\x67\xa2\x8e\xee\x23\x1f\xe8\x9c\xd0\x4c\x09\x0f\x4b\xe7\x0e\x5c\xd0\x17\x89\x53\x46\xcd\xe5\x91\xd0\xd3\x25\x2d\xd4\x1c\xa8\xe5\xe7\x7a\x41\xfc\x65\x1d\x25\xc1\xf8\xd2\xe3\x1a\x7d\x4d\x85\x84\x04\x52\xe0\xc9\x73\x6f\xfb\x73\x87\x2d\x22\xea\x5c\x09\x6e\x0e\x66\x27\xc8\x73\x59\xc5\xab\x3a\x90\x86\xa8\x82\xce\x44\xa7\xfd\x51\x8c\x7f\xc5\x63\x59\x2a\x90\x36\x58\x57\x96\x60\x77\xf2\xdb\x72\x04\x99\x81\xbc\x51\x49\xb1\x50\x29\xd5\xd6\xf0\xc0\x72\x3a\x01\x42\x75\x85\x69\x5a\x10\xe0\xaa\x94\x6e\x13\x99\x26\xa9\x80\xba\xba\x18\x55\xe4\xbb\xcb\x73\xf2\x86\x1c\x99\x77\x1d\x23\xfe\x8c\x29\xcb\x30\x34\x16\xcd\x54\x0b\x3a\xea\xd8\x4f\x81\x4b\x42\xe4\x25\x42\x5a\x22\xd1\x23\x5c\x10\x55\x26\x53\xbf\x26\xa3\xf7\x7a\xb5\xd9\xa5\x73\xa1\xc7\x6a\x3f\x71\xfd\x79\x29\xd4\x77\x0a\x64\x67\x04\xea\xbb\x1d\x08\x54\x28\x46\x19\x9c\x6b\x42\xcf\x22\x56\x0e\x9a\xa6\x54\x53\x47\xb8\xfc\x0d\x7b\xbb\xa5\xbf\x6e\xf2\xa5\xe0\x3d\xe3\xe5\x83\x35\x91\x76\x67\x6a\xb9\xb9\xc0\x69\x11\x87\x10\xea\xb8\xeb\x36\x24\xb1\x8a\xdc\x0a\x82\x8b\x2e\x1b\xb8\xd2\x5b\x23\x26\x22\x9d\xf0\x01\x60\x46\x38\xa1\x3c\x15\xf9\xd2\xcb\x30\xda\xac\x61\x2d\x1f\x90\x88\x7d\xcd\xb1\x27\x46\xa1\x0c\x66\xd0\xa2\x0c\xf1\x02\xe6\xbd\x37\xb3\x19\xe0\x78\x8c\xc0\xe9\x49\x46\x47\x90\xb9\x00\x37\x1b\x14\xbb\x8c\x81\xcf\x9d\x53\x27\x45\xd6\x5d\x11\x80\x6b\x91\x81\x4d\x52\xf1\x80\x30\xd3\xbf\x08\x38\xe0\x24\x5d\xc1\x01\xb5\xc1\x06\x1c\x50\xaf\x7d\x09\x70\x28\x5b\xb0\x7a\xb2\x08\x07\x23\x37\x34\xe1\x80\xcc\x7b\xdf\xe1\xa0\x20\x49\x44\x5e\x0c\xa5\x30\x6a\x67\x67\xbc\xc9\x4d\x5b\xfb\xf9\xac\x61\x63\x45\xc8\x2b\xf2\x82\xe6\xcd\x54\x06\xe9\x69\x54\x5b\x26\xe1\x73\xd4\xfe\x57\xc0\xb3\x90\xf4\x2c\x32\x32\x3f\x4b\xc3\x11\x68\x9e\x74\x17\x5e\x32\x3b\xe8\x22\xc3\xbb\x85\xb1\xb3\x13\x6e\x24\x12\x9a\x61\x9b\x89\x76\x28\x47\x16\xd1\x6e\x71\xe2\x20\x29\x11\x7d\x94\xf8\x5b\x10\xa1\x4d\xd1\xd0\xe2\x4d\x98\x5c\xa4\x10\x78\x9d\x6d\xd4\xe7\xad\x4d\x5e\xc3\xfb\x7c\x3e\xa4\x91\x2b\x5c\xfc\x0d\xa4\x8d\xa7\xb5\x70\x15\x9e\x3f\x54\xcd\x2b\xcc\x02\x81\xa7\x8c\x4f\xd0\xae\xd6\x23\x12\x32\x9b\x49\xe9\x88\xc0\x9d\xd5\x20\x0f\xf1\x48\xf8\x49\xfd\x79\xf0\xaf\xf6\x01\xdd\xf5\xcc\x28\x3d\x8d\x2d\xa5\x65\x8a\x1c\xbc\xf7\xdf\x7e\xe0\xee\xb9\xfa\x78\x1b\x46\x28\x50\x3e\xb7\x11\x4b\xf8\xc8\xb3\x13\xde\x4e\x19\xd0\x81\x85\x42\xb5\xd9\xd6\x10\x7a\xc7\x78\xea\x72\x12\x1b\xb0\xf4\x6a\xb0\x13\x93\x31\xdb\x95\xa5\x21\xe9\x79\x47\x7e\xe4\xa4\x02\x28\xe9\xef\x8c\x3d\xd7\x56\xa2\xf6\x26\xbc\xfe\xe3\x76\xd9\xea\x25\x8b\xd3\x7c\xc7\x11\x35\xcc\x7b\xfb\x46\xb1\x5f\xbe\xcf\x7f\xcb\xb3\x56\x41\x75\xc4\xb1\x6b\x25\xe7\x1f\x76\x5a\x2f\xf1\x27\x06\xa5\x35\xe3\x13\x15\x2a\x3a\xcd\x96\x63\xab\x35\x1d\xbf\xc3\x63\x29\x72\x1f\xf0\xbd\xa8\x39\x34\x73\xa9\x5f\x8a\x96\x92\x19\x69\xe3\x85\xeb\x28\x93\x5c\xd1\x33\x69\x20\xa1\x19\xcd\x6e\x8a\xdd\x3b\x34\x90\xa5\x6a\xe0\x1f\x6e\x4e\x9b\x53\x23\x2f\x77\xa1\xfe\x80\xd7\x09\x4d\x73\xa6\x14\xda\xc9\x60\x34\x15\xe2\x8e\x1c\xad\x28\x6d\x1c\x84\xbf\x29\x36\x51\x27\x0e\xe7\xfb\x66\xf5\xc7\x84\xf1\xac\x0a\x74\x42\x35\x99\xeb\x2a\xbb\x00\x5f\x92\x54\xab\xc0\x3d\x74\x1d\x70\x5c\x2c\xc3\xf2\x32\x6d\xcf\x1b\x83\x05\xcf\x4e\xb0\x97\xb7\xa7\x5d\xfe\xe5\x93\x5b\x74\xe5\x70\x7b\xb1\x48\xf5\x4a\x38\x5a\xe1\xf2\xd9\x81\xe4\x64\x8f\x04\x54\x77\xb5\x71\xbf\xa9\xe7\x24\x29\xd8\x52\x05\x80\xc1\x51\x74\x6d\xb4\x1c\x9a\xad\x0f\xb1\xe2\x8d\x7b\xf4\x30\x14\xb8\x4f\xb3\xcc\x40\x93\x1a\xe2\x75\xa8\x42\x87\x6f\xdd\x7d\xa9\xaa\xf0\x09\xe3\x31\x24\x28\xb0\x84\x2b\xb1\xe4\xed\xa8\x6e\x90\xe1\x73\x10\xb5\xf0\xdd\x9b\x72\xf6\x60\xde\x12\x3e\xb5\xd0\x03\x92\x0b\xde\x5f\x7d\xf9\x78\x40\x2e\x79\x15\x40\xdc\x33\x5f\x1b\xde\xe8\x23\xb8\xb4\x21\x86\x61\xe7\x2f\x5c\x7f\x68\x7f\x32\x42\x96\x2c\x3b\xc0\x8c\x36\x56\x65\x12\x5a\x96\x3b\x3d\x36\x68\x61\x76\x93\x1a\x16\xe3\x79\x65\x1b\x8b\xb3\xb9\xe5\x53\x59\x9d\x5f\x86\x1f\x81\xb4\x8e\xad\xb5\xa5\xd5\x62\x3b\xa6\xcd\x46\x6c\xc7\xb4\xe1\x88\xed\x98\x62\x3b\xa6\xe5\xb1\x37\x91\x77\xb1\x1d\xd3\xeb\x2a\xa4\x19\xdb\x31\x6d\x3f\x9e\xbd\x7e\x66\x6c\xc7\xb4\x7a\xc4\x76\x4c\xb1\x1d\xd3\x66\x23\xb6\x63\xda\x7e\xec\x5d\xe5\xdf\xd8\x8e\x69\xab\x11\xdb\x31\x2d\x8f\xd8\x8e\x69\xcd\x88\xed\x98\xd6\x8c\xd8\x8e\x69\x79\xc4\x76\x4c\xdb\x8d\xd8\x8e\x29\xb6\x63\x7a\xd5\x55\xea\x49\x6c\xc7\xe4\x46\x6c\xc7\xf4\x2a\x6a\x71\x93\xd8\x8e\x69\xa3\x11\xdb\x31\xc5\x76\x4c\xbb\x8c\xd8\x8e\xe9\xb5\x18\x65\x62\x3b\xa6\xd8\x8e\xe9\xd7\x23\xe8\xc6\x76\x4c\xb1\x1d\x53\x6c\xc7\x14\xdb\x31\x3d\xba\x8a\xd8\x8e\xe9\x35\xa8\x80\x4a\xa7\x6c\xa7\xba\x8b\x9b\x94\x88\x71\xb1\xbd\x41\x46\xf6\xa8\x1c\x8f\x41\x22\xe5\xc2\x37\x2f\x85\x55\xd5\xd5\xf0\x16\x5d\xb9\xa0\x7b\x58\x6d\xc6\xa5\x41\xac\x79\xdc\xa5\x80\x63\x7d\x44\x09\x0a\x0b\xa4\x70\x72\xf1\xf1\xab\x15\xf5\x68\x76\x8e\x37\xdc\x35\xa4\x16\xd7\xfc\x91\xef\xe6\x85\x5f\x03\xf0\x55\x69\x39\x0e\xee\x49\x26\x94\x8b\x87\x46\x60\x25\x53\xca\x39\x78\x7d\x8f\x69\xb4\xa3\x8c\x00\x38\x11\x05\x38\x1f\x38\x25\x8a\xf1\x49\x06\x84\x6a\x4d\x93\xe9\xc0\xbc\x89\x7b\x60\xd7\xc1\xcb\xee\x17\xa5\x25\xd0\xdc\x02\x5d\x42\x4e\x99\x9d\x8a\xd0\x44\x0a\xa5\x48\x5e\x66\x9a\x15\xd5\x64\x44\x01\xe6\x29\x58\x46\x55\x01\x03\xe3\xe5\xea\x88\xe7\x5e\xfd\x36\xb7\x2c\x11\x16\x04\x43\x6d\xb3\x87\xc5\xad\xf3\x42\xcf\x89\xf9\xe4\xcc\xd5\x55\x95\x4a\x93\x24\x63\xc8\xad\xf1\x8d\x36\x63\x15\xe7\xeb\x79\x5e\xcd\xdd\x4a\x95\x5b\x2a\x4f\x51\x6c\x2d\xb4\x22\x18\x20\x5c\x4f\xe8\xa6\x4a\x99\x72\x62\xbe\xea\x11\xea\xab\x55\x59\x40\xfb\x95\x22\xa8\x3d\x67\xb1\xb3\xbb\x9f\x82\xe9\x82\x2a\x9d\xbe\x82\xaf\xcb\xd5\xb1\x49\x33\x19\x9d\x54\xc8\xd9\x6b\x04\xc9\xd7\x02\x85\xeb\xe1\xb0\x70\x0c\x70\x03\x38\xcc\x0c\x0e\x40\x02\x86\xbf\xd2\x35\x58\xff\xd9\x91\x5e\x53\x39\x01\x5d\xb5\x31\xdb\x35\x8a\xbc\x19\x7c\x12\xd6\xd3\x0d\x15\x91\x1a\x64\x08\x1d\xd7\x0d\x25\xc8\x4c\x5a\x55\xb0\xd7\xae\xd0\xd5\x29\x5b\x75\x83\x17\x8c\x6c\xf0\x66\xdd\x42\xa7\xa0\x09\x28\x72\x74\x39\x3c\xeb\x91\xe1\xe5\xb9\x8b\xd0\x14\xe3\x55\x89\xc2\x75\x41\x65\x27\x24\xae\x7a\x51\x55\x02\x2d\x98\x3e\x48\xae\x74\xef\x1e\x56\xf2\x15\xf6\xc5\x59\x45\x01\x50\xe4\xaa\xea\xba\x13\x65\x5b\x7c\x39\x9b\x90\x41\x05\x2b\xd0\x38\xe4\x83\x3a\xa1\xcf\x17\xf6\xf1\x4f\x54\x0b\x71\x50\x72\x9d\x7b\xbc\x47\x1d\x09\x2c\xf2\x6b\xed\x2e\x35\xfa\x8f\x70\x17\x5d\xb3\x53\x54\x4d\x2b\x0d\x29\x10\xc5\x3e\x80\x52\x74\x02\xc3\x1d\xdd\x5b\xeb\xec\x00\xe8\xe1\xaa\xc9\x01\x12\xa0\xac\xd1\x7b\x2d\x8c\x16\x6e\x0a\xdf\x24\xb7\x6b\xaa\x30\xeb\x5e\x32\xad\x01\x49\x09\x56\xd3\xc3\xcd\x5e\x4c\xb6\x3f\x5c\x88\x39\xfe\xe0\x27\xa9\x1f\x36\xa2\x04\x4f\x6d\x04\xf0\x08\xc8\x48\x32\x18\x93\x31\xc3\xb0\x62\x0c\xf4\xed\xd9\xe2\x4a\xd4\xda\x9e\x94\x02\x69\xdb\x2d\x59\x0d\xca\xaf\x6b\x40\xfe\xe1\x16\xa6\x65\xc9\x6d\x3b\x2d\x27\xdc\x63\xba\x28\x1b\x93\x09\x06\x0a\x3b\x1d\xe5\x4f\x6f\xfe\xf6\x17\x32\x9a\x1b\x41\x0a\x11\x52\x0b\x4d\xb3\xea\x23\x33\xe0\x13\x03\x2b\xcb\x14\x9a\x09\x8f\x15\x04\xb0\x21\x8a\x5d\xf8\xdb\x3f\xdc\x8d\x9a\x92\xdd\x49\x0a\xb3\x93\x00\x7e\xfd\x4c\x4c\x06\xe4\xac\xca\x2f\x2c\x8b\x14\xed\xfc\xbb\xd7\xc2\xee\x0e\xcd\xba\x29\x08\xef\xab\x7c\x91\xa9\xb8\xb7\x1a\xe6\x0a\xec\xa9\x73\xa7\x0a\x51\x94\x99\x75\x75\x7c\x55\xa5\x0a\x97\x0a\x96\x13\xfa\x56\x9e\x0b\x34\xce\xbb\x29\x16\xe8\xa8\x8b\x0f\xf7\xaf\x14\x2e\x01\xc6\x99\x8f\xab\x62\x5f\x48\x4c\xbe\xa2\x59\x36\xa2\xc9\xdd\xad\x78\x2f\x26\xea\x23\xbf\x90\x52\xc8\xe6\x5a\x32\x6a\x78\xf4\xb4\xe4\x77\xb6\x09\x46\x55\x0e\x41\x4c\x5c\x00\x81\xaf\x9e\xbd\xea\x83\x6d\x6e\xbc\x67\xfd\x5e\xf9\xae\x67\x81\x07\x56\x6b\xd8\x9c\x80\x79\xbf\xc5\xc8\x70\x7e\x15\x22\xdb\x1f\xde\xfc\xe9\xaf\x16\x75\x89\x90\xe4\xaf\x6f\x30\x87\x40\xf5\xec\x21\x46\x8e\x6a\xc4\x93\x9c\x66\x99\x21\xe4\x21\x52\x1a\x40\xaf\x42\xc2\xcf\x8e\x83\xba\x3d\xba\x6d\x2c\xc0\xdf\xde\xfe\xd3\xf6\x0d\xd0\x0a\xb2\x71\xcf\xa6\x4e\x55\xca\xf4\x21\x8a\x23\x87\x8e\xfa\x60\xfe\xda\x1e\x88\xdd\x33\x91\x95\x39\x9c\xc3\x8c\x75\xd1\xc5\xb0\x31\x9b\x37\x30\x65\x4c\x21\x1f\x1c\x65\x22\xb9\x23\xa9\xbb\x18\x44\x55\x2d\x56\xfd\x7e\xb9\x0d\x69\xc3\xef\x6f\x44\x94\xe5\xb4\x28\x8c\x0c\x80\x09\x9a\x92\xde\x37\x80\x51\xf7\xa3\x78\xf9\x0d\x69\xed\x17\x19\xba\xb9\xf3\x14\x3b\x87\xa1\xb5\xf7\x8c\xd4\xab\xef\xa8\x31\x61\x3d\xa1\x3f\x0d\x05\xfe\xdb\x66\x39\x2d\x09\xe6\x55\xd5\xca\x0a\x31\xac\x00\x60\xd0\x07\x49\xf2\xb3\x35\x4e\x25\xad\xc3\xe9\x1a\x70\xe1\x8f\x74\xf7\xa3\xa4\x00\xa9\x98\x32\x7c\xf9\x7b\x3c\x50\xb6\xad\x63\x6d\x78\x7e\x1e\x20\xd8\xc3\x8d\xa5\x92\xdb\x53\x4a\xa3\xa7\xd8\x09\x91\x14\xda\x32\xd1\x2b\xc4\xda\xa6\x54\x7b\x53\x8e\x10\x7f\xf0\xf6\x6d\x5a\xc5\x76\xc8\x89\x9f\x9b\xc6\x7e\x5f\x6f\x43\x93\xc4\x9a\x5f\x2a\x1a\x6b\xef\x7a\x4d\x94\x15\xbf\xef\xa5\x12\xd6\x6a\xf1\x1d\xd1\x0f\xa4\xa8\x6e\x73\x9b\x24\xb4\xa1\x75\xda\x13\x16\xe8\x02\x4e\x81\x1c\x10\x1b\xb4\x61\xce\x84\x7b\x94\x1c\xbe\x3b\x7c\x56\xea\x6a\x41\x24\x45\x41\x27\xad\x1a\xfe\x2c\x40\x6a\x71\xda\xb0\xdc\x84\xd1\x9f\x02\x52\x52\xb8\xbb\x0c\x25\xf1\xd5\x74\xb0\x56\x92\x75\xe6\x7b\x00\x3b\xcd\xc2\xd6\x9d\xba\xa7\x73\x42\xa5\xf8\xff\xd8\x7b\x1f\xee\x36\x6e\x6b\x5f\xf4\xab\x60\xa9\x5d\x4f\x52\x4b\x52\x76\x72\xda\xd3\xe3\xdb\xd7\x2c\x55\x92\x13\xbd\xd8\xb2\x8e\x25\x27\xaf\x2f\xce\x49\xa1\x19\x90\x44\x35\x03\x4c\x06\x18\xc9\xec\xcd\xfd\xee\x6f\x61\xef\x0d\x0c\x30\xa4\x1c\x8b\x33\x36\x25\x87\xd3\xb5\x1a\x8b\x1c\x62\x30\x1b\xc0\xfe\xbf\x7f\xbb\x51\x39\xb9\x43\x83\x3f\xfa\x65\xe7\xc1\x67\x5a\x89\xb6\xf1\x6a\xda\xb2\x18\x02\x50\x52\xb1\xa7\x93\xa7\x4f\x3e\x17\x11\x87\x6d\xc5\x52\x11\x77\x16\x44\x1c\xf2\xa7\x8d\xbe\xab\x87\xc5\x1f\xe8\x7d\x5f\x92\x6f\xa6\x45\xbd\x97\x1e\x53\x1b\x3e\xba\xad\xa5\x15\x51\x7f\xc5\x3d\xb0\x78\x9c\x61\x19\x61\x4e\xec\xaf\x6a\x37\xd1\x93\x48\xfd\x40\x3e\x4c\x73\xf5\x11\xf9\x16\x31\x28\x38\x6e\xab\x5c\x63\xe6\x3d\x2c\x2c\x26\xd4\xce\x0e\xdb\xc3\x3b\x77\xb1\x32\x7f\x7f\xa3\x5b\x8b\x88\x76\xf2\xae\xea\x01\xc4\xd9\x01\x81\xa8\x38\x38\xef\xaa\x01\x29\xf8\x77\x31\xe7\x37\x02\x10\x09\x64\xc1\xeb\x02\x42\xe4\x17\x38\x77\x76\xd5\x58\x26\xd4\x8d\xac\xb5\x02\x3f\x31\x94\x6c\x5c\x15\x22\x6e\x2f\xfe\xfb\xbd\xef\x0e\x5f\x43\xfe\xcd\x3e\xb6\x55\xf1\xb3\x6c\x8c\x6f\xe3\x1e\xcf\x24\x1a\xee\x57\x97\xcf\xcf\xc3\xd1\x10\x78\xae\x9f\x97\x7b\x4e\xd9\xd8\x06\x7b\xb7\xbc\xcb\x8a\xc6\xc8\x9b\x4d\x71\x12\x82\x8a\x38\x96\x6b\xad\x73\x07\xb6\xa2\x25\xd4\x12\x02\x45\x1b\x26\xf8\x15\x9c\xeb\x5d\x13\x2a\x59\xe3\x94\x0d\xf2\x59\xb1\x52\xce\xe6\x96\xb2\x3d\x3b\x91\x83\x28\x04\x55\x82\x9b\x77\x93\xde\x2b\x27\x76\x0f\x0b\xc9\xcd\x7d\x55\xae\xa5\x72\x49\x1a\x05\x12\x3d\x14\xa1\xe5\xf1\x22\x38\x65\xdc\x83\xd0\x53\x79\x7a\x4e\x11\x34\x4f\x37\xa9\xfe\x85\x89\x35\xc1\x2c\xc1\x44\x19\xfc\x09\xba\x1b\xa7\x2c\x82\x0b\xf2\x09\x25\xc0\xfc\xa1\x45\x01\x58\x24\x4a\xab\xf1\x3c\x82\x73\xaa\x74\x7e\xcf\x52\xc2\x75\x0d\x8f\xb5\x4c\x8e\xd5\x14\x64\x73\x5d\xe4\xbe\x7b\x38\xfa\x72\xae\x84\xbd\x15\x42\xb1\xd3\x73\xa0\x9f\x7b\x45\x2c\xe7\x5a\x4d\x45\x0c\x2b\x84\xb6\xf5\xab\xe8\x79\xdf\x0d\xd6\xc3\x2a\xe9\xa3\xd2\x87\x37\xed\x7d\xe6\xbf\x09\x34\xf3\x19\xd9\xfc\x4a\xdf\x08\x20\x69\x9e\xd7\xc2\xf4\x00\x3e\xda\x80\x9d\xda\x8b\x95\xca\xb5\xfa\xe7\xa4\x81\x91\x40\x36\xef\x5a\x02\xf5\x1d\x8e\x2a\x6c\xbc\x4f\xcc\xc1\x4e\xcf\x8f\x7a\x70\xaf\xdd\x37\x14\x17\x71\x43\xed\xee\x1a\x26\xab\xac\x8d\xb9\x4e\x58\x1b\x6e\x8c\x0a\x25\x50\x63\xbc\x5f\xac\x6b\x5d\x35\x31\x62\x6a\x3d\x99\x34\x53\x38\x8c\x63\x2b\x54\x8a\x4d\xee\x1c\x08\x3a\x40\x9b\xe2\x84\x1a\xc6\xff\x22\x26\x88\x4f\x96\x40\x26\x4f\xa9\x23\xa3\x90\x84\xdc\x61\x4c\xe0\x7a\xf7\xe9\x87\x11\x17\x5f\x22\xe6\x27\xa3\xe5\xf9\xe9\xf1\x90\xdb\xa5\x92\xf9\x83\xdb\x2e\x6f\xcc\xbd\x4b\xfa\xdf\xff\x92\x80\xe9\xf7\x6b\x6f\x89\xc1\x26\x82\xe9\xa3\xbf\x21\x4d\x5d\x5b\x46\xed\x13\x43\x26\xec\xaa\x84\x0e\xe0\x22\xe9\x93\x46\xee\xef\x69\x53\xc0\x26\x6d\x93\x7b\x43\x66\x32\x0f\x79\xa1\xa0\x0d\xf0\x1b\x2e\x0b\xd0\x9e\xa3\xc2\xbd\xa5\x21\x7d\xf8\xbd\xd0\x3c\xc7\x72\x8f\x6b\x51\x2b\x51\xb0\x52\xe7\x4d\x81\xde\xbc\xd0\xa6\xf7\xe5\xab\xe3\x37\x2f\x4e\x7c\x12\x96\x68\x97\x73\xc4\x38\x53\xe2\x16\x46\x57\xa0\x90\x64\x04\xdc\x15\xca\x7e\xdc\x79\xba\xa0\xb4\x0c\x34\x43\xd1\x31\xe1\x5f\xa8\x94\x56\xce\xb8\x4d\x5a\xda\xb2\xab\x5a\xf0\x6b\xdd\x58\x76\xd3\x14\x4a\xd4\x6d\x9b\x49\x71\x23\x14\xfa\x60\xdd\x0f\xdc\x63\x63\xac\x46\x59\x27\x08\x99\x04\x9c\xe6\x5e\xc5\x8d\xc5\x33\xd2\xe4\xa9\xc4\x08\xbe\x8c\x7a\x2c\x27\x9d\x18\x53\xa7\x09\x2f\xaa\x39\x1f\x63\x9b\x0e\x82\x56\x03\x5a\xcf\xb5\xd2\x35\x86\xd5\xb0\x9c\x98\x0e\x3e\xf6\xf1\x83\xe1\x3c\xba\x24\xa6\xd1\x5c\xf8\x0c\x18\x4a\x7c\xf9\x74\xc7\xe1\xfe\xee\x96\xb4\x42\x34\x85\x6f\xa1\x01\xbd\xec\x3b\xd7\xf9\x1d\x56\x43\xab\x77\xc1\xfd\x71\xe7\x69\xab\x19\x67\xe8\x6e\x1f\x7b\xf8\x1b\xc8\x94\x5d\x87\x0d\xde\x5b\x68\x82\xe5\x71\xde\x14\xc5\x85\xc8\x6a\x71\xdf\x30\x43\xca\x29\x4e\x3b\x63\xdd\x65\x01\x44\xe6\x2c\x60\x82\xd0\xcd\xaa\xc5\x1f\x88\xf2\x9c\xda\x5a\xdc\xaa\x29\x20\x35\x1c\x20\xe8\x91\xe0\x30\x7b\x13\xc5\x74\xa5\xf1\x59\x66\xc8\x7d\x92\x55\x30\x22\x3c\x2c\xf4\x30\xe3\xc6\x60\xe6\x81\x54\xb9\xbc\x91\x79\xc3\x0b\x78\x10\x18\x65\x94\xb0\xc5\x09\xef\x1b\xcf\x72\xe9\x51\x82\xef\x9b\xc3\xdc\x9e\xc9\x03\x9c\xf7\xef\x70\x7a\x0b\xa9\x66\x63\xf8\xc4\x3d\x98\x66\x38\xd6\x6a\xcc\xc7\x6e\xdb\x3c\x12\xbb\x05\x70\xee\x5f\x81\x61\xf0\xda\xaf\xaf\x67\x43\x86\x09\xa5\x9b\xd9\x1c\x88\x55\x97\xdc\x43\x69\x16\xc2\x02\x4a\x22\xe5\x33\x60\x12\x1b\xfd\x36\x27\x2b\x23\x46\x8d\x4c\xf7\xc6\x23\xb1\x5d\xd6\x75\xf0\x76\x92\xf1\x23\x36\x43\x34\xb2\xf7\xde\x81\xfa\x46\xd4\x37\x52\xdc\x1e\x90\xe6\x37\x76\x32\x61\x8c\x14\x31\x07\x40\xd8\x83\xdf\xa1\x75\x74\xf9\xea\xf8\x15\x74\xee\x26\xaf\xbb\x17\x55\x4e\x14\x98\x09\xe3\x95\xfc\x4e\xd4\x06\x40\x95\xaf\xa5\xca\x47\xac\x91\xf9\x57\x9f\x30\xe1\x4b\x2a\xd9\x66\xb1\xf6\xe2\x5a\x2f\x88\x2b\x51\x15\xbd\xfc\x37\x6e\xcf\x48\x82\x5e\x89\x42\xab\x59\x84\x01\x00\xd2\xfc\x54\x49\xbb\xd4\xe4\x18\x91\x4e\xc1\xc3\xa3\xeb\x1c\x72\x85\xa5\xae\x93\x70\x86\x1b\x0f\xf0\x1f\xa3\x8c\x63\xc7\xd2\x64\x32\x1e\xa4\x71\x99\x56\x47\xc2\x44\x20\x5f\x2e\xec\xd1\xb1\x3d\xae\x24\xca\xe2\x39\x57\x39\xfc\x99\x65\xba\xce\x69\xbe\xd2\x86\xf4\x66\x4c\x86\xc3\x0c\x2c\x10\x43\xd8\xd0\xa3\xfb\x64\x50\xd3\xea\x32\x49\x85\xf5\x5a\x7b\xa3\xe4\xcf\x8d\x60\xbc\xd4\x8e\x11\x77\x9b\x25\x74\x28\x52\xf2\x05\xc8\x42\x98\xea\x0b\x5f\xae\x41\x35\xb6\x66\xc4\x5e\x0b\xa7\x74\xb5\x30\x01\x23\xf6\x22\xc5\x0d\x18\xb9\xb9\x5c\x60\x41\x33\x7d\x84\xb3\xaf\x85\xd1\x4d\x9d\x89\xd7\x18\xe3\x2c\x7d\x3e\xdd\xf2\xcb\xb8\x55\xb1\xfc\x5a\x28\xf4\x29\x39\xd2\x40\x18\xb7\xa9\x61\x0d\xb2\xb9\xc8\x1b\x90\x2a\x57\x0b\x36\x95\xd8\x60\x05\x44\xbb\x9c\xcd\x85\xb1\xde\x36\x3a\x80\x1c\xb5\xb6\x57\x9d\x9f\x00\x6c\xdf\x28\x99\xbd\xf5\xc2\x96\x1c\x60\xcb\xe1\xc8\x72\xeb\xeb\xb5\x50\x1b\x34\x4d\xe9\xcf\x72\x97\xd2\x66\xc2\x5e\xb8\x47\xe1\x7e\x8a\x3a\x53\xc8\x0e\x71\x21\xc6\x4c\x6e\x64\x36\xe5\x66\x0e\x6d\x5d\xba\x4b\x40\x4d\x1f\xb2\xa6\x76\x0c\xa3\x58\x40\x21\x27\xb4\xe3\x87\xd6\xcd\xd0\xb9\x7d\x95\xdf\xb1\x67\x7d\x8e\x9b\xec\x38\x92\x77\x8f\x45\x88\x1d\x86\x7a\x0b\x47\xf8\xac\xc3\x09\x70\x25\x9d\xc0\xf2\xb8\x6e\x4e\xe1\x0e\x01\x7f\xc7\x15\x3e\x9d\x48\x5a\x3f\xbc\xbf\x56\x58\xbe\x8f\x04\xe4\xf5\xac\xbf\xe3\x6e\xf7\xb0\x9e\x35\x78\xd0\x89\x0b\xb7\x88\xf4\x93\x4e\xde\x3d\x28\x53\xce\x56\x3d\x7a\x79\x1c\x17\xfa\xc5\x15\x4c\xbe\x4c\x72\xc2\xbe\xeb\x1b\x66\xe9\xc6\x59\x1c\x43\x6f\x83\x37\x6d\xdf\x15\xc7\x34\x8a\x1b\x6f\x12\x84\xa7\x79\xcd\x57\xaa\xaa\xb1\x24\x09\x23\x80\xae\x6c\xce\xd5\x0c\xdc\x24\xba\x71\xe3\xfd\xfe\xf7\x30\xa3\x5a\xe4\x4d\x46\x4d\x6b\xfc\xae\xfd\xbd\x0f\x3a\x10\x9c\x1e\xb0\x2b\x93\xf1\xca\xcf\x39\x7e\x2d\xb3\x50\x96\xbf\x7b\xc6\xe4\x44\x4c\xd8\xce\xef\xa3\xaf\x76\xf0\xe9\x55\xad\xdd\x23\xa8\xc0\x08\x66\x55\x48\x0b\x89\x3e\x3b\xf1\xdd\x13\x76\xe2\x9e\x01\x81\xd8\x40\xc0\xa8\x06\xe6\xaa\x25\xdf\x88\xd5\x62\xc6\xeb\xbc\x20\x87\xe1\x6d\x54\x38\x15\x08\x26\xde\x49\x63\x0d\x79\x0b\x7a\x30\x27\xcb\xcd\xb5\x63\x45\xee\x70\x8d\x73\x6e\xf9\x38\x3a\xd5\x07\x68\x6a\x8d\x09\x25\x7c\xcc\x69\x77\xb5\x5c\xeb\xe0\x77\x54\x7f\x3c\xe6\xe1\x2e\xe9\x94\x72\xc0\xeb\x5e\x5f\xd5\x79\x6c\x5e\xe2\x1e\x60\xf1\xe9\x01\x3e\x69\x3b\x48\x00\x0d\xa0\x4f\x51\xab\x32\x05\x3e\x4a\x78\xe8\x77\x1c\xe9\x93\xb3\xcb\xd7\xff\x38\x7f\x75\x7a\x76\xb9\x3d\xd9\xdb\x93\xbd\x3d\xd9\x3d\x4e\xb6\x50\x37\xbd\x4f\xb5\xb7\x9e\x56\xe5\x2d\x74\x21\x5f\xa3\x12\xbc\xcf\x28\x3b\xf4\x44\xdd\x7c\xc7\x9d\x32\x4d\x7e\x6d\x0a\xba\xae\x48\xe3\xa0\x1b\x50\x75\x3f\x7a\xf4\xe9\xa1\x1b\x4c\xee\x1c\x30\x69\x2e\x76\xac\xac\x5a\xb5\xb8\x09\xe7\xd1\x4f\xa7\xc7\x27\x67\x97\xa7\xcf\x4f\x4f\x5e\x6f\x34\xdb\xa9\x27\x18\x6a\x2a\x97\xd7\x94\x92\x55\x2d\x6e\xa4\x6e\x4c\xb1\x08\xa8\xed\xab\x99\xc0\x72\xc2\xac\xca\xc1\xe3\xe1\x81\xe9\x57\xfe\x6c\x2b\x6c\x87\x15\xb6\x69\xf2\x57\x0f\x1c\xac\xa1\xb6\xef\xf3\x5a\x97\x03\x6d\xe1\x0b\xf4\xc5\xf8\x60\xdb\xaa\xfd\xb4\x4b\x90\x39\x89\xe8\x21\xe5\xb1\xc5\xe7\x71\xfa\x68\x59\xd9\x1e\x6d\x74\x06\x01\xd9\x1e\x06\x8f\x1a\x13\xce\x5e\xf2\xea\x5b\xb1\x78\x2d\x7a\xc2\x6d\xa5\xf4\x16\x85\xc8\x9c\xa0\x63\xd7\x62\x81\xd9\xc5\x47\xfe\x61\xfd\x40\xa3\x1f\x20\x46\xf9\xb5\xe8\x83\x1f\x3f\x24\xb8\xf8\xb5\xe8\x91\x39\xed\xaf\x25\x00\x6c\xb7\x84\xa0\xa7\xb9\x35\x7d\x50\x90\xdf\x1f\x01\x4c\xfd\xf3\x8d\xa3\xa4\xd7\x80\xab\xe0\xc3\xb7\x03\xaf\x04\x46\xd2\x17\x89\xec\x0a\x4c\x84\x61\x4d\x33\xec\x4d\x1f\x7a\x20\x25\x63\x20\xd2\xf4\xed\xc3\xc9\x70\x09\x87\xe5\xab\xbb\x2d\x63\xc5\x9c\x8b\x00\xe8\x98\x3f\xf3\x18\x20\x26\x34\xcf\x84\xb6\xcd\xa3\xf4\x4f\x4a\x6b\xf9\x67\xf8\xb0\xe0\x57\xa2\x30\x3f\xec\xee\xfe\xf5\xdb\x93\x7f\xfc\x6d\x77\xf7\xc7\x7f\xc6\xdf\x82\x28\xc4\xf0\x76\x7a\x0b\x00\x9a\x28\x9d\x8b\x33\x78\x06\xfc\x49\xea\xda\x21\x86\x50\xe8\x0b\xc0\x23\x98\x60\xea\x5d\xf8\xb3\xd2\x79\xf7\x2f\xd3\x0b\x79\xf3\x41\x0a\x06\x58\xa2\x1e\xe5\x71\x78\x0d\x27\x1e\x5a\x5e\x32\xf0\x51\xa5\x51\x43\x3f\xa9\x6c\x2e\x4a\xc4\xfe\x7b\xee\x49\x00\x8d\xb0\x3d\xf0\x89\x02\xb4\x08\xa7\x99\xa6\x30\xac\x3b\x37\x4f\x77\x1e\x94\x80\x09\x2b\x38\x30\xc1\x80\x22\x44\x2d\x3c\xc8\x41\xc0\x86\x34\x97\xd0\x80\xf6\xf0\xfc\x94\xdd\x20\x85\x1f\x0c\x71\x7c\x78\xf3\xf9\x47\xe5\x71\x21\x88\xda\xad\x4a\x7f\x86\x69\x65\xfe\x7b\x42\x08\x31\x01\x2a\x52\x38\xc3\x66\x0f\x3f\x9c\x64\x55\x33\xa2\x1b\x26\xa5\x28\x75\xbd\x08\x7f\x86\xca\xe4\xb1\xb1\xba\xe6\x33\x28\x0c\xc3\x9f\xe3\xcf\xc2\x5f\xf8\xc3\xe4\x01\xcb\xbf\x46\x53\xb8\x8d\xa5\x12\x47\x5e\x13\xe9\xa6\xbd\x1e\x20\x6f\xf3\xa4\x7f\x20\xac\x2d\xeb\x8b\x57\x96\x5e\xe9\x86\x0c\x9e\x38\x54\x38\x03\x15\xc1\x9e\xa4\x8a\xf9\x51\x9b\xc5\x06\xde\x00\x75\xe3\x2c\xcb\xb5\x91\x26\xdb\x6b\x40\x6e\x96\xcb\x1b\x69\x74\x8f\xf2\xb7\x30\xd0\xdd\x19\x8f\x04\xda\x83\x59\x5c\xc1\x6d\xf6\xae\x02\x70\xbd\x70\x5e\x3b\x6c\xff\x69\x9f\x2e\x7e\x78\x55\xdc\x5a\x51\xab\x67\xec\x7f\xf6\xde\xfe\xf1\x97\xf1\xfe\x57\x7b\x7b\x3f\x3c\x19\xff\xd7\x8f\x7f\xdc\x7b\x3b\x81\x7f\xfc\x61\xff\xab\xfd\x5f\xfc\x1f\x7f\xdc\xdf\xdf\xdb\xfb\xe1\xdb\x97\x5f\x5f\x9e\x9f\xfc\x28\xf7\x7f\xf9\x41\x35\xe5\x35\xfe\xf5\xcb\xde\x0f\xe2\xe4\xc7\x0f\x1c\x64\x7f\xff\xab\xdf\xf7\x9e\xfa\x00\x58\xd7\x78\x0d\x89\x78\x9d\x8e\x38\xc8\xf6\xfb\x88\x6d\x5e\xf0\xf2\xdb\x6b\xe8\xf3\xff\xda\x73\xcd\x28\xab\xc7\x8b\xeb\x07\x73\xc0\x31\x2d\xf4\x53\x78\x72\xf0\x49\x69\xc1\x58\x30\x2d\x3e\x37\x39\xf7\x5b\x70\xee\x84\x36\xb0\xb0\xae\xad\x26\x3a\xad\x75\xe9\x61\x29\x20\xbc\x81\x05\x94\x74\xdf\xb5\xe8\xd5\x4c\x1c\xaf\xad\x33\x68\xeb\x0c\xba\xe3\xfa\x55\x67\x10\x16\x11\x3c\x5c\x4f\x90\x50\x37\xeb\x86\x30\x56\x46\xd0\xbd\xad\x13\x83\x3f\x7e\x58\x40\x6d\xe2\x8f\x7a\xdb\x3f\xb9\x4d\xa6\x41\x81\x56\xae\x8e\x61\xb2\xc3\xa2\x60\x52\xe1\xc1\x87\x01\x42\x2d\x96\x40\xd3\xc6\x17\x11\xdf\xb8\x29\x84\xaa\xab\x04\x3c\x19\x72\x8b\xa5\x9a\x51\x61\x14\x8a\x12\x8a\x3e\x49\xd5\xc2\x4e\x07\xe5\xb0\xed\x55\xc0\x8d\xd1\x19\x34\x05\xc3\x4a\xab\x80\x49\x49\xd3\x86\xd9\x58\x7e\x0d\xd1\xc6\x4c\xe4\x42\x65\x82\xfa\x18\x24\xbd\xa2\xb9\x62\x27\xea\xc6\xf7\x72\xc8\x1b\x4c\x06\x41\xf6\xb7\x7a\x8c\xcf\x2b\x01\xc1\x6d\x44\x0a\x82\x45\x79\x08\xc0\xf5\x83\x85\xcd\x21\x15\x43\x4f\x5b\x2f\xeb\x7a\xed\x64\x7b\x4b\xf1\xfe\x32\x33\x44\xb6\x7a\x29\x43\x4b\xc2\xb2\x75\x3f\xa7\x42\xf2\x73\x08\x06\xf6\x17\x9f\xbf\x39\xd1\x39\x90\xd8\x1c\x46\x64\xde\x23\x76\x32\xa4\x98\x1c\x22\x58\x52\xd5\x62\x2a\xdf\x0d\x74\x4e\x0f\xa3\x7a\x42\x99\x0b\x65\xe5\x54\x62\xc7\xec\xaa\x16\x95\x50\xe0\x6a\x85\x12\x0d\xc7\xfb\x49\x52\xb6\xc1\xe9\x87\x98\xcc\x83\x0a\xf7\xb0\xac\xec\x62\x95\xb2\xbf\xe5\x63\x6c\xcb\xc7\xd6\xbe\x3e\x11\x1f\xa3\x9d\xfb\x70\x98\x18\x64\x9e\xf7\xcf\x7e\x3f\x4a\x53\xd9\xa9\x8b\x7b\xdf\x12\xe2\x4e\x81\x7e\x60\x8d\x56\x63\xf2\x1a\xd6\xb1\xd5\x0c\x6b\xf6\x51\x6f\x62\x25\x57\x7c\x86\xad\x28\xac\x0e\xe0\x55\xba\x0e\xed\xc4\xba\x79\xf7\xa0\xc7\xfb\x12\x2f\xf8\xb2\xd6\x45\x21\x6a\xc3\x0a\x79\x2d\xd8\xb1\xa8\x0a\xbd\x28\x29\xf7\x35\x67\x17\x96\x5b\xb7\xab\x2f\x84\x5d\x2f\xec\xdb\x0f\xd5\xc6\x57\xa1\x0f\x84\xfd\x8f\x65\xed\x50\x14\xce\x2a\xaa\xa0\x7c\xa5\x80\x69\x1c\x42\x67\xa3\x11\x3b\x13\x37\xa2\x1e\xb1\xd3\xe9\x99\xb6\xe7\xa8\x7d\xa7\x09\x77\x78\x23\x93\x53\xf6\xcc\xd9\x75\xc6\x32\x8b\xdd\x65\xa2\x02\x75\x5d\x27\x03\xb4\xb8\x85\x43\xd4\xe7\x2d\xd7\x9e\xc3\x48\xa1\xf2\x7c\xad\x48\x46\xaf\x65\x0a\xed\xbb\x7a\x2f\xd0\x21\xd6\x93\xb6\x50\xd6\xd1\xfe\x46\x5c\x05\x8f\xc4\x07\x56\xa0\x54\xac\x16\xa6\xd2\xca\x88\x14\x66\x34\xcc\x08\xad\xdd\x61\x31\x8c\xd7\x16\x9e\x7d\xc5\x66\xa5\x8d\x85\x12\xda\x61\x9a\xc2\x9d\xfb\xe1\xa0\x22\x99\x17\x85\xc8\x93\xae\x80\xd8\xcd\x8a\xa7\x1e\x02\x42\x43\x09\xfd\x6d\xb0\x50\x39\xa9\x71\x4e\xee\x0f\x1d\x26\x7d\x0f\x27\xdf\x5e\xfc\xae\xca\xe6\xf6\x60\x82\x1c\x89\x36\xc0\x12\xe0\x39\xc0\xe0\x9b\xa8\x11\xd4\x5c\xeb\x6b\x96\xe9\xb2\x2a\xe0\xe8\xf4\x38\x59\x6d\x1f\xba\xb0\x95\xc6\x6e\x74\x73\x10\xb5\xa8\x83\x0f\xfa\x75\xa8\xeb\xa5\x88\x0d\xa1\x86\x89\x77\x22\x1b\xac\x87\xed\xc9\x3b\x91\x45\x4d\x98\x01\x92\x2d\xf3\x08\x11\xee\xc4\xf6\xef\xad\xdf\x3b\xe4\x30\x94\x9b\xbf\x47\x2d\x5d\x7c\x75\x50\x2c\x61\x4c\x8f\xf6\x4f\x8f\x80\xc6\x29\x60\x0b\x61\x7d\x5d\x0c\xa3\x11\x36\x23\x1e\xbd\x25\xe8\xcb\x90\x48\xed\xc7\x82\x16\x69\x5a\x5b\xb6\xb7\x7b\xb0\xbb\xbf\xe4\x7f\xec\x40\xc6\x5f\x46\xbf\x94\x00\x75\x5a\x01\x6e\xa8\xc8\x76\xf3\x11\x93\xd6\x67\x5a\x23\xdc\x13\xcc\x8a\x8a\xfe\x46\xcc\x68\x66\x6b\x9e\x4b\x52\x63\xe0\x53\x77\x93\xad\x1b\xe2\xf2\x7b\xbb\xbf\xec\x52\x6b\xaf\x5b\xad\x76\x2d\x4c\x7f\xc2\x2e\x11\x27\x26\x0c\xb4\xd0\x0d\xe0\x42\x21\x09\xaa\x42\x66\xd2\x16\x0b\xe0\x58\x4c\x37\x88\x49\xe5\xe4\x05\x15\x1b\x9e\xbc\x93\xd6\x37\xd7\xd1\x53\xf6\x04\xbb\xeb\x21\x86\x13\x37\xd0\x61\xfd\x60\x2e\x78\x61\xe7\x98\x24\xa2\xb4\x1a\x63\x83\x54\xc7\x4a\xe8\x9b\xbe\xf1\x92\x7e\xee\xc4\xf8\xea\xe1\x5a\x5c\x9e\x50\x4f\xcb\xc1\x31\xd1\xaf\xd7\xef\xda\xce\x96\xd0\xeb\x2e\x2f\xcf\xbf\x4e\xfa\xb6\x03\x17\xb7\xb6\xf2\xa9\x3b\xe0\x0d\x10\xf5\x54\xd7\xe5\x03\xe0\x1d\xc3\x04\x2b\x7b\x35\x70\x67\x03\xb2\xb0\xbe\x8d\xdc\xd9\x6a\x34\xc2\x0f\xef\xe0\xce\xfe\xa1\x1b\x00\x03\xe1\x57\xc5\x22\x20\x31\x18\x61\xd9\x8e\x1b\x6a\xc7\xb1\x27\xb7\x1b\xbe\x11\x3c\x47\xa0\x0c\x63\x05\x5f\x4b\x75\x8b\xaf\xc1\x82\x68\xd1\xdc\x86\x95\x03\x8d\xb1\xba\x64\x73\x7a\xed\xb4\xf4\x92\x4e\xc6\x04\x4e\x8f\xaf\x6b\xaa\x45\x85\x1c\x8e\x7e\xf3\xd9\xf1\xaf\x25\xbe\x81\x74\x4f\x9a\x78\x64\x31\xd9\xe2\x1e\x51\x52\x21\xb1\x10\x77\x66\x20\x5e\x3a\x40\xf2\x03\x1b\x30\x01\x82\xf5\x2b\xe4\xec\x0e\x04\x41\xbd\xfe\xb9\x5e\x83\xe5\x54\xb0\xc1\xf2\x06\xd8\x2a\x27\x2b\xed\x19\xf4\xbe\xa0\x3f\x07\xdc\x31\x3e\x86\x9a\x71\xa5\x95\xcc\x78\x21\xff\x2d\x72\xec\x90\x8f\xf9\x73\xa0\xe7\x64\xdc\x88\x31\x04\x75\x15\x35\xf6\x8c\xaa\x15\xdd\x71\xb4\x5a\x83\xf2\x11\x90\xcf\xf0\x79\xfd\xb3\x32\xd8\xb0\x39\x01\xac\x7f\x41\x6a\x7c\xbd\x9f\xcc\xc3\x6c\x31\x36\x24\x05\xaa\x01\x12\xc8\x97\xd3\xc7\x11\xac\x0a\x0a\x3c\x91\x85\x03\x33\x42\x78\xcd\x07\x23\xcb\x9c\x4e\x32\xe8\xab\xa3\x3b\xbe\x66\x2a\xf4\x9e\xf7\x58\xc2\xcb\x04\x89\xf2\x1f\xa8\x55\xbd\x77\x1a\x7b\xa1\xc7\xd5\x4c\xb0\xa7\xee\x97\x7f\xfe\xd3\x9f\xbe\xfc\xd3\x04\x87\x0f\xb9\x10\x8a\x9d\x1e\x9e\x1d\xfe\x74\xf1\xdd\x11\x94\xe0\xf6\xa5\xea\x40\x89\x9e\x43\xa7\x79\x0e\x9a\xe4\xf9\x51\x53\x3c\xa1\xb0\xa4\x37\x17\x49\x23\x0c\x30\x64\x8c\x22\x4a\x1a\x66\x84\xe6\x87\x48\xb7\xb1\xbb\xd6\x1d\xb5\x07\x71\xc6\x6c\x56\x5d\xe8\xec\x7a\x40\xeb\xe9\x58\x54\xb5\xc8\xd0\x1b\x77\x79\x74\x8e\xa3\x3b\x2b\xf6\xec\xd5\x65\x5b\xd0\x00\x59\x3f\x2d\x64\xdf\x37\xe4\xaf\x73\x96\xef\xb5\xa8\x6c\x70\x10\x5c\xf1\xec\xfa\x96\xd7\x39\xf8\xcf\xb8\x95\x00\x50\x8c\x08\x83\xb5\xa0\x66\x71\x98\x56\x88\x50\x6a\xbe\x19\x37\xf2\x72\x74\x53\x78\xa7\x2b\x38\xc6\x50\x04\x4e\xb9\x2c\xc0\x4f\x4b\x7d\xb0\x31\xef\x28\xab\x82\xe3\x30\xf6\x9c\x6f\x4d\x3c\x7f\x3d\x58\x13\x2f\xea\xd3\x7d\x5f\x6b\xaf\x6f\xf6\xe3\x03\x16\x75\x24\xe2\xea\xa4\x65\xfe\x56\xd4\x0d\x30\xde\xc3\x15\x75\x55\x2d\x2e\xac\x5e\xab\xef\x06\x5b\x8e\xc5\xe0\x60\x77\x44\x62\xae\xc4\x54\x3b\x26\x7c\x67\x68\x25\x6f\xe0\x10\x72\x05\x25\x88\xde\x77\xa6\x93\xf0\x09\xe6\x7d\x06\x94\x7c\x82\x67\x3d\x30\x31\x26\xab\xef\x38\x3e\x72\x6f\x27\x4a\x98\xdd\xa8\xad\xa5\xa0\x7e\xe7\xf0\xa1\xb0\x19\xfa\x87\x23\x46\x0e\xf8\xa4\x34\xfd\x6e\xb0\x26\xab\xb9\x99\x63\x2f\x70\xf1\x4e\x5a\x42\x7f\x3d\xd7\x79\xb7\x83\xff\xac\xe6\x99\x60\x95\xa8\xa5\x76\xc2\xa8\x51\x36\xd7\xb7\x8a\x5d\x89\x99\x54\xc6\x93\x02\x20\xda\x89\x66\x10\xf5\x91\x26\xc0\xcf\x4d\xd8\xeb\x04\x52\x85\x8a\x9d\x32\xdd\x1e\x4d\x9a\x73\x37\x5e\x05\x12\x0b\xe8\x84\xb0\xfa\x81\xc2\x71\xcf\xb0\x5f\x9b\xf2\x5e\xa3\xe0\xc9\xb9\x28\xf8\x02\x73\x5a\xa7\x52\x81\xe5\x58\x9b\xfd\x01\xe2\x5a\xd8\xf5\xce\x7f\x77\xe7\x3c\xa4\x61\xb5\xe0\xd9\xbc\x5f\x88\x79\x1b\x08\xfb\xc0\x6b\x1b\x08\xeb\x33\xc8\x36\x10\xb6\x0d\x84\xfd\xca\xb5\x0d\x84\x6d\x03\x61\x9d\xeb\xc1\x5a\x49\xdb\x40\xd8\xda\xd7\x36\x10\xf6\xfe\x6b\x1b\x08\xfb\x80\x6b\x1b\x08\xfb\xc0\x6b\x1b\x08\xbb\xfb\xda\x06\xc2\xfa\x4d\x66\x1b\x08\xdb\x06\xc2\xe8\xfa\xed\x79\x07\xfd\xb5\x0d\x84\x2d\x0d\xb2\x0d\x84\x6d\x03\x61\x1f\x7c\x3d\x58\x13\x6f\x1b\x08\xc3\x6b\x1b\x08\x4b\xaf\xdf\x96\xa8\xf3\x61\xa4\x73\x67\x50\xf6\xaf\xcf\x3b\x87\xd0\x85\xcc\x28\x1a\xa5\xa7\x49\x4d\x17\x3e\x6a\xd2\xf6\xdb\x88\x20\x4e\x7c\x59\x11\xc5\x9d\xda\x68\xd6\xca\xda\xaf\x9e\x3d\xf1\x2a\x9d\xb7\xe1\x90\x28\x0e\x82\x66\xf5\xfa\xf5\x77\x1b\xab\x2c\xeb\x13\xfc\xf8\x34\x81\x8f\x07\x12\x25\x1a\x20\xd8\xb1\x0d\x74\x7c\x76\x81\x8e\x61\x9c\x84\x03\x38\x08\x7b\x8b\x0a\x8a\xff\x5f\xce\x6b\x61\xe6\xba\x58\x7b\xa3\x27\x9b\xfc\xa5\x54\xb2\x6c\x4a\xe8\x7a\xeb\xf6\xb3\xbc\x09\x89\x06\xa6\x6d\xab\x0f\x1c\x1b\x7d\x95\x51\x7b\x5c\xdf\x16\x17\x6a\x51\xa9\xcd\xbd\x69\xb2\x4c\x08\x68\x0b\x17\x5b\x38\x5f\x4e\xc2\x93\x42\x1b\x90\xa7\xfd\xf8\x4d\x3f\x21\x8e\xd0\xaa\x30\xca\x97\x5f\xac\x35\xc6\xac\xae\x86\xe1\xcb\x5f\xbf\x3e\x3f\x8a\xf8\x32\x57\x9e\x2d\x4b\x75\xa3\x0b\xa0\x2a\xc7\x9b\x9c\xb2\xb6\x41\x26\xdd\xdf\xec\xe8\x65\x72\x0c\x21\x23\xfa\x6a\xd5\xa9\xdf\xcc\xe9\xce\xa9\xe7\x68\x06\x6b\x89\x08\xfe\x1f\xac\x3b\xf7\xe6\x6e\xfd\xf5\xd9\xfe\xc7\x81\x01\xc4\x0e\xbc\xf8\x60\x04\xde\xb9\xa0\xd6\x55\x24\x82\x63\xc3\xc5\x77\xb5\xb2\x9a\x55\x05\x6f\xfb\x52\xc1\x0a\x7c\x03\x72\xe3\x68\x2e\xb2\xeb\xd7\x14\xa3\xdd\x33\x42\x04\x7d\x72\x26\xed\xbc\xb9\x9a\x64\xba\x3c\x70\xc7\x18\xff\xef\xaa\xd0\x57\x07\x25\x37\x56\xd4\x4e\xc5\x24\xb1\x34\xce\xdc\x28\x52\xcd\x26\x65\xbe\x3f\x61\x6f\x15\x56\xd7\xb7\x7d\x30\x23\x6c\x09\xf7\x7c\x8f\xf3\x71\x25\x1c\x47\xd4\xe0\x3b\x88\x20\xf4\xdc\xf4\x26\x7d\x80\x9a\x7b\x8b\x91\x9e\xf1\xf1\x4f\x1f\x1b\xdf\x72\x2e\x36\x80\x93\xe4\xb1\xc5\xc0\x07\xcb\x05\x19\x20\xf6\xfd\x80\xe2\xde\x0f\x46\x9d\x7d\x28\xb1\xee\x07\x88\x76\x3d\x40\x7c\x7b\x88\xd8\xf6\x70\x71\xed\x8f\x00\x0a\xfd\x98\xe3\xd9\x03\x3a\xfd\x06\x8a\x63\x7f\x8a\x18\xf6\x20\x6f\xdd\x37\x76\xfd\xe9\xe2\xd6\xc3\xbc\xee\x90\xe6\xc6\x63\x8d\x55\x0f\xe0\xbc\x1f\xd2\x71\x3f\x98\xd3\xfe\xa3\xc5\xa6\xfb\xc7\xa5\x1f\x40\x4c\xba\x37\x91\xa5\x92\x56\xf2\xe2\x58\x14\x7c\x71\x21\x32\xad\xf2\xb5\xe5\x58\x07\x8b\x34\x9c\x1f\x83\xc3\x92\x07\x2b\x2d\xf4\x98\x73\x82\x5c\x77\x76\x1b\x16\xb6\xf8\x28\x07\xa9\x2d\x10\x6f\xc6\x59\x3e\xc8\xb8\x05\x7b\x30\xae\x32\xac\x7a\x19\x72\x11\xbf\xd1\xb7\x4c\x4f\xad\x50\x6c\x4f\x2a\xbf\x8e\xfb\x91\xb1\xd9\xfa\x2d\xc3\xb6\x76\xdf\x3e\x7d\xe2\x6f\xfe\xfc\x1c\x92\xe0\x7a\x35\xe6\xe3\xfb\x87\xe9\x41\xbf\xee\x20\xa6\x1b\xa7\x4d\x91\x3a\x89\xd1\x71\x9c\xf2\x9b\xa7\x2d\x68\xf4\x53\x18\x37\x9c\x36\xae\x72\x46\x95\x70\x9f\xdf\xa2\xf5\xce\xb8\x49\x55\xbf\x90\x61\xf3\x6b\xfe\xe4\xcb\xa3\xf3\xad\x3b\xf9\x61\x39\x65\x36\x94\xb5\xf2\x00\x15\xdd\x47\x9a\xa9\xb2\x55\x74\xef\x71\x45\xb5\xb1\x5f\xd7\x3c\x13\xe7\x83\xeb\x08\xfe\x38\xb1\xbc\xa9\x39\x31\xc0\xa0\xf2\xf9\xc3\xa3\x84\xc8\xf1\x34\x85\x7a\x62\xa8\xd4\x9d\x36\x45\xb1\x40\x9f\x43\x52\x7d\x8d\x51\xf8\x6e\x31\x2f\x38\xfe\x57\x3c\xa5\x55\x2c\xab\x5a\x93\xcc\xac\x1b\xa5\x1c\x0f\x6e\x3b\xbf\x81\x22\x09\x60\xd4\x3c\x29\x19\x36\x72\xe6\xa6\xef\xe4\x1f\x54\x13\xb7\xa9\x89\xc9\x80\xee\xd7\x53\x5d\x67\xf2\xaa\x58\xb0\x39\x2f\x42\x9b\x1f\xce\xae\x65\x51\xd0\x30\x13\x76\x21\x2c\x06\x2e\x50\x76\x16\x5a\xcd\x60\x72\x5c\xf9\xf6\x92\x22\x73\xbf\xcd\x0a\xc1\x55\x53\xe1\xf3\x9c\x24\x5e\xe8\xa6\xf6\xcf\x9b\x84\xf0\x47\x90\xc0\x4a\x16\xa3\xa8\x89\xdd\x7b\x17\xb6\x75\xd1\x18\xa7\x00\xbc\xf2\xe0\xdb\xa3\x78\x4c\x8f\x8f\x6e\xa2\x16\x46\x55\xad\x6f\x64\x8e\x31\x14\x4f\x36\x68\x97\x8d\x6d\x8a\xc2\x79\x56\x5a\x8d\x95\x98\x71\x50\x54\xe8\x14\xe1\x9a\xe1\x38\x98\x5b\xa0\x72\x68\x5c\xe4\x34\x7c\x5d\x25\xe5\xfc\x37\x12\x5b\x2e\x47\x94\x63\x7b\x4a\x33\x0d\x99\xaa\x8d\x92\x16\xdb\xf8\xcf\x1b\xcb\x72\x7d\xab\xf6\xc9\x67\x25\x0d\xe3\xec\x4a\x58\x1e\xe5\x9a\x92\x80\x33\x4c\x28\x7e\x55\xb8\x35\x87\x54\xac\xcb\x95\x04\x62\x53\xc1\x6d\x53\x0b\x36\xe3\x56\xac\xd4\x73\xf0\x7d\xdf\x4f\x5e\x69\xc8\xc1\x3a\x65\x8d\x32\xa2\xa7\x78\x1f\x4c\x39\xfa\xf3\x7f\xac\xc7\x23\x64\x29\x74\x63\x3f\x89\xf5\x77\x3b\x97\xd9\x3c\x56\x66\x65\x29\x0c\xd3\x4d\xc7\x2c\x7e\x4a\x3f\x5b\xbd\x42\x5b\x13\x70\xd5\xb5\xae\xfb\x78\x85\xf7\xab\x0b\xc7\xd0\xf6\xf7\x86\x0c\xf2\xe3\xb3\x8b\x9f\x5e\x1c\xfe\xfd\xe4\xc5\x84\x9d\xf0\x6c\x1e\x63\x72\x28\xc6\x81\x69\x00\xa3\x98\xf3\x1b\xc1\x38\x6b\x94\xfc\xb9\xa1\xb0\xf2\x5e\xf8\xed\xfe\xa0\x88\xf4\x6b\x4a\x5f\xc7\x6d\xd6\xda\xf1\x2b\x9b\xde\xc1\x68\x94\xb1\xa5\x8d\x80\x36\x35\x4b\xea\x53\x88\x65\x2f\xd0\x44\x00\x85\x0b\x12\xeb\x8f\x5f\x9d\x5c\x40\xc2\x7e\x55\x23\x52\x09\x64\x78\xc1\xf7\x30\xd2\x95\x70\xbf\xa0\xfe\xc4\x13\x76\xa8\x16\xf8\x25\x9e\x29\x69\x58\x21\x8d\x15\x20\xf5\x48\x6d\xf3\x51\xf2\x9d\x27\x13\xf8\xdf\x0e\xe3\x79\x5e\x3b\xbd\x2e\x24\xae\x65\x4b\x99\xa4\xa8\xf9\xc9\xab\x22\x7a\x01\x25\x2c\xe6\xa9\xbd\xd4\x39\xcd\x1c\x24\x09\x44\xc8\x50\x0c\x1a\x5b\x73\x2b\x66\x32\x63\xa5\xa8\x67\x82\x55\xdc\x66\x73\x56\xf2\x05\xcb\x74\x5d\x37\x15\x76\x33\xc8\xb9\xe5\x13\xf6\x5c\xd7\xac\xf4\x87\xd8\xed\x79\x27\x87\x2f\x56\x67\x0e\xb4\x27\x3b\xfe\xa7\x34\xa6\x11\xe6\xe0\xe9\x93\xbf\x7c\xf1\xa7\x3f\x7d\x56\x0d\xf0\x42\x6a\x2f\xe4\xbd\x44\x0d\xf0\xb8\x5f\x05\x5c\x75\x6c\x88\x28\xd5\xac\x88\xf7\xd7\x7a\x02\xa0\xaf\x95\xd9\xd7\xc6\x1c\xb7\x6f\x70\xbe\xae\xa9\x39\x48\x23\xbe\x76\x0e\x03\xb5\xaf\x6a\xe5\xa0\x37\xac\x88\x37\xe8\xb8\x23\xf1\xe9\xb9\x3f\x98\xa4\xe7\x94\x9d\x36\xb6\x55\x9b\x03\x35\x62\x4f\xd8\x5f\xd9\x3b\xf6\x57\x30\xb4\xfe\xdc\xb7\xd9\x57\x5f\x13\x68\x88\x94\x26\x67\xdf\x9f\x9e\x0f\x44\xf1\xef\x1d\xd3\x74\x23\x3a\xaa\x5a\xcd\xae\x24\x29\xf6\xe2\x9d\x15\xb5\x53\x34\x69\x25\x36\xda\x26\xcd\x4d\xf0\x13\x6e\x33\x0c\x3c\x9c\x4e\xd3\x34\xaa\xfb\x6d\x34\xf7\xf3\x6f\xb4\xb1\x67\xc4\x85\xd2\x86\x3f\xed\x68\x25\x30\xfe\x84\x8d\x39\xb9\x61\x6c\x7b\xc0\x0c\xcb\x35\x64\x75\x61\x8a\xf3\x5c\xf6\x48\xd6\x78\x38\xdb\xb8\x5f\xfc\x3e\x59\xcf\xf7\xad\x54\xc7\x95\x02\x36\x10\xa9\x58\x11\x46\x57\xa5\x73\xd2\xce\xdc\xb4\xf2\x48\x66\xbc\x47\x3d\x23\xaf\x4d\xf0\x37\xc3\x5e\x72\xe7\x29\xe3\x0a\x8b\x4c\xa6\xa2\xae\x31\x2b\xfd\x6a\xe1\x93\x03\x7b\x2f\x5e\xaf\x93\x54\xd5\xda\xea\x4c\xf7\xe8\xe4\x96\x46\xbb\x69\x38\x20\x42\x85\x7b\x97\x28\xff\xe6\xf8\x7c\xc4\x2e\x8f\xce\xa1\xbb\xd5\xc5\xd1\xe5\x79\x6a\xb3\xec\x5c\x1e\x9d\xef\x6c\x94\x14\xcc\x2b\x7c\xe0\xa2\x5e\x63\x90\xc4\x05\xe5\xb4\xc9\x71\xc9\xab\xf1\xb5\x58\xac\x29\x53\x87\x90\xeb\xe3\xb0\xc2\x83\xbc\x10\x92\xb9\xe4\xd5\xbd\x47\xab\x05\xcf\xe5\x27\xaa\xf4\xf2\x69\xb7\xe1\x99\xab\x4b\xbe\x4a\x7d\x23\x72\xd4\xd2\xfd\x2f\x84\xca\x2b\x2d\x9d\xbe\xb8\xad\x03\xbb\xff\xaf\xb7\x75\x60\x1f\x7c\x6d\xeb\xc0\xb6\x75\x60\xcb\xd7\x83\x49\x9c\xdd\xd6\x81\x7d\x5e\x11\xfc\x6d\x1d\xd8\xfd\xaf\x8d\x07\xee\xb7\x75\x60\xab\xaf\x6d\x1d\xd8\xb6\x0e\xec\xc3\xae\x6d\x1d\xd8\xfd\xaf\x07\x97\x72\xb4\xad\x03\xbb\xd7\xb5\xad\x03\x5b\xbe\xb6\x75\x60\x77\x5c\xdb\x3a\xb0\x3b\xae\x6d\x1d\xd8\xf2\xb5\xad\x03\xbb\xdf\xb5\xad\x03\xdb\xd6\x81\x7d\xd6\xe9\xb1\x6c\x5b\x07\x46\xd7\xb6\x0e\xec\xb3\x48\x02\x64\xdb\x3a\xb0\x0f\xba\xb6\x75\x60\xdb\x3a\xb0\x75\xae\x6d\x1d\xd8\xe7\xe2\x94\xd9\xd6\x81\x6d\xeb\xc0\x7e\x3b\x8a\xee\xb6\x0e\x6c\x5b\x07\xb6\xad\x03\xdb\xd6\x81\xbd\x77\x16\xdb\x3a\xb0\xcf\xc1\x04\xac\x85\x91\xff\x16\xe7\xba\x90\xd9\xa2\x77\x96\xe2\x6b\x6a\x7c\x6c\x68\x58\x56\xc1\xb8\x51\x6a\x55\x8f\xca\x93\x07\x56\x70\xf3\x3a\x22\x5c\x5c\x78\x13\x9a\x3f\x7f\x04\x12\x3c\x88\xe2\x1b\xff\x82\x67\xeb\x47\x52\xc6\xbe\x01\x01\x92\x6f\x3d\xbf\x45\x6f\x13\x21\x7e\x91\x81\xf2\xc1\x77\xe3\x8a\xc8\xb0\x13\xac\x0e\x1c\x4c\xde\xb9\x41\x78\x55\x15\x52\x98\x09\xbb\x08\x0d\x78\x80\x7b\x99\x67\x2c\xab\x9a\x11\x2b\x45\xa9\xeb\x45\x0f\x6b\x62\x00\x85\x33\x59\xb5\x81\x48\xf6\x1a\xc7\xf4\x64\x70\x46\x44\x55\x15\x0b\x54\xa6\xda\x52\xd2\x40\x35\xe9\x99\x4b\x0e\xea\x4e\x27\xcb\x43\xda\xc4\x0c\x3b\xd3\xf6\x35\x6d\xf8\x8d\xe5\xda\xdf\x95\x55\xce\xad\x2e\x65\xb6\x0e\xc3\x46\x1e\xdb\x3f\xa7\xfc\x48\x97\x55\x63\x45\xc2\xb6\x91\x58\xa8\xc9\x49\x13\x9b\x70\xfd\xb3\xc1\x33\xad\xa6\x72\x46\xaa\xf8\x01\x76\x74\x1f\x87\xf7\x19\x47\x5d\xd4\x1f\x61\x2a\x78\x56\x70\xb9\x7e\xdc\x3e\x4d\xad\x3a\x82\xb1\xa0\x42\xb7\x4d\xae\x82\x1c\xdd\x40\xad\x51\x48\x5c\x92\x78\x4c\x26\xfe\x2b\xfc\xf1\x08\x33\x7d\x9d\xfd\x01\x4a\xe7\x8a\x05\x7d\xab\x5a\xf5\x58\x31\x5e\x54\xf3\xf7\x2b\xc8\x6e\x22\xc7\x0b\xc5\x4b\x99\xf9\x1d\x73\x58\x14\x3a\x43\x83\x28\x55\x91\xfd\xd8\x38\x9e\x7b\x48\x59\x36\x96\x5f\x15\x62\xc2\x4e\xb1\x42\x48\xab\x62\xe1\x76\x93\x11\xd6\x07\x3e\x68\xf9\xd7\xce\xc1\xea\x9f\x80\xd1\x33\xf9\x62\xa5\x36\x04\x0b\x82\xd5\x50\x42\xb9\x53\xa6\x95\x60\x42\xd9\x7a\xe1\xd6\xee\x5c\xe7\x17\x6e\xf9\x92\xbb\x7b\x17\x49\xf5\xcc\xb9\x18\x22\xdf\xa2\x67\xae\xc5\x30\x19\x12\xfd\xb3\x23\x96\xc3\xbc\x51\xdd\x62\x9c\xf8\x98\xac\x6a\xa5\xf3\xc9\x8a\x53\xe9\x55\x83\x73\x9d\x3b\x01\x57\x8b\xb8\x15\x1e\xd9\x87\x70\x40\x4a\x7e\x0d\x26\x36\xb7\xad\xe4\xe3\x37\x5c\x16\xee\x08\xad\xa8\xc7\xef\x97\x38\x31\x80\x6a\x30\x74\x31\x18\xeb\xbb\x83\x86\x2c\xe6\x62\xd0\xb9\xab\x94\xeb\xa1\x3f\xb0\x25\xc1\xfb\x02\xc6\x8a\xd2\xb1\xdc\x9e\x28\xf9\x3b\xb0\x59\x79\xa9\x1b\x65\xb1\xc2\x0b\xe5\x73\x60\xfa\x98\xb4\xf6\xe0\x24\x2f\x1b\x86\xed\xf0\xdc\x97\xc0\x9c\x0f\x91\x4d\xce\xad\x15\xb5\x7a\xc6\xfe\x67\xef\xed\x1f\x7f\x19\xef\x7f\xb5\xb7\xf7\xc3\x93\xf1\x7f\xfd\xf8\xc7\xbd\xb7\x13\xf8\xc7\x1f\xf6\xbf\xda\xff\xc5\xff\xf1\xc7\xfd\xfd\xbd\xbd\x1f\xbe\x7d\xf9\xf5\xe5\xf9\xc9\x8f\x72\xff\x97\x1f\x54\x53\x5e\xe3\x5f\xbf\xec\xfd\x20\x4e\x7e\xfc\xc0\x41\xf6\xf7\xbf\xfa\xfd\xda\x53\xee\xed\xa3\x1e\xce\x43\x3d\x90\x7f\xfa\xa3\x78\xa7\x29\x8f\x73\xa0\xb3\x48\x39\xe8\x4b\xa7\x91\x3c\x48\xef\x3b\x8d\x5e\x4a\x82\x21\x12\xc6\x91\x86\xe9\x52\x5a\x67\xc0\x39\xb5\x86\xc7\x95\x67\x1d\xf3\x84\xf8\x00\xd4\x5e\x72\x28\x11\x8b\xaa\xb6\x22\xab\x46\x7b\x57\x2c\x98\x47\x8a\xc9\xb2\x2a\x44\x29\x94\x85\xf3\x3c\xf6\x9a\x20\xd8\x8b\x93\x76\x26\x19\x6a\xec\xe2\x5d\x26\x44\x4e\x0f\xdb\xb2\x8e\x5f\xbf\xb6\xac\xe3\x73\x64\x1d\xbd\x9d\x17\x5d\xbe\x11\x0d\x47\xc6\x98\xf1\x7e\x1f\xf0\x68\x84\x2a\x13\x3d\x85\xa8\xc6\x8d\xcc\x1b\x5e\xc4\xb8\x16\x1e\x61\x61\x12\x1b\x4b\x25\x5f\x2c\xd9\x46\x52\xc9\x18\x10\x63\x14\xe2\x4e\x70\x23\x69\x05\xad\xb7\x7b\xe7\xb0\xb8\xe5\x0b\xb3\x83\xd8\x49\x4a\xab\x71\x67\x00\xa6\x6b\x1f\xad\x8a\xd5\xcf\x15\x25\x33\x4b\x2f\x93\x96\xcc\x90\x32\xbb\xbb\x6b\xc2\x9d\xde\x9f\x45\x33\x6c\xb3\xb6\xdc\xb6\x80\x48\x97\xf5\xd6\x64\x4a\x43\xde\x4e\x3c\xb8\x4b\xd3\x79\x63\x84\x0a\x90\x28\xdc\x97\x53\xed\x5e\x1c\x60\xae\xa6\x53\x91\xd9\x67\x54\xfb\xb3\xe2\x37\x98\xfb\x62\xa5\x6a\x78\x51\x2c\xa2\xfe\xa7\x5a\x31\xf1\x4e\x5a\xd6\x28\x2b\x0b\x47\x49\x56\x8b\x59\x53\xf0\xd8\x1e\xa5\x27\xfa\x20\x64\x3e\x61\xaf\x94\xd3\xc7\xdf\x73\xb3\x13\x16\x85\xb0\x8e\x8a\x1c\x8a\x79\x53\xf2\x43\x08\x30\xd9\x90\xed\xab\xfb\xf9\x86\x30\x16\xed\x8e\xb6\x4b\x76\x2e\xa7\x53\x37\x0a\x94\xf2\x2b\x5d\x97\x7c\xf9\x09\x54\x87\x8c\x79\x58\x31\x12\x07\x60\xb2\xed\x38\xfb\x21\xe3\xf5\x4e\xec\x0f\x38\x2c\xec\x5c\x37\xb3\xf9\x4a\x2a\x1a\x0b\x41\x37\x37\x61\xe3\xc3\xa3\xdd\x5b\x9c\xdc\x51\x99\x40\x31\xa7\x05\xee\xa7\x5b\x2e\xed\xb2\xf7\x1b\x73\x27\x90\x46\x3e\x85\x0f\xa2\x98\x22\x8f\x32\x1f\x95\x78\x67\x3b\x4f\x99\xb0\x53\xac\x5f\x19\xdd\x75\x47\x98\x64\x14\x39\xf4\xb1\xde\xe5\xf7\x92\x21\x93\x10\x80\x3a\xf0\x46\xae\x16\x3e\xab\x09\xa2\x82\x98\x70\x18\x12\xa6\x8a\x45\xbb\xbe\x6b\x39\x64\x7b\x31\x48\x23\xb2\xa6\x96\x76\x71\xa4\x95\x15\xef\xd6\xca\xec\x48\x39\xd9\x45\x3a\x60\xc2\xcb\xfc\xc3\x98\xae\xb0\x12\xbd\x03\xf5\x37\xd7\x4d\x91\x03\xbc\x44\xa3\x60\x57\x23\x6e\x90\xb0\xb8\x3c\xc0\x59\xc0\xea\xed\x3e\xc4\xc7\x91\x31\xbc\xfd\x73\x23\x6f\x78\x21\x94\x8d\x7e\x71\x0e\x91\xd3\xf8\x47\x1f\xaa\xbb\x58\x6e\xae\x5b\xc5\x45\x8c\x2b\x9d\xb7\x7a\xca\x81\x7f\x25\xf8\x48\xbc\xb3\x8f\xd1\xd9\x08\x1c\xff\xbc\x96\x37\xb2\x10\x33\x71\x62\x32\x5e\x80\x7e\x36\x8c\x4a\x7c\x78\xc7\xe8\xb0\xf0\xb5\x2e\x8c\x93\x1d\x4e\x25\x75\xd2\x0b\x53\x0f\xc0\xa3\x37\xe3\x52\x21\x52\x5f\xe5\x7f\x6c\x30\x87\xc1\x69\xb9\x15\xaf\xdd\x02\x87\x5c\x05\x60\x6a\x57\x5a\x17\x84\xc1\x00\xa7\x8a\xc6\x27\x34\x12\xa5\x7f\x52\xe2\xf6\x27\x37\x9a\x61\xd3\x82\xcf\x5a\xe6\x28\xec\x52\x96\x51\x3b\xf4\x9d\x2f\x00\x00\x07\x8d\x63\xdd\x8e\xd7\xb6\x09\x1b\x31\x3f\x78\xc6\x9e\xee\xc3\x76\xe6\x86\x85\x31\x72\xf6\xc5\x3e\x70\x81\xa3\xc3\xf3\x9f\x2e\xfe\x71\xf1\xd3\xe1\xf1\xcb\xd3\x33\x76\xa6\xad\x40\xdd\x3d\x12\xa4\x59\x70\x94\xbb\x59\x86\x38\xc6\x44\x9b\x09\xf8\x8a\xa0\x8a\x46\xe5\xfa\xd6\xac\x1d\xcd\xc1\xed\xe7\x88\x27\xb8\x5a\xcf\x5d\xcd\x2b\x7e\x25\x0b\xd9\x47\x53\x5e\xaa\x6c\x89\x07\x05\x59\x93\xe7\x07\x79\xad\x2b\x24\x82\x4f\xae\x89\x1c\xbd\x49\xf8\x3e\xae\xd0\x85\xf5\x9d\xa6\x03\xce\x6a\xae\x6c\xab\x76\xb4\x6b\x56\x3b\xe1\x0d\x78\x54\x3d\x97\x63\x73\x06\xcc\x10\xde\x4e\x9e\x0f\x87\xaf\x72\x98\xe7\x22\x4f\xc8\xdf\x3b\x8b\xf1\xa1\xd5\x45\x1e\xf9\x97\x8b\xc2\xf7\xec\xfc\xd5\xc5\xe9\xff\xdb\xd9\xc7\x8b\xaa\x5f\x81\xd6\x30\x58\x5d\xb5\xae\x06\x5b\xdd\xd7\x84\x05\xb5\x5d\xdf\x07\xb1\xbe\x41\x5a\x0e\x53\x16\xf0\xba\x51\x29\xc8\x72\x3b\x3e\x2b\x75\x2e\x26\xec\x3c\xe4\x27\xa6\xdf\xc6\xf6\x43\x2d\x98\xbb\x45\x59\x09\x16\x53\xa4\xa2\x59\x8d\xb8\x48\x09\x5a\x64\xcc\xc8\xa7\xbc\x30\x9b\xe6\xc6\x7d\x64\xa3\xd3\x23\x5e\xea\x46\x0d\x93\xf7\x1f\x46\x63\xb9\x50\xda\x92\x62\xed\x66\x09\x08\x9c\xb5\xce\x18\xfa\x18\xa3\x22\xb0\x44\xbe\x19\xcc\x91\xf4\xa2\x51\x1a\x4f\xec\xf3\x30\x32\xa6\x97\x34\x46\x74\x15\x74\x12\x8d\xad\xd7\xd1\x8d\x5e\x0b\x9e\x83\xe3\xa0\xe2\x76\x8e\xa6\x62\xc9\xcd\xb5\xc8\xf1\x03\x52\xcd\x42\x00\x18\x6c\x7c\xff\xa8\x4b\x37\x6f\x1f\xeb\x05\x95\x0c\x2b\x4b\x20\x4a\xec\x4c\xe3\x8d\xae\x7a\x8f\x43\xe8\x88\xf2\x4a\x15\x8b\xd7\x5a\xdb\xe7\x01\xd8\x6b\x90\x1d\xf0\x3d\x69\xcb\x69\x00\x1e\xd4\x49\x0e\xcf\x1d\xc3\x6a\xc0\xa1\x8a\x31\xc5\x8e\xdb\x15\x7f\xec\x47\xaa\x6e\xd4\xa1\xf9\xba\xd6\xcd\xda\x42\x6c\x49\xd9\xfc\xfa\xf4\x18\x58\x51\x43\x29\xd2\xca\xd6\x0b\x00\x33\x5c\x46\xa4\x0f\x86\xc1\x1b\x4a\xf2\x8e\xcf\x44\x9b\x8f\xcb\x5e\xf2\x05\xe3\x85\xd1\x9e\x96\x14\x9e\xef\x5a\xa1\x64\xe2\xba\xaf\xaf\xb4\x9d\x2f\xd9\xb6\xee\x40\x2d\xff\x6e\x14\x65\x4c\xb7\x79\x4d\x52\x2d\xfd\xdc\x42\xec\xb7\xaa\x45\x26\x72\xa1\xb2\x4d\x2f\xfb\xa6\x13\x8d\x61\xeb\x9c\x69\xe5\x0e\xe6\x20\x9b\xe7\x34\x64\x98\x13\x49\xe3\xad\x02\xc1\x7d\xb2\xfe\x38\xb8\x4e\xe1\x58\x36\x06\x5c\x4f\x53\x30\x1f\x71\x25\xbf\x6d\xae\x44\xe1\x28\xef\x4c\x52\xc0\x43\xe6\x16\xdd\x19\xb2\xe4\x33\xc1\xb8\x0d\x3b\xcd\x6a\x26\x94\x69\x6a\x5a\xc4\xd8\x3d\x46\x8f\x7a\x73\x7a\xcc\x9e\xb0\x3d\xf7\xac\x7d\xd8\x3f\x53\x2e\x0b\x48\x66\x07\x9f\x6a\xc7\x46\x9d\xfa\x21\x60\x4a\xb0\x79\x99\xae\x91\x49\x8c\x98\xd2\xcc\x34\xd9\xdc\xcf\xc9\xd9\xbd\xde\x6c\xa6\x02\x4c\x88\x20\x3f\xcc\xbd\xbe\x59\x0e\xf5\xc6\x88\x7a\x30\x06\xf5\x66\x0d\x06\x15\xab\x51\x6e\xcf\xa5\xd4\xc3\x8d\x55\x0a\xcb\x73\x6e\x39\x31\x2e\x7f\xc3\x83\x5d\xd2\xdf\x36\xfb\x32\xe2\x85\x54\xcd\x3b\x2c\x78\x1a\xce\xd5\x72\x71\x02\xc3\xb2\xcc\x53\x1d\x56\x1d\x93\x88\x73\xef\x4d\x89\xbd\xe6\xc9\x5e\x19\xdd\xa1\x26\x02\x9f\xe0\x98\xd4\x27\x9c\x72\xc2\x55\xae\xcb\xa5\x87\x39\x25\x52\x24\xbd\x5c\x26\x6c\xbb\xfb\xd2\xeb\x81\x38\x85\x0a\x71\x23\x7a\xa0\x9d\x77\x7b\xd7\xb8\xd1\x1c\x71\xfc\x8e\x80\xe1\x59\xc1\xaf\x44\x41\x09\xa7\x98\xc6\xbe\xbc\x03\x37\x5d\x05\x5b\xeb\x62\x38\xd8\x8e\xd7\xba\x10\x58\x56\xe6\x09\xe1\x86\x7f\x14\x74\x80\x41\x86\xa2\x03\x58\x83\x09\x1d\xc0\xae\x7d\x0c\x74\x68\x7a\x88\x7a\xd6\xa5\x83\xd3\x1b\x52\x3a\x80\xf0\x7e\xe8\x74\x30\x22\xcb\x74\x59\x9d\xd7\xda\x99\x9d\x83\xc9\x26\x1a\xb6\x8d\x19\xa2\x63\x63\x45\x0a\x3a\xc8\x82\xf4\x66\x5e\x47\x05\xa5\xdc\xa2\x90\xf0\x55\xa5\xff\x57\x24\xb3\x80\xf5\x74\x05\x99\x1f\x25\x09\x2f\xba\x5f\xd2\x17\x8f\x59\x1c\x0c\x81\xc9\xd0\xc3\xd9\x39\x88\x34\xd2\x19\x2f\xa0\x9b\x4d\xbf\x2d\xc7\xba\xdb\xae\x3b\x70\x54\x46\x0c\x31\x4a\xf8\x2c\xaa\x98\xe0\xe0\x68\xf1\x2e\x4c\xa5\x73\x11\xc5\xb2\x31\x0b\xfb\x12\xcb\x4d\xe1\x3e\x5f\xc1\xec\xf4\x0a\x1f\x56\xce\x93\x5f\x5b\x4d\x98\xec\x2f\x43\x8f\x1c\x37\x41\xa1\x20\x9f\xa1\xe2\x76\x3e\x62\xb5\x28\xb0\xf6\x99\x98\xc0\x35\x5a\x90\xbb\x70\x24\xfc\xa0\xfe\x3c\xf8\x47\xfb\x02\x8b\x76\x64\xd0\x9e\xa6\xc8\x69\xa5\x61\x3b\x2f\xfc\xbb\xef\xd0\x3d\x67\xaf\x2e\xe3\xe4\x21\xae\x16\x98\x41\x88\x19\x38\x9b\x66\xbc\x83\x0a\xa0\x1d\xa4\x42\x58\x6c\x74\x84\x5e\x4b\x95\x53\x15\x71\x42\xcb\xd0\xb4\x0e\xd5\x64\xa8\x4f\x97\x79\xcc\x7a\x9e\xb1\xb7\x8a\x05\x82\xb2\xf1\xda\xbb\xe7\x35\x6a\xd4\xde\x85\x37\x7e\xbf\x5f\x36\x3c\xa4\x3b\xcc\x1b\x05\x5b\xc3\x3d\x77\xec\x0c\xfb\xe5\xfb\xfc\xbb\x6c\x14\xb7\x98\x98\xe3\xd0\x46\xce\xf7\x38\xac\xd7\xf8\x33\xb7\xa5\xad\x54\x33\x13\x1b\x3a\xbc\x28\x12\x5f\xf9\x2a\x4b\xc7\xaf\x70\x68\x51\xb8\x6c\x61\x74\xd0\x0f\x1e\x8b\x95\x52\x38\x6d\xe3\x91\xdb\x28\xb3\xd2\xf0\xa3\xda\x51\xc2\x4a\x5e\x5c\x54\xeb\xf7\x54\x61\x4b\xf8\xfd\x2f\x2f\x0e\xd3\xa1\x41\x96\x53\xe9\x8d\x80\xef\x19\xcf\x4b\x69\x0c\xf8\xc9\xc4\xd5\x5c\xeb\x6b\xb6\xf7\xde\xd6\x92\x63\x23\x67\xe6\x80\xf6\xfc\xd8\xcd\x7e\x9f\x49\x55\x84\xa4\x29\x30\x93\x95\x0d\xd5\x3e\xf0\x90\x2c\xcc\x02\xd6\x90\x1a\x6d\x51\x2e\xc3\xf2\x34\xb1\xb5\x96\xdb\x05\x1b\x67\xd8\xcb\xcb\xd3\xaf\x62\xfa\x57\x97\xe8\x8c\xf6\x76\x17\x56\x7e\x25\x1d\x51\xb9\xdc\x38\x91\x48\xf7\xc8\x84\x19\x0e\xcd\xfa\x9b\x76\x4c\x96\x0b\xcc\x3f\x15\x90\x1c\xc5\xef\xcc\xc1\x03\xb7\xf5\x2e\x60\x54\xd1\x4f\x77\xd3\x1c\xcf\xc2\x51\x93\x43\xd2\xae\x89\x03\xbe\x6d\x93\xb7\x80\xc9\x8b\x59\xb5\x4e\x61\x89\x67\x82\xec\x6d\xaf\x6d\x69\xe3\xd3\x8f\xad\xf6\x4d\xe2\x4a\xf9\xce\x3d\x25\xfe\x55\x27\x35\x55\x69\x35\x5e\xfd\xf5\xfe\x84\x9d\xaa\x90\xd0\x3f\x72\x6f\x1b\xdf\xe8\x33\xb8\xac\x63\x86\x71\x83\x41\x98\x7f\xec\x7f\x72\x4a\x56\xdd\x0c\xb0\x33\xfa\x78\x95\x59\xec\x59\x1e\xf4\xd8\x80\x87\x99\x06\x75\x22\xc6\xcb\xca\x3e\x1e\x67\x77\xcb\xc7\xf2\x3a\x3f\x8e\x38\x02\xeb\x9d\x9d\x1b\xa5\x0d\x0f\x90\x9a\x1b\x27\x21\xcb\xe5\xb8\xd5\xb9\xce\x97\x73\x93\x09\x9c\x35\x40\x24\x44\xba\x90\xd2\x64\x09\x44\x28\xa9\xd4\x2b\x2b\xa7\x14\x78\x32\xd1\x31\xbd\x39\x1d\xb9\xc5\x97\x8a\xda\xc4\x8d\xda\x82\xd6\xd0\x69\x2e\x64\x54\xff\x0b\x0e\x65\xc8\xe7\xf4\xb0\x91\xe7\xe1\xe7\xc2\xd7\x3e\x50\xcf\x48\xa8\x55\xb7\xda\x7b\x00\x28\xd5\x9d\xf2\x46\x9d\x01\xc6\x6b\x5e\x3a\x56\x68\x18\x91\xe0\x4a\xcc\x24\xe6\x15\x06\xbe\xb6\x1b\x25\xcb\x8f\x50\x6d\x92\x96\x95\x72\x36\xc7\x8d\xc2\x38\x00\x6c\x31\x1f\x9b\x2b\x34\xcf\xa1\xd7\x34\x94\x45\xf0\xba\x74\xfc\x95\x67\x73\x08\xf4\x71\xc5\xf2\xa6\x86\xf6\x49\x56\xf0\x7c\x31\x36\x96\x5b\xa7\x51\x8a\x9a\xec\x32\x3f\xff\x6d\xaf\xbc\xf7\x5e\xdb\x5e\x79\x1f\x78\x6d\x7b\xe5\x6d\x7b\xe5\x2d\x5f\x0f\x26\xc9\x72\xdb\x2b\xef\xf3\x42\x39\xde\xf6\xca\xbb\xff\xb5\x71\x70\xe3\x6d\xaf\xbc\xd5\xd7\xb6\x57\xde\xb6\x57\xde\x87\x5d\xdb\x5e\x79\xf7\xbf\x1e\x1c\x2c\xfb\xb6\x57\xde\xbd\xae\x6d\xaf\xbc\xe5\x6b\xdb\x2b\xef\x8e\x6b\xdb\x2b\xef\x8e\x6b\xdb\x2b\x6f\xf9\xda\xf6\xca\xbb\xdf\xb5\xed\x95\xb7\xed\x95\xf7\x59\xb7\x10\x61\xdb\x5e\x79\x74\x6d\x7b\xe5\x7d\x16\x8d\x12\xd8\xb6\x57\xde\x07\x5d\xdb\x5e\x79\xdb\x5e\x79\xeb\x5c\xdb\x5e\x79\x9f\x8b\x53\x66\xdb\x2b\x6f\xdb\x2b\xef\xb7\xa3\xe8\x6e\x7b\xe5\x6d\x7b\xe5\x6d\x7b\xe5\x6d\x7b\xe5\xbd\x77\x16\xdb\x5e\x79\x9f\x83\x09\x68\x6c\x2e\xd7\x82\xd8\xfc\x10\x34\x20\x4a\xe3\x8e\x8a\xef\xaf\x9a\xe9\x54\xd4\xc0\xb9\xe0\xc9\x4b\x69\x55\x2d\xf0\x61\x37\x94\x2b\xec\x08\x80\x85\xa8\xe2\xe5\x8e\x9f\x53\xb5\x3f\x40\x61\xd6\xc2\x00\x16\x8e\x62\x27\xaf\x9e\xaf\x80\x1e\x5a\x3b\xdf\x70\xdd\xec\x69\x98\xf3\x2b\xb5\x5e\x14\xfe\x0e\x82\xaf\xaa\xc0\x22\xba\x67\x85\x36\x94\xfa\x0e\xc4\xca\xe6\x5c\x29\xe1\xed\x3d\x69\xc1\x8f\x72\x25\x84\x62\xba\x12\x14\x03\xe7\xcc\x48\x35\x2b\x04\xe3\xd6\xf2\x6c\x3e\x71\x4f\x52\x9e\xd8\x6d\x9e\x3a\x7d\x62\x6c\x2d\x78\x89\x44\xaf\x45\xc9\x25\x0e\xc5\x78\x56\x6b\x63\x58\xd9\x14\x56\x56\x61\x30\x66\x04\x94\xa4\xa0\xa0\x0a\xc4\x80\x7c\xb9\x36\xb9\x7d\xd4\x3e\x8d\xa6\xa5\x55\x17\x09\x79\x04\x7d\x05\xca\xca\x2e\x42\x86\xaf\x60\x53\x59\x1b\xcb\xb2\x42\x82\xb4\x86\x27\x62\x71\x32\x8c\x17\xf0\xc5\x15\xcd\xd4\xd0\x54\x55\x0e\x6a\x6b\x65\x0d\xe6\xcb\xb6\x03\xd2\x50\xb9\x34\xa4\xe6\x9b\x11\xe3\x1e\x98\x0c\x09\xed\x67\x0a\xa4\xf6\x92\x05\x47\xa7\x8f\xa2\xe1\x62\x80\xe6\x90\x50\xdc\x6e\x74\x40\x1e\xf3\x9b\x73\x94\xd4\x43\xb4\x0a\x05\xb5\xcf\xe9\x1c\x03\x58\x00\x25\x6e\xdc\x1e\x10\x99\x70\xf2\x95\xdf\xb1\xeb\x3f\xf9\xa6\x8f\x84\xe2\x4b\x61\x0c\x9f\x89\xf3\x35\x03\x0d\x77\x59\x64\x10\x6b\x68\x17\x06\xb6\x42\x91\xb4\x28\x8c\xf3\x36\x53\x35\x88\x95\x38\xa7\xa0\xfc\xdc\xd6\xd2\x5a\x01\x8b\x0a\x10\x76\x10\x11\xed\x56\xb8\xef\x76\xb2\x3f\x5f\xfa\x41\xda\x1f\x3b\xa6\xae\x72\xcc\xc5\xbc\x12\xec\xaa\x96\x62\xca\xa6\x12\x12\x3c\x21\xe5\x72\x84\x88\x46\x1c\xbd\x00\xc6\x38\x7b\x57\x2b\xaf\xcb\xfa\x79\x4d\xd8\xf7\x34\x31\x5b\x37\x2a\xe3\x11\x58\x2c\xd4\x68\xca\x29\x9b\x41\xca\x26\x69\x8b\xff\xf1\xe4\xbf\xfe\xcc\xae\x16\x4e\xa4\x81\x66\x65\xb5\xe5\x45\x78\xc9\x42\xa8\x99\xa3\x15\x1e\xcf\xb4\xca\x30\x50\x00\xba\x02\xe1\xc4\x9f\x7e\x71\x7d\x95\xca\xd8\x83\x5c\xdc\x1c\x44\xf4\x1b\x17\x7a\xb6\xaa\x8f\xde\x27\x87\x10\x5f\xb1\xcd\x86\xe9\x8a\xe0\xa1\xb5\xd8\x5c\xdf\xa2\xae\xbf\x62\xf7\xb4\x05\x4b\x95\xae\x9a\x02\x9d\xce\xcf\x43\x7d\x6e\x63\xc4\x72\x15\xdd\xca\x73\x01\x6e\x52\x1a\xa2\x0b\x4c\x8e\x99\xba\xfe\x91\x9a\xaa\x4e\xc8\x91\x17\x10\xb6\xc0\x10\x7a\xce\x8b\xe2\x8a\x67\xd7\x97\xfa\x85\x9e\x99\x57\xea\xa4\xae\x75\x9d\xce\xa5\xe0\x8e\x5b\xce\x1b\x75\x8d\x9d\x60\x02\x06\x81\x9e\x51\x28\xd7\x97\x38\xac\x7a\x61\x2c\x48\xf7\x4c\x78\xb9\x31\x82\x78\x27\x5b\x5b\x47\x31\xe1\x9e\x8f\x3b\x32\x1e\xdf\xc4\x9b\xed\x8b\x27\xff\xf1\x17\xdc\xba\x4c\xd7\xec\x2f\x4f\x20\x9b\xdb\x8c\xf0\x10\x03\x6f\x73\x82\xa2\xe4\x45\xe1\xcc\x86\x78\x53\x3a\x42\xaf\xda\x84\x9f\x7c\x0f\xda\xfe\xdb\xed\x83\x55\xa9\xcb\xcb\x7f\x60\x1f\x0d\x6b\x44\x31\x1d\x61\xbd\x52\x30\x6b\x76\x41\x30\xec\x12\xf7\x81\xa2\xb1\x07\xa0\x00\xdd\xe8\xa2\x29\xc5\xb1\xb8\x91\x43\x34\xfb\x4c\x46\xf3\xa6\x7e\x21\x0d\x94\x86\x5d\x15\x3a\xbb\x66\x39\x7d\x19\xe5\xb7\x74\xa1\xb6\x1f\x6f\xdf\xe6\xf8\xfd\x93\xdc\x9e\x92\x57\x55\xa8\x1e\xaa\xf9\x6d\x42\x0c\x38\x93\x50\xf0\xff\xf8\xfb\x36\xe3\x1b\x39\xbe\xb9\xf6\x10\x6b\x27\x04\xf5\xf7\x51\xb7\xb3\x1f\xa8\x3b\x67\x3b\xa0\x3f\x0d\x15\xfc\x1b\xeb\x4d\x96\xea\x25\x43\xc9\x5d\xd8\x18\xa8\x00\xb8\xed\x03\x2c\x79\x63\xfd\x85\x59\xef\xc4\xa6\x84\x2e\xea\x3d\x2d\x2e\x39\xab\x44\x6d\xa4\x71\x72\xf9\x3b\x38\x50\xd8\xdb\xb4\x75\x01\x6e\x86\x08\x78\xb8\x01\x9f\xb8\x3f\xa7\x3c\xd7\x39\x0d\x08\xac\x10\xb1\x99\x57\xa8\xb5\xa9\x56\x3b\xa0\x40\xdd\x34\xab\xfc\xae\xa5\x66\xca\x29\xdd\x27\x81\x55\xe2\x5d\x9f\x13\x83\x84\xf7\x7b\xac\xfc\x31\x4c\x7e\x20\x36\x00\x8c\x91\x16\x37\xe5\x84\x89\xf1\x88\x07\x25\x52\xe9\xc9\x0e\x9c\x30\x8c\x82\xbb\x33\x41\x3f\x65\xbb\xcf\x76\x37\xca\x24\x91\x44\xb5\xae\xf8\xac\x57\xb3\x9c\x0e\xa5\xba\xc3\xc6\x50\x0d\xce\x0c\x82\xef\x03\xae\x19\xdc\x25\xf2\x16\x89\x06\x70\x86\x30\x3a\xea\x09\xec\x7b\xbb\x81\x6e\x7b\xcb\x17\x8c\xd7\xba\x51\x39\xf9\x97\x82\x83\xef\x65\xe7\xc1\x67\x5a\x89\xb6\x89\x70\xda\x7e\x1b\x3c\xfa\x52\xb1\xa7\x93\xa7\x4f\x3e\x17\x49\x05\x6f\xd8\x91\x54\x67\x41\x52\x21\x7f\xda\xe8\xbb\x7a\x48\xf9\x81\xde\xf7\x25\xb9\x58\x5a\xc4\x78\xe9\xf1\xa8\xe1\xa3\xdb\x5a\x5a\x11\xf5\x0a\xdd\x03\xc3\xc5\xd9\x87\x11\x5e\xc3\xfe\xaa\x56\x0d\x3d\x89\xd4\x0f\x20\xc3\x34\x57\x1f\x91\x6f\x11\x83\x82\xe3\xb6\xca\xc3\x65\xde\xc3\xc2\x62\x42\xed\xec\xb0\x3d\xbc\x73\x17\x4b\x9d\xf7\x37\xba\xb5\x88\x68\x27\xef\xaa\x1e\x20\x96\x9d\xaa\xfa\x8a\x83\x0f\xae\x1a\x90\x82\x7f\x17\x73\x7e\x23\xa0\xc4\x5b\x16\xbc\x2e\x20\xe6\x78\x81\x73\x67\x57\x8d\x65\x42\xdd\xc8\x5a\xab\x52\x28\xcb\x20\x07\xfe\xaa\x10\x71\xab\xfc\xdf\xef\x7d\x77\xf8\x1a\x12\x1a\xf6\x09\xac\x82\x66\xd9\x18\xdf\x44\x32\x9e\x49\x34\xdc\xaf\x2e\x9f\x9f\x87\xa3\x21\xf0\x5c\x3f\x2f\xf7\x9c\xb2\xb1\xd8\x29\x52\xbc\xcb\x8a\xc6\xc8\x9b\x4d\x71\x12\xaa\xbd\x3f\x96\x6b\xad\x73\x07\x07\xa0\x25\xd4\x52\x49\x3f\xb8\xd6\x57\x94\x01\x2e\x05\x4c\x76\x4d\x28\x0d\x8c\x63\xe0\xe4\x7a\x22\x94\x0d\x4c\x9f\xf3\x90\x86\x4b\x2a\x04\x20\xca\x6c\xd6\x09\xa5\x74\x2e\xee\x8f\xc7\x93\xa6\xf7\xd0\x10\x18\x33\x8f\xea\x04\x4d\x36\x17\x79\x53\x50\x73\x7f\x40\x1f\x75\xe6\x03\x6f\x71\xec\x14\xb4\xe1\x39\x9d\x06\xb0\x03\x35\x06\xe7\x20\xd2\xdc\xff\xbe\xf6\xd0\x08\xfe\x03\xd3\x19\x11\x8c\x52\x37\xd6\x88\x71\x63\x9a\x12\x8f\x04\x76\x18\x98\x4a\x6b\x42\xaf\x6a\xaf\x1d\xbb\x83\x71\xcf\xb2\xad\x1e\xf4\xbd\x10\x05\x6c\xae\x1e\x34\xde\x3d\x8b\xc6\x41\x42\x1b\xff\x17\x6d\x38\x4a\x98\x80\x68\x5b\xc8\xe3\xd4\xe0\x25\x9d\x4a\xe8\x52\xc4\x89\xde\x17\x2b\x7e\x89\xaa\x03\xde\x01\xc0\x31\xfc\x4a\x14\xa6\x3b\xd0\x55\xbb\x28\x04\xfb\x49\x84\xef\xd9\x4e\x9b\x1b\x23\x67\x0a\x1a\x54\xba\xd1\xee\xd9\x8a\x72\x6d\x9b\x69\x88\x76\xd9\x6b\x73\xb5\x24\x0b\xab\xe4\xd5\x98\xac\x5e\xab\x4b\x99\xdd\x63\x24\x7d\xcf\x29\x77\x2a\xb2\x93\x4a\xdf\x57\x17\x4b\x1e\x1f\x13\x79\x35\x26\xec\x42\x97\x94\xe2\xa4\xa2\x36\x59\xbe\x5b\xa9\x93\x18\xb5\x70\xb4\x80\xc4\x23\xd9\x46\xe3\xa1\xad\x8c\xaf\xb5\x86\xe7\x04\x95\x9c\xc2\xb8\x00\xe0\x48\xdd\x52\x43\x3f\x63\x1a\xd7\xef\x6d\x48\x81\x79\xc6\xc6\x9d\xd6\xaf\x93\x14\x76\xf3\xfd\xcf\xa1\x7b\x47\xbf\xfe\x14\xcc\xcf\x01\x40\xbb\xd3\xe3\xf8\xcf\xd3\xf3\xa3\xf8\xcf\x37\xc6\x51\x89\x3e\xe8\x4e\x2d\x6d\x7b\x70\xf7\x5d\x31\x00\xf5\x5d\x77\x4d\xb1\x73\xd0\xaf\x7c\x7d\x34\xe7\xca\x07\xb2\xee\x7c\xde\xc2\x64\xb6\x68\xa7\x33\xe7\xb5\x20\x64\x39\xc7\xc9\x4d\xc5\xb3\x3b\x67\x11\x60\xdc\xde\x7b\xc3\x7b\x67\x6a\x9a\xca\x37\xee\x2f\xe0\xc6\x30\x93\x76\xdb\xfd\xf0\x87\x1f\x3f\x90\x98\xbf\xf6\x9b\x55\xa4\x7d\xff\x6f\x92\xbe\x78\x1f\xf4\x8b\xd5\x5d\xb3\x3e\xec\xb7\x51\xe3\xb9\x0f\xba\xff\xae\xa6\xb7\x1f\xfa\x34\xdf\x2c\xed\xc3\x5e\xac\xbb\xda\x1f\x70\x3b\x2c\xe9\xfd\x30\x11\xd6\x66\xe1\xeb\xba\xbb\xd6\x70\x52\xad\xef\x9c\x5a\xcf\xd8\xef\x28\x00\x77\x80\x81\x12\x00\x9b\x9a\xb1\x04\x56\xaa\xa9\x6b\xa1\xac\xd3\x99\x1a\xc8\x74\xf4\x6d\xf1\x91\x49\x03\xb3\x05\x1e\xee\xe1\xdc\xd9\x61\x90\x85\x94\x01\x57\x72\x68\xbd\x1f\xc1\x3d\x4f\x1b\x48\x68\x04\xd6\x8f\x30\x75\x5a\xb9\x79\x3c\x5b\x85\xc3\xa1\x2b\xa1\xda\xbd\x72\x40\x5a\xf3\xd8\xed\xa1\x04\x99\x03\x15\x81\x49\x99\xff\xae\x2a\xb8\x9d\xea\xba\x1c\x7b\xf5\x70\x9c\x28\x09\xec\x08\x52\x6b\x8c\xb7\xaf\x30\xbf\x15\xd1\x36\x55\x5e\x88\x48\x9a\x87\x57\x55\x39\x82\x53\xb1\x46\xd5\x22\xd3\x33\x05\x95\xc7\xf4\xad\x4c\xda\xfe\x73\xe3\x24\x29\x53\x4d\x51\xdc\x3f\x0f\x61\x4d\x25\x40\xdf\x88\x7a\x2e\xf8\x3d\x37\x6f\x27\xa5\x85\xc6\x68\x9b\x7b\x1a\x42\x2e\x20\x95\xd7\x3f\xc4\xa9\xc6\x3a\x83\xda\x36\xea\xbb\x4f\x89\xcb\x1c\x04\x3a\x20\xa4\xb3\x99\xbc\x11\xca\x83\x76\x1f\x15\x3c\x34\xa8\x46\x22\x05\xe0\xf0\xc6\xea\x90\xb4\xc0\xb8\x8d\xa0\x83\x21\xc7\x89\xe2\xa5\xf1\x38\xd1\x2d\xd4\xde\xba\xf0\xad\xc4\x3e\xe4\x4e\xc8\x1b\xc0\xde\x8a\xa3\xf6\x95\x4a\xef\x5b\x4d\x30\x37\x59\x06\xd9\x2d\xde\x14\xa1\xac\x96\x5f\x7f\x04\xa5\xa4\x39\x1e\xb4\x6a\x18\x52\x97\x03\x36\x6c\x4b\xd8\xc2\xb1\xff\x05\x2a\x39\xa7\xd3\xf4\x49\x32\x41\xb5\x87\xda\x27\x50\xbf\x5b\x7b\xf0\x5c\xe7\x4e\x0b\x1b\xb1\xb0\x94\x71\x77\x6f\x8a\xb7\xe0\x99\x8c\x0e\x23\x2a\x69\x75\x2d\x4c\xa5\x11\x5c\x3f\x7e\xec\x28\xf2\x7f\x49\x9b\x24\xdb\x61\x9b\xb4\x70\x34\x10\xb7\xed\xdf\xa2\xd6\x2b\x75\xf8\x99\xb4\x93\xeb\xbf\x80\x02\x2f\xd4\x9c\xab\x0c\x6d\xa7\x83\x6b\x51\x99\x03\x23\x67\xa8\xaf\xff\xf9\x2f\x7f\x01\xe5\xdd\x93\xe4\xe0\xf5\xc9\xe1\xf1\xcb\x93\x49\x99\x3f\x22\x4d\xbe\xe2\xd6\x8a\x5a\x3d\x63\xff\xb3\xf7\xf6\x8f\xbf\x8c\xf7\xbf\xda\xdb\xfb\xe1\xc9\xf8\xbf\x7e\xfc\xe3\xde\xdb\x09\xfc\xe3\x0f\xfb\x5f\xed\xff\xe2\xff\xf8\xe3\xfe\xfe\xde\xde\x0f\xdf\xbe\xfc\xfa\xf2\xfc\xe4\x47\xb9\xff\xcb\x0f\xaa\x29\xaf\xf1\xaf\x5f\xf6\x7e\x10\x27\x3f\x7e\xe0\x20\xfb\xfb\x5f\xfd\xfe\x9e\x13\x5d\xb3\x2e\xa5\x6f\x2d\x4a\xaf\xfa\x93\x01\x6b\x4e\xaa\x5a\x88\x12\xd8\xdf\x3a\xd9\x5a\xa9\x97\xb4\x33\x94\x17\xb0\xf4\x97\xe3\x89\xfe\x69\x6a\xe6\xd8\xa4\x41\xd6\x59\xe8\x5b\xc8\xb0\x94\xda\x29\x3f\x13\xf6\x0a\xe4\x20\x3b\x13\x37\xa2\x1e\xf9\x51\x5f\xb8\x9b\xce\xc3\x3d\xb1\x1b\x6e\xd5\x1d\x6b\xe6\xf8\xaf\xb9\x26\x7e\xee\x3d\x88\x87\x8d\x41\x68\xf2\xc0\x9f\x26\xec\x3b\x5e\x4b\xdd\x18\xd2\x45\x00\x3f\x57\x2b\x90\x49\x98\x42\x16\x24\x09\x78\x25\x28\xc0\x13\x06\x09\x95\x61\x3e\xc6\x13\x68\x73\x18\xf8\xf5\xd1\x6a\x91\x20\xad\x5b\xa9\x1b\xff\xa8\xda\xa7\xba\x62\xa3\x84\xe8\xc9\x28\x0c\x56\xf2\x7f\x2f\xd1\x4c\x3c\x51\x18\xc6\xcf\x03\x78\xeb\x19\x21\x9b\x08\x36\x97\x33\x9f\x50\x0d\xef\x8f\xe6\x6b\xf4\x69\xd8\x21\x6b\x2c\xe9\x3a\xc7\x74\xdd\xbc\xfe\xaa\xfb\x7e\x3d\xb6\x45\x8a\xb4\x1c\x83\x35\xfb\x8a\xa2\xf6\xdc\xec\xe0\x3e\x01\x21\x32\xce\x6a\x69\x65\xc6\x8b\x1d\x10\x4e\xfe\xab\xac\x68\x9c\x9e\x18\x7f\x5b\x0b\x66\x6f\x35\x3e\x85\x17\xec\x5a\x2c\x6e\x75\x9d\x7b\xf9\xec\x9f\xd8\xae\x85\xb1\xfe\x91\x52\xd0\x01\x46\x37\x43\x5d\x8a\x9a\x5d\x09\xef\x41\xef\xdc\xbc\x98\xb0\xc3\xd0\x32\x46\xc5\x45\x86\x11\xfe\x1b\xe8\x08\xa8\x45\x25\x9b\x84\x84\x98\x7f\x1a\xb7\x04\x88\xb3\xda\xbb\xec\x14\xb0\x70\x0a\xbc\xf4\xf7\xee\x65\x5d\x53\x95\x13\x9c\x8e\x1a\x6b\xb4\xb4\xff\xfa\x93\x70\x0b\xa7\xdf\x48\x25\x8c\xf9\xda\x2d\x65\x1f\x75\x35\xdd\x1d\x1c\xd4\x12\x1a\x1b\x2a\xa5\xda\x94\x62\xe1\x8e\x14\xc6\x88\x1d\x1b\xd6\x79\x7b\xe7\x84\x1d\xc2\x07\x90\x13\xef\x34\x2f\xa8\xa2\x73\x83\x49\x6b\xba\xdd\xdb\xf1\x8e\xc3\xb3\x63\x9f\xbb\x8c\x9a\x82\x49\x81\xd4\x51\x65\x4e\x67\x02\x9a\x1e\x65\xd0\x8a\x9f\x1b\x0e\x8d\x68\x77\x2e\xeb\x46\xec\xac\xa7\x2a\x21\x44\xff\xc1\x9f\xfe\xf2\x04\xb4\xa5\xf0\xbc\x31\x3c\x6f\x1d\x55\xe9\xfe\x39\x32\x6b\x65\xc7\x74\x13\x83\x5e\xc7\xfb\xc1\x13\xdc\xdb\x1d\x14\xb4\x82\xda\x5e\x58\xa6\x40\xf3\xb5\x5c\xab\x6b\xe5\xc2\xac\x9f\x05\x33\x6e\xa7\x7b\x79\xff\x26\x61\x7d\x12\x58\x92\xe7\x0e\x11\xe5\x6a\x47\xc3\x55\x31\xb8\x24\xe1\x39\x91\x67\x17\x7b\x60\xd0\xc7\x90\x0e\x0b\x8c\x0b\xa2\x02\xc0\x1e\xd7\xec\x98\xb5\x36\xbf\x41\xe3\x15\xd2\xea\x7a\xf9\xb7\x5f\x27\x23\x11\xe7\xf6\xa2\xa2\xf3\x65\xa8\x21\xa7\x84\x69\x5f\x9b\x03\xe0\x53\x01\x35\xc6\xc3\xfc\x4b\x13\x77\xfc\x80\xca\x1c\xd4\x0a\xfc\xe4\x4d\x94\x1c\x99\x0b\xc6\x6f\xb8\x2c\x20\xae\x0b\x26\x9d\x36\x89\x93\x1d\x27\x94\x69\x65\x9a\x12\x9e\x51\x3a\xe9\x82\x32\xe3\xad\x6a\x6b\x52\x1d\x9b\xab\xe6\xef\xaf\x4a\x75\x33\x3c\x5e\x28\x5e\xca\xcc\xbf\xe1\x61\xe1\xfb\xa7\x75\xea\x52\xfd\xd8\xc1\x4d\x2e\xcb\xb2\xb1\x6e\x9a\xf7\x44\x35\xdd\x30\x3f\x8a\x16\x32\x8e\x9b\x8b\x77\x3c\xb3\xc5\x02\x1c\x55\xe9\x4d\x76\x5e\xeb\x66\x36\x67\x9c\xc1\xdf\x17\xf0\xd5\x84\x9d\x5a\x67\x4b\x42\xcf\x73\x82\x6b\x90\x16\xe5\x77\xa3\xe4\xcf\x8d\x28\x16\x4c\x42\xdf\x9d\x10\x33\x49\x87\x8d\xd0\xe3\xcf\x9d\x1a\x7b\xd4\x2e\x31\x6a\x01\x42\xe4\x1e\xf2\x80\x4c\xfb\x3b\x26\x8f\x76\x3b\x68\x0f\x4e\xe0\xf3\xfb\x27\xf1\x6c\x88\x7f\xae\x91\xfd\xd7\x87\x6d\xae\x9b\x49\xb5\x8c\xc5\xb6\x7a\x85\x65\x14\x3e\xce\xba\x6b\x0c\xa6\x4a\x9b\x80\x05\xfd\x0e\x8f\xcf\x2e\x7e\x7a\x71\xf8\xf7\x93\x17\x9f\xbc\x96\x04\x67\xd9\x9b\x18\x78\x16\xa2\x9c\x57\xea\x13\x16\x99\x6c\xc9\x9e\x5d\xff\x3d\x37\xd6\x84\x23\x11\x30\x7d\xfa\x11\xa5\xed\x90\xbb\xa3\x76\x1d\xf6\xbc\x73\xd8\xc9\x48\x20\x39\x0c\xa0\x96\x2a\xc4\xdf\x78\x9b\xe6\xd0\xaf\xec\xbf\x47\x86\x55\x42\xa7\x4b\x51\x56\xce\x3e\x1e\x8c\x5e\xa9\x74\x8e\x87\xff\x15\xc2\xf9\x5b\x3f\x9c\x80\x28\xe8\x04\xb3\xfe\x97\x71\xd2\x0e\xe4\x9d\xa2\xb3\x97\x33\x25\x6e\xd3\x87\xf9\x94\x1e\xff\x8b\x2b\xdd\x28\x6a\x2d\xef\x07\xff\x1e\x51\x3c\x28\x27\x05\x10\xc2\x0b\x61\xbd\x75\x97\xae\x39\x55\x9b\x63\xa3\x28\xba\x8f\xba\xac\x6a\x84\x4d\xf5\x6a\x07\x1e\x43\xf7\x89\xb3\x94\xb4\x9a\x79\x18\x90\x99\x50\xa2\x06\x05\x25\x38\x58\x46\x4b\x2f\x04\xa8\x69\x9c\x98\x1a\x8e\xeb\xb3\x39\xde\xfb\x7a\xb5\xc8\x74\x9d\xa3\x55\xe4\x5e\x0e\x0d\xa0\x49\xb2\x13\x2e\xe0\x33\x61\xde\xa7\x3f\x50\xfb\x0f\xa8\x20\x9f\x75\x95\xa1\x50\x45\x90\x38\xb0\x13\x3a\x45\x35\x57\xb5\x2e\x58\x55\x70\x25\xa8\x0c\x3d\x18\xdd\xcb\xac\x68\x5d\x28\xf6\x61\xd2\x38\x9c\xe6\x0c\xb9\x1c\xd7\x62\x71\x6f\xce\xb4\x86\xe4\x5c\x7e\x38\xbe\x47\xc9\xab\xfb\x69\xdb\x4e\x7b\xed\xed\x4d\xdd\x7d\x8d\x03\xb1\xaa\x75\x9f\x2e\xd5\x0b\x87\x7c\x4a\x38\x38\xe4\x38\x3d\x04\xf0\x85\x11\x7b\xa5\x9e\x63\x35\xea\x08\x7d\xa9\xd0\x03\xcf\xe8\x92\xaa\x60\xdf\x59\x33\x62\x90\xf1\xcb\x99\x69\xae\x8c\xa0\x86\x6e\x4e\x97\xa6\xa0\x1e\x45\x2d\x2b\x51\x97\xd2\xc6\xd9\xab\x6e\xcb\xe1\x63\x06\x85\xf5\x38\xf8\x1d\x51\x6f\x8c\x2f\xbd\x8e\x11\x7f\x7f\xf3\x28\x8a\xf4\xf4\xf4\xd6\xed\xbe\xee\x8c\x95\x98\x8a\x49\x24\x2b\xe5\xb5\x90\xf5\x85\xee\x0e\x36\xab\x75\x53\x79\x3e\x92\xb6\xee\x6d\xfb\xf0\x79\x5e\x89\x2e\xb0\x74\xe8\xc0\xec\xc0\xe0\x14\x2d\xef\xcf\x9d\xca\x65\x4c\xeb\x25\x43\xd4\x02\x8c\xf8\xd5\x8d\xf2\x6d\x6e\x05\xb8\xc9\xa2\xdc\xc1\x9d\x42\xcc\x78\xb6\xd8\x49\x9f\xb3\x2a\x53\x13\xad\x2a\x59\x62\xeb\x23\x7c\x5e\x5b\x83\x0c\xa5\xca\x60\x35\xa2\x6d\x8c\xa6\x80\xa1\x29\x7a\x17\x9d\x07\xd1\xc0\x48\x74\xdd\x23\x92\xf6\xa7\xbf\xfc\x69\xec\x63\xe5\x30\x95\x4f\xb2\xa1\x42\xa6\xe5\xa0\xbe\xdf\x64\xcd\x9c\xb0\x93\xa6\x82\xf5\x05\xcf\x69\xeb\x7e\x0b\x4f\x7f\x9f\x7b\x74\xf5\x20\x7e\x01\xda\x21\x3e\x21\xb9\xa4\x9a\xf5\xf5\x87\xee\x5c\xa4\x43\xd1\x6e\xd4\x15\x77\x42\xdb\xd7\x25\x13\x6f\xc3\x94\xd6\x88\xc4\x44\x14\x28\xd4\x6d\xe7\xd4\x72\x57\xb7\x1c\xcb\xe3\x3b\x02\x47\x27\x25\x10\xd7\x58\xbe\xf0\xa7\x3b\x9d\x16\xe0\x75\x5a\x11\x2a\x72\xda\xc4\xdc\x70\x1c\xb9\x75\x9a\x55\x37\xed\x57\x04\xdd\xab\xfb\x9e\x99\x7b\x4b\xc7\xc9\x29\xcc\xcd\x2d\xba\x0a\x41\xb2\x53\x1a\x01\xc2\xaf\x80\x4a\x52\xea\x1b\xc8\x38\x75\xac\xdf\xa9\x00\xb7\xbc\xce\x4d\xea\x19\x21\xb4\x2e\xf2\x6e\x50\x60\xc8\x6b\x11\xe7\x3a\x6f\x67\x10\xbc\x97\xa9\x2f\xe4\x11\xf9\x3b\x52\x6a\xc2\xeb\xb7\xc9\x1d\xc0\xb9\xcf\x31\x61\x77\xd6\xf0\x3a\x07\xaf\x78\xbb\x11\xb6\x6e\x84\x55\xd7\x70\x6e\x04\xdf\xd0\xa8\x3d\x90\xe8\x6a\x3b\x01\x38\xa3\xf4\xd3\xa8\xdd\x70\x47\x55\x5f\xb7\xe5\xf5\x6f\x59\x91\xed\x64\x23\xf6\x51\x8b\xba\x8d\x75\xe7\xba\xc8\x41\x81\x19\x17\xe2\x46\x14\xe1\x51\x8e\xf1\xd5\xf2\xaa\xb1\x94\x6e\x96\xe9\xb2\x4c\xb1\xa7\xa8\x55\xff\x84\xb5\xe0\x43\x71\x2a\x00\x70\xe2\x09\x63\x17\x42\xc0\xda\xc5\xf3\x00\x0d\xda\x8b\x38\x12\x02\x7a\xca\x84\xdb\x48\xb8\x41\x3e\x51\x7a\xcd\xfa\x07\x8b\x92\x92\x7b\x66\x3f\xee\x1c\x86\x68\x6f\x9c\x3b\x8c\x8a\x27\xca\x45\x5e\x55\x85\xc4\x52\xf5\x8e\xcd\x01\x65\xd9\x6d\xf6\x3a\x55\x69\x39\x5a\x90\x07\x1f\x8e\xeb\xb7\xcd\x95\xb3\xc5\xc1\x15\x00\x16\x2b\xe6\x78\xdd\xba\x21\xe6\xb2\xc2\x53\xcd\x6d\xf8\x39\x98\xef\xee\xeb\x18\xc2\xf2\x99\x93\x48\x4f\xd1\x9a\xd7\xb7\x90\x5d\xf7\xf5\xe9\x71\xd0\x5d\xdc\x5d\xcf\x2f\x30\x35\xfa\x0b\xbc\xcb\x08\x3b\x93\x39\xbb\xc2\x02\x18\x27\x09\xf7\x94\xb8\xc5\x92\x7a\xf2\x49\x84\xf8\xe4\x8d\x2f\x35\xc7\xd1\xc2\xc3\x69\xc8\x7d\xf6\x25\xf9\x11\x9c\xf1\x83\xd9\x0d\x57\x92\x4a\x6e\x5f\xbd\xde\xf5\x69\x7f\xb7\xe3\xfa\x76\x3c\x1e\x8f\x29\x4f\x1e\xb4\xe7\x51\x42\x83\x20\xd5\x4b\x9d\xcb\xe9\xa2\x43\x09\xb7\xcd\xdb\x47\xc0\x8e\xe4\x6a\x41\xb3\x9b\xb0\x33\x0d\xb1\x77\x6e\xe3\x2c\x8a\xb6\x2d\xb0\x7b\x45\x08\xd7\x42\x36\xb1\x36\x13\x45\xee\x1e\x9f\x89\x7a\x7f\x0b\xbe\x5f\x5a\x53\x1f\x58\xcb\x15\x29\xf7\x7d\xf3\x7c\x57\x65\xf1\xfb\xa8\x55\xe8\x41\xa7\xa7\xb8\x49\x01\x85\xe0\x8e\x85\xf1\x72\x88\x76\x0d\x45\xaf\x30\xdb\x41\xbc\xab\x34\xf6\x6d\x02\x4f\xf6\xb9\xce\x97\xd3\x3c\x51\xd9\xaa\x2a\x2c\x56\x4c\x4e\x0d\x19\x7a\x98\x59\xec\x89\xc0\xae\xb8\x1b\x32\x4c\x67\xaf\xb3\x4f\xf6\x21\xb8\x02\x43\x83\xbc\x53\x9a\x1a\xeb\x33\xad\x98\xa8\xe6\xa2\x14\x35\x2f\xd2\x07\x11\xda\xd9\x33\xc7\x6e\x6b\xb7\x4b\x31\x95\xb2\xe4\x15\x72\x5b\x60\x9e\xb9\xac\x01\x35\x56\x26\x29\xce\x3b\xaf\xd4\x6b\xad\xed\x4b\x69\xc0\xa6\xa4\xa4\x12\xf4\x00\xec\xac\x32\x34\xfc\x77\x6d\xe9\x78\xdf\x9d\xfc\xc9\xf2\x88\x99\xef\xae\x3f\x04\xaf\x75\x1c\xc4\x31\xad\xfb\x36\xd0\x7f\x43\x60\xc8\x60\x08\x7b\xa1\x15\x72\xda\x56\xb5\xc7\x5f\xea\x8d\xff\x89\x9b\xe3\x93\x3f\x94\xdb\x04\x75\xbc\xe7\xa2\x3f\x22\xee\x05\x5b\xe6\x4c\xc3\x39\xe9\xb9\x69\x4e\x97\x7b\xf2\xb7\x5b\x04\x74\x5c\xb7\x97\x38\xc4\x55\xb5\x1a\x43\x8f\xec\xc6\xf8\x04\xf0\xda\xa7\xce\x25\x02\xe8\xc6\x1d\x69\x9f\xc8\x05\xa5\xb2\xce\x4a\xf4\x3b\xcc\xa9\x4e\xca\x34\xb5\x08\x95\x9e\xb9\x16\x6d\xbf\x6c\x6e\xd8\x9b\xd3\x63\xf6\x84\xed\x41\x95\x73\x40\xba\x0b\xb1\xfa\x6e\x29\xee\xd4\x0f\x91\xba\x94\x08\x58\x53\x69\xe4\x45\x34\x27\xc7\x5e\xbd\x18\xa6\x06\x25\xd0\x31\xe6\xe1\xed\xf1\x75\xf7\xe3\x7a\x58\x06\xa1\x5a\x68\x00\x1e\xf4\x66\x0d\x1e\x14\x2b\xd6\x6e\x7b\xa5\xb4\xc2\x3d\x54\x0a\xcb\x01\xb4\x15\x79\x93\xbf\xe1\x41\xae\xde\x6f\x9d\x43\xa5\x05\x7f\x03\x6c\xaa\x8b\x13\x18\xd0\x87\x13\x48\x8d\x47\xdb\x21\x5f\xb6\x1d\x3c\x2f\xf8\x15\x2c\x00\x1f\xd3\x0b\x38\x8b\x35\x57\xb9\x2e\x97\x9e\xe6\x56\x13\x8c\xb7\x68\x35\xb7\xdb\xee\xae\xab\x57\x8a\x40\xbf\x04\x01\xb0\xf1\x07\x80\x10\x7b\x01\xbe\x02\x69\xc2\x4e\x40\xe7\x01\x14\xd7\x2f\x99\xad\xbd\x11\x26\x7b\xc7\xfb\x6b\x5d\xac\x19\xd8\x4f\xd3\x20\x74\x41\x60\x10\xfe\xb5\xdd\xc0\x0f\xf6\xad\xed\x9a\xe9\x96\x5d\xf6\xb2\xa8\x3a\x6f\x0d\xee\x9c\x87\xfa\xd6\xcd\x5a\x52\x9a\x75\xdf\x1a\x4a\x83\x93\xb7\x06\xb9\xfb\x10\xdf\x3a\xad\x04\x1f\x40\x98\xd0\x80\x4c\x53\x3d\x3a\x75\x64\xec\x82\xc5\xb6\x95\xa6\xe0\x84\x7a\x5c\x7c\xb4\x0f\x9c\x20\x16\x8c\x7d\x6a\xd6\xad\x33\x5e\x00\x68\xc3\xba\xeb\xcc\xba\x6b\xdd\x1d\x32\x2a\x6a\xe1\x6e\xb6\xf0\x59\x54\x9a\xc9\x11\xe9\x5a\xb7\x81\xf2\x4e\x50\x9c\xdc\x74\xf4\x4b\x9f\x39\xe8\xe4\x6f\x5b\x29\x1a\xff\xda\x6a\x00\x2a\x6a\x3b\xea\x71\x98\xa0\xc0\xb4\x99\x8a\xdb\xf9\x88\xd5\xa2\xc0\x26\x39\x74\xce\xae\xd1\x94\xda\x4d\xca\x4f\xfd\x8e\xf5\x8f\xf6\x49\xc1\xed\xc8\xa0\x65\x4c\x91\x75\x49\xc3\x76\x5e\xf8\x77\xdf\xa1\x7b\xce\x5e\x5d\xfa\xfb\x20\xbf\x23\x54\xc8\xac\x9b\x22\xfe\x50\xf8\xf7\x0e\xbe\x73\x58\x5a\x74\x72\x5d\x4b\x95\x53\x73\x99\x84\x72\xa1\x12\x1a\x55\x47\xef\x80\xf2\xac\x80\xd7\x02\x7c\xc1\x81\x7c\x6c\xbc\xf6\x5e\xa1\x0c\x06\x9f\xc7\x32\xbe\x43\x07\xf5\x2e\x17\xff\x90\xee\x30\x6f\x14\x6c\x04\x05\x30\x13\x4a\xaf\xb8\xcf\xbf\xcb\x7a\x39\x54\x7d\x38\xf3\x12\x1e\x48\x4f\xee\x7c\x18\x42\xe7\x33\x84\x17\x89\x34\xfc\xb6\xed\x07\x99\x8d\x60\x62\x4a\xd5\xd1\xcc\x47\xb0\x3a\x54\x56\xbc\x24\xbc\xb0\x8a\xad\xe4\xf5\x82\x7d\x7d\x7a\x4c\xb0\x35\xe4\x07\xdd\x8b\x43\xf4\xfb\x18\xc4\xc6\x40\x45\x29\xca\x2b\x74\x8e\x9a\xe5\x52\xee\x04\x14\x2c\xa4\xea\x35\x32\x7f\x8f\xbd\xdb\xb5\x4e\x94\x8e\x51\x10\xfc\xbb\xd7\x80\x8d\x40\xf6\x8d\x5a\xac\x56\xea\x3f\xca\x0c\xb1\x13\x9a\x75\x67\x05\x7d\xbd\xf2\x46\x8c\x98\xb8\x11\x8a\xaa\xd9\x16\x70\x87\x13\x7d\x52\x65\x45\x93\xfb\xc7\x01\xca\xbf\xb1\x1b\x93\x96\xeb\x61\x0f\xaf\x8d\x3c\xdc\xb7\xa7\x53\x2f\x1b\x1b\xb1\x80\x7a\x9e\xb8\x0b\x42\x14\x9a\xeb\x22\x67\x3c\x1c\xbf\x90\x8c\x9b\xfb\xe7\x60\x56\x58\x84\x2b\x36\x71\x96\x2b\x65\x5c\x35\xaa\x85\x2b\xf1\xf7\xef\x75\xf5\x29\xcf\xf1\xf6\x09\x64\xcf\xbb\xf5\x0a\xde\xa8\x6c\xfe\x5b\xd9\x32\x2b\xa8\x1f\xe2\x44\x9c\x5d\x8b\x5a\x89\x82\x55\xbc\xe6\xa5\x80\x46\x2f\xde\xbf\xf0\xe9\x73\xf5\xfb\x21\x52\xf7\x40\x93\x1e\xa3\xef\x63\x03\xe5\x05\x7d\xd0\x7d\x57\x26\x94\x70\x3f\x25\xec\x56\xb8\xd6\x32\xb2\x21\x0a\x02\x80\xa2\x83\xbc\x1a\xf6\x79\x7c\x18\xef\x96\x02\xc8\x0d\x60\x1a\x7e\x8f\x03\xb6\x48\x97\x3e\x0d\xe4\xbe\xbe\x46\xaf\x50\x2e\xe3\xcb\xef\x9a\x25\x3f\x5e\xda\x8c\xf3\x13\x07\x1a\xd6\xe6\xbb\x00\x46\xf5\xa8\xdc\x83\xb3\xd2\xf0\xa3\x5a\x40\x95\x18\x2f\x2e\x2a\x91\x0d\x60\x7f\x7c\xfd\xf2\xe2\x30\x1d\x14\x84\x12\x96\x5e\xcd\x05\x7c\x1f\xe1\x56\xdc\x8a\xab\xb9\xd6\xd7\x6c\x6f\x05\xf6\x56\x94\x4b\x65\xe4\xcc\x1c\xd0\xf6\x1e\xbb\x79\xef\x33\xa9\xa0\x49\x52\x10\xaa\xa1\xb9\x94\x7f\x48\x16\x66\x01\x6b\x45\x89\xd8\x24\x86\x97\xa7\x79\xd6\x2b\x5f\xad\x37\x4f\x5a\x5e\x8c\xf5\xeb\x93\x7e\x65\x41\xee\xc2\x60\x5b\x49\x35\xf4\x06\x6d\x84\x24\xe4\xab\x70\x1a\xf8\x00\x74\xf8\xa6\x1d\x2d\xc6\xf4\x97\xd3\xa4\xdd\x60\x6b\x46\x86\x48\xef\x2e\xb4\x3d\xa7\x9f\xee\xc6\x66\xc7\x61\x51\x20\xe7\x3f\xf7\xa5\xe7\xde\x55\xd6\xe6\x43\x86\x82\xae\x60\x39\x24\x33\x41\x16\xb5\xe7\x81\x83\x6d\x5c\x8c\x4d\xf9\x94\xa5\x7c\xe7\x9e\x12\xff\x2a\xc6\x86\x80\xf2\x24\x35\x5e\xfd\xf5\x3e\x94\x9e\x78\x63\x6a\xe4\xde\x36\xbe\x31\x6a\x6b\xa9\xe0\x8b\x33\xc4\x76\xc0\xf9\xc7\xe1\x1c\xea\x50\xd9\x67\x1f\xac\x8f\x2b\x1f\xe2\xb1\x03\x1d\x09\x88\xcb\xd2\x70\x4e\x28\x78\x31\xd7\x27\x4e\x0b\x36\xe4\x00\xb1\xda\x65\x59\xf6\xc9\x45\xe0\xa7\x3c\xeb\x46\xd4\x37\x32\x13\x87\x59\xa6\x1b\xd5\x2b\xd5\xf5\x58\xb8\x57\xe0\x56\xe4\x17\xc9\x98\xe8\xd6\xcf\xe1\x5b\xcc\x2c\xe7\x85\xe4\x88\x09\x9d\xde\x89\x88\x48\xed\x38\x10\x16\xe8\xcc\x90\xb6\x8c\xb1\x82\xaf\x97\xb6\xda\x93\x42\x7d\xeb\xa4\x96\xdf\x78\x95\x24\xe8\x50\x90\x22\x02\x4b\x35\x50\x1f\x56\x80\x66\xb9\xb9\x6e\x91\xb2\x05\x60\xc6\x84\xc3\x14\x7d\x4e\x2f\x3a\xe6\xf8\xd4\xb5\xd0\xb3\xd7\xa0\xae\x75\x7c\xcf\xbd\xfc\xa1\x79\xfe\xdf\xc7\x67\xfd\xca\x86\x42\x93\x60\x04\x23\x99\xd3\xd0\x41\xa5\x8d\x31\x14\x63\x2c\x29\xf7\xe4\x11\xab\x39\xf5\x3f\xa4\xde\xf7\x85\xe0\xe8\x7b\x60\x7b\x51\x99\x16\xf2\xf4\x36\x24\x8f\x9c\x9e\x5a\xd5\x97\x82\x2b\x13\xe1\x85\x09\x18\xda\x3b\xbf\xc2\x7c\x50\xab\xa5\xd5\x26\x2b\x7b\xcf\xbb\x6e\xd3\x3b\x8c\xad\x9b\xcc\xb2\xc6\x1a\xf7\x39\x3e\xdc\x33\xcc\x0f\x78\x7c\x2d\x66\xd2\xd8\x7a\xe1\x9b\xe8\x4f\xa3\x49\x90\xf7\x24\xdc\x72\x2d\x16\xec\x9b\x6f\x4f\xfe\xf1\xd3\x8b\x57\x47\x87\x2f\x7e\x7a\x79\x78\xf4\xcd\xe9\xd9\xc9\xdb\xb7\x17\xff\xb8\xb8\x3c\x79\xf9\xf6\xed\x11\xc2\xc1\x12\x76\xda\x85\xb0\x6f\xdf\xd2\x4e\x35\x6f\xdf\x5e\x66\x95\xac\xde\xbe\x3d\xf7\xbe\x02\x6c\x8f\xf9\xdf\xc7\x67\xc0\x3f\x11\xc2\x27\xe4\x56\x81\x68\x45\xa2\xc3\xbc\xe7\xdc\xb4\x99\x9c\x49\xb1\xe5\x1a\x2d\x55\xd6\x15\x77\x2b\xf1\xab\x7b\x1d\xf6\x39\x38\x4d\x7d\x5f\x6b\xef\xcd\x6c\x4b\xcb\xaf\x84\xbd\x15\x84\x39\xb5\x12\x31\x9d\x77\x0b\xc3\x29\xbb\x7b\x45\xef\x5c\x8f\x09\x73\x23\xc5\x2d\x02\x84\xca\x99\xe2\x45\xd4\xc0\x19\x30\xe8\x30\xca\xb2\x8c\xcb\x0e\x3a\x52\xa5\xf3\xd0\xac\xba\xe3\xdd\x5e\xf2\x6c\x27\x35\x94\x88\xbc\x2f\x72\x76\x7e\x7a\xcc\x9e\x4e\x50\xc9\x39\x3d\xc6\x46\x20\x2b\x61\xc1\xbd\x45\xe7\x04\x2a\x4a\xdf\x15\xa5\x0d\xed\x06\x58\x87\x19\xad\xb1\x03\x9a\xab\x5c\x97\xfc\xbe\x6d\xe9\x7f\xa5\x78\x71\xda\x14\xc5\x82\xfd\xdc\xf0\x02\x75\x80\x73\x9d\x2f\x73\xa6\x9d\xbf\xfa\x8f\xfe\x36\xf9\x6b\x98\xc7\xdf\x26\x7f\xf5\xe5\xfc\x40\xb6\xbf\x4d\xcc\x4d\x36\xf9\x2b\xa1\xd9\x31\xba\x69\x65\x22\xf2\x52\xa9\x2b\xa9\xb3\xf8\x1b\x04\x08\x00\x75\xf7\x93\xd4\x3a\x46\x8d\x7c\xbf\xae\x79\x26\xce\x45\x2d\x41\x65\xd2\x2a\xef\x53\xf9\xe8\xb7\x0c\xcb\x3d\xbe\xb3\x54\xcc\xe0\xb0\x81\x04\x4a\x88\x1c\x95\x44\x9a\x85\x60\x33\x37\x09\x58\x18\xd4\x02\x01\x44\x21\xab\x05\xc7\x7c\x76\x42\x54\xf0\xa0\xbd\x13\x72\x33\xf9\x18\xab\x53\xf8\x95\x98\x61\xa4\x94\xfc\xed\x18\x8d\x45\x2e\x8b\x40\x7b\x21\x06\x68\xac\xae\x98\x2c\x4b\x91\x3b\x05\xa8\x58\xb0\x1b\xc9\x91\xf3\x43\xc1\x24\x9e\xd3\x3d\xa5\x99\x06\xaf\x75\xa3\x24\x39\xb1\xe6\x8d\x65\xb9\xbe\x55\xfb\x6d\xab\x76\x7c\x80\x33\x56\x64\x31\x4a\xaa\x87\xe1\x95\x58\x05\x84\x4d\x61\x1c\xbc\xbe\x04\x33\x4c\x6e\x23\xdd\x63\x15\xf1\x10\x23\x01\xe1\x27\x3d\x07\xf1\x58\xcf\x6d\xed\x3d\x86\x66\xa0\xed\x7d\xd2\xac\x99\x5e\xca\xf3\x12\x4c\x6f\x43\x2e\x16\x0f\xe8\x7e\x3d\xd5\x75\x26\xaf\x8a\x05\x9b\xf3\xa2\x6d\xdc\x1c\xd3\x66\xc2\x2e\x84\x8d\x5f\xbf\xd0\x6a\x16\x0b\x6a\x04\xf1\x86\x32\x6f\xc1\x55\x53\xe1\xf3\x9c\x7c\x5b\xe8\xe6\x0e\x83\xe1\xcb\x27\xfe\x55\x37\x00\xab\x79\xaf\xf0\x8a\xd5\x85\xc0\xf5\xe9\x73\x52\x56\x16\x55\xef\x9a\x78\xf4\x75\x08\xb1\x89\xd2\x55\x8f\x72\x02\x3b\xe2\x32\xcc\x1f\x2c\x0d\x6b\x39\x54\x75\xbb\xd3\x8e\xdf\x40\x49\xdd\x82\x39\xa9\x45\x18\x5c\x31\x3c\x80\xad\x65\x55\x08\xf6\xd7\x6b\xb1\x18\x21\xfa\x2a\x2a\x21\x7f\x8b\x7a\x62\x05\xfc\x3a\x44\xc9\xd7\x35\xfb\xab\xff\xd7\xdf\x3e\x61\x19\x6c\x1f\x6f\x23\xbe\x54\xef\x08\xd1\x09\x96\xda\xa4\x70\xac\x48\x59\xaa\xc2\xb1\x1a\xc9\x35\x61\x27\x00\x7a\x80\x1a\x29\xf5\x05\x2a\x8a\xe4\x66\x43\x9a\x4d\x0a\xe5\x09\xee\x97\xa8\x04\xe7\x4c\x53\x9d\xb2\x00\x4c\xe4\xa9\xa8\xdb\x4f\x80\xc1\x9c\xe9\x93\x77\x22\x6b\xec\xa7\x84\x16\xc4\xeb\x5a\xf4\xef\xba\xfe\xad\x08\x78\xd1\x48\x1b\xa7\x85\x87\xf2\x87\xf6\x74\x46\x19\x70\xef\xa7\xed\xb5\x58\x98\x80\x88\x7f\x8d\xa3\x53\xa1\x7e\xd8\xbf\x5e\x90\x9d\xbc\x93\xc6\x9a\xff\xe5\x5b\xbe\x97\x57\x6d\xb3\x7d\x8e\xa9\x68\xed\xe8\x51\x37\x04\xf7\x27\x3c\xe6\x53\x13\xdc\xbf\x40\x6f\xaa\xbf\xf2\x94\x88\xfa\x1d\x70\xf7\x4e\xbb\x86\x72\xa0\xb4\x82\x6a\xb8\x18\x38\xbf\x4d\xcf\xc1\x1f\xe3\xfe\x44\x1a\x02\x5d\x4e\x9c\x92\x97\x8a\x19\xfa\x88\x6e\x92\x00\x01\x2b\x6f\x78\x21\x14\xf5\x11\x2a\xf2\x8c\xd7\x18\xca\x26\xf4\x67\x43\xad\xc8\x08\xf6\xd4\xc9\x38\xe2\x64\xed\x2a\x1b\x0a\x79\xf1\xda\xca\xac\x29\x78\xcd\xdc\x79\x9c\xe9\xfa\x9e\x20\xd1\x78\xf5\x5a\x93\x76\x8b\xae\xa5\xce\xe1\x95\xf2\xf7\xee\x88\xdd\xae\x14\xa4\xbd\x38\x93\x49\x22\xce\x65\x7c\x50\xf6\xd2\x56\x66\x7a\xea\x79\x53\x60\x14\x71\x5f\x03\x9b\xe2\x4e\xcd\x94\xae\x45\xbe\x1f\x09\x8f\x70\x32\x27\xec\xef\x01\x2a\x64\xc4\x5a\x97\x31\x14\xbe\xd2\x33\xe9\xd8\xd0\x72\xb5\x87\x7a\xaa\x6b\x71\x23\x6a\xb6\x97\x6b\x44\xce\xb8\x91\x99\xdd\x9f\xb0\xff\xcf\x69\x8a\xe0\x43\xf6\xea\x24\x1d\xb3\x50\xec\xdb\x76\x57\x78\xc2\xf6\xe0\x67\xb1\x2a\xb9\xef\x03\x2a\xd4\xb6\xe5\x91\x65\x8d\xf4\x88\x04\xaf\x88\x02\x27\x6c\x14\x35\xc5\xce\xd6\x08\x92\x5f\x07\x0e\x19\x78\xa2\x34\x74\x4a\x13\xcf\x6d\x88\x47\x78\x16\x1a\x36\xce\xbf\xc0\x47\xcf\x6a\x31\x83\xf3\x87\xa7\xe7\x13\x9e\x3e\xab\x2b\x5d\xe8\xd9\xe2\xa2\xaa\x05\xcf\x8f\xb4\x32\xb6\x06\xd6\xd0\x07\x8c\xff\xae\x31\x23\x18\xc7\xb9\xbe\x65\x9c\x12\xbd\xf4\x14\xdb\x19\xe8\x66\x36\x47\xd4\x16\xf8\x21\xe3\x59\xad\x01\x9a\x14\x87\x23\xa3\xd3\x4c\x3c\x80\x8b\x77\x1f\x04\x90\x17\x18\x05\x1c\x1e\xb7\x7c\x41\x87\x89\x5f\xc9\x5c\x98\x28\x11\xda\x4f\x06\x23\x3f\x77\xbe\x3f\x70\xe5\xc3\xb3\xe3\xfb\x76\xc0\xdc\xa0\x42\x7b\xc7\xab\x04\xcd\x08\xa9\xde\xd2\x37\x68\xa4\x40\x37\x5e\x6a\xd2\x54\xb1\xf1\x8e\xa7\xcc\x23\x81\x68\x29\xf9\xbb\x8b\x6b\x71\xbb\xc6\x2f\xfd\x8b\x7e\x2b\xee\x9f\x32\x35\x06\x7b\xf4\x8d\x32\xdc\x4a\x33\x85\x56\xb9\x9f\x50\x1f\x87\xca\x86\xf5\x3a\x7a\xe2\x95\x16\x08\xc5\xa3\xf9\xca\xf3\x80\xb4\x9a\x6c\x16\xca\x93\x6b\xed\x20\x4a\x93\x84\x4a\x8b\xd0\x0c\xd4\x9d\xa0\x8c\x1a\x64\x5b\xdd\xc6\x6b\x31\x52\xd1\x94\x57\xa2\x0e\x67\x1f\x9d\x01\xb2\xee\xc0\x30\x76\xce\xfe\x23\x44\x77\x05\xf2\x9c\xbc\x73\x9a\x87\x59\x2f\xa1\x07\xaf\xb4\xbf\x7d\x67\x50\x0c\x8f\xf9\x44\xc7\xce\x32\x24\x7d\x66\x09\x15\xbc\xfd\x64\x5d\x3e\xd7\x5e\x7d\x52\x0e\xf1\x5a\x3b\xf1\x10\xaf\x6e\xba\xf5\x9d\xaf\xdf\x69\x56\x1b\x57\x15\x92\x53\xc8\x8c\x50\x81\x47\x07\x36\xa0\x9f\x91\x60\x87\x9b\x41\xa9\x27\x6d\xce\x19\x45\xee\x26\xfc\x5d\xdf\x56\xd4\x6b\xef\x4f\xbc\xfa\xe5\x35\xe2\x35\x76\xaf\xd4\xeb\xf7\x9e\x58\x6b\x0f\xd2\xf7\xb0\xe1\xb5\xa6\x41\xdd\x5e\xc9\x86\xba\x6e\x4d\x6b\xdc\x59\x89\x69\xdd\x32\xbb\xd6\xb0\xee\xf5\xec\x01\x1a\xd1\xb3\x9e\x36\x6e\x7b\x25\x84\xd0\xf7\xb0\x76\x39\x23\x40\x54\x3a\x1d\x2b\x6d\xde\x53\x35\x62\x67\xda\xba\xff\x44\xe6\xef\xb1\x16\xe6\x4c\x5b\xf8\xe4\x41\x90\x12\x5f\x61\x40\x42\xfa\x9e\x8f\xd8\x42\xc1\xf1\x4d\x0a\xd1\x3a\x89\xe7\x09\xb6\xc2\xb0\x38\x55\x4c\xd7\x9e\x62\xc1\xba\x30\x34\x44\x1c\x56\x20\x20\xaf\x3b\x8d\x13\x37\x4e\x4c\xe7\xf7\x0c\x47\x43\x01\x22\x0f\x7e\x03\x20\xf4\x55\x01\x89\xf4\x79\x53\x63\xc3\x21\xa7\x6b\x5a\x31\x93\x19\x2b\x45\x3d\x13\x0c\x70\x31\x87\x58\xbe\x3e\x72\x05\xaf\x9e\xd2\x25\x9e\x4c\x8f\xbd\x04\x22\x1b\x54\xac\x01\x55\x00\x1c\x0f\xc5\x5a\xc9\xc1\x92\xfa\xdf\xc1\x07\xfd\x7f\x58\xc5\x65\x0d\x0d\x8a\x28\x76\x1c\x7f\x47\xd1\x97\x78\x18\x37\xc2\x92\x6f\x89\x2b\x26\xb0\x1e\xca\x8d\xde\x55\x3c\x46\xec\x16\x10\x8f\x1d\x4f\x0c\xee\x8f\x9d\x6b\xb1\xd8\x19\x2d\x6d\xbd\x9d\x53\xb5\xd3\x06\x86\x93\xcd\x16\x84\x30\x00\x3d\xed\xc0\x77\x3b\x1f\x4f\x57\xe9\x25\x6c\x87\x68\xef\xd8\x9d\xd0\x9a\xfb\xaa\x5d\xbc\x6f\xd7\x80\x46\x64\x4b\x55\x87\x2f\x93\xf1\xbc\xb6\x64\x49\x49\x6f\xc5\x9f\xc1\xe4\xf8\x02\x5c\xf5\x73\xb2\xbb\xf5\x8d\xf0\x5d\xfc\xd1\xbe\x94\x00\x12\x4f\x29\x33\xbc\xc8\xb0\x43\x2b\xae\x2a\x0c\xe2\x56\xd3\xdb\x18\x85\xd6\xd7\x4d\xe5\x77\x05\x24\x19\x00\xd4\x8e\xca\x74\x49\x56\x07\x3e\x1f\x1c\x2b\xb4\xe5\xc6\x14\xc8\xc3\xed\x1b\x36\x07\xf5\x45\x4c\xcc\x99\x74\xc2\xc1\xef\x20\x1c\xf7\x0b\x26\xf0\x07\xbe\x42\xc8\x79\x89\x67\x47\x10\x7a\xbc\x0c\xee\xf2\xa9\xae\xaf\x64\x9e\x83\x29\x8d\x0f\x0a\xc9\x7f\x1d\x42\xbb\x33\x91\x58\x5f\x93\xee\x1d\x2b\x52\xd7\xbb\xe6\x9a\xda\xb5\x98\x00\x01\x3f\x00\x05\x25\xd7\xee\xc3\xf0\xe8\x3b\x08\x1a\xde\x90\xdc\x96\x8e\x61\xa8\xa6\x28\x02\x8a\x35\x1a\x16\xe8\x95\x84\x03\x4a\xee\xfc\x99\x3b\xb2\x36\x25\xf4\x4a\x1c\xdc\xe5\xfe\x40\x6e\x2a\xe9\x2b\x9e\xaa\x73\x9d\xa7\x2e\x8c\x04\x12\x97\xaa\x86\x3c\x96\xee\x5e\x04\xaa\x1b\x52\xaa\xd6\x29\x16\xed\x27\x65\x7a\xc8\x96\x9e\x12\xe5\x2e\x94\x52\x6e\x75\x29\xb3\x35\x58\x09\xb8\x4f\x7a\xf3\x90\xdd\x97\x38\x50\xe4\xea\xc3\xf4\x82\x59\x2d\xb0\x78\x1c\x8e\x17\x1c\x37\xc2\xc7\x6f\x94\xb8\x11\x6e\x5b\xe5\xd2\x10\x7e\xa9\xcf\x56\xfa\xe7\x92\x77\xe5\xff\x3e\xd6\x67\xda\x7a\x07\xe0\x3f\xbd\x07\x1d\x45\xd9\x3b\x59\x36\x65\x8b\xb7\xcf\x72\x39\xf5\x0d\x8c\x7c\x92\x54\xea\x7a\x48\x3d\x60\x74\x44\x2c\xaf\x67\x90\x2c\x4d\xae\x07\x2f\xb1\x66\x85\xbe\xe2\x05\x2b\xa5\x72\x8f\xa1\x3c\x88\xe4\xb3\x30\x13\xfa\xf3\x3d\x0f\x02\xb1\x2a\x67\xf2\xaa\x10\xe4\xdb\xe8\xf4\x56\x8c\x7e\xdc\xb9\x11\x8e\x56\x01\x4d\x9b\xe6\x5c\xb1\x97\x52\x1d\x7b\xc7\xe8\x73\x77\x64\xdf\xf1\xb2\x2a\x04\xd6\x0c\xb3\x2f\xc7\xff\xd6\x4a\x30\xca\xf5\x19\x31\xbf\x3c\x94\x02\x66\x35\x7b\x8a\x32\xb9\x6d\x28\x1b\x12\xb9\x52\x0e\xea\x9d\xb2\x86\x7d\x71\xf0\xc5\xc1\xd3\x67\x4e\x1d\xc5\x88\x1f\x37\x04\x99\xb6\x4c\x8d\xa7\x13\xf6\x0b\x73\x33\x78\x4a\xff\xfd\x82\xfe\xfb\x25\xfb\x85\xfd\xc2\xd8\x39\x3b\x67\xf1\x7f\xdd\x7f\xd8\x2f\x6c\xec\x88\x10\x4d\xf5\xe9\x28\x65\x5c\x09\x62\x37\xed\x05\x10\x23\x38\x34\xb0\x8a\x4c\x97\x02\xa6\xfa\xc5\xff\x8a\x91\x8e\xa5\x65\x5a\xd1\x9d\x4f\xf7\x60\x4a\xfb\xec\x16\xfc\xf3\x25\xbf\x46\xdf\xd4\x61\x66\x1b\x5e\xb8\x87\xef\x7d\x39\x7e\xba\xcf\xb4\x4a\x6f\xbf\x91\x1a\xfa\xb6\xd0\x0c\xf7\x9e\xee\x4f\x96\xa6\xfc\xc5\x8a\x29\x27\xb3\x85\x59\x70\xb5\x80\xa1\xef\xde\xef\x7e\xab\x1f\xaa\xc5\x2d\x5f\x84\x0d\xef\xe5\xe6\x4c\xde\x84\x2e\xaf\x11\x68\x12\x24\x2e\xc0\xfe\x95\x1e\x07\x0f\x07\x5d\x30\x69\x27\xec\xd4\xee\xee\x1a\x08\x3b\xa0\xdb\xc0\xb7\xa3\x3d\x8e\xf1\x7d\x81\xf0\xb0\x37\x9e\x74\xea\x1a\xd6\x40\x93\x1c\x34\x42\x74\xaf\x7e\xb2\x78\x95\xe1\x94\x0c\xa0\x26\x85\xb1\x12\xf4\x8d\xe5\x53\xdf\x3d\xb8\x21\x07\xf3\xbd\xa7\xbb\xd3\xed\xd0\xb3\xa1\x6b\x52\xc9\xda\x93\xdf\xbe\xd3\x08\xd2\x01\xbd\xf4\x64\x24\x3e\x21\xea\x67\xd8\xdb\x9d\xf4\x5c\xbe\xdd\x81\x38\x60\x50\xc5\xa9\xa4\x9e\xd4\x1b\x42\x6b\xf5\xdb\x38\x42\x14\x3c\x54\x79\x9b\x7d\xb5\xe6\xfc\xa1\x75\x29\x98\x9f\x33\x08\x49\xd6\xcb\x6f\x12\x65\x68\x25\x09\xbd\xee\x14\x46\xc0\xf1\xec\x10\x37\xb0\x81\x38\xea\x87\xcc\xeb\x4e\xda\x45\x2d\x04\x40\x61\x0a\xf1\xa4\x12\x7b\x2c\xba\xdb\xe9\x60\xa3\xdb\xdb\xf7\x4c\x0c\xcb\x7a\x3a\x5d\x91\x52\xd7\xc6\x9a\x10\x2c\xd7\x6d\x12\x28\x55\x8a\xf7\x4f\xd4\xcd\xf5\xe9\x0a\xe4\x58\x3a\x2e\x26\x25\xd7\x13\xda\x48\xed\x33\xb5\xc5\xe7\x7e\xdf\xe5\x1f\xc1\x8e\x4f\xe4\x26\x68\x69\xeb\x08\x8b\x2f\x46\x9d\xd9\xd3\xe7\x7f\x5a\x47\x86\x7c\xf1\xec\x7e\xc2\x81\xfe\x7b\x99\x2c\xf3\xca\xd5\xfd\xd3\x5e\x3b\xcb\x7d\xc8\x85\x58\x71\x08\xa0\x6e\xaa\x8d\x8b\x4f\x82\x40\x33\xd2\x36\x1c\x4b\xad\x94\xb8\xa5\xfc\xd7\xbb\x5f\x2a\xd2\xcd\x3d\x73\x1f\x39\xf9\xc3\x1b\x68\xab\x59\x56\x0d\x40\x08\x38\x42\x7a\x4d\xfb\xcb\xbd\x2f\xd9\x98\x3d\xd9\x77\xbb\x41\xe1\xb6\x02\x62\xc6\xa2\x0c\xd0\x6c\x50\x15\xb0\x73\xa7\x3c\x39\xca\x98\x11\xb6\x62\x2c\x8a\xae\x10\xba\x8f\xe2\x1d\x68\xb3\x59\xa5\x7b\x53\xb2\x40\xe9\x5c\x1c\x4e\xa1\x8d\xce\x62\x5d\xa0\xec\xae\x4c\x38\x5b\x1a\x33\x92\x0d\x73\x7d\xcb\x6e\x29\x4b\x1b\xb6\x1c\xd5\x1a\xc6\x13\x39\x70\x7f\x84\x3d\x05\xfc\x2c\xb0\x64\x52\x21\x02\x2b\xa5\x63\x64\x60\xd9\x5f\xc5\x30\x3f\x63\xf6\x8d\x56\xba\x7e\x86\xda\x91\x1b\xd2\xb4\xac\xf8\xee\xc7\x21\xab\x89\x41\x4f\x12\x81\x60\x9c\x7a\x73\x0a\xd6\xe1\xb3\x5f\x1b\x25\xd8\x90\x90\x30\x9e\x07\x3e\xf6\xbe\xc1\x11\xfc\xfd\x8e\xcc\xe4\x00\x34\xbe\xe4\x9a\x72\xdf\xc2\xeb\x52\x93\xaf\x49\x67\xff\x53\x7b\x04\xbf\xa1\x7d\x8a\x73\xa7\x1d\x8b\x5b\xb9\x53\x37\x3d\x23\xb5\xc2\xa5\x7b\xdf\xb1\x98\x16\x7c\xd6\x63\xcf\xaf\x69\xef\x39\x4a\x5e\x42\x5e\xc2\x90\x1b\x36\x1e\xf1\xbd\xdb\x15\x91\xbf\x30\x2f\xa2\xf7\xd6\xc4\x5d\xe1\x38\xaa\x6e\x2c\x8d\x9a\x34\x15\x84\x8f\x44\x4e\x37\x4e\xb5\xf7\xc9\x2c\xf9\x2f\xe6\x50\xda\xdb\x66\xe6\x8c\x92\xbd\xd6\xdd\xb4\xfe\x05\x3e\x60\x9b\xf6\xda\x92\xf8\xcc\xcf\x7f\x4f\x46\x79\x13\x03\x24\xeb\x85\xb1\xbc\x11\x7d\x2d\x40\xfe\xc1\xca\xa1\xa3\x6a\x02\x74\x21\x73\x86\x0a\x51\xd0\x27\xd9\xf6\x26\xf6\x51\x59\x6c\x9b\x9b\xf1\x22\xd6\xa6\x9c\x46\x26\x73\x51\xa3\x80\xbd\x12\x49\xd9\x52\xc8\x77\x61\xdf\xb7\x77\x62\xb9\x12\xe4\x75\xe3\x40\x7f\xc3\x72\xf2\x9d\xab\x26\xbb\x16\xd6\xfb\xb3\x6b\xa8\xb4\xa8\x1a\xcb\xae\x78\xc1\x55\xe6\x36\x6f\x37\xbf\xc1\x6a\x1c\x0c\x7f\x09\x4f\x41\x8c\x9c\x50\x4e\x83\x43\x47\xd9\x98\x52\x19\xeb\x46\xc3\x34\xcd\x76\x82\x87\x85\xd1\x23\x77\x44\xfd\x00\xcb\xce\x04\x18\x8a\xfe\x8d\x2e\x7a\x12\x06\x42\x58\xaa\xd7\x8b\xfc\xea\x44\xe7\x8e\x00\xc3\xaa\xf4\x94\x4d\x4c\x98\x98\xcc\x40\xe1\xed\x2c\xd9\x4e\x5a\x34\xea\xeb\x90\x76\x46\xf8\xd6\x6e\xe5\xa8\x88\x97\xbc\x1d\xd4\xc3\x24\x7a\x2b\x95\x43\x6d\x7b\x77\xe0\x70\x47\xfa\x04\xa7\x0e\xf9\xd1\x41\x6d\x7d\xff\xe8\xa7\x76\x95\xc5\xfb\xa9\xcf\xcc\x92\x7d\xdf\xdf\xe1\xb6\xac\xf2\xa7\x9c\x1c\x32\x6f\x78\xe1\x2b\x62\xa0\x29\x6c\x00\x98\x57\xbb\xbb\xad\x67\x00\x8e\x02\x72\x96\xd6\x76\x71\x5c\x34\xb1\x1d\xd8\x9e\x57\xfd\x98\x15\x45\x81\x87\xb5\x35\xa1\x9c\x2a\x1c\x37\x5e\x93\x30\x42\xea\xc5\x58\xf9\xc3\x15\xdd\xda\xd0\x51\xb6\x08\xd0\x90\x23\x76\xd5\x58\x36\x93\x37\x4e\x00\x7c\x90\xd3\x03\x1d\x3b\x73\x51\x54\xac\x16\x79\x93\x11\x94\x03\x48\xa7\xc3\xd8\x42\x83\xcc\xf5\xc0\x1d\x76\x12\x82\xee\x10\xba\x64\x2a\x7c\xe4\x14\x0e\x08\x28\x5a\x72\xca\xc4\x8d\xa8\x17\xac\xd2\xc6\xc0\x31\x04\xb6\x85\x05\x8d\x10\x3b\x0b\x28\xd6\x60\x4d\xc0\xac\xbc\x02\xbf\x43\x1a\xfc\x0e\x58\xb8\x3a\x61\x45\x9f\xc6\xa1\xf7\xe5\xc1\xd3\x83\xa7\xef\x37\xc6\xce\xe1\x7f\xad\x87\xce\xff\xf7\x74\xba\xc2\xe6\x6c\xe7\x92\xec\x9c\xfb\x38\xf1\xbe\x00\x5f\xdb\x97\xfb\x91\x2f\xef\xcb\x83\x2f\x0e\x9e\xee\xb9\xb9\x7e\xb1\xef\x66\x1d\x79\xe9\xbe\x88\xbc\x74\xe1\x97\x34\x23\x61\x12\x3f\xdd\xa9\xa2\xea\xd5\x5b\x5d\xe7\x94\xa5\xeb\x2b\x21\xdd\x8c\x10\x21\xd0\xc9\x86\xd2\xf3\x72\xdc\x76\xa9\x97\x60\xd7\xa2\xbb\x50\x5a\xf6\x87\x52\xd7\xe2\x0f\xd1\xfd\x77\xfa\xd7\xd6\x77\x9b\x6d\xb8\x87\xda\xfa\x29\x92\x7d\x13\x24\x87\x69\xc6\x86\x8d\x7c\xfa\xe4\x34\xef\xbe\xf0\xfd\x2f\x71\x28\x4a\x1e\x43\xa7\x6e\x49\x49\x8e\x57\x8b\xb8\x26\xfa\x4a\x38\x95\x16\x7d\x60\x2d\xc0\xe0\x3d\xfb\xfd\x1a\xab\x6b\x3e\x13\x07\xf4\xd8\x75\x2a\x98\x37\x91\x8b\xfc\x1d\x76\x4e\x4a\x32\x85\x10\xba\x89\x7a\x2a\xf9\xb2\x74\x9f\x43\x0a\x5c\x80\x67\x50\xd1\x09\x84\x4c\xc0\x41\xa3\x5a\xd1\x47\x92\x8e\xfc\x89\x3b\x46\xf2\x5b\x73\x52\x70\x63\x65\xf6\xf7\x42\x67\xd7\x17\xd6\x59\x3d\xbd\x55\x8b\x55\xa3\x26\x6b\xaa\xd8\xe1\xf7\x17\xec\x58\x9a\xeb\xb6\x6d\x32\xb6\xc0\x49\x8b\x28\x79\x80\x80\x26\x3c\x0d\x56\xf2\x6c\x8e\xaa\x2b\xf9\xa0\x7d\x1b\xb0\xe1\xce\xca\xef\xf8\xad\x11\x38\x7d\x68\x4b\xeb\xbe\x16\xeb\xb3\xe0\x8d\x61\x4e\xe2\xeb\x9c\x1e\x6f\x20\x79\x79\x6a\x2e\xd7\x06\xb4\x5e\x6e\x26\xe7\xbb\x12\x20\x2e\x44\x21\xb0\xda\x08\xf1\xbd\xd3\x06\x71\xb0\x87\x16\xba\x61\xb7\x1c\xed\x6a\xe0\xb0\x13\x76\x29\xab\x67\xec\x24\x6a\xb5\xb4\x6a\x28\xa7\x7d\x04\xe4\x56\x32\xa8\x61\xcf\x61\x32\x92\x63\xc8\x54\xe7\xc4\x4e\x50\xb5\x32\xcf\xd8\x8e\x78\x67\xff\x63\x67\xc4\x76\xde\x4d\x8d\xfb\x8f\xb2\x53\x68\xcd\x46\xad\xb8\x9d\x8e\xa7\xa6\xa2\x6e\x4d\x47\xfc\xc1\x32\x18\xd4\xf0\x5b\x96\x5d\xbe\x3a\x7e\xf5\x0c\x74\xf9\x5c\x3b\xab\xaf\xaa\xc5\x8d\xd3\x29\x45\x5d\xeb\x16\x7b\x23\x22\x03\xa4\xcf\x64\xba\xac\x6a\x5d\xca\xa8\x00\x19\x8e\xdc\x3a\x27\x80\x0d\x91\x01\x07\x86\x2d\x6c\x86\x41\xf6\x53\x18\xce\x6f\xa9\xe8\x03\xf5\x21\x9b\xe9\x74\xca\x34\x26\x0a\xa4\x10\x08\xd2\x84\x9b\xdc\xf6\xa1\x51\x14\xe0\x4a\xb5\x1b\xc6\x69\xe6\xf4\xd5\x41\x2e\x6e\x0e\x4c\xce\x9f\x8e\xe0\x31\xb8\x1b\x16\x9d\x39\x71\xc3\x76\x9e\xee\x4c\xd8\x85\x2c\x65\xc1\xeb\x82\x3a\x5e\xd3\x10\xed\x7d\xce\x50\xf0\x03\x82\xf9\xfb\x64\x87\xed\x21\x06\x01\xa8\x1b\x85\xf0\x80\x74\x01\xa9\x14\x92\x74\xf6\xd7\xd2\x2e\xd9\x00\xce\x78\xd6\xdb\x21\xcf\x80\x4b\xf2\xfc\x95\x2a\xd6\xce\xdc\x4e\x37\x87\x1f\xcd\x17\xf0\xd5\x0d\xf9\x33\xa7\xba\x26\x23\x30\xdc\xe2\x81\x8e\xa4\x22\xb5\xe5\xa5\x5b\x7a\xf3\x60\xc4\x0f\x1b\x00\x7c\x8f\x05\x29\x32\x0c\x7d\xfd\x68\x90\x8a\x80\xad\xa2\x4f\x8f\x3d\x13\xaf\x44\x6d\xa4\xb1\x8e\x45\xe5\x89\x6a\x20\x51\x5f\xd8\x3b\x2c\xf9\xbf\xb5\x62\x27\x7f\xbf\xa0\x69\xed\x3f\x40\x62\xaf\xc9\xe9\xf8\xbf\x9b\x5a\x38\x8d\xa8\xb7\xfa\x15\x46\xea\xaa\x5c\xee\x73\x76\xcc\x2d\x47\xcd\x0b\x39\x95\x6e\xc1\xc1\xb0\x55\x3d\x14\x6d\x79\xe4\xb7\x35\x95\x67\xb6\x79\xed\xc7\xed\xa0\xb3\xf5\x51\xb7\xdd\xcf\xdf\xbc\x3e\xdd\x80\xee\x94\x81\xb8\x9d\xbd\xd4\xf9\x40\x0a\x54\x34\xa0\x17\x79\x00\x6a\x7a\x84\x9f\xb3\xd2\x3d\x89\x9d\x69\x25\x46\xec\xb5\xe0\x39\x73\xdc\x8d\xfe\xf9\x7d\x2d\xed\x7d\xf1\xaf\xda\xab\xb7\xe8\xf7\x8b\x38\x08\x21\xfc\x60\x9e\x08\x71\xa3\x7b\x00\xe8\x04\xa6\x43\x3a\xc0\x55\xa1\xaf\x18\x31\x8b\x4d\xbe\xfd\x9b\xd7\xa7\x83\xbd\xfc\x9b\xd7\xa7\xfe\xdd\xdd\x3f\xf5\xf4\x61\xbe\xf6\x80\xc6\x43\x6b\x3b\x3c\xef\x28\xfb\xad\x3a\xd7\xf6\x23\xea\x1a\x04\x1f\x6e\x0d\x4c\x86\xb2\x03\x36\x45\xf3\x6b\xa9\xd6\xae\x01\x4c\xb9\x0d\x34\x1b\x0a\x90\x58\x51\x10\x0d\x90\xf8\xf2\x67\xac\x6c\x0a\x0b\xa8\x47\xb0\xd7\xdc\xe6\x83\x6c\x31\xbf\xeb\x18\x21\x80\x32\x76\x2c\x30\x1c\x91\x3f\xf3\x75\x28\xe1\x17\xab\x7f\xf0\x92\x2b\x3e\x73\xb7\x83\x04\x64\x25\xfe\x19\x6d\xf2\x3d\x74\xba\xab\xf0\x15\xbf\xe1\xb2\xe0\x57\xb2\x90\x16\xf4\xb9\xfd\x89\xd7\xe6\xb1\x54\x01\xa6\xbc\x31\xee\x37\xa8\x6a\x1b\xd4\xd6\x18\x1f\x06\xe0\x0d\xd9\x9e\xfb\xee\xe0\xd6\xb1\xfa\xfd\x09\xf0\x7d\xb8\x11\x50\xdb\x3b\xca\xef\xeb\x5f\x53\x7e\x37\xa2\xa7\xc2\x7a\x3f\x5f\xb3\x51\xda\xb2\xee\xe4\x46\x5a\xa9\x3b\xc1\x17\x04\x3a\xfa\x99\xab\x4f\xd8\xac\xbe\x87\x02\x05\x67\x67\xcd\xdf\xf7\x55\xa1\x3e\xce\xc1\xc9\x3f\xbf\x83\xc3\xb0\xa5\x24\xad\xf4\x20\xe4\x6a\x87\xf3\xba\x46\x00\x97\xc6\xaf\x3a\xe5\xf3\x78\xb2\x2e\x88\x97\x7b\xd0\x69\xf8\xbd\x3b\x4f\xeb\x80\x6b\xe0\xd5\x9b\xfd\x86\x1d\x3c\x0c\x5d\xfc\x68\x9e\x2c\x28\xa4\xe0\x63\xb6\xf6\x39\xeb\xf9\x9a\x99\xa8\xe6\xd3\xfe\x99\xed\x6e\x98\xe7\x17\x69\xd4\xe6\x48\x54\x73\xf6\xfc\x62\x05\x9b\xc4\xaa\x02\xf7\xde\x06\x63\x39\xbb\x86\x15\x72\x2a\xac\x5c\x8b\x08\x1b\x66\x94\xa5\x56\xd2\xea\xda\x6c\x80\xcd\xf9\x47\x0f\xa3\xb8\xf9\xd1\xdc\xfe\x7c\xed\x89\xc2\x5e\x46\x9f\x72\x96\xe9\xa2\x10\x99\xcf\xf5\x87\x25\x0e\x3f\x5b\xe1\x88\xa1\x0c\x04\x33\xb9\xfe\x0b\xb8\x62\xc8\xe9\x72\x80\xdb\xee\xe0\xf5\xc9\xe1\xf1\xcb\x93\x49\x99\xff\x6e\xae\x6f\xc7\x56\x8f\x1b\x23\xc6\xd2\xf6\xd3\xb7\x36\x88\x27\x32\x80\xa7\xdb\xce\x87\x72\x72\xdb\xb9\x5b\xb2\x16\xd4\xfa\x8d\x69\x61\xe7\x7d\xdc\xb9\xd6\xda\x2e\x03\xcf\x4f\x9b\xa2\xc0\xb5\xb5\xb5\x10\xa3\xd8\xbf\x7d\x4f\x58\xfe\xf6\x7a\x58\xba\x70\xeb\xe6\x4d\x48\xf4\x71\x35\xe3\x87\x72\x40\xfa\xeb\x0a\xeb\x6a\xda\x6c\x69\x1d\xda\xf1\xd2\x95\xb8\x48\x3e\xc7\x80\x88\x9d\xbb\x75\xb9\x16\x0b\x06\xd0\x11\x53\x5d\x43\x1b\x97\x74\x7f\x0a\x9b\x01\xf1\x0e\x1a\x23\xea\x09\x29\x1c\x0f\x84\xf0\x7d\x54\x11\x78\x91\xd7\x62\x3a\x24\xd9\x5f\x8b\xe9\x2a\xaa\xd3\xc7\x80\x75\x1b\xd2\xe3\x9c\xbe\xd2\xd8\x39\xe6\xc6\x22\xc6\x36\xd2\x76\xe5\x32\x10\xf6\xc7\x03\xa1\x7b\x2f\xd4\x86\x21\x90\x85\xfa\x74\x52\x64\x4b\x8b\x17\xbb\x2d\x69\x91\xec\xbd\xc3\x20\xfa\xc6\x59\xb1\xe2\xf6\xe0\x56\xd7\xd7\x52\xcd\xc6\xb7\xd2\xce\xc7\x48\x29\x73\x00\x88\xff\x07\xbf\x83\xff\x50\x14\xf9\x30\xcf\x29\xff\xad\x31\x62\xda\x14\x98\x99\x66\x26\x8c\x57\xf2\x3b\x51\x1b\xc8\xb2\xbc\x96\x2a\x1f\xb1\x46\xe6\x5f\xad\xbb\x62\x6c\x88\xd3\xe2\xce\xfe\x30\x07\x05\x7a\x3a\x49\x43\x1d\x0c\x49\x8c\xd6\x9e\x27\xd5\x3c\xd7\x06\xfb\x3e\x39\x52\x25\x47\x80\xe7\xa5\x54\x0f\xe5\x04\xac\x6b\x1d\x48\x95\xaf\x47\xc9\x4e\x00\x02\xc6\x49\xcd\x03\xfa\x8c\xc2\xd8\x21\xe7\x87\x7b\xef\x09\x76\x8f\xa7\xec\x9f\x34\xf7\xe7\x83\x18\x4b\xb9\x30\x3f\x17\x63\x7c\xca\xb8\xca\x5b\xba\x6e\x13\x79\xee\x73\x7d\xba\x44\x9e\x61\x1d\xf2\x9f\x20\x3d\xe7\xa3\xee\x38\xf6\x80\x75\xe6\x8f\xeb\x07\xdb\x20\xa9\xfb\x6b\xc6\x1f\x47\x43\x6b\xa5\x0f\xf4\x24\x34\x1e\x28\x0f\x14\x30\xe4\x4a\xde\x9f\x06\x39\xf2\x6d\x13\x2c\x8f\xf6\x90\x69\xa5\xa8\x3f\xc2\xab\x4a\xa8\x0b\xcb\xb3\xeb\x9e\x51\xdd\xad\x56\xf5\x1b\xd3\xaa\x3e\x52\x22\x90\xdf\xa2\x58\x78\x47\xe9\x6f\x6d\xb2\x37\x1e\xf2\x47\xc8\x80\xb1\xd9\xdf\x4b\x5e\xf5\xf7\xae\xfa\x91\x3a\x1a\x54\xf8\x98\x1c\xaa\x50\x1c\x54\xe9\x0a\xc0\xc6\xa8\x04\x15\xe8\xf8\xe9\x35\x9e\xbe\xe7\x9b\x44\xcc\x70\x39\x30\xd1\x80\x29\x47\x2d\xdd\x27\x57\xd2\xb6\xbc\xd2\x08\x8b\x50\x50\x04\x91\xac\x15\xcb\x08\xee\x01\xf4\x91\x08\xc4\x20\xd2\x55\x14\xd3\x99\xf5\x55\xa3\x01\x35\xea\xc9\x93\x27\x4f\x10\x09\xe7\x3f\xff\xf3\x3f\x99\xae\xa1\x17\x69\x26\xcb\xe5\x1b\xe1\xae\x3f\x3d\x7d\x3a\x61\xff\x38\x7c\xf9\x02\x2a\x1a\x2a\x6b\x10\xf5\x0d\x47\x76\x37\x24\x3f\x36\x23\xf6\xff\x5c\xbc\x3a\x6b\x31\x1a\xd2\x6f\xc1\x34\x0f\xaf\x97\xf6\x05\x79\xf2\xe7\xff\xf8\x8f\x09\x3b\x96\x35\x54\x74\x49\x11\x7a\xb3\x07\x57\x0b\xaf\x05\x22\xf7\x00\x86\x8a\xd7\xb8\x64\x68\xef\x48\xf5\xc9\xa5\x9c\xcd\x2d\x55\xc4\xba\x0d\x59\xc8\xcc\x62\xf1\x18\xb2\x35\xdf\xfa\x1d\x5b\x8a\x50\x93\x1e\xd2\xfe\x60\x72\x23\x56\xc8\x6b\xc1\xa6\xe6\xeb\x5a\x37\x55\x0b\xf3\x88\x00\x2d\xbe\x50\x06\x07\x6b\xd7\xca\x08\xfb\xc8\xd3\x56\x7b\xb9\x9a\x93\xbd\x0d\x23\x75\x14\x56\x2a\x6f\x6d\xa1\x0e\x2b\x2e\x43\x31\x0c\x64\x00\x26\x3d\x40\x83\xaf\x27\x67\x47\x81\xab\x78\xcc\x91\xaa\xd6\xff\xc2\x2d\x00\xb5\xc8\x11\x7b\x86\x5a\x61\x58\x49\xaa\x14\x8e\xa2\x5b\xbe\x9e\x9a\x9a\xb3\xfb\x8f\xa9\x93\xcd\x72\x3b\xb0\x42\x1a\xf7\x08\x00\xfb\x79\xcf\x93\xdb\x5e\xc6\x6e\x97\x1a\xdc\x2f\x8d\x5a\xfa\x35\x01\xab\x10\xbb\xa4\x26\xa0\x84\xaf\xd8\x8e\x81\xf0\x00\x84\x83\x43\xf7\x7a\x2a\x05\x42\x24\xf9\xd6\x46\xd8\x86\x48\x03\x59\xf4\xee\xd9\xd0\xa0\x12\xde\xb0\xe4\xf5\xb5\x33\x5c\x89\xbb\x4c\xd8\xb9\x9b\x64\x80\xd2\x41\xb0\xe3\x1b\x0c\x6c\x96\x7c\x01\x8f\x25\xc5\x0d\x1e\xb2\x3b\x99\xec\xe2\xf1\xd3\x35\x33\x96\xd7\x74\x96\xdc\xe7\x9f\x07\xca\xfa\x4b\x5e\x19\x44\xfd\x75\x9a\x2a\x20\x62\x6b\xa8\x5d\xb7\x73\xcf\x82\x38\xd1\x7a\x8b\x8c\xce\xc6\x40\x98\xb5\x07\x78\xe0\xa8\xe8\xb4\xfa\x74\xca\x1f\x04\x64\x77\xd9\x43\xe1\xc0\xab\x1b\x53\xcd\x3b\x91\x8d\x0f\xd2\x37\xa8\x2b\x54\x21\x1e\x95\x82\xb1\xba\x0b\x2c\x31\xce\x58\x01\x8b\xdb\x83\x3e\x5e\x3d\x02\xaf\x21\xb4\x09\xbc\xfa\xeb\x14\x78\xf5\x09\x22\xe3\x95\xec\x61\x1f\x49\x46\x62\x92\x00\x43\x19\x35\x6d\x97\x00\x7a\xf5\x55\xd1\xb1\xc6\xc6\xb6\xbe\x41\xb3\x62\xfc\xca\xe8\xa2\xb1\xf8\xd3\xf6\xcb\x58\xfa\xc1\xa0\x1e\x33\x1c\x44\x5e\xb8\x2d\x92\x85\xa0\x05\xa0\xf8\xe8\x23\x16\xf1\xea\xcd\x36\xfa\x38\x21\x7e\x43\x0e\x88\xde\x74\x0e\x06\xdb\x10\xb4\xf6\x83\x85\x8a\xbb\xdb\xb9\xa0\x14\x88\x48\xef\x73\xdc\xd4\xf1\x08\x50\x2a\xbd\x0a\x87\xc0\x39\xf9\x46\xdc\x8c\x99\x91\xfd\x7d\x09\x46\xb2\xbd\xa3\x50\x1e\xef\xd3\xee\x4e\x95\x15\xf5\x94\x67\x62\x3f\xf6\x31\x88\x6a\x2e\x4a\x51\x3b\x42\xd1\x7d\xbe\x46\x7b\xce\x55\x4e\xb0\x53\x99\xa8\xe1\x04\x8b\x77\x56\xd4\x8e\xa8\x47\x17\xa7\x2c\xaf\xe5\x8d\xa8\x0d\xdb\xfb\x3b\xc0\x09\x22\xdc\xd4\xfe\x23\x4c\x83\xc5\x17\xd9\x84\x07\x04\x1e\x3c\x4c\xe9\x07\x0c\xe5\x79\xb8\x8a\xf8\x4c\xbb\x54\x1e\x1b\xcb\x2d\xab\x89\x7d\x47\x13\x77\x20\x40\x84\x02\xf7\x85\x8e\xd6\x18\xdb\xf4\x60\xf6\xd0\x78\x2b\xb3\x38\x30\x37\xac\x16\x33\x67\x8d\xd5\x11\x68\x1f\xc2\xa4\x6c\xac\xb8\x61\xf8\x82\x92\x36\x58\xf5\xbe\xda\x8f\x29\xd9\x95\xfa\x46\xe6\x5e\x1d\x42\x60\xfc\x00\x0d\x57\x71\x13\x81\x17\x70\x63\x74\x26\xc1\xd5\x14\x2d\x0d\x5a\xa9\xa0\x34\xa5\xad\xd0\x7c\xb8\x39\x0e\x93\x69\x68\x28\xb4\x56\x1f\x56\x36\x88\x40\xd4\xb9\x38\x6f\xae\x0a\x69\xe6\x17\x83\x86\x44\x56\x0d\x8c\x49\x89\x4b\x99\x2a\x77\x46\x46\x8c\x50\x46\x52\xdb\x7c\x54\xb7\xa4\x86\x2e\x0b\x6e\x19\xfc\xaf\xe3\x43\xa1\xa1\x1a\x1e\x9a\xf1\xfb\xaf\xce\xda\x79\x10\x58\x09\x76\x81\xce\xc5\x1b\x55\x25\x9f\x67\xbc\x28\x0c\xe9\xb7\xa1\xc7\x89\x97\x3d\xa8\xa1\x7a\x00\x13\xdc\x15\xd2\x6d\x18\x3f\x7b\x48\xc1\x41\xe6\x15\x1a\xf2\xac\x7c\x31\x13\xc1\x0d\x6b\xe5\x6f\x82\x66\xd6\xfe\x07\x81\x42\x58\x89\x83\x9b\x6e\x83\xad\x50\xb6\xe1\x9f\xc7\x17\xfe\xf9\x38\x35\x15\x6d\x8b\x51\x0e\x1f\x8e\xa1\x42\x0b\x43\x1b\x0d\xb5\xcd\xf5\x82\xc6\x0b\xa4\x5f\x49\xd3\xdc\x58\x08\x18\xe7\x77\x68\xa9\x17\xc5\x30\xde\xdd\xee\xa0\xa0\x8a\x39\x53\x1c\x38\xd4\x98\xe8\x97\x45\x47\x8a\x6c\xe4\x70\xce\x97\xf9\x5a\x2b\xd3\x41\x9c\xe3\x87\xbb\x86\xe5\x3a\x6b\x9c\xf1\xd5\x92\xbd\x4d\xb8\xe8\xd7\xad\xf0\xf3\x6a\x9f\x94\xeb\x5b\x75\xcb\xeb\xfc\xf0\x7c\xad\xda\xdc\x54\x39\x6b\xc7\x8a\x55\x6f\xff\x31\x73\x9f\xf3\x2b\x00\xbc\x25\x6c\xc3\x6d\xb4\x6f\xe5\x10\x31\x37\x5f\xe5\x6e\xb3\xda\x31\xd9\x0f\x8c\xe6\xdd\xd7\x61\xb7\x0d\x10\x6e\x03\x84\xc9\xf5\x90\x02\x84\xa7\x18\x20\x8c\x3b\xfd\x26\xec\x85\x3c\xb4\x8e\xe2\x9f\x45\x8c\xe9\xb8\x65\xa9\xa8\x89\x77\xeb\x79\x3b\xca\x3f\x1e\xde\x76\xd7\x45\x06\x83\xe7\xb9\xa0\x97\x7d\x0e\xf1\xa8\x07\x10\x4f\x02\x5a\xf6\xb0\x0a\xf1\x4a\x19\x7e\x5b\xaf\x86\x28\xb5\x18\x98\x8e\x22\xdc\x95\xce\xa9\xb7\x01\x34\xdd\xc0\x06\x02\xa3\xd0\x19\x50\xf9\x72\x53\xd0\xce\x2b\x9e\x09\xe0\x6f\x41\xfd\x19\x24\x48\xd0\x73\x03\xb0\x81\x36\x01\x83\x8d\x00\xd4\x39\xef\xb3\x1b\xd8\x60\x3b\xc2\x5d\xad\xc5\xd3\x77\xa4\x2e\xa2\x28\x8e\xea\x37\x82\xc9\xe6\xa2\xe4\xf0\xcf\xe7\x9e\x04\x8e\x37\x3a\xe3\xc1\x0a\x84\x80\x13\x75\x69\x98\x9e\x8e\x92\x4c\xd7\x9d\x9b\xa7\x3b\xfd\x82\x0d\x6c\xb8\x38\x25\xf3\xe7\xe8\xbc\x77\xb0\x87\x75\x09\x76\x9e\xc4\x76\xdc\x19\x6a\x7b\x60\x7a\xdc\xfb\x90\x41\x01\xf2\x03\x29\xfc\x60\x88\x33\x74\x10\x77\xdd\xe0\xed\x28\x44\x0d\x1e\x81\xf2\xb7\x0d\xde\x7e\x8e\xc1\xdb\x48\x30\x7a\x46\xb7\x22\x90\x1b\x87\x04\x7c\x34\xf7\x4a\x78\xa3\x86\x6c\x18\x1f\xca\xf5\x71\x5c\x5d\xa7\xa9\x4b\xbb\x93\xc9\xee\xae\x8f\xee\xd2\xbe\x6f\xec\x74\xfc\x17\x26\x54\xa6\x73\xdf\xc0\x77\x2a\x6b\x63\x41\xdd\x6b\xdd\x6d\xf1\x5c\x4a\xff\xac\x38\xfd\x09\xc6\x1e\x62\xa9\x7b\xf3\x16\x0f\x49\xf8\xfc\x23\x28\x31\xad\xea\x12\x80\x0f\x89\x44\x01\xcf\x9a\x74\x18\xff\xbd\x61\x85\x2c\x25\xf5\xbf\x77\x07\x5d\x18\x6b\xd8\x1e\x7e\x38\xc9\xaa\x66\x44\x37\x4c\x4a\x51\xea\x7a\x31\x0a\x37\xb9\x2f\x93\x5f\xd1\x1d\xfb\xd8\xef\xa4\xa9\x6b\xa1\x6c\xb1\xf8\x9c\x35\x20\x4f\xc4\x07\xa2\x00\x85\x35\xee\x83\x38\xd2\x5e\xe9\xd6\x6a\x23\xbe\xe0\x36\x8f\xfa\x0b\x04\x34\x5a\x33\x6a\xe3\xe2\xee\x53\xa1\x6e\xd8\x0d\xaf\xef\x89\x1c\xbf\xea\x1a\x50\xe7\xc9\xe5\x8d\x34\x7a\xed\xb0\x68\x34\x50\x4c\x9e\x8b\xe0\x84\x76\x87\x4d\x37\xb6\x6a\x2c\x71\x74\x7f\x02\x3d\xca\x78\x38\x79\x1d\xe5\xf0\xe9\x3a\x5d\x94\xd2\xab\xe2\xd6\x8a\x5a\x3d\x63\xff\xb3\xf7\xf6\x8f\xbf\x8c\xf7\xbf\xda\xdb\xfb\xe1\xc9\xf8\xbf\x7e\xfc\xe3\xde\xdb\x09\xfc\xe3\x0f\xfb\x5f\xed\xff\xe2\xff\xf8\xe3\xfe\xfe\xde\xde\x0f\xdf\xbe\xfc\xfa\xf2\xfc\xe4\x47\xb9\xff\xcb\x0f\xaa\x29\xaf\xf1\xaf\x5f\xf6\x7e\x10\x27\x3f\x7e\xe0\x20\xfb\xfb\x5f\xfd\xbe\xf7\xd4\xb9\x5a\xbc\xea\xc9\x0a\xf1\x1a\x0f\x28\x92\xd3\x11\x07\xd9\x7e\x9d\xb6\x12\x52\xd9\xb1\xae\xc7\x38\xf4\x33\x00\x0b\xee\xf9\x00\xbf\xbd\x86\x3e\xff\xad\x1a\xd0\xc2\xed\x7b\xa5\x7e\xc3\x07\x1c\x42\x9f\xc7\x72\x80\x32\x63\x3f\x52\x5a\x26\x63\x45\x59\xe9\x9a\xd7\x0b\x96\x93\x37\x73\xb1\x02\x81\x28\x82\x20\xea\x0d\x29\x0c\xf3\xc8\x65\xbd\x81\x4a\xe3\xde\x88\x42\x22\x97\x4d\x39\x10\x9e\x10\x8c\x15\x2f\xc6\x2d\x20\xef\x13\x6a\xbf\x4f\x29\xa2\xdb\x28\xa0\x71\xc5\xb3\x6b\xb4\xa0\xc2\x6a\xa1\xde\x18\x95\xd6\xef\xec\x50\x4a\x44\x29\xb8\x0a\x8e\x7d\xc8\x6d\xd1\xb9\x70\x4b\xe9\x6f\xc6\xb1\x13\x27\x3c\x46\xda\x29\x81\xb0\xed\x48\xa5\x6b\xf6\x12\x14\xa0\x8d\xae\x3e\x1b\x04\x2b\x44\xfe\x5b\xbc\x70\x5a\xdf\x40\x95\xa8\x7e\x38\x9f\x40\x64\x35\xd8\x9b\x84\xeb\x35\x85\x26\x5b\x6d\x86\x58\xa2\x59\xc0\x42\x9e\xf8\x63\xe9\xe3\xb7\x6e\x39\xdd\xa8\xa8\x9b\x82\x63\xba\x30\x98\xb7\x22\x33\xe8\x03\x05\xb6\x29\x2c\x47\x58\xc2\xcb\xa8\x51\x7f\x63\xdc\x93\xb4\x4a\xef\x69\x1f\x84\x6d\xb2\xae\x70\x4f\xf8\xee\xda\xa9\x45\xed\xbe\xb9\x08\x6f\xd6\xfa\x33\xa0\x64\xd9\x9b\x9f\xa6\x01\x23\x85\x9e\x42\xaa\xb6\x9e\x42\x66\x45\xd4\xaf\xc7\xb7\xa4\x59\xda\xa8\x4a\x16\xe9\x4e\xf5\x9d\x27\xc2\x8b\x37\x8a\x12\x0a\x37\xbe\xed\x1e\x9d\xf6\xd1\x53\xe7\x18\x4a\xd3\x18\x44\xbf\x18\x5c\xab\x08\x99\x9b\xfd\xfb\xbd\xb6\x49\xa0\x89\x58\x8d\x7b\x64\xa4\x09\xa1\x3c\xb4\x45\xf3\x3c\xc1\x67\x1d\x5c\x06\x8f\x12\x89\xdb\x6c\x91\x11\xc2\x93\x4c\x3a\xf8\xe0\xb0\x78\x34\xa0\xb6\x6a\x1c\xba\x57\xb7\x7e\x09\x76\x25\xa6\x98\xf8\x84\xbf\x01\x87\x01\x55\x84\xe5\xa2\x10\x56\x44\x6d\xe7\x2b\x6c\x94\x5d\x8b\x52\xdf\x50\x9b\xd6\x37\x86\xc2\xe6\x72\xfa\x8c\xf1\xfd\xa4\xee\xd8\x50\x1f\x64\x21\x72\x2c\x13\x8b\x7a\x0b\xd6\x8d\x32\x23\x76\xb5\xef\xd3\x5a\xa9\x0b\x66\x0d\xbe\x35\x6a\xf2\x05\xee\xac\x5a\x38\x02\x00\x56\x55\xad\x4b\x66\x14\xaf\xcc\x5c\x5b\xf0\x9c\xf0\x8a\x67\xd2\x2e\x98\xad\x79\x76\xed\x6e\x81\x70\x2a\x3c\x6e\xc4\xb2\x7d\xca\x72\x8f\xc9\x97\x56\xae\xd9\x79\xad\x9b\xd9\x1c\x4a\xa9\xf0\xae\xac\xe0\xc6\xbf\xfd\xca\xdf\x93\x29\x6f\x58\xbe\x50\xbc\x94\x59\x68\x21\x52\xeb\x1b\x69\xa4\xa6\x80\x97\x1f\xf7\x3c\x34\x63\xc0\x20\xda\x51\xc1\x65\xc9\xf6\x8c\x10\xec\xc4\x6f\x09\xfc\xe6\x02\x15\x4a\x74\x28\xd6\x69\x6e\x1d\xe1\x3e\x12\xfe\x80\xfb\xa4\xe5\xc0\x21\x63\x01\x75\x02\x37\xf3\x95\x0f\xdd\x0f\xcb\xb5\x7a\x4e\xba\x86\xbc\x37\xdf\x09\x48\xa8\x5c\x47\x89\x31\x87\xe7\xa7\x26\x36\x73\xa9\x9b\x22\x8e\x04\x5f\x14\x5a\xcd\x62\xfc\xbb\x76\x67\x3a\x5e\xaf\xa0\x2d\xe6\x8d\xcc\x1b\x5e\x20\x97\xa7\xc9\x1c\x5d\x9c\xe2\xcf\xe5\x6c\x6e\xc7\xb7\x02\x9c\xa0\x28\x0c\xdb\x33\xe3\x1f\x2a\x97\x12\x6e\xa5\x01\xa9\x60\xc9\xd9\x86\x0e\x65\x68\x3d\xc9\x17\x80\xbf\x4b\x39\x9e\x49\x4e\x8e\x47\xab\xc7\x21\x56\x51\x1c\xa6\x77\x18\xfa\x24\x3a\xcd\x08\xbc\xc4\x8e\xc4\xb0\x53\x97\xe7\x06\x4d\x1f\xdb\xd6\x1b\xe1\x63\xdb\x36\x80\x04\xbd\x78\xfd\x46\xc1\x1b\xd3\x67\x6f\xda\x6d\x72\x29\xca\xaa\xe0\x76\x98\x0c\x93\x9d\xef\x23\x2f\x78\x14\x43\x76\xc7\x91\xab\x7c\xcc\x0b\xb7\x23\xcf\xbf\x3b\xa2\x02\x37\x3c\x60\x49\x16\xdb\x65\xdb\xaa\xd4\x77\xa9\x76\xca\xd2\xca\xa3\x05\x90\x6a\x57\x22\x07\x66\x44\x4f\x06\x57\xc5\xad\xc2\x56\xc1\xee\x8f\xf3\xef\x8e\x46\x4c\x4e\xc4\xc4\xff\x15\x6e\xf5\xdc\xd0\xea\x19\xd6\x39\x84\x42\x1a\xd8\xcf\x30\x95\xd8\x07\x1c\xff\xf6\x9f\x7f\x75\x93\x74\xdf\xfe\x6d\xfc\xd7\xa8\xa5\xd1\xdf\xfe\xe9\x98\x6b\xed\x6e\x48\x3f\x8d\xd3\xcc\x81\xef\xb9\xbf\xfe\x79\xae\xf3\x8b\x4a\x64\x13\x7c\x2d\xf3\x4f\x4c\x16\x60\x42\x59\xa7\x72\x9f\x6b\x48\x30\x93\x39\xee\x72\x78\x76\x2d\xfe\xe5\xe3\x04\xd4\x35\x95\x18\x49\xc6\xad\x50\x20\x00\x7c\xbd\xb1\xd2\x16\x7f\x8e\xfd\x56\x61\xfe\x7b\xd3\xb8\x03\xaa\xd5\x1a\x8e\x39\xb2\x92\x43\xc5\xc4\x3b\x69\x00\x7e\x06\xdf\x15\xc8\xc1\x29\x87\xdd\xcb\x34\x37\xac\xa3\x70\x40\x1b\x82\x16\xac\x6e\x6e\x7f\x50\xda\xfe\x21\x2c\xbf\xcf\x4f\xc4\x7e\xe6\x8c\xdf\x68\x99\xb3\x06\xda\x67\xb9\x13\xa8\xc0\xc1\xdd\x76\x30\xbc\x5a\xb0\x52\x1a\xcb\xaf\xc5\x84\x5d\x38\x99\x15\x27\x1a\x20\xf5\x14\x83\x66\x34\x22\x67\x8d\xb2\xb2\x80\x6f\xdb\x71\xdc\x94\x63\x59\x76\x3a\x65\xa6\xc9\xa0\x47\x6f\x2d\xc6\x5e\x3a\xd2\x5d\x4b\x3c\xa6\x7d\x97\x51\x58\xec\x39\x47\x33\xaa\xca\xe1\xa7\xd8\xf1\x57\xd1\xf6\x5a\x4a\xaf\x76\xf3\xd4\x2a\x6b\x25\x22\x10\x13\xba\x6c\x3b\x21\x58\xf8\x3c\x20\xb4\xe8\x28\x6e\xa0\x44\x26\x8c\xe1\xf5\x02\x9b\xa2\xca\xd0\xbb\x91\x32\x5f\x41\x52\x97\x5c\x35\x30\x40\x2d\xb0\xc5\x6e\x93\x01\x75\x38\xbb\xaa\xf5\xb5\x50\xa1\x92\xc0\xad\x62\x9a\x57\xdd\x26\x8f\x62\xf7\x69\x96\xcd\xb9\x9a\x89\xb6\x98\xbc\xe4\x39\xd0\xfe\xdb\xa0\x69\xf9\xf7\x71\x14\xe0\x53\xa7\xb0\x48\x0b\xa4\xb8\x72\xf2\x29\x44\x3f\xde\xaa\x00\x87\x3b\x6a\xc3\x13\xee\x95\x64\xb1\x16\x4f\x64\xc3\xf8\xc3\xfb\x7b\xc2\xc7\xa0\x50\x6c\x30\x87\xbb\x14\x96\xe7\xdc\xf2\xc1\xf2\xb8\x5f\xf2\xd0\xfc\x93\x72\x3b\x60\x3b\x44\x39\x1f\x24\x63\xbd\x2a\xa9\x2b\x19\xc3\x0b\x00\x37\x98\xfb\xd5\x07\x78\x2a\xeb\xf6\x35\xc5\x1e\x31\x3d\x1b\x74\x35\x5e\x14\xfa\x96\x00\xeb\xfc\x68\xc8\xb2\x44\xce\xf2\x06\xd4\xbe\x96\xa5\xf5\x89\x8d\x0f\x12\x3a\x71\x0b\x3d\x18\x95\x2f\xdb\x14\x80\x2c\x4d\xd1\x5e\xa9\xa0\xa1\xac\x13\xca\x4a\x6c\xa5\xef\xf1\x20\x88\xf8\x8d\xc2\xa3\xda\x59\x06\x58\xa7\x99\xb0\xa6\x4d\xae\x44\x69\xe2\x58\x24\xc9\x72\xf2\x25\x80\xa8\xa1\xa5\x21\x73\x7c\xb5\xa6\x88\x0b\x67\x34\x49\x0b\x27\xbf\x36\xbe\x32\xc3\xc5\x90\xb0\x0b\xee\x4b\x9d\xf7\x0f\x46\x75\xda\xb9\xb6\x03\xb7\x45\x27\x58\x80\x64\xc0\xd7\x83\x37\x40\x68\xde\x24\x68\x19\x28\x02\xe6\xfc\x66\x7d\xaf\x6a\xab\x99\x8e\x43\xcf\x36\x78\xdc\x18\x1e\x37\x7e\xda\xd7\x7f\xdd\x3f\x79\xd1\x5f\x3d\x93\x18\xd3\x09\x0d\x10\xb0\x70\xac\xf5\x62\x90\x78\x42\x07\x4c\x29\x8c\x4b\xf2\x97\x12\x34\x42\x52\x0c\x95\xd5\x0a\xe9\xb8\xe6\x33\xf6\x87\x44\xe3\x22\xcd\x36\x58\xc3\x58\xcc\xb4\xe7\xcd\xe3\x09\x2d\xbc\x47\xf5\x4a\x6f\xdf\xef\x0c\x06\xaa\xde\x6a\xab\xd1\x17\x4d\x05\xf5\xdb\xa9\xca\xd0\x8e\x3f\x94\xaa\xba\xcd\x5c\xeb\xa2\xf0\x2d\xdc\xd1\x42\xee\xa4\x38\x41\xfb\x20\x0c\x9a\x8c\x82\x1b\x22\xe8\xfb\x4a\xdc\x06\xc5\x8e\x1b\x44\x2d\xf5\x21\x7b\x70\x95\xf8\xbc\xb3\x55\xe3\x4d\xa0\x07\x3e\x7c\x7f\xa8\x16\x38\xf9\xe3\x88\xb8\xe8\x60\x60\x33\xf7\x28\x67\x03\x28\x7e\x55\x38\x2d\x24\x5a\x80\xf0\x9c\x8e\x48\xb3\x3a\xba\xeb\xb5\x98\x92\x67\x20\xfe\xe8\xc3\x7e\x8b\xf2\x30\xf9\xe1\xa4\xcd\x92\x24\x35\x39\x42\xca\x24\xaa\x27\xb7\xa4\x59\x45\x9d\xd1\x12\xc0\x9e\x55\x33\xe8\x99\x7a\x30\x60\xf2\xc1\x70\xe9\x07\x80\x0d\x23\xd5\xfa\x39\xc5\xed\x30\x6b\x74\x0c\xef\x5e\xc3\x65\x31\x40\x22\x27\x64\x71\x0d\x11\x0e\x4e\xd8\xce\xe1\xf9\x29\x0c\xec\x2d\xcc\x19\xfc\xe1\x35\x8f\x10\xd7\xbc\x12\x8e\x2f\xb4\x88\x56\xb0\x23\xe3\xdf\xae\x48\x73\x6b\x0f\xe7\xb7\xd0\xbe\x89\xc2\x45\xbe\x7c\xd9\x09\xae\xc3\xf3\x53\x7c\xe2\x04\x3a\xf8\x72\xb5\x20\x9d\xd0\xce\x65\x9d\x8f\x2b\x5e\xdb\x05\x3a\x59\x46\xc9\xd3\x42\x0d\xe7\x00\xe4\x18\x34\x92\xdd\xa7\xe3\x5b\x7c\x25\x6b\x04\xe4\xf3\x71\x22\x0a\xf4\xdd\xb9\x32\x0f\x8d\x22\x7d\x2b\x4a\xfd\x95\x50\x24\xee\xf8\xe3\x7d\x2c\x8f\x82\x22\x09\x8f\xfe\x58\xfa\x83\x63\xff\x26\xcd\xbe\x41\x75\x00\x74\x7d\xf2\x8b\xe9\xb8\xcc\x2d\xe8\x96\xe0\xa4\x70\x23\x8d\x98\x9c\x3a\x41\xac\xd5\x98\x8a\xeb\x83\x13\x9f\xf4\x53\x9f\xa6\x8a\x0e\x07\x38\xba\xd1\x53\xe2\x9f\x86\x53\xce\xf6\x94\x56\x78\xf2\xf1\xde\x7d\xcc\xcf\xbd\xc3\x03\x0d\xb7\x04\x69\x1e\xfb\x25\x22\x4e\xe3\xd5\x04\xa9\x72\xb7\xec\x20\xf6\xc0\x63\x61\x9a\x2c\x13\x22\xf8\xb8\xe2\xbe\xf6\x2d\x67\xa2\x29\x97\xdc\x66\x73\x61\x98\xd1\x80\x8f\x6a\x2c\x2f\x8a\xd6\xb7\x44\x84\xd2\xa0\xe9\x78\x3f\x7f\xa4\x00\x25\xd5\xe8\xe4\x66\xab\x0a\x4e\xbe\x9c\x69\xa3\x32\xcc\x00\x93\x76\x11\x77\x46\x4d\x94\x3d\x30\xa8\x0d\xba\x9c\xe4\x14\xbd\xcb\x91\x61\x1c\x88\x09\xac\x75\x81\xcc\x74\xee\x7b\x8f\x83\xad\x46\x20\x80\x8e\x8f\x5e\xf1\xec\xfa\x96\xd7\xb9\x81\x42\x7b\x6e\x25\xf6\x62\x1c\xa1\xd6\x11\x2b\x11\x6a\x77\x37\x0e\xd4\x4a\xd5\xd5\x6f\xe2\x89\xec\x45\xb3\x5e\xd2\x7b\xf6\x83\xbe\x63\x44\xe8\xd2\xd7\x4e\x8c\xf1\xc6\xea\x92\x5b\x99\x81\x2b\x4a\x4e\xa3\xe8\x42\x19\xba\x5b\x84\x20\x31\x4a\x01\x90\x2b\xf4\xe2\xb4\x0f\x56\x6b\x40\x2b\x26\x1e\xcd\xd5\xbf\xe6\xea\x79\x45\xa2\x89\x1e\x74\x89\xf1\x6a\x88\x82\xd5\x42\x30\x59\x3a\x05\x96\x43\x03\xed\x69\xa8\xf9\xf7\x21\x97\xf7\x11\xc5\x69\xe9\xdf\x43\x9c\x2b\xba\x0b\xfd\x69\x45\xa1\x6f\x0d\xb3\xb7\x3a\x18\xfd\x6d\x34\x81\x8a\xdb\x47\x1d\x95\x8e\x7e\xe3\x8e\x9a\x23\x4b\x74\x8e\x46\x6e\xef\xdc\x8a\xa2\x70\xff\x7d\xdf\x69\x32\x93\x55\x33\x92\x33\x85\xe5\xcf\xd2\x78\x0f\x0c\xe5\xb3\xef\xe5\xb5\xae\x2a\xf2\xa5\x96\xfb\xdd\x19\x41\xe8\xb2\xbe\x11\x06\xa2\xf7\x3e\x43\xde\x91\x61\x26\x94\xa8\xb9\x85\x40\x08\x81\x3a\x02\x43\xe9\x3e\x22\x59\xc6\x95\x93\x8b\xc9\x85\x81\xa0\xf7\x93\x87\xbe\x05\x8f\x85\xa3\x94\xdf\x30\x66\x82\xc0\x39\xfb\xec\x8d\xc1\x17\x0a\x67\x36\x64\xf3\x7f\x90\xcd\x80\x6e\x5f\x32\x1b\x26\x6c\xef\xb0\xa8\xe6\xd1\xa8\xb1\x96\x1e\xaa\xa5\xd2\x99\x26\xcf\x3b\xaa\xb5\x31\x67\xfe\x27\xf7\x79\xf4\x56\x83\x7f\xdf\x30\x5b\x0d\x7e\xab\xc1\xaf\x71\x6d\x35\xf8\xee\xb5\xd5\xe0\xbb\x57\x60\xf0\x1f\x85\x2c\x41\xbd\x49\x65\xc9\xfb\x08\xc4\xce\xb4\xa5\x10\x2b\xa8\x78\xfc\x4e\x4f\x11\x07\x41\x72\xcb\x17\x13\x25\x2c\x21\xea\x78\xa7\xe0\x6b\x3f\xde\xd7\xb5\x53\x76\x48\x37\x8e\x0e\xab\x3f\xf9\x1e\xcb\x27\x7a\x8a\xd5\x28\x7f\xdb\x88\x2f\x7c\xbe\x6b\x28\xde\xe9\xbe\x87\xfa\xba\x78\x80\x4c\x4c\xd8\x85\xf0\x2d\x4c\x92\x87\x2f\xa3\xa6\xe4\xc2\x72\x59\x98\x56\xe0\x5e\xde\x21\xc0\xd7\x17\xa8\x0f\x69\x9f\x85\x9a\x88\x61\xad\xc4\xb6\xc8\x29\x4a\x3c\x8b\x33\x3a\xdb\x1b\xee\x0a\x39\x9c\x4e\xd9\x6b\x91\xe9\x1b\x51\x23\x6d\x4f\xde\x55\x5c\x39\x4b\xe8\x39\x97\x85\xa3\xac\xa7\x70\xeb\x5c\x85\x76\x5e\x69\x88\x2f\xf2\x68\x87\x6d\x4d\xcb\x58\xd2\xa4\x08\x70\xc7\xdd\x4f\x89\x44\x55\x2d\x6e\xa4\x6e\x8c\xcf\x3b\x6d\x2c\x0a\x25\x63\xc9\xf6\x98\xcb\x59\xe8\xba\x19\xd2\xc1\x6a\x91\xe9\x3a\x6f\xb7\xaf\xb1\xdc\x36\x26\x2d\x65\xcf\x30\xa6\x36\x5c\x38\x25\xd0\xf1\x01\x69\x69\x43\xea\x33\x40\xb0\x01\xc6\xe9\xe6\x00\x81\xb5\x62\x00\x53\x23\xe2\x80\x31\xf7\xc3\x2a\x21\xa9\x70\x41\xdd\x26\x9a\xf8\xaf\xf0\xc7\xa3\x76\xef\xb4\xc9\x19\xd2\xb4\xd9\xc5\x6d\xa6\x83\x04\xfb\x84\x3b\x86\x12\x19\xe2\x81\x9d\xc0\xf6\xf5\x6a\xfd\x31\x5a\xfe\xaf\xe9\x59\x87\x85\xb3\x46\x90\x3d\x45\x2c\x65\x45\x16\x85\x2c\xcb\xc6\xba\x73\x30\x61\xa7\x58\x77\x0b\x36\x0d\x99\xca\xd3\xb6\xe6\x53\xd4\x66\xed\xdc\x87\xf8\x1a\x2e\xf8\xc6\x86\x0b\xc0\xb1\xee\x52\xbf\x8e\x17\x2d\x46\xd3\xd3\x4a\x60\x0e\x93\x5b\x5f\x9f\xe3\x94\xdc\xbd\x36\x64\x56\x7a\x0d\x78\xb4\xf0\x1a\xce\x0c\xc2\x6b\x10\x2b\x06\xaf\x21\xcf\x3e\x5e\x43\xe9\x85\x78\x2d\x6b\x87\xc0\xd9\xc1\x33\x97\x68\x89\xc9\xee\xa8\x74\x3e\x59\xc1\x01\x42\xce\x9d\xce\x29\xa1\x2e\xf5\x1f\x62\x99\xfd\xa9\x1b\xfe\xda\x27\xaf\x06\x29\xc4\x6f\xb8\x2c\xa0\x62\x42\x2a\x23\x73\x81\x5d\x81\x88\x73\x0c\xf6\xbe\x83\x2a\xa4\x9d\x64\x77\xc7\x3c\xc7\x25\xaf\xc6\xd7\x62\x31\xd0\x72\x0f\xb6\x13\x97\x27\x8a\x94\x28\x79\xd5\x7b\x74\x2c\x26\x19\x5c\x26\xed\xbe\xc0\x22\x15\xfc\xf0\x8a\x54\x23\x5f\x37\xd3\xd6\xec\x64\xba\xac\x1a\x2b\x22\x15\x8a\x94\x9d\x7b\xeb\x15\x09\x54\xe3\x41\xc9\x15\x9f\x89\x71\x18\x76\xdc\x8a\x8b\xb5\x5b\x87\xc7\xd7\xc0\x6c\x70\x58\x4c\xc1\xf8\x7a\x74\xe5\x34\xe9\x35\x58\x41\x2f\xfb\x28\x45\xbd\x6c\xf8\xc2\x5e\xf6\xf1\x8b\x7b\x59\x00\x5b\x18\xfe\xdc\xbf\xf6\xe0\x0f\x9d\x93\x4f\xa6\xd2\xfb\x4e\x7e\x82\x32\x1c\xc6\x91\x86\xe9\x52\x5a\x2b\x7c\x52\x75\x38\xc9\x90\x04\x13\x17\xbf\x13\xcf\x81\xe8\x15\x66\x4e\x8b\x77\xa1\xbd\x6a\x64\xd0\x83\xb7\xed\x56\x1a\x34\xc1\x15\x93\x65\x85\xcd\x1e\x80\x77\x8c\xbd\xa6\x4c\xd1\xa1\x30\x93\x0c\xb2\x37\x99\x78\x07\x31\x32\x7c\xd8\x96\x4d\x6d\xd9\xd4\x96\x4d\x7d\x0c\x36\x85\x98\x00\xfd\x21\x36\x12\xf6\xe4\x07\x25\x10\x4a\x7e\x25\x0a\xf6\x73\x23\xea\x05\xd3\x37\x22\xaa\xcc\x82\x46\xb5\x4e\x91\xc5\xda\x26\x8a\x94\xf7\xd5\x64\x1f\xa8\x5b\x02\xec\x85\x93\x77\x55\x2d\x10\x3b\x6c\x70\xa1\xd0\x7d\x40\x0a\x01\x8a\xab\x10\x56\x26\x76\x68\x61\x5a\x75\xe2\xe2\xe2\xb5\x60\x87\x67\xc7\x43\x7a\x1e\x1f\xba\xd1\x7f\xf8\x1e\x12\x21\x29\xc3\x37\x20\xf7\x42\x66\x74\x08\x2e\xb3\x6b\xb1\x18\x51\x01\x02\x75\x29\xf7\x37\x63\x2d\x4f\xda\x2a\xb1\x1f\xc4\x76\x7a\x3d\x02\x7f\x41\xbf\xd6\x78\xe9\x58\x9e\xb8\x0f\xd4\xff\xd0\xbb\x85\x5e\x7c\xdd\xd5\x4e\x0f\x77\x2b\x74\xdf\xf2\x38\x03\x61\x83\x02\xb6\x02\x70\xd8\x07\xeb\x16\x60\xd0\xe5\x09\x97\xf1\x23\x11\x2b\x1c\xc1\xa4\x92\xfd\x5a\x2c\x76\x0d\xa1\xd0\x69\x65\xe6\xb2\xf2\xfd\xd5\x81\x4f\xd2\xa9\x64\xdf\x41\xc9\x88\x1f\x02\x39\xe2\xa9\x1a\xb1\x33\x6d\xdd\x7f\x4e\xa0\x06\x0e\xce\xf1\xb1\x16\xe6\x4c\x5b\xf8\xe4\x41\x93\x1b\x5f\xed\x23\x11\x9b\xd2\x72\xc8\x6d\x0d\xd5\x9e\x80\xfa\xe2\x2b\xa3\x80\xa8\x94\x2c\x1e\x16\x46\x1a\x76\xaa\x98\xae\x3d\x55\xad\x6f\x19\x6b\x68\x08\x1f\xd8\x8f\x92\xad\x56\x8c\x41\x8b\xa1\xeb\x64\x2d\xde\x33\x5c\x48\xa7\x92\xfe\x1b\x88\x25\x42\x6a\x5c\x28\xe7\x82\xb6\xa5\xdc\x8a\x99\xcc\x58\x29\xea\x19\x20\x16\x66\xf3\xa1\x97\x78\x28\xb9\x88\xd7\x80\xd2\x11\xaf\x41\xf7\x21\xa8\x28\x2f\xa0\x50\xef\xe3\xa8\x3f\x38\x36\x8a\xeb\x92\x57\x6e\x0b\xfe\x6f\x27\x95\x61\x17\xfc\x1f\x68\x8b\x6c\x26\xec\x90\x19\xa9\x66\x85\x48\xbe\xa3\x10\x5c\x3c\x8c\x1b\xc1\x99\xb7\x3f\x37\xf2\x86\x17\x02\x0b\x6b\xb9\x0a\x4d\x0b\xf5\x74\x49\xe9\x1a\x51\x6f\x64\xc7\x97\x83\x53\x77\xe7\x5a\x2c\x76\x46\x4b\xdb\x76\xe7\x54\xed\xb4\xe0\xa7\xc9\x46\x0d\xca\x05\xc4\x63\x76\xe0\xbb\x9d\x4f\xa3\xa7\x3d\x02\x33\x76\xb0\x3d\x49\x51\xd2\xa3\x82\x63\x5c\x7e\xd8\x88\x76\x77\xf4\x55\x2d\xd9\x2e\xa2\x7b\xda\x6c\x06\x2a\xda\x1e\x3c\xf4\x0b\xa0\x21\x43\x95\xd0\x0d\x40\x7f\x9c\x57\x9f\x46\x20\xfe\x5a\xd1\x44\x07\xe0\x8b\x3d\xa8\x4c\x82\x45\xd6\x66\x8c\xdf\x41\xf1\xef\x20\x88\xaf\xa7\xec\x79\xdb\x6a\x0d\xc2\xa5\x4e\xad\x22\x98\x19\xa5\x2d\x93\x2a\x2b\x1a\x8a\xdf\xc3\x4f\x31\xe8\xfb\xb0\xc8\x3b\xf8\xc6\x6e\x87\xf5\x3b\xda\xe7\xb8\x2f\x61\x07\x74\x33\x7e\x21\x01\x3c\xe4\xb8\x22\xb5\x37\x49\xad\xe9\x5a\x55\xd2\x69\x8b\xc0\x2c\xd5\x2f\x9f\xcb\xab\x5a\xb0\xa3\x39\x57\x4a\x14\x11\xfe\x22\xf9\x4a\xb9\xb5\x3c\x9b\x63\x9a\x09\x67\xee\x1c\x17\xc2\xee\x1a\x36\xd7\x10\x53\xcc\xe6\x52\x05\x44\x32\x15\x70\x48\x5b\x28\x86\x0d\x34\xd5\xec\x6b\x20\x0d\xd8\x8f\x71\x97\x1a\x32\xd2\xbe\x8b\x3b\x21\xa6\x7d\x1a\xdb\xd6\x3e\xdd\x7b\xda\x1e\x57\x74\xe6\x81\xf2\x28\x97\xa1\x69\x20\xdc\xfb\xfe\x4e\x8f\x65\xf0\x77\x4b\x35\x15\x75\x8d\x2b\x74\x25\xe8\x07\x4c\x4e\x59\xa3\xa2\xe4\x71\x6c\xff\x36\xd7\xb7\x2c\xd7\xec\x56\x40\xb6\x90\x53\x20\x20\xfd\xdc\x78\xd5\x23\x9a\x29\x54\xaa\x64\xba\xac\x6a\x5d\xca\x90\xbe\x4d\xdb\x63\x63\x50\x83\x45\xb3\x76\xb7\x86\x74\x15\x8b\x46\xa5\x6d\xd2\x9f\x1f\x31\xcb\xeb\x99\xb0\xee\x19\x4c\x35\xe5\x95\xe8\x89\xa8\xb8\xe9\x7e\x3e\x83\xf6\xcf\xdb\x0d\x0d\xf4\x12\xaa\xfd\x4a\x67\x3c\xf6\xda\xff\x0a\x12\x0d\xa0\x0a\x66\xaa\xeb\xcc\xa7\x35\xfa\x9e\x7c\xd8\xc0\xc9\xed\xc2\xef\x48\x70\x36\xca\x9a\x9e\xfd\x94\xfa\x74\xd6\xc3\xad\xf0\xfd\xf7\x67\xc3\x34\x44\xda\x6d\xc7\xbb\x6b\xd7\xdd\xea\xba\xc8\x6f\x65\xee\x93\xba\xf6\xdc\xcd\xfb\xfd\x28\xb0\xc1\xfe\x48\xbd\x4f\xfa\xed\xad\xcc\x07\x22\x3e\x0c\x95\x12\xdd\x97\xf4\x39\xa2\x33\xa0\xba\xcc\x85\xb2\x8e\x59\xd6\x86\xed\xc1\x2f\xf6\xd9\x89\x44\xf0\x2a\xf8\x3d\xa4\xa2\x95\x57\x52\xb5\xc0\x68\xed\xa2\x3a\x71\xe9\xf8\x86\x37\xef\x8d\xb0\x08\x3b\x04\x55\xe6\xda\xce\x99\x91\x65\x53\x58\xae\x84\x6e\x4c\xb1\xe8\xb9\xb5\x1f\xeb\xc2\x4e\x0b\xf1\x0e\x4f\x78\x7f\xa5\x27\x0c\x95\x2a\x3f\x50\x5c\xd5\x62\x0d\x2e\x69\x3f\x6d\x6d\x62\x7e\x10\x34\xa1\x80\x9d\x25\xde\x89\x8c\x60\x15\xaa\xa2\x99\xc9\xb5\x70\x74\xb6\x1d\xc4\xd7\xfa\xf5\x87\x75\x10\x6f\x1b\x25\x37\x46\xb4\x98\xbf\x04\x72\xb7\x29\xbd\x64\xf8\x86\xdf\x9b\xd5\x2f\x2f\x57\x37\xfb\xce\x45\x25\x54\x0e\x4d\x87\x9e\xb7\xe7\x0f\x27\xbf\x31\xda\x53\xb3\x9f\x61\x64\x85\xef\x1c\x94\x48\xe9\x28\x41\x72\xae\x8b\xdc\x30\xf1\xce\xd6\xdc\x89\x83\xd2\x31\xfe\xf0\x9b\x29\xe3\xaa\x2f\x6b\xff\x5c\x5a\xd6\xb2\x4f\xa4\x81\xe6\x9f\xa9\x06\x6a\x06\xed\x65\xbf\x6b\xe2\x0e\xf6\x2d\xf5\x92\x8f\x07\x6e\x6b\x8f\x02\x94\xb8\x83\x49\x21\x11\x56\xb4\x9f\x6f\x4b\xaa\x96\xb1\x7d\xd6\x6c\x43\x6f\x56\x34\xa5\xee\xcc\x6a\x83\x87\x75\xdb\x93\xfe\x71\xf5\xa4\x9f\x02\x42\x6a\xff\xb6\x21\x34\x4e\xc7\x67\x47\x1f\x92\xda\xfa\x21\x3e\x3a\x3a\x51\x91\x4c\x76\xeb\xe6\x07\x22\xa4\x31\x66\xdc\x6a\xb4\x65\x91\x8d\x52\xeb\x71\xf3\x4d\x77\xec\xe6\x96\x1b\x61\xfb\x78\x92\x53\x05\xb3\x1d\xcf\xb1\x9c\x78\xe7\xd3\x57\xd8\xf7\x1e\x90\x47\x3c\x6a\x28\x1b\xff\x8d\x74\x51\x95\xdc\xe9\xb4\x50\x4f\x77\xdf\x56\x44\x84\xcc\x32\x1c\x23\x77\xab\x9d\x71\xbb\x76\xc5\x6e\x6f\x69\x4c\xb3\x7d\xf3\xe6\xf4\x78\x48\x12\xba\xf1\xbc\xb6\x0a\xff\x4e\xc9\x38\x09\xc5\x64\x8d\x92\x3f\x37\xb1\xa1\x0d\x68\xe7\x81\x70\x74\xff\x26\xa8\x33\xcb\x44\x1b\x26\x38\x96\xe6\xba\x7f\x6b\xa0\xa5\x21\xd3\xe3\xfe\xf5\xd1\x09\xa3\x4f\x3f\xc8\x3b\x7f\x1f\xf7\x7c\xdf\xc6\x1e\xb3\x4c\xb4\x81\xbb\x5c\x9a\xeb\x0d\xb4\x15\xea\x6b\x03\x57\xf9\xd9\x7a\x25\x39\x0f\x33\xd2\xd0\xb5\xf0\x7c\xe7\x81\xa8\x25\xc6\x42\x37\xec\x96\x90\xb7\xc9\x42\xbc\x94\xd5\x33\x76\xa2\x4c\x53\x8b\x36\x43\xab\x3b\x94\xd3\xb7\x3e\xd8\x5e\x04\x70\x73\xf3\x6c\xb0\xa8\xc4\xd0\x3b\xf5\x73\x09\x73\x54\xbc\xb6\x60\xc8\x0d\xb3\x91\xc2\x70\x9e\x4f\x47\x1f\xa8\x0f\xd9\x49\xa7\x53\x5f\x9b\x31\x22\x18\xde\xd0\x72\xc8\xdf\xe4\xf6\x4e\x84\xcb\x1f\xef\x96\xe7\xa1\x17\x06\x3b\xc8\xc5\xcd\x81\xc9\xf9\xd3\x11\x3c\xc6\x57\xb9\xa7\x73\xe2\x86\xed\x3c\xdd\x99\xb0\x0b\x59\xca\x82\xd7\xc5\x22\x69\x0d\xdc\xde\xe7\xc4\xae\x1f\x10\xb2\x59\x9e\xec\xb0\x3d\x5d\xc3\xc8\x19\x57\xac\x10\x1e\x04\x8c\x4e\xf5\x02\xed\x8e\xfd\x87\xc1\x22\xd9\x83\x89\x14\x21\xb7\x1c\x68\xaf\xe5\x5e\xa7\x22\x79\x9f\xf4\x79\x38\x6e\x05\x9e\x54\x4e\x0a\x4e\xd8\x1b\x12\x5f\xa4\x17\xe0\x66\x80\xc3\xec\xef\x78\x58\x8b\xf5\xf0\xfc\x21\x6b\x79\x36\x96\x43\x77\x0f\x8d\xd0\xeb\x7a\x4f\x66\xd2\xbe\x16\x95\x1e\x40\x87\xc3\x81\x3a\xf1\x05\x69\xdd\x07\xda\x48\x68\xec\xc8\x2d\xe3\xc8\x92\xb2\xa6\xe0\xce\xa8\xc3\xe8\xc2\x84\x1d\x9f\x9c\xbf\x3e\x39\x3a\xbc\x3c\x39\x7e\xc6\xbe\xa6\x91\x64\x6c\x07\x4c\xd8\x65\xdc\xaa\x25\x2a\x78\xa3\x7e\x18\xe1\x59\x23\x62\xb1\x5c\xb5\x2d\xe7\x00\xba\x9e\x2b\x76\xaa\xa4\x6d\x9b\xed\x62\x5d\x40\xa1\x15\x65\xfa\xbb\x5f\x53\x74\x63\x26\x2d\x81\x21\xe3\x60\xee\xeb\x74\x34\xaa\x0a\x77\xca\x66\x5b\xd4\xfd\x08\x95\xbf\x76\x79\x36\x61\xa8\xfa\x2e\x92\xc3\xd8\x58\xa1\x83\xa8\x47\xc8\xc2\x68\x71\xfb\x39\x0a\xdb\xd0\x30\xdd\xf7\xa2\xd0\x75\xd2\xcf\x7c\x32\xd9\x9d\x30\x27\xc6\x77\x27\xbb\x5e\xe5\x2b\x96\x9a\xee\x87\x41\xe3\x96\x3f\xe9\x86\x9f\x30\xf6\xca\x57\x55\x02\x0e\xea\xea\xfe\xfd\x08\x59\x1e\x75\x6b\xef\x1c\x1b\x8f\x36\xd3\x5c\xc5\x0f\xa5\x1e\x41\x33\x79\x43\x68\x96\x1b\x8b\x29\xb4\x53\x1d\x64\x19\xe3\x37\x27\x4b\xf9\xf5\x8b\xcd\xbd\x1b\x72\x9c\x81\xde\x8c\xd8\x17\xbd\x57\xa6\xcb\x12\x9b\xda\xcc\x03\xce\x5e\x0b\x95\x17\xb8\xe3\x46\xac\x7c\x6c\xe5\x33\x5d\xeb\x60\x77\x24\x83\x1f\xaa\x63\xd5\x87\x8f\xa9\xfa\x59\xb5\xe6\xd4\xfd\x3b\x00\x53\x2f\x29\xe3\x21\xc8\x48\xcc\x1e\x84\x87\x1f\xbc\x3e\x39\x3c\x7e\x79\x32\x29\xf3\x47\xc8\xa4\x85\xca\x2b\x2d\x95\x35\xeb\x5a\xf8\xdc\xce\x37\xc0\xde\xc3\xb4\x87\xd1\xe1\xc2\x70\xfe\xfc\xf8\x0f\xa2\xc6\x60\x04\xee\x16\xed\x2e\xab\x2b\x5d\xe8\xd9\xea\xd6\xc1\xf7\xd8\x36\xbf\xc3\xa6\x12\x63\x3e\x76\xfb\x71\x73\xc6\xae\x9d\x0f\x65\xe7\xda\xb9\x27\x64\x4b\xad\x60\x37\xda\xf9\xe7\x41\xb0\x4f\x68\x46\x2c\x51\x11\xdd\x39\xc0\xde\x7c\xdf\xb6\xb6\x11\x5a\x25\xea\x52\x62\x15\xca\x87\xda\x17\x9b\x21\xfe\xba\xa6\x85\xe3\xe4\xe7\x6b\x6e\xd7\x94\xea\x7e\xa4\x54\x80\x54\xb5\x18\x87\x4e\x33\x53\x59\x08\x40\x55\x0f\x1a\x52\x2c\x4f\xbc\x27\xd8\xfb\x8d\xf1\xae\x62\xd1\xf5\x08\x47\xc0\x6e\xde\x11\x8f\xf8\xd3\x45\xb1\x68\xbb\x09\x92\x37\x8c\xcf\xb0\x83\x4c\x4d\x01\xb9\xaa\x96\x37\xb2\x10\x33\xe8\x14\x2a\xd5\x2c\x42\x1e\x8c\xb1\x0a\x09\xa6\x32\x0d\x4e\xbd\x74\x7f\x45\x4d\xab\x61\x67\x9d\xbd\xba\x84\xa6\xb3\x90\x52\xd1\xdb\xe0\x74\x0f\x84\x33\x3f\x1e\x8f\xc1\xf5\xb7\xf7\x2f\x67\xf9\xe4\xc5\x3e\xfb\x5e\xd0\x73\x34\x74\xc5\xad\x65\x66\xd9\xed\x5c\x87\x16\xa5\x30\xd7\x96\xb2\xb0\xa1\x31\x8d\x8f\xee\x3a\x70\x77\x3a\x8d\x1a\x45\x79\x72\xbf\x14\xd0\xf7\xab\xcd\x33\x78\x8c\x56\xd2\x86\x04\xe8\xc0\xdc\xde\x07\x9b\x56\x9d\x91\x90\x3e\xe0\xe5\x02\x67\x66\x51\x16\x52\x5d\xb7\x6d\x95\xa6\x9a\x90\x59\x05\x73\x5f\xf8\x53\x53\x0b\x5e\xdc\x2d\x31\xd6\xd9\xa3\x1b\x93\x16\x76\xb0\x78\x04\xc4\x0b\x1c\xb7\xf8\xc6\x33\x2f\x4a\x00\x8b\x59\xfd\xce\xce\xa3\xa6\x98\x34\x99\x91\xfd\xd9\x3b\x0c\x93\xf0\x76\xc5\x4e\x2f\x8e\x2e\x4e\x3f\x69\xd4\xef\x2e\xe1\x0a\xb3\x7b\xd4\xd6\x83\xfc\x79\xbd\xac\xaa\x31\x2b\x9a\x75\x7f\x89\xae\x97\x73\x5d\x5b\x5e\x6c\x80\x71\x66\x73\x5e\x1d\x36\x76\x7e\x2c\x0d\x00\x0c\x0f\xa3\xfe\x2d\x8d\x1a\xd5\x2b\x62\xeb\x66\xdf\xa3\x4e\xfa\xed\x4b\xf7\x1d\x7d\x73\x78\xce\x78\xe3\xf6\xa3\xa5\xae\x9c\x1b\x4b\x96\xf3\x6f\x71\x81\x35\xd0\x83\x52\x86\xc6\xfc\x15\xba\xf8\xbb\x1e\x12\x55\x3e\x5d\xd5\xdb\x36\x1e\x0d\x92\x0b\xb9\xfe\x67\x12\x83\x96\x4a\x5a\xc9\xad\xae\x07\x8b\x0d\x26\x23\x06\x87\x61\x63\xac\x2e\xe9\x14\x9d\xfa\x3b\x20\x21\x0b\xf4\xb7\xa5\x1f\xb5\xde\x44\xb0\x3e\x81\xe6\xa7\xca\xd9\x8a\x3c\x13\x9d\x32\x9b\x11\x74\xcb\xc4\xb1\x65\xb8\xe7\xaf\xe4\x44\x87\xce\x45\xc5\xdf\x9e\x25\xfd\xe4\xdb\xd6\x94\xbe\x09\x30\x79\x31\x33\xad\x94\xc8\xfa\xf4\x56\xee\xbf\x24\x3f\x0f\xc3\xda\xe4\xcf\xaa\x13\x4f\x40\x12\xfd\x77\xc3\x0b\x24\xed\xd9\x26\x9d\xef\xe9\x92\x0e\xf3\xc6\xe9\x2e\xa1\x97\x6f\xb7\xc4\x59\xf0\xb6\x35\x06\xfb\x32\x21\x45\x6c\xcd\x95\x71\xfb\x24\xf5\x67\xec\x52\x02\xc4\x2e\xdb\xb3\x59\xb5\xbf\x31\x4a\x0d\x55\x0e\x5b\x34\x2a\x56\x56\xf1\xdd\x2f\x71\x6b\xbc\x08\xe5\xb0\xfd\x5e\x73\xe3\x49\x0e\x70\xda\x87\xf1\xdb\xd2\x58\x61\x1f\xc5\xf4\x42\x05\x91\xbd\x90\xc6\x62\x1d\x0d\xde\x0c\x30\x2e\x58\x4f\xe8\x6c\x81\x73\xa6\x6b\x26\xab\x9f\x78\x9e\xd7\xcf\x50\x8f\x20\x5b\x15\xfe\x6d\x42\xa7\x20\xae\x42\xb6\xcd\x9e\x5d\x54\xd4\x23\xee\xf2\xe8\x1c\xee\x34\xec\x2f\x7f\x7e\x02\x76\xc1\x97\x5f\xfc\xf9\x49\xcf\x8d\xf8\x58\xab\x0a\xd9\xd0\x3e\xd1\xc1\x33\x2b\x3e\x93\x2a\x92\xa4\x5a\x04\xda\xc9\x38\x6d\xf7\x02\x8b\x33\x9c\x9c\x24\xa6\x89\x07\xc1\xed\xca\x20\xbd\x87\xd4\x89\xb7\x55\x17\xbf\xa1\xaa\x0b\x16\xaa\xf1\x91\xb1\x0e\xb2\x91\xe3\x01\x01\x56\x67\x99\x81\x23\xef\x3e\x7f\x2c\xbc\x7b\x4d\xea\xae\xbb\x93\xd3\x1d\x1c\xa7\xf8\x51\x21\x6e\x54\x9e\x7a\x7c\x76\xf1\xd3\x8b\xc3\xbf\x9f\xbc\x80\x77\xa5\xac\x40\xb7\x3d\xc9\x12\x5a\x27\x67\xfd\xc3\xb7\xfb\xfa\xce\xad\x75\x49\x3a\x44\x82\x81\xea\xa4\x16\x28\x76\xf6\xfc\xe2\xbe\x59\x05\x7d\xcd\x59\x35\xed\x41\xbd\xc7\x16\xd7\x70\x3f\x85\x7e\xad\x9b\xa8\x9c\x1f\x38\x28\x12\xa1\xe2\x27\x7e\x14\xb7\x87\xf0\x1d\x7b\xbb\x3a\xd6\xdc\x1b\xec\xc1\xe9\x7a\xef\x8f\x7f\x3b\x8a\x21\x15\x07\x8f\x7c\x7f\x52\x6a\xf7\xd3\x21\xeb\xa1\x60\x1d\x76\x71\x2c\xaf\x3e\x3a\x16\x86\xb2\xa3\x76\x52\xd5\xc9\x53\x61\x42\x83\xa2\xcf\x60\xb7\x56\xab\xda\x4d\xf7\x97\x0e\x2b\x87\xc5\x7f\x5e\xf8\x6e\x81\x51\x56\x41\x52\xd7\x7d\x57\x47\x79\x9f\x91\xc9\xcb\xa8\xb1\xe6\x90\xc8\x8f\xed\x47\xf8\x09\x36\xc9\x7b\x84\x02\x06\x26\xbe\xa1\xf2\xb2\xf0\xec\x61\x8e\x63\x18\xae\x8b\xb4\x72\xaf\x5d\xc2\xb8\xf1\x8a\x1c\xe5\x9a\xc7\x90\x2c\x0f\x72\x0b\xb1\x07\x27\x87\x82\x18\xfa\x7e\x4d\x77\xc3\x26\x5d\x0d\xd5\x5c\x5b\xad\x06\xae\xa1\x5d\x35\x68\xca\xd8\xce\xe1\x8e\x23\xac\x74\x2f\x44\x1d\xf1\x5b\xac\x20\x0a\x61\x75\x67\x79\x78\xd1\xad\x95\x0f\xb0\xa7\xe1\xf5\xc7\xc7\x89\xaa\xfc\xf4\x78\x03\x4c\xe8\x73\x03\x3b\xba\x6f\x98\x70\x63\x89\xb2\xf9\x40\x95\xfb\x6e\x20\x4f\xf3\xd3\x63\x32\x17\x7c\x59\xbe\xa1\x63\xc5\xee\x3e\x57\x1b\x51\xa5\x74\x6d\x6f\x75\x3d\x14\x7c\x5c\x3a\x5c\x27\x0b\x93\xbe\x5b\x02\xe3\xf8\x3c\xb9\x08\xbe\xe5\xa3\xe7\x24\x17\xc0\x49\x3a\x9d\xbb\xef\xe2\x28\x1f\x83\xa1\x3c\x1e\x46\xf2\x71\x14\x97\x8f\x8b\xc4\xb5\x31\xf3\xd7\x1f\x8f\x41\x88\xe5\x07\x23\x37\xa8\xdb\x28\x2d\xdf\xe5\xe0\x6e\x8e\x38\xcf\x46\xf8\x6c\xad\x1d\x1f\x5a\x8f\x9d\xa4\x2c\xd6\x8f\x84\xc1\x41\xec\xea\x58\x14\x6e\x65\xb5\x8a\xfb\x41\x12\x58\xd7\x88\x61\xcf\xc4\x92\x57\x06\x9b\x52\xe4\xfa\x56\xdd\xf2\x3a\x67\x87\xe7\xa7\x9f\x9e\xaf\xf6\xae\x04\xc5\xf3\xd0\xa7\xb7\x40\x5a\x0b\xda\x8e\x07\x19\xf8\x90\x24\xe4\xfe\xb8\x92\x16\xdb\x36\x63\x32\xbe\x8d\xbd\x51\x4e\x4e\x85\x4c\x16\xc7\xe9\x1c\x57\xa3\x91\x22\xb5\x4a\x31\x9d\x59\x5e\x60\x0b\x10\x76\x25\xec\xad\x10\x8a\x3d\x79\xf2\x04\x03\x14\x4f\xfe\xf3\x3f\xff\x93\x41\x53\xce\x5c\x64\xb2\x5c\xbe\x11\xee\xfa\xd3\xd3\xa7\x13\xf6\x8f\xc3\x97\x2f\x18\xcf\xfe\x7f\xf6\x9e\xae\xb9\x71\xdc\xc8\xf7\xfc\x0a\x94\xef\xaa\x6c\x4f\x2c\xcd\xee\x65\x93\xca\xed\x4b\xca\x6b\xcf\xe6\x7c\x3b\x9e\xf1\x59\xb3\x9b\x87\xdd\x5c\x05\x22\x61\x09\x67\x0a\x60\x00\x50\x1e\x25\x9b\xff\x7e\x85\x6e\x00\x04\x25\x8a\xa4\x44\x7a\x2c\xcf\x98\x2f\x33\xa6\xc8\x26\xd0\x68\x34\xfa\xbb\x41\x97\xc3\xca\xb7\x08\x19\xd6\x33\x7e\x59\x9f\x91\xff\x9e\xbc\x7f\x57\x36\x94\xaf\xfe\x0a\xe4\x12\xa6\x37\x26\x97\x51\xec\x7d\xec\x3c\xa0\x66\x0e\xd8\x10\xd2\x10\x7a\x77\x87\x04\xe7\xbb\xda\x3b\x66\xe2\x6b\xcf\xf1\xd9\x1c\xa6\xcb\x05\x90\x5a\x06\x49\x01\xdc\x0e\x11\x1c\x36\xbe\x8e\x23\xe6\x38\x00\xac\x70\x88\xc0\x50\xce\x48\xc6\xef\x19\xb9\xd3\x7f\x56\xb2\xc8\xcb\xc6\x29\x8a\x69\xab\x80\x25\x54\x58\xe8\x08\xac\x5c\x19\xcd\x7a\xd6\xc6\x7c\xea\xc8\x09\xb7\x4f\x87\x71\x21\xbb\x3d\xef\x5b\x88\xb9\xde\x80\x3e\x47\x0b\x59\x86\x5d\x85\xe7\x1a\xc9\x50\x99\xed\x4d\x98\x0f\x12\x95\xab\x7e\x58\x72\x46\x9a\x49\x31\x8b\x69\xb0\x94\x3e\x7c\x30\xe5\x2a\x67\xfb\x22\x63\xa0\x86\x3a\xc3\xb4\xa7\x43\xe6\x7e\x4d\xf3\x7e\x9d\x40\xaa\x31\xba\x1e\x66\xa5\x0e\x25\x9d\xca\xc2\xf8\x98\x3d\xf7\x3b\x94\x6f\x33\xd2\xa3\xbe\xd7\x10\x06\xeb\x52\x34\x5c\xdf\xbf\x81\x9a\x6e\x55\x63\xe6\xe0\xd4\xae\x8a\xac\x67\x84\xd1\x64\x4e\xee\xd9\x6a\x84\x27\x40\x4e\xa1\x7a\x04\x60\xfb\xd2\xe2\x18\xcb\xe4\x56\xc3\x19\x12\x96\x5a\x6d\xd2\x2d\x85\x0f\xb0\x8c\xe4\x03\x5f\x7d\xc2\x2b\x5c\xda\xc9\xe5\xae\x95\x95\x88\x2c\x94\xbe\x77\x65\x22\x85\x71\x7d\x31\x43\xef\x2a\x08\x18\x5d\x2b\x48\x60\x39\x0c\x4b\xed\x6b\xba\xe9\xcb\x65\x54\xa9\x3d\x51\x9c\xfc\x51\x88\x8d\xb7\xa1\x9e\x3b\xc4\xf4\x6a\xe6\x2a\x23\x51\xdf\x13\x31\x8a\x4c\x9d\xf3\x04\x32\x8e\xec\xe3\xee\x59\x8f\xa5\x80\x88\x4a\xc1\x04\xcd\x4c\xe1\x50\x03\x71\xc2\xf6\xdb\x4c\x6b\xc2\x61\x86\x0b\xaa\xee\x99\x2f\x34\x4c\xb3\x31\xb9\xb1\x83\x0c\xd5\xe6\xb1\x95\xe0\x12\x13\x44\x2c\x8f\x89\x2b\x41\xd8\x8f\x1c\x8f\xc7\xc7\x78\x54\xd6\xd4\x85\xe8\x4d\x35\x43\x76\x91\x1b\xac\x7b\x5c\x85\x94\xaf\x69\xae\xb1\x9b\x9e\x55\x2d\xa0\x63\xa5\x84\xba\x2d\x66\xee\x85\x09\xda\xb3\x84\x78\x7c\x0d\xdc\xc6\x6c\xd8\x4e\xa8\xc3\xf5\x41\xed\xe1\x6b\xaf\x5e\x43\xf7\x3f\x1d\xb0\xfb\xe9\xb6\xde\xa7\x8e\x86\x1c\x27\x19\xaa\x23\xe3\xe0\x2d\x37\x17\x03\x34\x36\xf3\x57\xd5\x75\x04\xf2\x6d\xa5\x96\x74\x27\x5d\xc4\x95\x52\xcf\xd8\xb3\x52\x3e\xae\xee\x80\xa5\xd6\xd7\xba\x89\xf5\x32\x7f\xc2\x58\x0c\x3c\xbd\xd6\xd1\xb7\xcb\x9e\xbf\x1e\xa3\x4d\x7d\x7f\xb5\x64\xfd\xea\x13\x44\xb3\x7e\x55\x0d\x19\x51\x59\x89\x70\xd4\xc6\xd9\xc7\xb0\x54\x46\x42\xb7\xce\x92\x39\x8c\xc9\xb5\x3b\x8a\x91\xc8\xe9\x54\xcb\xac\x30\xa1\x12\x45\xcd\x39\x0d\x40\x7d\x6f\x4f\x2c\xda\xe4\x1f\x8b\x4e\x6d\x90\x57\xf0\x28\x1b\xe6\x00\xc7\x6b\x40\xe6\xd3\x37\x40\x16\xaf\x2f\x2c\x4c\x16\xaf\x01\x57\xc1\x8b\x8b\x03\xaf\x84\x07\x1b\xaa\x77\xfa\x8c\xc8\x8a\x74\x0b\x31\xb2\x46\xa3\xe8\xec\x05\x55\xcc\xa1\xdc\xb7\x02\x76\x79\xf5\xb7\xea\xba\x79\x39\x03\xe3\xf9\xcd\xd5\x80\x5a\x69\x04\x75\x8b\x5e\x1a\x3f\xf1\xa2\x99\x76\xb9\x2a\x08\xbe\x42\xcd\xd4\x8a\xf4\xde\x80\x74\x59\x62\xd4\xb9\xf4\x2c\x53\xfe\x02\x54\x9b\x8d\x89\x7f\x6f\x0f\xa3\x38\x99\xab\xda\xa1\x03\x8d\xc1\xe5\xb1\x15\x75\xf5\xf0\x31\x3c\xc0\xe2\x3e\x7f\x35\xe8\x40\x95\x17\xc0\x7e\x8f\x8c\x9d\xf5\xab\x7a\x8a\xde\x7a\x24\x92\x09\xcb\xec\xa1\x47\xd6\x4c\x36\xb9\x4c\xbf\xc5\x9e\xdf\x54\x08\x69\x80\x6e\xf4\x19\xc9\xa0\x1f\xf9\x19\x9a\x62\xac\x04\x1a\x45\x7f\xa9\xc8\x69\x3a\xb0\xcc\x39\x18\xf1\x90\xc1\x09\x88\x00\x11\x01\xee\x6e\x86\xa1\x24\xf2\x08\xd4\x64\xaf\x52\x54\x19\xb2\x2d\x7f\x85\xae\x1c\x7c\x4f\x44\x3a\x99\xb3\x05\xc5\x7e\x24\x1e\x41\x96\x5f\x3f\x28\x6e\x0c\xc3\xaa\xe3\x4c\x2d\x34\x91\x77\x67\x15\xbf\xf1\xd1\xf2\xeb\xa3\xa1\xe4\x59\xf2\x18\x0a\x35\xf1\x3b\x74\xdf\x32\x60\xdb\xae\xaa\xdf\xa0\xa2\x5c\xd8\xdd\x09\xda\x74\x06\x0d\x92\xc4\x9a\xc1\xd2\x0a\x11\x4b\xc4\xff\x41\xa3\xee\xf1\x6c\x11\xfb\xda\x20\xce\x82\x60\xfa\x62\x83\x78\xb1\x41\x0c\x01\xf1\xd1\x6c\x10\xd1\xc1\xed\x99\x69\x8d\x3d\x22\x4e\xc4\xf3\x46\x89\xb2\x94\x45\x54\x26\xda\x92\xbc\x37\x47\x48\x55\xf5\x15\x1c\x8f\xc7\xc7\xc7\xde\x48\xe1\xf6\x47\x61\xee\x46\x7f\x24\x4c\x24\x32\x45\xa2\xb2\xf0\x95\x36\x20\xd4\x96\x5a\x79\x3c\x96\x85\xff\x56\xec\x6f\x00\xd8\xc3\x92\xc4\x80\x1c\xca\x87\xa4\x7c\xff\xa8\x22\x58\x29\x78\x85\x32\x60\x0e\x81\xa1\x5a\xa2\x93\xc0\xca\x10\x99\x8c\x2f\xb8\xab\x4f\x68\xd9\x05\xd3\x46\x93\x13\xbc\x39\x4e\xf2\xe2\xcc\x3d\x30\x5e\xb0\x85\x54\xab\xb3\xf0\x90\xfd\xb1\xf2\x96\x7b\xe2\x14\xa4\xb6\xa4\x50\x8a\x09\x93\xad\xbe\x5c\xf9\xcd\xa3\xf8\x80\xc5\xb7\x40\x15\x7d\xf2\x3e\xea\xae\x2a\x59\x96\x4d\x04\xc0\x7a\x17\xb0\x0d\xe7\x90\xcb\xc0\x38\x2b\x8d\x3f\xf6\x2e\x13\x4b\xb2\xa4\x6a\xef\x0c\x8c\xba\xeb\x51\x24\xb6\x94\x2f\xb9\x96\x7b\xe7\xb0\xd5\x82\x8c\x91\x37\x71\x87\x32\xda\x88\x65\x61\xf2\xc2\xb8\xd3\xc5\xef\x6d\x5f\xb2\x2f\xec\xe9\x35\xc1\xf7\xeb\xa3\x01\x07\x97\x53\x63\x98\x12\xdf\x92\xff\x3d\xf9\xe5\xb7\xbf\x8e\x4e\xff\x74\x72\xf2\xf3\x57\xa3\xff\xfc\xeb\x6f\x4f\x7e\x19\xc3\x7f\x5e\x9d\xfe\xe9\xf4\x57\xff\xc7\x6f\x4f\x4f\x4f\x4e\x7e\xfe\xe1\xfa\xcf\x1f\x6e\xde\xfc\x95\x9f\xfe\xfa\xb3\x28\x16\xf7\xf8\xd7\xaf\x27\x3f\xb3\x37\x7f\xed\x08\xe4\xf4\xf4\x4f\xff\x3e\xe0\x24\xa8\x58\xbd\x1f\x8c\x05\xe3\x35\x7a\x14\x31\xa2\x0a\x7b\x60\xd2\x25\xe4\xe3\xa8\xb4\x68\x8f\xb8\x30\x23\xa9\x46\xf8\x91\x6f\x89\x51\xc5\x50\xac\xab\x3c\xfe\x1e\x8f\xc7\x94\x42\x4c\x59\x01\xd3\x2b\x36\x07\xc8\x44\x30\x30\x75\x40\xcb\xb0\xeb\x63\x5b\x6f\x14\x76\x3f\xbe\xd8\x83\xbb\x5c\x8f\x18\xa9\xe4\xea\xd9\x7c\xe1\x61\x4a\x13\xd7\x4d\xf9\x25\x46\x69\xe3\x7a\x89\x51\xda\xbc\x5e\x62\x94\x76\xbc\x5e\x62\x94\xfc\xf5\x12\xa3\xf4\x62\x1f\xec\x7f\x7d\xe1\xf6\xc1\x97\x18\xa5\x5d\xaf\x97\x18\xa5\xbd\xaf\x67\x14\xa3\x84\x42\x7e\x5d\xa4\x92\x13\xf3\xcb\x30\xa5\x83\x8d\x52\xd2\x96\x1e\x12\x76\x9e\x24\xb2\x10\xe6\x83\xbc\x67\x3d\x1d\xb9\x6b\x3a\xe9\x06\x74\x28\x89\xb8\x45\x47\xdd\x7c\xf8\x20\x15\xd6\xa1\xe4\xd1\x01\xe4\xc7\xe1\x24\x47\x5a\xa4\xdc\xea\xa8\x03\x6f\x16\x0f\x36\x2e\x8b\x2d\x52\x96\x96\x3f\x38\x96\x66\xec\x7a\x8f\xc9\x39\x51\x2c\xe1\x39\xb7\x07\x00\xd4\x0a\x82\xfb\xb8\x7d\x42\x17\x67\x6e\x34\xcb\xee\x5c\x27\x5b\x51\xa6\x39\xab\x48\xff\x74\x27\x4a\xed\x67\x50\x86\x90\xbe\xd7\x28\xd1\x73\x59\x64\x29\x51\xec\xff\xbc\xf0\xe1\x46\xf3\x21\x86\x10\x9b\x54\x61\x2a\xe5\x67\x1d\x70\x9a\x73\x57\x54\xec\x90\xd8\x20\xfb\x98\x73\x05\x9b\x6d\xc2\x12\x29\xd2\xa1\x2d\x24\x1b\xf0\x4b\x59\x01\xfc\x42\x2c\x25\x69\x81\x0f\x40\x3a\x26\xcd\x78\xca\xcd\x2a\xc4\x73\xe0\xb6\xb7\x62\x2b\xf6\x0e\x76\x84\xa0\xcb\x85\x20\x34\xcf\x95\xa4\xc9\x9c\xe9\xe8\x6b\x28\x84\xba\x42\x19\x21\xcb\x33\x2b\x66\x5c\xa0\x1c\x0a\xef\x58\x61\x25\x5b\x11\x25\x8d\x0f\x4d\xdb\xf2\xc1\x0f\x11\x30\x78\x1d\x25\x0e\xa3\x56\x10\xbf\x26\x63\x10\x38\x2a\x7e\x17\xff\xa1\x89\xcc\x52\x5f\x9a\xf5\x8f\x5f\x59\xc1\x3f\x71\x54\x6c\x0f\x01\x28\x9a\x69\x24\xc9\xac\xf0\x64\x0f\x86\xed\x2f\xff\xc7\x37\x64\x2e\x0b\xa5\xc7\x71\xb1\xbf\xaf\xe1\x1e\x5a\x38\xbc\xe2\x60\x48\xc6\xa8\x36\xe4\xeb\xaf\xc8\x82\x8b\xc2\x9e\xf8\x03\x11\xde\x50\xb2\x6e\x24\xe5\xfe\xe1\x9b\x9e\xd0\x86\x91\x6f\xb7\x4a\xb6\x39\x76\xcc\x73\xe2\xad\xdb\xe3\x58\xd0\x03\xbb\x66\xae\x09\xbb\xee\x48\x8a\x57\x51\x18\xf9\xc4\x3b\xff\xef\x85\x9c\xae\x4c\xff\x12\x36\x0e\x4e\xb5\x76\xcd\xff\xb8\x9b\x5d\x4a\xc5\x96\x95\x62\xf7\x18\xca\x93\xf7\xf8\x9e\x71\x6d\xf6\xea\xf0\x5d\xd6\xbc\xd9\xe3\xe5\xbe\x87\xf9\xcc\xea\xc7\x83\x64\xd2\x03\x24\xaf\xd1\x79\x8b\x74\x92\x30\x0d\xac\xc8\x17\x85\x03\xe3\x2e\x3e\xbb\xe7\x47\x0f\xb4\xda\x4c\x5d\x11\x19\x4f\xfc\x03\xf4\x2a\xed\x85\xac\x3e\x22\xbf\x27\xec\x81\xb0\x85\xc0\xaa\x3c\x42\x73\x31\xc3\xd6\xa2\x8b\x22\x33\x3c\xcf\x4a\xcc\xdd\xfa\x17\xdc\x01\x1c\x7b\x0b\x68\x64\x9e\xa6\x58\xf4\x0a\xab\x9f\x83\x67\xe5\x24\xc0\x62\xc2\x60\x87\x4c\x65\xcf\xf1\x9c\x2a\x1a\xd0\x9f\xc8\xc5\x82\xea\x53\xe7\x78\xa0\x10\x05\xe3\xda\x00\xd9\xb7\x68\x56\x8e\x38\x8a\x3a\x78\x2a\xc2\x35\x4c\x50\xb1\xb7\xfb\xaf\x5a\x70\x1e\x40\x11\xf9\x10\x02\xed\xb1\xc9\xfd\x1a\xc5\x3a\x81\xf8\x3b\x9a\xdc\x33\x91\x92\x1f\xb5\x47\x5c\xba\x12\x74\xe1\xea\xc7\xe7\x4a\x62\x17\x75\x96\xae\xbd\xaf\xcf\x9c\xd9\x11\x4b\x9f\xf8\x02\x56\x28\x6f\x3d\x15\x16\x0b\x3d\x50\xf1\x60\x0b\xa8\x8d\xdf\x69\x34\xe9\x2a\xbe\x4c\x98\x97\x1d\xed\x7b\x4f\x35\xf9\xe5\xde\xd5\xea\x48\x7d\xe9\x28\xd7\xc6\x14\x77\x21\x1c\xe9\xc1\x73\x09\x65\xe2\x69\x66\x59\xdc\x2a\xd4\xfc\x59\x23\xb0\xe9\x0a\xec\x5e\x4f\x52\x79\x4c\x4d\xfb\xd7\x94\x3a\x56\xd3\xb4\xca\xcc\x6e\x69\x2a\x35\xf9\x2e\x93\xc9\x3d\xb9\x64\xa0\x34\x3c\x66\xf3\x7d\x35\x4d\x9f\x77\xe3\xcc\x05\x9d\xed\x17\x31\x32\x22\x0b\x29\xb8\x91\x6a\x1f\x7e\x7c\x40\x85\x02\x5f\x5a\x19\x76\xa9\x98\x6e\xf7\xd9\xe7\xd2\xc8\xd0\x92\xfc\x30\xa4\x03\xa0\x82\xe9\x04\x38\x0f\xde\x02\xa6\xba\x37\x1f\xf9\xb7\xb9\x7c\x18\x19\x39\x2a\x34\x1b\xf1\xbd\x03\xa1\x7a\x23\xea\x9e\xad\x20\xaa\x6c\x10\x54\x39\x60\x15\xcd\xdd\x48\xb0\xb3\xc3\x7d\x2b\xdf\xdd\x7e\x77\xf9\xa3\x66\x6a\x1c\x6b\x2b\xaf\x99\x49\x5e\x27\x2c\x9f\xbf\x76\x10\x9e\x3d\x5a\x3d\xdb\x1c\x06\xaf\x1e\x1a\x0a\x02\x89\xcc\x32\x57\x60\x4c\xde\x91\x0b\x96\xcf\xc3\xe7\x0e\x03\x6f\xcf\xb9\xa7\x5c\x2e\xe5\x30\xed\xa6\x8e\x2d\xa4\x2a\xdb\x80\x3b\xc8\x35\x22\xe2\x57\xd3\xdd\x1a\x79\x1f\x22\xb9\x7f\xc2\xee\x2c\xfb\xb4\xe2\x3b\x08\xf4\x1e\x4e\x4b\xbf\xe3\x4a\x4f\xbf\x38\x7f\xa8\xda\xb0\xcf\x47\xa7\x56\xd8\xf6\xd5\x1d\x2a\xa3\x29\x4b\x89\x5c\x32\xa5\x78\xca\x34\x09\x7c\x3b\xb6\x41\xf1\xec\x30\x30\xff\xd2\x3b\xf0\x79\x05\x1c\x1c\x8e\xf9\xe1\x18\xec\x0f\x15\x26\x0e\x77\x36\x98\x38\x4d\x17\x5c\x1c\x06\xb5\xef\x89\x37\x9d\xd0\x8c\x5d\xbd\xef\xad\xad\x3b\x38\x55\x85\x7d\xe2\x6e\x46\x3d\x05\x5a\xea\xec\xff\x10\x68\x97\x08\x99\xee\xe7\x40\x7b\x62\xb5\x7b\x46\x0d\x7b\xd8\x53\x10\x1a\x95\x2c\x7f\xdf\xf7\x41\x3d\x7b\xde\x6a\xfb\x41\x74\x0a\x89\x76\x39\x96\xfc\x7f\x2a\x21\xcb\xd1\xd3\x30\x8e\x24\x84\x15\x37\x65\x5b\x6f\xc5\xe6\xf7\xec\xf9\xcd\x15\xf9\x33\x3e\xfe\x74\x5d\x50\x94\x34\xa8\xf2\x5c\xca\x05\xe5\xc3\x34\x40\x5f\x07\xba\xde\x0f\x2b\x46\xc2\x4d\x78\x96\xb8\x87\xad\x50\x54\x96\x1b\x2e\x14\x4b\x89\xb3\xa7\x7c\x66\x2d\x1e\x36\xc4\xe9\xcf\xa3\xc5\xc3\x63\x75\xc9\x8e\x4c\xf3\x3e\x7f\xa7\x94\xa2\x3d\x39\x81\x10\x11\x62\x9d\x88\x66\x42\x73\x08\x6f\x88\x22\xf0\x40\xd4\x86\xb0\xf4\x90\xac\x83\x62\xf7\x19\x79\x2b\x67\x5c\x78\x2e\x26\x5d\x54\xcd\x1d\xe5\x59\x3f\x74\xbe\xc8\xc9\x5f\x98\x9c\xac\x75\xf6\x46\xd0\x69\xb6\x7f\xc8\x64\x75\x13\x04\x70\xe4\xfb\x8c\xce\x08\x83\x3f\x5e\xa7\x5c\xdb\x7f\xc9\x64\xf2\x16\x9c\xc1\x85\xf0\xfa\x25\xb8\x39\xdd\xd9\x12\x52\xa3\x91\xc9\x3c\x1d\x5f\x40\x26\x3e\x58\x07\x8f\x08\x1e\xe1\x22\xb5\x53\x67\xba\x12\x94\xec\x9e\xc0\x5e\x29\x21\xef\x0e\x43\x1f\xa7\x8c\x7c\x98\xf3\xe4\xfe\x26\xf2\xff\x4a\x65\xef\x89\xe8\x56\x45\x48\x59\xff\xed\xa9\x4e\x23\x37\xad\x9b\xa1\x0c\x6a\x11\x3c\x7f\x52\x7b\x76\x3a\x71\x18\x84\xdf\xa8\xd6\x32\xe1\x65\xfc\x01\x58\xa2\xcb\xe3\x3b\x85\xe3\xfb\xe9\xb0\x02\x02\xe7\x30\x08\x41\x39\xb7\x46\x6a\xf1\x14\xe5\x9e\xa0\x3a\x96\x52\xb8\xf0\x78\x7b\x32\x24\x20\x8d\x0f\xd6\xd2\xb4\x04\xb7\xd9\xd2\xd4\xab\x99\x6b\x2e\x72\x9f\xf0\xea\x08\xc8\xab\x0c\xae\x87\xf6\x26\x09\x85\xd6\xa6\xae\x99\xc9\x93\xa0\x6e\xff\xd4\xf4\x3a\xf3\xdf\x5a\x7c\x10\xde\x73\x4e\x73\xe0\x3d\xb9\xcc\x8b\x0c\x23\x6b\xfb\x77\x76\xf5\x3e\x46\xfc\xce\x13\x38\xd1\x0f\xad\xb3\xd3\x71\x9c\x9e\xb7\x7b\xbe\xe2\xe7\xd1\xdf\x29\x52\x2d\xbe\xfa\xc3\x37\xdf\x3c\xf7\x8e\x4f\xfd\x0c\x77\x4f\xdd\xf2\xa9\x97\xeb\xad\xa6\x36\xc3\xd5\x4b\x6d\x86\x97\xda\x0c\xd5\xeb\xc9\xfd\xc3\x9f\xbe\xfa\xc2\x20\xd9\x6d\x43\x64\xb6\xf5\xad\xaf\xd0\x33\x2b\x6e\x98\x8c\xb8\xde\x15\x14\x3e\x45\xdd\x84\x81\x72\xc4\xfa\xd7\x48\x78\xa9\x8c\xf0\x65\x55\x46\x18\x2e\x47\x6c\xa8\x2a\x08\xfd\x73\xc3\xbe\x9c\x8a\x07\xbd\xd9\x46\xdf\xbc\xfa\xde\xd9\xf4\x43\x35\xfd\x18\xca\xba\x3f\x98\x85\xe1\xb8\x84\x57\x6b\x6f\xf1\x25\xde\x7c\x35\xfd\xe3\x63\x1d\x15\xcb\x37\xd2\x72\x97\x27\x54\x9d\x49\x6f\xcb\x03\x0e\x45\xee\x75\x76\xd7\x59\xf1\xde\x4f\xd6\x02\x04\xc2\xed\xc3\x8f\x0b\x78\x71\x90\xf7\x0b\x53\xff\xbc\xdc\xa3\x9f\x69\x07\xfc\xc7\x72\x8f\xea\x4a\xd5\x5c\x6f\x75\x04\x06\x09\x22\x9c\x9c\xc6\x9d\x69\x4a\xb6\x70\x7e\x73\x45\x12\xc5\xa0\xb4\x03\xcd\xf4\x98\xd4\x48\x78\xde\x81\xe4\x24\x42\x2f\xd9\x51\x63\xd8\x22\x37\x7d\x29\xef\xc5\x3b\xfa\x85\x79\x47\x1f\xdd\x4b\x31\x2f\x16\x54\x8c\x2c\xb7\x00\xff\x68\x25\xee\x64\xed\x3c\x1c\x13\xc7\x17\x50\xac\x00\x5b\x28\xa4\x34\x17\x82\xff\xbd\x60\xa5\xb9\x22\x48\x1d\x07\xe0\xdc\x81\x71\x0c\x8c\x3b\x94\xa8\xd6\xb8\x48\x22\x37\x92\xb8\x1c\x42\x02\x1e\x3d\xc3\x88\xc4\xb2\x8a\xe9\xcd\xcc\x19\x4a\x6f\x37\x50\x24\xa1\x7c\xaa\xaa\x1f\xa2\x82\x48\xb3\x4c\x3e\xe0\xb7\x63\x79\xc4\xae\x9f\x1d\x8b\xab\x4b\x32\x65\x64\xc1\x95\x92\xca\xb9\x91\xe2\xe1\x60\xf8\x90\xd5\x33\x99\x42\x85\x4d\xb9\xa0\x8f\x09\x33\x6e\xa9\x81\x54\x8c\x24\x54\x60\x02\xa7\xfd\xbf\x8f\xb8\x86\x6f\x7b\x7e\x37\x65\x73\xba\xe4\xb2\x50\xf8\xb6\x91\xe4\xc8\xfd\x04\x67\xef\x4a\x16\xc1\x76\x5e\x40\x86\x56\x98\x9d\xae\xc1\xd3\xbb\xf2\x47\x50\x70\x53\xe9\xcd\x91\x23\xf6\x91\x6b\xb3\x39\x17\x8f\x22\xdf\x72\xe2\x29\x28\x6f\xa9\x73\x7b\xc0\xfe\xb4\x77\xee\x6d\x95\xde\x62\x68\x55\x49\x75\x39\x81\x9f\xda\xe4\x54\x57\xb1\x06\x53\xe6\x7d\x3a\xdc\xf3\x8b\x61\xc5\x59\xee\xd9\xeb\xea\x20\x05\xe5\x17\x21\xb9\xf1\x0a\x51\x16\x19\x4f\x56\x57\x97\xc3\x46\x6e\x20\x4c\x7f\xfc\xe9\x10\xb5\x61\xef\x93\xef\xa8\x66\x29\xb9\xa6\x82\xce\xd0\xea\x72\x32\xb9\xf9\xee\xfa\xd4\x52\x11\x58\x75\xae\x2e\x6b\x43\x3b\x26\x31\xf0\x77\x4f\x95\xe7\x4e\xd6\x51\x37\x98\xd8\xb0\x01\x75\x4f\xf4\x3d\x59\x09\x00\x12\x64\x82\x3e\xed\xd3\x6a\xc4\x81\x9b\xf5\x22\x51\x18\xbe\xe1\xab\xbf\xe9\x75\x56\xbd\x5c\xa4\xf7\x8f\x89\x80\xc8\x6e\xde\x34\xcb\x6e\x3e\xb0\x0e\x7e\xae\x6a\x37\x12\xa3\xa8\x61\xb3\xd5\x25\xcb\x33\xb9\xb2\x04\x70\x13\x99\xf1\xf1\xd1\x29\x8a\x0d\x6a\x4a\x13\xa2\x8a\x8c\x61\x6f\xa1\xf5\xb2\x6b\x82\xb1\xb4\xe4\x74\x5c\x68\x43\xa1\xe8\x1a\xc2\x6f\x1c\x51\xe7\xc3\xaa\xeb\xb1\x34\xc2\x71\xb6\x3e\x55\x2d\x51\x69\x77\x49\xe3\x2b\xdd\x0f\x26\xf8\x7c\x3b\xcd\xee\xe2\xd7\xec\xec\xc1\xac\x76\x07\x84\x5d\x7e\x5b\x64\xf6\xf0\xc9\xd2\xb5\x16\xaf\x20\xa7\xb9\x35\xc6\x6a\x17\xc0\x13\xec\xe8\xcf\xc8\xb4\xb0\x42\x1c\xd3\x15\x1b\xf7\x66\xa9\xcf\x87\x39\xba\xb4\xed\x4b\x84\xe6\x79\xc6\x31\x84\x59\x2a\xe7\x97\x8e\x0c\x9a\x9b\x8f\x75\x61\x2d\x3b\xca\x32\xbb\xc9\x2e\x23\xb2\x64\x6a\xda\xa5\x4e\xc5\xae\x62\x09\xcd\x39\xf8\x71\x3a\x4b\x31\x95\x85\x3b\xbf\xb9\xc2\xb7\xeb\x0c\xc7\xfe\x47\x5c\x41\xb7\x36\xde\xbd\xe1\x7a\x06\xa1\xe6\x12\x2a\x2d\x9d\xdf\x5c\x61\x69\x2f\x57\x6c\xa9\x34\x7f\x58\x3d\x81\x62\x90\x63\x59\xe1\x91\xce\x2c\x44\x43\xa4\x08\x1f\x65\xa2\x58\x30\x2c\xd0\x54\x36\x1b\xb3\xca\xa3\x58\x95\xd0\x4b\xeb\x89\xd5\x75\xac\xea\x73\x74\x14\x0b\xc2\x98\xfa\xa0\xa2\xf1\x00\x33\x39\x7a\x55\x79\xca\x72\x8e\x72\xc0\x5d\x8f\x9f\xdd\xa3\x04\x76\x8c\x0a\xd8\xf9\x3c\x13\x52\xdc\x3a\x54\xfd\x78\xfb\x76\x3f\x42\x78\x57\x85\xe1\x8a\xfa\x30\xa8\x5f\x98\x53\x65\x38\xcd\x48\xa1\x32\xef\x56\xc4\x1c\x01\x17\x8a\x37\xa7\xcb\xa8\xf0\xd1\x98\x90\x57\xb8\xfa\x6e\x71\x70\x8f\x63\x03\x5f\x67\x0a\x2e\xb2\xec\x8c\xdc\x71\x68\xd9\x6e\x58\x4e\x62\xb7\xd6\x84\x8b\xc4\xaa\x83\x62\x14\x3a\xf2\xc0\x88\xbc\x92\x18\x36\x3a\x78\x4d\x41\x66\x66\x59\x0a\xc5\x30\xe1\x13\x76\xd3\x27\x60\xb2\xb0\x5a\xec\x45\x56\x68\xc3\xd4\xad\xb4\x07\x4a\x14\xb6\x03\x85\x41\x68\xfc\xf3\x77\x5c\xa4\x10\xa7\x75\x0b\x87\x4f\x42\x05\x61\x1c\x8c\x41\x16\x24\xf8\xdf\x2d\xb1\x94\x44\x79\xa2\x8b\x64\x6e\xa7\x74\x94\xcb\x54\x1f\x59\x56\x74\x84\x26\x43\x7d\x74\x6a\xff\x5a\x9f\x03\x46\xe1\x44\xef\xbd\xa6\x39\x3f\x3a\x3d\x23\x80\x20\x70\x00\x4a\x33\x7f\xbe\x74\xe8\xe7\x0a\x3a\xfa\x5e\x54\x78\x1b\x43\x00\x1a\x14\xa5\xab\xef\x61\xce\x0d\x0b\xed\xd5\xd1\xd2\x14\x2a\xdd\xac\x33\x7c\x42\xce\x05\x61\x8b\xdc\x80\xf5\x9a\x2c\x18\xf5\x2e\x71\xb6\x64\x6a\x65\xe6\xae\x12\x88\x67\x20\xcf\x1e\xe9\xfd\x10\xbe\xd6\xbb\xbe\x24\x72\xd8\x61\x1b\xc8\x3d\x7e\x75\xbc\xce\x48\xcb\x13\xe1\xd9\xa2\x12\x8e\xe8\xbd\xd0\xf8\x93\x7d\xb3\x8a\x42\xbc\x85\xdc\x32\xf0\x8f\xb7\x6f\x9d\x63\x05\x71\xf5\x03\x17\xa9\x0e\xdd\x14\x5d\xdc\xb7\xc3\x77\x2d\x92\x61\x84\xcf\x11\xc1\x9b\x22\x70\x57\xb1\xb5\x01\xbc\x97\xfa\xb7\x81\x6a\x04\xe0\x54\x87\x6b\x99\xd6\x6f\x9d\xca\xfa\x5e\x45\x0f\x87\x60\x83\xd2\xee\xe2\x60\x39\x71\x77\x95\xd7\xea\x04\xcd\xcb\xd1\x80\xfa\x6d\x23\x29\x0d\x0e\xc0\x27\xa3\x5f\xc0\x9a\x84\x75\xce\xc9\x5d\x46\x67\x25\x19\x01\xd7\x43\x41\xeb\x62\xf2\x93\x9f\x82\x26\xbc\x5e\xe4\x6d\x95\x89\xdb\xa4\xe0\x51\x89\xa5\xad\x4f\xd8\x8f\xd4\xfe\xd8\x2e\x0a\x07\xe0\xdb\xa9\xa9\x8b\xb3\xd1\x34\x1a\xf2\xb6\xe1\xdf\xdb\xec\x68\x44\x09\xbe\x60\x9b\x57\x4c\x21\x7e\x0a\xe4\x90\xc9\x4f\x15\x32\x69\x19\xef\x16\xa2\xbd\x67\xab\x07\xa9\xea\x6b\xb1\x57\xe5\xfa\xc0\x87\xfc\x2b\x5e\x03\xf3\xce\x4b\xb4\x0f\xca\xda\xa2\xf3\x7b\x93\x6a\xe3\xe0\x33\x3a\x65\x59\xfb\xd0\xaf\x69\x6e\xc7\x5d\xc6\xbd\xa2\x21\xc0\xb9\x4d\x51\x15\xc1\x10\x35\x1f\x16\x28\xd5\x8c\x0a\xfe\x0f\x0c\x16\x4e\x2c\x4b\x90\xca\xfe\x79\x82\xae\x17\x34\x23\x64\x2c\x31\xa7\x8e\x94\x6b\x59\x68\x0b\xad\xd3\x34\xe5\x28\x88\xdc\xb4\x90\x65\x33\x12\xb8\xb8\xdf\x65\xf9\xe0\x79\x8c\x26\xc3\xc9\x3e\xf2\xda\x35\xec\xf5\xf6\xed\xd8\xec\x03\xee\x70\x5c\x14\xaa\x21\x3c\xac\xf1\xfd\x05\xe5\xae\x59\xf0\x2e\xd8\x75\x94\x43\x9d\x84\x69\x19\xa4\x9d\x5f\x80\xf6\x09\x36\x4b\x2f\x84\xb3\x05\xe5\xfb\x62\x0c\xaf\x1e\x4b\xb6\xa0\xa6\x50\xdc\xd4\x1e\xbf\xcd\x2f\x72\xf1\x43\x31\x65\xce\xa3\xbe\xf3\xeb\x02\x02\x2b\xcf\x6f\xae\x6a\xd1\x32\xcc\x31\x0b\x76\x0f\x37\x40\x2b\xa5\x91\x42\xd0\xc5\x94\xcf\x0a\x59\xe8\x6c\x15\x9b\x71\x29\x04\x04\x8c\x09\xb9\x42\x3b\x96\x38\x36\x84\x0a\x29\x56\x0b\xf7\xa8\x48\xb2\x22\x65\x15\x88\xe0\x37\x5d\x4a\x9e\x12\x5a\x18\xb9\xa0\x86\x27\x24\x91\x4c\x25\xe0\x63\x8d\x21\x15\x9a\x11\xba\xe5\xdd\xa4\xd0\x46\x2e\xc8\x82\x2a\x3d\xa7\x59\xb6\x6d\x8d\x07\x38\xc3\x9b\x8a\xb5\x8f\x60\xfe\x5b\x7f\x5c\xe2\xa8\xf7\xa4\xef\x96\xda\xf4\x1d\xe8\xdb\x0e\xae\x17\x80\xe5\x76\x2a\xed\x00\xc3\x55\x45\xa8\xad\xf7\x54\x21\xb8\x0f\x73\x46\xf2\x62\x9a\x71\x0d\x9a\x29\x70\xa2\x15\x99\xb2\x39\x77\xd1\xd9\xed\x2c\x68\xeb\x12\xb7\xe1\xb9\x89\x07\xb4\x62\xa8\x81\x65\x37\xbe\xeb\x8e\xb4\xab\x05\x9d\x75\x10\xc0\xdf\x5a\x86\x4d\xc5\x2a\x9c\x84\x50\xe4\x54\x9f\x11\xa9\x5c\xc4\x4e\xe8\x49\xef\x7e\x0a\x85\x72\x15\x79\xef\x50\xe7\x42\xe7\x1d\xbd\x43\x42\x05\x53\x77\x52\x2d\x2c\x82\xb9\x22\x77\x85\x00\x03\xa5\x76\x91\xf6\x70\x4a\x38\x1b\x17\xcd\xb4\x0c\x7b\x19\xd6\x42\xf8\x41\x10\xaa\xc9\x03\xcb\xb2\x31\x39\xcf\x32\x57\x7d\x35\xaa\xb3\x51\xe6\xca\x97\xf1\x1c\xd3\x15\x49\xf9\x8c\x69\x43\x4e\x26\xff\x75\x7e\x0a\x22\x0a\xd8\x7f\x56\xc4\x50\x9f\x2a\x58\xb5\x6b\x81\xb0\x93\x16\x20\x14\x25\xd4\xd0\x4c\xce\x30\xa4\x01\x6c\xe4\x22\x25\x79\x46\x57\xd0\x5a\x21\xa7\x0a\xa2\x7d\x13\xb4\x6d\x11\x55\x08\x28\x2a\xfd\x49\xcf\xae\x76\xa6\xd2\x54\xf7\x79\x04\x34\xb9\x27\xd3\x68\xa9\xae\xfb\xb8\x87\xa2\x62\x79\x46\xb7\x58\x63\x36\x36\x7c\x99\x08\x6e\xd5\x03\x50\xfd\xa5\x60\x01\xc6\x98\x4c\x90\x76\x16\xd4\x24\xe8\x4f\xfe\xdb\x82\x19\x9a\x52\x43\xc7\x56\x87\xfe\x5b\x35\x2b\x51\x66\xa9\x05\xb4\x7d\xa1\xb7\x8c\x19\x85\x63\xd9\xce\xa4\xde\x5a\x09\x3e\x3c\x0e\x7a\x8d\xdf\x8f\x8d\xe6\x9f\x9e\xfc\x09\xa6\xff\xe6\xa3\x55\x61\x1b\xfd\x97\x95\xb1\xae\xbf\x54\xb5\xce\x64\xd5\x99\x38\x6a\x5d\x30\x28\xd1\xf9\xc1\x75\xa1\xf2\x77\xc0\xf4\x7c\xfe\xee\x72\xbb\x99\xb0\xdd\xd4\xd2\x62\x5a\x59\x97\x4f\xb7\x0e\xcf\x1b\xe6\xdd\x2f\x55\xcf\x8c\x4f\x45\x82\xe4\x4d\x4c\xec\xa1\x22\x9c\x1c\xbe\x38\x7f\x06\x16\x83\x38\xed\x14\xdf\xdb\x6e\x57\xea\xe4\x1a\xeb\xe2\x10\x6b\xcb\xf2\x1b\x85\xc1\x6e\x7d\xa8\x9b\x7f\xac\x35\x13\x6f\x5b\xa6\x1d\x62\x1e\x12\x73\xbc\x69\x39\x20\xbb\xab\x3f\xb1\xa3\x5d\xcc\x4f\x75\x87\x81\x86\xa5\xac\x04\x7d\xdd\xb3\xd5\xb1\xd3\x11\x2d\xa5\xcf\x79\x8e\xa9\xa2\xce\x7d\xe3\x56\x97\xfc\x44\x33\x9e\x06\x10\x48\xd5\x57\xe2\x8c\xbc\x93\xc6\xfe\xf3\xe6\x23\xd7\x06\x75\xed\x4b\xc9\xf4\x3b\x69\xe0\xce\x20\x53\xc5\x21\xec\x30\x51\xa7\xed\xa3\x07\x00\xf6\x55\x64\x13\xf0\x13\xba\xba\xab\x48\x46\xf6\xe9\x2b\x61\x25\x02\x37\xa3\x90\x42\xad\x1d\x08\x9f\xff\x23\xa4\x18\x81\x6f\xa0\x16\x86\x43\x84\x54\x15\x3c\x34\x80\x73\xa0\x30\xf8\x12\x7e\xe1\xda\x33\xf1\x70\x66\x53\x6f\xae\xe4\x09\x59\x30\x35\x03\x6f\x57\xd2\xe2\xed\xe9\x6a\xc2\xed\x64\xb8\x6d\x5d\x2b\x60\x99\x6f\xb7\x5a\x69\x36\x16\x29\x7a\x1e\xd9\xd2\x02\x4d\x37\xff\xb4\xdc\x07\x30\xf5\x2f\xc8\xa3\xd7\x63\x72\xee\x5b\xfc\xc4\xbf\x39\xaf\x5f\x0c\xc6\x42\xe0\x9a\x58\x56\xb2\xa4\x19\xc3\x0e\x07\x54\x84\x5c\x37\x79\xb7\xc1\xd8\xcf\x5c\x3e\xbd\xdd\xb3\x41\x64\x3a\xba\x67\xab\xa3\xb3\x8d\xa5\x3d\xba\x12\x47\x65\xc2\x63\x65\x31\x03\x13\x05\x69\xeb\x08\x7e\x3b\xda\xff\x2c\x68\x64\x96\xdd\x6d\x49\xad\xeb\xa6\xef\x79\xbd\xeb\xbf\x56\xd8\x38\xd1\xa7\x60\xf6\x10\xd8\x6b\x49\x2a\x30\x03\xdb\xbb\x71\x69\x15\x2b\xaa\xde\xf3\x3c\x2f\x2b\xd1\x14\xf9\x4c\xd1\x94\x91\x99\xa2\xf9\x7c\x57\xb1\x04\x65\x9b\x3a\xf0\xcf\x46\xd0\xdd\x82\xfc\x06\xdd\xb0\xf1\xbd\x07\x36\x9d\x4b\x79\x0f\x69\x88\x40\x08\x8f\x68\xc9\xf8\x0b\x7e\xeb\xb2\xbc\xe7\x95\x52\x4d\x52\x66\x28\xcf\x20\x8e\xe6\xfd\xdb\x6b\x17\x69\xe3\xcf\x71\x3f\xca\xfa\xa0\x95\x01\x14\x00\x9a\xba\x08\xb0\x5b\xb6\xe4\xec\xc1\xd9\x37\xb6\xc5\xc8\x8c\xc8\x8c\x09\x08\x0c\x69\x08\xa0\x1a\x11\xcd\x53\xf6\x06\x92\x9e\xb7\x03\xea\xe1\x70\xd8\x32\xe6\xb6\xcd\xdb\xcc\xc1\x5b\xb9\x77\x87\x53\x36\xa8\xbf\x37\x52\x35\x14\x61\xea\x96\x83\xdd\x2d\xbf\xda\x45\xf1\x7f\x4b\xbe\xf9\xe6\x77\x5b\x1f\x5a\xd0\x8f\x7c\x51\x2c\xbe\x25\x7f\xf8\xfd\xef\x7f\xf7\xfb\xed\x8f\x71\x81\x8f\x7d\xbd\x7d\x7e\x6e\xb7\x5d\xdc\x5e\x1e\x00\xbe\xd3\x10\xc9\xd8\xec\xcc\xec\x00\xea\x8e\xf2\xac\x50\x2e\x86\xb6\xa3\x8a\xf0\x7d\xfc\x0e\x38\xa2\xca\xa4\x13\xea\x21\xfa\x40\x3b\x17\x80\x77\xc7\x05\xd3\xd0\x3c\xa7\x10\x8a\x25\x72\x26\xf8\x3f\x58\xea\x7b\xe7\x40\x40\x0c\x54\xd9\xf7\x24\x4e\x98\x48\xb1\x87\xa9\x3d\xf3\xe6\x54\xa4\x59\x53\xa0\x44\x87\x99\xc6\x3b\xb8\x17\xca\xe0\xe4\xd9\x09\x61\xd7\xe5\x1b\x6b\xe8\x82\x4e\xac\xce\x6d\x87\x27\x1a\xa2\xad\xd7\x4c\x91\x31\x4e\x1a\x14\xeb\x9a\x31\x6e\xe8\x7d\xa8\xb2\xc2\xbd\xbf\x17\x4c\xad\x20\xc1\xa6\x14\xec\xa3\x20\xbc\x0f\x65\xfd\x06\x3f\x0d\x27\x51\x61\x01\x9d\x35\x5d\xb8\x14\x62\xca\x30\x99\xb5\x6f\xc3\x3b\x0c\xc3\x0e\xbc\xd7\x8c\x9c\x13\x51\x64\xd9\xb6\x47\x85\x6c\xf2\xaf\xc5\xb8\x6b\x51\x25\xbb\xe9\x78\x5d\xcd\x02\x35\x98\xfe\xa4\xc6\x81\x78\xe2\x03\x89\xf2\x87\x6d\x2e\x88\x27\xdc\x29\x9e\xb6\x7b\x2c\x6d\xb7\x32\x41\x1d\xcc\x08\x78\xed\x12\x6c\xdb\xb1\xb8\xcf\x63\x1a\x16\xf0\xda\x29\xae\xa9\x9b\x91\xa1\x66\xe8\x07\x67\x6a\xd8\x63\xf2\x5d\xcc\x0e\x35\x53\x7f\x31\x3e\x6c\x20\xbc\x6b\x14\xd9\x0e\x11\x64\x1d\x57\xb2\x83\x51\x02\xaf\x17\xd3\xc4\x4e\x27\x51\x07\xc6\xbc\x9b\x99\xa2\xf3\xaa\x2a\xc6\xc5\x52\x62\x91\xed\x9d\x64\xb8\xdb\x8d\x17\xd7\x44\xb9\x07\xe0\xac\x4e\x96\x0b\xc2\x6f\x2c\xd2\x5a\x85\x96\x14\xba\xdd\xd8\xdd\x3c\x83\xe6\xbc\x9b\x41\x74\x90\xea\xcc\x8b\x8c\xfd\x85\x9b\xf9\x7b\x5f\x54\xdf\x51\xb5\x29\xf2\x0c\x26\x1b\xfd\x60\x49\xe8\xb6\x94\x0c\xaf\xb0\x8d\x1b\x4b\xe4\x62\xc1\x44\x8a\x41\x44\x0b\x7a\xcf\x48\xd9\x2a\xd4\xca\x78\x20\x06\x03\x38\xf6\x31\xa7\xa2\x94\x13\x97\x96\x97\x37\x51\x54\x47\x7a\xea\x7a\xd6\x76\x4e\x68\x69\x4e\x64\x89\x32\x51\x2a\x09\x2b\x64\xca\x32\x09\x29\xf0\x18\x61\x8b\x31\xe0\x3e\x07\xc4\xb2\x64\x77\xd7\x9d\x7a\xae\xe0\x26\x13\xb3\xb2\x8e\x97\xce\xa0\xa9\xaf\xe3\xc0\x52\xb0\x31\xb9\x75\x22\x4c\x37\xa9\xa8\x0b\x3b\xed\xc8\x4a\x77\x38\x10\x3f\x8e\xca\x6a\x19\x23\x2b\xec\x8e\xdc\x68\x8c\x5c\xf0\xa4\x6d\x51\xda\x6d\x1d\x78\xad\x2f\x8b\x7f\x2f\x5e\x98\xa5\xbf\xd7\x65\x69\xfc\xc3\x2f\x8b\xb3\xe5\x0a\xad\x36\x76\x5b\x9b\x2a\x33\x29\xcf\xa3\xb0\x30\x6b\x6c\x33\xc1\x66\xd5\x60\x24\x1c\x91\x8b\xdb\x37\xe7\x1f\xde\x9c\x91\x1f\x6f\x2e\xe1\xdf\xcb\x37\x6f\xdf\xd8\x7f\x2f\xde\xbf\x7b\xf7\xe6\xe2\x83\x95\x60\x5e\x61\xd3\x00\xab\x40\xda\xa5\xb1\x27\xa1\xac\xf2\x29\x2a\x56\xe4\xae\x30\x96\x11\x95\x1f\xab\x8c\x82\xa2\xf5\x81\xa6\xa9\x55\x56\x9f\x1d\x01\xd4\x23\x7c\xdd\x60\x13\x77\x4b\xc1\x3e\x0b\x2e\x45\xae\x5d\x40\xfb\x34\x14\xd6\x39\xc9\xa4\x32\xdf\xa3\x3d\xb3\x4b\x7e\x11\xe4\x7b\xa9\x88\xeb\x4d\x07\xcd\x4a\x53\x7d\xec\x72\x78\xec\xff\xc7\x78\xeb\x75\x26\x67\xc7\x21\xb5\x87\x91\x4c\xce\x88\x2e\xa6\x21\xe5\x0a\x84\x00\x78\xfa\x95\x7f\xac\x92\xa9\x72\x16\xf2\xae\xa2\xb7\x02\xf0\xca\x3b\xf1\x03\x31\xdc\xd7\xd0\x50\xae\xf2\xa4\xbd\xb1\x0e\xf0\xd5\xeb\xfa\x11\x78\x79\x8f\xab\xb5\x37\x7e\x11\x96\xd6\x1f\x78\x96\x26\x54\xa5\x1b\x04\x0f\x67\x32\xd2\x0b\x60\x0f\xab\x2c\x63\xf3\xef\x12\xb8\xab\x8d\x22\x97\x4c\x65\x34\xc7\x84\x00\x28\x73\x0d\x11\x53\xf0\x91\x4b\x96\x33\x48\x7b\xf3\xcd\xe9\x99\x48\x32\x09\x65\x58\xf0\x40\x3f\xab\x4e\x1d\x23\xa8\x7c\xad\x4a\x9f\x7c\x19\xb6\xd7\xd1\xe7\xc9\x60\x21\x8e\x7c\x27\xd2\xc7\xc8\xf3\xad\x85\x80\x42\x8e\x0f\x2a\xca\x41\xda\x67\xe4\xc8\x65\x24\x1e\x9d\x91\xa3\x50\xeb\x26\x75\x9a\xc1\xd1\xab\xa3\xf2\x81\x38\xa7\x0d\x14\x03\xe7\x06\x1b\xc1\x77\xe2\xec\x59\xa0\x0e\xef\xac\x0b\x9f\x2e\xeb\x15\xd9\x13\xd9\x19\xee\x60\x0c\x55\x40\xe3\xca\x40\x36\xbe\x5a\xa6\x63\xb6\x7e\xd1\x0e\x3f\x7a\xdd\x40\xf9\x03\x4c\xeb\x74\xc8\x51\xcc\x2e\xa5\x0f\xc2\x9b\x54\x28\x2f\x38\x1b\xe3\x82\x4a\x5c\x91\x9c\x2a\xab\x7e\xf9\x27\xab\x2d\xf1\x5e\xb5\x36\xc4\xeb\x40\x41\x91\x4f\xa9\xa3\xa6\x32\x09\x6f\x5c\x64\x54\xeb\x1a\x6b\x33\x70\x11\x0b\x98\x30\x84\x4c\xa8\x77\xb8\x41\xbd\xf3\x39\x5d\x36\x14\xc4\xe8\x30\x68\x43\xd5\x8c\x99\x66\x6f\x10\x15\xab\xf7\x8d\x25\xf4\x46\x9d\x8b\xf6\x8e\xba\x6d\xc5\xca\x26\xe4\xc2\x8c\xa4\x1a\xe1\x2b\xdf\x12\xa3\x8a\x6d\x7e\x3d\xc3\x17\x4c\x16\x66\xc2\x12\x29\xea\xb3\x5f\xdc\x73\x83\xb9\xb7\x76\x48\x09\x72\x1e\xd6\x73\x2f\xc0\xc4\x45\x2f\xbd\x32\x5a\x4a\x37\xde\xab\x5a\x2d\xdb\xf3\xfe\xed\x75\x9f\xc5\x26\x90\x36\xdf\xbc\x92\x3f\xb9\x33\x43\xcc\xc2\x48\xdd\xc8\x1b\x5f\xbb\x2e\xcc\xee\x2f\x5d\x04\x6f\x5d\xf3\xd3\x0e\x19\xcd\xa5\x57\xb6\xce\x5f\x1b\x6a\x8a\x0d\x6a\xa8\xac\x8d\x63\x96\x13\x4c\x3f\x74\xaa\xc8\x04\xde\x8b\x0d\x9b\x9b\xf5\x26\xb0\x86\x0d\x3c\xe7\x03\x34\xc7\xc4\xbd\x68\xf7\xa7\x51\x94\xa3\xd2\x4c\x13\x53\x40\x1e\x3b\x35\x2e\x98\xd3\x15\x5c\xfa\x4d\xdd\x34\x6a\xd5\xe4\x26\xd5\x38\x61\xca\xe8\xb7\x54\x9b\x1f\xf3\x94\x6e\xc9\x74\x5b\x0b\xd2\xd4\x06\x36\x0c\x8a\xf4\x0f\x82\xa5\x96\xc3\x3b\x14\x20\x3c\xf2\x60\x59\x6f\x81\x10\xb7\x86\x1e\x6c\x25\x39\xbf\x81\xec\xeb\x23\xfb\xa9\xfa\x51\xdf\x4a\x8b\x93\xf3\x5a\x06\x54\x0d\x4f\x69\x1b\xad\x3d\x4e\x14\x40\x23\x82\x7d\xac\xb3\x32\xf4\x1f\x71\xc6\xa8\xa8\x4f\x36\x58\xa3\x28\x78\x6e\x77\x1a\x72\x1f\x20\x0f\x73\x6e\xe5\x5d\xcc\x08\xd4\xc4\xcb\x5f\x29\xcb\xd8\x96\xc4\xc0\x9e\xe1\xb3\xee\x0b\x97\xee\x03\x9d\x42\xbb\x6e\xaa\xef\x04\x27\x86\x93\xe0\x5d\xea\x49\x29\x69\x3b\xe9\x21\xe8\x6b\xeb\xb3\x02\xf1\x65\x9a\xc9\xe4\x1e\x0b\xd0\x41\xed\x07\xfe\x0f\xa6\x7c\xac\x7d\xd9\x7c\xce\x75\x44\x9b\xf9\x6e\xaf\x1e\x6f\xbe\xfd\x15\x40\xb1\xb0\x2d\x02\x03\x7c\xa9\x4a\x6b\x6a\x21\x5c\xa6\xe5\xa7\x09\xd7\xf5\x5a\x0e\xe4\x28\x54\xbc\x25\x9b\x0a\x0f\xd6\xaa\x81\xfa\x98\x4e\x59\xa5\x0b\x97\x1b\xf4\xfa\x87\xed\x79\x34\x83\x86\xe0\x36\x65\xf3\xe0\x13\x80\x3e\x91\x34\x96\x36\x6a\xcc\xfb\xe9\x6a\xed\x6b\xc9\xef\x21\xdd\x25\xfc\x30\xe4\x2e\xd0\x06\x0d\xa8\x1c\xdc\xc3\xb9\x35\xf5\xa1\xbc\x76\xf1\x5b\x76\x2d\xcc\xbb\x93\x67\x4d\xec\x52\x40\xb5\x5a\x68\x26\xa8\x1d\x2e\x8b\x17\xa3\x0f\xee\xa4\xda\xaa\xc0\x0c\x37\xf8\xe6\x6c\xb0\x56\x40\x56\xfa\xdc\x1e\xaf\xb7\x99\xb0\x64\xb9\x57\x78\xe5\x8c\x50\x32\xe7\xda\x48\xe5\xdc\x89\xd0\xbc\x4e\x51\x68\xae\x5b\x1f\xf7\x36\x4c\x04\xe0\x45\x18\x02\xa1\x79\xce\x68\xe8\x6b\xe5\xce\x26\x68\x4c\xa5\x58\x22\x55\x5a\x3b\x30\x6f\x1a\xa8\x95\xa5\x6a\x3f\x3f\x40\x66\x6b\x46\xb5\xf9\x10\xc6\x60\x05\x84\x8e\xdc\xb8\x2a\xfe\xb8\x29\x96\xb3\xf1\xa5\x7f\xa4\x28\x7f\x94\x84\x0a\x34\x89\xf4\x93\xc1\xdb\x85\x8c\x72\x6e\x28\xcd\xed\x35\xaf\x87\x20\xb9\x45\x53\xfc\x34\x23\x5f\x30\xad\x1b\x93\xab\xd6\x02\x53\xa0\x86\x34\x09\x35\xa4\xdd\xeb\xfe\xb0\x47\x01\x01\x43\x50\x7d\x95\xb7\xd5\x76\x52\x23\x20\x26\xa0\x41\x21\x6c\xab\x5e\x4b\x96\xcf\xa9\xee\x3a\x99\xb0\x8b\x42\x58\x73\xe7\xed\xd0\x71\x34\x8a\x51\xdd\x94\x68\xba\x86\xdb\xa9\xe2\xec\x8e\x5c\xd0\x05\xcb\x2e\xa8\x1e\x12\xb9\xc0\x01\xc6\x84\x8d\x67\x63\x72\x7c\x1b\x79\x98\xdf\x49\x73\xdd\xd4\xe3\xa3\xa5\xfc\x43\x97\x1d\xfd\xa8\x7b\xb9\xb7\x92\xd0\xbe\x73\x7b\xee\xd9\xde\x23\x6c\xd8\xa1\x07\xb1\x37\x9b\xb3\xa5\xb7\xed\xc7\xea\x4e\x2c\x14\x58\xfc\x92\x7d\x77\x64\x4b\x02\xe7\xb6\x5d\x78\xc8\xfb\xaf\x65\x4a\x01\xc4\xa4\xd6\x64\xb2\x31\xbb\x0f\x15\xcd\x15\x7c\x06\x71\x50\x21\x94\x87\xb7\x23\xbd\x98\xfc\x34\xa4\xd8\xf2\xb4\xa5\x0a\xdc\x02\x6e\xfd\xbd\x41\x2e\x1f\x35\x9f\xc2\x7d\xcb\x20\xa4\xe0\xa5\xb1\x14\xf0\x29\x83\x4e\x2e\xfd\x57\x9d\xad\x23\x54\x76\x86\xbf\xee\x5c\x07\x3d\xf7\x4c\x85\x3e\x4e\xa0\x57\x21\x5b\x62\x83\x50\x48\x72\x61\x44\x30\x6d\x37\xc5\x69\xc3\xe7\x3b\x2a\x54\xdd\x94\xa9\x76\x45\xb7\x55\x89\x25\xed\x4b\xeb\x1f\x6a\x5a\x60\xbc\xba\xea\x6c\x1d\x74\xe2\x1d\x94\xb5\x76\x8d\x67\x07\x60\xad\xe2\xdf\x8e\xf0\xea\x0d\xb8\xeb\xd7\x5a\x25\x69\xfb\xca\x2d\x30\x69\xf4\x2a\x27\x96\x03\x27\x50\x5f\x1c\x79\xb7\x63\x4f\x55\xfb\xed\xed\x3a\x0f\x84\x10\xcb\x2a\x85\x0f\x35\xad\xa2\xe0\xc3\xe1\xbc\xb5\xfe\x48\x67\x78\x07\x50\x4c\xa5\x95\x80\x1e\xb7\x38\x03\x5e\x6d\x54\xf7\xf4\xf4\xd6\xa5\x52\x56\x23\x8d\x3d\x52\x5d\x1b\xcd\xd4\x92\xa5\x15\x4f\x9d\xab\xf3\x5f\xbd\x17\xf9\x6d\x4b\xf8\x0e\xed\xe4\x9f\xff\xfa\xcd\xff\x07\x00\x00\xff\xff\xc6\xee\x9b\x32\x42\x31\x08\x00") +var _operatorsCoreosCom_clusterserviceversionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x23\xb9\x91\x2f\xfa\xbf\x3f\x05\x42\x9e\xbd\x92\xd6\x24\xd5\xed\xd7\xdd\xed\xb3\x77\x1d\x3a\xea\x9e\x19\xdd\xe9\x56\x2b\x5a\x72\xfb\x3a\xc6\x3e\x63\xb0\x2a\x49\x62\x55\x05\xd4\x02\x28\x4a\xf4\x99\xf3\xdd\x6f\x20\x01\xd4\x83\xa4\x24\xb2\x00\x49\xd5\x3d\x05\x47\x78\x5a\x64\x11\xc8\xc2\x23\x91\x8f\x5f\x66\xd2\x82\x7d\x06\xa9\x98\xe0\x6f\x08\x2d\x18\xdc\x69\xe0\xe6\x2f\x35\xb9\xf9\x37\x35\x61\xe2\x64\xf9\xfa\x57\x37\x8c\xa7\x6f\xc8\x59\xa9\xb4\xc8\x3f\x81\x12\xa5\x4c\xe0\x2d\xcc\x18\x67\x9a\x09\xfe\xab\x1c\x34\x4d\xa9\xa6\x6f\x7e\x45\x08\xe5\x5c\x68\x6a\x3e\x56\xe6\x4f\x42\x12\xc1\xb5\x14\x59\x06\x72\x3c\x07\x3e\xb9\x29\xa7\x30\x2d\x59\x96\x82\xc4\xce\xfd\xd0\xcb\x57\x93\xd7\xbf\x9f\xbc\xfa\x15\x21\x9c\xe6\xf0\x86\x24\x59\xa9\x34\x48\x05\x72\xc9\x12\x70\x8f\xa9\x89\x28\x40\x52\x2d\xa4\x9a\x24\x42\x82\x30\xff\xc9\x7f\xa5\x0a\x48\xcc\x60\x73\x29\xca\xe2\x0d\xd9\xfa\x8c\xed\xd7\xd3\x44\x35\xcc\x85\x64\xfe\x6f\x42\xc6\x44\x64\x39\xfe\xdb\xbd\xab\x1d\xfe\xca\x0e\xef\x26\x08\xbf\xcf\x98\xd2\x3f\xdc\xff\xcc\x7b\xa6\x34\x3e\x57\x64\xa5\xa4\xd9\x7d\x2f\x82\x8f\xa8\x85\x90\xfa\xa2\x26\xcb\x90\x91\xa8\x65\xf3\xdf\xee\x41\xc6\xe7\x65\x46\xe5\x3d\xbd\xfd\x8a\x10\x95\x88\x02\xde\x10\xec\xac\xa0\x09\xa4\xbf\x22\xc4\x8f\x65\x3b\x1f\x13\x9a\xa6\xb8\x5e\x34\xbb\x94\x8c\x6b\x90\x67\x22\x2b\x73\x5e\x0d\x6e\x9e\x49\x41\x25\x92\x15\x1a\xd7\xe4\x7a\x01\x38\x6b\x44\xcc\x88\x5e\x00\x39\xbb\xfa\x5c\x3d\x4a\xc8\x7f\x29\xc1\x2f\xa9\x5e\xbc\x21\x13\xb3\x00\x93\x94\xa9\x22\xa3\x2b\x43\x42\xe3\x29\xbb\x9a\x6f\xed\x77\x8d\xcf\xf5\xca\xd0\xab\xb4\x64\x7c\xfe\xd0\xf8\xee\x25\x76\x23\x61\xd9\x58\xa7\xe6\xf0\x9f\x37\x3e\xdf\x75\x78\xff\xfa\xd4\x8c\x4c\xf4\x82\x6a\xa2\x17\x4c\x11\xc1\x81\x48\x28\x32\x9a\x80\x7a\x80\xa0\x2d\x8f\x58\x8a\x3e\x6d\x7e\x71\x0f\x49\xcd\x2e\x35\xd5\xa5\x9a\x14\x0b\xaa\x36\xa7\xf8\x72\xed\xd3\x2d\xdd\xd9\x07\x97\xaf\x69\x56\x2c\xe8\x6b\xf7\xa1\x4a\x16\x90\xd3\x7a\x0f\x88\x02\xf8\xe9\xe5\xf9\xe7\xdf\x5d\xad\x7d\x41\xda\xb3\xb3\x75\xf7\x13\xa6\xcc\x54\x21\xa3\x20\x9e\x53\xe0\xda\xad\x0a\x20\xff\xd8\xfa\x9b\xab\x02\x92\x7f\x4c\x36\x28\x17\xd3\xff\x82\x44\x37\x3e\x96\xf0\xdf\x25\x93\x90\x36\x29\x32\x13\xe4\xb9\xcf\xda\xc7\x66\xfe\x1b\x1f\x15\xd2\xb0\x05\xdd\x38\xf2\xb6\x35\xd8\x5f\xeb\xf3\xb5\xb7\xfd\x79\xbc\xf6\x2d\x21\x66\x92\xdc\x5b\xa7\x86\x17\x82\xc2\x1d\xea\xf6\x20\xa4\x6e\x66\xed\xce\x65\xca\x6c\x17\x09\x0a\xb8\xe5\x8e\xb8\xa9\xb8\x7b\xcb\xc9\x46\xe7\x66\x8a\x40\x2a\xc3\x22\xca\x2c\x35\x4c\x74\x09\x52\x13\x09\x89\x98\x73\xf6\xcf\xaa\x77\x45\xb4\xc0\x61\x33\xaa\x41\x69\x82\xe7\x9a\xd3\x8c\x2c\x69\x56\xc2\x88\x50\x9e\x6e\xf4\x9d\xd3\x15\x91\x60\xc6\x25\x25\x6f\xf4\x88\x3f\x51\x9b\xb4\x7c\x10\x12\x08\xe3\x33\xf1\x86\x2c\xb4\x2e\xd4\x9b\x93\x93\x39\xd3\xfe\x7a\x48\x44\x9e\x97\x9c\xe9\xd5\x09\x72\x7a\x36\x2d\x0d\xeb\x3d\x49\x61\x09\xd9\x89\x62\xf3\x31\x95\xc9\x82\x69\x48\x74\x29\xe1\x84\x16\x6c\x8c\x2f\xc3\xf1\x8a\x98\xe4\xe9\xaf\xa5\xdb\x26\x6a\x6d\xe0\xad\xe7\x81\x78\x0e\xbd\xe7\x62\x19\x8e\x6d\x37\xa7\xed\xd0\xbe\x6c\xbd\x26\xe6\x23\x33\x8d\x9f\xde\x5d\x5d\x13\x4f\x91\x3b\xea\xb8\x44\xf5\xa3\x5b\x66\xc8\xaf\x96\x99\x59\xc6\x67\x20\xed\x2f\x67\x52\xe4\xd8\x2b\xf0\xb4\x10\x8c\x6b\xfc\x23\xc9\x18\x70\x4d\x54\x39\xcd\x99\x56\xb8\xad\x41\x69\xb3\x90\x9b\x1d\x9f\xe1\x75\x4a\xa6\x40\xca\x22\xa5\x1a\xd2\xcd\x47\xce\x39\x39\xa3\x39\x64\x67\x54\xc1\xb3\xaf\x9d\x59\x23\x35\x36\x0b\xb2\xf3\xea\x35\x85\x85\xcd\x1f\x6c\x9c\x7a\x42\xfc\xed\xbe\xcf\x72\xdf\xcb\x68\x48\x0a\x49\x46\xa5\x15\x50\x88\x86\x2c\x23\x1f\xdf\x7f\x20\x0b\x71\x6b\x0e\x12\xe3\x4a\xd3\x2c\xc3\x83\xe9\x84\x88\x8d\xae\xf1\x0e\x48\x28\x27\x39\xe5\x74\x0e\x84\x16\x85\x22\x33\x21\x09\x25\x73\xb6\x04\xee\x19\xc0\xfa\x5a\xdc\xfb\x7e\xf7\x71\x36\x62\x6f\xa4\xad\xb7\xaa\xff\xd6\x11\xbc\xf6\xcd\x7d\xbc\xce\xb4\x0d\xf9\x6c\xbf\x89\x35\xed\xb4\xee\x02\x8f\x14\x27\x25\x57\x5a\x96\xb8\x4b\x52\x72\x03\x2b\x77\xba\x72\x5a\x10\xa5\x85\xf9\xf0\x96\xe9\x05\xa1\xcd\x93\x45\x35\x1e\x97\xe9\xe6\x6b\x99\xa6\x40\x93\xe9\x8a\x18\x69\x14\xd9\x99\x16\x22\x43\x5e\x87\xfd\x19\xb6\x46\x24\x68\xc9\x60\x09\x84\xca\x29\xd3\x92\xca\x55\xb5\xb7\x36\xcf\xc1\x83\xf3\x8f\xf3\xd2\x10\x8e\xee\x9f\x3d\xf2\xd0\xce\x26\xf6\x3a\x71\xb2\x59\x5a\xc9\xc7\xdd\x27\xfa\xf2\xdc\xed\xe0\x5a\xd8\x56\x6e\x07\x83\x22\x66\xa7\x3a\xb1\xa8\x92\xda\x91\x00\xb7\x35\x53\x22\x64\xb5\xb7\xc8\x74\xb5\x75\x8c\xc6\x56\x27\x53\x30\x6c\x50\x52\x6e\xa6\x7e\xeb\x11\xea\x30\xb1\x0f\x6d\x46\xd3\xc4\x2d\xdf\xb6\xf3\x9b\x7d\x53\x29\xe9\x76\xea\x09\x61\x1a\xf2\x7b\x7a\x26\xeb\xd3\xdc\x9c\xcf\xea\x63\x43\xe0\x92\xa5\x60\x26\x56\x53\x66\x77\x99\xe1\x09\x74\x2a\x4a\x6d\xe7\xd3\x3d\x92\x92\x25\xa3\x84\xce\xe7\x12\xe6\xb8\xff\xef\x1d\xf6\x91\x39\xb1\xed\xfe\x63\x5f\xb7\xb1\x55\x6a\x1e\x7c\xc2\xb0\xdf\x07\x1f\xe0\xdb\x98\x47\xf3\x81\x4d\xb9\xb9\xdd\x1e\x5b\x43\xdb\x68\x62\xe6\xc4\x4f\xad\x90\x0f\x3e\xbc\xcb\xda\xda\xf6\xc8\x0a\xdb\xd6\x5e\xe7\x35\x42\xdc\xb7\x53\x73\x66\xea\x0b\xc0\x70\x0e\x7c\xb0\x66\xe9\x53\x20\x05\xc8\x99\x90\xb9\x39\x3c\x9c\x50\x92\x58\x51\xb6\xe2\x5b\xc8\x70\x79\xf2\xd0\x74\x92\x5d\xd7\xdf\xb6\x5d\x76\x81\x6d\x63\x52\x50\xbd\x78\xe4\xb1\xdd\x96\xca\xb6\xe6\xa4\x3d\xfa\xf0\x23\x8c\x6f\xa3\xef\xfa\xde\x8a\xde\xb7\x99\x86\xe8\x9d\xe2\x95\xb5\x4b\xaf\xbb\x70\xee\xf5\xf6\x89\xde\x7e\x00\xa5\x8c\xbc\x80\x42\xa8\xa4\xb7\x04\x78\x22\x0c\x4f\xf9\x7f\xaf\x3e\x5e\xd8\xd1\xb7\x71\xd7\xcd\x76\xae\x09\xcb\x8b\x0c\x72\x23\x8b\x92\x0f\x54\xaa\x05\xcd\x40\xe2\x9d\xf8\x67\x9e\xb7\xfe\x4e\xe8\xfd\x87\xba\xd9\x8c\x80\xa9\x20\x35\xac\x2f\x85\x8c\xae\x2c\x51\x29\x24\x22\x35\x57\x82\x90\xa4\x30\x8a\x42\x5e\x94\x1a\x08\xb5\xdf\x22\xfd\x8c\xcf\x77\xa1\x7a\xaf\x95\x20\x46\x9c\xca\xa9\x7e\x43\xa6\x2b\xfd\xd8\x49\x23\xe4\x6e\x9c\xee\xca\x72\x9a\xc4\x3c\xce\x78\x6c\xdb\x89\xfd\x34\x3b\x7e\xf4\x2d\x8d\xac\x4d\x19\x07\x79\x29\xa4\xde\x85\x47\x1a\xa5\x6e\x0e\x9b\xa2\x68\xb3\xf9\x29\x63\x5c\xff\xee\xb7\x0f\x3c\x99\x42\x91\x89\x95\xd9\x3b\x8f\x1f\xcd\x1d\xdf\x67\x67\x36\xb2\x6b\x7f\xbb\xb2\x8e\x1d\xfb\xb3\x66\xc1\x18\x3d\x6d\xd3\x3c\x3b\x75\xc4\x63\xbd\x5b\xa5\x3c\xbf\xd8\x5d\x7b\x79\xee\xed\x3c\x9f\x60\x06\x12\x78\xe2\x79\x5c\xf5\xa7\x16\x84\x92\x1f\xca\x29\x48\x0e\x1a\x54\x43\x0b\x58\x15\xe0\x8d\x6a\x60\x7f\x20\x41\x92\x52\xb3\x8c\xfd\x73\x9b\x29\x62\xdb\x5b\x45\xbf\x65\x1f\x91\xa7\xfc\x63\x8f\x48\x55\xfe\xb1\xc7\x64\x2b\xdb\xf6\xb9\xb6\x1f\xdf\x85\xb6\xb5\xd6\x09\x0d\x20\x4e\x5b\xa8\x56\x26\x6d\x2f\x45\x74\x4e\xfe\xf8\x36\xdf\x42\xe9\x25\x1a\xce\x5b\x86\xe7\xfb\x08\x26\x47\xf7\xf9\x24\x26\x46\xd9\x9f\xa0\x39\xfc\xc7\xbf\x4f\x6c\x97\xc7\x13\xf2\x2e\x2f\xf4\xca\x9b\x80\xd8\x23\x9d\x33\x45\xb8\xd0\x9b\x42\x60\xf4\x69\x5a\x6e\x37\x40\x3e\x3a\x53\xa7\x97\xe7\xde\xb4\xfd\x8c\x4b\xab\x0a\x48\x7a\x20\xe4\x5f\xb5\xc8\x68\x89\xf8\x33\x06\x59\x4a\x98\x91\xdf\x0d\xb1\x64\x9a\x89\xe4\xc6\x59\xf1\x3f\xbd\x25\x4a\x58\x9e\x63\x94\x3c\x23\xf5\x27\x82\xab\x32\x07\xc2\x1e\x63\x22\x83\x54\x3f\x48\xf5\xcd\x36\x48\xf5\x83\x54\x5f\x35\xeb\x9c\xeb\x03\x63\x5c\x23\xe4\x5e\xd6\x88\xcf\x0d\xcc\xf1\xa1\x36\x30\x47\x6c\x03\x73\x1c\x98\xe3\x43\x1d\x3f\xfa\x96\x3b\x49\xb8\x8f\xf6\xf5\x18\xdf\x18\xbc\x05\x83\xb7\x60\xf0\x16\xb8\x36\x5c\x9d\xae\x0d\x57\xe7\x70\x75\xd6\xed\x8b\xbb\x3a\x07\x6f\xc1\xe0\x2d\x18\xbc\x05\x83\xb7\xa0\xd9\x06\x6f\xc1\xe0\x2d\x18\xbc\x05\x83\xb7\xe0\x9e\x36\x48\xf5\x1d\x3b\x1d\xa4\xfa\x41\xaa\xdf\xd6\x06\x6f\xc1\xe0\x2d\x18\x98\xe3\xc0\x1c\x07\xe6\xb8\xa5\xf5\xd1\x5b\x90\x64\x40\xf9\x76\x35\x7e\x2d\x88\x11\x9f\x43\xc1\x8f\xcd\x98\x0b\xe1\x73\xbf\x26\x53\x58\xd0\x25\x13\xa5\x24\xb7\x0b\xe0\x3e\xfe\x94\xcc\x41\x2b\xb3\x0b\x40\xc3\x36\xcd\xef\x11\xd6\xf6\x30\x3b\x1b\x13\xe0\x74\x9a\x6d\xed\xf8\x31\xce\xe5\x7e\xf9\xb0\x77\x64\x2a\x84\x79\xbb\xcd\x19\x43\xad\xc5\x6b\x01\x11\x82\x57\xee\xd3\xb5\xb6\x07\xb0\x9c\x7d\x7a\xfb\xa4\x61\x2b\xbf\xda\xda\xcb\x79\x35\x38\x41\xbf\x0d\xc6\xf7\x99\xfb\xce\x7c\xfa\xf1\x96\x43\x8a\xe1\xde\x23\xc2\xb4\x79\xc0\x70\x15\x96\x30\x9d\xad\x2a\xfa\xbe\xec\x80\x98\xb3\x4f\x6f\x77\xf7\x6d\xf9\x65\xba\xb7\xeb\x88\x6e\xac\xc1\x49\x35\x38\xa9\xaa\x36\x48\x6c\x1d\x3b\x1d\x24\xb6\x41\x62\xdb\xd6\xe2\x4b\x6c\x7d\x77\xea\x0c\xae\x18\x32\xb8\x62\xfc\x63\x83\x2b\xe6\xd1\xc7\x07\x57\xcc\xe0\x8a\x19\x5c\x31\x0f\xb7\x41\x76\x75\x6d\x90\x5d\x07\xd9\xb5\x6e\x5f\x9c\xec\x3a\xb8\x62\x06\xe6\x38\x30\xc7\xba\x0d\xcc\x71\x60\x8e\x55\xfb\x12\x03\x37\x06\xab\xf6\x60\xd5\x1e\xac\xda\xc3\xe5\x37\x5c\x7e\xc3\xe5\xf7\x50\xc7\x83\x55\xdb\xb7\xc1\xaa\x3d\x58\xb5\x5b\x6d\xb0\x6a\x0f\x56\xed\xc1\xaa\x3d\x58\xb5\xef\x69\x83\xec\xda\xb1\xd3\x41\x76\x1d\x64\xd7\x6d\x6d\xb0\x6a\x0f\x56\xed\x81\x39\x0e\xcc\x71\x60\x8e\x5b\x5a\x1f\xad\xda\x8f\x1c\xdc\x5d\x76\x68\xd3\x46\xed\xc4\x65\x0f\x69\x9f\x90\x33\xca\x09\xe3\x49\x56\xa6\x80\xdf\xcc\x80\xea\x52\x82\x1a\x91\x8c\xe5\xcc\x57\xdf\x10\xd2\x6c\x9a\x71\x42\x15\x28\xd7\xc7\xd6\xa1\xaa\x7e\xb7\x7c\xfb\xf0\x6b\x3e\xcc\x43\x1e\xac\x16\x56\xe1\xf3\x19\xf7\xfd\xb8\x6d\xb5\x37\x19\x2c\xd9\x61\x9a\xcd\xf8\xe6\x41\x2c\xc6\x62\x2b\xf7\x3c\xfa\xda\xf7\x6d\xc1\x07\xb6\xdc\xa3\x17\xcb\x63\xd7\xc9\x98\x4c\xa9\x82\x3f\xfe\x7e\xa3\x66\x55\xf3\x91\x1c\x52\x46\xcd\x50\x5b\x9f\x78\xfc\x8a\xa9\x87\xb8\x7f\x93\xef\x70\x58\x2a\x32\x3a\xf6\xe2\xea\xd3\x74\x3d\x22\x66\xdf\xa5\xe7\xb6\x8f\x2b\x2d\xa9\x86\xf9\xaa\x51\x88\x09\xb7\x59\x2d\x30\xf0\x7b\x6a\x92\x79\xcd\x73\xeb\x10\xb7\x0b\x90\xf6\x88\xf9\xe2\x3f\xca\x0f\xc4\x54\x15\x17\xd4\x25\xce\xe3\xb1\x40\x1f\x3f\xce\x96\xaf\x1f\x5b\xdf\x6d\x25\x91\x7c\xdb\xf5\x72\xf4\xf3\xf9\xd6\x7a\xc5\xde\x56\x99\x5e\xd6\x27\xb8\xa0\xd2\x5c\x4c\xde\x7b\x86\xa2\x59\xfd\xf4\xbd\xfd\xaf\x2d\xdb\x7d\x77\xd4\x0e\x72\xda\xe3\xf2\xd9\xb8\x91\xa8\xe6\x3e\x4f\xde\x2e\x62\x99\xab\xae\x78\x09\x32\x67\x4a\xdd\x17\xfd\xd4\x26\xfd\xb1\x5b\x6c\x87\xdb\x6b\x4d\x5e\xf6\xeb\xe2\xdf\xa8\x41\x4e\x25\x3c\x5b\xeb\xca\x94\x26\x44\x96\x99\x11\xa5\x79\x4a\x5c\xe1\x21\x42\x93\x44\x94\x5c\x13\x0e\x90\x62\x04\xd5\xd6\xed\xbd\xc3\xdd\xb7\x83\xf4\xbc\xab\xec\x3c\xb6\x74\x3e\xfa\x94\x7b\x87\x53\xfb\x0a\x5b\xab\x5e\x35\xdb\xee\xb2\x36\x0e\xff\xb8\x10\xb1\x8f\x64\xb2\xb3\x5c\xd2\x45\x5e\xbd\x14\x19\x4b\x56\x9f\xca\x0c\xc8\x42\x64\xa9\xc2\x22\x6e\xe6\xf2\xac\xfc\xa0\x4d\x3d\xaa\xc0\xa7\xf1\x25\x47\x64\x5a\x6a\x92\x0a\xb0\xe6\x42\x97\x3e\xaa\xf9\xf3\x9d\xc6\xb7\xde\xf1\xdb\x85\xad\x2e\x68\x3a\x26\xb4\x28\x32\x0c\x91\x14\x46\xf0\xb8\x5d\xb0\x64\x61\x8b\xaa\x16\x34\x81\x6d\x8f\xed\x2e\x97\xee\xa4\xa7\x91\xbd\x74\x35\xe2\xcd\xdd\xd3\xc7\x76\x1d\xd9\x53\x69\x23\xb6\xce\xd7\x77\x52\x94\xc5\x8e\x8f\x77\xdb\x03\xc4\xd6\x00\xb3\x03\x99\xeb\x48\xaf\x89\x58\xfe\x4b\xe7\x18\xb7\x4b\xad\x9c\xe5\xd5\x79\x62\x26\x18\xe6\x98\x97\x99\x66\x45\x86\x3f\xb1\x29\xae\x14\xa1\x12\xea\x0b\x6e\x44\x28\x5f\x79\x3f\xbb\xab\x49\x08\x29\xa1\x73\xd3\xa3\xc6\x7a\xa7\x62\xb6\x33\xd5\xb6\xe8\x61\x99\x1b\xf9\xab\x61\xfb\x55\xa8\xea\xf3\x55\x4d\x05\xb9\x65\x59\x66\x94\x1f\x9a\x65\xe2\x16\xd2\x09\x39\x38\x58\xbf\x80\x12\x21\x1b\x74\x23\xab\x3b\xf8\xd7\xd6\x53\x86\xaf\xd5\x2f\xb6\x9b\x12\xb7\xaf\x16\x42\xf6\xd3\x44\xc8\xfe\x3a\x17\x21\x5c\x70\xef\x3b\xf8\xf3\xa7\xf7\x4f\xbe\xb7\x2e\xda\xc3\xb9\xfa\x98\xa0\xcd\xf6\x2a\xa8\xd4\x8c\x66\xa4\x94\x99\xb2\xdb\x8b\x1a\x5d\x43\xfa\x8a\xa4\x0b\x8a\xb0\x8c\x04\x14\x9e\x74\x42\xfe\xd5\x6e\x28\xb7\x8e\x96\x0b\x09\x9e\xad\x08\xb5\xab\x38\x2b\xb3\x6c\x44\x66\x8c\x53\x73\x07\x41\xe1\xc3\x6c\x77\xb0\xa8\xd4\xed\x8a\xf1\x04\xcc\x34\x8d\x2b\x77\x02\x52\x6e\x46\x36\xdc\xae\x62\x47\xe9\xc8\x95\xe0\xb4\x06\x26\xe5\x48\x31\xac\x29\xa1\xd3\x0c\x50\x49\x70\xe2\xe2\x27\x91\xa1\x17\xb0\x72\x55\x60\xdd\x4e\xda\xfc\xfa\x7f\x32\xbe\xab\xa2\x6d\xdb\x27\xbc\x95\x13\xca\x09\x30\xbd\x00\x89\x43\xaf\x0c\xeb\x34\xfb\xb4\x3e\x0f\x47\xaa\x4c\x16\x66\x8a\x0e\x0a\x91\xaa\x03\xc3\x58\x0f\x14\x24\x12\xb4\x3a\x38\x36\x7f\xad\xbf\x2b\xce\x57\xf3\x77\x27\xb4\x60\x07\xc7\x23\x82\x13\x8e\xc5\x42\x85\x5e\x7c\xb9\x47\xc0\xbf\x6b\xab\x2c\xf6\x63\xad\x75\x00\x3e\x35\x7b\x70\x05\x2a\x45\x61\x6b\x3b\x9a\x5b\x4b\x03\x06\x75\x9b\x4d\x8e\xdb\xa5\xe1\xf1\x5d\xbb\xbe\x08\x39\xe5\x04\xac\x8f\x0e\x34\xc9\x81\x72\xf7\x34\x2c\x41\xae\xf4\x02\xdd\x76\xaa\xe2\x5d\x5f\xfc\xa4\x87\x4d\xb8\x63\x20\x7e\x72\xeb\x4d\x6e\xcb\x1f\xaf\x4f\xee\xe1\xbf\x1e\xae\xf3\xf0\xfa\xd2\xfa\x62\xa7\x12\x05\x8e\x4e\xd3\xf8\xd9\xfc\xb2\x3d\x85\xf6\x23\xcb\x7d\x2b\xfe\xf1\xfe\xbd\xad\x54\xec\xe6\xea\x07\xc6\x53\x55\x65\x09\x4d\x2d\x5b\x75\xf3\xbd\x75\x92\x91\xc2\x2f\x71\x82\x37\x75\x83\x5d\xe5\xf9\x47\xba\x6f\x28\x8f\x7d\xd0\xf7\xb0\x4e\x71\x4b\x98\x33\x7c\x6a\x64\x9d\xc7\x46\xfa\xc9\xe8\x14\x32\xe5\xec\x5c\xd0\x20\x9f\x9c\xbe\xff\x50\x95\x0c\x97\x40\x1f\xb1\xdd\x3e\x81\x96\xb7\x03\x0a\x65\xa3\x34\xfb\x66\xdb\x5d\x1a\xc7\xa9\xd8\xcf\xcf\x42\xae\x40\xdb\x63\x96\xd3\xc2\x9c\x32\xdb\x87\xb5\xff\xaf\xd9\xf6\xdf\xe3\x4c\x3f\x7e\x58\xf6\xd2\x62\x76\x2f\x35\xbc\x6d\x90\x9d\x8e\xca\x6e\x48\x97\x7d\xce\xde\x03\x16\xa7\xba\xb5\xa6\x79\x6d\x43\x3b\xf5\xc5\x29\x1c\x09\x6d\xda\xbd\x53\x50\x36\xd9\x8b\x4d\xb8\x23\xfd\xe7\x75\x17\x91\x97\x60\x1f\x35\x72\x4c\x14\x64\x90\x6c\xab\x05\xbe\xed\x61\x0d\x79\x91\x3d\x76\xf2\xc8\xde\x2a\x67\xce\xf8\x27\xa0\xe9\xea\x0a\x12\xc1\xd3\x1d\x19\x6c\x37\xc5\xe0\x03\xe3\x2c\x2f\x73\xc2\xcb\x7c\x0a\xb8\x16\xca\x0e\x8a\x1c\xc7\xea\xfd\x94\x70\xb8\xcd\x56\x8e\xcb\xa4\xa4\x10\xa9\x67\x3c\x53\xa3\x7c\xd2\x74\xd7\xfb\xe2\x96\xe9\x05\x96\x4e\xe0\x2b\x33\x14\xd3\xf5\x65\x26\x49\x22\xa9\x32\x52\xd6\x08\x87\x66\xda\x5c\x80\x53\x40\x2f\x30\x4b\xc1\x6c\x19\xba\xa4\x2c\x33\x12\xfd\xae\x37\xda\x5b\x98\xd1\x32\xc3\x7a\xfb\xe4\x15\x39\x32\x84\x7b\x1d\x74\x5b\xb7\x46\xc6\x56\x42\x70\xf3\x5f\x9b\x05\x08\x5f\xee\x78\x0f\x77\xd4\x2e\x09\xb9\x7d\xdb\x35\x31\xb7\x6f\x05\x2d\xd5\xae\xd6\x90\xd6\x6e\x38\xe7\xa9\x39\x84\x4d\xf1\xb7\x71\x8f\x30\xe5\x7a\xde\x6d\x56\x1f\x4e\x2d\xb5\x85\x6a\x29\xe6\x12\x94\x7a\x0b\x34\xcd\x18\x87\x67\xd8\xd4\xd7\x0b\x20\x39\xbd\xc3\x8d\xad\x59\x0e\x46\x4e\x6a\x6e\x6b\xda\x7c\x7d\x2d\x48\x4e\x6f\xa0\xa2\x93\x4c\x61\x26\xe4\x0e\xa8\x03\xdf\x98\x6a\x6e\x26\xbb\x69\x67\x94\x65\x90\x4e\x90\x92\xc6\x58\x66\xb3\x4b\x91\x65\x20\xed\x3e\x34\x7f\x33\x5e\x02\xd1\x62\xc7\xc1\x0a\x29\x50\x0d\xb7\x03\x34\xa5\x19\x94\x16\xa8\xe9\xd2\xde\x38\xbe\x0c\xff\xe5\xda\xfc\xbf\xbb\x4b\xd0\x56\xbc\xe3\x80\x12\xa8\xc2\xce\xec\xb1\x51\xa5\x9c\x19\x95\xdb\x6b\xf4\x8d\x97\xb3\xa0\x8e\x09\xb9\x10\xda\x21\x6b\xab\x29\x35\xbf\xde\x71\x3c\xd4\x6a\x81\x80\xd2\x2c\x47\x6e\x93\x96\x88\x98\x34\x83\xe1\x5a\xd2\xed\x7b\xb7\x75\xd6\xff\xf8\xea\xd5\x8e\x52\xef\xd3\x9f\x5a\x09\x68\x87\x78\xd2\x0d\x7f\x51\x71\x6f\x7f\xbb\x16\x22\x55\x66\xfb\x31\xa7\x65\x14\xc2\xbc\xa3\x44\xc8\x01\x53\x9a\xf1\x79\xc9\xd4\x82\x4c\x41\xdf\x02\x70\x02\x77\x36\xdb\xd9\x8e\xe3\xfd\x13\xa4\xc0\xfd\x66\x56\xab\xf6\x9b\xb5\xd6\xe0\x75\x7f\x16\x60\xc9\x14\x13\xfc\x7b\xa6\xb4\x90\xab\xf7\x2c\x67\x8f\xd4\x56\xf0\xad\x3b\xf7\xa9\xaf\x53\x91\xa5\xe4\x93\xdd\x02\x57\x60\x67\x46\x02\x5a\xe9\xb5\xb0\xc6\x04\x62\x38\xc2\x94\x26\x37\xbb\xde\x6a\x7b\xaf\xea\x7d\xeb\xd5\xe1\x16\x7d\xfd\xaa\x2f\xcb\xea\x05\xb5\xa7\x5c\x4a\x54\x09\xaa\x91\xf0\xee\xb0\x07\xeb\xdd\x9d\x9d\xee\xd6\xd2\xde\x2e\x84\x02\x7c\x80\x50\xf9\xb8\x4c\xd8\x7c\x0d\xef\xba\x63\xaa\xe2\xb4\x08\xab\xe0\xa0\x08\x9d\xcd\xda\x4f\xa4\x7b\x48\xca\xb6\x9d\x6b\x92\x97\x4a\x93\x9c\xea\x64\x61\x2d\xb1\x22\xad\xa4\xd7\x43\xe5\xb4\xcc\x7d\x96\x76\x67\x2f\xce\xfe\xfe\x16\x62\xe9\x7c\x77\x57\x98\xcb\xe3\x31\xcf\x6c\xbb\xb5\xd6\x79\xbd\x9b\xb6\xc1\x25\x6b\x2f\xae\x53\x13\xf0\x2e\xb5\x17\x77\xf3\x13\xb4\x3a\x9f\x5e\xbc\xdd\xfd\xd4\x74\xb1\xa7\xec\x6d\x51\xe9\xee\x0f\x30\xed\xf4\x81\x39\xf0\x0e\x02\xf7\x4d\xdb\xe9\x84\xfa\xb3\x1a\x11\x4a\x6e\x60\x35\xb2\x92\x47\x23\x49\xa7\x79\x78\x2f\x42\x24\x64\x4e\x3c\x05\xd3\x23\x76\x68\xc7\xd8\x7d\xb6\x3b\x6c\x4c\x3f\xf8\x3e\x6e\x46\xdf\xc6\x86\xd0\x3d\x7f\xe1\x27\x68\x8f\x9f\xed\x7f\x76\x6c\xbb\x81\xd5\x7e\x3f\x58\xdb\x49\x66\x15\x9c\x16\x6f\xf7\x88\xf9\xa0\xd2\x1e\xaa\x6d\xb1\x9f\xff\xb7\xd9\xf6\x36\xb6\xfa\xe6\x27\x31\xe8\xf5\xf6\x3c\x28\xcd\x71\x5b\x26\x56\x33\x2d\x87\xca\xee\x5f\xc3\x61\x16\xac\xb0\x21\x67\xce\xb3\xb6\xff\x26\xb6\xed\x33\xcd\x58\x5a\x0d\x69\xb9\xcf\x39\x1f\x19\xd9\xda\xfc\x07\xaf\x1f\x2b\xf1\xbf\x15\xa0\x2e\x84\xc6\x4f\x9e\x6d\x0d\xec\x6b\x3d\xf7\x0a\xd8\x51\x9d\x97\x07\xd9\x2a\xda\x2b\x6c\x44\x95\x9b\x69\x9f\xe6\xb7\x06\x24\x2a\x72\xce\x89\x90\x6e\xea\xf6\x1e\xd4\x74\xe6\x06\xb6\x43\xe2\x45\x3a\xb5\x8e\x49\xf4\x17\x6d\x1d\xd3\xad\x90\x90\xad\x05\x8a\x38\xbc\x1b\x1a\x65\x41\xfb\x0d\x9a\x2b\x8a\x0c\xb5\x33\xa7\x34\x51\x8f\x00\x62\x0f\xdb\x60\xb7\xb5\x1c\xe4\x1c\x3d\xb6\xc9\xce\x1e\xc6\x8a\xe8\x0e\x17\x9f\x6d\x7b\x5f\x7f\xcd\x01\xf7\xda\xc8\x28\x1b\x58\x93\x6f\x47\xe9\x62\xaf\x1d\xdc\x18\xae\x65\x8f\xfe\xdf\xe6\x02\xc5\x05\xfe\x3f\xa4\xa0\x4c\xaa\x09\x39\x25\x8a\xf1\x79\x06\xad\xef\x9c\xba\xdd\xe8\x66\xaf\xc1\x0b\x33\xa8\xb9\xe7\x96\x34\x73\x46\x0f\xca\x09\x58\xd3\xb7\xa1\x63\x5d\x54\x1a\x39\x69\xd6\xb0\xfd\xca\xaf\x7e\x70\x03\xab\x83\xd1\xbd\xc8\xe3\xed\xad\x79\x2a\x0e\xce\xf9\x81\x15\x17\x36\xf6\x75\x25\x5b\xa0\xf3\xfe\x00\xbf\x3b\x88\x29\x87\xed\x29\x17\x74\x35\xdc\xb7\x07\xdd\x63\x4b\xde\x8d\x6f\xaa\x30\xe5\x71\x4e\x8b\xb1\x3b\x45\x5a\xe4\x3b\x9d\x5e\x8f\xf5\xeb\xa0\x0f\x5d\xaf\x1b\x72\x1c\x28\x56\x0b\x52\x2a\xb0\x2a\x2b\x32\x16\x02\x5e\xef\x41\x2d\x07\x2d\x4c\x1c\x6e\x51\x4f\xe9\x8d\xf2\x60\xd4\x69\xc6\xe7\x7f\x2e\x52\xaa\x77\x0a\x31\xb1\xad\xfb\xd9\xfe\x64\x07\x24\x25\x8e\x68\x76\xf2\x8c\xcd\x49\x41\x25\xcd\xd5\x84\x5c\xba\x4c\xf3\xb8\xaf\xd9\xac\xe9\x2a\x71\xf3\x7c\xbd\x2a\x80\xfc\x3f\xfb\x0f\x68\xdf\x70\x1f\xe6\x3c\x1e\xef\xf3\x5e\xd7\x1f\xdf\x7e\x7c\x43\xec\x28\x56\xf3\xd4\x82\xcc\x04\xda\x2c\x44\x29\xcd\x8b\x2e\x81\xa3\xad\xd1\x68\xc6\x82\xc3\xc7\x99\xe1\x1b\x54\xc3\x12\x24\xb9\x35\x9b\x2a\x61\xe9\x1e\xa6\x54\xd3\xd0\x80\xfa\xc4\x87\xbb\x9b\x54\x9d\xd3\xbb\xab\x52\xce\xf7\xd8\x53\x24\x58\xea\x69\x9a\xb2\x6b\xa3\x12\x9e\xbe\x66\x82\x1c\x95\x2c\x20\x2d\x33\x48\x09\x9d\x8a\x25\xb4\x1c\x6d\xd5\xcf\xf6\x1c\x1a\x2d\x1d\x7b\xfe\xe6\xb3\x61\xdb\x9e\x28\x23\xa5\x4d\x95\xc8\x4a\x5d\x19\xc4\x8e\xe0\xee\x0d\xf9\x03\x82\x9d\x28\x29\x40\x26\xc0\x35\x9d\xc3\xba\xe5\xd2\x3e\xf7\xfa\xd5\xbf\x1c\xef\x4b\x00\xca\x43\x66\x7c\x67\x47\x7e\x65\x8e\xdc\x07\x7a\xf7\x67\x5e\x7b\x79\x98\x22\x3b\x5a\xb1\xea\x76\xba\xf6\x22\x38\x4a\x96\x94\x19\xda\xa8\x11\x44\xd6\x78\x9d\xe9\x8a\x48\x51\x22\x8c\x8c\x94\xc5\xbe\x63\x35\xed\x6d\xbf\xfd\xc3\xbf\xec\xfb\xf3\x77\x77\x34\x2f\x32\x78\xe3\x0b\x99\x58\x63\xa1\x51\x48\xb4\x20\xbf\x7b\xf5\x2f\x23\x0b\x33\x80\xdb\x86\xf1\xaa\xde\x47\xd4\x6c\xa2\xb2\x20\x2c\xb7\xf1\x20\x90\xad\xb0\xa3\x7d\x45\x40\x73\x6f\xb7\xf9\xa2\xd2\x54\x6a\x35\x22\x88\x66\xab\x54\x49\x2d\x34\xcd\xd6\xec\xa5\x68\xa9\x84\x5b\xbb\x15\x52\x81\x6b\x09\xe8\xb6\xd8\x93\x8a\xd7\xbf\x7b\xf5\x2f\x9b\x56\xf1\x8f\x3c\x01\x1c\x07\xfb\x47\x70\xe3\x14\x80\x93\x1b\x96\x65\x90\xee\x2b\xa3\x3f\x36\x91\xb3\x52\xea\x05\xc8\x11\x01\xae\xbc\x2b\xc3\xbc\xfb\xda\x7b\x23\x2d\xb2\xe4\x7c\x5f\x5d\x8c\x10\x6a\x1d\xaa\xe8\x1d\x69\x78\x4b\xdc\xb4\x1b\x69\x53\x93\x5c\x28\xbd\x7d\x3a\xf6\x1a\x8c\xf2\xd5\xc7\xd9\xbe\xf2\xf9\xb8\x83\x35\x78\xf3\xd7\x1d\xd4\xd4\x96\x48\xc5\xb8\x1e\x0b\x39\xb6\xdd\xbc\x21\x5a\x96\xfb\x48\xb1\x79\x8b\x85\xf4\xf0\x06\x28\x1b\x0c\x6e\x63\x13\x7c\x71\x6c\xbc\x3b\xbb\x4d\xc5\x2d\x8f\x75\x69\xe0\x6d\xdf\xe9\xba\x78\x16\x16\xde\x76\x2d\xad\x71\x1e\x33\x0f\xe6\xe9\xff\x7b\xf3\xc8\xef\xab\x93\xaf\xdd\x04\xf7\xf3\x76\xc7\x5a\x2b\xd6\x6d\x74\x35\x44\x50\x8c\xd6\x68\xdd\x93\x82\x2d\x6f\x56\x71\x55\x2b\x8f\x5a\xef\x88\x79\xc0\x12\xb5\xe5\x8a\xab\x19\xf0\xde\x57\xd9\x3d\x57\x95\x7d\xc7\x1a\x3c\xa2\x11\x72\x69\xd8\xb0\xba\x8f\x0f\xef\x39\x74\x06\x54\xe9\x6d\x4b\x38\x70\xed\x47\xdb\xc3\x91\xac\xeb\xad\xad\x0f\x1b\x85\x0c\x67\xbc\x72\xb4\x61\x90\xf6\x14\xc8\xc1\x27\xb0\x30\x28\x0b\xdf\x6f\x69\x62\x07\x95\x03\xdc\x2c\x76\x47\x25\x6d\xcf\x69\xf3\x3e\xbc\x27\x75\x68\xbb\x31\x1a\x51\x68\xce\x85\xe8\xae\xa0\x0a\x53\x65\x01\x62\xbb\xfb\xb1\xc1\x85\x6a\xb8\x23\xec\x5f\x66\xa2\x0a\x48\x26\x12\x90\xab\xd8\xe0\x38\x6b\x2c\x42\x1b\xd2\x69\x76\x4b\x57\xea\xa0\x37\xf6\x86\x1c\x34\x7d\x38\xf8\x7a\xbd\x75\x17\x08\xae\x34\xe5\x29\x95\xa9\x7b\xa3\x43\x55\x8d\xbe\x0f\x47\xf8\x80\xf8\x26\x3e\x13\x6f\xc8\x42\xeb\x42\xbd\x39\x39\x99\x33\x3d\xb9\xf9\x37\x35\x61\xe2\x24\x11\x79\x5e\x72\xa6\x57\x27\x08\x57\x62\xd3\x52\x0b\xa9\x4e\x52\x58\x42\x76\xa2\xd8\x7c\x4c\x65\xb2\x60\x1a\x12\x5d\x4a\x38\xa1\x05\x1b\xd7\x86\x00\x35\xc9\xd3\x5f\x7b\x92\x9e\x56\x87\x6f\xb1\x09\xf4\xc8\xc8\x25\x8c\x4b\x7e\xc3\xc5\x2d\x1f\xa3\xcd\x52\xed\xc5\x30\x76\x83\xbd\xfa\x16\xb0\x86\xfb\xa0\x62\x0b\xb1\x87\xa1\xf3\xc9\x57\xd6\x4c\xd1\x98\xf2\x74\x6c\xb1\x5e\x4f\xbb\xc0\x5d\xfc\xb2\xe3\x1a\x4f\xba\x3b\x75\xdd\xac\x41\x34\xd1\x6c\x09\x9d\x50\x8d\xbe\x85\x29\x06\x1f\x7d\x9c\x53\x5a\x4a\xbb\x97\x1a\x30\x47\x8f\xf1\xc8\xe9\x0a\x65\x78\x24\x96\x08\x2b\xbc\x71\x91\x82\xf3\x59\x2e\xf7\xc0\x1e\xfa\x76\x65\xd8\xf2\xb5\xd1\x36\x1d\x54\x12\x5d\xc2\x2b\xa5\x21\xb7\x57\x81\x1d\x2d\x5b\x11\x2d\x57\x16\x5f\x29\x6f\x08\xd3\x1e\xb4\x68\xd4\xfb\x1b\x7c\x4e\x29\x91\x30\x14\xe9\xeb\x65\xeb\xa6\xab\x78\xb7\x18\x25\x85\x50\x0c\xdf\xcb\x09\x2e\xfb\xf5\xd7\x5d\xe6\x69\xe0\x97\xfe\xf8\xfb\x7d\xf6\xd1\x0c\x13\x47\xee\xe9\xae\x6f\xe3\x7b\x67\xcd\xd8\x5e\xb7\xf4\x87\xca\x5b\x05\x8d\x20\x9a\x08\xae\xb4\xa4\xec\xfe\x9c\x09\xdb\x5b\x47\x4c\x45\x77\xe0\x02\xc1\xdd\x79\xda\x69\x52\xc8\x66\x58\x82\x17\x58\x70\xcb\xfb\xa9\x6e\x4e\x8c\x4d\xa9\xe0\xc3\x6b\xf6\x64\xb7\xb6\x75\x9e\x23\x12\x34\x4f\xf6\xd7\x36\x71\x6d\xfa\x16\xf5\x8d\xab\xea\xbd\xce\xe7\x5c\x54\x1f\xbf\xbb\x83\xa4\xdc\x35\xef\xd8\x66\x0b\xf5\xdb\xdb\x66\xa4\x3d\x6f\xa6\x76\xf0\x67\x4b\xbd\xe1\x10\xfe\x0b\x27\x54\x0a\x5c\x2f\x27\x5d\x2a\xaa\x99\x9a\xed\xeb\x49\xf6\xcd\xac\x6a\xb5\xee\xd0\xc0\x82\x55\x27\xa6\xc2\xd5\xa1\xcc\x60\x83\x99\x99\x46\xce\x99\x2c\x84\x50\xfb\x98\x89\x9a\x8d\xda\x4d\x87\xef\xb0\x64\xc2\x22\x9c\x30\xb6\x5e\x92\xdc\xb0\x4d\x77\xc5\x37\x88\xb2\xfe\xce\xfa\x67\x6c\x5f\x5d\xdd\x37\x34\xf7\x55\x9b\xc3\x23\x79\xcc\xe0\xe8\xb3\x33\x7f\xcc\x51\x58\x57\x9a\xa8\x32\x37\xa4\xdc\x02\x9b\x2f\xb4\x1a\x11\x36\xd9\xdb\x5e\xe4\x9b\x39\x46\x40\x93\x45\xe3\x15\x72\x00\xdd\xaa\xfe\xdc\x3c\x7b\x4d\xc7\xee\xd1\x83\xa9\x7b\x1e\x6f\x2e\x8f\xc1\xa8\x92\x1b\xd6\x8f\xc4\xd6\x6d\x30\x22\xa0\x93\xc9\xf1\xfe\xc0\x0c\xdb\xea\x24\x6d\x66\x16\xa7\x2b\xc2\x34\x98\xcb\x18\x55\x7f\x29\xca\xb9\x9d\x6b\xf0\x31\x66\x38\x07\x55\xa8\x3a\xe2\xe6\xd2\x74\x7f\x93\x84\x6f\x07\x76\xd1\x0e\xcc\x89\xc1\xb9\x2d\x73\x9f\x5a\x18\x57\x00\xbd\xfa\x50\x65\x56\x90\xa0\x0a\x61\xcd\x64\xeb\xfe\xfe\xff\xb1\xa7\x57\xbf\xd9\xcc\x50\x47\xea\xb8\xde\x5a\x0b\x36\x5f\xf8\x9d\x45\x9d\x7c\xd0\xde\x91\xdd\x36\x58\x77\x5c\x89\x6d\x1d\xd1\x25\xb6\xc5\xe1\x82\x8d\x30\xf3\xfa\x78\x36\x8e\x84\x06\x99\x57\xcb\x86\xa7\x06\xaf\x15\xe7\x6b\xf7\x45\xc9\xdd\x61\x25\xaf\x3a\x53\x71\x64\x4e\x39\x61\x46\x83\x34\x7c\x6a\x2c\x8a\xe3\x09\x39\x25\xbc\xac\xd8\xf2\x43\x84\x71\x51\xd1\xe5\x3a\x32\xc4\x2a\x51\xf7\xd5\x95\x5b\x87\x5c\xa5\xb6\x75\x83\x73\x36\xdb\xd8\xcd\x00\x3c\x5e\x52\xe4\xa1\x4e\xec\x1a\x75\xec\x20\x4c\x2c\xf0\x7d\xf8\xb7\xe8\xde\xc7\x7a\xda\x6f\xcb\x57\x6a\x58\x30\xc8\x7c\xd4\x94\xe3\x2b\x1e\xd0\x66\x37\x76\x2e\xba\xee\x0a\x12\x67\x67\x90\x48\xf3\x4a\x82\x10\xea\xdb\xdb\xda\x2c\x57\x49\x2b\x5a\xb3\xdd\xba\x2f\xa7\x2b\xfc\x76\x4f\xf0\xfe\xfd\x2d\x94\xb9\xd6\x2d\x88\xcd\xd6\x2d\x16\xc3\xad\xdb\xfa\xee\x8d\x03\x77\x8f\x40\x18\x0e\x17\x07\x04\x7f\xcf\x00\x71\x4e\x8f\x6d\xe1\x1c\xb6\x6e\xfb\xc3\xe8\xef\xeb\x27\xda\x72\xc4\x62\x11\xb6\x75\x00\xe2\x6f\x6f\x1b\x88\xbd\xa7\xc1\xe5\x6f\x6f\x9d\x9d\x39\xdb\x5b\x57\x0c\xff\xf6\x16\x9f\x51\x98\xf6\xe9\x19\x60\xfe\xdb\xdb\x4e\xe0\xff\x51\x1b\xf9\x4f\xbe\xd3\x96\x31\xbd\x0f\xba\x65\xeb\x16\x79\xc5\xbb\x45\x0c\x6c\x6f\x4f\xb3\xde\xa7\xcf\x17\x53\xb0\xbd\xbd\x70\xa4\xc1\x9e\x44\xdd\x4f\xd0\x77\xda\x10\xf3\x5e\x8f\x1a\x3f\x8e\x44\x4d\x83\x04\x9b\x93\xce\x43\xe5\x9d\x82\x3d\x72\x19\x2b\xbc\x43\x12\xa3\x63\x0b\x09\x98\xdd\x10\xc3\x46\x3a\x19\x85\xef\x6f\x3b\x87\x5f\x84\x84\x53\x6c\x6f\xf1\xe4\x35\xdb\x22\x49\x6d\xb6\x45\xe3\x1e\x28\x67\x7f\x6b\x9d\x79\x2f\x28\x62\x5b\x77\xe2\x20\x62\x3f\xda\x06\x11\x7b\x10\xb1\x1f\x6f\x83\x88\xbd\xd9\x06\x11\x7b\x10\xb1\x83\xda\x20\x62\x3f\xda\x06\x11\xfb\xd1\x36\x88\xd8\x75\xfb\x25\x88\xd8\xa1\x61\xa7\xdb\x9b\xb5\xf7\x47\x73\x3b\xfc\xc5\xba\xbb\xd6\xfd\x0c\xa8\x1c\x78\x98\x75\xdb\xe1\x60\xa4\xd0\x2b\x77\x55\x5f\xa3\x93\xc2\x45\x50\x4b\xca\xe7\x40\x5e\x8f\x5f\xbf\xda\x1b\xd4\xdf\x6c\x21\xd8\xe8\x66\xdb\x37\xeb\xd1\x7a\xbb\xcf\xd9\xdd\x3f\xfc\x87\x63\x63\x95\x13\xbe\xa5\x69\xdd\x03\xc6\xa8\x72\xbd\xe7\xa0\xf7\x47\xcf\xfb\xd6\xf4\x62\xb2\x1c\x2a\x84\x94\xe5\x61\x2e\xe6\xa3\x8e\xa0\x14\xdc\x79\xd3\xcd\x1e\xea\xba\x47\x3a\xbd\x6d\x02\xd4\x86\x5b\x4f\xc1\xbc\x71\x57\xdc\x89\x26\x4a\xe4\x60\x93\x83\x79\x3e\x69\x5e\x17\xfc\x36\x20\x47\x30\x99\x4f\x48\x5a\x82\x4b\x04\x60\x43\x14\x8e\x47\x0d\x24\x5f\x57\xe0\x89\xb9\xdd\x25\xfe\xc7\x4c\xac\x03\x00\xc2\x12\xb8\x2e\x69\x96\xad\x08\x2c\x59\xa2\xab\x15\xc0\x48\x1e\xa6\x55\xc0\x5c\x07\xeb\x5d\xa1\xba\xd6\x78\x83\xd9\x74\xbb\x8b\xc3\x95\xa2\x0d\x3a\xba\x33\xe0\xb5\xa4\xef\x76\x86\x26\xf7\x9a\x4d\xb4\x19\xcd\xa2\x97\xf0\x9f\x78\x70\x3f\x7e\xea\x0a\xf4\x20\x91\x2e\xdf\xe0\x0b\x37\xa6\x1c\xec\xd0\x15\x42\x3a\xfc\xc7\xe6\x0c\x6e\xc1\x57\x6c\xc9\x80\xb1\x77\x20\x77\xbb\xe9\x05\xe4\x5d\xb2\x68\x6c\x6b\x86\xb6\x6b\x51\x88\x4c\xcc\x57\xcd\x8d\xe7\x8a\x98\xd7\xb9\xb5\x29\x51\xe5\xd4\x69\x72\xe6\xec\x5f\xac\xed\xd4\x01\x19\x70\x6f\x1b\x90\x01\x1b\x6d\x30\x5b\x0e\x66\xcb\x3d\xfa\x19\xcc\x96\x83\xd9\x72\x30\x5b\x0e\x66\xcb\xae\x6d\x30\x5b\xee\x45\xd4\x60\xb6\x24\x83\xd9\xf2\xde\x36\x20\x03\xb6\xb5\x41\xc4\x1e\x44\xec\xdd\xda\x20\x62\xef\xd1\x06\x11\x7b\x4b\x1b\x44\xec\x87\xda\x20\x62\x3f\xdc\x06\x11\x7b\x10\xb1\x07\x11\xfb\x97\x20\x62\xc7\x47\x06\xc4\xec\xb1\x10\x69\xf4\x24\x11\x85\x48\x1f\xc8\x11\x61\x9d\xa6\x89\x18\x67\x22\xa9\x32\x22\x9b\x9f\x38\x64\x81\xa2\xb9\xf5\x19\x8f\xc8\x3f\x05\x07\x1b\x59\x6e\x4b\x0a\xe6\x40\x04\x56\x06\x2f\x44\x7a\xa4\x8e\x3b\x84\xc7\x0e\x39\x26\x76\x69\x43\x8e\x89\x21\xc7\xc4\x90\x63\xe2\x79\x73\x4c\x2c\xa8\x72\xd5\x00\xf0\xf6\xbf\x3f\xe5\x44\x83\x63\x5f\x83\xcc\x87\x8c\x13\x8f\xb5\x0d\xa5\xd3\x1d\x1f\xb3\xc2\x8d\xcd\x6e\x67\x3c\x75\x20\x39\x48\x2f\xdb\xf3\xec\x2c\x54\x38\x2d\x34\x4d\x21\x25\x05\xc8\xb1\x3d\x3c\x82\xcc\x98\x2b\xc6\xb1\x76\x9a\xdd\x0c\x77\x65\x88\x3d\x49\xe3\xd0\x9e\x89\x80\x9e\x5e\x3e\x97\x43\xfb\x55\xa2\x61\x5a\x9a\xd0\x9e\x96\xf8\xf3\xc5\x65\x76\x88\x63\x18\x1b\x13\xed\xf0\x2c\x3f\x04\x99\xc6\x62\xd9\xb1\xd0\xce\x74\xb5\x57\xa9\xcb\xfb\x5b\x6c\xdd\xdd\xd7\x0f\xfc\xef\x12\xe4\x8a\x88\x25\xc8\xda\x2a\xe3\x6f\x5a\xe5\x90\xb7\x98\x61\xdb\x95\xc7\x0c\xd7\xc1\xce\x67\x36\x77\x0d\x2f\xb3\x6c\x64\x7b\x5f\x67\x7b\xfe\x22\xb2\x45\x6a\x84\xf9\x3e\x92\x99\x3e\x8a\x25\x37\xa6\xa1\x33\x36\xe4\x88\xf4\xac\x90\xe6\xfd\x2d\xae\x1e\x1e\x51\x0b\x7f\x22\x33\x59\x5f\x0a\x76\xde\xdf\x9e\xd2\x91\x42\x62\x3b\x53\x48\x64\x87\x0a\x89\xe8\x54\x21\x71\x1d\x2b\x24\xba\x73\x85\xc4\x74\xb0\x90\x67\x2f\x40\x7a\x7f\x8b\x6c\x7d\x27\xd1\x7d\x2e\xe4\xc9\x18\x0c\x79\xee\x42\xa7\xf7\xb7\xe7\x29\x81\x7a\x7f\x7b\x82\x5d\x10\xd3\x0f\x43\x9e\x74\x0f\xbc\x48\xa9\xd5\xfb\x5b\x2f\xbd\x33\x0f\x12\xf6\xe4\xe5\x59\xef\x6f\xd1\x9d\x1d\xe4\x09\x1c\x1e\x24\xb6\xd3\x83\xc4\x3e\xb2\x9d\x0a\xc4\xde\xdf\x9e\xe2\xac\xbe\x68\x51\xd9\x87\xc8\x7a\xc1\x72\xb3\xf7\xb7\x97\x2f\x44\x7b\x7f\x8b\x2c\xd5\x86\x16\xaf\x7d\x8c\xd0\x28\x47\xec\x69\x22\x8f\x49\xeb\x5c\xfc\x00\xab\xb8\xe8\xc0\x08\x27\xf7\x43\x8b\x3a\xaf\xb6\x69\x57\x51\xaa\x96\x76\xd1\x47\x65\x05\x5d\x67\x5b\x77\x45\x77\xb3\x2c\x98\x86\x29\x10\x4d\x6f\x00\x5d\xf2\x02\x8b\x03\xb0\x14\x6c\x15\x09\xbb\xd5\x71\x7c\xb3\xc5\x4b\x05\xa9\x21\x24\x13\xe2\xa6\x2c\xfc\x51\xc1\xb8\xcd\x18\x07\x93\xf1\x44\xe4\x3e\x40\xd5\x86\x2b\x99\x13\xef\x78\xc1\xd8\x56\xfd\xb1\x9f\x23\x39\x78\xb9\x39\x63\xe4\x3f\xde\x37\x8d\x63\xff\x20\x54\x91\x7f\xa0\xda\xc0\xc9\x11\xfe\xf0\xf8\x1f\xe1\xd8\xbd\x6a\x09\xac\x3f\x4b\x94\xc8\x61\xd7\xea\x20\xb7\x57\xe7\xa1\xd9\x0d\x26\xc8\x57\x2a\x68\x4e\xdc\xa1\xf5\x43\x1f\x51\xae\xd9\x71\x65\xc2\x9d\x10\xdc\x5f\xa8\x33\xa5\x82\x1f\x6a\x4b\xb5\xe7\xfa\xbe\x83\x70\xc8\x5e\xb5\x72\x35\xf4\xc3\x7a\x86\x27\xae\xb2\xb4\xad\x89\x55\x55\x70\xb2\xb2\x51\xf0\xb8\xd7\xde\xe7\xee\x54\xc5\x99\x90\x53\x96\xa6\x80\x65\xef\xaa\x57\x9d\x0a\xbd\x58\x3f\x72\x08\xd5\x6a\xee\x9d\x70\x62\x4e\x33\x25\x46\xeb\xe3\x24\x94\xfb\xe8\x72\xd0\xb6\x76\x5e\x6b\x58\xc2\x94\x59\x16\x05\x11\xd4\x96\x6b\x57\x24\xd0\xc8\xeb\x59\xb1\xa0\x0d\xf7\x9f\xbb\xb6\x14\x01\x4e\xa7\xe8\xa5\x6c\xd3\x79\xce\x1b\xb6\x53\x32\x03\xaa\x4b\x09\x64\xde\xa1\x6e\xe4\x7a\xeb\x1d\xac\xf9\xa9\xae\xaf\x8c\x29\x1d\xf1\xfe\x62\xaa\xe7\x57\xd8\x3a\x81\xc3\x2d\x16\xfd\x16\xe3\x42\x0f\x17\xd9\x70\x91\xad\x5d\x64\x1b\x07\xef\xe9\xee\xb2\x8d\xa1\x86\xeb\x6c\xb8\xce\xba\x34\x4e\x73\x50\x05\x4d\xe0\x0b\xf2\x63\x5b\x27\x83\x0d\x03\xf3\xe4\xab\x46\x29\x60\x90\x79\x54\xdf\x83\xcf\x9c\x82\x7b\x1e\xfb\x4d\x3d\xe0\xaa\xe4\x8d\x3a\x91\x0d\x62\x2c\x3b\x5f\xc7\x16\x06\x53\xe2\x8d\x22\x82\x83\x42\x17\x2f\x54\x08\xd7\xc6\xe0\x38\x56\xf8\x6b\x63\x46\x94\xda\x99\xc3\xd3\xf5\x1c\x29\xf5\x88\xe8\x6d\xce\x81\x72\x45\x0e\x3c\xf4\xf6\x50\xd5\x4f\xec\x58\x10\xf6\xa1\x56\x95\xe6\xa9\x28\x3a\xfa\xdf\xff\xe7\xb8\x55\x8e\xa7\x26\x68\xc0\x12\xec\xdc\x06\x2c\x41\x50\x1b\xb0\x04\x03\x96\x20\x46\x5f\x03\x96\x60\xc0\x12\x6c\x6d\x03\x96\x60\xc0\x12\x0c\x58\x82\x01\x4b\xb0\xd9\x06\x2c\xc1\x80\x25\x18\xb0\x04\x9b\x6d\xc0\x12\x44\x68\x5f\x04\x96\xa0\x56\xf8\xfb\x66\xb5\x6a\x9a\x82\x5c\x9c\x29\x6a\x6d\x9a\x6a\x96\xd4\x49\x8c\xfc\x53\xf6\x5f\xfd\x32\x61\x35\xcd\x4b\x4f\x63\xc0\x6a\x1a\xc9\x36\xec\x90\x91\xec\x57\xf7\x5a\xab\x2a\x7b\xd6\xc6\xc8\x4f\x6a\xc8\xfa\x7a\xcd\xd4\x8d\xd8\xac\xbe\x9d\xc6\x6b\x9f\x0d\x40\x2d\x44\x99\xa5\x46\x6e\xab\x52\x05\xa4\xe4\xc8\xfb\xb2\x8e\xcd\x6e\xe1\x42\xb7\xbf\xe4\x9a\x8d\xeb\x27\xaa\x48\x3b\x74\xc4\xf9\x22\x07\xe1\xab\xe0\xd5\xdf\xda\x5f\xe3\x12\x17\x54\x51\xea\xf5\x06\x36\x97\x28\xc8\xd6\x3b\x30\x45\x52\x98\x31\x6e\xd3\x79\xc8\x92\x73\x23\x77\x0a\xee\x82\xd0\x83\xe9\xb3\xb7\xb6\x75\xae\x39\x56\x61\xb5\x75\x9c\x0f\x54\xd9\xeb\xe5\x6f\xc4\x19\x53\xe4\x73\x94\xbb\x8c\xda\x82\x3b\x37\xa6\xf9\xc4\xf6\x13\x4c\x5a\xc5\x45\x70\x45\x58\xf5\xf6\xe1\x0c\xe4\x1d\x32\x8e\xe6\x8b\x31\x85\xfb\x83\x66\x99\xb8\x0d\x17\x08\xa2\x1c\xbd\xc8\xd5\x3c\x02\x4f\xdb\xed\xde\xc5\x40\xd6\x82\x67\xc3\x94\xb6\xa1\x8e\xc8\x50\x47\x64\xa8\x23\xb2\xad\x8e\x48\x03\xf8\xd3\x2c\x28\xd2\x75\xb6\xb1\x0c\xc9\x0b\x14\x14\x21\xe4\x2f\x0b\xc0\x43\x2e\xc1\xa2\x75\xca\x4c\xb3\xa2\x4e\x74\xa5\xec\xca\x67\xd6\x20\x34\x73\x79\x64\xda\x2c\xc7\xd0\x48\x93\x45\x47\x02\xd6\x18\x16\x52\x81\xe9\xb4\x14\x5e\x43\x36\x7f\x0a\xfa\x23\x6d\xb5\x0d\x6f\x29\xb2\x69\x6c\xd8\x97\x9f\xed\x22\xe0\x8a\x78\x8b\x32\x4a\x1b\x8e\xa6\xc8\x91\x11\x6d\xb2\x95\x03\x65\xb5\xee\x8a\x96\x4c\xd4\x79\x58\x6b\xcd\x5e\x82\x57\x79\xe6\x6c\x09\xbc\x16\xa8\x8e\xd4\xf1\xb1\xd7\xbd\xd6\x05\xc5\xce\x63\x86\x08\x98\xdd\x2f\xc1\x7d\x05\xc3\x35\xc1\xae\xf3\xb8\x5b\x04\xc2\xff\x68\x08\x4e\xff\xf9\xb8\x48\xd8\x79\x68\xcb\xda\x7c\x72\xa1\xc6\xb6\xaa\x45\xc1\x8e\x7d\xf7\x24\x53\x4a\x78\xd2\x8b\x18\xfe\xc0\x68\xc9\x2e\xe2\x96\xed\x79\x89\x24\x17\x2f\x90\xe0\xe2\x97\x54\x47\xa7\x97\x20\x94\xde\xd9\x6d\x9e\x22\x09\x78\xaf\x41\x27\x43\x16\xf0\xa0\x7e\x7e\x51\x59\xc0\x5f\x08\x54\xf2\x0b\x4c\x06\xde\x03\x10\xc9\x4b\x02\x48\x7e\x71\xc9\xc0\x7b\x04\x18\xe9\x25\x58\xa4\x6f\x40\x91\x21\xbb\x76\xa7\x16\x11\x14\x12\xfb\x1c\xf6\x10\x0c\xd2\x43\x20\x48\x5f\x41\x20\x11\x25\xcd\xa7\x01\x7f\xf4\x36\x41\x3d\x89\x9a\x3c\x22\xe6\xa9\x7c\xe9\xa4\x11\xbd\x08\xb5\xed\x73\xb2\x88\x5e\xc5\xd7\xf6\x2b\xb6\xf6\x25\xe2\x6a\x7b\x93\x1c\xe2\x45\x13\x43\xf4\x2e\x8a\x36\x8e\x64\x17\x41\x9e\x7b\x8a\x2b\x28\x5e\xd4\x6c\xd4\x04\x10\x51\xaf\xa1\x97\x4f\xfc\xf0\xd5\xde\x44\x11\x13\x3e\x0c\x97\xd1\xbd\xad\xef\x97\xd1\x53\x27\x78\x78\xe9\xe4\x0e\xc3\x95\xf4\x30\x21\x7d\xbd\x92\xa2\x26\x71\x78\x62\xff\xec\x73\x26\x6f\xe8\x47\xe2\x86\x67\x4b\xda\xd0\x9f\x84\x0d\xcf\x96\xac\x61\xf0\x8b\x0f\x7e\xf1\x76\x1b\xfc\xe2\x83\x5f\x7c\x9f\x7e\x06\xbf\xf8\xe0\x17\x1f\xfc\xe2\x83\x5f\x3c\xb0\x0d\x7e\xf1\x8e\x44\x0d\x7e\xf1\xed\x6d\xf0\x8b\x77\x27\x6d\xf0\x8b\xdf\xdb\x06\xbf\x78\x10\x81\x3d\xf5\x8b\xc7\x49\x84\x10\xf3\x44\xf6\x29\x01\x42\x1f\x92\x1f\x3c\x57\xe2\x83\xde\x25\x3d\xf8\xba\x4c\xb8\x91\x92\x1c\xc4\x3c\x69\xfd\x4e\x6e\xd0\xe7\xc4\x06\x3d\x4d\x6a\xf0\x34\x09\x0d\x9e\x32\x99\x41\xc0\xd1\x2a\x44\x7a\xca\x35\xf3\x9e\xa3\xfd\x0f\x55\xeb\x28\xbd\xc5\x3f\xa6\x60\x0f\x44\x6b\x77\x37\x23\xc4\x65\x99\x81\x72\x01\xd2\x74\x29\x58\x4a\x8a\x52\xbb\xa2\xfd\xee\x30\xf9\x5d\x4a\x73\x1b\x23\x3e\x22\xff\x14\x1c\x46\x04\x74\x32\x31\x3b\x11\xa3\xaf\x85\x5e\x80\x34\x8f\x1f\xa9\xe3\xe3\xfd\x27\x30\x48\xe6\x09\x33\x37\x55\xc5\xe4\xfb\x9f\x53\x00\x1d\xb4\x2e\x70\x5f\x5a\xbf\xb0\xa5\x1e\x3d\xe9\xee\x0b\x7b\x56\xb4\x70\xf1\xde\x78\x46\x6d\xc0\x75\xd7\x5b\x07\x23\xfb\x5b\x1b\x08\x1a\xa6\xf7\x7b\xa2\xfb\x47\x64\x5a\x6a\xc2\x34\x86\xc4\x27\x0b\x21\x54\x57\x56\xe0\xc2\x73\xf1\x45\x96\x4c\x58\x13\xaf\xe0\x80\xf1\xf6\x42\x56\x0c\xab\x41\x94\x15\xcf\xeb\x9f\xb1\xae\x0a\x4c\x2e\x94\xae\x77\x88\x37\x18\x9a\xc1\xab\x0b\x62\x2e\xc1\x50\xa4\x89\x2a\x73\x43\x8a\xcd\xfb\xa1\x6c\xf0\x7b\xc7\x61\x67\x46\x6c\xa1\xc9\xa2\xf1\x0a\x39\x80\xb6\xee\x22\x1f\xdf\xdb\x38\xc4\x4d\x3d\xe4\xc8\x47\x7b\x76\x1c\xdb\x74\x06\x4a\x8f\xee\xcd\xb5\x71\xff\x5e\xb0\x3c\xe1\xb8\xab\xa1\x24\x11\x79\x51\x6a\x30\xb2\x71\x99\x9b\xdd\xc4\x34\x02\x3b\x90\x19\x49\x51\xce\xed\x84\xfb\xf4\x06\x76\x22\xea\xdc\x19\x3c\x45\x7d\xa7\xf3\x2d\x7d\x60\x57\xee\xc0\x0b\xc4\x86\x08\x36\xab\x52\x63\x90\x05\x55\x4d\x44\x4a\x7d\x09\x3e\x92\xc7\xe5\x7f\x04\x5c\x83\x66\xe0\x23\xd5\x10\x47\x16\x6c\xbe\xf0\x9b\xcd\x68\x9c\xa8\xa7\xb7\x36\xe9\x97\x9e\x53\xc1\x9c\x5c\x77\x86\x50\xb6\xa8\x77\xbc\x9d\xf1\x94\xfc\x05\xbf\x85\x74\x3d\xd2\x18\xf7\x81\x55\xc4\x69\x9a\x1a\xa9\x01\xe4\xd8\x9e\x20\x41\x66\xcc\xa9\x1d\x6b\x47\xda\xcd\x70\x57\xd6\xd8\x8f\xb8\xf8\xb5\x1d\x17\xd0\x93\x9d\xf9\x8e\x1d\xc4\xf0\xfb\xac\xbd\x4a\x34\xd5\xe2\x93\x9b\xe6\x09\x39\xb5\x12\x91\xe7\x5f\x46\x1d\x1e\x6d\xa4\x69\xda\x3c\xd5\x76\x66\x7a\xe0\xa1\x8f\xe3\x3c\x8c\x91\x4c\x81\x44\xf4\xf5\x45\x4b\xaa\x40\x9e\xa7\xf2\xca\x33\x24\x57\x20\x2f\x93\x60\x81\x0c\x55\x3f\xfa\x05\x2c\x21\x43\xd5\x8f\x9e\x01\x4d\xc8\x50\xf5\x63\xa8\xfa\xd1\xbd\xf5\x01\x88\x42\x86\xaa\x1f\x3d\x00\xa6\x90\xa1\xea\xc7\x2e\x6d\xa8\xfa\x31\x54\xfd\xd8\x6c\x43\xd5\x8f\xa1\xea\xc7\x50\xf5\x63\xb3\xf5\x15\xd8\x42\x86\xaa\x1f\x91\xab\x7e\xf4\xbc\xfc\xfa\x50\x7b\xbd\x6e\x7d\x4e\x0a\x41\xfa\x16\x8b\x4b\x7a\x17\x8f\x4b\xbe\x90\xc2\xeb\xcf\x55\x75\x7d\x28\xb9\xde\x6a\xbd\x8b\xfd\xfa\x32\x4a\xae\x47\x4d\x20\x41\x9e\xe2\x0a\x7b\xf9\x44\x12\xe4\x6b\xbf\xc5\x22\x26\x94\x20\xc3\x45\xb6\x4b\xfb\x12\x2e\xb2\xa7\x4e\x30\x41\x7a\x90\x64\x82\x0c\xd7\xd9\x5e\x04\xf5\xfd\x3a\x8b\x9a\x7c\x82\x3c\x8f\x1f\xfb\x39\x93\x50\x90\xde\x24\xa2\x20\xcf\x99\x8c\x82\xf4\x2a\x21\x05\x79\xce\xa4\x14\x64\xc0\x12\x0c\x58\x82\x9d\xdb\x80\x25\x18\xb0\x04\x31\xfa\x1a\xb0\x04\x03\x96\x60\x6b\x1b\xb0\x04\x03\x96\x60\xc0\x12\x0c\x58\x82\xcd\x36\x60\x09\x06\x2c\xc1\x80\x25\xd8\x6c\x03\x96\x20\x42\xfb\x22\xb0\x04\x71\x12\x67\x90\x27\x38\xb5\x7d\x4a\xa0\x41\x7a\x92\x44\x83\x3c\x63\x22\x0d\xd2\xc7\x64\x1a\xe4\xab\x36\x53\x47\x4a\xae\x41\x9e\xe0\x34\xf6\x3b\xc9\x06\xe9\x79\xa2\x0d\xd2\xdf\x64\x1b\xe4\xc9\x12\x6e\x90\x27\x4e\xba\x41\x62\x1d\x3d\x1b\xe3\xd9\x97\x74\x36\x96\x9a\x8d\xd0\xd4\x56\x55\xf8\x07\x23\xcf\xc3\x94\x36\x77\x68\x24\xe5\x73\x20\xaf\xc7\xaf\x5f\xbd\x0a\x0f\x7e\x65\x5c\xc3\x1c\x42\x0c\x73\x33\x21\x73\xaa\xb1\xa7\xdf\xfd\xb6\x43\x3f\xf7\x65\x35\xe8\x5f\xb6\x0f\xa7\x9b\xb7\xb3\x2d\xb4\xa4\xe9\x7b\x52\x6f\xa0\x94\x6d\x8e\x56\x0e\x9a\x74\xb6\x51\x37\xf2\x4b\x68\x96\xc3\xc8\x33\x6a\x0b\x19\xf0\xfe\x71\x97\x74\x24\x25\x82\x3b\x11\xc8\xf0\xa6\xae\x1b\xa5\xfb\x2b\x27\x40\x15\xc6\xf9\x4f\xc1\xbc\x76\xc7\xf1\xa9\xb6\xd9\x6c\x0a\xc1\xb8\xf6\x06\x07\xf3\xce\xe0\x37\x84\x4b\x95\x93\x96\x60\x2d\x79\x35\x04\xa8\x2c\x52\xaa\xe1\x38\x44\xf5\x52\x2b\xa5\x21\xc7\x8c\x29\x46\x72\xa2\x88\x8d\x21\x5a\xae\x10\x1f\xb1\x04\xae\x4b\x9a\x65\x2b\x02\x4b\xe6\xe0\x2d\x66\x78\x04\xf7\x30\xad\x82\x66\xfe\x2f\x0b\xc0\xe3\x2e\xc1\xe2\x76\xca\x4c\xb3\x22\xab\x93\x6d\xd8\xe5\xcf\xac\x69\x68\xe6\x72\xcb\xb4\x99\x8f\xa1\x91\x26\x8b\x8e\x04\xac\xb1\x2e\xa4\xc2\x70\x0b\xa9\xf0\x42\xb2\xe9\x54\xd0\x33\x69\x44\x6f\x55\xd9\x8c\x6c\x6a\x1b\xf6\xe5\xe7\xbd\x08\xb8\x2c\xde\xa2\xb4\xd2\x06\xa6\x29\x72\x64\x84\x9c\x6c\xe5\xe0\x59\xad\x5b\xa3\x25\x1d\x75\x1e\xd6\xda\xb5\x97\xe0\x95\x9f\x39\x5b\x02\xaf\x45\xab\x23\x75\x7c\xec\xb5\xb0\x75\x91\xb1\xf3\x98\x21\xa2\x66\xf7\xeb\x70\x5f\x11\x71\x4d\xc4\xeb\x3c\xee\x16\xd1\xf0\x3f\x1a\x22\xd4\x7f\x3e\x2e\x1c\x76\x1e\xda\xb2\x36\x9f\x6b\xa8\xb1\xad\x6a\xa1\xb0\x63\xdf\x3d\xc9\x99\x12\x9e\xfe\x22\x86\x67\x30\x5a\xda\x8b\x27\xae\x55\xf3\x0c\xe9\x2e\x5e\x20\xd5\xc5\x50\x33\x65\xa8\x99\xd2\x6e\x43\xcd\x94\xa1\x66\xca\x3e\xfd\x0c\x35\x53\x86\x9a\x29\x43\xcd\x94\xa1\x66\x4a\x60\xeb\x11\x74\xa4\x97\xb0\x91\xbe\x41\x46\x86\x9a\x29\x9d\xda\x50\x33\x65\x3f\x92\x7a\x07\x09\xe9\x2b\x1c\x64\xa8\x99\x12\x54\xc7\xbd\x9f\x45\xdc\x87\x0a\xee\xfd\x4e\x1b\xd1\xab\x48\xdb\x7e\x45\xd9\xf6\xbd\x7c\xfb\x73\xd4\x6e\x1f\x0a\xb7\x63\xfb\xba\xaa\xfe\x3c\x59\xfc\x6c\xd4\x54\x10\x51\xaf\xa1\x97\x4f\x01\xf1\xd5\xde\x44\x11\x53\x3f\x0c\x97\xd1\xbd\xad\xef\x97\xd1\x53\xa7\x7a\x78\xe9\x34\x0f\xc3\x95\xf4\x30\x21\x7d\xbd\x92\xa2\xa6\x73\x78\x62\xff\xec\x73\xa6\x71\xe8\x47\x0a\x87\x67\x4b\xdf\xd0\x9f\xd4\x0d\xcf\x96\xb6\x61\xf0\x8b\x0f\x7e\xf1\x76\x1b\xfc\xe2\x83\x5f\x7c\x9f\x7e\x06\xbf\xf8\xe0\x17\x1f\xfc\xe2\x83\x5f\x3c\xb0\x0d\x7e\xf1\x8e\x44\x0d\x7e\xf1\xed\x6d\xf0\x8b\x77\x27\x6d\xf0\x8b\xdf\xdb\x06\xbf\x78\x10\x81\x3d\xf5\x8b\xc7\x49\x89\x10\xf3\x44\xf6\x29\x15\x42\x1f\xd2\x20\x3c\x57\x0a\x84\xde\xa5\x3f\xf8\xba\x4c\xb8\x91\xd2\x1d\xc4\x3c\x69\xfd\x4e\x73\xd0\xe7\x14\x07\x3d\x4d\x6f\xf0\x34\xa9\x0d\x9e\x32\xad\x41\xc7\xa3\x45\x4b\x2d\x72\x51\x72\x7d\x05\x72\xc9\x12\x38\x4d\x12\xf3\xd7\xb5\xb8\x81\x3d\xe3\xd9\x5b\xe7\xe9\xf4\x81\x6e\x09\xe3\x29\x4b\xd0\x5e\x76\xbb\x00\xbd\x70\x01\x63\xf8\x1c\xa1\xf6\x41\xa2\xf1\xc9\xfa\x38\x21\x9d\xe6\xde\xc2\x98\x66\xec\x7a\xdf\xf9\xb2\x33\x34\x15\x22\x03\xba\x8f\xc7\xd6\xc9\x61\x20\xf7\x64\x7e\x61\x0c\xe6\xbd\xbb\x9e\xeb\xd1\xc9\x14\x32\xc1\xe7\x2e\x7a\xda\xb1\x88\x7d\xb7\xcc\x59\xdd\x9d\xf3\x68\x26\xa5\x94\xc0\x75\xb6\xc2\x69\xc6\x52\xf8\x68\x32\xc9\xc5\x72\xff\x1d\x79\x8d\xbc\xc3\xeb\x95\x54\x93\x0c\xa8\x79\x0f\x0e\xf5\x8b\x18\xee\x43\xc9\x65\x07\xda\x2b\x17\xac\x0d\x9f\xef\xb4\xfe\xfb\xdf\x82\x9d\xee\xbd\xf6\x69\xf0\xba\x0e\x4a\x3e\x09\x1a\x9e\x1a\xf3\x81\xdc\x6c\x25\x4a\x72\x4b\xad\x7a\x22\x4b\x8e\xfc\x0f\x27\xaa\xc3\x22\x07\x08\xf2\xdd\x0d\xc4\x63\xbc\x44\xf6\xfc\x59\x88\xc1\x96\xca\x79\x27\x71\x24\xc6\xc5\x7f\x2a\xe7\xa5\xd5\xbe\xdc\x51\x04\xae\xe5\x0a\x33\x41\x74\x63\xe2\xd7\x8b\xd6\x09\xc9\xe9\x1c\x0e\x15\x39\xfb\xf0\xd6\x5c\x11\x08\xd4\x61\x33\x2b\x07\xbb\x2b\xa3\x90\x62\xc9\xd2\xae\x77\xc6\x67\x2a\x19\x9d\x66\x46\x93\x9c\x81\x04\x6e\xa4\xd3\x6f\x8e\x3e\x9f\x7e\xfa\xe9\xe2\xf4\xc3\xbb\x63\xd4\x29\xe1\xae\xa0\xdc\xb0\x83\x52\xd5\x09\x64\x1c\x85\x87\x8a\x00\x5f\x32\x29\xb8\x99\x05\xb4\x65\x51\xb2\x74\x9d\x76\xa2\xa8\xc6\x57\x48\x50\x22\x5b\x42\x6a\xb3\x48\x54\x04\xd6\x28\x97\xa2\xd4\xde\xaa\xe7\x21\x2a\x25\x4f\x16\x94\xcf\x21\x9d\x90\xb7\xa2\x34\x2f\xf6\xcd\x37\xf8\x12\x12\xd2\x32\x81\x6e\x7a\x83\x35\x0b\xdb\x93\xfb\xcd\xc8\x0b\x18\xe6\xaa\x46\x88\x0a\x01\x95\xd0\xc2\x4f\x4d\x73\xf6\xd4\x8a\x6b\x7a\xf7\xc6\x66\xa1\x38\xf8\xa6\xf1\xd5\x41\x77\x7c\x57\x21\x85\x79\x15\x2b\xb8\xd9\xb7\xcf\x98\x06\x49\x33\x72\xd0\x1c\x61\x42\xde\x19\xba\x20\x6d\xae\xad\x4d\xc3\x02\x4b\x90\x68\xef\x73\x2b\x3b\x22\x12\xe6\x54\xa6\x19\xa8\x6e\x86\x16\x31\xab\xae\x70\x6b\xbe\x70\xbb\x0a\x2a\x3b\x26\x17\x7a\x12\xca\xb8\x7d\xfb\x20\x30\xcd\xc7\x4c\xbc\x21\x0b\xad\x0b\xf5\xe6\xe4\xa4\x56\xe4\x27\x4c\x9c\xa4\x22\x51\x27\x9a\xaa\x1b\x75\xc2\xb8\x61\x7e\xe3\x94\x6a\x3a\x6e\x70\xdd\x13\x2b\xc8\x8e\x13\x91\xe7\x94\xa7\x63\xea\xce\xf1\xb8\xda\xd9\x27\xbf\x76\xa2\xde\x98\x56\x4f\x31\x3e\xa6\x63\xb5\x80\x4e\x2b\x17\xa6\x7c\x05\x28\x5d\x41\xca\x96\x7b\xf5\x97\xe2\xaf\xef\x2a\x76\x6a\x67\x6e\x42\x2e\x84\x76\x89\x75\x1c\x4e\x10\x2f\x47\x5c\x94\x98\x1c\xf7\xdd\xc5\xf5\xa7\xbf\x5e\x7e\x3c\xbf\xb8\x1e\x18\xef\xc0\x78\xb1\x0d\x8c\x77\x60\xbc\x1d\x06\xee\xc8\x78\x81\x2f\x5f\x8a\xe9\x7a\x95\xb3\xc1\x60\xaa\x9d\xe5\xd0\xea\x15\xd6\xb8\x5a\xb6\x6e\x3b\x2a\xca\xc6\x7c\xb1\x05\x6e\x4d\xf6\x3b\xbe\xfc\x4c\xdb\x18\x03\xbe\x75\x0a\x89\x7b\xc0\xea\xbf\x67\x61\x13\x18\xec\xab\x09\x45\x02\x75\x52\xf7\x6c\x0b\x47\xe9\x98\xa1\xbb\xdb\x7e\x5b\xcb\x77\x41\xf3\xca\xf2\xb8\x6d\xd5\x26\xe4\x83\xb7\x66\x90\xb3\x9f\xce\xdf\xbe\xbb\xb8\x3e\xff\xf6\xfc\xdd\xa7\xee\xb6\xba\x08\x46\x70\xb4\x97\x46\x9a\x80\x20\xd3\xf7\x3e\xe2\x4c\xc0\x30\xb5\x20\x54\x48\x58\x32\x51\xaa\x6c\x55\xd9\xa4\xb7\xb3\xab\x75\x3e\x45\x28\x0f\xa1\x80\xf2\x55\x65\xa3\xdc\x3a\xe0\x9a\x28\xb6\x4d\xac\x0a\xb1\xee\xbe\xac\x40\xe6\x88\x88\x21\x96\x05\x8c\xbf\x45\xa0\xdb\x5d\x38\x0b\x18\xb7\x93\x58\x77\x9f\x88\x16\x40\x47\x5b\xb8\x0b\xe8\xe8\xad\x8d\xe1\xc1\x3b\xfd\x20\x60\x6a\x62\x71\xb2\x6f\xa5\xc8\x23\x71\xb3\x2b\xcc\x37\x57\xc5\x54\x6d\x3b\xaa\x87\x0e\x15\xdc\x12\x8f\x9d\xa2\x57\x45\x35\x99\xcf\x03\x23\x9b\xa2\xc0\x29\xe2\x20\x5a\x13\xc1\x67\x6c\xfe\x81\x16\x3f\xc0\xea\x13\xcc\xc2\x9c\xb8\xed\xf9\x46\x47\x99\xc3\x55\xa2\x4b\xce\x48\x36\x76\xb0\x30\x67\x59\x34\x34\x4a\x2c\xcc\x73\x38\xde\x39\x1e\x3c\x39\x0a\x34\xb9\xb5\x90\x2e\x32\xb4\x0e\x8d\x8c\x85\x5c\x8f\x02\x40\x0d\x13\xf8\x7c\x8b\x0f\x3b\x6d\x4a\x8f\xee\x7a\x88\x82\xde\xdd\x4d\xe3\x4e\x04\x4f\xa0\xd0\xea\x44\x2c\x8d\x68\x02\xb7\x27\xb7\x42\xde\x18\x15\xfa\x96\xe9\xc5\xd8\x9e\x1d\x75\x82\xce\xfd\x93\x5f\xe3\x7f\x22\xd0\x76\xfd\xf1\xed\xc7\x37\xe4\x34\x4d\x89\xc0\xdb\xad\x54\x30\x2b\x33\x8b\xcf\x51\x13\x42\x0b\xf6\x19\xa4\x62\x82\x8f\xc8\x0d\xe3\xe9\x88\x94\x2c\xfd\x53\x9f\x36\x93\x28\x2c\x34\x2d\xf2\x86\xba\x42\x34\xc5\xaa\x75\xeb\x57\xbc\xd0\xdc\xda\x4c\x2b\x3c\x62\xde\x3d\xea\x04\xd8\x48\x53\xb3\xbf\x63\x7b\xb3\x3d\x55\xc1\x20\xdc\x1b\x71\x2f\x9e\xe0\xe3\x5b\xdf\x5c\x16\xe3\xe9\x4e\x71\x21\xd2\x37\x44\x95\x45\x21\xa4\x56\x24\x07\x4d\x53\xaa\xe9\xc4\x1c\x9e\x51\xfb\x4f\xc4\xcb\x8c\xc8\x3f\xaa\x0f\x6d\xd8\xf4\x8f\x87\xff\xf1\xc3\xbb\xbf\xfe\xe7\xe1\xdf\xff\xd1\xfc\x0e\x25\x0d\x1b\x71\xd0\x78\x20\xf0\x15\x54\x01\xc9\x84\x8b\x14\x2e\x90\x3a\xfc\x53\xb5\x00\x17\xee\x0b\x4d\x75\xa9\x26\x0b\xa1\xf4\xf9\x65\xf5\x67\x21\xd2\xf5\xbf\x02\xe3\x1e\x7a\x78\x65\xe3\xda\x5e\x52\xdd\x3d\xb7\x35\x89\x7a\x71\xd7\xdc\x31\x32\xf7\x71\xbd\x56\x49\xb8\x93\x05\xe4\x14\xff\xf9\xad\x9f\x02\x23\xd7\xde\x4a\xa6\x35\x62\x70\x5c\x6a\x7c\x31\x1b\xf9\x98\x7e\xab\x0f\x2c\x5f\x47\xa8\x19\x1e\x91\x5b\x57\x2b\x18\x79\xc2\x70\x46\xdc\x6c\x59\x0e\x50\x67\x85\xd8\xc0\xc7\x9d\x5e\x9e\x93\xa5\x9d\xe1\x1e\x4d\xce\x53\xb1\x6b\x9f\xb6\xfb\xdb\x5e\xb3\x6d\x4f\xa5\x5f\xc4\xca\xd4\xf3\xc6\x22\xe6\xab\xe4\xe3\x24\x63\x39\x73\x61\x56\x86\xb3\x80\xd2\xa1\x72\xd0\x91\xed\x72\x92\x14\xe5\xc8\x75\x3f\xc9\x21\x17\x72\x55\xfd\x09\xc5\x02\x72\x90\x34\x1b\x2b\x2d\x24\x9d\xc3\xa8\x1a\xdc\xfe\xac\xfa\xcb\xfe\xb0\x45\xde\xe6\xaf\xad\x2d\xad\x06\x6b\xb9\x2b\x2a\x14\xf5\xdf\x43\x96\xed\xd7\xad\x27\x1c\xbb\xda\x56\x17\xf1\x75\x90\xc3\xca\x0b\x60\x35\x9c\x6a\x16\xd1\x80\xb1\x14\x59\x99\x83\x1a\x55\x02\xab\xb5\xb2\xf1\x25\x59\x52\xa9\x0e\xfb\xc3\x87\x08\x49\xd9\x92\xa9\x18\xd1\xa0\x5b\x24\x6a\xe6\x02\xab\x45\xa9\x8b\x52\xbb\x9a\x4e\x95\xc9\xfe\xae\x10\x0a\x6d\x73\x55\xa5\x81\xd6\x6d\xf6\xfa\x20\x98\xa4\x82\x6a\x0d\x92\xbf\x21\xff\xeb\xe8\x6f\xbf\xf9\x79\x7c\xfc\xa7\xa3\xa3\x1f\x5f\x8d\xff\xfd\xef\xbf\x39\xfa\xdb\x04\xff\xf1\xaf\xc7\x7f\x3a\xfe\xd9\xff\xf1\x9b\xe3\xe3\xa3\xa3\x1f\x7f\xf8\xf0\xdd\xf5\xe5\xbb\xbf\xb3\xe3\x9f\x7f\xe4\x65\x7e\x63\xff\xfa\xf9\xe8\x47\x78\xf7\xf7\x1d\x3b\x39\x3e\xfe\xd3\x37\xc1\xa4\x53\xbe\xfa\x18\xc8\xbd\x6d\x1b\x47\x2b\xc9\xb5\xde\x63\xa4\xf8\xd4\xd6\x55\xc8\xb8\x1e\x0b\x39\xb6\x5d\xbf\x21\x5a\x96\xa1\x41\x5b\x7e\x7b\xc5\x3e\xff\x9f\x3c\xd7\xac\x6f\xb3\x4a\x0a\xe9\xd1\x01\x7f\x2a\x41\x43\x41\x22\x41\x3f\x87\x51\xd2\x8e\xe4\x05\xbb\xb5\xe0\x9a\xaf\xed\x06\xfd\x25\xd8\x29\xab\x62\x43\xb8\xae\xb5\xe8\x3e\x93\x22\x9f\x90\x86\xd3\x76\x89\x21\xf8\xee\xb9\x1b\x08\x4c\x55\x46\x06\xbb\x66\x48\x1b\xec\x9a\xeb\xed\xcb\xb4\x6b\x5e\xd9\xe3\xf4\x0b\x34\x6a\x02\x5f\x76\x75\x57\xc6\xc4\x68\x79\xd5\x56\x0b\x52\x88\xa2\xcc\xa8\xbe\x07\x97\x10\x09\xb0\x55\x25\x0e\xf5\xa8\x8b\x1a\x82\x6b\xc5\x96\x7c\x3b\x4a\x86\x9c\x66\x19\x61\xdc\x32\x61\xd3\x41\xa7\xd1\x3d\xb8\x41\x82\xd5\x79\x09\xb5\x28\xab\xa5\x79\xd5\x5b\x57\x8d\xb2\x89\xe6\x55\x44\x69\x2a\x35\xe3\xf3\x89\xad\x56\x69\x45\x01\xe7\x41\x67\xbc\xaa\x59\xd9\x89\x9c\x4a\xd5\xa8\x62\xf6\x37\xea\xee\xda\x40\x46\xa5\xfd\xf4\xe0\x1b\x68\x7a\x83\x08\x96\x04\x52\xe0\x49\x47\x2c\xc4\x67\x9b\x23\xc0\xaf\xc3\x74\x65\x66\xe2\x1d\x5f\xda\x71\x29\x49\x4b\x0b\xba\xb4\xd7\x64\xbc\x71\xbf\x2e\xc8\x9e\x39\xc3\x0e\x2b\xd0\x40\xee\xa1\x44\x51\x19\x95\xaa\x9c\x40\x95\x17\xa7\xdb\xee\x0d\x96\x10\xc3\xe5\xb1\x0a\x00\x10\x24\x68\x6f\x08\x62\xb5\x7b\xab\x2d\x80\x7d\x0d\x98\x89\x70\xd1\x2c\xae\x58\xf6\x14\x22\x59\x5f\xc5\xb1\xe7\x17\xc5\x22\x89\x61\x71\x44\xb0\x3d\xdc\xca\x31\xc5\xae\x38\x22\xd7\x53\xd8\x0a\x0a\x09\x33\x76\x17\x89\x71\x9d\xf2\xda\xa0\xca\x52\xe0\x9a\xcd\x98\x99\x57\x61\x86\x29\x80\xa7\xbe\x38\x35\x71\xf5\x2f\x5a\x33\xde\x4b\x3c\xb0\xd5\x6e\xe3\xf2\xf6\xab\x6d\x9a\xf5\xc0\xd8\xc9\xc0\xd8\x03\xda\xc0\xd8\x77\xd2\xab\xbf\x76\xae\x8e\xd1\x96\x2f\xa5\x42\x9f\xb5\x83\x3e\x91\x1f\x3c\x65\x5c\x5c\x75\xca\xea\x54\x1e\x27\x38\x72\xb7\xc3\x74\x5d\x25\xc3\x32\x6a\x6e\x75\x93\x69\x61\xa1\xf8\x64\xc1\xe6\x66\x37\x65\xb0\x84\xcc\xc9\xfd\x24\xa7\x9c\xce\x6d\xbe\x3b\x2d\xaa\x12\x0e\x42\x62\x3a\x78\xc9\x3a\xe6\xf0\x59\x8b\x9e\x45\xbd\xda\x30\x90\x4c\xd0\x14\xbf\x94\x22\xcb\x40\x2a\x92\xb1\x1b\x20\x6f\xa1\xc8\xc4\xca\xa5\xac\xe3\x29\xb9\xd2\x54\x9b\xc3\x7f\x05\xba\x13\xec\x28\xe8\x60\x23\xc1\x97\x65\x96\x5d\x8a\x8c\x25\x9d\x6c\xd4\x31\xb6\xe2\x39\x6e\xc0\xa2\xcc\x32\x52\x20\x21\xdd\xf6\xe1\x47\x8e\x17\xc8\x69\x76\x4b\x57\x6a\x44\x2e\x60\x09\x72\x44\xce\x67\x17\x42\x5f\x5a\xd5\xb6\x5b\xbf\xcd\x38\x01\xdb\x39\x61\x33\xf2\x06\x73\x5d\x6b\xa2\xe9\x1c\x0d\x2d\x1e\x24\x33\x32\x1b\xaa\x39\xa8\xe5\xf1\xb7\x4c\xbd\xa4\xc5\x21\xfc\x94\xfe\x1a\x47\x37\xb7\x62\xe7\x53\x1b\xb4\x57\x33\x36\x83\x64\x95\x64\x2f\xc6\x30\x4f\x13\xc4\x2d\xd6\x99\x01\x1b\xec\x44\xad\x94\x86\xdc\x27\x6a\x42\x43\x13\xe3\x44\x82\x2a\x04\x57\xe8\xcc\xac\xb9\x44\xf5\x22\xd6\x70\xd7\x11\x6c\x18\xd1\x0e\xd5\x59\x1c\x0d\x15\x44\x0b\xa1\xf4\x95\xa6\x52\x77\x15\x27\x62\x49\xa0\x97\x9e\x10\x73\x92\x13\x9a\x65\x90\x12\x96\xe7\x90\x32\xaa\x21\x5b\x11\x3a\xd3\x98\x9e\xab\x65\x5a\x4d\x24\xe0\xbc\xfb\x0c\xc6\x0b\xca\xd3\x0c\x24\x99\x51\x96\xa9\xee\x98\xd6\x0d\x13\xae\x06\x99\x33\x8e\x36\x55\x8b\x8d\x42\x9b\xae\xf9\x2b\x49\x84\x4c\x5d\x22\x2c\xa6\x95\xff\x2a\x88\x89\x9a\xf6\x11\x05\xb1\xc6\xf6\x5e\x87\x96\x91\x69\x26\x92\x1b\x45\x4a\xae\x59\x66\x5f\x5e\x88\x1b\x92\x88\xbc\xc8\x90\x9d\x74\x1e\xba\x3b\x97\xaa\xfe\x39\xae\x0e\xd8\xd8\x50\xa5\x4e\x7e\x5d\x7f\x85\x1f\x74\x24\x2e\x82\xee\x16\x43\x73\x83\x3b\x48\xa2\x25\x7c\x7c\x77\x07\x49\x23\x2b\xaa\x59\x49\x8a\x6c\x0e\x13\x3a\xd1\x9b\x08\x25\x93\x7a\x53\x11\x25\x20\x97\x4b\xb3\xc5\xf6\x32\x9f\x59\xb2\x7c\x31\x04\x47\x25\xc9\x18\x07\x5b\xf7\x0b\x93\xbd\x10\x86\x75\xd6\xda\xc7\xd0\x7a\x5e\x9c\xb2\x4a\x52\x26\x31\xad\xe5\xca\x87\xfd\x05\x93\xe6\x69\xc1\xcc\x8f\x42\x68\x72\x74\x78\x72\x78\xbc\xe1\x4a\x3b\x34\x82\x78\x06\xf6\x0e\x9c\xb8\x8c\x32\xd5\x4b\x29\x96\x17\xd9\x0a\xdf\xe3\x30\x1d\x11\x66\x78\x6c\x30\x65\xe6\xea\x93\x25\xf7\xb3\xe2\x32\xe0\x8c\x88\x12\x44\x4b\xea\x93\x2e\xdb\x4f\xcd\x43\x5a\x96\xee\xf6\x3e\x3a\xfc\xf9\x70\x44\x40\x27\xc7\xe4\x16\x6b\xc7\x99\xe9\x9b\x90\x6b\x61\x94\xf0\x70\xa4\x99\x27\x64\x25\x4a\xc2\xc1\x66\xf7\x85\xbb\x22\x63\x09\xd3\xd9\x0a\xef\x16\x22\x4a\x6d\xf3\xa5\x51\x1d\x92\xb9\xa7\xd9\xde\xdd\x31\xed\x42\x18\x0c\xb3\x7e\x85\xbb\xc9\xde\x4f\x84\x1a\xcd\x63\x09\x27\x0b\xa0\x99\x5e\x58\x80\x2d\x17\x7c\xfc\x4f\x90\x02\xb3\xfb\x70\xf7\xcd\x57\x57\x80\x27\x8a\xd1\xc3\x5c\x43\xdf\x41\x67\x11\x85\xac\xb3\x8c\xef\xaf\xaf\x2f\xbf\x03\xbd\xc6\x75\xcd\x28\x1e\xf6\x8c\x36\x58\x90\x33\x21\xf3\x1e\xb0\xdf\x38\x78\xac\x31\x29\x84\xec\xc3\x2d\xb0\x10\x2a\x68\x2d\xc9\x13\x5c\x01\xdf\x0b\xa5\xd1\xfe\xe2\x14\x05\x8e\x25\x39\x45\x1b\xc3\xeb\x00\x7b\xe4\xfc\x72\x42\xfe\x2a\x4a\x33\x21\x53\x3a\xcd\x56\x55\xba\x4c\x05\xe1\x85\x91\x0e\x0c\x29\x07\x86\xc3\x9b\x0d\xf9\x3d\xd0\x14\xa4\x42\x06\x0a\x34\x52\x62\xfd\x08\x18\x9f\x06\x6d\x51\x97\xf2\xac\x54\x5a\xe4\x64\xe1\x5e\xbb\x9d\xea\xc7\x1d\xce\x09\x1e\x60\x9f\xef\x41\x42\x61\x99\xac\xfb\xcd\x57\xc7\x42\x37\x58\x97\x9d\x77\xf7\xf9\x14\x33\xe9\x27\xcd\x69\x33\xb3\x56\x65\x12\xe0\x76\xb2\xcc\x56\x8d\x80\x4d\xeb\x71\x09\xb0\xce\x49\x80\xd6\x3b\x42\x18\x4d\x70\x4f\x71\x0b\x80\xc5\x41\x67\x92\x27\x2b\x78\x64\x04\x4e\xb7\xf9\xac\x41\xb8\xbb\x29\x7b\x5b\xe7\xac\x2e\x01\x9c\x50\x2e\x38\x4b\x68\xc6\xfe\x09\x29\x29\x0b\xc1\x5d\x38\x06\x4a\x9e\x09\x55\x30\x46\xc4\x19\xd7\xae\x8a\x44\x9d\x8e\xc6\x70\x07\x2d\x04\x8a\x63\xda\x17\xfa\xb5\x54\xf7\xb7\xce\xd5\x13\xac\xfa\xc6\x62\xc5\xd9\xf1\x24\xe6\x0c\x14\x11\xc2\x2c\x37\x83\x2c\xb5\x20\x34\x49\x30\x27\x8e\xbd\x51\x90\x37\x2a\x90\xcb\xf0\x2d\x10\xef\xd5\x45\x77\x6b\x9c\x6f\xb1\x4f\xb9\xf5\x0c\x4b\xc2\xcb\x7c\x0a\xb2\x8e\x50\x97\x7a\x73\x4e\x03\xf1\x9d\xad\x61\xed\x70\xde\x09\xe9\xc5\x00\xca\xe7\x40\x5e\x9b\x91\xff\xf8\x87\x3f\xfc\xee\x0f\x11\xc6\x31\xaf\x57\xe1\x46\x39\x39\x3f\xbd\x38\xfd\xe9\xea\xf3\x19\xa6\x6c\x0a\xed\x3e\x52\xe8\x53\xec\xc0\xa7\xa8\x61\x4f\x4f\x1a\xf4\x84\x11\xe4\xc1\x8c\x30\xf6\x91\xb8\x42\xaa\xcc\x26\x2c\x95\x4d\xf3\xe4\xd4\x86\x46\x59\x04\xa3\xe9\x84\xef\xce\xa6\xf3\xcb\x30\xac\x5e\x70\x2a\x95\x01\x14\xd1\x34\xf2\x2b\xd3\xdb\x3a\xfe\x35\x2d\xa5\x2d\x50\x50\xb9\x7b\x6a\xeb\xb7\x73\xf3\x20\x15\x64\x0a\x33\x21\x81\x4c\x01\xa7\xbe\xb2\xd5\x7f\x45\x9a\xbb\x82\x44\xf0\x34\x44\x7e\x8f\x25\x8f\x3a\x4a\xa2\x9e\xc6\x2b\xdb\xa7\xb7\xbf\xd6\x97\x8c\x1b\x0c\xd5\x40\xb3\xd2\x71\x76\x7e\x1c\x0e\x6a\xa3\x7f\xb1\xb7\x3f\xfe\xbe\xbb\xab\x29\x29\xae\x44\x72\x13\xd1\xb8\x15\xc8\xda\xde\x9a\x33\x98\x58\xaf\xda\xf5\xd9\xa5\x25\xce\xac\xcc\xc5\xc7\xeb\x3a\xd4\x1f\xc3\x1e\xc8\x7b\xef\xe5\xf9\xde\xf9\xdd\x28\x4f\xc9\x0d\x14\x61\xaa\xa1\xcf\x98\x37\xa5\xc9\xcd\x2d\x95\x29\xfa\xb4\xa8\x66\x53\x96\x31\x5b\x1c\x14\x24\x60\x0e\x02\x2e\x6c\x4c\x9d\xe5\x12\x62\xd6\x28\xcf\x16\x98\x64\xb3\xe1\xeb\x46\xbf\x9a\x53\x23\x66\x94\x65\xe8\x55\x2e\xb9\x66\x39\xb8\x80\x8f\xa4\xa8\x1c\x8f\x4d\x14\xc2\x57\xc4\x7e\xbe\x56\xc3\xe1\xe1\x47\x0f\xa6\xdb\xdb\x00\x18\x1a\x13\xfd\x75\xab\x0b\x8e\x83\xdb\x64\x12\x83\xba\xb0\x4f\x1b\xd4\x85\x8e\xea\x42\x21\xe1\x4a\x8b\xce\x32\x69\x34\x20\x8b\x25\xe3\x1e\x18\x8b\x13\x55\xe9\xbd\xf8\x92\xb4\x04\x5b\x17\xb8\x33\x01\xa7\x97\xe7\x95\x1b\x4b\xb4\x30\x24\x36\x4a\x51\x95\xc9\xc2\x7b\x24\x39\x28\x75\x82\x88\x95\xb2\xb0\x36\x62\xbc\xe3\x4a\x09\xdd\xd1\x33\x85\x04\xc8\x71\x1e\x47\x75\x2e\x09\xf3\xba\xc0\xed\x87\xa0\x13\xeb\xa2\x6e\xdc\x9a\x58\xff\xcd\x4d\x57\x58\xd1\xc4\x7a\x62\x13\x49\xd5\x02\x30\x4d\x31\xdc\x31\xad\xec\xa0\x97\x98\x71\xc1\xcf\xb8\x11\x1c\xe6\x92\x26\x40\x0a\x90\x4c\x18\x61\xa3\xe4\x3a\x15\xb7\x9c\x4c\x61\xce\xb8\xf2\x2b\x16\x42\x92\xdf\x12\x88\xd0\x61\xaa\xaa\x1e\x33\x21\x9f\x5a\x59\x9a\x5d\x6e\x99\x44\xd4\x3c\xd3\x4d\x51\x58\xb9\xe7\x7a\x4a\x50\x8a\xc1\x6d\x50\x62\xf9\xc2\x6a\xe3\xf9\x28\x5a\x7d\xff\x0c\x75\xdf\x10\x76\x66\x8f\x4a\x8e\x2f\x9a\x42\x46\x57\x36\x5e\x74\xc6\x38\x1a\x72\xa5\x3a\x9e\x84\x43\x9e\x3a\x13\x28\x64\xa3\xcf\x7b\x77\x06\x56\xa2\xa7\xc9\x22\x44\xb2\x1b\xb0\x55\x8f\xb5\x01\x5b\xd5\xb1\x0d\xd8\xaa\x7d\xdb\x80\xad\xda\xb7\x0d\xd8\xaa\x3e\x01\x03\x06\x6c\xd5\x60\x22\x59\x6f\x03\xb6\xea\xa1\x36\x60\xab\x06\x6c\x55\xab\x0d\xd8\xaa\x1d\xda\x80\xad\xda\xb1\x0d\xd8\xaa\x01\x5b\x35\x60\xab\x06\x6c\xd5\x7e\x6d\xc0\x56\x75\x6f\x83\xb3\x64\xc0\x56\x05\xb5\x01\x5b\x35\x60\xab\x06\x6c\xd5\x80\xad\xba\xb7\x0d\xd8\xaa\x01\x5b\xb5\xb5\x0d\x86\xc3\x8d\x36\x60\xab\xb6\xb4\x01\x5b\xb5\xdf\x38\x83\xba\x10\xd6\x59\x74\x75\xc1\xe3\x84\x2e\xa5\x98\xbe\x58\xe6\xa7\x4b\xc4\x60\xb0\xc4\x81\x94\xc4\xac\x95\xcd\xc9\x12\xd8\x31\x8b\x53\x1b\x1c\x63\xcb\xe4\xbb\xf4\x3e\xcc\x1d\xae\x0a\x18\xf5\x92\x99\xa2\xf6\x46\x8f\xf8\x0c\x78\xea\xa4\x10\xf6\xff\x6a\xec\x48\x03\x34\xd2\xd9\x7c\xfd\xc2\xa9\xab\x42\x90\x22\xcf\x83\x12\xe9\x09\xa4\x26\x02\x32\x24\xe6\x25\xd6\x53\x44\x48\x3f\xd1\x20\x7d\x44\x82\xbc\x04\x0a\xe4\xc5\x11\x20\x71\x5c\x97\x11\xdc\x96\xc1\xa2\x82\x03\xf8\x5e\x2f\x24\xa8\x85\xc8\x3a\xf3\x85\x58\x3c\xe1\x03\xe3\x2c\x2f\x73\x73\xc4\x94\x39\xfa\x6c\x59\x81\x90\x55\xa5\xb0\xda\x2b\xd8\x3a\x5f\xcd\x83\x2c\x05\x2c\x4e\x49\x59\x66\x76\x00\x26\x07\x5c\xd0\xa5\x61\x0b\xaa\x4c\x12\x80\x34\x44\x49\x6c\x5a\x05\x7f\x37\xa9\x28\xb4\x05\x56\x98\x22\xaf\xc3\x6e\x84\x30\xb9\xb1\x61\x1c\xf9\xdd\x6f\x3b\xf5\x31\x97\x45\x9c\x9b\xf3\xbb\x4f\x97\x67\x8d\x9b\x93\x72\x7f\x71\x32\xbe\x14\x19\xae\x06\xb5\x0f\x19\xfd\xe4\x05\xaf\xd1\x70\x65\x3d\x48\x51\x8f\x71\x8b\x87\xea\xa2\x6d\x8f\x9d\x51\x17\xdb\x0e\xa7\x39\xae\xa5\xad\xd9\x3e\x79\x06\x75\x2f\x96\x0a\x15\x7e\x1c\x08\x9a\x5e\xf1\xc5\xfb\x22\x23\x5d\x59\x72\x2a\xab\x6d\x43\xd3\x77\x94\x22\x8a\x2e\xa3\x49\xb5\x36\xb8\x7e\xdf\xe3\x45\x77\xb6\x80\xe4\xe6\x93\x05\xf4\x04\x91\x71\xa4\x00\x2a\x55\x63\xce\xf4\xa2\x9c\x4e\x12\x91\x9f\x18\x06\x62\xff\x6f\x9a\x89\xe9\x49\x4e\x95\x06\x69\xb4\x0f\x77\x07\x8f\x13\x43\x01\xe3\xf3\x49\x9e\x1e\x4f\x7e\xf5\xab\x20\x22\xce\x9d\xed\xd1\x45\x89\x34\xb2\x3c\xa3\x23\xc3\xa5\x10\x9f\x82\x61\xff\x02\xcd\x84\x8d\x8a\x54\x66\x56\xc2\x77\x69\xc0\x6d\x1b\x88\xaf\x7c\x7e\x6c\xe5\xc0\x6d\x49\x04\x73\x68\x4c\x66\xd0\x0f\xfc\xe4\x93\x61\x27\xa3\xc1\x98\x23\x60\x26\x7b\x84\x97\xec\x8d\xc2\xd1\x17\x8c\x64\x0f\xcb\x1b\x47\xc0\x45\xc6\xc0\x44\xc6\xc3\x43\xf6\xb5\x0a\xf0\x93\x61\x20\xbf\x08\xfc\x63\x44\xef\x40\x24\xdc\xe3\x73\x60\x1e\xa3\xbc\x75\x28\xd6\xf1\xf9\x70\x8e\x71\x5e\x37\xa6\x92\x18\x78\x72\x5f\x00\xd7\xf8\x1c\x4e\xca\x27\x73\x50\x46\x70\x4e\xc6\x74\x4c\x46\x73\x4a\x3e\x19\x7e\x31\x1c\xbb\x18\x55\x65\x7f\x16\xcc\x62\x4c\xbc\x62\xf0\xfa\x32\xce\x34\xa3\xd9\x5b\xc8\xe8\xea\x2a\x0c\xbb\x16\x6b\x25\x2e\x36\xf0\x6d\xd6\x36\xdc\x46\x38\x2e\xa8\x2b\xcb\x0d\xa9\x07\x38\x7a\x27\xb2\x93\x54\x11\x03\x65\xdf\x2f\x08\xed\xd8\x33\x97\x2d\xe9\x8d\x0d\xda\x26\x55\xe8\xc9\xae\xf9\x5e\xdc\x12\x31\xd3\xc0\xc9\x11\xe3\x7e\xe7\x1c\x37\x8c\x29\xb5\x0f\x22\xd8\xa9\x60\x7a\x7d\xfd\xca\x0f\xf2\xf5\x39\x17\xd0\xfd\xa2\x54\xaf\xdd\x4b\x8e\xc6\xc7\xfd\x4b\xee\xc1\x59\x99\xb5\x7d\x4c\xd6\xef\x14\xc7\xc1\xf4\xba\x2e\xe4\xfb\x1a\xe9\xa9\x58\x11\xe5\x29\x71\xc9\x79\xbe\xbe\x7d\x12\x8c\xce\x6d\xeb\x20\x15\x9c\xf6\x31\x77\xd4\xf5\xd9\xe5\xe0\x8d\xea\x97\x7d\xf4\x85\xa0\xa2\x5f\x9f\xc6\xf5\xfc\xd0\xd0\x41\xe3\xfa\xa5\x68\x5c\x8d\xbc\x58\xdf\x49\x9a\xc0\x65\x9f\x04\x38\xcf\x40\xea\xb8\xa6\x5a\x8e\xab\xd8\x05\x07\xb0\xf1\x2e\x75\xd6\x33\x4c\xf0\x35\x2b\xb3\x6c\x65\xcd\x7d\xad\x14\x78\xdd\xb7\xd6\xf5\x02\x36\x72\x87\xb5\xa2\xae\x1a\xd4\xd5\xfa\x49\x21\x85\x93\x4a\x64\xc9\xb9\xb9\xad\xdc\x71\x32\xc4\x1b\x7d\x44\x01\xef\x6e\xf9\xa6\xad\xcc\x66\x8a\xcd\xcd\x74\x19\x09\x03\x93\x9e\xd5\x11\x17\x2d\x42\xcc\xa8\x33\x21\x13\x36\xcd\x56\x64\x41\x33\xa3\x30\xdd\x32\xbd\x20\x94\xdc\xb0\x2c\x73\xdd\x74\x9f\xa8\x2b\xd0\xd6\xb9\x6b\xa5\x9a\x4c\xf0\x39\x4e\x06\xb5\x84\xc0\x5d\x01\x89\x19\x33\xc9\x80\xf2\xb2\xb0\x74\x1a\x19\x69\x25\x4a\xe9\xe9\xec\x3e\xbc\x77\x2d\x57\x32\x15\x67\xd9\xc8\x4f\x79\x3b\x07\xde\xe6\x9e\xaf\xad\xbf\x0a\x52\x97\xbe\xee\x96\x29\x18\x61\x9f\x9d\x69\xb2\xb4\xf8\x72\xd8\x76\xdf\xd8\xcf\x0a\x29\x96\x2c\xb5\x7e\x6d\xbf\x2d\x8c\xb4\xd3\xfd\xfd\x3f\x63\xbf\x9e\xb5\x72\xc1\xc7\x1c\xe6\x14\x45\x64\xc7\xd0\x2c\xc2\xd1\x8e\x6f\xf1\x74\x3c\x65\x09\xd5\x60\x14\x68\x51\xb4\x72\x5b\x2e\x19\xed\x4c\x89\x79\x9f\xc6\x8e\x22\x47\x5c\x10\x81\x01\x51\x25\x67\x7a\x85\xce\xb7\x45\xa9\x49\x2a\x6e\xf9\x71\xc8\xc1\xb4\x40\x02\x4a\xa6\xa0\x69\x1d\xce\xe4\x45\x32\x45\x80\xd3\x69\x66\xce\x1e\xc2\xdd\xaf\xb7\x6e\x00\x32\x03\xaa\x4b\x09\x64\x4e\x75\x00\x97\xd8\x22\xd1\xdb\xf5\x7c\x78\xdb\x31\xe5\x5c\x6b\x33\x52\x72\x05\x81\x82\x6c\x34\x35\xa0\x63\xa0\x9e\x39\xd1\xa2\xd4\x3d\xb9\x47\xee\x33\x1f\xdd\x2e\x58\xb2\x68\x2a\x8a\x2c\x07\x45\x44\x19\x60\xcd\x6b\xa9\x80\x6e\xb8\x98\x5a\xde\x60\x7b\xda\xda\xba\x7a\x38\x63\xec\xb0\x8b\x86\x54\xde\x08\xb7\xf6\x80\x26\x1b\xf8\xf9\xf6\xe2\xea\xa7\xf7\xa7\xff\xf3\xdd\xfb\x6e\x0b\xff\x8e\x26\x8b\x66\x72\x61\x4e\x28\x5e\x14\xc8\xe4\x17\x74\x09\x84\x92\x92\xb3\xff\x2e\x1d\xaa\xec\xa8\x1a\xaf\x23\x5b\x8d\x58\x05\xbd\xa3\xe0\x6b\x6e\x89\x4e\x9c\x23\xc6\x9a\xbe\x67\x0a\x33\xd5\x22\x11\x0e\x08\x2f\x14\x90\x99\x14\xf9\x9a\xa2\x45\x2e\x2a\xf8\xda\xca\xda\x22\x50\x35\x5b\x80\xec\x26\x91\xbf\xfd\xf8\xee\x0a\x43\x87\x0b\x69\x33\x3b\x23\xd8\x1e\xfb\xc4\xd1\x6d\xcc\xbe\xa5\x27\x9d\x90\x53\xbe\xb2\x5f\x5a\x66\xd6\x51\x44\xc9\x98\xd2\x80\xc2\xa9\x53\x24\x3d\x00\xef\xe0\xd5\x04\xff\x77\x40\x68\x9a\x4a\xa3\x69\x56\x31\x0b\xc9\x7a\x88\x55\xa7\x91\xad\xfe\xca\xa6\x59\x63\x72\x39\x68\x0c\x6b\xe8\xd4\xe1\x07\x91\xba\x95\x40\x21\x10\xa1\x36\x56\xba\x55\x5a\x52\x0d\x73\x96\x90\x1c\xe4\x1c\x48\x41\x75\xb2\x20\x39\x5d\x91\x44\x48\x59\x16\x36\x63\x42\x4a\x35\xed\x36\xf2\xb7\x42\x92\xdc\x73\x67\xc3\xcd\x8c\x48\x7e\xb5\x1d\x6b\x59\xb3\xec\xe6\x3f\x99\x52\x25\xa8\x93\xd7\xaf\xfe\xed\xb7\x7f\xe8\xa8\x5e\x47\x3c\xb8\x5d\x51\x4a\x01\xe8\xa4\x36\x52\xcb\x6f\x30\xc4\x35\x37\x52\x5d\x50\xbf\x43\xec\xce\x47\x6e\xa8\x18\x9f\x67\xc1\x06\x90\x60\x33\x60\xa8\x11\x70\x5c\xbf\xc1\x65\x57\x5b\x60\xb8\x25\xb0\x45\x43\x77\x53\x4a\x3c\x2b\x58\x2d\xc1\x79\xbb\x97\x63\xc8\x82\x37\x14\xbb\xf3\x4b\xcf\xa5\x42\xec\x47\xa8\x4d\x54\x86\x29\x9b\x2f\xc1\x0e\x6b\x31\x0f\x23\xf2\x8a\xfc\x07\xb9\x23\xff\x81\x56\xb0\x3f\x76\x1f\x2a\x8e\x8d\x29\x06\x52\x7e\x21\x94\x3e\xbf\x8c\xb4\xd0\x7f\x31\xf7\x95\xe9\xd1\xac\x87\x16\x64\xca\x9c\x39\x02\xee\x34\x48\xa3\x06\xba\x35\x0c\x9d\xb9\x20\x8b\x9a\x21\xf0\x4b\xd9\xdd\xa1\x00\x83\xf3\x59\x1b\x5f\xff\x4c\xfb\x1b\x07\xfe\x5e\x28\x7d\xe1\xb8\x75\x33\xd7\x47\x93\x8e\x1c\x2f\xe2\x16\xbb\x0f\x19\xf5\x83\xd9\x7b\x75\x92\x7d\x92\x0a\x0c\x31\xb0\x31\x8d\x0b\x16\xc0\x1c\xfa\x73\x62\xc3\x20\x9d\xf1\xb6\xee\x43\x5b\x6b\xcd\xa6\x8f\x16\x19\xa7\xa4\x34\xea\x52\x14\x22\x9d\xa0\x7e\x13\x40\x85\x99\x8d\xb4\x21\x0c\x3c\xa0\x1a\x4d\xac\xbe\x56\x79\x88\xf1\xc0\x19\x8e\x95\x50\xde\x55\x86\xb5\x4d\xc2\x0c\xa4\xb4\x71\xb3\xd3\x95\x8f\xe8\x09\xde\x6d\x41\x5c\xae\x90\x42\x8b\x44\x64\x7d\xd8\x2a\x97\x8e\x16\x9c\x7b\xf4\xd5\x56\x1e\xf2\x3f\xbf\xbd\x1c\x91\xeb\xb3\xcb\x11\x11\x92\x5c\x9d\x85\x01\xa0\x9a\x26\x98\x83\xeb\xb3\xcb\x83\x17\x5d\x01\xe2\x55\x29\xf4\x66\x77\xe8\xa4\xe5\xf6\x31\x7a\xda\x38\xa7\xc5\xf8\x06\x56\x1d\xa5\xbb\x18\x12\xe6\xb8\xda\x58\x51\x5e\xc8\x4e\x73\x4e\x8b\xbd\x7b\x93\x40\x53\xd6\xeb\x34\x26\x3e\xb0\xaf\xa2\x34\x5e\x3e\x93\x5c\x2c\x21\xb5\x5a\xb3\x1f\x05\x78\x5a\x08\x66\x74\xa4\x21\xc9\xc9\x43\x6d\x48\x72\xf2\x48\x1b\x92\x9c\x6c\x6b\x43\x92\x93\x3d\xda\x90\xe4\xc4\xb6\x21\xc9\x49\x9b\x90\x21\xc9\xc9\x90\xe4\x64\x48\x72\xb2\x73\xfb\x0a\x60\xa5\x43\x92\x93\xed\x6d\x48\x72\x32\x24\x39\x19\x92\x9c\x0c\x49\x4e\xea\xd6\x3b\x10\xff\x90\xe4\xe4\xa1\x36\x24\x39\xd9\xda\x7a\xa3\x70\x0c\x49\x4e\xee\x69\x43\x92\x93\x7b\xda\x90\xe4\x64\x48\x72\x32\x24\x39\xd9\xb3\x7d\x7d\x21\x77\x43\x92\x93\xbd\xda\x10\x72\xb7\x67\x1b\x92\x9c\x0c\x49\x4e\xd6\xdb\x90\xe4\xe4\xd1\xd6\x0f\x1b\xf4\x90\xe4\x64\x48\x72\xf2\x60\x1b\x92\x9c\x0c\x49\x4e\x1e\x6c\x43\x92\x93\xaf\xc5\x3e\x3a\x24\x39\x19\x92\x9c\x3c\x34\xc6\xa0\x71\xed\xd7\x86\x24\x27\x43\x92\x93\x8d\x36\x24\x39\xd9\x6c\x43\x92\x93\x21\xc9\xc9\x90\xe4\x64\x48\x72\x52\xb5\x21\xc9\xc9\xd7\x6e\x7b\x92\xa0\xd8\x3f\xe1\x52\x64\x2c\x59\x05\x87\xba\x7c\x02\x25\x4a\x99\x98\x1b\x1b\xbb\x25\x05\xf6\x5b\x59\x15\x82\x84\xec\x9e\xe5\x0f\xf8\xd4\x98\xb8\x66\x1e\x01\xe9\xe6\xe0\x29\xa6\xa0\x17\xb9\x04\xfc\x0b\x5e\x74\x77\xf6\x8f\x7d\xe1\x64\x3b\x7d\xdd\x0c\xa6\xc1\x5a\x7b\xf3\x45\xfa\x10\xcb\xd8\xcc\xf9\x53\xed\x22\x2d\x2a\x66\xcb\xee\xdd\x5c\xb4\x28\x32\x16\x12\x15\x4a\xc8\x55\x89\xd2\x05\x38\x6f\xb5\x7a\x43\x92\xa2\x1c\x91\x1c\x72\x21\x03\x02\x05\x22\x68\x70\xad\xad\xd2\x87\x75\xfa\x64\x09\xf2\x93\xaf\x05\xce\xff\xca\xea\x0b\x75\x8a\xa6\x6a\xad\x98\x67\x87\x41\xb0\xb0\xf3\xd9\x3a\xdc\x93\xe9\x96\x15\xe8\x42\xe8\x4f\xee\x70\xbf\xd8\x7a\xdd\x17\x86\x49\xb5\xc8\x59\xd2\xe5\x72\xb2\xf7\xc9\x4b\x05\x61\x9e\x89\xbc\x28\x35\xb4\x2e\x36\x3b\xc5\x56\xe9\x60\x2a\x94\xa1\xbf\x4c\x28\x64\x22\xf8\x8c\xcd\x9d\xf6\x7d\x92\x53\x4e\xe7\x30\xae\x66\x7b\x5c\xe7\x39\x38\xe9\x7c\x51\xbf\x58\x1c\x64\x92\x51\xd6\x1d\xe3\x17\x8b\x4d\x9c\x21\x15\x98\x03\xab\xc6\xac\x63\xac\x56\x35\xcd\xa3\x0a\x98\xcd\x2c\xdf\x98\xf8\xaf\xec\x8f\x47\x01\xda\x23\xd5\x68\xab\x40\xc5\x68\xcb\x4e\xed\x8e\x40\xaf\x34\x46\x4e\x68\x56\x2c\x1e\xd6\x19\x43\x62\x10\xdf\xae\x38\xcd\x59\xe2\x4f\xde\x69\x96\x89\xc4\xda\x6a\xda\xda\x66\xe0\xab\x58\xf2\xcd\x3b\xe5\x79\xa9\xe9\x34\x83\x09\x39\xb7\x89\x1b\x04\xcf\x56\xe6\x60\x2a\xd0\x1e\xbf\xe0\x4e\x45\x98\x8a\x19\x82\x61\x0d\xc4\xaf\x6e\x95\xd6\x71\xb7\xd9\x4c\x13\xc0\x0d\x8f\x13\x1c\x08\x70\x2d\x57\x66\x63\x5e\x8a\xf4\xca\xec\xcd\xd6\xd3\xc1\x09\x28\x02\x61\xab\x31\x20\xab\x81\x70\xd5\x38\x20\xd3\x70\x80\x69\x5c\x70\x69\xed\x5b\xb0\xf9\x73\x9a\xd1\x36\xad\x6d\x51\x88\x74\xb2\x85\x67\x11\x31\x0b\xa4\xc0\x8c\x78\x29\x52\x23\x4d\x49\xb0\x8c\xab\x3a\xa3\xd6\xb2\x78\x6e\x88\xbb\x41\x53\x20\xd5\xb5\x98\x45\x97\x94\x65\xe6\x00\x07\x12\xb0\x99\x8b\x30\xcc\x5d\x13\x41\x04\x8e\x9d\xae\x83\x84\x6e\xff\x98\xe9\x36\x08\xa6\x8a\xcc\x59\xb7\xc4\x9c\x24\xe2\x11\x78\x8f\x54\x34\x80\xfc\x66\x2f\xe6\xf4\x0e\x2d\x50\x34\x17\x25\xd7\x36\x0f\x87\x15\x0a\xab\x8b\xdc\x86\x3b\x3c\x23\x2c\xea\x49\xc5\x37\x12\x87\x49\xd3\xd4\x47\xe3\x5f\xc6\x88\xf6\xa4\x5a\x83\xe4\x6f\xc8\xff\x3a\xfa\xdb\x6f\x7e\x1e\x1f\xff\xe9\xe8\xe8\xc7\x57\xe3\x7f\xff\xfb\x6f\x8e\xfe\x36\xc1\x7f\xfc\xeb\xf1\x9f\x8e\x7f\xf6\x7f\xfc\xe6\xf8\xf8\xe8\xe8\xc7\x1f\x3e\x7c\x77\x7d\xf9\xee\xef\xec\xf8\xe7\x1f\x79\x99\xdf\xd8\xbf\x7e\x3e\xfa\x11\xde\xfd\x7d\xc7\x4e\x8e\x8f\xff\xf4\x4d\x77\x07\x53\xa8\x37\x35\x9e\x2f\x35\x92\x27\xf5\x49\xfc\xa8\x2e\x70\xe8\xc5\x0f\xbf\x8b\x0f\xdd\x38\xfe\xce\x00\xfd\xd0\xf1\x97\xc1\x6a\xf7\xf9\xac\x1e\x9f\x29\x22\x72\xa6\x35\xa4\x28\x75\xd2\x66\xba\x8f\x35\x95\xdf\x31\x2c\x4c\xcb\x43\xb5\xf9\x65\x23\xed\x44\x6d\x29\xe8\x4c\x96\xf0\x3e\x3c\x34\x72\x70\xc2\xf2\x22\x83\x1c\xb8\x46\xc6\x33\xf6\xea\x0b\x5a\x8c\x26\xf5\x1b\x24\x56\xa7\x85\xbb\x04\x20\x75\x44\x0e\xbc\xb1\xd1\x06\xde\x38\xf0\xc6\xc7\x5a\xb0\xd9\x33\x06\x63\xfc\xd4\x24\xc2\x99\x2b\x94\x37\x50\xa3\x11\xb4\x8a\x33\x17\x33\xf4\x85\x2f\x59\x5a\xd2\xac\x99\x29\xd3\x27\x4f\xec\xc6\x01\x1a\x4a\x7a\x4e\x57\x1b\x3a\x39\xe3\xac\x99\x96\x73\x54\x21\x38\xf0\x41\x27\x97\xd5\xde\xc3\x83\xd3\xec\x96\xae\x54\xc7\xec\x7d\xdf\x0a\x89\xa0\x80\xb5\x41\x89\x90\x1e\x2b\xd2\x54\x56\xda\xd6\xda\x6e\xde\x9e\x6d\x13\xdd\x0e\xe8\x77\xea\xd2\xa1\xaa\x1e\xf4\x3e\x01\x37\x11\x35\xca\xdf\xec\xf3\x6e\x2f\x7e\x05\x5a\x3b\x7b\xce\xda\x96\xa0\xf5\x9c\x56\x2e\xae\xf6\xf4\x58\x58\x08\xe6\xcc\x34\x5f\xce\x84\x59\x13\xcc\x36\x3f\x9b\x41\xd2\x11\x2b\x68\x13\x20\x6c\x19\xc7\xc2\x95\x35\xe3\x25\xcd\xb2\x95\x9f\x13\x48\x89\xe0\x9d\x06\x82\x3b\xa6\x49\xc9\x35\xcb\xcc\x66\x22\x12\xe6\x65\x46\x9b\xa6\x20\xf7\x66\x1e\x41\x95\x4e\xc8\x47\x6e\x94\xd1\xfa\xe1\x6e\x46\xcc\xb5\x01\x8c\xd0\x91\x81\x86\x74\x84\x5d\xaf\xef\x40\xc4\x20\xb5\x38\x46\xb5\x2c\x9d\x86\xf7\x73\x59\x61\x4c\x26\xf6\x20\x56\x0e\x70\x92\xb2\xd9\xcc\x8c\x8c\x99\x02\xb9\x90\x39\xdd\xa4\x8a\xf2\xb4\xd3\xe8\x46\x02\xc2\xe8\x83\x66\xf6\x53\xac\x78\x71\x60\x54\xf3\x84\xca\x83\x66\xad\x84\xd3\x4c\x2f\x44\x39\x5f\xd4\xbb\x22\x6c\xca\x89\xd2\x88\xbc\x31\x93\xa9\x3c\xe6\x6c\x6d\xb3\x29\x23\xeb\xf0\x04\xac\x48\x26\xc0\x1e\xf7\x5b\xda\x71\xec\x0d\xef\xb0\x85\xfb\xda\x35\xf7\x21\x39\x08\xef\x82\xb4\x11\x3f\xc5\xe1\x4e\x47\x78\xe1\x09\x39\xb7\x69\x0b\x46\xed\x5e\x5b\x53\x62\x27\xa3\x01\x6f\xf2\x40\xbd\x8e\xd8\xae\xb5\x01\x58\x15\x81\x84\xf9\x5a\x6d\xe7\x94\xaf\x3c\xe0\x1f\xe1\x47\x36\x50\xa9\x8a\x41\xc8\xba\x59\x51\xab\xb3\xf4\xec\xe5\x47\x14\x24\xa5\x64\x7a\x75\x26\xb8\x86\xbb\x4e\xbc\x2f\xc6\xad\x7e\xd5\x26\xa3\x75\xaf\x7b\x12\x89\x28\x6c\xde\xbc\xb5\x0a\x34\x0b\x51\x66\x29\xa6\x0a\x2d\x39\xb2\x9d\x6e\x37\xca\xf9\xcc\x5c\xe1\x76\xbf\xe1\x8d\x89\xae\x91\x75\xc2\x3c\xea\xcf\x82\x1f\xff\xbb\x64\x4b\x9a\x01\xd7\x8d\x5f\x5c\x22\x0e\xac\xf9\xa3\xa7\xf4\x9f\x69\xaa\x6e\x6a\x0d\x03\xc6\x85\x48\x6b\x85\xe2\xc4\x4f\x1d\x7e\x04\x77\xfa\x0b\xf4\x9d\xa1\xc0\x74\x29\xd9\x92\x65\x30\x87\x77\x2a\xa1\x19\xea\x51\x2f\xad\x9c\x9f\xde\x43\x17\xee\x4c\x29\x32\x65\x04\x30\xa3\xac\x1a\x51\xd3\xa2\x60\xd1\x85\x33\xa7\x8c\x63\xf9\x94\x00\x33\xbf\x1b\x54\x59\x18\xae\xd1\xb7\x0b\x2a\xcd\x2e\xf4\x70\x5b\x7b\x35\x4e\x85\xc8\x5c\x0a\xce\x6c\x55\xd3\xc5\xba\xdb\xc3\x91\x17\x8b\x9f\x38\xdc\xfe\x64\xa8\x50\x64\x96\xd1\x79\x7d\x35\x83\xde\x88\x5d\x08\x47\x00\xdf\x3b\xd1\x98\x5f\xb2\x34\x82\x8d\x91\x2a\x6a\x6c\x74\x93\x83\x77\x57\xe8\x5e\x1f\x23\x3f\xa1\x8a\x54\x63\x77\x13\x1d\x4c\xfb\xed\x31\xde\x13\x67\xa7\x97\x3f\x5d\xfd\xf5\xea\xa7\xd3\xb7\x1f\xce\x2f\xba\x23\x20\x85\x06\x6b\x5d\x69\x48\xf7\x49\xe5\xb4\x37\xab\x50\xe1\x3e\x26\x42\x4d\xd0\x59\x82\x39\x34\x78\x2a\x6e\x03\x3d\x85\x66\x4f\x01\xed\x26\xb9\x26\xb4\xa0\x53\x96\xb1\x10\xdb\x42\xac\xe3\x8b\x59\x61\x1b\xf4\xa0\x3c\x97\xa6\x27\xa9\x14\x85\x9d\x3e\x8f\xf0\x0f\xf7\xb1\xb6\x91\xa4\xcd\x94\x68\x78\x62\x66\x6d\x42\xe6\x92\x72\x5d\x6b\x52\xf5\x6e\x96\x46\xe8\x0f\xc9\xa9\xf2\xa2\x1b\xe7\xc5\x73\x2c\xd3\x34\x5e\x7e\xe5\xd3\x34\x85\xb4\xb5\x6c\x01\x3d\xf7\x33\x8d\xd4\x99\x7f\xb9\x06\x94\x94\x5c\x7e\xbc\x3a\xff\xff\xd6\xce\xcd\xaa\x08\x73\x6f\xc6\x29\x3e\x20\x45\x11\x6d\x75\x3f\xb9\x94\xf3\xc3\xfa\xf6\x62\x7d\x2b\x79\xe7\xc5\x03\xd5\x3f\x95\xbc\x5d\x9d\xb2\x26\x8d\xe4\x22\x0d\x60\xcd\x97\x55\x3c\x57\xbb\xd7\xa6\xe9\x42\x02\x31\x8f\x70\xcd\xd0\x90\xd4\x50\x3e\xb4\xb0\xf9\xd0\xa3\xd4\x51\x6a\xde\x55\x33\x9a\xa9\x2f\xf5\xc2\x09\x91\x54\x8c\xd0\xfa\x41\x94\x3c\x4e\xe4\x7b\xc0\x8e\xab\x08\x21\x29\x70\xa1\x9d\x46\x6c\x5e\x10\xcb\x68\x49\x91\x10\xeb\x05\x6c\x24\xb5\x69\x49\x0d\x01\x42\xcb\x75\x43\x50\x61\xca\xef\x8b\xcb\x8a\x22\x0b\x02\x2f\x15\xac\x6b\xe4\x4e\x50\xa9\xfd\x82\x33\xd1\xdd\x1d\x22\x81\xa6\x68\x39\x2f\xa8\x5e\xd8\x84\x0b\x39\x55\x37\x90\xda\x0f\x02\x03\xcd\x2a\x80\x20\x1a\xad\xfd\xab\x5d\x9b\xf9\xf5\x98\x3e\x54\x71\x6c\xda\x09\x44\x11\x86\x38\x55\x5f\xf4\x40\x04\xb0\x60\xb3\x08\x1f\x79\xb6\xfa\x24\x84\xfe\xb6\xaa\xad\xf0\xd2\x87\xe3\x2f\x4e\xc1\x6e\x43\x49\x51\xd3\xa2\x48\xf2\x18\x37\x0e\xb2\xc6\x46\x45\x88\x50\xce\x68\x16\xe4\x97\xca\x18\x65\xc9\x4f\xd5\x77\x52\x94\x9d\xa5\xad\x98\x0a\xdc\x77\xe7\x6f\xf1\xee\x2b\x5d\x2c\x32\xd7\x72\x85\x75\x81\x36\xeb\x54\x07\x9b\x21\xfe\xec\xa2\xbe\x9b\x9c\x2d\x38\xc0\x93\x90\x0f\x74\x45\x68\xa6\x84\x5f\x76\x07\x6f\x5d\x33\x20\x7a\xeb\xa4\xf9\x7a\x2a\xf4\x62\xc3\x2c\xd9\xd5\xaf\x61\xda\xe6\x78\xa3\x46\x48\x73\x1d\x3d\xc2\xf8\xc6\xb0\x1a\x41\x8f\x85\x84\x04\x52\xe0\xc9\x97\x7a\x22\x5e\x3a\xc2\x16\x4f\xd5\x85\xe0\x86\xbd\xbe\xf4\xb9\x3a\xaf\xa2\xc7\xdd\x6a\x34\x4f\x11\xc2\x70\x9d\x59\x8c\xa2\xe3\x19\x99\x6b\xa9\x42\x10\xa9\xe7\x33\xb4\xe3\xd9\x4d\xf7\x43\x39\x85\xcc\x2c\x36\xcb\x32\x5b\xb3\x93\x6a\x6b\x6c\x67\x39\x9d\x03\xa1\xba\x3a\x84\x5a\x10\xe0\xaa\x94\x6e\xdf\x74\x74\x39\x99\x56\x79\xcb\xdc\xab\xfd\xf9\xfc\x2d\x79\x45\x8e\xcc\xbb\x1d\xa3\xc4\x31\xa3\x2c\xc3\x00\x77\x74\x67\xaf\x19\x19\x67\xde\xe1\x16\x34\x05\xc8\x47\x88\x90\xf6\x6a\x19\x11\x2e\x88\x2a\x93\x85\x9f\x03\x26\x78\x65\x67\x75\x19\xcf\x82\xd0\x9d\x03\xdb\x89\x77\x1f\xfe\x59\x81\x7c\xe9\x63\x6b\xae\xc3\x3f\x3f\xe3\x75\xd8\xd4\x12\xcd\xf1\x6f\x2f\x98\x3d\xab\x39\x68\x9a\x52\x4d\xdd\x35\xe9\x1f\x18\x76\xed\x70\x59\x06\x5c\x96\x0a\xde\x33\x5e\xde\xd9\x7c\x42\xbd\xf0\x23\x5c\xbd\x43\x8a\x48\xe2\x17\x1a\x37\xa8\x8d\x80\x4e\xbd\xc9\x3f\x42\xe8\xc6\x79\xeb\x18\x8d\xee\xd1\xba\xf1\x96\xa0\x36\x36\x0d\x8c\x22\x44\x79\x2a\xf2\x0d\x22\x67\x42\x12\x08\x29\x47\xdc\xc0\x6a\x0c\x07\xd3\xb5\x5f\xb6\x87\x25\x83\x25\x04\x94\x60\x5e\x3b\x94\xef\x4d\x6f\x66\x72\xfc\xce\xc5\xee\x49\x46\xa7\x90\xb9\x70\x52\x9b\x63\x20\xe2\x09\x8b\xe4\x8d\x90\x22\x8b\x97\xf4\xfa\x93\xc8\xc0\x26\x44\xf2\x13\x61\xba\xff\x22\xe6\x01\x3b\x89\x35\x0f\x68\x94\x6b\xcd\x03\x9a\x41\xbf\x84\x79\x28\x03\x04\x44\xb2\x3e\x0f\x46\xda\x6c\xcf\x03\xca\x5f\x7d\x9f\x07\x05\x49\x22\xf2\xe2\x52\x8a\x19\xeb\x7e\x3a\x62\x5e\xdb\x8e\xa2\x1a\x56\x66\x4d\xe8\x9b\xb1\xe9\xf6\xda\x6a\x3f\x4c\x83\x00\x3c\x2e\x4b\x1c\xd5\xf6\x1e\xf4\xa9\xe2\xfe\xaf\xc6\x75\x8e\xdc\x6e\xfd\x8e\x77\xa3\x77\x1e\xb9\x85\x5e\x33\x23\xba\x0e\x7f\x89\x37\x5e\x8c\x14\xbf\x01\xce\xd1\x28\x17\xae\x48\x68\xb6\x10\x4a\x07\x9e\x2a\x12\x39\x68\x7b\x9d\xae\x46\x4a\x42\x04\xc3\xe1\x67\x8d\x4c\x13\x14\xcd\xf3\xde\x7d\xc9\x45\x0a\x0d\x54\x27\x46\x58\x07\x91\x73\x6d\x93\xc2\xe1\x18\x3e\x93\xa2\x91\xf6\x3c\x68\x32\x6d\x8d\xac\x85\xad\xc3\x1c\x34\xa4\x4f\x17\x4e\x71\x5e\x81\x23\x44\xba\xa0\x7a\x31\x22\x12\x32\x9b\xbf\xd1\xb1\xe7\x1b\x6b\xf1\x3a\x44\x8e\xe3\x09\xf2\xec\xc6\x93\xed\x33\x4d\xc4\xa1\x0a\x65\xf0\x99\xbd\x3f\x99\x22\x07\xef\xfd\x7a\x1d\xb8\x44\xe7\x17\x1f\xaf\x9b\x21\x2d\x94\xaf\x6c\xe0\x5d\x40\xc0\x86\x6d\xfd\x13\x2b\x02\xb7\xba\x9d\xc3\x6a\x7b\x5b\x9f\xe8\x0d\xe3\xa9\xcb\x50\xd8\x5a\x45\x6f\xc0\x73\xaa\x61\xd8\x62\x7e\xa6\x19\x4b\x9b\xf7\xd1\x9b\xc0\x2a\x9e\xd5\x2e\x20\xe3\x17\x39\xa6\x9f\xac\x02\xeb\xbd\x6c\xe3\x87\xbd\xca\x15\x81\x31\x49\xf8\x33\xc7\x33\x68\xde\x77\x4c\xb8\xd8\x32\x46\x84\xa5\x0b\x3e\x03\xee\xee\xec\x91\x05\xe4\x2f\x96\x22\xaf\x66\x27\x86\x73\x68\xc6\xe7\xaa\x69\x05\xa1\x59\x16\x05\x97\xb0\xcd\x0c\xe2\x8f\x01\xc6\xfe\xb8\x00\xb4\x75\x35\xbf\x95\x0c\x38\x64\xf4\x47\x4c\x18\x5f\xb6\x29\x22\x33\x2a\xc5\x17\x6e\x88\x98\xe7\x8a\x9e\x49\x33\x83\x9a\xd1\xec\xaa\x80\xce\xb5\xd4\x49\xe4\xeb\xe2\xbb\x0f\x57\xa7\x6d\xca\x50\x18\x76\x89\x65\x00\xbf\x27\x34\xcd\x99\x52\xe8\xf1\x81\xe9\x42\x88\x9b\xa0\x21\x8f\xb6\x54\x87\x6e\x04\x06\x2b\x36\x57\x27\x8e\xa3\x8c\xcd\xc4\x1d\x13\xc6\xb3\x2a\xf8\x06\xcd\x85\x5c\x2b\xe7\x42\x08\x7e\x79\x92\x54\x6f\x8f\x5b\x0f\x53\xbe\x54\x60\xe7\xcd\xe9\xc1\xec\x3f\xb8\x79\x5f\x5c\xec\xd8\xdc\x55\x61\x69\x3a\xd7\x2b\xf5\x6f\x7f\xf7\x2d\xf5\xc5\xb7\xce\xa3\xd5\x5e\x5f\x7c\x92\x9c\xd4\x9f\x80\x8a\x57\xe5\x37\x42\x71\x66\x47\x12\x49\xc1\xc6\xc5\x02\xa6\xa8\xa0\xf7\x86\x91\xa1\x7f\xfb\x10\x4b\x9d\xb8\x9f\x1e\xc6\x4a\xbe\x74\x9a\x65\x66\x21\xa9\x8b\x91\x6e\x20\x3c\x51\x37\xa9\xc2\x92\xb1\x3e\xa9\x8d\x48\x36\xda\x42\xf3\x2d\xc2\xab\x77\x1e\x31\xed\x03\xc2\x7d\x44\xba\x16\x76\x6c\x4a\x72\x76\x67\x28\x6c\x8e\xd8\x0e\xa1\x45\xcf\xff\xf6\xaf\x03\x32\xbf\x13\x44\x1f\x54\x99\x28\x46\x66\x85\x9a\x83\xf8\x78\x1f\x6d\xae\x2d\xf3\xc5\x05\x68\xa3\xa9\xd9\x79\x6b\xba\x1f\x8c\x66\x25\xcb\x08\x87\x21\xc4\x35\x4c\x9a\xee\xe1\xa8\x9c\x22\xf0\x3c\xa0\xab\xd8\xd1\x64\x64\x10\x2f\xbc\x3d\x97\xeb\x98\x6c\x09\x88\x79\x36\x17\x32\xd9\xdd\x8d\xfc\x84\xce\x2a\xd2\x17\x87\x55\x68\xf4\x70\x23\x12\xfa\xc5\x42\x87\x9b\xd1\xd8\x6c\x13\xbd\x74\x29\xd2\x8d\x20\x6d\x5f\x17\xb3\x7b\x06\x64\xb3\x39\x6a\x15\x84\x0b\x67\x1f\x69\x94\xa6\x84\x3b\x48\x4a\x0d\xa9\xcb\xd5\xe0\x6c\xca\x36\xce\xbb\x4d\x4d\x67\x0a\xb0\xcf\xba\x20\x8e\x1a\xd5\xa9\x0a\x9d\xae\x53\x65\x9b\x18\x91\xff\x42\x2e\xe9\x52\x33\xd5\xd5\x34\x2f\xab\x9f\x77\x9d\x0a\x04\x52\x27\x94\x57\x15\xe5\xb5\xf0\x26\x6e\x97\x93\xc1\x85\xa6\x4e\x81\x14\x54\xd2\xdc\xdc\xc1\x8a\xb8\xe5\x99\xc2\x9c\xd9\x40\xbb\xc6\xa5\x58\x25\x75\xe8\x96\xa4\x04\x15\x1b\xa6\x49\xce\xe6\x0b\x7b\x5a\x08\xc5\xca\x35\xc4\x03\xc7\x32\x41\x53\x82\x8c\x45\x48\x72\x4b\x65\x6e\x64\x01\x9a\x2c\x10\x85\x46\x39\x49\x4b\x73\x1e\x08\xa6\x20\x58\x8d\x95\xa6\xda\xe8\x98\x20\x03\x8c\x70\x7e\x9a\x5e\x20\xb7\xf2\x53\xd7\x8d\x78\xe1\x10\x71\x73\xd2\xa2\x58\x41\xde\xdd\x41\xd2\xa8\x4e\x68\xb6\xa7\x2b\x4f\x68\xae\x29\x7a\x13\x08\x34\x7b\x71\xbd\x38\x11\x79\x4e\x79\xbc\x30\xc8\x40\x41\xe4\xcc\x92\xe3\x55\x1c\x47\x1d\x31\xca\x27\x82\x3b\x2d\x03\xf5\xd9\x4f\x5b\x52\x88\xe5\x74\x66\x5f\x9b\x63\x6a\x63\xdc\x85\xac\x6a\x5a\x04\x91\xe5\xe9\xc0\x2c\xf9\x42\x68\x72\x74\x78\x72\x78\xec\xb3\xae\x54\x24\x1c\xaa\x66\x50\x81\x0d\x28\xae\x5f\x48\xb1\xbc\xc8\x56\xf8\x0e\x87\x36\x31\x7e\x40\xc1\x29\xd3\x3c\x3c\xb5\xca\x05\xab\x16\x90\x65\x23\xa2\x8c\xac\x4b\x7d\xf2\x36\xfb\xa9\x79\x48\xcb\x32\xb1\x36\xb1\xa3\xc3\x9f\x0f\x47\x04\x74\x72\x4c\x6e\x05\x3f\xd4\xd6\xbd\x41\xae\x51\x61\x0c\xa2\xa9\x22\x62\x25\x4a\xac\xdd\x66\x97\xad\xca\xf7\x97\x50\xa3\xeb\x94\x56\x20\x37\xf7\x31\x3e\x1e\x26\xbc\xbd\xbb\x63\xda\xc8\x1d\xba\x44\x9b\xc4\x2b\xab\x16\x80\xe1\xa5\xe6\x76\x33\xd7\xda\xc9\x02\x68\xa6\x17\xab\x4a\x55\xb1\x65\xb1\x14\x29\xb9\xfb\x26\x5c\x60\xea\x41\x38\x67\xb0\xbe\xee\x8a\xe8\xf5\xba\x0e\xb0\xa3\xf1\xd1\x32\xc0\x56\x80\x69\x97\x00\x46\x19\x0b\xd2\x58\x55\x80\x7f\xf7\xf5\x55\xf8\x9d\xcb\x22\xce\xcd\xf9\xdd\xa7\xcb\xb3\x47\xeb\xfa\xe2\x43\x43\x61\xdf\xe0\xe4\x9a\x31\xeb\xd9\x5e\x0a\xa9\x09\xaf\x6a\xaa\x99\x13\x36\xc7\xb5\x04\xb9\x64\x09\x4c\x9e\xa1\x7c\x6c\xac\xb4\x99\xe1\xc7\x81\x20\x4e\x09\x5f\xbc\x2f\x32\xd2\x95\x25\x67\x9b\x19\xd8\x51\x8a\xea\x56\x46\x93\x6a\x6d\x70\xfd\xbe\xc7\x8b\xee\x6c\x01\xc9\x8d\x4b\x82\x1b\x66\x2f\x54\x00\x64\x8b\x23\xc1\x30\x10\xfb\x7f\xd3\x4c\x4c\x4f\x72\xaa\x34\x48\xa3\x7d\xb8\x3b\x78\x9c\x18\x0a\x18\x9f\x4f\xf2\xf4\x38\xa4\x32\x06\x69\x68\xbc\x1b\x99\x2c\x5b\x39\x55\xee\xc9\x4a\x69\x66\xe5\x45\xad\xe3\x66\xf6\xbe\x8b\x54\x4b\xfd\xfb\xeb\xeb\xcb\xef\x5a\x95\xd4\x31\xee\x5f\xeb\xc2\x27\xaf\xc6\x5d\x61\xe3\x84\x06\x6e\xdb\x9b\x32\xea\x11\x3c\x19\xfb\x94\x5e\x27\x7f\x15\x25\x0a\x4c\x74\x9a\xad\xc8\x2d\xb5\x79\x02\x14\x84\xf1\x82\x03\x43\xc6\x81\xe1\x36\x66\xc3\x7d\x0f\x34\xb5\x39\x75\xd1\x58\xf2\xf2\x0e\xa8\x9a\xa6\x68\xcb\x76\x56\x2a\x2d\x72\xb2\x70\xaf\x6a\xe7\xb0\xba\x0a\xed\x81\x9b\xe0\xa1\xb4\xde\x14\x45\x24\x14\x56\x25\x71\xbf\xf9\x2a\x14\x8e\x0d\x16\x64\xe7\xb9\x91\x9e\x9e\x92\xa4\x39\x55\x4e\x4c\xb7\xb5\x70\xb9\x9d\xa0\xa0\xe2\xa4\xb6\x45\xa9\xd7\x43\x22\xd5\xec\x21\xe1\x75\x7b\x7c\x27\xe1\x6e\xbd\x38\x15\x80\x48\x94\x2a\x40\x24\x7a\x25\x20\xe2\x9c\x57\x6e\x73\x59\x48\x8b\x21\x34\xcc\xa2\xe0\x3b\x66\x75\xbd\xf0\x84\x72\xc1\x59\x62\x1d\x04\xb6\xee\xbc\x28\x75\x51\x6a\xb4\xb7\x24\x54\xc1\x78\x49\x25\x33\x0c\xd5\x16\x51\xab\xb0\x45\xdc\x9c\x76\x2d\x04\x1a\x23\x2a\x37\xae\xa5\x38\x9c\xcc\x28\x1c\xd2\x36\xdc\x6c\x91\x57\x78\x63\x71\xc2\x77\x34\x89\xf5\xd6\x05\xd5\x8b\x78\x5a\x13\xd5\x0b\x84\xb4\xa1\x13\xc7\x23\x22\x91\xbf\x19\xa9\xbc\x07\x21\x27\x51\x95\xc4\xc0\x93\x6b\xab\xc8\xca\x35\x35\xd3\x50\xb8\x39\x87\x91\x40\x16\x4f\xaf\xb5\x36\x0b\x93\x4d\x81\x50\x4e\xce\x4f\x2f\x4e\x7f\xba\xfa\x7c\xf6\xd3\xc5\xe9\x87\x77\x21\x5d\x07\x97\xa2\x88\x59\x8c\x22\x5a\x39\x8a\x27\x2a\xd6\x63\x9a\x4a\x16\xd0\x1f\x7c\xc5\x15\x52\xd3\xcc\xc8\xe5\x44\xf5\x46\x9a\xf4\xb0\x14\x6d\x64\xcd\x32\x69\x18\xcf\x8b\x72\x1c\xe7\x4e\x7f\x0b\x19\x5d\x5d\xd9\xb2\xfc\x2f\x6d\x4c\xbe\xa8\x98\x8d\x2d\xdc\xaf\xaa\xec\xf0\xb0\x96\x2b\xca\xd7\x63\x70\x39\xed\xbd\x63\xbc\xe9\xcb\xb7\xef\xd7\xd9\x5d\x4b\xfa\xe7\xb2\x25\xbd\xb1\x41\x17\x20\x19\x42\x61\xfa\xb0\x6b\xbe\x17\xb7\xae\xd0\xc3\x11\xe3\x7e\xe7\x1c\x37\x8c\x29\xb5\x0f\x22\x3c\x8f\x98\x16\xe4\xf5\x2b\x3f\xc8\xd7\xe7\x5c\x70\x10\x97\x5e\xbb\x97\x1c\x8d\x8f\xfb\x97\x6a\xbc\x4e\xdb\xc7\x14\x02\x9c\x21\x6b\x6c\xfc\xf5\xa4\x8a\xd0\x7a\x8d\xf4\x54\xac\x88\xf2\xd4\x63\xad\xbe\xbe\x7d\xa2\x93\xe2\x4a\x24\x37\x91\x4c\xa3\xd7\x67\x97\xb6\xb7\x47\xdd\x51\xd7\x67\x97\x83\x37\xaa\x5f\xf6\xd1\x43\x1b\xd3\x44\xb3\x37\x7b\xdb\x3a\x0f\x07\x8d\xab\x6e\x5e\xf8\x91\x2d\x87\xd1\xa0\x71\xdd\xd7\x06\x8d\x6b\x8f\xe6\x2b\x8b\x31\xc1\xbf\x93\x34\x81\xcb\x3e\x09\x70\x9e\x81\x90\xd4\xd5\xdb\x24\xb5\x1c\x57\xb1\x0b\x0e\x90\x5a\xfe\xe1\x8b\xa4\x91\xb9\x79\x13\x8b\x0d\x46\x73\x5f\x8d\xaa\x2d\x65\x80\xa8\x77\xbd\x70\x5d\x3b\x31\xd7\xfb\x71\xb7\x51\x57\xeb\x27\x45\x95\x0d\xdc\x17\xa1\x70\xc7\xc9\x10\x6f\xf4\x11\x05\xbc\xbb\xe5\x9b\x36\x57\x90\x28\x36\x37\xd3\xe5\x6b\xf3\xd9\x14\x52\xbe\x94\x4a\x4d\x88\x19\x75\x26\x64\xc2\xa6\xd9\x8a\x2c\x68\x66\x14\x26\x2c\xf1\x46\xc9\x0d\x96\x26\xc3\x6e\xba\x4f\xd4\x15\xb8\x40\x45\x2b\xd5\x64\x82\xcf\x71\x32\xa8\x0b\x48\xb8\x2b\x20\x31\x63\x26\x19\x50\x5e\x16\x96\x4e\x23\x23\xad\x44\x19\x21\x26\xc1\xbb\x96\x2b\x99\x8a\x33\x97\x7c\xa3\x40\x40\xf2\x83\x7b\xbe\x1d\x59\x4a\x3e\xfa\x12\xb5\xa3\xee\xa5\xc8\x88\xb7\xd0\x56\x29\x3b\x54\x23\x38\xa0\x4a\x20\xe2\xc2\xe6\xcc\xb6\xc0\x38\xce\xce\x63\x7d\xc6\x7e\x3d\x6b\xe5\x82\x8f\x39\xcc\x6d\x9a\x02\xc7\xd0\x2c\xc2\xd1\x8e\x6f\xf1\x74\x15\xd4\x5e\x69\x51\xb4\xea\xb0\x2d\x19\xed\x4c\x09\xa6\x44\xa8\x77\x14\x39\xe2\x82\x88\xc2\x5c\x5d\x25\x67\x7a\x85\xce\x37\x5f\x02\x30\x20\xd8\xe8\xda\x01\x09\x28\x99\x82\xa6\xce\x5c\x6d\x0e\x41\x95\x11\x1c\x93\x7d\x9b\xb3\x87\x08\xf9\xeb\xad\x1b\xa0\x4a\x12\x3e\xa7\x3a\x80\x4b\x6c\x91\xe8\xed\x7a\x3e\xbc\xed\x98\x72\xae\xb5\xc0\x2c\xc4\xfd\xc8\xeb\x67\x4e\xb4\x28\x75\x4f\xee\x91\xfb\xcc\x47\x36\xc1\x43\x43\x51\x64\x39\x28\x22\xca\x48\x05\x17\x5e\xbb\xe1\x62\x6a\x79\x83\xed\x69\x6b\x53\x3a\x65\x9d\xaa\xc8\xc5\xd8\x62\xf7\xa4\xae\x77\x41\xa8\x8d\xec\x8d\xd3\x72\x36\x03\x89\x37\x1d\x12\xbc\x01\x43\xaf\xca\x42\xf9\x3b\xac\x9b\x01\xd7\x41\xaa\x40\x8f\x30\x73\xbe\xcb\xa4\x70\xcf\x90\x2e\xc5\x24\x96\x5d\x93\xa0\x30\x13\x3a\x27\xef\x3e\x7e\xdb\x6d\x8b\xc6\xc8\xab\x1f\x16\xaf\x89\xef\xf9\x91\x77\x83\xfd\xc5\xdd\x0f\xdb\x52\x9e\xb8\x6d\x91\x64\x42\xb9\xd8\x60\x5c\x97\x64\x41\x39\x07\x6f\x90\x62\x1a\xad\xd9\x53\x00\x4e\x44\x01\x16\xf6\xd6\x89\x18\x4a\x14\xe3\xf3\x0c\x08\xd5\x9a\x26\x8b\x89\xa1\x8e\xfb\xbd\x50\x07\xe1\xba\x4f\x94\x96\x40\x73\xbb\x27\x24\xe4\x94\xd9\xe1\x09\x4d\xa4\x50\x8a\xe4\x65\xa6\x59\x51\x75\xd6\xcd\x92\x08\x98\x0e\x41\xd9\x98\x4c\xbf\x56\x18\x66\x51\x47\xfb\x8e\x6a\x0a\xdd\xeb\x0b\xbe\x5e\x2e\x76\x64\xbe\x85\xbc\xd0\xab\x2a\x2a\xaf\x9b\x0e\x34\x63\x52\x69\x92\x64\x0c\xb8\x76\x6f\x66\x13\xee\x21\x0d\x55\xcd\x6f\xee\x66\x44\xb9\x29\xe1\x29\x2a\xdf\x85\x56\x36\xf8\xac\x22\xc2\x77\x95\x32\xe5\x6c\x1d\xaa\x5b\xe8\x1b\xf5\x75\x59\xec\xc6\xf1\x33\x82\x5b\xc7\x0b\x38\x96\x22\xf7\x51\x83\x84\x66\xe5\xdb\x2a\x70\x30\x8c\xaf\x60\xf1\x14\x7f\xae\x47\xad\x80\xfb\x5a\xb7\xc0\xd0\x90\x0d\xae\x83\x1b\x8a\xc3\xd2\x9c\x03\x48\xc0\x88\xa2\x34\x22\x93\x79\x76\x1e\xd3\x90\xe5\x3e\x80\x52\x74\x0e\x97\x1d\x21\x09\x31\x18\x4e\x6d\x68\x43\x2c\x43\xbd\x6d\xb0\xfa\x6d\x66\xd3\xa0\x55\x9f\x34\x83\x9e\x9a\xca\x63\x6e\x5f\xa4\x13\x05\x5e\x69\xba\x95\x4c\x6b\xc0\x5d\x8a\xa5\x8c\x10\x2b\xb6\x9e\xba\xb2\x1d\x6c\xd5\x69\x3c\x37\xe9\xcd\xf1\x8c\xf8\xc1\x53\x1b\xb6\x34\x05\x32\x95\x0c\x66\x64\xc6\x30\x8e\x0a\x23\x8c\x46\x36\x07\x3f\xb5\x26\x64\xa5\x40\xe2\x6b\x3b\xb3\x80\x7f\xfd\x6e\xf4\xfc\xc5\xbd\xbf\x96\x25\x4f\x68\xa3\xe2\x23\x26\xd6\x62\x33\x32\xc7\xa8\x26\xa7\x04\xff\xfe\xd5\xbf\xff\x91\x4c\x57\x46\x5e\x43\x45\x4c\x0b\x4d\x33\x4f\x00\xc9\x80\xcf\xcd\x2a\x22\xcb\xed\xc6\x37\x5a\xc9\x99\xaa\xc5\xc9\x58\xce\xb4\x9d\xa0\xd7\xbf\xbd\x99\x06\x1d\x3d\xe4\x8f\x27\x29\x2c\x4f\x1a\x5b\x68\x9c\x89\x79\xb7\x5e\xcf\x62\x84\xd2\x06\xd9\xd9\xb6\x9c\x68\x2c\x74\xff\x52\x67\xda\x97\xee\x20\x0b\x71\x6b\x8d\x39\x9b\x47\xb5\x91\xe7\xa4\x10\x45\x99\xe1\xc4\x91\x6f\xab\xec\x74\xa5\x82\xf5\xbc\x3f\xa1\x46\xc2\x06\xb7\x43\x47\xaa\x1b\x76\xbd\x8c\xb7\x0d\xe9\xf3\x64\x0a\x97\x75\xc1\xf9\xdd\xaa\x2a\x1c\x9d\xad\x71\xdf\xd2\x2c\x9b\xd2\xe4\xe6\x5a\xbc\x17\x73\xf5\x91\xbf\x93\x52\xc8\xf6\x3b\x67\xd4\xdc\xe9\x8b\x92\xdf\x60\x51\xd6\x3a\x15\xab\x98\x3b\xf8\x9f\x0f\x9e\x6f\xbc\x5d\x27\x62\xfc\x5b\xda\xe4\x98\x5e\x24\xf1\x36\xb8\x7a\x64\xb8\x63\xb5\xa1\x8d\x13\x30\x34\x77\x8d\x3e\x87\xd6\x7b\xa8\xe6\xd1\xfe\xed\xab\xdf\xff\x9b\x65\x2e\x44\x48\xf2\x6f\xaf\x30\x04\x57\x8d\xec\x05\x80\x37\xb0\x11\xb5\x72\x9a\x65\x5d\xbd\x04\x4d\x16\x60\x36\xdb\x17\x7b\xe4\xf5\x8b\x9d\xee\x9d\x55\xc6\xeb\xeb\xbf\xa2\xbe\xc8\xb4\x82\x6c\x36\xb2\xa9\x4e\x2a\xb3\xd6\x21\x4a\x57\x87\xee\xca\xeb\x9e\x26\xe7\xe5\x95\xb6\xa5\xc8\xca\x1c\xde\xc2\x92\x25\xdd\x1c\x98\xad\x55\x69\xf5\xe6\xcd\xf4\x19\x53\x98\x01\x67\x9a\x89\xe4\x86\xa4\xee\xcb\x06\xaa\x7d\xbd\x48\x73\xf7\x59\xe8\x8a\xef\x0f\xc0\xf5\xdf\xfb\xfe\x2d\x44\x7f\x4e\x8b\xa2\x4a\xcf\x21\xe9\x6d\x6b\x32\x90\x35\x61\x6a\xd0\x40\x37\x62\xb0\x33\x3d\xd4\x95\x3e\x76\x6f\x64\xae\xa9\xce\x5d\x74\x0e\x03\x08\xf7\xc4\xd7\xd4\x77\xf7\x63\xb6\x36\x44\xdd\xa1\x3f\x0d\x05\xfe\xdb\xe6\x1f\xd8\x48\x0b\x55\xe5\xdb\xa9\x36\x86\x95\x20\xcd\xf6\xc1\x5b\xa6\xbb\xf9\x32\x82\x33\x34\x2c\x9c\xa1\x35\x2f\xbc\x72\x42\xe7\x54\x3b\xfd\xc8\x7b\xd9\x29\x29\x40\x2a\xa6\x8c\xe8\xf4\x19\x0f\xd4\x59\x46\x59\xde\x70\xdf\xbd\xcc\x24\xd8\xc3\x8d\xb5\x4d\xc3\x39\x65\xc7\xfb\xeb\x52\xa4\x8e\x0e\xe4\xa0\xb6\x6c\xed\x93\x68\x7a\x11\xc5\x84\x97\xe6\xca\x9f\xeb\x85\x6b\x33\x65\xf3\x49\xc5\x95\xed\x53\x5f\x13\x2f\xc6\xf7\xfb\x52\x59\x71\x45\x7c\x24\x8e\x13\x04\x06\x42\x06\xee\x76\x46\x9b\x63\xb7\x6c\x3e\xf6\x64\x36\xb4\x43\x67\x8b\x99\xd8\xac\xf1\x01\x04\x98\xa3\xe8\x06\x25\x87\x6f\x0e\x5f\xf4\x1a\xb0\x2b\x23\x45\x41\xe7\xa8\xbc\xf5\x61\x81\xd6\x69\x6a\xe6\x28\x35\x8a\x3c\x7e\x6f\x01\x18\x85\x7b\x0a\xd2\x3a\xd1\xf5\x42\x04\xad\x8e\x05\xd7\xf9\x1d\xe1\x14\x50\x9b\xcb\xee\x96\xae\x08\x95\xa2\xe4\x41\x41\xbd\xe8\x3b\xa8\x7c\x4b\x1f\xd6\x5e\xf6\x42\x70\xf0\x7e\xec\x90\x51\xae\xeb\x1c\xd7\x4c\x59\x97\x3e\xe3\xe4\xf5\xe4\xf5\xab\xaf\x45\xec\xc0\x37\x5c\x13\x3b\x2e\x2a\xb1\xc3\xde\x00\x2f\xfa\xae\xbe\x46\x78\x1f\xce\xd4\x07\x67\x48\xae\x8b\x80\x33\x5f\x64\x16\x3f\xba\x95\x4c\xbb\x6d\x7e\xcb\x14\x90\x23\x54\x61\x89\x90\xcd\x24\xa3\x41\xa9\x6c\x9b\x06\x8f\xc0\x62\xe1\x31\x52\xd1\xaa\x72\xda\xd7\x0b\xc9\xdd\x3c\xc8\xd0\xb6\x7b\x1c\xee\xbd\x9b\x22\xad\xcf\xc1\x01\x39\xb2\x63\x1c\xda\x8c\x6f\x01\x2b\x1f\xe1\x20\xb9\xb5\x7a\x77\x57\x04\x14\x0d\x8b\xb7\x5e\xef\xee\x0a\x8a\x4e\x92\xa2\x17\x0b\xf7\x3f\x61\x41\x97\x80\x09\xf6\x58\x46\x65\x86\x88\xb0\x2b\x3b\x65\x64\x5a\x6a\x02\x7c\xc9\xa4\xe0\x39\x70\x4d\x30\x48\x7b\x9a\x01\x91\x80\x69\x48\x13\x50\xe4\x9b\xa3\xcf\xa7\x9f\x10\x31\x7c\xec\xf2\xb4\xba\xf7\x2b\x15\x06\xe8\xad\xbd\x43\xa3\xbb\x3e\xee\x37\xe2\xdf\xdd\x6c\x17\xbc\xc0\xfd\x5c\x98\x77\xcb\x4b\x5d\xd2\x0c\xf3\x10\x26\x59\xa9\xd8\xf2\xa5\xae\x08\x97\xa9\xf1\x2d\xeb\xb4\xa5\x63\x6c\xe6\xb3\xc6\x9a\x6e\xe4\x8d\xec\x9c\x81\x77\x4b\x1e\xa2\x0d\xf8\xc6\xa1\xaa\x72\x13\x35\x81\xa2\xce\xbc\xde\xcd\x7f\x80\x89\x6d\x6d\x84\x92\x2f\x19\xb5\x21\xdf\x63\x06\xed\x17\xd7\xa0\xf7\xde\x30\x29\x57\x67\xf8\x56\xfb\xed\x94\xb0\x3d\x72\xd5\x4a\xa4\xf4\xf6\xe2\xaa\x99\xa9\xd8\x1a\x76\xc4\xde\x93\x70\x59\x77\x51\xa7\xf3\xc6\x52\x1f\x95\x71\x0c\xe4\xbc\x2e\x11\x3c\x07\x0e\x12\xa5\xfb\xb7\x17\x57\x7b\x8e\xe5\x37\x82\x55\x21\xa6\x54\x59\xfc\xcb\xdb\x8b\x2b\xeb\x93\xdc\x8f\xf6\xce\x16\x80\xee\xca\x33\xe6\xd1\xc0\xdc\x09\x1d\xf4\xee\x70\x06\x71\x5a\xd9\xfa\xcd\xe2\xa3\x3d\xcf\x52\x43\xce\x2f\x09\x4d\x53\x89\x50\x95\x2e\xc7\xa0\x95\x58\x84\x16\x45\x85\x38\xc0\xec\xd7\x54\x41\xf3\xd5\x1b\x7b\x00\xef\xd5\x8e\xeb\x67\xdb\xdb\xb2\xc8\x98\x85\x16\x34\x87\xa8\x73\x83\xe7\x62\xd9\xe5\x68\x87\x98\xc6\x3a\x1b\xc6\x02\xae\x1f\xd1\xb5\x50\x56\xec\x6d\x25\x41\x89\x6c\x59\xd7\xf1\x0c\xde\x4e\x8e\x7f\xa0\x7f\xb8\xda\x4e\xbe\x16\xd6\x13\x6d\x25\xe0\x5a\x32\xd8\xdc\x46\xe4\x93\x79\xbb\x12\xf9\x4f\x45\x02\x5b\x02\xe2\x47\x3f\x76\x2e\x5c\x8a\xc3\x34\xea\x96\x5a\x08\xa4\xad\x72\x0b\x54\xfa\x6b\x0f\xdf\x3c\xe0\x15\x5f\x64\x4f\xaf\x65\xe2\x4c\xdf\x5e\x5c\xd9\xab\xcf\x4e\x97\x4b\x5f\xa8\xb6\xee\x9d\xce\xb7\x12\x79\xf9\x84\xed\x21\x66\x91\x76\x6d\x6c\x67\x68\x0e\x8b\x7c\x08\xd0\xd6\x82\xb2\x28\x05\x8c\xae\x80\xca\x64\xd1\x65\xfe\x63\xf3\x34\x4b\x09\x49\x85\x45\x95\xce\x84\x44\x93\xe4\x18\xaf\xd0\x4c\x88\x9b\xb2\x78\x9a\x5b\xd3\x0d\x6c\xb4\xd2\x27\xe3\x75\xad\x31\x7e\x51\xf7\x66\xca\x55\x17\x30\x5b\xa0\x14\x0e\xda\xca\xde\x38\x72\x9d\x92\x61\x7f\x26\xd7\x52\xb7\xcf\xb2\x52\x69\x90\xdf\x32\xa9\xf4\xc1\xbe\x3d\xd9\x32\xab\x78\xce\xad\x11\xfe\xb0\xd9\xdd\x5f\x98\x5e\xb8\x52\x54\x87\xa3\xf6\x57\xe6\x6f\x47\xc6\x21\x11\x92\x1c\x5e\x08\x0e\x7b\xbb\x3f\xd6\x54\x91\xea\x42\xad\xae\x8a\x7b\x65\x01\x37\x89\x0a\x32\x1b\x39\x89\x5f\x74\x3e\x18\xd7\xae\x3a\x98\xa1\xc7\xdf\x40\x0a\x34\xa1\x58\x56\x05\xfb\x5e\xd4\x25\xb9\x6c\x45\x00\x5b\xca\x4c\x38\xe5\x67\xd5\x58\xda\x3d\x07\x6f\x94\x14\xd0\xe2\xfe\x05\xe8\xa2\xe3\xec\x7d\x30\x30\x2c\x10\x5c\x5a\xe6\xf7\x8c\xdf\xec\x79\x2a\xc3\x4e\xc8\xbb\x8d\xd1\x5b\xc5\x87\x2d\x42\x8c\x71\x1b\x19\x65\x44\x08\x3a\x15\xa5\xf6\xa9\xa2\x55\xc3\x14\xc7\xf8\x7f\xd9\x7d\x81\x2e\x78\x8c\x72\xdd\x77\x55\xb6\x18\xda\xd4\xc8\xba\x27\xbc\x25\x4d\xad\xb8\xa6\x58\x4d\xee\xad\x48\x6e\x40\x92\xcc\xd0\xbc\xef\xe6\xab\xc1\xea\xad\xba\x61\x7b\x63\xd7\xba\x5a\xd2\xa1\x58\x40\x0e\x92\x66\x95\x11\xe9\x59\x17\xfd\xbd\xbb\x6e\x2b\x32\x9a\x48\x6d\x5b\x13\xc4\x95\x82\x12\xe9\x84\xbc\xdb\xf6\x54\x4e\x57\xbe\xb4\x21\xe3\x08\x25\xbd\x63\x4a\xef\x2f\x77\x14\x22\x6d\x26\x43\x2a\x15\xc8\x71\x95\x1c\xcb\x25\x59\x51\x15\x68\x3e\x85\x69\x39\x9f\x33\x3e\x9f\xd8\xfb\x1c\xe5\x86\x46\x0d\xda\xca\x28\x72\xbb\x80\x7d\x3d\x1b\x89\x04\xaa\x6d\x22\x97\x42\xa4\x36\xe2\x86\x35\x7b\xcf\x45\x6a\x3b\x9f\xae\xac\x15\xcb\xef\xc9\x2a\x5a\x9a\x9c\x73\x22\xa4\xcb\x53\x4b\xd3\x94\xec\xed\x5e\xd9\xb2\x22\xd8\x57\x3d\xbf\x96\x38\x8f\x30\xb6\xc1\xe4\xd5\xaf\x1a\x0b\xa4\xca\xa9\x91\xf0\x4b\xb9\x6f\x35\xb7\xae\x42\x45\x27\x81\x22\x54\x78\x3c\xe5\xf5\xf6\x3c\x6b\x86\x1b\x51\xa2\x21\x2f\x84\xa4\x72\xb5\x8e\x29\x33\x37\x89\xd9\xbe\x66\x81\xd6\xe6\xf6\x52\xa4\x46\x48\xd8\x9b\x8c\x2d\xdb\x76\xc9\x8c\x3a\xb3\x6d\xe7\x6e\x3d\x4f\x78\xb5\x71\x41\xfc\x9a\x91\x0e\x54\xa8\x64\x01\x69\x89\x21\xe6\xf3\x92\x4a\xca\x35\x18\xfe\xe9\x9c\xf0\x2b\x17\x00\x65\x37\x73\x15\x8e\x55\xe5\x66\x58\x21\x38\x1c\xcb\x97\x99\x4f\xb0\x72\x5a\x97\x1a\x43\x4e\x9a\x35\x1d\x35\x62\xbe\xae\x17\x40\x6e\xca\x29\x64\xa0\x71\xf2\x61\xc9\x12\xed\x07\x99\xe1\x22\x6c\xd9\xfa\x09\x2d\x6d\x3c\xd7\xfe\xc8\x9b\x4b\xe1\x8a\x07\x25\x60\xee\x24\xad\xea\xa9\x75\xd0\x66\x2c\xbc\xb6\x7f\x01\x81\x6b\x7f\xb4\xb7\x51\x5c\x9f\xcc\x47\xce\x24\x6a\xdb\x9d\xb9\x26\xbe\xde\x03\x9c\xb9\x5a\xe4\x2d\x4b\xb1\xe7\x50\x01\x9a\x7d\x77\xd4\x56\x27\xb4\x55\x88\x11\x81\xca\xf9\x8b\xe1\x18\x4f\xe5\xbc\xcc\x31\x34\xc6\x69\xa3\x75\xb1\xd4\xee\xa1\x19\xe8\xab\x39\x54\xe4\xec\xc3\xdb\x66\x5a\x87\x66\xb9\x0b\x9f\xf4\xa3\xdb\x20\x9f\xe3\x7a\x42\xc9\xf9\x8c\xd0\x4a\xea\xeb\x44\x51\x7d\x53\x3b\xd3\x96\xf3\x9f\x55\x04\x7a\xd3\x1e\xe3\x85\x11\x61\x51\x50\x6f\x24\xda\x4e\x16\x94\xcf\x0d\xaf\x7a\x2b\x4a\xf3\x62\xdf\x7c\x83\x2f\x21\x21\x2d\x13\xe8\x86\xb3\x35\xd7\x8b\x8f\x7d\xfe\xc6\xf9\xe7\x7c\x46\x7f\xa3\x8c\x82\x4a\x68\xe1\xa7\xa6\x39\x7b\x56\xcc\x7d\x43\xd8\x04\x26\xe4\xe0\x9b\xc6\x57\x07\x48\x71\x57\x20\xa2\x79\x15\x17\x6a\x8d\x6f\x9f\x31\x8d\xfc\xe3\xa0\x39\xc2\x84\xbc\x33\x74\x21\xdc\xa5\x5a\xdb\x46\xf4\xec\xb4\x5e\xd9\x11\x91\x30\xa7\x32\xcd\xa0\x63\x98\xa0\x98\x55\x5a\x86\x4d\x47\xe3\x76\x15\x32\x46\x8c\x1e\xe2\x42\x4f\xe2\xf8\x0f\x77\xcd\x5b\xa1\xa9\xba\x51\x27\x56\x9f\x19\xa7\x54\xd3\x31\x2d\xac\x05\x87\x09\x7e\x62\x6d\xa8\x63\x57\x9a\x6f\x4c\xdd\xe9\x1d\x57\x3b\xfb\xe4\xd7\x2e\xc9\xd2\x98\x56\x4f\x31\x3e\xa6\x63\x2c\x56\xd7\xd9\xe2\xf2\x02\xc8\xe1\x20\x6b\x66\x40\x6d\xc8\x18\x5c\xf5\x5d\x5d\x71\x1a\x67\x6e\x42\x2e\x84\xae\x6b\xe8\x56\xd0\xe6\x80\x0a\x82\x4d\x3e\xfb\xee\xe2\xfa\xd3\x5f\x2f\x3f\x9e\x5f\x5c\x0f\xec\x76\x60\xb7\xd8\x06\x76\x3b\xb0\xdb\x0e\x03\x77\x64\xb7\xc0\x97\x2f\xc5\x6a\x2b\x73\xd2\x36\xfb\xdd\x5a\x71\xa3\xc0\x48\x92\xaf\x28\x12\xe7\x1d\x5f\x7e\xa6\x46\x31\x2b\x24\x28\x14\xff\x8d\x3e\xb8\x0d\x6b\xe8\x1e\x40\x43\x5b\x0d\x3b\xfb\x62\x43\x71\x5e\x30\x90\x26\x22\x7c\xfe\xa2\x91\x07\x77\xdb\xaa\xd5\xa9\xb7\x29\x39\xfb\xe9\xfc\xed\xbb\x8b\xeb\xf3\x6f\xcf\xdf\x7d\x7a\x51\x24\x70\x60\x8d\x9e\x78\x18\xe0\x7d\xc4\x99\x80\x61\x6a\x41\xa8\x90\xb0\x64\xa2\x54\xd9\xaa\xaa\xe1\xb8\x9d\x5d\x6d\x46\x35\xf1\x10\x0a\x28\x5f\x55\x75\x35\xb7\x0e\xb8\x26\x8a\x6d\x13\xab\x02\x86\x7f\x61\x81\xcc\x11\x11\x43\x2c\x0b\x18\x7f\x8b\x40\xb7\xbb\x70\x16\x30\x6e\x27\xb1\xee\x3e\x11\x2d\x80\x8e\xb6\x70\x17\xd0\x51\x1b\x73\xfe\xf2\x9c\xec\x5b\x29\xf2\x48\xdc\xec\xca\x5a\x65\x3d\x42\x60\xdb\x51\x3d\x74\xd9\x7c\x5b\xe2\xb1\x53\xf4\xea\x34\xbf\x46\xc9\xcc\x0b\x1d\x50\x11\x3e\x4a\x35\xc2\x38\x85\xfb\x2c\x08\xf8\x03\x2d\x7e\x80\xd5\x27\x08\x4c\x68\xde\x9e\x6f\x44\x11\x28\x42\xc9\x0d\xac\x2c\xf4\xec\xcc\x0f\x16\x96\xd3\xbd\x87\xc5\x1c\x6f\x20\xa4\xd0\x66\xcc\x2a\x8c\x37\x10\x10\x4e\xe7\xdb\x46\x89\x3e\xb3\x84\x28\xe6\x9b\x35\xed\x55\x51\xc2\xbe\x56\x9d\x6c\x4a\x8f\xee\x7a\x88\x30\x71\x7b\x27\xe6\x15\x4b\x23\x9a\xc0\xed\x89\x0b\x60\x19\xdf\x32\xbd\x18\xdb\xb3\xa3\x4e\x10\xe3\x7d\xf2\x6b\xfc\x4f\x04\xda\xae\x3f\xbe\xfd\xf8\x86\x9c\xa6\xa9\x0b\x07\x2e\x15\xcc\xca\xcc\x06\xd9\xaa\x09\xa1\x05\xfb\x0c\x52\x31\xc1\x47\xe4\x86\xf1\x74\x44\x4a\x96\xfe\xa9\x4f\x9b\x49\x78\xd4\x48\xdc\x0d\x75\xe5\xd0\x4c\xcd\x5b\xbf\xe2\x85\xc4\xe6\x5d\xc2\x23\xe6\xb3\xa9\x3b\x01\x36\xd2\xd4\x84\xc5\x81\xda\xd6\x2a\x0b\x91\xd3\x62\xec\x54\x6c\x2d\x72\x96\x04\xf4\x8c\x7b\x23\xee\xc5\x13\x7c\x7c\xeb\x9b\xcb\x86\x87\x57\xb5\x50\xd2\x37\x44\x95\x98\x58\x5e\x91\x1c\x34\x4d\xa9\xa6\x13\x73\x78\x46\xed\x3f\x55\x41\x13\x18\x91\x7f\x54\x1f\x66\x74\x0a\x99\xfa\xf1\xf0\x3f\x7e\x78\xf7\xd7\xff\x3c\xfc\xfb\x3f\x9a\xdf\xa1\xa4\x81\x96\xb0\xe6\x03\x81\xaf\x80\x60\x15\x2e\x52\xb8\x40\xea\xf0\x4f\xa7\xa4\x9c\x26\x89\x28\xb9\x76\x5f\x60\x0a\xbd\xc9\x42\x28\x7d\x7e\x59\xfd\x59\x88\x74\xfd\xaf\xa0\x72\xd4\xbd\xbc\xb2\x71\x6d\x03\xf2\x85\xd8\x16\xef\xe2\xae\xb9\x63\x64\xee\xe3\x7a\xf5\xdb\x18\x2b\x5f\x52\xfc\xe7\xb7\x7e\x0a\x8c\x5c\x5b\x25\x39\xe5\x98\xab\xd0\xa8\x29\xed\xca\x49\x07\xcb\xd7\x41\xca\x92\x6d\x11\xb9\x75\xb5\x82\x91\x27\x0c\x67\xc4\xcd\x96\xe5\x00\x95\xe8\xe3\x15\xec\x1a\x87\x76\x7a\x79\x4e\x96\x76\x86\x7b\x34\x39\x4f\xc5\xae\x3d\xb8\xe5\xdb\x5e\xb3\xed\x26\x04\xa7\x65\xea\x79\x43\x30\xb3\x83\xff\xde\x65\xb4\x54\x55\x15\x0f\x50\x3a\x54\x0e\x3a\xb2\x5d\x4e\x92\xa2\x1c\xb9\xee\x27\x39\xe4\x42\xae\xaa\x3f\x2b\xe0\xd0\x58\x69\x21\xe9\x1c\x53\x4c\xd8\xc1\xed\xcf\xaa\xbf\xec\x0f\x5b\xe4\x6d\xfe\xda\xda\xd2\x92\x52\x1a\x11\x33\x5b\xf9\x2b\x2a\x2c\x66\xbe\x97\x2c\xdb\xaf\x5b\x4f\x38\x76\xb5\xad\x2e\xe2\xeb\x20\x87\x35\xd6\x11\x35\x9c\x6a\x16\xd1\x80\xe1\x92\xa2\x8d\x2a\x81\xd5\x5a\xd9\xf8\x92\x2c\xa9\x54\x21\x75\xed\x6c\x8b\xc8\xa4\x53\xb6\x64\x4a\x04\xa4\xa5\xa8\x3a\xda\x94\xa8\x7d\xf0\xb5\xcb\x50\x6b\x21\xec\x95\xc9\xfe\xae\xc0\x6c\xf5\xd5\x61\x5f\xbb\xcd\x5e\x1f\x04\x93\x54\x50\xad\x41\xf2\x37\xe4\x7f\x1d\xfd\xed\x37\x3f\x8f\x8f\xff\x74\x74\xf4\xe3\xab\xf1\xbf\xff\xfd\x37\x47\x7f\x9b\xe0\x3f\xfe\xf5\xf8\x4f\xc7\x3f\xfb\x3f\x7e\x73\x7c\x7c\x74\xf4\xe3\x0f\x1f\xbe\xbb\xbe\x7c\xf7\x77\x76\xfc\xf3\x8f\xbc\xcc\x6f\xec\x5f\x3f\x1f\xfd\x08\xef\xfe\xbe\x63\x27\xc7\xc7\x7f\xfa\x26\x98\xf4\x08\xe5\xeb\x6c\x8b\x59\xc4\xae\xdd\x63\x94\xed\xf7\x84\x25\xc4\x6d\xf3\xdb\x2b\xf6\xf9\xf7\x71\x8a\x6f\xea\xdb\xac\x92\x42\x7a\x74\xc0\x9f\x4a\xd0\x50\x90\x48\xd0\xcf\x61\x94\xb4\x23\x35\xf2\x6d\x1e\x2a\x52\x29\x71\x5f\xdb\x0d\xfa\x4b\xb0\x53\x7a\x3d\xc7\xae\x6b\x2d\xba\xcf\xa4\xc8\x5d\x6e\x42\xeb\xb4\x5d\x62\x9c\x9e\x7b\xee\x06\x02\x0c\xfa\xbe\x0d\x76\xcd\xce\x6d\xb0\x6b\xae\xb7\x2f\xd3\xae\x79\x65\x8f\xd3\x2f\xd0\xa8\x09\x7c\xd9\xd5\x5d\x19\x13\xa3\xe5\x55\xdb\x66\xdd\x8c\xdd\x80\x10\xdd\x31\xb2\x37\xb0\x52\x15\xea\xa2\x06\xde\x5a\xb1\x25\xdf\x8e\x92\x21\xa7\x59\x46\x18\xb7\x4c\xd8\x74\xd0\x69\xf4\x3a\xc2\xde\xea\xbc\xae\xf0\x0e\x2c\xcd\xab\x56\x45\x69\x5b\x75\xaa\x30\x4c\x06\xe3\xb4\xfe\x62\xc3\xa0\x6e\x6c\x64\x94\xd2\x38\x25\xbe\xfa\x58\x27\x72\x2a\x55\xa3\xae\xbc\x4a\x95\x12\x89\x8d\x1a\xab\x02\xad\xb1\x6c\x88\x9b\x1e\x7c\x03\x4d\x6f\x10\xc1\x92\x40\x0a\x7c\xdf\x78\x3e\xdf\x3e\xdb\x88\x73\xbf\x0e\xd3\x15\x56\xbf\xe2\x4b\x5f\x75\x37\xf5\x59\x0a\xf0\x8d\xe3\x8d\xfb\x75\x41\xf6\xcc\x19\x76\x58\x81\x06\x72\x0f\x25\x8a\x3a\xae\x0b\x01\x8f\x62\x56\x7b\x71\xba\xed\xde\x60\x09\x31\x5c\x1e\xab\x00\x00\x41\x82\xf6\x86\x20\x56\xbb\xb7\xda\x02\xd8\xd7\x80\x99\x08\x17\xcd\xe2\x8a\x65\x4f\x21\x92\xf5\x55\x1c\x7b\x7e\x51\x2c\x92\x18\x16\x47\x04\xdb\xc3\xad\x1c\x53\xec\x8a\x23\x72\x3d\x85\xad\xa0\x90\x30\x63\x77\x91\x18\xd7\x29\xaf\x0d\xaa\x2c\x05\xae\xd9\x8c\xd9\xf0\xfc\x42\x42\x01\xdc\xc6\x1b\xd3\x64\x81\x17\xa8\x13\x9f\x6a\x50\x53\x1f\xf1\xc0\x56\xbb\x8d\xcb\xdb\xaf\xb6\x69\xd6\x03\x63\x27\x03\x63\x0f\x68\x03\x63\xdf\x49\xaf\xfe\xda\xb9\x3a\x46\x5b\xbe\x78\xc2\x67\x4b\x06\xf2\x83\xa7\x8c\x8b\xab\x4e\x59\x9d\xdc\xe1\x04\x47\xee\x72\x98\x82\xb6\x33\x8e\x7a\x59\x66\xd9\x0b\x97\x23\xc5\x69\x2f\xca\x2c\x73\x59\xbf\xba\xcd\xfe\x47\x8e\x6c\xf3\x14\xcb\xcd\x8f\xc8\x05\x2c\x41\x8e\xc8\xf9\xec\x42\xe8\x4b\xab\xd0\x85\x97\xa4\xb4\x9d\x13\x36\x23\x6f\x32\xaa\x41\x69\xa2\x6d\xdd\xea\x46\x6e\x6f\x21\x5b\x83\xd6\xd5\x23\x5e\x50\xcf\x0e\xdf\x9b\xbf\xf6\xa9\x91\xc6\x2f\xb3\x57\x33\x36\x83\x64\x95\x64\xe1\x6c\xe2\xbd\xef\xc9\xe3\xfa\x31\x64\xc5\xf9\xd8\xb7\xa5\xce\xfa\x02\x13\xa7\x16\x42\xe9\x2b\x4d\xa5\x8e\x92\x3d\x35\x40\xa4\xb9\xf4\x84\x60\x71\x79\x9a\x65\x90\x12\x96\xe7\x90\x32\xaa\x21\x5b\x11\x3a\xd3\x20\x5b\xe5\xde\xcd\x73\x58\xd0\xda\x57\x94\x07\xb2\xa0\x3c\xcd\x40\x62\x5d\xdf\x8e\xe5\xee\x89\x0b\x9a\x6a\x8d\xe3\xab\xf3\x56\x05\xef\x7d\xee\x24\x9a\x24\x42\xa6\x18\xba\x24\x7c\x8e\x21\x7c\x89\x10\xfe\x64\xda\x47\xbc\xd9\x73\xca\xe9\x1c\xd0\x2e\xbb\x51\x1e\x11\x8b\x66\xaa\x46\xb5\xfd\x85\x10\x37\x24\x11\x79\x91\xe1\x49\xed\x3c\x74\x77\x06\x50\xfd\x73\x5c\x1d\xc2\xb1\xa1\x4a\x9d\xfc\xba\xfe\x0a\x3f\xe8\x48\x5c\x04\x65\x20\x86\x2a\x00\x77\x90\x84\xc8\x73\x6d\x9b\xe2\x1d\x24\xd5\xad\x60\x2d\x89\x36\xeb\x1d\x66\x03\xa2\x37\x41\x91\x6f\x91\x7c\xcc\xb1\xfc\xba\x01\x29\x41\x9a\x2d\xb6\xdb\xf2\xcc\x92\xe5\xab\x92\x3a\x2a\xb1\x66\xb5\x4d\x21\x86\x39\x43\x7c\xa1\xd2\xd6\x31\xb4\xa6\xfc\x8d\xf2\x1f\x3e\x8e\x2c\x98\x34\x4f\x8b\xa1\x4d\x0a\xa1\xc9\xd1\xe1\xc9\xe1\xf1\x86\x6f\xa6\x5d\xe3\x12\xd5\xf0\xa4\x7e\x29\xc5\xf2\x02\x4b\xb6\x40\x72\x98\x8e\x08\xd3\x5d\xd2\xba\xad\x37\x73\x21\xda\xec\x8f\x38\x2b\x2e\x91\xca\x88\x28\x41\xb4\xa4\x29\x73\x86\x12\xfc\xd4\x3c\xa4\x65\xe9\x92\x39\x1e\x1d\xfe\x7c\x38\x22\xa0\x93\x63\x72\x2b\xf8\xa1\xc6\xe9\x9b\x90\x6b\x61\xb4\xba\x70\xe8\x92\x27\x64\x25\x4a\xc2\x01\x5c\x16\xb8\x2a\xdf\xab\xb9\x5b\x88\x28\xb5\x4d\xb6\x45\x75\x48\x02\x98\x66\x7b\x77\xc7\xb4\xaf\x39\x2f\x66\xe4\x15\xee\x26\x7b\x3f\x11\xaa\x48\xc6\x96\x70\xb2\x00\x9a\xe9\x85\x45\x6c\x72\xc1\xc7\xff\x04\x29\x30\x5d\x0c\x77\xdf\x84\x92\x11\xe6\x26\x69\xb6\x00\x97\xc9\x26\x41\x81\x5a\xb4\xb9\x86\xbe\x83\xce\x22\x0a\x59\x67\x19\xdf\x5f\x5f\x5f\x7e\x07\x7a\x8d\xeb\x9a\x51\x3c\x8e\xb6\x91\x92\xb4\x07\xec\x37\x0e\xc0\x67\x4c\x0a\x21\xfb\x70\x0b\x2c\x84\x0a\x5a\x4b\xf2\x04\x57\xc0\xf7\x42\x69\x5b\xa4\xc5\xd6\xaf\xe4\x90\x98\x4d\xd0\x06\x85\xfa\x5c\xaf\xe7\x97\x13\xf2\x57\x51\x9a\x09\x99\xd2\x69\xb6\x22\xb7\x94\x3b\x83\x67\x18\x92\xcb\xb4\x03\x43\xca\x81\xe1\xf0\x66\x43\x7e\x0f\x34\x05\xa9\x90\x81\x02\x0d\xc4\x6c\x47\x04\x8d\x34\x68\x8b\xba\x94\x67\xa5\xd2\x22\x27\x0b\xf7\xda\xed\xdc\x31\xee\x70\x4e\xf0\x00\xfb\x04\x02\x12\x0a\xcb\x64\xdd\x6f\xbe\x3a\x16\xba\xc1\xba\xec\xbc\xb7\xaa\x37\x27\xcd\x69\x33\xb3\x56\x85\xa6\x73\x3b\x59\x66\xab\x46\x00\x3b\x45\xc3\x2c\x92\x88\xb8\x45\x12\x96\x55\x66\xbd\x23\xc4\x65\x04\xf7\x14\x0f\x0a\x49\xa2\xc1\xfd\xc8\x93\x40\xfe\x88\x43\xf9\xb8\xcd\x67\x43\xa2\xba\xdb\x46\xb7\x75\xde\xa8\xdc\x91\x50\x2e\x38\x4b\x68\xc6\xfe\x09\x29\x29\x0b\xc1\x1d\xbe\x1f\x25\xcf\x84\x2a\x18\x23\x84\x89\x5b\x76\xae\x1a\xf9\x4d\x0c\x77\xd0\x42\xa0\x38\x86\x80\x0d\xc3\xee\x2d\xd5\x71\x48\x8d\x0a\x4c\x0f\x4e\xd6\xd3\x6c\x1b\x4e\xba\xd6\x62\xc5\xd9\xf1\x24\xe6\x0c\x14\x11\xe2\xf6\x36\xa3\xf6\xb4\x20\x34\x49\x30\xc9\x8a\xbd\x51\x90\x37\xda\x32\x66\xbd\xb9\x5a\x8d\x94\xd6\x37\xf1\xc8\xba\x1a\x25\xe1\x65\x3e\x05\x59\x87\x3c\x4b\xbd\x39\xa7\x81\x80\xc1\xd6\xb0\x76\x38\xef\xd5\xf2\x62\x00\xe5\x73\x20\xaf\xcd\xc8\x7f\xfc\xc3\x1f\x7e\xf7\x87\x08\xe3\x98\xd7\xab\x80\x88\x9c\x9c\x9f\x5e\x9c\xfe\x74\xf5\xf9\x0c\x73\x00\x85\x76\x1f\x29\x96\x26\x76\x24\x4d\xd4\x38\x9a\x27\x8d\xa2\xc1\x90\xe4\x60\x46\x18\xfb\x48\x5c\x21\x55\x66\x13\x96\xca\xe6\x0d\x72\x6a\x83\xb3\x06\xfb\x52\xfa\xe1\xbb\xb3\xe9\x57\x32\x0c\xab\x17\x9c\x4a\x65\x00\x45\x34\x8d\xfc\xca\xf4\xb6\x0e\xa8\x4c\x7d\xf1\x51\x34\xd3\xb4\xad\xdf\xae\xec\x0c\x52\x41\xa6\x30\x13\x12\xc8\x14\x70\xea\x2b\x5b\xfd\x57\xa4\xb9\x2b\x48\x04\x4f\x43\xe4\xf7\x58\xf2\xa8\xa3\x24\xea\x69\xbc\xb2\x7d\x7a\xfb\x6b\x7d\xc9\xb8\xc1\x50\x0d\x34\x2b\x1d\x67\xe7\xc7\xe1\xa0\x36\x9c\x14\x7b\xfb\xe3\xef\xbb\xbb\x9a\x92\xe2\x4a\x24\x37\x11\x8d\x5b\x81\xac\xed\xad\x39\x83\x89\xf5\xaa\x5d\x9f\x5d\x5a\xe2\xcc\xca\x5c\x7c\xbc\xae\x63\xc7\x11\x47\x5f\x3b\x48\xbf\x77\x7e\x37\xca\x53\x72\x03\x45\x98\x6a\xe8\x53\xb0\x4d\x69\x72\x73\x4b\x65\x8a\x3e\x2d\xaa\xd9\x94\x65\x4c\xaf\xd0\xb8\x2d\x01\x83\xda\xb9\xb0\x41\x5a\x96\x4b\x08\x97\x6e\xdb\xca\xb4\x61\x59\x1b\x1b\x6e\x64\xf4\xab\x39\x35\x62\x46\x59\x66\xa4\x10\x57\x87\xdb\x45\x10\x24\x45\xe5\x78\x6c\x3a\xf8\xbf\x22\xf6\xf3\xb5\x1a\x0e\x0f\xeb\x3a\x60\xfb\x1a\x00\x43\x83\x6c\xbf\x6e\x75\xc1\x71\x70\x9b\x9d\x60\x50\x17\xf6\x69\x83\xba\xd0\x51\x5d\x28\x24\x5c\x69\xd1\x59\x26\x8d\x06\x64\xb1\x64\xdc\x03\x63\x71\xa2\x2a\xbd\x17\x5f\x92\x96\x60\x8b\x92\x75\x26\xe0\xf4\xf2\xbc\x72\x63\x89\x16\x86\xc4\x86\xbd\xf9\x8a\x64\x19\x5b\x02\x07\xa5\x4e\x10\xb1\x52\x16\xd6\x46\x8c\x77\x5c\x29\xa1\x3b\x7a\xa6\x90\x00\x39\xce\xe3\xa8\x4e\x4e\x60\x5e\x17\xb8\xfd\x10\x74\x62\x5d\xd4\x8d\x5b\x93\x0b\x5d\x4d\xd7\x2c\xc8\x73\xde\x28\x1e\x26\xa9\x5a\x00\xe6\xbd\x85\x3b\xa6\x95\x1d\xf4\x12\x43\xf8\xfd\x8c\x1b\xc1\x61\x2e\x69\x02\xa4\x00\xc9\x84\x11\x36\x4a\xae\x53\x71\xcb\xc9\x14\xe6\x8c\x2b\xbf\x62\x21\x24\xf9\x2d\x81\x08\x1d\xa6\xaa\x22\x24\x13\xf2\xa9\x95\xf6\xd7\x25\x2b\x49\x44\xcd\x33\xdd\x14\x8d\x22\x4d\x09\x4a\x31\xb8\x0d\x4a\x9a\x65\xab\x7a\xe3\xf9\xb0\x4c\x7d\xff\x0c\x75\xdf\x10\x76\x66\x8f\x4a\x8e\x2f\x9a\x42\x46\x57\x36\x00\x71\xc6\x38\x1a\x72\xa5\x3a\x9e\x84\x43\x9e\x3a\x13\x28\x64\xa3\xcf\x7b\x77\x06\x53\x44\x02\x4d\x16\x21\x92\xdd\x80\xad\x7a\xac\x0d\xd8\xaa\x8e\x6d\xc0\x56\xed\xdb\x06\x6c\xd5\xbe\x6d\xc0\x56\xf5\x09\x18\x30\x60\xab\x06\x13\xc9\x7a\x1b\xb0\x55\x0f\xb5\x01\x5b\x35\x60\xab\x5a\x6d\xc0\x56\xed\xd0\x06\x6c\xd5\x8e\x6d\xc0\x56\x0d\xd8\xaa\x01\x5b\x35\x60\xab\xf6\x6b\x03\xb6\xaa\x7b\x1b\x9c\x25\x03\xb6\x2a\xa8\x0d\xd8\xaa\x01\x5b\x35\x60\xab\x06\x6c\xd5\xbd\x6d\xc0\x56\x0d\xd8\xaa\xad\x6d\x30\x1c\x6e\xb4\x01\x5b\xb5\xa5\x0d\xd8\xaa\xfd\xc6\x19\xd4\x85\xb0\xce\xa2\xab\x0b\x1e\x27\x74\x29\xc5\x34\x3c\xa9\x12\xf6\xa2\xdc\x15\xf3\x55\xa6\x54\x0a\x41\x30\x3c\x0f\x7a\xa1\x27\x50\x8f\x08\x88\x85\x98\xcc\xb5\xa7\x48\x85\x7e\xa2\x14\xfa\x88\x50\x78\x09\x74\xc2\x8b\x23\x13\xe2\xb8\xd4\x22\xb8\xd3\x82\xaf\x30\x07\x3c\xbd\x5e\x48\x50\x0b\x91\x75\xe6\x0b\xb1\x78\xc2\x07\xc6\x59\x5e\xe6\xe6\x88\x29\x73\xf4\xd9\xb2\x02\xc7\xaa\x4a\x91\xb2\x98\x59\xeb\x14\x34\x0f\xb2\x14\xb0\x0a\x1f\x65\x99\xd9\x01\x98\xb4\x6e\x41\x97\x86\x2d\xa8\x32\x49\x00\xd2\x10\xe5\xa5\x69\xad\xfa\xdd\xa4\xa2\xd0\x56\x92\x60\x8a\xbc\x0e\xbb\x11\xc2\xe4\x99\x86\xd2\xfe\xbb\xdf\x76\xea\x63\x2e\x8b\x38\x37\xe7\x77\x9f\x2e\xcf\x1a\x37\x27\xe5\xfe\xe2\x64\x7c\x29\x32\x5c\x0d\x6a\x1f\x32\x72\xf3\x0b\x5e\xa3\xe1\x4a\x64\x90\x02\x19\xe3\x16\x0f\xd5\x91\xda\xd2\xa1\x51\x63\xda\x8e\x90\x39\xae\xa5\x2d\x4e\x3d\x79\x06\x35\x24\x96\x68\x1f\x7e\x1c\x08\x9a\x04\xf1\xc5\xfb\x22\x23\x5d\x59\x72\x2a\x6b\x62\x43\x03\x75\x94\x22\xba\x2b\xa3\x49\xb5\x36\xb8\x7e\xdf\xe3\x45\x77\xb6\x80\xe4\xe6\x93\x05\x9a\x04\x91\x71\xa4\x00\x2a\x00\xf5\x9c\xe9\x45\x39\x9d\x24\x22\x3f\x31\x0c\xc4\xfe\xdf\x34\x13\xd3\x93\x9c\x2a\x0d\xf2\x24\x15\x89\xbb\x83\xc7\x89\xa1\x80\xf1\xf9\x24\x4f\x8f\x27\xbf\xfa\x55\x10\x11\xe7\xce\x26\xe6\xa2\x17\x1a\x89\x7d\xd1\xc0\x6e\x59\x35\x99\x82\x61\xff\x02\xcd\x57\x8d\xd2\x3b\x66\x56\xc2\x77\x69\xc0\x6d\x1b\x88\xfb\x7b\x7e\xcc\xdf\xc0\x6d\x49\x04\x33\x5d\x4c\x66\xd0\x0f\x5c\xdf\x93\x61\xfa\xa2\xc1\x6b\x23\x60\xf9\x7a\x84\xe3\xeb\x8d\xc2\xd1\x17\xec\x5e\x0f\xeb\xb8\x46\xc0\xeb\xc5\xc0\xea\xc5\xc3\xe9\xf5\xb5\xdc\xe9\x93\x61\xf3\xbe\x08\x5c\x5e\x44\xab\x75\x24\x3c\xde\x73\x60\xf1\xa2\xbc\x75\x28\x06\xef\xf9\xf0\x77\x71\x5e\x37\xa6\x92\x18\x78\x72\x5f\x00\x6f\xf7\x1c\xce\xb3\x27\x73\x9c\x45\x70\x9a\xc5\x74\x98\x45\x73\x96\x3d\x19\xae\x2e\x1c\x53\x17\x55\x65\x7f\x16\x2c\x5d\x4c\x1c\x5d\xf0\xfa\x32\xce\x34\xa3\xd9\x5b\xc8\xe8\xea\x2a\x0c\x53\x15\x6b\x25\x2e\x36\x70\x57\xd6\x36\xdc\x46\xde\x2d\xa8\xab\x3f\x0c\xa9\x07\xde\x79\xef\xab\x93\x54\xd1\x71\x6a\xdf\x2f\x08\x85\xb7\x67\x20\xfa\xad\x90\x37\x99\xa0\xa9\x3a\x29\x84\xfd\xbf\x3a\x0c\xbd\x11\x7f\x1e\x24\x4d\xf7\xc3\x06\x6d\x83\xfd\x7b\xb2\x6b\xbe\x17\xb7\x44\xcc\x34\x70\x72\xc4\xb8\xdf\x39\xc7\x0d\x63\x4a\xed\x83\x08\x76\x2a\x98\x5e\x5f\xbf\xf2\x83\x7c\x7d\xce\x05\x74\xbf\x28\xd5\x6b\xf7\x92\xa3\xf1\x71\xff\x92\x7b\x70\x56\x66\x6d\x1f\x93\xf5\x3b\xc5\x71\x30\xbd\xae\x2b\x96\xbe\x46\x7a\x2a\x56\x44\x79\x4a\x5c\xd2\x98\xaf\x6f\x9f\x04\xa3\x46\xdb\x3a\x48\x05\xf3\x7c\xcc\x1d\x75\x7d\x76\x39\x78\xa3\xfa\x65\x1f\x7d\x21\x08\xe3\xd7\xa7\x71\x3d\x3f\x64\x71\xd0\xb8\x7e\x29\x1a\x57\x23\x5f\xd3\x77\x92\x26\x70\xd9\x27\x01\xce\x33\x90\x3a\xde\xa6\x96\xe3\x2a\x76\xc1\x01\x6c\x1c\x46\x9d\x8d\x0b\x13\x4f\xcd\xca\x2c\x5b\x59\x73\x5f\x2b\x35\x5b\xf7\xad\x75\xbd\x80\x8d\x9c\x56\xad\x68\xa0\x06\x75\xb5\x7e\x52\x48\xe1\xa4\x12\x59\x72\x6e\x6e\x2b\x77\x9c\x0c\xf1\x46\x1f\x51\xc0\xbb\x5b\xbe\x69\x2b\xe3\x96\x62\x73\x33\x5d\x46\xc2\xc0\x64\x5c\x75\x24\x40\x8b\x10\x33\xea\x4c\xc8\x84\x4d\xb3\x15\x59\xd0\xcc\x28\x4c\xb7\x4c\x2f\x08\x25\x37\x2c\xcb\x5c\x37\xdd\x27\xea\x0a\xb4\x75\xee\x5a\xa9\x26\x13\x7c\x8e\x93\x41\x2d\x21\x70\x57\x40\x62\xc6\x4c\x32\xa0\xbc\x2c\x2c\x9d\x46\x46\x5a\x89\x52\x7a\x3a\xbb\x0f\xef\x5d\xcb\x95\x4c\xc5\x59\x36\xf2\x53\xde\xce\xcd\xb6\xb9\xe7\x6b\xeb\xaf\x82\xd4\xa5\x55\xbb\x65\x0a\x46\xd8\x67\x67\x9a\x2c\x2d\x62\x09\x52\xb2\xd4\xb9\x78\xed\x67\x85\x14\x4b\x96\x5a\xbf\xb6\xdf\x16\x46\xda\xe9\xfe\xfe\x9f\xb1\x5f\xcf\x5a\xb9\xe0\x63\x0e\x73\x8a\x22\xb2\x63\x68\x16\xe1\x68\xc7\xb7\x78\x3a\x9e\xb2\x84\x6a\x30\x0a\xb4\x28\x5a\x39\x17\x97\x8c\x76\xa6\xc4\xbc\x4f\x63\x47\x91\x23\x2e\x88\xc0\x40\x9d\x92\x33\xbd\x42\xe7\xdb\xa2\xd4\x24\x15\xb7\xfc\x38\xe4\x60\x5a\x20\x01\x25\x53\xd0\xb4\x0e\xb3\xf1\x22\x99\x22\xc0\xe9\x34\x33\x67\x0f\x01\xd4\xd7\x5b\x37\x00\x99\x01\xd5\xa5\x04\x32\xa7\x3a\x80\x4b\x6c\x91\xe8\xed\x7a\x3e\xbc\xed\x98\x72\xae\xb5\x19\x29\xb9\x82\x40\x41\x36\x9a\x1a\xd0\x31\x80\xcc\x9c\x68\x51\xfe\xff\xec\xbd\xff\x73\x1b\x37\xb6\x2f\xf8\xfb\xfb\x2b\x50\x9a\xa9\x27\x69\x42\x4a\x76\x72\x67\x6a\x6e\x5e\x76\x52\x1a\x49\x71\x54\xb1\x65\xae\xa5\x24\x2f\x9b\xe4\xe6\x82\xdd\x20\x89\xa7\x6e\xa0\xa7\x81\xa6\xc4\xd9\xec\xff\xbe\x85\x73\x00\x34\x9a\xa4\x6c\x13\x68\x8b\xb4\xc3\x9e\xaa\x89\x25\x52\x8d\x83\x6f\xe7\xfb\xf9\x1c\xbd\x23\x72\xe4\x31\xf7\xd1\xfd\x8c\x67\xb3\xd0\x50\xe4\x25\x53\x44\x36\x09\xde\xbc\x8e\x09\x68\x87\xeb\xd3\xca\xdb\xfb\x9e\xd6\x3e\xb1\x11\xce\x3e\x4e\xd8\x75\xa0\x95\xaf\x29\xc2\x68\x53\x9b\xb0\x34\xf1\xe2\xfa\xe6\xb7\x97\x67\xff\xbc\x7c\x19\x77\x04\x80\xd7\x89\x50\x77\x6e\x04\xff\x57\xc3\x08\x2d\xa5\xb1\x84\x8b\xb0\xfe\x63\x00\xce\xce\xe0\x17\xc0\x15\xfb\xad\x14\x89\xd4\x6b\x8d\x10\x88\x62\x0c\x2b\x19\x8f\x4f\x51\x0e\x13\x9b\xb0\x91\x90\xa8\xd1\x4d\x5a\x71\x73\x80\x14\xcf\xa0\x1a\x9d\x12\xc1\xb4\xb9\xe3\x68\x10\x72\x41\x28\x51\x5c\x4c\x8b\x64\x5b\x30\xd9\x23\x92\xea\x0f\x19\xb6\x33\x18\xc5\xba\x45\xd2\x9d\x22\x1d\x1a\xe2\xad\xca\xfe\x1c\x02\xad\x30\x73\x2e\x00\xf6\x50\x49\xc5\x9c\x0b\x00\x75\xdc\xab\x11\xa1\x79\x5e\x27\xe9\xd1\x96\xd9\x78\x1b\x1d\x4b\x9a\x71\x58\x0c\xff\x0e\xc8\x33\xf2\x15\x79\x20\x5f\x81\x43\xe0\x6f\xf1\x43\xf5\x63\x6e\xf7\x91\x34\x3c\x93\x4a\x5f\x8d\x7a\xda\xe8\x1f\x67\x54\xc3\x1b\xcd\x7e\x68\x49\xc6\xdc\x5a\x66\xec\x41\xb3\xda\x68\xc4\x76\x0f\x53\x57\x2e\xc9\xb9\x60\x08\xfc\x58\x4e\x77\x6a\xac\xf5\x6a\xd2\x4d\x35\x7e\xa2\xf3\x0d\x03\x7f\x2b\x95\xbe\xb6\xdc\x3a\x2c\xc7\x0f\xe9\x28\xa9\xce\x66\x5d\x76\x9f\x32\xea\x2b\x73\xf6\x02\xf1\x9f\x4b\x10\x94\x58\xde\x35\xe3\x09\xcc\x61\x77\x6e\x6c\x5a\x76\x5b\x7f\x47\xf7\x6d\x47\x6b\xc9\xbd\x09\x6a\x98\xd5\xdb\x02\xe8\xf8\x4a\xe6\x27\xe4\x92\x66\xb3\x04\x2a\xcc\x6a\xe4\x81\x32\x50\xc9\x1c\xc9\x98\xd1\xb9\x39\xe3\x76\x54\xc8\xb4\x43\xd5\xd5\x07\xcb\xe0\xc2\x19\x8e\x95\x51\x41\xc6\x29\xa9\x5e\x35\x9b\xb0\xba\xc6\x12\xc2\xf1\xc2\x15\x37\x24\x9f\xb6\x24\x2e\x57\xd5\x52\xcb\x4c\x16\xbb\x70\x54\x46\x96\x16\x58\x7b\x08\x5b\xf9\x60\xe1\xf7\x17\xa3\x01\xb9\x3d\x1f\x0d\x88\xac\xc9\xcd\x79\x5a\x2e\x48\x68\x8d\x1e\xdc\x9e\x8f\x0e\xb6\xba\x03\xc4\x85\x7b\x20\xb0\x17\xf1\x92\x8e\x07\xbc\xe0\x4a\x0f\x4b\x5a\x0d\xef\xd8\x22\x52\xbb\xeb\x43\xc3\x1c\xfa\x83\xd5\xcb\x84\x70\x99\x4b\x5a\x6d\xfc\xb6\x9a\xd1\x9c\xef\x91\x06\xde\xff\xd9\x23\x0d\xbc\xe7\xb3\x47\x1a\x78\x9f\x67\x8f\x34\xf0\xbe\xcf\x1e\x69\x20\xfa\xd9\x23\x0d\xac\x3e\x7b\xa4\x81\xcd\x9e\x3d\xd2\xc0\xe6\xcf\x27\x90\xdb\xb5\x47\x1a\x58\xff\xec\x91\x06\xf6\x48\x03\x7b\xa4\x81\x3d\xd2\x40\xfb\xec\x5c\x26\xed\x1e\x69\xe0\x6d\xcf\x1e\x69\x60\xed\xb3\x33\x06\xc7\x1e\x69\xe0\x91\x67\x8f\x34\xf0\xc8\xb3\x47\x1a\xd8\x23\x0d\xec\x91\x06\x36\x7c\x3e\xbd\xba\x97\x3d\xd2\xc0\x46\xcf\xbe\xee\x65\xc3\x67\x8f\x34\xb0\x47\x1a\x58\x7e\xf6\x48\x03\xef\x7c\x76\xc3\x07\xbd\x47\x1a\xd8\x23\x0d\xbc\xf5\xd9\x23\x0d\xec\x91\x06\xde\xfa\xec\x91\x06\x3e\x15\xff\xe8\x1e\x69\x60\x8f\x34\xf0\xb6\x31\xf6\x16\xd7\x66\xcf\x1e\x69\x60\x8f\x34\xb0\xf2\xec\x91\x06\x56\x9f\x3d\xd2\xc0\x1e\x69\x60\x8f\x34\xb0\x47\x1a\xf0\xcf\x1e\x69\xe0\x53\xf7\x3d\xd5\x4c\xf1\x7f\xb3\x91\x2c\x78\xb6\x48\x2e\xb2\x78\xc3\x94\x6c\xea\xcc\x48\x6c\x78\x2d\xa9\xe0\xbd\xde\xab\x90\xa4\x64\xef\x58\xe5\xfa\x9b\x60\xe1\xc2\x0a\xf6\xda\xae\xc1\x87\x58\x82\x9d\xa8\x62\x77\x13\xbc\x8e\x0f\xf6\xc3\x4b\x34\xad\x35\x2e\x5f\x9c\xc3\x34\xd9\x6a\x0f\x27\xb2\x0b\x55\x74\x21\xf0\x86\x3f\x45\x5a\x7a\x66\xcb\x1f\x3d\x5c\xb4\xaa\x0a\x9e\x52\x8f\x48\xc8\x8d\x6f\x38\x0e\xac\x56\x7d\x49\xb2\xaa\x19\x90\x92\x95\xb2\x4e\x28\x14\xe8\xc1\x82\xeb\x1c\x95\x5d\xd8\xa7\x37\x48\x90\x5b\x7c\x2d\x61\xfd\x17\x68\x2f\xb4\xe8\x28\x7e\xaf\xb8\x63\x87\x49\x69\x61\x57\x93\xe5\x74\x4f\xae\x3b\x5e\xa0\x6b\xa9\xdf\xd8\xcb\xbd\xb5\xfd\x7a\xac\x00\x90\x6a\x59\xf2\x2c\x46\x38\xa1\x3c\xd9\x16\x16\x4e\x2b\xd0\xde\xbb\x70\x90\x5c\xae\xf9\x2d\xc4\x40\x55\x65\x5e\xe2\xe7\x14\x45\x10\x2d\x6a\x46\xf3\x05\x90\x91\x41\x6a\x5d\xeb\xff\xfb\x08\x6b\x16\xb3\x82\xf2\xf8\x7c\xbc\xbe\xae\xf4\x39\x50\x41\xcc\x79\x6d\xf3\xcb\xa1\xae\xca\x6f\xd6\xc0\x27\x51\x73\xbc\xe3\x27\xee\x23\xfc\xe3\x41\x82\xa5\x47\x35\x9c\x2e\x30\x62\xc0\x94\xe5\x2a\x54\x13\xe2\xb3\xc5\xbd\x75\x27\x08\x2d\xaa\xd9\xdb\xed\xbb\x94\x7a\xc1\x8b\x85\xa0\x25\xcf\xdc\x6d\x39\xc3\xc3\xc9\xa5\x58\xb2\x0c\x13\xa7\x82\xe4\x9b\x39\x95\x65\xa3\xe9\xb8\x60\x27\xe4\x0a\xcb\xfb\xa5\x28\x16\xc6\x66\x57\x4c\xbb\x5c\x83\x84\x4a\x5e\xd2\x4b\xbe\x69\x62\xae\xe9\x5a\xcd\x1a\x4e\x1b\xe2\x11\x30\x61\xf8\x92\x14\x8c\x30\xa1\xeb\x85\x39\x98\x23\x99\xdf\x98\xb3\xd9\xf9\x76\x32\x4c\x41\x62\x8a\x69\x1f\xe9\xa5\x89\xa9\xa5\xfd\x24\x84\xa6\x27\x83\xf6\x9b\x08\xda\xc6\x01\x10\x65\x25\xac\x8c\xe9\x1c\x0b\x23\x1b\xd6\xf0\x2c\x22\x27\x89\x14\x98\x11\x47\x32\x37\x9a\x4f\xcd\x90\x71\xf9\x3b\x8a\x5e\xc0\x2b\x43\xdc\x1d\xb8\xed\xa8\x6e\x55\x22\x3a\xa7\xbc\x30\x17\x38\x91\x00\x5f\x06\xdc\x53\xf8\xa6\x07\x75\xb5\x6f\x50\x07\x92\x7a\xfc\xfb\x04\x65\x30\x4f\xc1\x4b\x1e\x07\x75\x47\x7a\xbc\x02\x2f\x81\x8a\x20\xe9\xde\x9c\xc5\x92\x3e\x80\xb7\x88\x96\xb2\x11\xda\xdc\x83\x4c\x96\x55\xa3\x03\xad\xcb\x29\x70\x4f\xe6\x46\xca\xa4\x98\xf0\xa9\x0d\x74\x9c\x96\x54\xd0\x29\x1b\x7a\x72\x86\xad\xa0\x3a\xdd\x5e\x00\x9e\xe6\xae\x72\x7e\xd4\x47\x65\x26\xd5\x9a\xd5\xe2\x4b\xf2\x5f\x47\xbf\x7c\xf6\xfb\xf0\xf8\xeb\xa3\xa3\x9f\x9f\x0d\xff\xf3\xd7\xcf\x8e\x7e\x39\x81\x7f\xfc\xe5\xf8\xeb\xe3\xdf\xdd\x0f\x9f\x1d\x1f\x1f\x1d\xfd\xfc\xdd\xab\x17\xb7\xa3\xcb\x5f\xf9\xf1\xef\x3f\x8b\xa6\xbc\xc3\x9f\x7e\x3f\xfa\x99\x5d\xfe\xfa\x9e\x2f\x39\x3e\xfe\xfa\xcf\xf1\xc1\xa0\xd4\xc8\x67\x7f\x71\xcf\x9e\xa2\x9e\x1f\x24\xe6\x69\x8b\x7c\xb6\x7e\xf9\x6d\x2d\xe7\xca\xf5\xb7\xce\xe2\xb7\x5d\xff\x3a\xd9\x44\xbe\x9a\xb4\xe3\x73\x45\x64\xc9\xb5\xb6\x06\x21\x0d\xa1\x39\x96\xcc\x73\xcb\xb0\xf8\x04\x45\x21\x57\x21\x44\x44\x6b\xd5\x47\x93\x25\x5d\xbc\x0d\x1c\x12\x82\xf0\xb2\x2a\x58\xc9\x84\x06\xc6\x33\x74\xe6\x0b\x78\x77\x4e\xda\x19\x64\x54\x18\xb3\x96\x3d\x64\x8c\xe5\x96\xc8\x3d\x6f\x0c\x9e\x3d\x6f\xdc\xf3\xc6\x77\x3d\xc9\x2e\xca\x9e\x7c\x55\xa1\x5b\x72\x25\xe0\x60\xf8\x02\x5e\x31\xe7\x61\x86\xaf\xfb\x42\x71\x39\x21\x2c\x16\xab\xaf\x1d\xc4\xc2\xff\xd1\x58\x87\x94\x03\x69\xa5\x8b\x15\x9b\x7e\x09\xfb\x19\xeb\x7a\x2d\xff\x52\x2e\x71\x02\xed\x0f\x29\xa2\x86\xde\x09\x24\x69\xc5\xb2\xa6\xe6\x7a\x71\x2e\x85\x66\x0f\x51\xc9\x74\x7d\x1c\xa7\x36\x07\xf1\xa6\x4b\x90\xf5\x84\xd9\xba\x3e\xfb\x19\x91\x15\xc2\x2c\x3d\x8a\x1a\x3e\x93\x4d\x91\x9b\xed\xac\x1b\x01\xa7\x24\xee\x74\x5c\x4d\xcc\x5e\x63\x52\x0a\xec\x35\xf8\xe9\x96\x49\x74\xe9\x22\x48\xce\xbf\x1a\x3e\xa7\x05\x13\x3a\xf8\x8b\x11\x24\x10\x84\x7f\xf4\x11\xba\x4f\xc1\x96\x19\xd5\x7c\xce\x0b\x36\x65\x97\x2a\xa3\x05\x88\xd2\x6d\xeb\x67\x67\x8f\xd0\x05\xe7\xa1\x96\x85\x22\xf7\x33\x66\xf4\x15\xc3\x27\x30\x69\x09\xbc\x78\x53\xca\x05\x29\x65\x9d\xe2\xe9\xb1\x83\x2a\xcc\x9a\x32\x2a\x57\x45\x6b\xb3\xf7\x2e\x3b\x0a\x19\xcc\x58\xca\xc2\x22\xa6\x15\x8b\x96\x2e\x1e\xef\x12\x01\xf7\x8b\xfc\x4d\xb0\xfb\xdf\x0c\x15\x8a\x4c\x0a\x3a\xf5\x49\x51\x86\x41\x2d\xa7\x9a\xa6\x27\x6c\x3d\xba\xd0\x00\x07\xd6\x30\x42\x8b\x7b\xba\x50\x6d\x2a\x5b\x3b\x36\x4f\xd0\x62\x9e\x1f\xc3\x2d\xa6\x8a\xf8\xb1\xf3\xe8\x97\x7d\x7e\x0c\xf5\x47\xe7\x67\xa3\xdf\x6e\x7e\xba\xf9\xed\xec\xe2\xd5\xd5\x75\x7c\xc2\x8a\xd4\x0c\x15\xec\x40\x1a\x58\x19\x61\x77\xc1\x87\xe9\x4e\xa4\x3a\x01\x7f\x19\x94\x3c\x8b\x5c\xde\x27\x3a\x8b\xcd\x99\x62\x34\x4e\xf4\x64\xb4\xa2\x63\x5e\xf0\x14\xf5\xb2\xaf\xeb\x0b\x20\x7e\x01\x3d\x60\x51\xe4\xf9\x69\x5e\xcb\x0a\x97\xcf\x25\x64\xa6\xbb\xd9\xbb\x89\x3f\x21\x82\x0d\xdc\x98\x49\x97\x90\x69\x4d\x85\x6e\x33\xfe\xda\xd3\x5c\x37\x42\xf3\x94\x12\xf8\xad\x1e\x9c\xad\x43\x62\xd2\xbc\x3f\x38\xcc\xb3\x3c\x67\x79\x67\xdb\x12\xde\xbc\x9b\xa8\x1f\xe7\x6e\x72\x41\xe6\x0f\x19\xbd\xbe\xb9\xfa\xdf\x4b\xf7\x66\x51\xa5\x79\xb8\xfb\x41\x29\xae\x65\xd5\xdb\xee\xbe\x61\xa5\x9c\xef\xf7\x77\x57\xf6\xd7\xeb\x3b\x5b\xaf\x2b\x7c\xd3\x88\x50\xbb\x10\x01\x69\xa4\x94\x79\x02\x6b\x1e\xf9\xf4\xfb\xee\x5b\xc3\x36\x40\x35\x23\xe6\x2b\x42\x73\x5a\x14\x8b\x50\xe5\xd7\x12\xe1\x6b\x7b\x69\xb8\x10\xca\xaa\x09\x2d\xd4\xc7\x2a\x70\x52\x34\x15\xa3\xb4\xbe\x92\x8d\xe8\xa7\x50\x31\xe1\xc4\x79\x42\x48\xce\x84\xd4\xd6\x22\x35\x13\x84\x7e\x1b\xb5\xcc\x08\x3a\x82\x03\x0c\x82\x8e\xd6\x90\xa0\xb4\xdc\x06\x8a\x0a\x57\xee\x5c\x8c\x3c\x45\x98\xb3\xd7\x28\xa6\xd6\x2b\x2a\xad\x6b\x78\x22\xe3\x3d\x62\x35\xa3\x39\x78\x49\x2a\xaa\x67\x58\x1f\x5b\x52\x75\xc7\x72\xfc\x45\x62\x5d\x80\xcf\x11\x81\x30\xaf\x9b\xda\xad\x59\x5f\x97\xd6\x01\x26\x0e\x56\x09\x43\x22\x49\x8a\x5f\x7d\xab\x17\x22\x81\x05\x9b\x4d\x78\x2d\x8a\xc5\x1b\x29\xf5\x37\x1e\x0a\x7b\xdb\x97\xe3\x47\x6b\x60\x77\xb3\x89\xc0\xd2\xa2\x40\xf2\x10\x0e\x0e\xb0\xc6\x00\xc0\x3b\x95\x33\x9a\x0d\xf9\xa3\x32\xc6\xba\x11\x67\xea\x45\x2d\x9b\x68\x6d\xab\x4f\x03\xee\xc5\xd5\x05\xc8\xbe\xc6\x96\x8e\x09\x5d\x2f\x2a\xc9\x31\x2e\xd6\xb3\x1b\xe2\x7b\x5b\xa4\x17\x72\xb6\xe4\x7a\x1c\x42\x5e\xd1\x05\xa1\x85\x92\x6e\xdb\x6d\x86\xd3\x92\xdb\xce\xf9\x04\xcd\xc7\x63\xa9\x67\x2b\xce\x40\x2a\xe2\x9d\x13\xab\xe3\x0d\x82\x0a\xb4\x36\xd9\x97\x8b\x95\x61\x35\xe4\xbd\x54\x35\xcb\x58\xce\x44\xf6\xb1\xde\x88\x6d\x17\x44\xc1\xad\xba\x96\xc2\xb0\xd7\x6d\xdf\xab\x2b\x5f\xec\x67\x77\x23\xbc\x45\x90\x89\x65\xdd\x62\x14\x8a\x07\x81\xb9\x36\x2a\x25\x29\xe9\x6a\x02\x7e\x3c\x3c\x74\xdf\x35\x63\x56\x98\xcd\xe6\x45\x81\xcd\xbd\xa8\x46\x17\x37\x2f\xe9\x94\x11\xaa\xfd\x25\xd4\x92\x30\xa1\x9a\xda\x9e\x1b\x1e\x9f\xbe\x97\x4b\xa6\x7c\xdb\x05\xaa\xc8\xf7\x57\x17\xe4\x19\x39\x32\x73\x3b\x06\x8d\x63\x42\x79\x01\xf5\x88\x10\x4e\x5a\x72\x32\x4e\x20\x0c\x2e\x53\x6a\x13\xae\x2c\x1f\x21\xb2\x46\xd1\x32\x20\x42\x12\xd5\x64\x33\xb7\x06\x5c\x0a\xef\x67\xb5\x00\x35\x49\x09\x3e\x7b\xb6\xd3\x9f\x3c\xfc\x5e\xb1\x7a\xdb\xd7\xd6\x88\xc3\xef\x9f\x50\x1c\x86\x56\xa2\xb9\xfe\xdd\x0d\xc3\xbb\x5a\x32\x4d\x73\xaa\xa9\x15\x93\xee\x0b\xfb\x53\xbb\x17\x96\x09\xc2\x52\xb1\x97\x5c\x34\x0f\x18\xbb\xdd\x89\x38\xc2\xcd\x25\x50\x04\xd7\x0b\x36\x1a\x0e\x28\x16\xac\xf9\xe2\x95\x1e\xb2\x77\xaf\x3a\xd7\x68\xf0\x88\xd5\x0d\x52\xc2\xd5\xce\x18\x43\x88\x8a\x5c\x96\x2b\x44\x42\x71\x4f\x4a\xdf\xc2\x76\x42\xfb\x8b\xe9\x9e\x3f\x76\x84\xa5\x60\x73\x96\xd0\xab\x71\xe9\x52\xbe\x34\x6f\x33\x8b\xe3\x4e\x2e\xbc\x9e\x14\x74\xcc\x0a\x5b\x51\x84\x25\xa1\x3d\xde\xb0\x9e\xa2\x11\xb5\x2c\xfa\xc3\x28\x7d\x23\x0b\x86\xf8\x15\x6e\x21\xcc\xeb\x3f\x8a\x75\x80\x97\xf4\xb5\x0e\xe0\x94\xeb\xac\x03\xb8\x41\x3f\x86\x75\x68\x12\x14\x44\xb2\xbc\x0e\x46\xdb\xec\xae\x03\xe8\x5f\xbb\xbe\x0e\x8a\x65\x99\x2c\xab\x51\x2d\x27\x3c\xfe\x76\xf4\x29\xb6\x2d\x45\x6d\x5a\x17\xba\xd0\x57\xcb\x13\x51\x6c\x75\xbf\x4c\x93\x12\x78\x2c\xa8\x0f\xd5\x28\x07\x1d\xb2\xcf\xff\x0c\xc4\x39\x70\xbb\x65\x19\x6f\x47\x8f\x4f\xa0\x0e\x73\xc6\xcc\x88\xf6\x85\x7f\x44\x89\xd7\x07\x22\x63\x42\x70\xb4\x17\x81\x2b\x33\x5a\x40\x2b\xf8\xb4\x5b\x45\x7a\xae\xdb\x5b\xa6\x2b\x40\x90\x82\x64\x38\xf8\x5d\x50\x6c\x4c\xc1\x3d\xef\xc2\x97\x42\xe6\x2c\xc8\xa5\x84\x22\xbb\x24\x72\x6e\x11\xc3\x07\xc6\x70\xc0\x57\x46\xdb\xb3\x99\xf9\x2c\xef\x8c\xac\x25\xb6\xcd\x4c\x1a\xf2\x95\x6f\x50\x6f\xd6\x95\x89\x9c\x8b\x29\x04\xac\x06\xa4\x66\x05\xc2\x6d\x59\xf6\x7c\x87\x1e\xaf\x43\xe0\x38\x8e\x20\xc7\x6e\x1c\xd9\xae\xd8\xb8\x1f\xaa\x40\x07\x9f\xa0\xfc\xe4\x8a\x1c\xbc\x74\xfb\x75\x60\x71\x69\xaf\x5f\xdf\x86\x59\xc9\x54\x2c\xb0\xf6\x02\xfe\x64\xeb\xe2\xb4\x57\xb5\x22\xf1\xa8\xe3\x1a\xfa\xe3\x8d\x31\xd1\x3b\x2e\x72\x0b\x28\xd5\xd9\x45\xe7\xc0\xb3\xa6\x61\xda\x66\xfe\x40\x0b\x9e\x87\xf2\xe8\xcb\xc4\xa6\x6b\xfe\x14\x90\xe1\x56\xae\xe9\x1b\x34\x60\x5d\x94\x6d\xf8\xf6\xa8\xb2\x27\xb0\x4f\x12\xbe\x17\x70\x07\xcd\x7c\x87\x44\xc8\x35\x63\xf4\xb0\x75\xc9\x77\xc0\xca\xce\x1d\xf2\x80\xfc\x88\x14\x39\x33\x3b\x33\x9c\x43\x73\x31\x55\xa1\x17\x84\x16\xa9\x35\x07\xf8\xac\x73\x83\xb8\x6b\x30\xa9\x65\xe9\x4a\xb6\x97\xcd\xfc\x0e\x76\x63\xca\xe8\xef\x70\x61\x7c\xdc\xae\x88\xc2\x98\x14\x1f\xb9\x23\x62\x5a\x2a\x7a\x5e\x9b\x15\xd4\x9c\x16\x37\x55\x7c\xd3\x78\xd2\xb3\xb8\x78\xf1\xea\xe6\xac\x4b\x19\x28\xc3\x16\x5b\x80\xc1\xe7\x84\xe6\x25\x57\x0a\x22\x3e\x6c\x3c\x93\xf2\x2e\x69\xc8\xa3\x35\xcd\x3c\x83\xda\x30\xc5\xa7\xea\xd4\x72\x94\xa1\x59\xb8\x63\xc2\x45\xe1\x8b\x5f\xc0\x5d\x28\xb4\xb2\x21\x84\xe4\xc9\x93\xcc\xcf\x1e\x8e\x1e\x54\xfd\xfb\x64\xe7\xd5\xe5\x01\x00\x08\x38\xbc\x5b\x57\x3b\x56\x4f\x55\x1a\xaa\xda\x72\x63\xe5\xf5\x73\x5f\xd3\x0e\x76\xed\x3a\xa2\xf5\xba\xf5\x45\xb2\x5a\x7f\xc6\x54\x7f\x4d\x19\x7b\xe8\xa5\x69\x49\x22\x39\x43\xa0\x55\x06\x55\xca\xf4\xd1\xe2\x2d\x88\x6f\x1f\x02\x32\xbd\xfd\xd3\xc3\xbe\xf0\x37\xce\x8a\xc2\x6c\x24\x35\x62\xe2\x50\x85\x19\x9e\x60\x9b\xcc\xe8\x9c\xb5\xed\xe4\xd8\x64\xc2\x32\xb0\x16\xc2\x59\xa4\x37\x5b\x3b\xe2\xda\x35\xd7\x75\x68\x5f\x5a\xe2\xd8\x94\x94\xfc\xc1\x50\x18\x8e\x18\xe6\xa1\xda\x56\xfb\xeb\x3f\x4e\x00\xea\x25\x90\x7d\xe0\x8b\x91\x07\x66\x87\xc2\x41\x5c\xbd\x8f\x36\x62\xcb\x7c\x70\xcd\xb4\xb1\xd4\x70\xdd\xc2\xf0\x83\xb1\xac\xea\xa6\x87\xcb\x90\x12\x1a\x26\x61\x78\xb8\x57\x4e\x91\x78\x1f\x20\x54\x6c\x69\x32\x3a\x88\x53\xde\x9e\x2a\x74\x4c\xd6\x14\xc4\x3c\x59\x08\x99\xbc\x7f\x18\xf9\x03\x06\xab\xc8\xae\x04\xac\x52\xeb\x78\xb1\x53\x0d\xe0\x66\x27\x17\xf1\x8e\xda\x2e\x5c\xef\x85\x42\x18\x31\xde\x96\x6b\x59\xd9\x43\xbc\x26\xda\x59\xaa\xcb\x07\x96\x2d\xb5\x04\xb7\x6d\x6f\xcc\x7d\xa2\x77\x89\x19\x31\x5b\x57\xe0\x33\x59\x96\x54\xf4\x57\xaf\x95\xc8\x31\xcf\x91\x1c\xa7\x8b\x59\xea\x8c\xa9\x84\x59\x68\x0f\x2c\x6b\x34\x73\x48\x5d\x1d\x76\x89\x77\xda\x88\x29\x2e\xa6\xb6\x18\x57\xd6\x1e\xba\x20\x89\x2c\x47\x07\xa0\xaf\x4a\xa9\xc9\xd1\xe1\xe9\xe1\xb1\xeb\x20\xe1\x49\x38\x54\x61\xf6\x33\x56\x3e\xb6\x13\x52\xbc\xac\x8a\x05\xcc\xe1\x10\x01\x57\x13\x1a\x19\x98\xc7\xe5\xd1\x79\xdc\x32\x35\x63\x45\x01\xed\x74\x75\x4d\x1d\xd0\x08\xfe\x16\x7a\x89\xd7\x4d\x86\xc6\xfb\xd1\xe1\xef\x87\x03\xc2\x74\x76\x4c\xee\xa5\x38\xd4\xe8\x87\x25\xb7\xa0\xd9\x26\xd1\xe4\x89\x58\xc8\x06\x7a\x82\xe0\xb6\x79\x6c\x9a\x8c\x1a\xa5\xac\x41\xcd\xc1\xd8\xcc\xf0\xf5\x34\x29\x73\xf9\xc0\xb5\x61\x90\xba\x01\xe3\xe9\x19\xea\x2f\xd8\x2b\x9c\x2a\xe8\xf8\x75\x3a\x63\xb4\xd0\xb3\x85\xd7\xa9\xb0\xdd\x82\x22\x8d\xb0\x9f\x7c\x12\xdd\xc4\x93\x0d\x0b\xdb\x9c\x65\xa7\xfb\xcb\x59\x1a\xdf\xd9\x5e\x0e\xdb\xc8\x75\x5b\xcb\x41\xcb\x39\x96\xf7\xd5\x5d\xee\x8b\x4f\xaf\x73\xdc\xb4\xae\xfa\x91\x9c\x2f\xde\x8c\xce\xdf\xd9\x2f\x0e\xbe\xb4\x6f\x18\x97\x0c\x04\xd5\x67\x9f\xb4\x91\xac\xf5\x52\x5f\xe9\x29\xec\x25\xab\xe7\x3c\x63\x27\x4f\xd0\x96\xac\x2f\x88\xa7\xf4\xeb\x40\x20\xa1\x02\x26\xbe\x2b\x3a\xd2\x0d\x92\xb3\xce\x5f\x65\x29\x85\xde\xaa\x05\xcd\xfc\xde\xc0\xfe\x7d\x0b\x82\xee\x7c\xc6\xb2\x3b\x0b\xd8\x96\xe6\xd8\x50\x8c\x91\x35\x1e\x4f\xc3\x40\xf0\xff\xc6\x85\x1c\x9f\x96\x54\x69\x56\x9f\xe6\x32\xb3\x32\x78\x98\x19\x0a\xb8\x98\x9e\x94\xf9\x71\x0a\x8a\x33\x09\x7a\x4c\x59\x0f\xcb\x52\xac\xc2\x05\xb0\x3c\x2a\x15\x57\x3e\xca\x36\x5e\xc0\xaa\x6c\xd5\x8d\x67\x56\xef\x45\x4f\x3d\x3a\xbf\xbd\xbd\x1d\xbd\xe8\x74\xe8\x84\x02\x65\xad\x2b\x07\xb4\x18\x74\xdc\xdd\x73\xdb\x9d\x69\xcf\xd9\x83\xcb\x75\x93\x96\x9e\x00\x73\x66\x14\x26\x3a\x2e\x16\xe4\x9e\x62\x41\xb3\x62\x69\xbc\xe0\xc0\x90\x71\x60\xb8\x8d\x39\x70\xdf\x32\x9a\xb3\x5a\x81\xc9\xc1\xe8\xf6\xc3\x09\x01\x4d\xbd\x6d\xdb\x79\xa3\xb4\x2c\xc9\xcc\x4e\x15\xd7\xd0\x8b\x42\xbc\x70\x27\x70\x29\xd1\xbd\xa2\x48\xcd\x2a\x34\x49\xec\xdf\x7c\x12\x06\xc7\x0a\x0b\xc2\x75\x0e\xa0\x54\x29\xc9\xc2\xa5\xb2\x6a\x3a\xf6\x58\x13\xb8\x40\x49\x4d\xaf\xf0\xe9\x05\x5b\x9e\xf4\x84\x2f\x4f\xd2\x31\xe6\xdd\x4b\xd2\xe3\x0f\xfd\xa0\xd5\x93\x5e\x10\xeb\x49\xef\xa8\xf5\xc4\x7a\xd9\xed\xe1\xc2\xd8\xbb\x21\x34\xcd\xa3\xe0\x5e\xcc\xdb\x3e\x94\x19\x15\x52\xf0\x8c\x16\xfc\xdf\x2c\xc7\x7e\xa6\xb2\xd1\x55\xa3\xc1\xdf\x92\x51\xc5\x86\x73\x5a\x73\xc3\x50\xb1\xe1\x87\x4f\x82\x10\xe6\xb6\x6b\x29\xc1\x19\xe1\xe3\x4d\x48\x71\x3a\x99\x3d\x75\xb5\x25\xae\x39\x66\xcf\x3b\xbc\xb2\x39\xe9\x27\x9a\xf4\xd6\x5d\x9a\xea\x59\x7f\x56\x13\xd5\xb3\xd5\x46\xd0\xc0\xdf\x8c\x56\xbe\x03\xb9\xf1\x3b\xd5\x4c\x1b\x8c\x96\x7a\xc9\xcc\xdc\x37\xd3\x7e\xec\xd9\x37\xd3\xde\xf0\x51\xd9\x8c\xed\x4e\x20\xf8\x06\xa8\x09\xa1\x83\xac\xaa\x0e\xbd\x92\x64\x0f\x58\x52\x64\xc9\x33\x69\x18\xcf\x56\x39\x0e\x17\x5c\x73\x5a\x5c\xb0\x82\x2e\x76\xbc\xff\x6c\x37\xea\x3e\xa3\x0a\xa3\xad\x2c\x27\x63\x36\x91\x35\x83\x08\x82\x30\x1c\xa9\x6a\x03\xa7\x38\x3f\xfd\x84\xbd\x3f\xfe\x18\x2d\x64\xcd\x53\xed\x52\xf7\xfb\x6f\xe5\x3d\x91\x13\xcd\x04\x39\x6a\x1b\xcb\x1f\x07\xce\x94\x36\x06\x91\x0e\x78\xa4\x25\x79\xfe\xcc\x0d\xf2\xe9\x05\x17\x20\xfc\xa2\xd4\x4e\x87\x97\x2c\x8d\xef\x8e\x2f\xd9\x2f\x4e\x9a\xa2\x1b\x63\xc2\xb8\x53\x4f\xbd\xab\x4f\x7c\x29\xc9\x73\xa0\xc7\xb3\x22\x2a\x72\x97\x14\xf2\xe9\x9d\x13\x9d\x55\x37\x32\xbb\xeb\xc9\x35\x7a\x7b\x3e\xc2\xb7\xbd\x33\x1c\x75\x7b\x3e\xda\x47\xa3\x76\xcb\x3f\x7a\xd8\xb6\x0e\xd8\xd4\xd7\x79\xb8\xb7\xb8\xda\xc7\x29\x3f\x75\x27\x60\xb4\xb7\xb8\x1e\x7b\xf6\x16\xd7\x06\x0f\xa6\x7a\x43\xdd\xe4\x8b\x9a\x66\x6c\xb4\x4b\x0a\x9c\x63\x20\x24\xb7\xbd\xa1\x48\xab\xc7\x79\x76\x21\x18\xcb\x91\x7f\xd8\xa9\x30\x32\x35\x33\x99\x34\x45\xb1\x40\x77\x1f\xaa\x01\x36\xfb\x24\x0d\xec\x15\x5e\x6d\xd5\x5c\x17\xc7\x5d\x47\x5d\x6b\x9f\x54\x1e\xb6\xd8\xa1\xe5\xdb\xeb\x64\x88\x37\xf6\x88\x62\x22\xde\xf3\x4d\xc3\x1d\x24\x8a\x4f\xcd\x72\x19\x0d\x03\x30\x70\x01\xeb\xc6\xf5\x7c\x68\x09\x31\xa3\x4e\x64\x9d\xf1\x71\xb1\x20\x33\x5a\x18\x83\xe9\x9e\xeb\x19\xa1\xe4\x8e\x17\x85\x7d\x4d\xfc\x42\xdd\xb8\x2e\x3c\xa8\xd5\x14\x52\x4c\x61\x31\xa8\xcd\x9c\x7e\xa8\x58\x66\xc6\xcc\x0a\x46\x45\x53\x21\x9d\x46\x47\x5a\xc8\xa6\x87\xe4\x69\x17\x5a\xf6\x3a\x95\xe0\x16\x25\xa0\x82\x72\x82\xb7\x9e\xf9\x6e\x09\x1c\x79\xed\xda\xa9\x0d\xe0\x9d\xd1\x34\x21\x2d\x0e\x5b\x40\x05\x59\xcc\x1e\xe9\xc0\xd6\xf7\x98\x63\x01\x05\x67\xd1\x63\xfd\x00\xef\x75\xac\x55\x48\x31\x14\x6c\x8a\xf5\xd4\x96\xa1\x61\x86\x23\x8e\x8f\xf9\x74\xbe\x3a\x57\x69\x59\x11\x5e\x96\x2c\x37\x36\x72\xb1\x20\x73\x4e\xa3\x29\x81\xda\xed\xf6\x44\x91\x23\x21\x89\xac\x8c\xe8\x6a\x04\xd7\xd0\x33\x5f\xcd\x1a\x4d\x72\x79\x2f\x12\xaa\x22\x7c\x83\x6b\x32\x66\xfa\xed\xed\xad\x21\x81\xfa\x76\xed\x01\x58\x6a\x52\x1d\x4b\xcc\x1a\x8d\x1e\xf7\xf3\xed\xc7\xce\xb6\xca\x4d\x86\x4b\xdd\x0d\x00\x32\x73\xa3\x65\xa3\x77\x44\x8e\x3c\xe6\x3e\xc2\x4a\xf4\xc0\x50\xe4\xd0\xef\xbd\xe9\x09\x19\xfe\xb9\x1d\xae\x4f\x2b\x6f\xef\x7b\x5a\xfb\x28\x9d\xf3\xa8\x76\x57\x7d\x1c\xb1\x47\x30\xb6\x6d\xb5\x5c\x00\x33\x37\x6e\x26\x13\x56\x83\xa4\x03\x82\x57\xd2\xd0\x7d\xff\x1a\x27\xc3\xe2\x1c\xb8\x36\xa5\x8a\xe9\x01\x40\x7c\xdb\x92\xef\x47\x86\xb4\x58\x78\xd0\x1f\xaa\x66\x0a\x20\x9b\x05\xb9\x7c\xfd\x4d\xdc\x11\xed\x03\x00\x3c\xad\xb0\x0c\xe6\xf9\x5a\xc4\xa5\xfd\xf5\x7b\x1e\xd6\x61\x33\xd8\x63\x91\x15\x52\xd9\x22\x46\xd8\x97\x6c\x46\x85\x60\xce\x21\xc5\x35\x78\xb3\xc7\x8c\x09\x22\x2b\x86\x69\x6f\x51\xc4\x50\xa2\xb8\x98\x16\x8c\x50\xad\x69\x36\x3b\x31\xd4\x09\x77\x16\xda\x6a\x41\xfb\x1b\xa5\x6b\x46\x4b\x3c\x13\x35\x2b\x29\xc7\xe1\x09\xcd\x6a\xa9\x14\x29\x9b\x42\xf3\xca\xbf\x2c\xce\x93\xc8\xa0\x6e\x5b\x61\xf1\x98\xdb\x2b\x28\xb3\x68\xcb\x12\x07\x2d\x85\x76\xfa\x32\x6c\x2b\x02\xee\xb3\x01\x34\xcf\x2d\x2b\xbd\x20\x66\x69\x8b\xe8\x5a\x91\x09\xaf\x95\x26\x59\xc1\x99\xd0\x76\x66\x88\x0c\x06\x34\x0c\x9c\x3a\x2d\xec\x8a\x28\xbb\x24\x22\x07\xe3\xbb\xd2\x8a\x40\xf9\x9d\x27\xc2\xbd\x2a\xe7\xca\xfa\x3a\x54\x5c\x3f\x5f\xea\x1a\x48\xe0\xc1\x71\x2b\x02\x47\xc7\x29\x38\x48\x91\xfd\x55\x40\x42\xd0\xe0\xcd\xf5\xf8\x84\x46\xfc\x09\x7c\x05\xba\x3c\xb8\x7b\x3d\xe8\x54\x06\xb7\xb6\x85\x6d\xf0\xbf\xc4\x75\xe0\x40\x09\x36\x37\xf7\x80\x65\xcc\xa8\xa2\xb4\x47\x26\xf3\xe4\x3c\x46\xd3\x7a\xca\xf4\xb9\x9b\x7f\x6c\xe9\x6a\x1f\xdc\x26\xec\x84\x19\x3a\x88\xda\xcd\x81\x7d\x18\xc9\x1c\xa0\x14\x5a\xb8\x8b\x75\xed\x39\x71\x5e\x91\xb6\xd7\xed\x23\x3d\x3f\x9d\x45\x85\x15\x4f\x9e\x50\x55\xd1\x8c\x29\x72\x74\x35\x3a\x1f\x90\xd1\xd5\x85\x2d\x6b\x92\x93\x65\x6c\xb9\xd8\x65\x69\x1b\xc2\x5a\x0b\x78\x1d\x71\xbe\x37\x4b\x40\x52\x00\x32\x65\xe9\x1d\x79\xa3\x2c\x2e\xeb\xf9\x76\xad\x28\x00\x13\xcd\x37\xe8\x26\xaa\x01\xd3\xc8\x46\x2f\xcc\xd9\x46\x83\xc4\xde\x5a\xd6\xc2\xfb\x58\x2c\xf6\xc8\x48\x0e\x8e\xe2\xe7\x6b\x37\x1d\x02\xda\x6e\xa5\xac\x22\x00\x1a\xb3\xb6\x1f\x79\x84\x14\x28\xbe\xb2\xd9\xd8\x4f\xde\x16\x37\xb0\xa2\x5e\x31\xa5\xe8\x94\x8d\x22\x93\x81\xfa\xed\x8e\x0b\x59\x44\x2d\xc3\x86\xb6\xb4\x05\x22\xa5\xf9\xdf\x84\xe5\x86\xa1\xdb\xa6\xc4\x89\x44\x51\xe0\x2e\xd7\x7d\xcd\xb5\x66\x20\x1f\xa0\xdb\x11\x9c\xdd\x65\x74\xcb\x6e\x99\x63\xd4\x78\x76\xd1\xc3\xf1\x8c\xe2\x2f\x72\x2c\x18\x1c\x33\x32\xae\x39\x9b\x90\x09\x87\x0a\x46\xa8\xed\x1b\x20\x4c\x3f\xc5\xe0\x8d\x52\xac\x86\x69\x5b\x87\x9c\x9b\x7e\x1c\x3d\x3f\xda\xf9\xeb\xba\x11\x19\x0d\x9a\x42\x02\xf6\x16\x9f\x90\x29\xd4\x13\x5a\xf7\xd3\x7f\x3c\xfb\xcf\xbf\x91\xf1\xc2\x58\x4a\x70\x27\xb5\xd4\xb4\x70\x04\x90\x82\x89\xa9\xd9\x45\x50\x76\xe2\x24\x76\x07\xbf\xc9\x6f\x4e\xc1\x4b\xae\x71\x81\x9e\x7f\x7e\x37\x4e\x12\x7a\xa0\x99\x9c\xe6\x6c\x7e\x1a\x1c\xa1\x61\x21\xa7\x71\x6f\x3d\xf7\x70\x47\x4d\x95\xc7\x66\x45\xf4\x7d\xa3\xb7\xda\x40\xdd\x75\xf7\x20\x33\x79\x8f\x6e\xd4\xd5\xab\x1a\x40\xa1\x54\xb2\x6a\x0a\x58\x38\xf2\x8d\x07\xb0\x6b\x14\x5b\x86\x06\x4a\x75\xcf\x07\xdc\x0e\x52\x18\xec\xb0\x4b\xb2\xde\x16\xd3\x3a\x32\xa5\x05\x66\xb0\x11\x6f\xdf\xa8\x23\xda\x0f\xfe\x0d\x2d\x8a\x31\xcd\xee\x6e\xe5\x4b\x39\x55\xaf\xc5\x65\x5d\xcb\xba\x3b\xe7\x82\x1a\x6d\x7a\xd6\x88\x3b\xe8\xdb\xda\xa2\xb5\xca\xa9\x4d\xbc\x05\x60\xc5\xee\xc2\x46\x11\xe3\x66\x89\xf8\x99\xce\x18\x70\xde\xef\x76\x64\xf6\xc0\x5b\x17\xb7\x20\xcc\xd0\x1c\xaf\xe2\x84\xf3\x50\xe1\xd5\xfe\xfc\xd9\x7f\xfc\x1d\x99\x0b\x91\x35\xf9\xfb\x33\x28\x7e\x57\x03\x14\x00\xa0\xfb\x1a\x23\xa7\xa4\x45\x11\xab\xd4\x84\x2c\xc0\x1c\xb6\x8f\xf6\xca\xeb\xad\xdd\xee\xf7\x76\xd6\xdc\xde\xfe\x04\x9a\x18\xd7\x8a\x15\x93\x01\xa2\xa1\x78\x87\xf2\x21\xd8\x35\x87\x56\xe4\xc5\x23\xe9\x6c\xdf\x5d\x32\x97\x45\x53\xb2\x0b\x36\xe7\x59\x5c\xea\x40\x67\x57\x3a\x6f\x73\x01\xb2\x82\x2b\xd0\x25\xc7\x85\xcc\xee\x48\x6e\x3f\x0c\xea\x49\x96\xfb\x38\xc7\xaf\x42\x6c\x65\x4d\x42\x45\xcd\xa3\xf3\xef\xd4\xd2\x94\xb4\xaa\x8c\x1e\x0d\xb0\x56\x35\xbd\xef\x2c\x06\xb0\x26\x40\x0f\x4d\xb4\x7a\x92\xd3\x58\x52\x93\x58\x86\x76\x46\x46\x4c\x45\xbf\x22\xba\x00\x27\x3d\x07\xa6\xa5\x3e\x3e\x83\xa0\x73\x20\xda\x17\xba\xdb\x50\xc1\xbf\x11\xf9\x63\xc5\x56\xf7\x0d\xc5\xfc\xc1\x40\x0d\xd2\x1c\x1f\x90\x32\xf1\x81\x83\x1e\xd2\x10\xd2\x0a\x89\x3a\xeb\x22\x7c\xfa\x47\x49\xb5\xb5\x8f\x9c\xfb\x82\x92\x8a\xd5\x8a\x2b\xa3\x3a\xfd\x00\x17\xea\xbc\xa0\xbc\x0c\x02\xe7\xdb\x59\x04\xbc\xdc\xd0\xfe\x34\x9d\x53\x46\xca\xaf\x91\xcc\x2d\x1d\xc0\x41\xb1\xb3\xed\xbb\x2c\x3d\x72\xd3\x8c\xe1\xd8\xc1\xd7\x3f\x2c\x7e\x54\xaf\xfa\xc5\xb6\xd9\xf9\x0f\xed\x8e\x77\xb9\xb9\xf9\x8d\x67\xe7\xf8\xad\x4f\x89\x89\xc3\xfc\x3e\x56\x1e\xee\x89\xef\x89\x55\x25\xe5\xef\x01\xe7\xb7\x27\xa3\xcb\xea\x3b\xce\x22\xbc\xd2\x81\x59\x69\x9d\x38\x27\x88\x48\x9f\x40\x80\xb9\x8a\x76\x50\x72\xf8\xe5\xe1\x56\xe5\x07\xee\x4c\x2d\x2b\x3a\x05\xab\x6f\x17\x36\x68\x99\xa6\x10\xff\x74\x26\xef\x43\x96\x59\xd9\x6f\x19\x8e\xe9\x40\xb4\x67\x32\x69\x77\x30\x1f\xd6\x9d\x08\x6b\xb9\x62\x1f\x81\x7b\xba\x20\xb4\x96\x8d\x48\xaa\xc3\x87\x70\x9f\x0f\x07\xbf\x5a\x9a\xec\xb5\x14\xcc\xa5\x9e\xa4\x8c\x72\xdb\xf1\x0e\x43\x16\x0e\x17\xe4\xf9\xc9\xf3\x67\x9f\x8a\xbe\x02\x33\x5c\xd2\x57\xae\xbd\xbe\x82\x12\x60\xab\x73\x75\xfd\xc7\x77\xe1\x4e\xbd\xb2\x1e\xe8\xb6\xc1\x38\x77\x0d\x6c\xe1\x57\xf7\x35\xd7\xf6\x98\xdf\x73\xc5\xc8\x11\xd8\xbe\x44\xd6\x21\x80\x69\x12\x4c\x6e\xe8\x29\x49\x6c\x44\xde\x07\xcc\xad\x6a\xc6\xbb\x2a\x90\xac\xe4\x01\x86\xb6\x3e\x54\xf1\xa8\x6c\xea\x69\x7f\x0e\x0e\xc8\x11\x8e\x71\x88\x20\x8d\x09\x3b\xdf\xc3\x45\xb2\x7b\x75\xf9\x50\x25\x34\x24\xeb\x6f\xbf\x2e\x1f\x2a\x0a\xd1\x95\x6a\x27\x36\xee\x9f\x6c\x46\xe7\x0c\x30\x31\x79\x41\xeb\x02\x92\x38\x6f\x70\xc9\xc8\xb8\xd1\x84\x89\x39\xaf\xa5\x80\x88\x26\xe0\x2a\x8c\x0b\x46\x6a\x36\x61\x35\x13\x19\x53\xe4\xcf\x47\x3f\x9c\xbd\x81\x24\xff\x63\x10\xaa\xcc\xcd\xaf\x51\x36\x04\xd9\x99\x43\xf0\xba\x5d\x3c\x6f\xc4\xcd\xdd\x1c\x17\x10\xe0\x6e\x2d\xcc\xdc\xca\x46\x37\xb4\x00\xe8\xd0\xac\x68\x14\x9f\x6f\x4b\x44\x58\x70\xd5\x0b\x1e\x75\xa4\xfb\x38\xcc\xe7\xc1\x9e\xae\x40\xbd\xa6\x85\xf8\xdf\xd1\xed\xf5\x50\x79\x38\xb1\x30\xb7\xdb\xfa\xe5\xe3\x02\x0f\x7c\x3a\xd3\xb6\xa8\x70\x29\x53\x20\x48\xbc\x29\xa3\x83\x9a\xdb\xf4\xd0\x1b\x85\xf6\xac\xe0\x54\x6d\x6a\x80\xa5\x9d\x92\x6f\xdb\x61\x21\x95\x5b\xd8\x7e\x35\xb4\xf0\xee\x63\x43\x19\x86\xb0\xae\x46\x36\xd1\xc8\x6d\x28\x17\xff\x07\x4b\x0a\xbc\x27\x04\x53\xfd\xe1\x4f\x36\xa4\x04\xa3\x49\x93\xf6\x5c\x9d\xf8\x04\x73\x50\x65\xa0\xdb\x3c\xb8\x4c\x84\x14\xc3\x59\x00\xb2\x5f\xc9\x7c\x43\x97\x49\xac\x97\x23\xca\xbf\x91\x7a\x8d\xfd\x16\x91\x99\x2c\x6c\x05\x8e\x73\x6b\x8f\x99\xbe\x67\x4c\x90\xab\x11\x6c\x90\x59\x15\x04\xd3\x59\xbf\x4d\x98\x0a\x00\x10\xfa\xf6\xe2\x6c\x4c\x4d\xb0\xc1\xb0\x65\x9b\x5e\x91\x04\x2f\x4b\x8a\x8b\xc2\xaf\x4c\x32\x23\xfe\xd6\xaf\xb1\x2b\x77\xa6\x63\x39\x67\xb0\x05\x79\x5e\x47\x96\xd0\x6c\xcd\xef\x96\x24\xdf\x78\x95\xbc\x9c\xed\xb2\x39\xaf\x3c\xf4\x79\x03\x6e\x00\x07\xf5\x89\x79\xf0\xd5\xe8\xfc\x29\xf9\xef\xf7\x36\x7a\x6f\x86\x3e\x54\x84\x57\x59\x9b\x21\xb6\xe9\xcc\xdb\xac\xa8\x00\x1d\x21\xc2\x0a\x8b\xb5\xbc\x02\x9e\xfc\xd4\x22\x8c\x08\x1c\xd7\xf0\x44\x0b\x26\x68\xfd\xeb\x10\x70\xae\x64\x7e\xb2\xbc\xd4\xf6\x2f\xe2\x97\xdb\xd5\xbb\xa1\xc0\xb4\x99\xd4\x03\x5f\x25\xbc\xc4\x83\x21\xe0\xea\x8a\xc3\xa2\xbb\x85\x6c\x6f\x63\x47\x57\x17\x5b\xbc\x17\x15\xcf\x3f\xee\x7b\xf1\xbd\xda\x18\x4c\xb3\xd7\x05\x84\x2e\x36\xfd\xae\x60\x4c\xf6\x85\x6d\x5c\x63\xff\x1a\x8a\xeb\xa5\x26\x55\xcd\x14\x13\xfe\xee\xe4\xeb\x52\x97\x41\x2a\x74\x67\x31\x30\x3f\x4f\x9a\x62\x53\x45\x53\xd6\x41\x75\xae\x2f\x65\xa6\xbe\x10\x11\xd4\x4d\x3a\xa7\xbc\x00\x23\x3a\x80\x9b\x5a\x21\xc0\x26\x58\x6e\x48\x41\x21\x69\x8e\xf8\x19\x77\xac\x16\xac\x20\xa5\xcc\x9b\x02\x23\x59\xe4\xfc\x6c\xf4\xdb\xcd\x4f\x37\xbf\xbd\x7a\x7d\xf1\xfd\xcb\x8d\x2b\xf2\xb1\xcc\x84\xb5\x47\x7c\x40\x28\x11\xec\x1e\x28\x17\xa0\x4d\x67\xb6\xd3\x83\x47\x6b\x31\xcc\xf1\xc6\xe6\x1b\xa3\x47\x10\x5d\xd3\x93\xa6\x30\x5f\xda\x90\x82\x92\x6b\x3e\xa5\xf0\xb2\xd6\x28\x1b\xd7\x8c\xde\xc9\x46\x93\x79\x53\x08\x56\xd3\x31\x2f\xb8\x51\xe4\x08\x9b\x33\x81\xf1\x50\xf3\x07\x86\xc8\xb0\xdb\x13\xdf\x74\xf0\xb0\x19\x98\xed\x3c\x62\x16\xd5\x8c\x4c\x33\xeb\x14\xb0\xa8\x33\xf0\x61\x55\xf3\x39\x2f\xd8\x94\x79\x28\x87\x18\x54\xb1\xae\x1b\x9e\x16\xd5\x8c\x0e\xa1\x49\x3a\xb1\x9d\x4c\xe0\x44\xcd\xa4\x90\x35\x66\xdd\x20\xc0\xa1\x95\x10\x50\x24\x8b\x97\xd5\xf5\xbe\xc2\x84\xf8\x1b\x97\x98\x6e\xf3\xd1\x9f\x8c\x59\x6d\xee\xbf\x4f\xe3\x55\x37\x5d\x08\x6e\x4b\x81\xd3\x07\x47\x1b\xe7\x1d\xac\xf7\x50\xb4\x96\x0b\xbc\xdd\xf1\x18\x7b\x59\x28\xc1\xa0\xfd\xd0\xe1\x9d\x43\xd1\x68\xcc\x9a\x6f\xac\x76\x82\xc7\x62\xd4\x14\xc5\x0d\xcb\x6a\xb6\x69\x8e\x43\xda\xd2\x5f\x2d\x8d\xfd\x98\x13\x20\xf0\x24\x02\x74\xb3\xfd\xb2\x68\xf1\x59\x83\xc2\x86\x16\xb5\xaf\x6a\x0a\xa8\xff\x86\x36\xdd\xb8\x9d\x30\x5b\x15\x24\xa0\x71\xe5\xaa\x64\x62\xa4\x49\x67\x8f\x15\xf3\xa4\xb9\xed\xad\xa8\x52\x98\x27\xca\x45\xce\xe7\x3c\x6f\x68\x01\x64\x81\xab\xc8\xd6\x80\x50\xdb\xa2\x17\x39\x62\x19\xd9\xb1\x72\xc3\x12\xe1\x96\x57\x9d\xe2\x9a\xfc\x09\x27\xb3\xe0\x62\x3a\x84\xdf\x18\x32\xed\x7c\x86\x52\x0c\xe9\x70\xd3\x14\x9c\x8f\xca\xcf\x01\x4d\xbe\x5f\x83\x63\xe0\x8d\x3b\x6d\x8e\xa1\x2b\xc2\x84\x6c\xa6\x33\x58\xde\xba\xa4\xae\xa1\x58\xc1\x34\x34\x4e\xb2\xe9\xa3\x31\x0e\x0d\x7f\xb2\x73\xeb\x95\x08\x9b\x65\x75\x4f\xf6\x47\xe2\xeb\x88\x0d\xbf\xf6\xe1\x6f\xbe\x0e\x18\xb7\x5d\xd9\xc8\x00\xc2\x86\xb7\x49\xce\x59\x3d\xe7\xec\xfe\xd4\x9a\x81\x43\x23\xf7\x87\xb8\xf6\xea\x14\xb6\xf0\xf4\x4f\xf0\x9f\x28\x6a\x6e\x5f\x5f\xbc\xfe\x92\x9c\xe5\xb9\xcd\x12\x70\xea\x91\x11\xfa\xea\x84\xd0\x8a\xff\xc0\x6a\x05\xbd\x41\xef\xb8\xc8\x07\xa4\xe1\xf9\xd7\x4f\xe7\xb9\x20\xcb\x40\x45\x25\xad\x86\xf6\xf6\x6b\x59\xf2\x6c\x13\x71\x24\x78\x5b\x62\xf9\xa4\xc2\xe8\xa5\x15\x36\x16\x0a\x95\xff\x1b\xef\x79\xa0\xd4\x8d\x59\x21\xc5\x34\x00\x81\x35\xca\xeb\xa6\x52\x43\x70\xdd\x51\x14\x21\x1a\x06\x7d\xf2\x20\x9c\x20\xeb\x1c\x4a\x6b\xb9\xac\x3b\x79\x22\x66\x74\x68\x89\x15\x14\xf5\x52\xb1\xa9\xbb\x8e\x77\x46\x87\xaa\x10\xd5\x1a\x3e\x98\x1c\xef\x00\x13\x5d\xdf\x5b\xd7\x98\x0b\x95\xc9\x19\x15\x39\xfc\x98\x65\xb2\xce\x37\x3f\x27\x46\x14\x6a\x5f\x9d\x8c\x45\x3f\x58\x96\x05\x7a\x91\x11\x82\x54\x2c\xd3\x09\x96\x5a\x5d\x76\x6a\x38\xad\x37\x63\xc3\xe1\x1b\xc1\xff\xd5\x30\x42\x4b\x69\xf4\x82\xa4\xc6\xfb\xcb\x3b\x59\xd2\x05\x28\x7e\xb0\x68\x2f\x1d\xdc\x86\xc5\x2d\x54\x03\xf2\x86\x19\xbb\xab\xc5\xa5\x1d\x90\x97\x5d\xa0\xda\x81\x99\xe7\x0d\x82\x44\xda\x5f\x6d\x6e\x0b\x40\x19\xa7\x6c\xea\x8c\xbd\xc1\x84\xc0\xd2\x75\x29\x5f\x5d\x56\x73\xf6\x34\xbd\x63\x02\x23\x28\x66\x4b\x21\xe7\xb1\xa9\xe1\xa4\x65\x33\x96\x37\xc5\xe6\x5b\x3c\x5e\x90\x89\x51\x77\x6c\x60\x77\xc6\xa7\x33\xa6\xb4\xf3\x8c\x9d\x42\xf1\x0c\x66\x9f\xd2\x6c\xe6\xc9\x05\xe6\x13\xd4\xdd\xb7\x91\xe1\x92\x3e\x6c\x5e\x4a\x05\x52\x80\x6a\x87\xc1\x84\xc6\xa6\x6a\x4a\x27\x1e\x96\xcf\x93\x3a\x21\x2f\x0d\x61\x78\x23\x69\x55\x15\xdc\x29\x6e\x9d\x6d\xde\xf8\xc2\x01\x18\x03\x84\xcd\xc9\x84\xaa\x19\x97\x22\xf5\xa0\x65\x18\x28\xcc\x9a\xda\xc8\xb7\x62\x01\x58\x7a\x79\x6e\x54\x88\x9a\xd4\xac\x94\xf3\xcd\x5d\x7b\xc9\xc1\xc7\x34\x84\x1a\xb3\xc8\xc3\x40\x25\xfd\x48\xf4\xcc\x33\x8f\xb3\x61\xce\x4b\xb6\x24\x30\xf0\x00\x1a\x05\xd1\x35\xee\xa9\x1b\xd1\x26\x0c\x47\x08\x8f\x04\x95\x2e\x3e\x3d\x38\x2a\xad\x37\x45\x83\xa4\xf5\x74\x6b\x99\xf6\x67\xf5\xb4\x41\x8e\x69\x45\x7c\xdb\xf1\x3b\xbe\x78\x70\x29\x3d\xe0\x50\x91\xf3\x57\x17\x21\xf8\x57\xd8\x14\xcd\x41\xc3\xc5\x0d\xf7\x43\xbf\xc9\x37\xa0\x65\xf8\x8c\x9e\x28\x8a\x32\xcf\x59\x0c\xa7\x2f\xe6\xce\x21\xe2\x09\x74\x76\x3c\x17\x55\xa3\xad\xf2\x19\xb4\x63\xc9\x66\x54\x4c\x8d\xc2\x73\x21\x1b\x33\xb1\x3f\xff\x19\x26\x51\xb3\xbc\xc9\x58\x5c\x4d\x08\x3a\x5c\xf0\xe6\xfe\xd9\xa6\x84\xb8\xbe\x4f\x20\x97\x54\x46\x2b\xb7\x34\xe1\xea\xa9\x85\xd0\xf4\xe1\x4b\xc2\x4f\xd8\x09\x39\xf8\x73\xf0\xd1\x01\x50\x1c\x45\x4d\x55\x4b\x33\x15\x0b\xc8\x03\xb3\x2f\xb8\x86\xa2\x8c\x83\x70\x84\x13\x72\x69\xe8\x82\x0c\x4b\xbf\xb7\x01\xc6\xca\xb8\xdd\xd9\x01\xa9\xd9\x94\xd6\x79\xc1\x22\x4b\xda\xe5\x84\xdc\x07\x80\x46\x3e\xa5\x8b\x3d\x70\xa5\x95\xf5\x9c\x9f\xf4\x93\xb2\xf2\xbe\xb2\x43\x53\x75\x67\x24\x85\x61\x7e\xc3\x9c\x6a\x3a\x0c\xb8\xee\x29\x3a\xce\x86\xb6\x81\xf3\x90\xda\x7b\xdc\x0a\x95\xd3\x3f\x59\x28\xce\x21\xf5\xdf\xe2\x62\x48\x87\xd0\xd2\xf8\x0f\x13\x34\x4f\xe8\x20\xde\x07\x7f\xbd\xf4\xec\x14\x57\xee\x84\x5c\x4b\xdd\x1a\x40\x5e\x38\x26\xf4\x99\x5e\xcf\x71\x2f\xaf\x6f\xdf\xfc\x34\x7a\x7d\x75\x7d\xbb\x67\xbc\x7b\xc6\x0b\xcf\x9e\xf1\xee\x19\x6f\xc4\xc0\x91\x8c\x97\x89\xf9\xb6\x98\xae\xf3\x6c\xad\xcb\xd2\x5e\x6e\x86\x99\x58\xc6\xf8\x09\x95\x81\x5e\x8a\xf9\x0f\xd4\x18\xd4\x36\x41\xc0\x66\x2f\xae\x49\x74\xb7\x5f\x40\x63\xff\xfc\xa3\xaf\x03\xdd\x62\x15\x67\x8f\xb5\x5b\x61\x2c\x60\xdd\xae\xb5\xad\x5a\x28\x39\xff\xed\xea\xe2\xf2\xfa\xf6\xea\x9b\xab\xcb\x37\x5b\x2d\x43\x49\xec\xe9\xd8\x5f\x01\xca\x26\xea\x4c\xc2\x30\xad\x22\x54\xd5\x6c\xce\x65\xa3\x8a\x85\xef\xf9\xbd\x9e\x5d\xad\x96\xd4\x8a\x14\x0a\xa8\x58\xf8\x3e\xec\x6b\x07\x5c\x52\xc5\xd6\xa9\x55\x09\xc3\x6f\x59\x21\xb3\x44\xf4\xa1\x96\x25\x8c\xbf\x46\xa1\x7b\x7f\xe5\x2c\x61\xdc\x28\xb5\xee\x31\x15\x2d\x81\x8e\xae\x72\x97\xf0\xa2\x6e\xc1\xd3\xf6\x39\xd9\x37\xb5\x2c\x7b\xe2\x66\x37\x18\x24\x70\x69\x63\xeb\xae\xea\xa1\xed\xfe\xd0\x51\x8f\xad\xa1\xd7\xb6\x85\x30\xe6\x66\x59\xe9\xc8\xf2\x23\xd2\x57\xf7\xea\x7e\x1a\x3d\x63\x29\xd2\x2b\x5a\x7d\xc7\x16\x6f\x58\x62\x03\x9c\xee\x7a\xb3\x82\x65\x46\xe7\x21\x77\x6c\x81\xf5\xce\xe7\x6e\xb0\xb4\x1e\x40\x3b\xd8\xfc\xfb\x8e\xa5\x34\x66\xef\xb3\x6b\xf7\x1d\x4b\xa8\xe5\x76\xcf\x4a\x4b\x67\xb3\x85\xa0\xe6\x9b\x3d\xdd\xa9\x26\xd6\xbb\xda\xa5\xbc\xbf\x4c\x92\xee\xb3\x5b\x79\x25\xdd\xe7\xa9\xb2\x4c\xba\x4f\x8f\x87\xc9\xe5\x0d\xf6\x7c\xa0\x30\x41\x74\xd1\x91\xfa\x9e\x17\x12\x44\x0b\x84\x2b\xe6\x0a\x2c\xac\x02\xdb\xd3\xd2\xa4\x81\x10\xe0\xd3\x57\x76\xce\xf2\x03\x67\xa3\x5f\xc1\x93\x7c\x7d\x5b\xc9\x85\x49\xd1\xbe\x77\x5e\xfe\xa5\xc3\xc1\x56\xa4\x64\x9a\xe6\x54\xd3\x13\x73\x79\x06\xdd\x1f\x6d\x76\xfd\x7f\xfb\x5f\x16\x74\xcc\x0a\xf5\xf3\xe1\x57\xdf\x5d\xfe\xf4\x8f\xc3\x5f\xff\x3b\xfc\x0c\x34\x0d\xcc\xe0\x0c\xbe\x90\x38\x05\x40\x1d\x17\x32\x67\xd7\x40\x1d\xfc\x68\x8d\x94\x33\x4c\xd2\xb0\x1f\x00\xf0\xeb\x09\x56\x8e\xf9\x1f\x2b\x99\x2f\xff\x94\xd0\x58\x8b\xec\xa6\xc8\x86\xbd\x4d\x00\xab\xc2\xa7\x3f\xc1\xdd\x72\xc7\x9e\xb9\x8f\x7d\xab\x3b\xc6\xd0\x29\x9d\xc2\x3f\xbf\x71\x4b\x60\xf4\x5a\x0f\xcd\x2d\x00\x61\xd7\x98\x29\xdd\x4e\x9b\x07\xf3\xe7\x49\xc6\x12\x3e\x3d\x72\x6b\xbf\x83\x3d\x2f\x18\xac\x88\x5d\x2d\xe4\x00\x5e\xf5\xf1\x29\xe3\x2e\x6f\x9b\x9c\x8d\xae\xc8\x1c\x57\x78\x87\x16\xe7\x43\xb1\x6b\x97\x6b\xf5\xcd\x4e\xb3\x6d\x9f\x11\xb6\x0c\x94\xf9\x25\x96\xb2\xb8\xcf\x2d\x0e\xb3\xf2\x5d\xdf\xd8\xe6\x75\xff\xcb\xcf\x11\xbe\xf2\x24\xab\x9a\x81\x7d\xfd\x49\xc9\x4a\x59\x2f\xfc\x8f\x1e\x33\x71\xa8\xb4\xac\xe9\x14\xf0\x8d\x70\x70\xfc\x33\xff\x13\xfe\x61\x87\xbc\xd5\xbf\x46\x5f\x5a\x9b\xcc\x65\x45\x54\x1a\x60\xcb\x4e\xb2\x6c\xb7\x6f\x3b\xc2\xb1\xb3\xd4\x46\x2e\xdd\xa7\xdb\x06\xd9\x47\x01\xd0\xc2\xf1\xab\x08\x0e\x0c\x0b\xe5\x39\x68\x0b\x5d\xc0\xcb\x26\xe6\x64\x4e\x6b\x95\xd2\x07\x19\x9f\x1e\x99\x74\xce\xe7\x5c\xc9\x04\x4c\x24\xff\xa2\x55\x8d\xda\x95\x5c\x59\x5c\x75\x2c\xad\xf0\x2e\xfb\x87\x0a\xba\x1b\xf9\xcb\xbe\x24\xcd\x9e\x1f\x24\x93\x54\x51\xad\x59\x2d\xbe\x24\xff\x75\xf4\xcb\x67\xbf\x0f\x8f\xbf\x3e\x3a\xfa\xf9\xd9\xf0\x3f\x7f\xfd\xec\xe8\x97\x13\xf8\xc7\x5f\x8e\xbf\x3e\xfe\xdd\xfd\xf0\xd9\xf1\xf1\xd1\xd1\xcf\xdf\xbd\x7a\x71\x3b\xba\xfc\x95\x1f\xff\xfe\xb3\x68\xca\x3b\xfc\xe9\xf7\xa3\x9f\xd9\xe5\xaf\xef\xf9\x92\xe3\xe3\xaf\xff\x9c\x4c\x7a\x0f\xed\x8e\xf1\xe9\xb3\xe9\x71\xf7\x8d\xbd\x1c\xbf\x0f\xd4\x00\xb9\x7d\xdc\xf1\xea\xfb\xfe\xbf\x71\x5c\x33\xc8\x6f\x76\x5a\xc8\x0e\x5d\xf0\x0f\xa5\x68\x60\xdd\xd8\x53\x38\x25\x71\xa4\x00\x25\xfa\x50\xb5\x25\x53\x9f\x9a\x04\xfd\x23\xf8\x29\x9d\x9d\x83\xfb\xda\xaa\xee\x93\x5a\x96\x16\x18\x17\x83\xb6\x08\xc9\x64\xbf\x77\xc7\x12\x1c\xfa\xee\xd9\xfb\x35\xa3\x9f\xbd\x5f\x73\xf9\xf9\x38\xfd\x9a\x58\x88\xfd\x47\x74\x6a\x32\x31\x8f\x0d\x57\xf6\x99\xa3\xe5\x4c\xdb\xb0\xdb\xd3\xfb\x25\x42\xc4\x67\xcb\xde\xb1\x85\xf2\x59\x17\x6d\x0a\x2e\xaa\x2d\xe5\xfa\x2c\x19\x72\x56\x14\x84\x0b\x64\xc2\xe6\x05\x51\xa3\x7b\xa8\x15\x86\x36\xaf\xc3\x88\x9b\x9b\xa9\x7a\x98\x94\x4e\x5f\x53\xa8\x1b\xe4\x62\x6a\x9b\xda\xa2\x2a\x60\x23\xe8\x5c\xf8\x6e\xb5\x51\xe4\x78\x53\xa3\xed\xd4\x4f\x95\x92\x19\xa7\xbe\x95\x94\x6f\x76\x65\x97\x07\x66\xa0\xe9\x1d\x64\xb0\x64\x2c\x67\x62\xf3\x4a\x6d\x7c\xa0\x83\x7f\xbb\x0f\xe3\x05\x74\x4b\x15\x73\xdb\xc2\x8a\xe4\x0d\x26\x5d\xa2\x98\xec\x6f\xdc\x4f\x2b\x65\xcf\xdc\x61\x9b\x2b\x10\x64\xee\x81\x46\xe1\x9d\x4a\x14\x12\x1e\xe5\xa4\x8d\xe2\xc4\x9d\xde\x64\x0d\x31\x5d\x1f\xf3\x09\x00\x49\x8a\xf6\x8a\x22\xd6\x86\xb7\xba\x0a\xd8\xa7\x90\x33\x91\xae\x9a\xf5\xab\x96\x7d\x08\x95\x6c\x57\xd5\xb1\xa7\x57\xc5\x7a\x52\xc3\xfa\x51\xc1\x36\x08\x2b\xf7\xa9\x76\xf5\xa3\x72\x7d\x08\x5f\x41\x55\xb3\x09\x7f\xe8\x89\x71\x9d\x05\xc8\x41\x3c\x67\x42\xf3\x09\x67\x80\xa2\x50\xd5\xac\x62\x02\x02\x41\x50\x73\x6e\x04\xa8\x55\x9f\xda\xa4\xa6\x5d\xcc\x07\x46\xeb\xb6\x5f\xde\x7e\xb3\xce\xb2\xde\x33\x76\xb2\x67\xec\x09\xcf\x9e\xb1\xbf\x97\x5d\xfd\xa9\x73\x75\xa8\xb6\xdc\x7a\xb7\x01\x24\x03\xf8\xc1\x93\xa0\x3f\xad\x60\xa9\x45\x5a\xe2\x21\x8e\xa3\x97\x64\x5a\x62\x2a\x3e\xe2\xa8\xd4\x04\xa1\x1d\x51\xef\x27\x25\x15\x74\x0a\x10\x2f\xe6\x7b\xae\xe3\x81\xac\x89\xb9\xf8\x35\xcf\x23\x2b\x47\xbb\x0b\x09\x76\xb5\x03\xec\x80\x0f\x6b\x59\x14\xac\x56\xa4\xe0\x77\x8c\x5c\xb0\xaa\x90\x8b\xd2\x56\x48\xe5\xe4\x46\x53\x6d\x2e\xff\x0d\xd3\x09\x60\xe4\xb1\x98\xe0\x0e\x51\x70\xcb\xed\xc4\xe1\x00\x56\x4d\x51\x90\x0a\x21\x8e\xa2\x5e\xf3\x5a\x80\x00\x39\x2b\xee\xe9\x42\x0d\xc8\x35\x9b\xb3\x7a\x40\xae\x26\xd7\x52\x8f\xd0\xb4\x4d\x6f\x29\x8d\x2f\x27\x7c\x42\xbe\x2c\xa8\x66\x4a\x13\x4d\xa7\xe0\x68\x69\xc1\x0d\x65\xdd\x19\xb4\x6d\xe2\xb4\x45\x8f\x43\x0f\x88\x87\x30\xba\xc7\x3b\x8c\xb9\xb5\x49\x67\xb5\x70\x18\x51\x5b\x03\x3b\x41\x68\xaa\xb6\xff\x6c\xc0\x4e\x10\x8f\xd4\xb5\x11\x02\x47\x13\x17\xa4\x66\xaa\x92\x42\xb1\x6e\x0b\x3b\x3f\x11\x74\xdc\x6d\xbf\x83\x68\xb4\x3a\x9a\xaa\x88\x56\x52\x69\x40\xf0\x8a\x6f\x45\xdc\x8f\x06\x3a\x72\x84\x00\xa8\x1b\x2d\x0a\x96\x13\x5e\x96\x2c\xe7\x54\xb3\x62\x41\xe8\x44\xb3\x3a\xec\x5a\x1a\x60\x33\x9f\x20\xb8\x3c\xb3\x58\x6f\x0e\x26\x2e\xde\x44\x58\x76\xe1\x62\xab\x45\xf0\xa9\x62\x6e\x94\x05\xb5\x6b\x41\xe5\x96\x60\xe2\x92\x98\xa8\x79\x5e\x83\x22\x16\x1c\xef\x95\x1e\xcc\xd0\x99\x5b\x91\x46\x68\x5e\x58\x20\x60\x79\x47\x32\x59\x56\x05\xb0\x93\xe8\xa1\xe3\xb9\x94\xff\xe7\xd0\x5f\xb0\xa1\xa1\x4a\x9d\xfe\xa9\xfd\x08\x7e\x11\x49\x5c\x0f\xb6\x5b\x1f\x96\x1b\x7b\x60\x59\x8a\xfa\xdd\x75\x01\x3f\xb0\xcc\x8b\x2e\x74\xfc\x22\x02\x1f\x00\x3a\xd1\xbb\xa4\x42\xc5\x9e\x52\x02\xfa\x0a\xc3\x27\x60\xb9\x84\x4f\xdf\x51\xe6\x73\x24\xcb\xb5\x3e\xb7\x54\x92\x82\x0b\x90\x1b\x16\xec\x25\x04\xba\xf5\xc7\x19\x23\x2f\x2b\xad\xc2\x5c\xd9\x5f\x32\x69\x8e\x16\x43\x1b\x40\xb0\x1f\x1d\x9e\x1e\x1e\xaf\x84\xd2\x96\x1a\x69\xdf\x06\xb3\xe0\xd0\x05\xaf\x82\xf6\x6e\x2c\x3b\xcc\x07\x84\x1b\x1e\x9b\x4c\x99\x11\x7d\xd8\x70\x00\x56\xc5\x22\xe0\x0c\x88\x92\x44\xd7\x34\xe7\xd6\x1a\x80\xdf\x9a\x2f\xe9\xba\xb1\xd2\xfb\xe8\xf0\xf7\xc3\x01\x61\x3a\x3b\x26\xf7\x52\x1c\x6a\x58\xbe\x13\x72\x0b\x28\xd2\xe9\x99\x66\x8e\x90\x85\x6c\xa0\x57\x01\x6e\x61\x55\xf0\x8c\xeb\x62\x01\xb2\x85\xc8\x06\xbb\x2a\x18\x3d\x22\x01\xb9\x27\x7c\x2e\x1f\xb8\xb6\x25\x0c\x86\x59\x3f\x83\xd3\x64\x7b\x07\x50\x63\x79\xcc\xd9\xe9\x8c\xd1\x42\xcf\x30\xc1\x56\x48\x31\xfc\x37\xab\x25\xa0\xfb\x08\xfb\x49\x2a\x19\x69\x51\xad\xf0\x49\x88\x70\xad\x12\x94\xe8\xf4\x30\x62\xe8\x05\x8b\x56\x51\xc8\x4a\x4f\xaa\xdb\xdb\xd1\x0b\xa6\x97\xb8\xae\x19\xc5\xa5\x3d\x83\x0f\x96\xd5\x13\x59\x97\x3b\xc0\x7e\xfb\xc9\xc7\x1a\x42\x9f\x9d\x1d\x90\x02\x33\xa9\x92\xf6\x92\x7c\x00\x11\x80\x5d\x91\x68\xe9\x0c\x05\xc1\x32\x73\x08\xba\x39\xbc\x0e\x76\xf8\x6a\x74\x42\x7e\x92\x0d\x40\xde\xd2\x71\xb1\xf0\x70\x99\x8a\xa5\x25\xde\x99\xe7\xc0\x90\x72\x60\x38\xbc\x39\x90\xdf\x32\x9a\xb3\x5a\x01\x03\x65\x34\x31\xc5\xbe\xc7\x1c\x9f\x80\xb6\x5e\xb7\xf2\xbc\x51\x5a\x96\x64\x66\xa7\xdd\x85\xfa\xb1\x97\xf3\x04\x2e\xb0\xc3\x7b\xa8\x59\x85\x4c\xd6\xfe\xcd\x27\xc7\x42\x57\x58\x17\xae\xbb\xfd\xfd\x98\x29\x63\x15\x85\xcb\x66\x56\xcd\x23\x09\x08\x5c\x2c\x44\x67\xee\x89\x9d\xf7\x90\x62\x4a\x7a\x4c\x33\x25\x69\x20\x40\xcb\x2f\x82\x34\x9a\xe4\x37\xf5\x97\xb9\x4a\x7a\xcb\xce\x24\x1f\x24\x43\x93\xd8\xa4\x2c\x7b\xf8\xd0\x21\x1c\xef\xca\x5e\xf7\x72\xde\x36\x28\xc9\xa8\x90\x82\x67\xb4\xe0\xff\x66\x39\x69\x2a\x29\x6c\x39\x06\x68\x9e\x19\x55\x6c\x08\x19\x67\x02\xd9\xb9\x0a\xe0\x68\x0c\x77\xd0\x52\x82\x3a\xe6\xbb\x55\x20\xd5\xfd\x90\xda\x6b\x1d\x41\x32\xb6\x52\xf8\xac\xc4\x54\x3b\x9b\xd5\xcf\x89\x27\x7d\xae\x40\xd5\x43\x99\xe5\x6a\x91\x25\x62\xc6\x03\x26\x0e\x4a\x14\xe0\x8d\xd8\x5e\x6a\x67\x44\xab\xd1\xd2\x76\x4d\x3d\xc2\xc8\x70\x4d\x44\x53\x8e\x59\xdd\x56\xa8\xd7\x7a\x75\x4d\x13\xf3\x3b\x3b\xc3\xe2\x70\x2e\x08\xe9\xd4\x00\x2a\xa6\x8c\x3c\x37\x23\xff\xed\xaf\x7f\xfd\xe2\xaf\x3d\x8c\x63\xa6\xe7\xf3\x46\x05\xb9\x3a\xbb\x3e\xfb\xed\xe6\x87\x73\x80\x6c\x4a\x7d\x7d\x4f\xa5\x4f\x7d\x17\x3e\xf5\x5a\xf6\xf4\x41\x8b\x9e\xa0\x82\x3c\x99\x11\xf6\x7d\x25\x6e\x80\xaa\xb0\x7b\x97\x35\x1b\x82\x76\x2b\x31\xdd\xf1\x56\x9f\x30\xf8\x65\x18\xd6\x4e\x70\x2a\x55\x30\x16\xd5\xce\xd8\x3d\xdd\x0c\x04\xf3\xb6\xe5\xfc\xd7\xbc\xa9\x6d\xe7\x2a\x17\xee\x69\xbd\xdf\x36\xcc\x03\x54\x90\x31\x9b\xc8\x9a\xd9\x7e\x33\xad\xaf\xfe\x13\xb2\xdc\x15\xcb\xa4\xc8\x53\xf4\xf7\xbe\xf4\x51\x4b\x49\xaf\xb7\xf1\x06\xdf\xe9\xfc\xaf\xad\x90\xb1\x83\x81\x19\x68\x76\xba\x9f\x93\xdf\x0f\x07\xc5\xea\x5f\x78\xdb\xdf\xfe\x23\x3e\xd4\x94\x55\x37\x32\xbb\xeb\xd1\xb9\x95\xc8\xda\x2e\xcc\x1d\xcc\x30\xaa\x76\x7b\x3e\x42\xe2\xcc\xce\x5c\xbf\xbe\x6d\x4b\xfd\xa1\xec\xa1\xed\x19\xf4\xad\x8d\xbb\x51\x91\x93\x3b\x56\xa5\x99\x86\x0e\x31\x6f\x4c\xb3\xbb\x7b\x5a\xe7\x10\xd3\xa2\x9a\x43\x13\x54\x6c\xbd\x54\x33\xc0\x20\x10\x12\x6b\xea\x90\x4b\x48\x8b\x8e\x8e\x3a\x6d\x1a\xc8\x66\x10\xeb\x86\xb8\x9a\x35\x23\x26\x94\x17\x10\x55\x6e\x84\xe6\x25\xb3\x05\x1f\x59\xe5\x03\x8f\x61\x16\xc2\x27\xc4\x7e\x3e\x55\xc7\xe1\x61\xdb\xa9\x79\x53\x07\x60\x6a\x4d\xf4\xa7\x6d\x2e\x58\x0e\x8e\x60\x12\x7b\x73\x61\x93\x67\x6f\x2e\x44\x9a\x0b\x55\xcd\x6e\xb4\x8c\xd6\x49\x7b\x4b\x64\x41\x32\x1e\x49\x63\xb1\xaa\x2a\x7d\x34\xbf\x24\x6f\x80\x03\x25\x24\xc8\x9e\x8d\xae\x7c\x18\x4b\x76\x72\x48\xb0\x4a\xd1\x36\x61\x87\x88\xa4\x60\x4a\x9d\xaa\xb0\x83\x1f\xc8\xb8\xa6\x66\xf1\xd9\x33\x55\xcd\x58\x09\xeb\x38\x68\xb1\x24\xcc\x74\x99\xc0\x5f\x32\x9d\x61\x88\x3a\x90\x9a\xd0\x1f\xce\x2e\xd7\x24\x29\x72\xde\x2e\x6c\x56\x53\x35\x63\x00\x53\xcc\x1e\xb8\x56\x38\xe8\x08\x10\x17\xdc\x8a\x1b\xc5\x61\x5a\xd3\x8c\x91\x8a\xd5\x5c\x1a\x65\xa3\x11\x3a\x97\xf7\x82\x8c\xd9\x94\x0b\xe5\x76\x2c\x85\x24\x77\x24\x20\x43\x87\x2b\xdf\x3d\xe6\x84\xbc\xe9\xa0\x34\x5b\x6c\x99\x4c\xb6\x3c\xd3\x2e\xd1\xa0\xa7\x25\x01\x2d\x06\x8e\x01\x36\x77\xf7\x07\xcf\x55\xd1\xea\xc7\x57\x28\xfe\x40\xe0\xca\x1e\x35\x02\x26\x9a\xb3\x82\x2e\xb0\x5e\x74\xc2\x05\x38\x72\x6b\x75\x7c\x92\x9e\xf2\x14\x4d\xa0\xac\x83\x77\x3e\x7a\x32\xb8\x22\x35\xa3\xd9\x2c\x45\xb3\xdb\xe7\x56\xbd\xeb\xd9\xe7\x56\x45\x3e\xfb\xdc\xaa\x4d\x9f\x7d\x6e\xd5\xa6\xcf\x3e\xb7\x6a\x97\x12\x03\xf6\xb9\x55\x7b\x17\xc9\xf2\xb3\xcf\xad\x7a\xdb\xb3\xcf\xad\xda\xe7\x56\x75\x9e\x7d\x6e\xd5\x7b\x3c\xfb\xdc\xaa\xf7\x7c\xf6\xb9\x55\xfb\xdc\xaa\x7d\x6e\xd5\x3e\xb7\x6a\xb3\x67\x9f\x5b\x15\xff\xec\x83\x25\xfb\xdc\xaa\xa4\x67\x9f\x5b\xb5\xcf\xad\xda\xe7\x56\xed\x73\xab\x1e\x7d\xf6\xb9\x55\xfb\xdc\xaa\xb5\xcf\xde\x71\xb8\xf2\xec\x73\xab\xd6\x3c\xfb\xdc\xaa\xcd\xc6\xd9\x9b\x0b\x69\x2f\xeb\xdd\x5c\x70\x79\x42\xa3\x5a\x8e\xb7\x86\xfc\x34\x82\x1c\x0c\x9e\xd9\x24\x25\x39\xe9\xa0\x39\x21\x81\x91\x28\x4e\xdd\xe4\x18\x6c\x93\x6f\xe1\x7d\xb8\xbd\x5c\x3e\x31\x6a\x9b\x48\x51\x1b\x67\x8f\x38\x04\x3c\x75\x5a\x49\xfc\xbf\x36\x77\x24\x48\x1a\x89\x76\x5f\x6f\x19\xba\x2a\x25\x53\xe4\x69\xb2\x44\x76\x24\xa5\xa6\x87\xcc\x90\x3e\x85\xd8\x8e\x66\x84\xec\x66\x36\xc8\x2e\x66\x82\x6c\x23\x0b\x64\xeb\x19\x20\xfd\x84\x2e\x7b\x08\x5b\x26\xab\x0a\x36\xc1\xf7\x76\x56\x33\x35\x93\x45\x34\x5f\xe8\x8b\x27\xbc\xe2\x82\x97\x4d\x69\xae\x98\x32\x57\x9f\xcf\x7d\x12\xb2\xf2\x06\x2b\x8a\x60\x0c\xbe\x9a\x2f\xf2\x9c\x41\x73\x4a\xca\x0b\x73\x02\x00\x1c\x70\x46\xe7\x86\x2d\xa8\x26\xcb\x18\xcb\x53\x8c\xc4\xd0\x2b\xf8\xc5\x89\xa7\x10\x1b\xac\x70\x45\x9e\xa7\x49\x84\x34\xbd\x31\x70\x8e\x7c\xf1\x79\xd4\x3b\xa6\x75\xd5\x8f\xe4\x7c\xf1\x66\x74\x1e\x48\x4e\x2a\x9c\xe0\xe4\x62\x2e\x0b\xd8\x0d\x8a\x5f\x32\xf6\xc9\x16\xc5\x68\xba\xb1\x9e\x64\xa8\xf7\x21\xc5\x53\x6d\xd1\x6e\xc4\xce\x98\x8b\xdd\x80\xd3\x14\xf6\x12\x7b\xb6\x9f\x3c\x81\xb9\xd7\x97\x09\x95\x7e\x1d\x08\xb8\x5e\x61\xe2\xbb\xa2\x23\xdd\x20\x39\xde\x6b\x1b\x58\xfa\x96\x52\xc8\xa2\x2b\x68\xe6\xf7\x06\xf6\xef\x5b\x10\x74\xe7\x33\x96\xdd\xbd\xc1\x84\x9e\x24\x32\x8e\x14\x63\xde\xd4\x98\x72\x3d\x6b\xc6\x27\x99\x2c\x4f\x0d\x03\xc1\xff\x1b\x17\x72\x7c\x5a\x52\xa5\x59\x6d\xac\x0f\x2b\x83\x87\x99\xa1\x80\x8b\xe9\x49\x99\x1f\x9f\xfc\x8f\xff\x91\x44\xc4\x95\xf5\x3d\xda\x2a\x91\x00\xe5\x19\x02\x19\x16\x42\x7c\xcc\x0c\xfb\x97\xe0\x26\x0c\x3a\x52\x99\x55\x49\x3f\xa5\x09\xd2\x36\x31\xbf\xf2\xe9\x73\x2b\xf7\xdc\x96\xf4\xe0\x0e\xed\x93\x19\xec\x46\xfe\xe4\x07\xcb\x9d\xec\x2d\x8d\xb9\x87\x9c\xc9\x1d\xca\x97\xdc\x19\x83\x63\x57\x72\x24\x77\xb0\xbd\x71\x0f\x79\x91\x7d\xe4\x44\xf6\x97\x0f\xb9\xab\x5d\x80\x3f\x58\x0e\xe4\x47\x91\xff\xd8\x63\x74\xa0\xa7\xbc\xc7\xa7\xc8\x79\xec\x65\xd6\xa9\xb9\x8e\x4f\x97\xe7\xd8\xcf\x74\xfb\x34\x12\x13\x6f\xee\x16\xf2\x1a\x9f\x22\x48\xf9\xc1\x02\x94\x3d\x04\x27\xfb\x0c\x4c\xf6\x16\x94\xfc\x60\xf9\x8b\xe9\xb9\x8b\xbd\x9a\xec\x4f\x92\xb3\xd8\x67\xbe\x62\xf2\xfe\x72\xc1\x35\xa7\xc5\x05\x2b\xe8\xe2\x26\x2d\x77\xad\xaf\x9d\xb8\x5e\xc9\x6f\x43\xdf\x70\x37\xc3\x71\x46\x6d\x5b\x6e\x96\xbb\x04\x47\x17\x44\xb6\x9a\x2a\xe4\x40\xe1\xfc\x92\xb2\x1d\x77\x2c\x64\x4b\x76\xc6\x07\x8d\xa0\x0a\x3b\x72\x6a\xbe\x95\xf7\x44\x4e\x34\x13\xe4\x88\x0b\x77\x72\x8e\x03\x67\x4a\x1b\x83\x48\x0e\x2a\x98\xb7\x3e\x7f\xe6\x06\xf9\xf4\x82\x0b\x10\x7e\x51\x6a\xa7\xc3\x4b\x96\xc6\x77\xc7\x97\xec\x17\x27\x4d\xd1\x8d\x31\x61\xdc\xa9\x9f\x00\xd3\xf3\xb6\x91\xef\x73\xa0\xc7\xb3\x22\x2a\x72\x62\xc1\x79\x3e\xbd\x73\x92\x9c\x9d\xdb\xb5\x41\x7c\x3a\xed\xbb\xc2\x51\xb7\xe7\xa3\x7d\x34\x6a\xb7\xfc\xa3\x5b\x4a\x15\xfd\xf4\x2c\xae\xa7\x4f\x0d\xdd\x5b\x5c\x7f\x14\x8b\x2b\xc0\xc5\x7a\x51\xd3\x8c\x8d\x76\x49\x81\x73\x0c\xa4\xad\x6b\x6a\xf5\x38\xcf\x2e\x04\x63\x58\xef\xd2\xa2\x9e\x01\xc0\xd7\xa4\x29\x8a\x05\xba\xfb\x3a\x10\x78\xf1\x47\xeb\x76\xc6\x56\xb0\xc3\x3a\x55\x57\x01\x75\xad\x7d\x52\xd5\xd2\x6a\x25\x75\x23\x84\x91\x56\xf6\x3a\x19\xe2\x8d\x3d\xa2\x98\x88\xf7\x7c\xd3\x0e\xb2\x99\xe2\x53\xb3\x5c\x46\xc3\x00\xd0\xb3\xb6\xe2\xa2\x43\x88\x19\x75\x22\xeb\x8c\x8f\x8b\x05\x99\xd1\xc2\x18\x4c\xf7\x5c\xcf\x08\x25\x77\xbc\x28\xec\x6b\xe2\x17\xea\x86\x69\x0c\xee\xa2\x56\x53\x48\x31\x85\xc5\xa0\x48\x08\x7b\xa8\x58\x66\xc6\xcc\x0a\x46\x45\x53\x21\x9d\x46\x47\x5a\xc8\xa6\x76\x74\xc6\x0f\xef\x42\xcb\x5e\xa7\x12\xbc\x18\xb8\x25\xef\x62\xe0\xad\x9e\xf9\xd6\xfb\xab\x58\x6e\xe1\xeb\xee\xb9\x62\x03\x78\x67\x34\x4d\x48\x8b\x6b\x87\x8d\xe7\x06\x7f\x57\xd5\x72\xce\x73\x8c\x6b\xbb\x63\x61\xb4\x9d\xf8\xf9\xff\x00\xef\x75\xac\x55\x48\x31\x14\x6c\x4a\x41\x45\xb6\x0c\x0d\x33\x1c\x71\x7c\xcc\xa7\x13\x39\xcf\xa8\x66\xc6\x80\x96\x55\x07\xdb\x72\xce\x69\x34\x25\x66\x3e\xc1\x89\x22\x47\x42\x12\x09\x05\x51\x8d\xe0\x7a\x01\xc1\xb7\x59\xa3\x49\x2e\xef\xc5\x71\xca\xc5\xc4\x44\x02\x4a\xc6\x4c\xd3\xb6\x9c\xc9\xa9\x64\x8a\x30\x41\xc7\x85\xb9\x7b\x90\xee\x7e\xbb\xf6\x00\x90\x09\xa3\xba\xa9\x19\x99\x52\x9d\xc0\x25\xd6\x68\xf4\xb8\x9f\x6f\x3f\x76\x5c\xd9\xd0\xda\x84\x34\x42\xb1\x44\x45\xb6\x37\x33\x20\xb2\x50\xcf\xdc\x68\xd9\xe8\x1d\x91\x23\x8f\xb9\x8f\xee\x67\x3c\x9b\x85\x86\x22\x2f\x99\x22\xb2\x49\xf0\xe6\x75\x4c\x40\x3b\x5c\x9f\x56\xde\xde\xf7\xb4\xf6\x89\x8d\x70\xf6\x71\xc2\xae\x03\xad\x3c\x28\xb7\x76\x09\x4d\x58\xf8\x79\x71\x7d\xf3\xdb\xcb\xb3\x7f\x5e\xbe\x8c\xdb\xf8\x4b\x9a\xcd\x42\x70\x61\x41\x28\x08\x0a\x60\xf2\x33\x3a\x67\x84\x92\x46\xf0\x7f\x35\x36\xab\xec\xc8\x8f\x17\xc9\x56\x7b\xec\x82\x1e\xa9\xf8\x1a\x29\x11\xc5\x39\xfa\xd8\xd3\x97\x5c\x01\x52\x2d\x10\x61\x13\xe1\xa5\x62\x64\x52\xcb\x72\xc9\xd0\x22\xd7\x3e\x7d\x6d\x81\xbe\x08\x30\xcd\x66\xac\x8e\xd3\xc8\x2f\x5e\x5f\xde\x40\xe9\x70\x55\x23\xb2\x33\x24\xdb\xc3\x3b\x61\x74\xac\xd9\x47\x7a\xf2\x13\x72\x26\x16\xf8\x21\x32\xb3\x48\x15\xa5\xe0\x4a\x33\x50\x4e\xad\x21\xe9\x12\xf0\x0e\x9e\x9d\xc0\xff\x0e\x08\xcd\xf3\xda\x58\x9a\xbe\x66\x21\x5b\x2e\xb1\x8a\x1a\x19\xed\x57\x3e\x2e\x82\xc5\x15\x4c\x43\x59\x43\xd4\x0b\x5f\xc9\xdc\xee\x04\x28\x81\x90\x6a\x83\xda\xad\xd2\x35\xd5\x6c\xca\x33\x52\xb2\x7a\xca\x48\x45\x75\x36\x23\x25\x5d\x90\x4c\xd6\x75\x53\x21\x62\x42\x4e\x35\x8d\x1b\xf9\x1b\x59\x93\xd2\x71\x67\xc3\xcd\x8c\x4a\x7e\xb3\x3e\xd7\xb2\x65\xd9\xe1\x3f\xb9\x52\x0d\x53\xa7\xcf\x9f\xfd\xfd\xf3\xbf\x46\x9a\xd7\x3d\x5e\xdc\xd8\x2c\xa5\x84\xec\xa4\x6e\xa6\x96\x3b\x60\x90\xd7\x1c\x40\x5d\x50\x77\x42\xf0\xe4\x03\x37\x54\x5c\x4c\x8b\x64\x07\x48\xb2\x1b\x30\xd5\x09\x38\x6c\x67\x30\x8a\xf5\x05\xa6\x7b\x02\x3b\x34\xc4\xbb\x52\xfa\xf3\x82\xb5\x1a\x9c\xf3\x7b\x59\x86\x2c\x45\x60\xd8\x5d\x8d\x1c\x97\x4a\xf1\x1f\x81\x35\xe1\x1d\x53\x88\x97\x80\xc3\x62\xce\xc3\x80\x3c\x23\x5f\x91\x07\xf2\x15\x78\xc1\xfe\x16\x3f\x54\x3f\x3e\xa6\x3e\x32\xe5\x67\x52\xe9\xab\x51\x4f\x1b\xfd\xa3\x91\x57\xe6\x8d\x66\x3f\xb4\x24\x63\x6e\xdd\x11\xec\x41\xb3\xda\x98\x81\x76\x0f\x53\x57\x2e\xc9\xa3\x66\x08\xfc\x58\x4e\x77\x6a\x82\xc1\xd5\xa4\x9b\x5f\xff\x44\xe7\x1b\x06\xfe\x56\x2a\x7d\x6d\xb9\x75\x88\xf5\x11\xd2\x51\x82\x20\xee\xb0\xfb\x94\x51\x5f\x99\xb3\xd7\x82\xec\x93\x5c\x42\x89\x01\xd6\x34\xce\x78\x02\x73\xd8\x9d\x1b\x9b\x96\xd2\xd9\xdf\xd1\x7d\xdb\xd1\x5a\xf2\xe9\x83\x47\xc6\x1a\x29\x41\x5f\x8a\x4a\xe6\x27\x60\xdf\x24\x50\x61\x56\x23\x0f\x94\x81\xb7\x98\x46\x27\x68\xaf\xf9\x08\x31\x5c\x38\xc3\xb1\x32\x2a\x62\x75\x58\x7c\x6a\x36\x61\x75\x8d\x75\xb3\xe3\x85\xab\xe8\x49\x3e\x6d\x49\x5c\xae\xaa\xa5\x96\x99\x2c\x76\xe1\xa8\x8c\x2c\x2d\xb0\xf6\x10\xab\xf5\x11\xf2\xef\x2f\x46\x03\x72\x7b\x3e\x1a\x10\x59\x93\x9b\xf3\xb4\x04\xa8\xd0\x05\x73\x70\x7b\x3e\x3a\xd8\xea\x0e\x10\x67\x4a\x41\x34\x3b\xe2\x25\x9d\xb0\x8f\xb1\xd3\x86\x25\xad\x86\x77\x6c\x11\xa9\xdd\xf5\xa1\x61\x0e\xfd\xc1\xea\x65\x42\xb8\xcc\x25\xad\x36\x7e\x5b\xcd\x68\xce\x77\x1a\xc6\xc4\x15\xf6\x79\x4a\xfb\xc3\x33\x29\xe5\x9c\xe5\x68\x35\xbb\x51\x98\xc8\x2b\xc9\x8d\x8d\xb4\x07\x39\x79\xdb\xb3\x07\x39\x79\xc7\xb3\x07\x39\x59\xf7\xec\x41\x4e\x36\x78\xf6\x20\x27\xf8\xec\x41\x4e\xba\x84\xec\x41\x4e\xf6\x20\x27\x7b\x90\x93\xf7\x7e\x3e\x81\xb4\xd2\x3d\xc8\xc9\xfa\x67\x0f\x72\xb2\x07\x39\xd9\x83\x9c\xec\x41\x4e\xda\x67\xe7\x92\xf8\xf7\x20\x27\x6f\x7b\xf6\x20\x27\x6b\x9f\x9d\x31\x38\xf6\x20\x27\x8f\x3c\x7b\x90\x93\x47\x9e\x3d\xc8\xc9\x1e\xe4\x64\x0f\x72\xb2\xe1\xf3\xe9\x95\xdc\xed\x41\x4e\x36\x7a\xf6\x25\x77\x1b\x3e\x7b\x90\x93\x3d\xc8\xc9\xf2\xb3\x07\x39\x79\xe7\xb3\x1b\x3e\xe8\x3d\xc8\xc9\x1e\xe4\xe4\xad\xcf\x1e\xe4\x64\x0f\x72\xf2\xd6\x67\x0f\x72\xf2\xa9\xf8\x47\xf7\x20\x27\x7b\x90\x93\xb7\x8d\xb1\xb7\xb8\x36\x7b\xf6\x20\x27\x7b\x90\x93\x95\x67\x0f\x72\xb2\xfa\xec\x41\x4e\xf6\x20\x27\x7b\x90\x93\x3d\xc8\x89\x7f\xf6\x20\x27\x9f\xba\xef\xa9\x66\x8a\xff\x9b\x8d\x64\xc1\xb3\x45\x72\xa9\xcb\x1b\xa6\x64\x53\x67\x46\x62\xc3\x6b\x49\x05\xef\xf5\x5e\x85\x24\x25\x7b\xc7\xf0\x03\xde\x04\x0b\x17\xe2\x08\xd4\x76\x0d\x3e\xc4\x12\xec\x04\x96\x80\x9b\xe0\x75\x7c\xb0\x7f\xe8\x1a\x27\xe3\xf2\xc5\x39\x4c\x93\xad\xf6\x70\x22\xbb\x50\xcb\x18\x62\xfe\xf8\x53\xa4\xa5\x67\xb6\xfc\xd1\xc3\x45\xab\xaa\xe0\x29\x55\xa1\x84\xdc\x34\xa0\x5d\x30\x1b\xad\x56\x5f\x92\xac\x6a\x06\xa4\x64\xa5\xac\x13\x0a\x05\x7a\xb0\xe0\x3a\x47\x65\x17\xf6\xe9\x0d\x12\xe4\x16\x5f\x4b\x58\xff\x05\xda\x0b\x2d\x44\x93\xdf\x2b\xee\xd8\x61\x52\x5a\xd8\xd5\x64\x39\xdd\x93\xeb\x8e\x17\xe8\x5a\xea\x37\xf6\x72\x6f\x6d\xbf\x1e\x2b\xc3\xa4\x5a\x96\x3c\x8b\x11\x4e\x28\x4f\xb6\x55\x84\x79\x2e\xcb\xaa\xd1\xac\x23\xd8\x70\x89\xd1\xe8\xe0\x2a\x95\xa1\x6f\xa7\x14\x32\x93\x62\xc2\xa7\xd6\xfa\x3e\x2d\xa9\xa0\x53\x36\xf4\xab\x3d\x6c\x71\x0e\x4e\xa3\x05\xf5\xd6\xea\x20\xb3\x82\xf2\xf8\x1c\xbf\xbe\xd8\xc4\x39\x50\x01\x18\x58\x6d\xce\x3a\xd4\x6a\xf9\x65\x1e\xf8\xc4\x6c\x8e\x7c\xe3\xc4\x7d\x84\x7f\x3c\x48\xb0\x1e\xa9\x06\x5f\x05\x18\x46\x6b\x4e\x6a\x7c\x06\xba\xb7\x18\x05\xa1\x45\x35\x7b\xbb\xcd\x98\x52\x83\x78\xb1\x10\xb4\xe4\x99\xbb\x79\x67\x45\x21\x33\xf4\xd5\x74\xad\xcd\xc4\xa9\x20\xf9\x66\x4e\x65\xd9\x68\x3a\x2e\xd8\x09\xb9\x42\xe0\x06\x29\x8a\x85\xb9\x98\x8a\x69\x97\xbf\x60\x6f\x45\x9a\x89\x99\x92\xc3\x9a\x98\xbf\xba\x56\x5b\x87\xd3\x86\x48\x13\x4c\x18\x1e\x27\x05\x23\x4c\xe8\x7a\x61\x0e\xe6\x48\xe6\x37\xe6\x6c\x76\xbe\x9d\x0c\x40\x91\x98\xb6\xda\x47\xca\x6a\x62\xba\x6a\x3f\x49\xa6\xe9\x09\xa6\xfd\x26\x97\xb6\xb1\x05\xc4\xcf\x09\xab\x6d\x3a\xc7\xa2\x92\xf9\xc9\x1a\x9e\x45\xe4\x24\x91\x02\x33\xe2\x48\xe6\x46\x9b\xaa\x19\x32\x2e\x7f\x47\xd1\xb3\x78\x65\x88\xbb\x03\x57\x20\xd5\xad\x9a\x45\xe7\x94\x17\xe6\x02\x27\x12\xb0\x8a\x45\x98\x16\xae\xe9\x41\x05\xee\x1b\xae\x83\xa4\x1e\xff\x3e\xe1\x36\x08\x40\x45\x96\x3c\x0e\x98\x93\xf4\x78\x05\x5e\x02\x15\x41\x22\xbf\x39\x8b\x25\x7d\x00\x0f\x14\x2d\x65\x23\x34\xe2\x70\xa0\x52\xe8\x05\x39\x96\x3b\x3c\x61\x5a\xd4\x07\x55\xdf\x48\x3f\x4c\x9a\xe6\xae\x1a\x7f\xd4\x47\xb5\x27\xd5\x9a\xd5\xe2\x4b\xf2\x5f\x47\xbf\x7c\xf6\xfb\xf0\xf8\xeb\xa3\xa3\x9f\x9f\x0d\xff\xf3\xd7\xcf\x8e\x7e\x39\x81\x7f\xfc\xe5\xf8\xeb\xe3\xdf\xdd\x0f\x9f\x1d\x1f\x1f\x1d\xfd\xfc\xdd\xab\x17\xb7\xa3\xcb\x5f\xf9\xf1\xef\x3f\x8b\xa6\xbc\xc3\x9f\x7e\x3f\xfa\x99\x5d\xfe\xfa\x9e\x2f\x39\x3e\xfe\xfa\xcf\xf1\x01\xa6\xd4\x68\x6a\x7f\xb1\xd4\x9e\x22\xa9\x1f\x24\x8e\x6a\x0b\x87\xb6\x7e\xf9\x6d\x7d\xe8\xca\xf5\xb7\x0e\xe8\xb7\x5d\xff\x3a\xd9\xec\xbe\x9a\xb4\xe3\x73\x45\x64\xc9\xb5\x66\x39\x68\x9d\x34\x84\xfb\x58\x32\xf9\x2d\xc3\x02\x58\x1e\xaa\xcd\x5f\x06\xb0\x13\xad\xa7\x20\x9a\x2c\xe9\x62\x78\xe0\xe4\x10\x84\x97\x55\xc1\x4a\x26\x34\x30\x9e\xa1\x33\x5f\xc0\x63\x74\xd2\xce\x20\x43\x9b\x96\x3d\x64\x8c\xe5\x96\xc8\x3d\x6f\x0c\x9e\x3d\x6f\xdc\xf3\xc6\x77\x3d\xc9\x6e\xcf\x3e\x18\xe3\x9b\x90\x08\xeb\xae\x50\xce\x41\x0d\x4e\x50\x5f\x67\x2e\x27\x10\x0b\x9f\xf3\xbc\xa1\x45\x88\x94\xe9\xc0\x13\xe3\x38\x40\x60\xa4\x97\x74\xb1\x62\x93\x73\xc1\x43\x58\xce\x81\xcf\xe0\x80\x2f\x5a\xbd\xac\x8d\x1e\x1e\x9c\x15\xf7\x74\xa1\x22\xd1\xfb\xbe\x91\x35\x24\x05\x2c\x0d\x4a\x64\xed\x72\x45\x42\x63\xa5\xeb\xad\x8d\x8b\xf6\xac\x5b\xe8\x6e\x41\xbf\x35\x97\x0e\x95\xff\xa2\x8b\x09\xd8\x85\x68\xb3\xfc\xcd\x39\x8f\x9b\xf8\x0d\xd3\xda\xfa\x73\x96\x8e\x04\x6d\xd7\xd4\x87\xb8\xba\xcb\x83\x69\x21\x80\x99\x69\x3e\x9c\x48\xb3\x27\x80\x36\x3f\x99\xb0\x2c\x32\x57\x10\x01\x10\xd6\x8c\x83\xe9\xca\x9a\x8b\x86\x16\xc5\xc2\xad\x09\xcb\x89\x14\x51\x03\xb1\x07\xae\x49\x23\x34\x2f\xcc\x61\x22\x35\x9b\x36\x05\x0d\x5d\x41\x76\x66\x2e\x83\x2a\x3f\x21\xaf\x85\x31\x46\xdb\x2f\xc7\x39\x31\x97\x06\x30\x4a\x47\xc1\x34\xcb\x07\xf0\xea\xe5\x13\x08\x39\x48\x1d\x8e\xe1\xb7\x25\x6a\x78\xb7\x96\x3e\xc7\xe4\x04\x2f\xa2\x0f\x80\x93\x9c\x4f\x26\x66\x64\x40\x0a\x14\xb2\x2e\xe9\x2a\x55\x54\xe4\x51\xa3\x1b\x0d\x08\xaa\x0f\x42\xf4\x53\xe8\x78\x71\x60\x4c\xf3\x8c\xd6\x07\x61\xaf\x84\xb3\x42\xcf\x64\x33\x9d\xb5\xa7\x22\x6d\xc9\x89\xd2\x90\x79\x63\x16\x53\xb9\x9c\xb3\xa5\xc3\xa6\x8c\xae\x23\x32\x86\x2a\x99\x64\x78\xdd\xef\x69\xe4\xd8\x2b\xd1\x61\x4c\xf7\xc5\x3d\x77\x25\x39\x90\xde\xc5\xf2\xa0\x7e\x4a\xb0\x07\xdd\xc3\x84\x4f\xc8\x15\xc2\x16\x0c\xba\x6f\xed\x2c\x09\x2e\x46\x90\xde\xe4\x12\xf5\x22\x73\xbb\x96\x06\xe0\xbe\x02\x09\xf0\x5a\xf1\xe5\x54\x2c\x5c\xc2\x3f\xa4\x1f\x61\xa1\x92\xaf\x41\x28\xe2\xbc\xa8\xfe\x2e\x3d\x79\xfb\x11\xc5\xb2\xa6\xe6\x7a\x71\x2e\x85\x66\x0f\x51\xbc\xaf\x0f\xa9\x7e\xd3\x25\xa3\x23\xd7\x1d\x89\x44\x56\x88\x9b\xb7\xd4\x81\x66\x26\x9b\x22\x07\xa8\xd0\x46\x00\xdb\x89\x93\x28\x57\x13\x23\xc2\xf1\xbc\x81\xc4\x84\xd0\xc8\x32\x61\x2e\xeb\x0f\x93\x1f\xff\xd5\xf0\x39\x2d\x98\xd0\xc1\x5f\x8c\x20\x0f\x2c\xfc\xa3\x0f\x19\x3f\xd3\x54\xdd\xb5\x16\x06\x1b\x56\x32\x6f\x0d\x8a\x53\xb7\x74\xf0\x2b\xf6\xa0\x3f\xc2\xd8\x19\x28\x4c\xa3\x9a\xcf\x79\xc1\xa6\xec\x52\x65\xb4\x00\x3b\x6a\xdb\xc6\xf9\xd9\x23\x74\xc1\xc9\xac\x65\xa1\x8c\x02\x66\x8c\x55\xa3\x6a\x62\x16\x2c\x84\x70\xa6\x94\x0b\x68\x9f\x92\xe0\xe6\xb7\x83\x2a\x4c\xc3\x35\xf6\x76\x45\x6b\x73\x0a\x5d\xba\x2d\x8a\xc6\xb1\x94\x85\x85\xe0\x2c\x16\x2d\x5d\x3c\xde\x1f\x0e\xbc\x58\xfe\x26\xd8\xfd\x6f\x86\x0a\x45\x26\x05\x9d\xb6\xa2\x99\xe9\x95\xda\x85\xf4\x0c\xe0\x47\x17\x1a\xf0\x25\x1b\xa3\xd8\x18\xad\xa2\xcd\x8d\x0e\x39\x78\xbc\x41\xf7\xfc\x18\xf8\x09\x55\xc4\x8f\x1d\xa7\x3a\x98\xe7\xf3\x63\x90\x13\xe7\x67\xa3\xdf\x6e\x7e\xba\xf9\xed\xec\xe2\xd5\xd5\x75\x7c\x06\xa4\xd4\x0c\xbd\x2b\x81\x76\x9f\xf9\xa0\xbd\xd9\x05\x9f\xf7\x71\x22\xd5\x09\x04\x4b\x00\x43\x43\xe4\xf2\x3e\x31\x52\x68\xce\x14\xa3\x71\x9a\x6b\x46\x2b\x3a\xe6\x05\x4f\xf1\x2d\xf4\x75\x7d\x01\x15\x36\xa0\x07\xf4\xb9\x3c\x3f\xcd\x6b\x59\xe1\xf2\xb9\x0c\xff\xf4\x18\x6b\x37\x93\x34\x84\x44\x83\x1b\x33\xe9\x12\x32\xad\xa9\xd0\xad\x25\xd5\x9e\xe6\xda\x28\xfd\x29\x98\x2a\x5b\x3d\x38\x5b\xc7\x58\xa6\x79\x7f\xf8\xca\x67\x79\xce\xf2\xce\xb6\x25\xbc\x79\x37\x61\xa4\xce\xdd\xe4\x82\x54\x52\x32\x7a\x7d\x73\xf5\xbf\x97\xee\xcd\xa2\x4a\x0b\x6f\xf6\xd3\x7c\xa0\x96\x55\x6f\xbb\xfb\xc6\x42\xce\xef\xf7\x77\x27\xf6\xd7\xeb\x3b\x5b\x2f\x54\x7f\xd3\x88\x6e\x77\xca\x96\x34\x52\xca\x3c\x81\x35\x8f\x7c\x3d\x57\xf7\xad\xa1\xeb\xa2\x66\xc4\x7c\x45\x68\x0e\x8e\xa4\xc0\xf8\xd0\x12\xf1\xd0\x7b\xe9\xa3\x14\xca\xaa\x09\x2d\xd4\xc7\x2a\x70\x52\x34\x15\xa3\xb4\xbe\x92\x8d\xe8\xa7\xf2\x3d\xe1\xc4\x79\x42\x48\xce\x84\xd4\xd6\x22\x36\x13\x84\x36\x5a\xb5\xcc\x08\x46\x01\x03\x50\x9b\x8e\xd6\x90\xa0\xb4\xdc\x06\x8a\x0a\x57\xee\x5c\x8c\x3c\x45\x98\x04\xde\x28\xb6\x6c\x91\x5b\x45\xa5\x8d\x0b\x4e\x64\x7c\x38\xa4\x66\x34\x07\xcf\x79\x45\xf5\x0c\x01\x17\x4a\xaa\xee\x58\x8e\xbf\x48\x2c\x34\xf3\x09\x82\xe0\xb4\x76\x53\xbb\x35\xeb\xeb\x72\xfa\xc0\xc4\x41\xd8\x09\xc8\x22\x4c\x09\xaa\x6e\xf5\x42\x24\xb0\x60\xb3\x09\xaf\x45\xb1\x78\x23\xa5\xfe\xc6\xf7\x56\xd8\xf6\xe5\xf8\xd1\x1a\xd8\xdd\x54\x52\xb0\xb4\x28\x90\x3c\x84\x83\x03\xac\x31\xe8\x08\x91\xca\x19\xcd\x86\xfc\x51\x19\x63\xdd\x88\x33\xf5\xa2\x96\x4d\xb4\xb6\xd5\xa7\x01\xf7\xe2\xea\x02\x64\x5f\x63\x6b\x91\x85\xae\x17\xd0\x17\x68\xb5\x4f\x75\xb2\x1b\xe2\x7b\x5b\xf5\x1d\x72\xb6\xe4\x02\x4f\x42\x5e\xd1\x05\xa1\x85\x92\x6e\xdb\x6d\x7a\xeb\x92\x03\xd1\x79\x27\xcd\xc7\x63\xa9\x67\x2b\x6e\xc9\xd8\xb8\x86\x79\x56\xc7\x1b\x04\x25\xcd\x6d\xf5\x08\x17\x2b\xc3\x6a\x48\x7a\xac\x6a\x96\xb1\x9c\x89\xec\x63\xbd\x11\xdb\xae\xb0\x85\x5b\x75\x2d\x85\x61\xaf\xdb\xbe\x57\x57\xbe\x7a\xdc\xee\x46\x78\x8b\x20\x0d\xd7\xba\xc5\x28\x04\x9e\x81\xb9\x36\x2a\x25\x23\xf5\x6a\x02\x7e\x3c\x3c\x74\xdf\x35\x63\x56\x98\xcd\xe6\x45\x81\x3d\x3b\xa9\x46\x67\x3b\x2f\xe9\x94\x11\xaa\xfd\x25\xd4\x92\x30\xa1\x9a\xda\x9e\x9b\xc8\x90\x93\x79\x7c\xb4\xcc\x4e\xed\xfb\xab\x0b\xf2\x8c\x1c\x99\xb9\x1d\x83\xc6\x31\xa1\xbc\x80\x02\x77\x08\x67\x2f\x39\x19\x27\x2e\xe0\x96\xb4\x04\xc0\x47\x88\xac\x51\xb4\x0c\x88\x90\x44\x35\xd9\xcc\xad\x01\x97\xc2\xfb\x59\x2d\xe2\x59\x52\x76\xe7\x9e\xed\xf4\x27\x0f\xbf\x57\xac\xde\xf6\xb5\x35\xe2\xf0\xfb\x27\x14\x87\xa1\x95\x68\xae\x7f\x77\xc3\xf0\xae\x96\x4c\xd3\x9c\x6a\x6a\xc5\xa4\xfb\xc2\xfe\xd4\xee\x85\x65\x82\xb0\x54\xec\x25\x17\xcd\x03\xe2\x09\xed\x44\x1c\xe1\xe6\x12\x28\x22\x99\xdb\x68\x38\xa0\x58\x01\x9d\x3b\x97\x7f\x0f\xa5\x1b\x57\x9d\x6b\x34\x78\xc4\xea\x06\x29\x41\xb1\x36\x8d\x19\x43\x88\x8a\x5c\x96\x2b\x44\x4e\x64\x4d\x58\x4a\x3b\xe2\x20\x57\x63\x7f\x31\xed\xf3\xc7\x8e\xb0\x14\x6c\xce\x12\x5a\x30\x2f\x5d\xca\x97\xe6\x6d\x66\x71\xdc\xc9\x85\xd7\x93\x82\x8e\x59\x61\xcb\x49\x11\x63\xa0\xc7\x1b\xd6\x53\x34\xa2\x96\x45\x7f\xa0\xd7\x6f\x64\xc1\x10\x10\xc9\x2d\x84\x79\xfd\x47\xb1\x0e\xf0\x92\xbe\xd6\x01\x9c\x72\x9d\x75\x00\x37\xe8\xc7\xb0\x0e\x4d\x82\x82\x48\x96\xd7\xc1\x68\x9b\xdd\x75\x00\xfd\x6b\xd7\xd7\x41\xb1\x2c\x93\x65\x35\xaa\xe5\x84\xc7\xdf\x8e\x3e\xc5\xb6\xa5\xa8\x4d\x2b\x43\x17\xfa\x6a\x6d\x3a\x8a\xad\xee\x97\x69\x52\x02\x8f\x45\x89\xa3\x1a\xe5\xa0\x83\x8a\xfb\x9f\x81\x38\x07\x6e\xb7\x2c\xe3\xed\xe8\xd1\x23\x77\xb2\xd7\xcc\x88\xf6\x85\x7f\x44\x89\xd7\x07\xc4\x6f\x42\x70\xb4\x17\x81\x2b\x33\x5a\xcc\xa4\xd2\x89\xb7\x8a\xf4\x5c\xb4\xbd\x4c\x57\x00\x49\x08\xc9\x70\xf0\xbb\x00\x69\x82\x82\x7b\xde\x85\x2f\x85\xcc\x59\x90\xd5\x09\x15\xd6\x49\xe4\xdc\x22\x28\x1c\x8c\xe1\x90\x14\x8d\xb6\xe7\x92\x26\xf3\xce\xc8\x5a\x62\x1f\xe6\xa4\x21\x1d\x5c\x38\x85\x75\x65\x02\x52\xa4\x2b\xaa\x67\x03\x52\xb3\x02\xf1\x1b\x2d\x7b\xbe\x43\x8f\xd7\x21\x70\x1c\x47\x90\x63\x37\x8e\x6c\x87\x34\xd1\x0f\x55\xa0\x83\x4f\x50\x7e\x72\x45\x0e\x5e\xba\xfd\x3a\xb0\x40\xe7\xd7\xaf\x6f\xc3\x92\x16\x2a\x16\x58\x78\x97\x50\xb0\x81\xcf\xee\xa9\x15\x89\x47\x1d\xd7\xd0\x1f\x6f\x8c\x89\xde\x71\x91\x5b\x84\xc2\xce\x2e\x3a\x07\x9e\x35\x0d\xd3\x36\xf3\x07\x5a\xf0\x3c\x94\x47\x5f\x26\x76\xf1\xf4\xa7\x80\x0c\xb7\x72\x4d\xdf\xa0\x01\xeb\xa2\x6c\xc3\xb7\x47\x95\x3d\x81\x7d\x92\xf0\xbd\x80\x3b\x68\xe6\x3b\x24\x42\xae\x19\xa3\x87\xad\x4b\xbe\x03\x56\x76\xee\x90\x07\xe4\x47\xa4\xc8\x99\xd9\x99\xe1\x1c\x9a\x8b\xa9\x0a\xbd\x20\xb4\x28\x7a\xc9\x4b\x58\xe7\x06\x71\xd7\x00\x6a\x7f\x6c\x01\xda\xb2\x99\xdf\x01\x03\x4e\x19\xfd\x1d\x2e\x8c\x8f\xdb\x15\x51\x18\x93\xe2\x23\x77\x44\x4c\x4b\x45\xcf\x6b\xb3\x82\x9a\xd3\xe2\xa6\x62\xd1\xbd\xd4\x49\xcf\xe2\xe2\xc5\xab\x9b\xb3\x2e\x65\xa0\x0c\x5b\x60\x19\x06\x9f\x13\x9a\x97\x5c\x29\x88\xf8\xb0\xf1\x4c\xca\xbb\xa4\x21\x8f\xd6\x74\x87\x0e\x0a\x83\x15\x9f\xaa\x53\xcb\x51\x86\x66\xe1\x8e\x09\x17\x85\x2f\xbe\x01\x77\xa1\xd0\xca\x86\x10\x92\x27\x4f\x32\x3f\x7b\x38\x7a\x00\xf9\xe2\x93\x9d\x57\x97\x07\xd0\x7f\xe0\xf0\x6e\x5d\xed\x58\x3d\x55\x69\x30\x9d\xcb\x9d\xfa\xd7\xcf\x7d\x4d\x7f\xf1\xb5\xeb\x88\xd6\xeb\xd6\x17\xc9\x6a\xfd\x19\x53\xfd\x75\xf9\xed\xa1\x39\xb3\x25\x89\xe4\x0c\xeb\x62\x19\x40\x54\xd0\x47\xcb\xc8\x20\xbe\x7d\x08\xad\x4e\xec\x9f\x1e\xf6\x05\xbe\x74\x56\x14\x66\x23\xa9\xad\x91\x0e\x32\x3c\xc1\x36\xf1\x65\xc9\xd0\x9f\x14\x2b\x92\x8d\xb5\x10\xce\x22\xbd\x7b\xe7\x11\xd7\xae\x20\xdc\x55\xa4\x6b\x89\x63\x53\x52\xf2\x07\x43\x61\x38\x62\xb7\x84\x16\x22\xff\xeb\x3f\x4e\x40\x7e\x27\x90\x7d\xe0\x91\x28\x06\x66\x87\xc2\x41\x5c\xbd\x8f\x36\x62\xcb\x7c\x70\xcd\xb4\xb1\xd4\x70\xdd\xc2\xf0\x83\xb1\xac\xea\xa6\x87\xcb\x90\x12\x1a\x26\x61\x78\xb8\x57\x4e\x91\x78\x1f\x20\x54\x6c\x69\x32\x3a\x88\x53\xde\x9e\x2a\x74\x4c\xd6\x14\xc4\x3c\x59\x08\x99\xbc\x7f\x18\xf9\x03\x06\xab\xc8\xae\x04\xac\x52\xab\x87\x83\x4a\xe8\xad\x95\x0e\x87\xd5\xd8\x7c\x35\x7b\x69\x24\xf3\x95\x22\x6d\xd7\x17\x33\x1e\x01\xd9\x1c\x8e\xd6\x04\x11\xd2\xfa\x47\x82\xd6\x94\xec\x81\x65\x8d\x66\xb9\xc5\x6a\xb0\x3e\x65\xac\xf3\xee\x52\x13\x4d\x01\xbc\xb3\x6d\x88\xa3\x06\x2d\x54\xa1\xb5\x75\x3c\xda\xc4\x80\xfc\x1f\xe0\x92\x16\x9a\xa9\xed\xa6\x39\xf2\x7f\x1e\xbb\x14\x90\x48\x9d\x51\xe1\x3b\xca\x6b\xe9\x5c\xdc\x16\x93\xc1\x96\xa6\x8e\x19\xa9\x68\x4d\x4b\x23\x83\x15\xb1\xdb\x33\x66\x53\x8e\x85\x76\x81\x50\xf4\xa0\x0e\x71\x20\x25\x60\xd8\x70\x4d\x4a\x3e\x9d\xe1\x6d\x21\x14\x3a\xd7\x10\x97\x38\x56\x48\x9a\x13\x60\x2c\xb2\x26\xf7\xb4\x2e\x8d\x2e\x40\xb3\x19\x64\xa1\x51\x41\xf2\xc6\xdc\x07\x02\x10\x04\x8b\xa1\xd2\x54\x1b\x1b\x93\xd5\x09\x4e\x38\xb7\x4c\x5b\xc0\x56\xfe\xd0\x7d\x23\xb6\x5c\x22\x6e\x6e\x5a\x2f\x5e\x90\xcb\x07\x96\x05\xdd\x09\xcd\xf1\xb4\xed\x09\x8d\x98\xa2\x77\x89\x89\x66\x5b\xb7\x8b\x33\x59\x96\x54\xf4\x57\x06\x99\xa8\x88\x9c\x23\x39\xce\xc4\xb1\xd4\x11\x63\x7c\x42\x72\x27\x32\x50\x87\x7e\xda\xd1\x42\x90\xd3\x99\x73\x6d\xae\x29\xd6\xb8\xcb\xda\xf7\xb4\x48\x22\xcb\xd1\x01\x28\xf9\x52\x6a\x72\x74\x78\x7a\x78\xec\x50\x57\x3c\x09\x87\x2a\x2c\x2a\xc0\x82\xe2\x76\x42\x8a\x97\x55\xb1\x80\x39\x1c\x22\x30\x7e\x42\xc3\x29\xf3\xb8\xf4\x54\x8f\x05\xab\x66\xac\x28\x06\x44\x19\x5d\x97\x3a\xf0\x36\xfc\xad\xf9\x92\xae\x9b\x0c\x7d\x62\x47\x87\xbf\x1f\x0e\x08\xd3\xd9\x31\xb9\x97\xe2\x50\x63\x78\x83\xdc\x82\xc1\x98\x44\x93\x27\x62\x21\x1b\xe8\xdd\x86\xdb\xe6\xf1\xfe\x32\x6a\x6c\x9d\x06\x15\x72\x23\x8f\xe1\xeb\x69\xca\xdb\xe5\x03\xd7\x46\xef\xd0\x0d\xf8\x24\x9e\xa1\x59\xc0\x0c\x2f\x35\xd2\xcd\x88\xb5\xd3\x19\xa3\x85\x9e\x2d\xbc\xa9\x82\x6d\xb1\x14\x69\x84\xfd\x24\x5d\x61\xda\x81\x72\xce\x64\x7b\xdd\x36\xd1\xdb\xe9\x3e\xc0\x96\xc6\x77\xb6\x01\x46\x05\xa6\xdb\x02\x18\x74\x2c\x96\xf7\xd5\x05\xf8\x8b\x4f\xaf\xc3\xef\xb4\xae\xfa\x91\x9c\x2f\xde\x8c\xce\xdf\xd9\xd7\x17\xbe\xb4\x6f\xec\x9b\x0c\xae\xd9\x67\x3f\xdb\x91\xac\x35\x11\xbe\xa7\x9a\xb9\x61\x53\xd8\x4b\x56\xcf\x79\xc6\x4e\x9e\xa0\x7d\x6c\x5f\xb0\x99\xe9\xd7\x81\x40\x9e\x12\x4c\x7c\x57\x74\xa4\x1b\x24\x67\x9d\x1b\xd8\x52\x0a\xe6\x56\x41\x33\xbf\x37\xb0\x7f\xdf\x82\xa0\x3b\x9f\xb1\xec\xce\x82\xe0\xa6\xf9\x0b\x15\x63\x64\x4d\x20\xc1\x30\x10\xfc\xbf\x71\x21\xc7\xa7\x25\x55\x9a\xd5\xc6\xfa\xb0\x32\x78\x98\x19\x0a\xb8\x98\x9e\x94\xf9\x71\x4a\x67\x0c\x12\x58\xbc\x2b\x48\x96\x1d\x4c\x95\x47\x50\x29\xcd\xaa\x6c\xd5\x3b\x6e\x56\xef\x45\x4f\xbd\xd4\xbf\xbd\xbd\x1d\xbd\xe8\x74\x52\x87\xba\x7f\xad\x2b\x07\x5e\x0d\xa7\x02\xeb\x84\xf6\xdc\x76\x67\xda\xa8\xf7\x10\xc9\xd8\xa4\xf5\x3a\xf9\x49\x36\xa0\x30\xd1\x71\xb1\x20\xf7\x14\x71\x02\x14\x4b\xe3\x05\x07\x86\x8c\x03\xc3\x6d\xcc\x81\xfb\x96\xd1\x1c\x31\x75\xc1\x59\xb2\xfd\x00\x54\x4b\x53\x6f\xdb\x76\xde\x28\x2d\x4b\x32\xb3\x53\xc5\x35\xf4\xa2\x10\x2f\xdc\x09\x5c\x4a\x8c\xa6\x28\x52\xb3\x0a\x4d\x12\xfb\x37\x9f\x84\xc1\xb1\xc2\x82\x70\x9d\x03\x78\x7a\x4a\xb2\x70\xa9\xac\x9a\x8e\xbd\x70\x05\x2e\x50\x52\x73\x52\x7c\x7a\xe9\xd7\x43\x7a\xea\xd9\x43\xd2\xfb\xf6\xb8\x97\xa4\x87\xf5\xfa\xe9\x00\x44\x7a\xe9\x02\x44\x7a\xef\x04\x44\x6c\xf0\xca\x1e\x2e\x4c\x69\x31\x84\xa6\x79\x14\xdc\x8b\x79\xdb\x2f\x3c\xa3\x42\x0a\x9e\x61\x80\x00\xfb\xce\xcb\x46\x57\x8d\x06\x7f\x4b\x46\x15\x1b\xce\x69\xcd\x0d\x43\xc5\x26\x6a\x3e\xb7\x48\x98\xdb\xae\xa5\x04\x67\x84\x0f\xe3\x22\xc5\xe9\x64\xf6\xc2\x21\xf1\x81\xc3\xd6\xf3\x0e\xaf\x6c\x4e\xfa\x89\x26\x7d\xcd\xba\xa2\x7a\xd6\x9f\xd5\x44\xf5\x0c\x52\xda\x20\x88\xe3\x32\x22\x81\xbf\x19\xad\x7c\x07\x4a\x4e\x7a\x35\x12\x13\x6f\x2e\x76\x91\xad\x97\xcc\x4c\x43\xe1\xea\x1a\xf6\x94\x64\xf1\xe1\xad\xd6\xb0\x31\xd9\x98\x11\x2a\xc8\xd5\xd9\xf5\xd9\x6f\x37\x3f\x9c\xff\x76\x7d\xf6\xea\x32\xe5\xd5\xc9\xad\x28\xfa\x6c\x46\xd1\x5b\x3b\x8a\x0f\xd4\xac\xc7\x3c\x2a\x9b\xb1\xdd\xc9\xaf\xb8\x01\x6a\x42\x44\x2e\xab\xaa\x07\x30\xe9\x69\x10\x6d\x64\xc9\x33\x69\x18\xcf\x56\x39\x8e\x0d\xa7\x5f\xb0\x82\x2e\x6e\xb0\x2d\xff\xb6\x9d\xc9\xd7\x9e\xd9\x60\xe3\x7e\xe5\xd1\xe1\xd9\x12\x56\x94\xeb\xc7\x60\x31\xed\x5d\x60\x3c\x8c\xe5\xe3\xfc\xa2\xc3\xb5\x64\xf7\x42\xb6\x64\x67\x7c\xd0\x15\xab\x39\xa4\xc2\xec\xc2\xa9\xf9\x56\xde\xdb\x46\x0f\x47\x5c\xb8\x93\x73\x1c\x38\x53\xda\x18\x44\x3a\x8e\x98\x96\xe4\xf9\x33\x37\xc8\xa7\x17\x5c\xb0\x29\x2e\x3b\x1d\x5e\xb2\x34\xbe\x3b\xbe\xd4\xe6\xeb\x74\x63\x4c\x29\x89\x33\x64\x89\x8d\x3f\x3f\xf1\x15\x5a\xcf\x81\x1e\xcf\x8a\xa8\xc8\x5d\xae\xd5\xa7\x77\x4e\x74\x56\xdd\xc8\xec\xae\x27\xd7\xe8\xed\xf9\x08\xdf\xf6\xce\x70\xd4\xed\xf9\x68\x1f\x8d\xda\x2d\xff\xe8\x21\xd6\x34\xd1\xe2\xcb\x8d\x7d\x9d\x87\x7b\x8b\xab\x7d\x9c\xf2\x53\x77\x02\x46\x7b\x8b\xeb\xb1\x67\x6f\x71\x6d\xf0\xb8\xce\x62\x5c\x8a\x17\x35\xcd\xd8\x68\x97\x14\x38\xc7\x40\x48\x6e\xfb\x6d\x92\x56\x8f\xf3\xec\x42\x30\x96\x23\xff\x70\x4d\xd2\xc8\xd4\xcc\x04\x73\x83\xc1\xdd\xd7\x66\xd5\x36\x75\x82\xaa\x77\x3b\xb3\xaf\xb6\x6a\xae\x8b\xe3\xae\xa3\xae\xb5\x4f\x2a\x8f\x06\xee\x9a\x50\xd8\xeb\x64\x88\x37\xf6\x88\x62\x22\xde\xf3\x4d\xc3\x1d\x24\x8a\x4f\xcd\x72\xb9\xde\x7c\x08\x21\xe5\x5a\xa9\xb4\x84\x98\x51\x27\xb2\xce\xf8\xb8\x58\x90\x19\x2d\x8c\xc1\x04\x2d\xde\x28\xb9\x83\xd6\x64\xf0\x9a\xf8\x85\xba\x61\xb6\x50\x11\xb5\x9a\x42\x8a\x29\x2c\x06\xb5\x05\x09\x0f\x15\xcb\xcc\x98\x59\xc1\xa8\x68\x2a\xa4\xd3\xe8\x48\x0b\xd9\xf4\x50\x93\xe0\x42\xcb\x5e\xa7\x12\xdc\x82\x6f\x54\x90\x90\xfc\xd6\x33\xdf\xad\x2c\x25\xaf\x5d\x8b\xda\x41\x7c\x2b\x32\xe2\x3c\xb4\x1e\xb2\x43\x05\xc5\x01\x1e\x40\xc4\x96\xcd\x99\x63\x01\x75\x9c\xd1\x63\xfd\x00\xef\x75\xac\x55\x48\x31\x14\x6c\x8a\x30\x05\x96\xa1\x61\x86\x23\x8e\x8f\xf9\x74\x3e\xd5\x5e\x69\x59\x75\xfa\xb0\xcd\x39\x8d\xa6\x04\x20\x11\xda\x13\x45\x8e\x84\x24\xb2\x32\xa2\xab\x11\x5c\x2f\x20\xf8\xe6\x5a\x00\x26\x14\x1b\xdd\xda\x44\x02\x4a\xc6\x4c\x53\xeb\xae\x36\x97\xc0\x23\x82\x03\xd8\xb7\xb9\x7b\x90\x21\x7f\xbb\xf6\x00\x78\x90\xf0\x29\xd5\x09\x5c\x62\x8d\x46\x8f\xfb\xf9\xf6\x63\xc7\x95\x0d\xad\x25\xa2\x10\xef\x06\xae\x9f\xb9\xd1\xb2\xd1\x3b\x22\x47\x1e\x73\x1f\x21\xc0\x43\x60\x28\xf2\x92\x29\x22\x9b\x9e\x1a\x2e\x3c\xb7\xc3\xf5\x69\xe5\xed\x7d\x4f\x6b\x1f\xa5\x73\x1e\xd5\x45\xae\x8f\x23\xf6\x08\x74\xbd\x2d\x42\x0d\xd0\x1b\xc7\xcd\x64\xc2\x6a\x90\x74\x40\xf0\x4a\x1a\xba\x6f\x0b\xe5\x64\x58\x9c\x03\xd7\xa6\x54\x31\x3d\x00\xe4\x7c\x8b\xa4\xf0\xc8\x90\x16\x62\x12\xda\xae\xd5\x4c\x01\x12\xba\x20\x97\xaf\xbf\x89\x3b\xa2\x7d\xe0\xea\xa7\xd5\x6b\xc2\x3c\x5f\x8b\xb8\xb4\xbf\x7e\xcf\xc3\x3a\xc8\x13\x7b\x2c\xb2\x42\x2a\x5b\x1b\x0c\xfb\x92\xcd\xa8\x10\xcc\x39\xa4\xb8\x06\x6f\xf6\x98\x31\x41\x64\xc5\x30\xed\x2d\x8a\x18\x4a\x14\x17\xd3\x82\x11\xaa\x35\xcd\x66\x27\x86\x3a\xe1\xce\x42\x5b\x84\x6b\x7f\xa3\x74\xcd\x68\x89\x67\xa2\x66\x25\xe5\x38\x3c\xa1\x59\x2d\x95\x22\x65\x53\x68\x5e\xf9\x97\xc5\x79\x12\x19\xc0\x21\x28\xac\xc9\x74\x7b\x05\x65\x16\x6d\xb5\xef\xa0\xa5\xd0\x4e\x5f\x8a\xe5\x76\xb1\x03\xf3\x29\x2b\x2b\xbd\xf0\x55\x79\x71\x36\xd0\x84\xd7\x4a\x93\xac\xe0\x4c\x68\x3b\x33\x04\xdc\x03\x1a\x7c\xcf\x6f\x61\x57\x44\xd9\x25\x11\x39\x18\xdf\x95\x56\x58\x7c\xe6\x89\x70\xaf\xca\xb9\xb2\xbe\x0e\x15\x57\xfa\x46\x5d\x5f\x16\x3c\x38\x6e\x45\xe0\xe8\x38\x05\x07\x29\xb2\xbf\x0a\x48\x08\x3b\xdf\xfa\xc2\xc1\x34\xbe\x02\xcd\x53\xdc\xbd\x1e\x74\x0a\xee\x5b\xdb\x02\x4a\x43\x56\xb8\x0e\x1c\x28\xc1\xe6\xe6\x1e\xb0\x8c\x19\x55\x94\xf6\xc8\x64\x9e\x9c\xc7\x04\xba\xdc\x2b\xa6\x14\x9d\xb2\x51\x64\x4a\x42\x1f\x0c\xa7\x75\xb4\x41\x2e\x43\x7b\x6c\xa0\xfb\x6d\x81\x30\x68\xfe\x37\x61\xd1\x53\x68\x3c\x96\x38\x91\x28\x0a\x9c\xd1\x74\x5f\x73\xad\x19\x9c\x52\x68\x65\x04\xb9\x62\xcb\xd0\x95\xdd\x62\xab\xa8\xf1\xec\xa2\x87\xe3\x19\xf5\x43\xe4\x58\xb6\x34\x66\x64\x5c\x73\x36\x21\x13\x0e\x75\x54\x50\x61\x34\x40\x0c\x7e\x8a\x2e\x64\xa5\x58\x0d\xd3\xb6\x6e\x01\x37\xfd\x38\x7a\x7e\xb4\xf3\xd7\x75\x23\x32\x1a\x74\x7c\x04\x60\x2d\x3e\x21\x53\xa8\x6a\xb2\x46\xf0\x7f\x3c\xfb\xcf\xbf\x91\xf1\xc2\xe8\x6b\x60\x88\x69\xa9\x69\xe1\x08\x20\x05\x13\x53\xb3\x8b\xc0\x72\xe3\xf8\x46\x07\x9c\xc9\x6f\x4e\xc1\x4b\xae\x71\x81\x9e\x7f\x7e\x37\x4e\xba\x7a\xc0\x1f\x4f\x73\x36\x3f\x0d\x8e\xd0\xb0\x90\xd3\xb8\xb7\x9e\xf7\x51\x4a\x9b\xe4\x67\x5b\x73\xa3\xa1\xd1\xfd\xb6\xee\xb4\x6b\xdd\x41\x66\xf2\x1e\x9d\x39\xab\x57\x35\xc0\x39\xa9\x64\xd5\x14\xb0\x70\xe4\x1b\x8f\x4e\xd7\x28\xb6\x8c\xfb\x93\xea\x24\x0c\xb8\x1d\x04\x52\xed\xb0\xcb\x6d\xbc\xb1\xa4\xcf\x91\x29\x2d\xea\x82\x8d\xbb\xf9\x2e\x1c\xd1\xde\xb8\x6f\x68\x51\x8c\x69\x76\x77\x2b\x5f\xca\xa9\x7a\x2d\x2e\xeb\x5a\xd6\xdd\x39\x17\xd4\xc8\xf4\x59\x23\xee\xa0\x29\x6b\x0b\xc5\x2a\xa7\x36\xfd\xcf\x15\xcf\x07\xb3\x8b\x22\xc6\xcd\x12\xc1\x31\x9d\x4a\xe2\x7c\x70\xed\xc8\xec\x81\xb7\x8e\x36\x41\x98\xa1\x39\xb6\xfa\x9c\x75\xe6\xa1\xc2\xab\xfd\xf9\xb3\xff\xf8\x3b\x32\x17\x22\x6b\xf2\xf7\x67\x50\x82\xab\x06\x28\x00\x40\x02\x1b\x55\xab\xa4\x45\x11\x1b\x25\x08\x59\x80\x39\x6c\x1f\xed\x95\xd7\x5b\xbb\xdd\xef\x6d\x32\xde\xde\xfe\x04\xf6\x22\xd7\x8a\x15\x93\x01\x42\x9d\x78\xb7\xd6\x21\x68\x57\x87\x56\xe4\xc5\xc3\xe4\x6c\xdf\x68\x9b\xcb\xa2\x29\xd9\x05\x9b\xf3\x2c\x2e\x80\xd9\xd9\x95\xce\xdb\x9c\x9b\xbe\xe0\x0a\x10\x70\xc6\x85\xcc\xee\x48\x6e\x3f\x0c\xb2\xda\x97\x9b\x34\xc7\xaf\x42\x6c\x7e\x7f\x42\x5e\xff\xa3\xf3\xef\x64\xf4\x97\xb4\xaa\x3c\x3c\x47\x4d\xef\x3b\x8b\x01\xac\x09\xa0\x41\x13\xc3\x88\xc9\xc1\xf4\xd4\x50\xfa\xd0\xce\xc8\x88\xa9\xe8\x57\x44\x97\x01\xa4\x47\xe2\x5b\xea\xe3\xe3\x98\x9d\x03\xd1\xbe\xd0\xdd\x86\x0a\xfe\x8d\xf8\x03\x2b\xb0\x50\x1e\x6f\xc7\x1f\x0c\xd4\x20\xcd\xf1\x01\x29\x13\xef\xbe\xec\x21\x18\x9a\x56\xce\xd0\x59\x17\xe1\x83\xd0\x25\xd5\xd6\x3e\x72\x51\x76\x4a\x2a\x56\x2b\xae\x8c\xea\xf4\x03\x5c\xa8\xf3\x82\xf2\x32\x08\xdf\x6d\x67\x11\xf0\x72\x43\x6f\xd3\x74\x4e\x19\x29\xbf\x46\x32\xb7\x74\x00\x07\xc5\xb6\xb5\x1f\xc4\xd2\xeb\x51\x4d\xd8\x36\x57\xfe\xa1\xdd\xb8\x2e\x53\x36\xbf\xf1\x5c\x19\xbf\xf5\x29\xf1\x62\x98\xdf\xc7\xca\x8a\x3d\xf1\x3d\x71\x9c\xa4\x64\x20\x60\xe0\xf6\x64\x74\x39\x76\xc7\xe7\x83\x37\x33\xb0\x0e\xad\x2f\xe6\x04\x51\xe3\x13\x08\x30\x57\xd1\x0e\x4a\x0e\xbf\x3c\xdc\xaa\x18\xc0\x9d\xa9\x65\x45\xa7\x60\xbc\xed\xc2\x06\x2d\xd3\x14\x62\x94\x1a\x43\x1e\x3e\xc7\x04\x8c\xca\x7e\x8b\xe5\x2d\xd0\xf5\x4c\x26\xed\x0e\x26\xd7\xb9\x13\x61\x0d\x50\xc4\xb2\xbb\xa7\x0b\x42\x6b\xd9\x88\xa4\xa2\x5e\x88\x1d\xf8\xd8\xd2\xab\xa5\xc9\x5e\x4b\xc1\x5c\x1c\x3b\x65\x94\xdb\x16\xe3\x9a\x2b\x0c\xe9\x73\x41\x9e\x9f\x3c\x7f\xf6\xa9\xa8\x1d\x30\xc3\x25\xb5\xe3\xda\xab\x1d\x28\x01\xb6\x3a\x57\xd7\x23\x7c\x17\xee\xd4\x2b\xeb\x48\x6e\x9b\x80\x73\xd7\x64\x16\x7e\x75\x5f\x73\x6d\x8f\xf9\x3d\x57\x8c\x1c\x81\x09\x4b\x64\x1d\x82\x8c\x26\x41\xd9\x86\x0e\x8f\xc4\x66\xe1\x7d\x40\xd1\xaa\x66\xbc\xab\x02\xc9\x4a\x1e\x60\x68\xeb\x23\x0e\x8f\xca\xa6\x9e\xf6\xe7\xe0\x80\x1c\xe1\x18\x87\x88\xf8\x96\xb0\xf3\x3d\x5c\x24\xbb\x57\x97\x0f\x55\x42\xd3\xb0\xfe\xf6\xeb\xf2\xa1\xa2\x10\x24\xa9\x76\x62\xe3\xfe\xc9\x66\x74\xce\x00\x60\x8f\x17\xb4\x2e\x20\x23\xec\x06\x97\x8c\x8c\x1b\x4d\x98\x98\xf3\x5a\x8a\x92\x09\x4d\xa0\x48\x7b\x5c\x30\x52\x33\x80\x21\xcd\x98\x22\x7f\x3e\xfa\xe1\xec\x0d\x64\x0c\x1f\x5b\x9c\x56\x3b\xbf\x46\x41\x81\xde\xd2\x1c\x82\xd7\xed\xe2\x79\x23\x6e\xee\xe6\xb8\x80\x00\x77\x6b\x61\xe6\x56\x36\xba\xa1\x05\xe0\x10\x66\x45\xa3\xf8\x7c\x5b\x22\xc2\x22\x35\x5e\xf0\xa8\x23\xdd\xc7\x61\x3e\x0f\xf6\x74\x05\x37\x32\x1a\x81\x77\x0d\x0e\xd1\x4a\xfa\xc6\xa1\xf2\xd8\x44\x61\xa2\xa8\x75\xaf\xc7\xc5\x0f\x00\xd8\x16\x2b\x94\x5c\xcb\xa8\x15\xfd\x1e\x10\xb4\xb7\x6e\x41\x6f\x7c\x60\x84\xcc\xd9\xe6\x70\xe9\x69\x47\xe4\xda\x8e\x89\x19\xa1\x01\x84\x92\xca\x66\x2c\x6f\x0a\x66\xa1\x96\x65\x4e\xa4\xd0\x92\xd0\xb6\xd3\x8d\x21\x17\x72\x24\x1c\xa2\xbe\x18\x42\x34\x67\xd3\xf4\x0d\x48\xa8\xb1\xa3\xd5\x0e\x3e\xd4\xfd\x42\x2d\x8d\x0f\xce\x36\x33\xf2\x80\x50\xa5\x9a\x12\x19\x17\x34\xc1\x27\x13\xae\x21\x7d\x43\x36\x75\xb6\xa9\x05\x6c\x0d\x77\xc3\xec\x36\x4c\xa6\x4e\xd8\xec\x1b\x56\xc0\x2d\x7c\xea\x0d\x77\xe3\xe2\xa6\x2b\xf7\x13\x8a\x32\x97\x0a\x0d\xc9\x4e\xbe\x36\x50\x42\xb8\x6c\xc2\x35\x91\x82\x50\xdc\xfb\x0d\x47\xbe\x59\x33\x0e\x6a\xf4\xf8\xbe\x43\x85\xad\x3c\xd5\xf2\xa8\xe3\xf6\x7c\xd8\x86\x75\xf6\x0c\x6c\x4a\xc1\x86\xd9\xa0\x8e\xc5\x80\xbd\x76\x4a\x95\xe2\x53\x31\xac\x64\x3e\x34\x63\x9f\x46\x1c\x92\x08\xc7\x92\xeb\x09\x41\x8b\x51\xb4\x77\x26\x5a\x7e\x75\x8a\x68\x4a\x5a\x0d\xad\x6b\x50\xcb\x92\x67\x1b\xbc\x49\x6e\x48\x72\xda\x09\xbf\xe9\x40\xc3\xbd\xbe\x59\xf1\xd8\xab\xc0\x2b\xbd\xf1\x21\x96\xa5\x2d\x46\x11\x79\x20\x71\xc0\x00\x47\x57\x45\xcd\xcc\x4a\x43\xc9\x06\x6f\x61\xfb\x20\x49\x7d\x53\x10\xc0\xab\x89\x9b\x82\x37\xf0\x6d\xda\x1f\xf4\xaa\x42\xa9\x3b\x91\x45\x21\xef\xa1\x22\x17\x89\x70\x17\x18\x32\xe3\x37\x3d\x2b\x43\xb5\xd4\x0c\xa2\xdb\x72\xad\xc7\x29\xd8\x17\x0f\xfa\x9e\x00\xd6\x0f\x40\x37\x9e\xab\x8b\xf8\x3f\xbe\x1a\x9d\xc7\xff\xf1\xf7\x8a\xd5\x9b\x66\x23\xd9\x3f\x5f\x5e\xff\x6e\xd3\xff\xbe\xde\x19\x76\x24\xee\xe7\x9d\x13\xf5\xa2\x96\x4d\xd5\xeb\xcb\xce\x67\x54\xb8\xd4\xa2\x9e\x66\xbe\x50\x99\x2e\x62\x97\x71\x46\x6b\x66\x7b\xf2\x18\x9d\x49\x55\x74\x63\x3d\xe3\x11\xba\x7c\xbb\x9c\x1e\x5f\xd7\xe3\x7e\xa8\xa6\xaa\x0a\x50\x8e\x68\x01\xaf\x8d\x5c\xc1\x96\x05\xff\xfc\x97\x5f\x3f\xc8\x51\x7f\xd7\x08\xe9\x07\xff\xed\x23\x64\xb4\xa2\x63\x5e\x70\x23\xa7\x3f\xc4\xfb\x9d\xaf\xf1\x8d\x94\xfa\x1b\x1f\x2d\xfc\x10\x23\x55\x35\x9f\xf3\x82\x4d\xd9\xa6\x91\xdb\xf7\x7a\x3b\xa0\x45\x8e\xdc\x10\x97\x2a\xa3\x45\x4c\x52\xd9\x7b\xce\x44\x66\xe0\x17\xfd\x20\x1b\x92\x76\x73\xdf\xe3\xe5\x9b\xdf\xe3\x68\x6d\x33\x36\x7c\x19\x11\x74\x8c\x0f\x36\xc6\x85\x16\xd2\x3d\x29\x8f\x35\x25\xb4\xdd\x71\xc4\x94\x74\x3a\x62\x34\x75\xcd\x84\x36\xa6\x6c\x03\x45\x9c\xcc\x82\x02\xa2\x96\x08\x0a\x1c\x28\x91\x09\xfd\xe0\xcf\xbc\x71\x60\x8b\xe5\x4a\xba\x30\x8a\x53\xd0\xb9\x78\xd2\x40\x95\x26\x68\xab\xd8\xa8\x48\x0a\x43\x79\x8c\x33\x6a\x0d\x0a\xb6\xac\x98\x68\x8f\xf0\xa9\xf5\xfb\x0c\xcd\xd1\xee\xe0\x62\xa3\x29\x75\x52\xe6\x7f\xaa\x0a\xaa\x27\xb2\x2e\x87\xce\x8f\x30\xec\x98\x59\x11\x64\x9d\x43\x01\x89\x72\xce\x56\x2c\x98\xc6\xa6\x7e\x22\x2f\x58\x60\x42\xf9\x0d\x10\x39\x76\xce\x20\x8d\xa8\x59\x26\xa7\x02\xd0\x2e\xed\xa7\x60\x1c\xf8\xa0\x1a\x55\xc6\x7c\x21\xa2\x29\x8a\xcd\x73\x26\xe3\x0c\x2f\x39\x67\xf5\x8c\xd1\x0d\x6f\x61\xda\x01\x7f\x6d\xc7\x24\x35\xab\x6a\xa6\x60\x41\x11\xe3\x17\xdd\x29\x9e\x28\x42\x95\x92\x19\x40\x82\x61\x76\xae\x2b\xd4\xa7\x60\x16\x41\xd3\x74\x32\xe5\x73\x26\x5c\x5b\xeb\xf3\x82\x6e\x5e\xa0\x1e\x84\x35\x7d\xef\xf0\x46\x4b\x9f\xb9\x4d\xa8\x0e\xba\xc5\x42\xc9\x8f\xcd\x48\x0c\x47\x0d\xbe\x62\x4e\x69\x2d\x21\x8f\x97\x5c\x6d\x9a\xd9\xfd\x5e\xef\x85\x74\x66\x41\xc7\x05\xcb\x07\xed\x72\x81\x31\x13\xb4\x1e\xc6\x96\x7b\x24\x83\x12\x07\xe7\x70\x8b\x58\x9e\xf7\x21\xc8\x56\xa6\x19\x31\xb0\x6e\x50\xeb\x88\xf1\x7d\x37\xdb\x2d\x2e\x8c\x9a\xb1\xa9\xca\x6d\x4c\x5c\x63\xef\x75\xe8\xe2\x9d\xe6\xfe\x80\xe6\x04\x6e\xa0\xd6\x6d\x3b\x92\xb9\xb1\xd8\x07\xed\x11\x74\x1b\xee\x4a\xdc\x5c\xf5\xfd\x86\xf4\x04\x5c\x10\xcd\xff\xba\x66\xaa\x92\x22\x37\xa7\x35\x24\x72\x10\xc4\x43\xb9\xee\xd4\xf3\x81\x09\xda\xf2\x0b\xec\xb4\xf3\x6f\x56\x6f\x9c\xd3\xb7\xc6\xf5\x34\xe5\xfa\xe4\xee\xef\xe0\x77\x62\x62\x46\x45\x86\xde\xc7\xd3\x3b\x56\xa9\x53\xc5\xa7\xe8\x66\xfa\xdb\xdf\xff\x0e\x3e\x27\xb7\x39\xa7\x6f\x2e\xcf\x2e\x5e\x5d\x9e\x94\x9b\xa9\x65\x5b\x75\x40\x55\x54\x6b\x56\x8b\x2f\xc9\x7f\x1d\xfd\xf2\xd9\xef\xc3\xe3\xaf\x8f\x8e\x7e\x7e\x36\xfc\xcf\x5f\x3f\x3b\xfa\xe5\x04\xfe\xf1\x97\xe3\xaf\x8f\x7f\x77\x3f\x7c\x76\x7c\x7c\x74\xf4\xf3\x77\xaf\x5e\xdc\x8e\x2e\x7f\xe5\xc7\xbf\xff\x2c\x9a\xf2\x0e\x7f\xfa\xfd\xe8\x67\x76\xf9\xeb\x7b\xbe\xe4\xf8\xf8\xeb\x3f\x6f\x48\x68\x24\x1a\x4e\x2a\x02\x4e\x12\xea\x4d\x8f\x48\x37\x55\xcd\x58\x09\x12\x24\xa6\x9c\x27\x4d\x00\x8d\x96\xc6\x76\x9a\x96\xfd\xc9\xc8\x15\x47\x9e\x98\x1a\x51\xa3\x50\xfc\x14\xf2\x1e\x4a\x2a\xb9\x34\x8a\xf3\xa6\xd7\xf2\x35\x28\x43\xe4\x9a\xcd\x59\x3d\x70\x34\xbc\x34\xaf\x1c\x45\xbe\x31\x0c\x77\xae\x7b\x5f\x24\x66\x45\xe4\x01\x71\xeb\xf2\x94\x3b\x79\x0b\x10\x11\x76\xb6\xc0\xb8\x4f\xc8\x0f\xb4\xe6\xb2\x51\x56\x43\x86\x6e\xa0\x52\x80\x92\x81\x25\x48\x5e\xd8\x43\x90\x01\x93\xb1\x36\x65\x32\x6e\x48\x8f\xf9\x95\xdb\xfa\x6d\xbf\xf4\x67\x5e\x48\x9e\xaf\x97\xda\x7c\x53\x13\xb1\xaa\xd9\xdc\x4d\xa3\x76\x45\xbc\x4c\x23\xe0\xad\x9f\x15\x5a\x04\x6b\x45\xb4\x53\x68\x36\x75\x16\x04\x4b\x06\x83\xba\x39\x82\x40\xbb\x8e\x40\x86\x07\x04\x73\x3e\x75\xa5\xf8\xb0\x6f\xe8\x60\x0e\x7e\x1b\x77\xcd\xe2\x99\x63\x2c\xce\x45\xb5\xbc\x1a\x4f\x79\xfe\xbb\x0d\x72\xc3\xbe\xbc\x0e\x53\xc9\x2f\x23\x39\xc0\x0b\x01\xa2\x7e\x98\xd5\x5c\xf3\x8c\x16\x07\x11\x1d\x96\xdd\x8b\xb2\xa2\x31\x06\x57\xf8\xae\x9a\x11\x7d\x2f\x91\x26\x5a\x90\x3b\xb6\xb8\x97\x75\xee\xb4\x3f\x47\x5f\xc4\x8d\x83\x83\xa1\xb4\x9b\x0e\x67\x96\x25\x63\x54\xa2\x2e\x59\x4d\xc6\xcc\x65\x96\x2c\x7d\x79\x71\x42\xce\xc4\x02\x15\xaf\x08\xfb\xdf\xc7\x08\x82\x3e\x47\xa0\xdd\xa2\x25\xd2\xb9\x0d\x56\xeb\x71\xb4\x51\x1d\xd5\x39\x61\x7d\xca\x83\x31\x79\x3c\xe3\x71\x7a\xab\xcb\x79\x90\xb5\xc5\x8b\x02\x86\x54\x23\xba\x96\xdc\x5c\x8b\x35\x2f\x7b\x12\x69\x61\xb4\x7e\x2e\x98\x52\x2f\xcc\x81\xdd\xde\x9d\xa1\xa0\x80\x5b\x5a\x00\x61\xaa\xad\xcb\x66\x86\x33\x61\x22\xb0\x51\x09\x64\xde\x7e\x73\xd3\x2d\x3d\x83\x3f\x07\xc8\x07\x9a\x2f\x10\xfb\xcd\x0c\xcd\x75\xb7\xed\x3f\x04\xf5\xcc\x37\xce\xae\x37\x0d\x28\xd9\xe2\x72\x54\xa1\x55\xb7\xb7\x39\x9a\xd7\xdd\x59\x82\x2d\x66\x0b\x82\xd9\xbf\x1a\x5a\x40\xd6\xd4\x6d\xdd\xb0\x83\xa7\x30\x38\x98\xbe\x97\xf5\xdd\xe9\x5f\xff\xfe\x0c\x6c\x0e\x4f\xdd\x70\xba\xb1\x88\x8a\xad\x22\x89\xaa\x1f\x59\x6a\xec\x97\xbf\x09\x0f\xb2\xdb\x4b\xe7\xd0\xb0\xf9\x70\x80\x07\x0a\x27\xc0\x6f\x50\x54\x5c\x3d\xaa\x5a\x24\xbe\x4e\x64\xd8\x92\x7b\xbb\xa8\x36\x57\x92\xe2\x4b\x3c\x3a\xe3\x26\x27\xb3\x9d\x87\x6f\xc3\x5d\x51\xb8\x25\x7e\x9c\x20\x4c\x7f\xa8\x82\x5f\x43\x6d\x2a\x70\x73\x48\x1f\x01\x09\xb3\xa8\x12\xea\x70\x23\x18\x25\x7a\xc5\xa0\xc6\xed\x49\x19\xe5\x9b\xce\xc8\x56\xfc\x39\x59\xbe\xf4\xa1\xc7\x8b\xb5\x15\xd2\x9b\xea\x14\x88\x99\x03\x6d\x5d\x7c\x8f\x00\xd7\x66\x9f\x2b\x6c\xf8\x85\x65\xf4\x80\x98\x83\x5a\xae\x5b\x9a\x4d\x15\xda\xb6\x6a\x32\x67\x84\xce\x29\x2f\x20\x7d\x15\xfc\x3f\x52\x75\xb2\x37\x70\xb2\x99\x14\xaa\x29\x81\xa2\x4d\xe3\x5f\xe3\x85\x55\x01\x36\xcd\x66\xf0\xd8\x89\x46\x50\x54\xb3\xb7\xa3\x27\x6e\xae\x50\x5d\x2c\x04\x2d\x79\xe6\xb6\xf1\x0c\xf7\x0d\x70\x57\x3a\x68\x8b\x51\x64\xfb\xfc\x0b\x5e\x96\x8d\x36\x8b\x1b\xa3\x53\x6c\x83\xa1\x47\x44\x6b\x40\x06\x04\x97\x21\x4c\x83\x66\x0f\x34\xd3\xc5\x02\x02\x21\xdd\x2f\xe9\x59\x2d\x9b\xe9\x8c\x50\x02\x3f\xdf\xc0\x47\x9b\xb3\x95\x2b\x4d\x68\x9e\x2b\x42\x3d\x8a\x37\xd7\xa8\x78\x36\x82\xff\xab\x61\xc5\x82\xf0\x9c\x09\xdd\x26\x29\x75\xc9\x08\xda\xbe\x8f\x36\xcf\x50\x0a\x12\x7e\x2d\xc0\x14\xf4\x27\xb7\xd0\xd7\xd6\x9f\xfa\xc8\xe2\xa0\xfb\x13\xd4\x64\xa3\xab\x46\xa8\xc9\x5b\x92\x89\x11\x35\x8f\x29\xa2\x30\xb6\xba\xa9\x8f\x74\x6e\x08\x43\xae\x3f\x48\xbc\x4d\x7f\x25\xd9\xf2\x51\x8a\x48\x76\xc3\xa7\xad\xbf\x32\xb2\x84\x5c\x5c\xdf\xfc\xf6\xf2\xec\x9f\x97\x2f\x9f\x1c\x82\x04\x67\x96\xbc\xee\x78\xad\x83\xa2\xe2\x7b\x30\xce\x02\xcf\x53\xf7\x7a\xc4\xcf\x33\xba\x90\x38\xb5\x12\xb7\xa3\x9f\x6c\xee\xff\x68\x9f\xbe\x8a\x69\xde\x2c\x13\xb4\x1c\x48\xa7\x4b\x2c\xc9\xda\xec\x56\x03\x54\x29\x4d\x26\x85\x4b\xd5\xc2\xc6\x84\x98\x4d\x9e\x86\x18\x9c\x50\xe5\xd4\xd9\x9a\x5b\x56\x56\x05\xd5\x11\x59\xff\xed\xf3\x41\xb6\x28\x24\xec\x1d\x5b\xe5\xbe\x1a\x3d\xf0\xea\x56\x3f\xb6\x65\xf1\x4d\xb4\x01\x38\xce\x12\xda\xa9\x45\x81\x32\x60\x0c\x8b\x52\x22\xd8\x7d\x77\x6e\xb6\x52\x05\xfe\x22\x7a\xec\x31\x23\x63\xd9\x88\x1c\x65\xaf\x9d\x0b\x7a\xa6\x7d\x6d\x03\x74\xec\x2e\x98\x76\x7e\xa5\x0e\x15\xd1\x23\x5b\xb4\x5a\x25\xd1\x2b\x05\xef\x47\x2d\x1d\x7a\x01\x98\x95\xb6\x3a\x3e\xb2\x44\xf3\x9b\x01\xa1\x85\x14\x53\x8b\xbc\x15\x3d\xf4\x94\x09\x56\x83\x9b\xc6\xfb\xfa\x07\x2b\x0b\x0f\x6d\xa5\xa8\x15\x66\x48\x8f\x4d\xfd\xef\xe7\x14\x87\xdb\x67\xc6\xad\x59\x26\xeb\x1c\xbd\x2f\x66\x13\xd0\xd1\x72\xd2\xb9\x92\x37\xf0\x3b\xa6\xd2\x4e\xdb\x5a\x7d\x1b\x16\x5b\x48\x40\xaf\x9d\x06\x2e\x2d\x30\x79\x50\x31\x8b\x1e\x72\x29\xba\xdd\xe1\xa5\x01\x54\x53\x2d\x0b\x52\x15\x54\x30\x0b\x9d\xeb\x7d\xa6\xbd\xad\xf9\x93\x33\xd6\x4e\xfc\xb3\xe0\x4a\x43\xa5\xc2\x1d\x5b\x6c\x2c\x3b\x23\xd4\xc8\xd5\xc1\x71\x1e\x25\xdd\x24\x63\xcf\x42\xce\x3e\x7d\xd0\xf5\x0d\x0e\x4c\xaa\x36\xc8\xba\x02\x87\xe9\xab\x5e\x23\xa4\xa6\x0d\xaf\x9e\x01\x60\xf6\x80\xbc\x16\xdf\x20\x90\xe1\x00\x23\xae\x27\xe4\x4a\x10\x25\x4b\x0b\xba\xf8\xa0\xd5\x80\x40\xcd\x3a\x25\xaa\x19\x2b\xa6\x31\x96\x67\xcc\x7f\x9b\x9b\x65\x13\xdc\x2a\x56\x97\x5c\x47\x54\xe7\x05\x0d\xe8\x90\xa8\x0f\x5c\x42\xf4\x36\x40\xf9\xd3\x3f\xd9\x7d\x1f\x56\x9b\x67\xb8\xc7\x3a\xae\x82\xb4\x97\xa7\x8e\x8b\xbd\x59\x1a\xbb\xe3\xf4\xeb\x24\x0d\x75\x35\x02\xa8\xf4\x42\xbf\x35\x99\xd6\xb2\xa9\x1c\x5b\x6f\xab\xab\x8d\x40\xd9\xd4\x50\x95\x66\x31\x02\x81\x8c\x11\x9e\x2e\x21\x5e\x32\x82\xa3\x91\xb5\x7a\x50\x6e\xec\x2b\xa5\xda\x20\x10\x62\x36\x63\x9a\x57\xdd\x88\x88\xe8\x12\xa6\x1a\xc9\x1a\x21\x31\xf1\xcd\x07\x05\x9b\xd2\x6c\x71\xd0\xa5\x6a\x4d\x2d\xad\x75\x4a\xf1\xb2\x2a\x78\xc6\x35\x52\xe7\xd0\x33\x37\xa4\x05\x21\x39\xc1\xb3\x88\xfe\x56\x74\x5d\x28\x3b\x7d\x17\xdd\x72\x10\xed\x98\x65\xb9\x31\xe0\x52\x74\x42\xd4\x5f\xff\xfe\xd7\xa1\xcb\x33\x85\x69\x3e\xc5\xbd\xf1\xf5\xa9\xdb\x0d\x26\x77\x4e\x9b\xd1\xe9\xb8\xaa\xe0\x64\x42\x00\xb4\x8d\x2e\x79\x72\xfb\x8b\x72\xae\x1f\xd2\x1d\x86\xc8\x01\xd3\x76\x83\x8b\xe9\x93\x07\x2a\x6f\xba\x43\xdb\x7b\x27\x2b\x6a\x34\x58\x07\x9a\x69\x85\x15\xd6\x25\x07\x1b\x68\x17\x11\x50\x24\xdb\x39\xc4\x0a\x57\x73\x34\x56\xa9\x31\xdb\x17\x70\x10\xbf\x75\x4a\xd3\x85\xe3\xa8\xdd\x49\x40\x83\x4d\xcd\x1c\x06\xd2\xa6\x59\x9f\xbe\x72\xdb\xb3\x40\xaa\x8d\xa9\xb5\x5c\x45\xce\xe2\x6c\xb8\xe5\x05\xcf\xcc\x72\x1b\x1d\xc1\x26\x88\x52\x8d\x31\x3c\x50\x64\x6d\x2a\x30\x76\x21\x00\x85\xbf\x94\x73\x28\x1a\x36\x4a\x85\xd1\x78\xef\x69\x9d\x47\xe8\xf6\xcb\x4d\x93\xac\x3b\xde\x26\x0e\x39\x0d\x7b\x24\xf3\x96\x5c\x1f\x83\x4c\x68\x95\xb4\xd5\x20\x6a\x77\xe5\x61\xf6\x6d\xea\x37\x08\xed\x11\xd6\x67\x4f\x1b\x5a\xe7\x10\x35\x6f\xcf\xe3\xde\x6f\xbc\xee\xd9\xba\xdf\xd8\xe6\xc6\x05\xcc\x27\xbe\x7f\xd7\x25\x35\x3a\x58\xf7\x4d\xe8\x27\x86\x2c\x86\x25\xbb\x1e\xf2\xe0\x9e\xd2\x63\xfc\x09\xd8\x85\x4b\xe5\x60\x4f\x2a\xe7\xba\x43\x93\x99\x2c\x72\x50\x94\x87\x05\x9b\xb3\xc2\x93\x66\x98\x7d\xcd\xc7\x8d\xb6\x65\x35\x99\x2c\xcb\x6e\xf7\x19\xcc\x86\xdc\xd8\xd0\x6a\xdb\x74\x84\x19\xb5\x20\xd9\x4e\x0c\x79\x0c\x4e\x46\x38\x4b\x30\x5f\x9d\x42\x62\x45\xb0\x9c\x10\x66\x8e\x69\xc4\xf1\x8b\xe6\x48\xf1\x0c\xc2\x96\x3d\x6f\xa3\xb8\xed\xcc\xe7\x07\x86\xb5\xbe\x68\x6f\xa1\x22\x43\xab\xaa\xe0\x88\x60\xbb\xe4\x23\x00\xe4\xd5\x48\x9f\x3a\xe0\x29\x58\xb4\x2c\xb3\xe2\x36\xad\x00\xb8\xd4\x77\xcd\x98\x15\x58\x03\x82\x2e\x33\xac\x52\xb9\x37\x83\xce\x78\x85\xcc\x8c\x6a\xfb\xe7\x31\xbc\x05\x1c\xa3\xe6\x85\x61\x43\xc9\x2f\xa3\x3c\x7f\xcf\xd1\xb1\x2a\xef\xa1\x18\xea\xc5\xd5\x85\xd7\x98\xcd\x6b\xbf\xb9\x89\xa9\xc6\x36\xcf\xe7\xf8\x5e\xc5\xf4\x94\xe7\x64\x8c\x58\x3b\x46\xf1\x39\x12\xec\x1e\x01\x83\xad\x03\xdb\x27\x95\xcd\x1d\x28\x2e\x8e\xef\xe7\x67\x89\x38\x8e\xa0\xe2\x0b\xeb\x36\x66\xb5\xcb\x61\x1e\x73\x0b\xcd\xf9\xfa\xcd\xa1\xab\x04\xbb\x1f\xd6\xf7\xc3\xe1\x70\x18\xb5\x80\xce\x04\x1e\x74\xf6\xde\x2b\x95\xa5\xcc\xf9\x64\xb1\x74\x02\x0c\xc7\x69\x69\x82\xeb\x4e\xc5\xc2\x2e\x40\xcc\x71\xbc\x96\x90\x09\x4b\x75\x98\x60\x9d\x79\x4c\x28\xb3\xee\x90\x26\x08\xb5\xbb\x52\x9d\x08\x1b\x1f\x89\x2e\xe2\x4c\x2b\x1c\x49\xe9\x3d\xb9\x06\x63\x61\x1b\x8c\x67\x0d\x19\x3e\xab\x69\xcc\x66\x74\xce\x25\x34\xa3\x04\x0e\x00\xb8\xcf\x8f\xec\xbe\xd3\x6d\xa2\xb9\x81\xcd\x70\xc2\x94\x65\xf6\x50\x41\x93\x30\x1b\x40\x1f\x49\x08\x9c\x74\x6b\x12\xd1\xaa\xa8\x2a\x40\xe2\x8b\x18\xb0\xc3\xf6\xac\x4b\x0b\x6b\x85\xdd\xaa\x90\x31\x35\x44\xf8\x29\x1f\x2d\x1d\xf8\x28\xf8\xbc\x2b\x7b\xab\x40\x4b\x13\x92\xb0\xc9\x84\x65\x80\xeb\xc4\xaa\x19\x2b\x59\x4d\x8b\x2e\x69\xb6\x13\xd4\x97\x46\xe8\xd7\xe6\x82\x62\x45\x5f\x49\x37\x86\x81\x20\x36\xab\x0c\xc4\x78\xce\xa3\x50\xba\x7f\xa0\x05\xef\x94\x52\x1f\xbc\x16\x6f\xa4\xd4\xaf\xb8\x02\x2f\x1d\x64\xcf\x93\x03\x74\xef\x1e\x9c\xac\x71\x69\xb8\xcf\x52\xe0\x77\xb7\xc4\x28\xa2\x02\xcf\x2d\x8a\xc0\x36\x2e\xb8\x91\x1b\x46\x1c\x7a\x87\xab\x31\x9b\x75\xbd\xa8\x24\x17\x7a\xb5\x9b\x42\x42\x43\xeb\xef\x6d\xdf\x70\x70\x4b\x3a\x45\x30\xa5\x45\xf0\x2b\xba\xf0\xe1\x53\x5b\xbb\xbb\xa4\x17\xa3\xdb\xd8\x7e\x06\x6d\x9b\x96\x15\xe7\xcd\x4b\x39\x08\xe6\xaf\x2d\xbd\x68\x10\x74\xc1\xee\xa4\x91\x2f\x0f\xa8\xe9\x1d\x53\xa4\xaa\x59\xc6\x72\x26\x36\x06\xa8\x21\x28\x56\xf0\x6c\x27\xc1\xe9\xff\x81\x64\x29\xdc\xb0\x6b\x09\x7c\x68\x1b\x77\xec\x2a\x28\x32\xb2\xcd\x48\xda\x1b\x05\x26\xb9\xb9\x7a\x14\x52\x12\xa5\x18\xd6\x52\x82\x43\x3f\x6a\x5b\xaf\x1c\x9e\xf4\x8a\x9a\x36\x37\x9c\xd9\xf5\x37\x03\x0c\x4e\x42\xdb\x38\x81\xb1\xde\x84\x6a\x6a\xe6\xf0\x1a\x63\xfc\x20\x92\xa1\x87\xd3\x4e\xe7\xfb\xab\x0b\xf2\x8c\x1c\x01\x92\xac\x6f\x94\xe6\x13\x92\x97\x51\x41\x01\xa9\xd2\xbc\x22\x72\xda\x3e\x42\x63\x7b\x7a\x0a\x89\xa2\xd1\xce\xdb\xe8\x20\x4e\xe7\xae\x58\x0d\x15\x50\x51\xb2\xe5\x93\x60\x3b\xb1\xd7\x37\x0e\xed\xdb\xa3\xf0\x6c\x4b\xc2\x7d\xff\x24\x12\x2e\x74\x85\x98\xfb\xdb\xdd\x12\xbc\x72\x25\xd3\x14\x5a\xec\xa2\xe4\x73\x5f\xf8\xc3\x1e\xc4\xbd\xfc\x7b\xbf\x27\x45\xfe\x75\x91\xdb\xb6\x75\x07\x6f\x2e\x81\x0a\x97\x4c\x62\xdd\x3b\xe8\xb7\xca\x57\xfd\x56\xf1\x52\xe0\x1d\xb0\xd7\x2e\xef\xce\xf7\x25\xac\xa9\xc8\x65\xb9\x42\x9f\x39\x66\x2c\xae\x33\x78\x7b\x30\x37\xbd\xa5\x31\x86\xf1\x23\xf7\x3a\xe1\x96\xc6\x38\xeb\x96\xee\xf5\xc7\x7d\x4b\x23\x53\xc3\xd3\x12\xc3\xc1\x75\xdf\x43\x6f\xae\x97\x10\x02\xe0\xca\x9f\x68\x8c\x09\x00\x7a\xf3\x8a\xb3\x38\xb9\x4b\x64\x72\xd2\x75\x2d\x8b\xc8\xec\xea\xce\xac\xdf\xc8\xc2\xc2\xa4\xbb\x69\x9b\x17\xef\xec\xac\x75\x64\x95\xe6\x72\xf7\x9d\x45\xb5\x34\x6b\x88\xbb\xec\xea\xac\x9b\x28\x1d\x90\x2c\xcf\xda\xa8\x92\xdd\x59\x83\xba\xb5\x8b\xb3\xee\x62\x9a\x6e\x4b\xf6\x5a\x2a\x88\x44\x15\xc0\x2a\xa8\x2b\x5d\x62\x5b\x74\xbd\xc8\x78\xd1\xc7\xc5\xae\x53\xda\x01\x22\x28\xd4\x53\x4b\x08\x99\xd1\x02\xb0\xb3\x63\x8f\x13\xe9\xad\x24\x65\x99\x96\x00\x4a\x85\x9a\x69\xc2\xef\x02\x90\x37\x8a\x4d\xc5\x65\x9b\x35\xba\x94\x21\x1a\x9b\x9a\x8e\x80\x46\x38\x9e\xab\x83\x33\x7a\x48\x8b\x6b\x17\x8e\xa9\x25\x74\x59\x89\x1d\xec\x95\x2f\xb4\x33\xab\xc8\x30\x9f\xbf\xa2\x7a\x36\x20\x35\x2b\xa8\xe6\x73\x57\x2b\x40\xee\xd0\xf9\x72\xd8\x81\xd8\x73\x17\xd1\x11\xec\x4a\x88\x53\xe9\x01\xed\x71\x82\xcc\x9f\x2b\x72\xf0\xd2\xed\xce\xc1\x09\x7e\xe7\xfa\xf5\xad\xfb\x1e\xe4\x91\x3b\x74\x97\xe8\xda\xfc\x5d\x91\x80\xd1\x07\x18\xd7\xca\x1f\x5a\x8c\xf0\xdc\x71\x91\x13\x39\x59\xd9\x27\x8f\x72\x89\xe6\x4a\xec\x76\x61\x74\xc4\x71\x61\x5a\xb3\xb8\x68\xb6\x79\xfc\x0e\x93\xe1\x13\x5f\x38\x9b\xed\xec\x92\xf5\x87\x8f\x98\x59\xce\xc5\xef\x48\xeb\x67\xf0\xef\x05\xdc\x26\x33\xc7\x21\x11\x72\xcd\xdb\x93\xb6\x28\x45\xd2\xaf\xa0\xb0\x6f\x27\x53\xc4\xa5\xb9\x42\x72\x88\x0a\x0d\x6c\x40\x7e\xe2\x35\xc0\x3c\x81\x93\x0b\x1c\x62\x5c\x60\x12\x8e\xdf\xc1\x01\x9c\x9e\x3c\x0a\x74\x85\x60\xde\xc6\x72\xb3\xb2\xaa\xe6\x25\xad\x17\xe4\xc5\xd5\x85\x6d\x8b\x61\x23\xa8\x47\x61\x02\xee\x31\x66\x86\x62\x56\x4b\xc9\xca\x31\x86\x55\x63\xc2\x98\x2b\xe8\xa2\x9d\xe6\x53\xbe\x85\x4d\xc3\xf3\xc7\x3d\x80\xcb\xee\x84\x08\x32\x84\x0c\xf1\x8d\xdd\x8e\xd4\x80\x7a\x6c\x9d\x1e\x62\x11\xba\x0b\x5a\x05\x6a\x47\x56\x01\xa8\x55\xda\xb0\x3f\x8c\x44\xf3\x39\x8b\x59\x09\x36\x67\xc2\x42\x6d\x2d\xe0\x9d\x46\x25\xe4\x22\x2b\x9a\xdc\x11\xc8\x15\x9c\xdd\x8f\x48\xef\x8c\xeb\xc2\x1d\xdd\x83\x3b\xcd\x83\x98\xe8\x43\xc4\xd6\x1c\xdb\x60\x69\x37\x38\x34\x24\x39\x12\xea\xf9\x9b\xaf\x42\xce\x1d\x71\x58\xb9\x1a\xb4\xa7\x3a\x21\x23\x8f\x44\xda\x08\x8f\xf4\x1e\x41\x83\x1b\xe1\x68\xd9\x64\x72\xe2\xee\xd8\xf6\xbe\x73\x21\xae\x82\x36\x22\x9b\xed\xcf\xf2\x63\x4f\x17\xf3\x01\x56\xd7\x27\x16\x51\x72\xc7\x6a\xc1\x0a\x52\xd1\x9a\x96\x4c\x1b\x2d\xd5\xf9\x4f\xa3\xaf\x4d\x34\xda\x43\x5a\xd3\xf8\x84\x86\xef\xc3\x28\x5c\x6d\xd2\x03\x40\x45\x4a\x7b\xe8\xce\xc6\xb6\x8d\xa0\x2d\x49\xd0\x15\x35\x6e\x1b\x49\x1f\xf8\x0e\xb0\xa2\xbd\x4c\xed\x07\xf0\xa2\xef\xc6\xdc\xba\x5d\xc0\xb6\xe5\x64\xfa\x11\xa9\x68\x5b\x50\xba\xe4\xf2\x0f\x1f\xe4\x71\x16\x95\xad\x87\xa6\x1d\xe5\x73\x39\x36\x12\x16\x68\x46\x12\xf0\x8e\x90\xea\x76\x23\xf5\xf1\x22\x04\xda\x9e\x7c\x54\x31\x93\x69\xa9\xe8\x79\xcd\x00\x66\x89\x16\x37\x15\xcb\xb6\xe9\x52\x78\xf1\xea\xe6\xac\x4b\x0d\x08\x66\x04\x30\x9a\x31\xf8\x3c\x00\x9a\xbe\x67\xe3\x99\x94\x77\x91\x83\x1d\xad\x69\xf8\x12\x94\xb5\x28\x3e\x55\xa7\x96\x31\x0c\xcd\x32\x1d\x13\x2e\x0a\x90\xaf\x4e\x81\x01\x68\x6c\x54\xfc\x13\x26\x4c\x32\x3f\x63\x38\x50\xb6\x02\xdb\x2a\x4a\xab\x4b\x72\x9d\x54\x70\x94\x2c\x03\x56\x4f\x4c\x3c\xbc\x4f\xe7\xd4\x3c\x32\xd3\x35\x2d\x89\xd6\xae\x1a\xba\xe4\xb7\xb2\x24\xd6\x8b\x6b\xcc\xbd\x6d\xde\x9e\x6f\x5b\x32\x48\x6e\xb4\xbe\x12\x4e\x2b\x9f\x84\xfc\x3c\x70\xf4\xf8\xa4\xb9\x43\xf3\x97\xc4\xfe\xe9\x61\x6a\xb0\x87\x90\xb3\xa2\x40\xc1\x3e\x72\xd0\xa6\x2e\x3c\xd2\xd6\xcf\x79\x30\x24\x6f\x15\x77\xe8\x8f\xd5\xdc\xcc\x73\xe4\x3a\x36\xeb\x10\xc4\xd3\x56\xed\x95\xfc\xc1\xd0\x16\x8e\x15\x82\x21\x03\x84\x8d\x18\xae\xff\x38\xba\x9d\xfb\x55\xeb\x0f\x1a\x98\xfd\x08\x5f\x6f\xce\x77\xdd\xc0\x82\x08\xf8\xe0\x1a\x61\x8a\x71\xad\xc2\xcc\x07\x2d\xe1\x9b\x29\x47\x3c\x2e\xfd\x8c\x84\x29\x68\x3d\xdd\xf6\xe8\x53\x0e\xe9\x68\x96\x0e\x23\xff\x9d\xd6\xf4\xe1\xd3\xd3\xc8\x52\x8a\x1a\xb8\x7e\x3e\x7c\x9a\x1a\x59\x9f\xaa\xb6\xaa\x22\x9d\x7c\x98\x64\x35\xb2\xed\xcc\x49\x92\x00\xa5\xc0\xea\x39\xcf\xd8\x59\x96\xc9\x46\x3c\x69\x85\xe9\x05\x33\x53\xa6\x9a\xe5\x37\x1d\x1a\x30\xec\x9e\xc3\xa7\x58\x6b\x4e\x0b\x4e\xb1\x29\x78\xf7\x9b\x31\x6d\x2e\xda\x51\x21\xc8\xbf\x34\x7f\x7b\x65\x94\x66\x34\xaa\x5a\x34\x71\xf9\x9f\x1a\x5c\x64\x75\x39\xd7\x29\x13\x4b\xdb\x63\x23\xfb\xcb\xf8\x39\x1b\x0e\xfd\x7e\x38\x4a\x9a\xaa\xbb\xb6\x0f\x3b\x03\x50\x7a\xcf\xa9\x82\xdf\xdb\x65\x1c\x52\xa4\x31\xa6\x37\x7b\xc4\xd6\x69\x23\x8c\xcc\x4a\x9d\xa9\x6f\xfe\xef\x8b\xeb\x27\x86\x85\x71\x32\xd1\xc2\xa3\xcf\x2c\x2d\xde\xf8\x0c\xdb\xae\x85\xcd\x47\x0c\xa9\x03\x52\x53\x8c\xcd\xce\x28\x4a\x84\x82\x51\x74\x78\x92\xa3\x00\xe4\x67\x63\x79\x7e\x25\x48\x9b\xe3\x88\x3a\xc1\x00\xcf\x48\xc9\xa8\x50\x41\x6f\x1c\x06\x84\xb8\xc0\x81\xa7\x1e\x2d\x49\x7b\xf2\xac\x93\xee\xc8\x85\x17\xbb\xdf\x50\xba\x6e\x32\x4d\x1a\xad\xcc\xef\x63\x48\x75\x92\xf1\x3d\x88\xad\xd9\x94\x2b\x5d\xdb\x86\x46\x66\xf8\x96\x64\xeb\x0e\xf6\x5f\xb9\x63\x0b\xf2\xed\x77\x97\x3f\xfd\xf6\xf2\xf5\xf9\xd9\xcb\xdf\x5e\x9d\x9d\x7f\x7b\x75\x7d\xf9\xcb\x2f\x37\x3f\xdd\xdc\x5e\xbe\xfa\xe5\x97\x73\x6c\x0d\x6a\x7b\x10\xdd\x30\xfd\xcb\x2f\xf6\x8e\xa9\x5f\x7e\xb9\xcd\x2a\x5e\xfd\xf2\xcb\xc8\x39\x26\x41\x90\x9a\xa5\x8a\x80\x87\xc1\xf6\x06\xbe\x68\x02\x14\x3c\xdc\x7e\x98\xe5\x8c\xaa\xb6\xfe\x2f\x01\x49\x0d\xca\x21\x62\xd8\xe5\xe6\xca\xd6\xda\x16\xdc\x4f\xca\x32\x67\x10\x5c\x23\x8a\x8b\x69\xc1\x7c\x0c\xab\x05\x2c\x1d\x33\x7d\xcf\x6c\x23\x91\x65\xdd\x2a\xbe\x54\xbe\x45\x0b\xb5\xd5\xdf\x1d\x88\x3e\x9b\x39\x60\xf1\xf2\xe7\x9c\xdd\x63\xa7\x45\x3e\x15\xb4\x70\x34\x32\xdb\x9e\x0a\x93\x32\xda\xbf\xdf\x90\x92\x10\xa6\xb5\x92\xf9\xc0\xc1\x06\x2d\xc5\x7d\x57\x62\xbe\x1d\x84\x34\xaa\x0c\x6d\x2c\x27\xa3\xab\x0b\xf2\x7c\xd3\xc5\xf8\x16\x7b\xfb\xc3\xc8\x37\xeb\x0e\x84\xf7\x44\x19\x1d\x0f\x15\xc2\x64\xf8\x89\xa7\x3e\xe8\xcd\x38\x97\x25\xe5\x62\xbb\x60\x63\x93\xa6\x28\x16\xe4\x5f\x0d\x2d\x50\x7d\x1d\xc9\x7c\x55\xd2\x1c\x7c\xe5\x7e\xf5\x8f\x93\xaf\x3c\xe1\xff\x38\xf9\xca\xa1\xcc\xc2\xa6\xfc\xe3\x44\xcd\xb3\x93\xaf\x6c\x83\x2a\x62\xbf\x74\xd0\x33\x42\x99\xe7\x73\xd4\x8e\x80\x28\xb7\x60\xe8\x3e\x89\x46\x87\x5e\x05\x48\xb9\x7a\x51\xd3\x8c\x8d\x58\xcd\xc1\x36\x90\x22\x7f\x52\xa4\x32\x77\x82\x49\x6e\x5b\x2b\x9b\x3b\xa9\x90\x0e\xbf\x66\x82\xb1\x1c\x4d\x35\x4b\x36\x23\x53\x43\x35\xec\xfb\x09\x58\x55\x00\x1d\x9c\xd5\x8c\x62\x39\xbc\xc5\x11\x76\x4d\x64\x37\xdd\x3e\x0c\x6a\xb8\x2c\x3a\x21\xc5\x50\xb0\x29\x66\xb5\xd9\xb0\x33\x22\x4d\xa0\x98\xc5\xf6\x59\x3e\x83\x4a\x69\x59\x11\x5e\x96\x2c\x37\x86\x41\xb1\x20\x73\xbe\x29\x42\x31\xa8\x15\x80\x87\x86\xcc\xf1\x48\x48\x22\x21\x6a\xdb\x08\x6e\x03\x2c\xb3\x46\x93\x5c\xde\x8b\xcd\x55\x8a\x09\xf2\x68\x24\x9e\x2b\x22\x78\x31\xe8\x80\x26\xc2\xe2\x92\x0a\xce\x44\x17\x0e\x39\xca\xea\x40\x63\xbf\xf3\x52\xab\xc0\xaf\xdb\x74\x84\xfc\xc5\x3e\x7e\x4e\x24\xb8\xee\xcd\x2d\xc6\x2b\xe6\x63\xb0\x8d\xbb\xe5\xd3\xf0\xe8\xbb\xe5\x75\xc2\x01\xcb\x62\x50\x88\x85\xc3\x9b\xb1\x26\xb2\xce\xf8\xb8\x58\x90\x19\x2d\x7c\x57\x69\x1a\xee\xd2\xa6\x8b\x72\xc3\x74\xb8\x11\x85\x14\xd3\x50\xd7\xc5\x0e\xe1\x80\xe1\xc9\xa8\x68\x2a\xa4\xce\xa8\x71\x0b\xd9\x44\x3b\x40\x42\xc7\xc7\x17\xcf\xdc\xa2\x6f\xa1\x53\xe2\x46\x99\x17\x5a\x16\x0c\x4f\x4a\x0a\x73\x5a\x8b\x52\x79\xa8\xc2\xb7\x7f\x2c\xc0\x77\x11\x6e\x37\x07\xa8\x0e\x47\xee\xd6\x4f\x19\x1c\x19\x5a\x53\xc0\xca\x34\x2c\x16\x3f\x01\xa0\xac\x05\x31\x5a\x91\xed\x0a\x63\xc1\x65\x37\x8f\x8a\x99\x8b\x55\xf3\xaa\x60\xe4\xab\x3b\xb6\x18\x60\xcf\x4e\x54\xe7\xff\x41\x1a\xe5\x6c\x17\xdf\x25\x4b\x56\x86\x00\x59\x93\xaf\xdc\xbf\xfe\xf1\x84\x38\x7d\x29\x71\x38\x9c\xd4\xb6\xa0\xf3\x2e\x11\x21\xa5\xdb\xca\x13\x37\xd0\x82\xa7\x68\x89\xab\x7c\x42\x2e\x01\x3d\x17\x0d\x48\xf8\x15\x58\x02\xe1\x97\x23\x5d\xab\x3f\xba\x78\x6a\xdb\x24\x11\x3c\xf7\x01\x12\xca\xb5\xb4\x98\x8d\x0c\x7a\x19\x4f\x58\xdd\xfe\x06\x58\xf1\xb5\xbc\x7c\x60\x59\x13\x87\xf8\x97\x14\x03\xba\x63\x11\xe8\x42\xfd\xec\xde\x77\xcc\x37\x93\xc6\x6d\x30\xf6\xb9\xc7\x49\x68\x59\x54\x50\xd2\xf3\xf6\x6d\xbc\x63\x9b\xe3\x86\xe3\x73\xe5\xfc\x1a\x40\x91\x85\x69\xf5\xb7\xd2\x69\x45\x97\x0f\x5c\x69\xf5\xbf\x90\x9f\x64\xb2\x1c\x3b\xa1\x8a\xe4\xb8\xb3\x06\x14\xb9\xdd\x17\x39\xfc\x18\x4b\x5a\xd2\xde\xba\x09\x6c\x6b\x83\x5f\xbb\x05\xac\x59\x55\x33\x05\x41\x67\x6a\x96\xe2\x50\xd9\x9a\x09\x29\x00\x30\xca\x86\x24\xb0\x27\x75\xd4\x50\x2e\xbd\x1e\x07\xc4\x5b\x87\xdb\x05\x5b\x70\x69\x2c\xa5\x93\x8e\x2a\x80\xbf\x8a\x63\x3b\xf8\x62\x0e\xad\x40\xf9\x9c\x16\x0c\xdd\xaf\xf7\xbc\xc8\x33\x5a\x63\x22\xa2\x6d\xd4\xac\xa4\x2d\x4b\x43\x34\xdc\xa8\x08\x96\xd7\x06\x58\x7b\xd8\x95\x4d\x40\xa2\xb5\xe6\x59\x53\xd0\x9a\x18\x0e\x38\x95\xf5\xc6\x8d\xd1\x49\xea\x31\x6b\x6f\x6a\x94\x35\x85\x4f\x1f\xe7\xed\x76\x99\x90\xf0\xe0\xe9\x99\x57\xc5\xe5\x04\x35\xcb\x25\x36\x73\x84\x85\x20\xf6\xb6\x47\x51\x20\x27\x4e\xf0\x78\x8e\x3e\x40\xc7\xce\x3d\xef\xf6\x53\xe7\x8a\xf0\xa9\x90\x35\xcb\x8f\x03\x05\xc4\xf3\xc2\x13\xf2\x4f\x0f\xe2\x1d\x93\x74\x6d\x34\x2e\x17\x4a\x06\xec\x3e\x3b\x37\xcb\xa8\xec\x69\x6a\x59\xef\x44\xd6\x6c\xce\x6a\x72\x94\x4b\x44\xaa\x9e\xf3\x4c\x1f\x9f\x90\xff\xc7\x18\x7a\xb1\xd1\x37\x6f\x41\x5a\x66\xe8\x81\x17\x2d\x2c\x22\x55\xe4\x19\x39\x82\xa1\x42\xeb\xf1\xd8\x65\x90\x60\xeb\xec\xf8\xf3\xbc\x9d\x7c\xe9\x84\x54\xc3\x3e\x2e\xc1\x0f\xce\xc6\x6d\x37\x17\xad\xad\xa5\xd3\xee\x3b\x27\xc8\x24\x91\xe9\x85\x24\x57\x96\x2f\x76\xe2\xab\x3e\x65\xc3\xc9\x54\x7f\x17\xfe\x0f\x24\x09\x90\x9a\x4d\x81\x7b\x21\xef\x79\x42\xde\xa5\x65\x25\x0b\x39\x5d\xdc\x54\x35\xa3\xf9\xb9\x14\x4a\xd7\xc0\x58\x9f\xd2\x17\x74\xfb\x18\x11\x41\x17\xbc\x99\xbc\x27\xd4\x16\x85\xc8\x89\x11\x23\x8a\xc8\x66\x3a\x43\x1c\x77\xf8\x43\x42\xb3\x5a\x42\x13\x49\x7c\xdd\xa6\x76\x16\x38\xe4\xd4\x89\xc3\x74\x77\x4e\x61\x0f\x12\x0f\x63\x82\x8b\xfc\x9e\x2e\x2c\x2b\xa1\x63\x9e\x33\x15\x14\x12\x3b\xd2\x37\xee\xf6\x6d\x44\xda\xa3\xeb\x60\x04\xf9\xd9\xf5\xc5\xa6\x09\x08\xdb\xb3\x53\x1f\xdb\x52\x6f\x22\xe0\x8e\xb6\x7b\xe7\xad\x40\x58\x65\x5a\x4a\x6b\x1d\x4e\xf9\x9c\x09\xbf\x32\x1f\x09\x6e\x7b\x49\x1f\x6e\xee\xd8\x7d\xc4\x5f\xba\x89\x7e\xc7\x36\xaf\x45\x18\x82\x0b\xeb\x7b\xa1\xa8\xe6\x6a\xc2\xe9\xb8\x78\x4a\xf0\x78\x00\x1f\xb8\x61\x05\xcb\xb6\xa8\x6b\xbf\x0c\x89\x70\x00\x9a\xbe\x77\x66\xe7\x8c\xc5\xf1\x7b\xa8\xa7\x69\xdd\x22\xb6\x6a\x0b\x70\x17\x94\x1b\xd6\x5c\x56\x08\xf4\xe3\xd0\x3e\x95\x0f\x53\x17\x9a\x72\xcc\x6a\xc7\xc2\xe2\x74\x1a\xf0\x13\xf2\x7a\xa9\xab\x9a\x3b\x3a\x96\x91\x7d\x84\x7d\x41\x61\x49\x2f\x1f\x8c\xb2\xaa\xe2\x12\xf9\xf1\xe9\x9c\xa4\xe5\x97\x62\x02\x8f\x2b\xa2\x5a\xda\x3a\x7b\xe9\xa1\xb1\x8f\x6b\x18\xde\xfe\x26\x96\x0d\xb7\x4f\x4a\xa9\x11\x3e\xd1\x05\x47\xf8\xf4\xd5\x8e\x13\x0a\x6d\x1f\x5d\x3b\x5c\x63\xff\x49\x08\x83\x64\xbd\xde\x6a\x80\x36\x30\x06\x68\xa1\x47\x8d\xd5\xa0\xcc\x97\x13\xc8\x02\x8b\xda\xda\x10\x77\x6c\x01\xaf\xc7\x11\x63\xf7\x2c\xf9\x5a\x38\xc2\x52\xca\xa8\xf0\x19\x9a\x29\x25\xfd\xbd\x5b\xe6\xe8\x97\xa4\xde\x71\x7c\x22\xfd\x6d\xed\xd3\x39\xc7\x77\xad\x0b\x0d\xcf\x64\xc7\x85\xd6\xf2\xe5\xd6\x81\x96\x34\x76\x72\x11\x16\x3e\x29\x7e\xa9\xf6\xe9\xef\x42\x87\x34\xbd\x8f\xaf\x8a\x12\xdb\x02\x31\xf5\x7a\xe1\xb3\xce\x77\x75\x25\x06\xe4\x5a\x6a\xf3\x9f\xc0\x8d\x75\x21\x99\xba\x96\x1a\x7e\xb3\x13\x3b\x89\x0b\xb0\x4b\xfb\x68\x5d\x0d\xd8\xfe\x0b\xc4\x8d\x4d\x49\x33\x8a\x82\xdd\xaf\x75\xb6\xeb\x95\x20\xb2\xb6\x4b\x9e\x48\x82\x37\x7f\x95\x25\x20\x8c\xaa\xdb\x46\x29\x8f\x5a\xcf\x86\x8a\x70\x9b\x3f\x18\x31\x96\x10\xc0\xce\xc7\x4f\xa0\x4b\x7d\x55\x40\x5d\x75\xde\xc0\x82\x51\xb3\x72\x54\xb3\x29\xcf\x12\xe9\x28\x59\x3d\x65\x04\x3a\xd4\xf5\x71\x72\x53\x14\x09\x7c\x12\xd5\x89\x90\x98\x84\x6b\x04\x3a\x1a\xe8\xee\xfd\xe8\x7c\x09\xf7\x27\x20\x05\xb5\x98\x92\x82\xc3\xe1\xff\xf5\x21\xcc\xff\x8f\x54\x94\xd7\xea\x84\x9c\xb9\x34\xbb\xf0\x33\x9b\xa9\x10\xbc\x26\x81\x94\x6a\xd5\xbb\x4e\x05\x61\x88\xb2\x62\xa8\x5a\x56\x6e\x07\xe4\x1e\xfa\xd1\x1a\x01\xe8\x3d\xac\x07\x77\x6c\x71\x30\x48\xea\xa1\x1c\xde\xd0\x83\x2b\x71\xd0\xe6\xd5\x75\x6e\x95\xd7\xf1\xa0\xf7\xc4\x01\x7c\x76\xf0\xe1\xf4\xe8\x24\x8d\xac\xc5\x25\x19\xf5\xa0\xd2\x24\x5e\x81\x4e\x43\xae\x92\x56\xb6\x1f\x17\xd5\xb2\x8c\xe0\x39\xed\xe1\xfb\x2e\xa2\x9f\x18\xe9\xe9\x36\xbd\xea\x50\xe1\x4c\x02\x6d\x4d\xdf\x56\x53\x53\x58\x36\x5e\x40\xa0\x7a\x66\xdd\x6c\x72\xce\x6a\x74\xb1\x45\x8d\x8d\x4e\x25\x0e\x8d\xe2\x6d\xbe\x39\x2d\xb2\xc6\x98\x06\xb6\xc5\x3c\x0c\x6c\xce\xa1\xf3\x10\x14\x52\xde\x35\x95\x3b\xcf\x90\x8b\x1a\x7b\x63\xb8\xc8\x64\x69\xfd\x0c\x38\x4f\x70\x07\xdb\x8b\x39\xb4\x69\x3f\xc8\x63\xfc\x55\xc0\xc4\xa2\x8e\x17\x25\x32\x48\x16\x2e\xa6\x77\x98\x32\x23\x46\xbd\x7f\xad\x5d\xde\xb7\x2e\x55\x14\x01\x2e\xe1\x3c\x5c\x05\xdb\x25\x8a\x96\x3e\xba\x3c\x91\xf5\x98\xe7\x39\xf8\xf6\x90\x38\x5f\xf6\xb4\x74\x70\x0c\xa7\xe9\xf8\x75\xe2\x98\xc6\xd2\x5b\xd7\x54\x83\x2f\x3b\x8f\xc4\xa1\x8e\xc9\xcd\xc5\x07\x06\x01\x1b\x24\x97\xe6\x45\x7e\x8a\xcb\x4b\xe3\x0e\x82\x59\xfd\xa8\x91\xc6\xcc\xc5\xd0\x8c\x48\x12\x4d\x51\xf8\x36\xcd\xe8\xe6\xc0\x70\x17\xb0\x64\x1b\x99\x9f\x1a\x26\xad\xbb\x87\x6d\xf3\xae\xa3\xf8\x2c\xf7\x1e\x05\xa9\x63\xf6\xcc\x72\x7c\xb4\xcb\xba\xab\x7f\x25\x46\x32\xef\xba\x88\x3b\x6d\x48\x2d\xdc\x89\xeb\x5f\x7a\x14\x34\x32\x8d\x2d\xfd\x20\xc9\x4a\x53\x82\xaa\xd4\xa7\x74\x08\xda\x35\x46\x8b\x07\xf0\x4e\x6f\x4f\x2e\xc0\xf0\x41\x6c\x07\x53\x50\xa7\x35\x43\x78\x4a\x60\x4b\xc0\xa6\x6c\x3f\xfd\x46\xb0\x39\x33\xc7\x37\xe7\xca\xb6\x73\x8c\xd4\x1c\x20\x4b\xe9\xbf\x57\xdc\xe4\xff\xd7\x85\xbc\x96\xda\xc5\x7d\xfe\x7b\x60\xc3\xc6\xa8\xc8\x3d\xf0\xb2\x29\xdb\x9e\xfe\x24\xe7\x93\x09\xab\x23\xb1\xfb\x89\xaf\xc0\xe8\x3a\x83\xbb\xe1\x0f\xcb\x26\x34\xad\xa7\x50\x37\x6c\x1d\xbb\x4e\xe7\x9a\x16\x72\x4c\x0b\x52\x72\x61\x48\x8b\x5b\x89\xdb\x95\xf7\xf8\x19\xdb\x1f\xdf\x42\x1c\x28\xa1\x7c\xca\xc7\x05\xb3\xde\xe6\xb8\x3c\x81\xda\xa6\x50\x4f\x96\x56\x63\xe9\xe5\xc0\x5f\x0a\xa6\x14\x26\xc9\xbe\xe2\xe2\xc2\xc6\xea\xa2\x86\xfd\xc6\xb0\xc7\x07\x5a\x56\x05\x43\xa8\x3f\xf2\xc5\xf0\xdf\x52\x30\x62\x93\xff\x07\xfe\x88\xda\x6a\x16\x2d\xc9\x73\xd4\x78\x2b\x0f\xa7\xe5\xaa\x4c\xa2\x28\xe8\x30\x5e\x1f\xbd\x54\xe4\xf3\xd3\xcf\x4f\x9f\xc7\xb1\x98\x2b\x5b\x80\x93\x51\x65\x9b\xdf\xac\xee\xee\xc6\xa5\x2c\xf8\xfc\x4e\xcc\xea\x3c\xb7\xff\xfd\xdc\xfe\xf7\x0b\xf2\x7b\xe4\xdb\xc8\x88\x8c\x3a\xff\x35\xff\x89\x7c\xdb\xd0\x1c\x9e\x60\xbb\x9e\x0f\xba\xc2\xb5\xd3\x8f\xdb\xde\x6f\x50\xf7\x70\x0a\x20\x67\x32\x59\x32\x58\xfa\xcf\xff\x57\x9c\xb2\xd9\x36\x19\xe6\x9a\x48\x61\xdf\xfe\xfc\x08\x96\xeb\x98\xdc\x43\xf4\xbf\xa4\x77\x18\x01\x3a\xcb\x74\x43\x0b\x43\xf0\xd1\x17\xc3\xe7\xc7\x44\x8a\xce\xd7\xa3\x48\x98\x73\x69\x14\x36\xb7\x12\x47\xcf\x23\xa1\x0e\x96\x97\xf3\xf3\x35\xcb\xd9\x59\x49\x98\x2d\x15\x0b\x98\x42\xbf\x3c\xd9\xb1\xe3\x33\xb1\xb8\xa7\x0b\xcf\x94\x9d\xbe\x3e\xe5\x73\x46\x66\x7c\x3a\x03\x50\x80\x84\x76\x2a\x08\xd8\x89\x3c\x96\xbb\x1e\x55\x48\xc8\x82\xf0\x48\xf5\xef\x4a\x1f\x2a\xc8\xeb\x40\xa7\xbf\xc5\x7b\xf1\xd5\x5a\xbe\x04\xe3\x39\xb0\x95\x67\x4b\x78\x17\x5b\x4e\xf6\xf9\xe2\xf3\xcd\x75\x0a\xcf\x93\xb7\xa6\x56\x78\x0a\x3a\x48\xdc\xab\xd2\x6c\x59\xb8\x24\x9c\xda\x77\x48\x2d\x10\x14\x5e\x78\x7a\x31\x7e\x67\xcd\xe1\x56\xa2\xb5\xab\x17\xe7\xe8\x1c\xc9\xdc\x67\x5c\x10\xab\x4f\x43\x7a\x99\x22\x07\x5d\x31\x70\x00\xe9\x66\xde\x7d\x63\x71\x51\xad\xc1\x67\xdb\x94\xba\xcb\x9f\xd4\x25\x8c\x90\x33\x91\xb7\x35\x35\x91\xab\xc4\xfe\xd5\xd0\x02\xbc\xc1\x53\xc8\x96\xab\xfb\x59\xaf\xa0\xfa\xa6\x53\x65\x6c\x78\x71\xcb\xcd\x23\xa7\x8d\xf7\x5e\x35\x05\xe4\x1b\xbe\x7b\xfe\xbd\x9e\x04\xd5\xe6\x2e\x81\xd9\xe9\x93\x97\x4a\x89\xad\xed\x84\x53\xff\x6d\x2a\x83\xb4\x8e\x89\xa4\xcb\x70\x35\x59\x53\x54\xd6\x26\x43\x61\xa7\x5c\x73\x1d\x01\xcd\x28\xbc\xa9\x76\x8b\x41\xc5\x4a\xc9\x79\x0e\xca\x0c\x2c\x0b\x54\xdd\x23\xf3\x2c\xe1\x9a\xb7\x73\x93\x1a\xe7\xf7\xe3\xb2\xb4\xf2\x01\x85\x8e\x25\x11\x6b\x53\xc7\x68\xa8\x9f\x0f\x96\x16\xd6\xfe\xfe\xaf\x4f\xa5\xb8\x7e\x1e\xa7\xb8\x7e\x70\xed\x12\xff\x1b\x6d\x24\xb5\x37\x77\xed\x85\xfd\xeb\x51\xbb\xea\xc7\x90\xe8\xbe\xc2\x71\x01\x21\xaa\xcd\xf5\x8d\xbc\x62\x56\xbf\x57\x5c\x37\x14\x81\xa8\x04\xbb\xb7\x95\xc5\xc1\xb6\x2e\x6d\x51\xe0\xe6\x72\x3a\x5b\x1c\x63\x19\xb3\x8c\x36\xca\xdc\xea\xb2\x32\xf6\x37\x51\xe6\xf8\x39\x97\xe1\x17\x47\x5f\x90\x21\x79\x76\x6c\xae\xb7\x40\xde\x02\x47\x30\xd4\xb8\xa1\xe5\x02\x5a\x7a\x7a\x66\x6c\x7d\xb3\xcf\x91\x6c\x8e\xbb\x9e\x9e\x5d\xbd\xf7\x03\xfb\xb0\xfc\x46\x6f\xd5\x7f\xb5\x2d\x15\x4f\xc8\x9c\x9d\x4d\x26\x5c\x70\xbd\x88\x6d\xc8\xde\x8f\xaa\x77\xbd\x42\x49\xa0\xf2\xcd\xe4\x3d\xb9\xb7\xd5\xff\x70\xed\x2c\x8a\x5d\x48\xfe\xa9\xf9\x21\xc9\xcb\x0e\x82\xdd\xeb\x4d\xd6\x3a\xf2\xba\x8b\x65\x8c\xe6\x8a\x9c\xd8\x4a\x77\xdb\xed\x22\x66\xac\x21\xf9\x56\x0a\x59\x7f\x89\x86\xac\x21\x5d\xb5\xfa\xd2\xa3\xd3\xb2\xb2\x30\x04\x98\xef\x68\x7a\x91\xa2\x7e\x48\xae\xc0\xd9\xfc\xe5\xbb\x46\xf6\x2e\x69\x80\x3d\xc8\xbd\x70\x7e\x1b\x41\x71\xb7\xf7\xf1\xba\x76\xdf\xa1\x7f\x25\x8c\x6a\x3e\x85\x55\x25\x15\x1c\xa0\x58\x27\x5a\xc8\x37\x86\xd8\x67\xce\x31\x02\x57\x54\x1f\x5c\x7e\x33\xaa\x39\xbc\x57\x66\x15\x14\x97\x02\x4f\xef\xdb\xd8\xc9\xa4\xa0\x4f\x59\x0f\x80\x8f\xd9\xaf\x5b\xc8\x3c\xdf\xfe\x45\x0f\xe9\x78\xeb\x35\xc7\xf6\x46\x98\x2f\xbf\x7c\x3d\xa3\x46\x7f\x8a\x2b\x8d\x37\xc3\x48\x70\xd9\x68\x4b\xfd\x80\xd0\x42\x42\x3c\xce\xc8\x75\xf3\x2b\x96\xdb\x2f\x4e\xa4\x0b\xdb\x2d\x87\x91\xa2\xc8\x98\x01\x7c\x68\x5b\x0e\x33\xe8\xdc\xd1\x3e\x18\x84\xdb\x90\xf7\x60\x09\x4f\x7d\xfd\x91\xcc\xfd\xfd\x5f\xf7\xc7\x6d\x15\xc2\xf6\xaa\x18\x3d\x09\x2e\x30\x71\xc7\x40\x81\x84\x63\x85\x41\xd3\x13\x58\x4d\xeb\xb2\xb3\xb8\x3a\x98\x57\x60\x75\x62\xae\xa2\x33\x66\x8d\xfa\xc7\x01\xa1\x38\xa3\x45\x68\x5f\x1a\xbb\x96\xe7\xac\x46\xad\x76\xcc\x3a\x98\x53\xb1\x85\x2a\xf8\xfc\xd8\xbe\x1d\xf1\xa9\x00\x38\x01\x07\xff\x07\x62\xfd\x1e\x8c\x9b\xec\x8e\x69\x97\x81\x53\x03\x26\x4c\xd5\x68\x32\xa6\x05\x15\x99\xe1\x14\x60\xb0\xc4\x05\x64\x26\x2e\xc4\xa3\x25\x12\x80\xa3\x45\xcf\x06\x3b\x5a\x78\xb4\x23\x9c\x42\x50\xad\xcb\x85\xd2\x86\x6a\x2c\xe3\x4d\x5b\xbc\xb3\x42\xc9\x81\x91\x09\x6e\xd0\x95\x20\x15\x0e\x6f\xff\x8d\x89\x52\x56\x9b\x62\x4c\x5b\x90\xbc\x20\x4b\x49\x4e\xa2\xe8\x58\xd5\x93\x2d\x2c\x71\x57\x96\xc5\x4d\x92\x9d\x4c\x21\x6d\x72\xe9\x7a\x1c\x74\xd1\x29\x1d\xe0\xd5\xc1\x00\x77\xd1\xdc\x12\x0b\x5c\x8a\x93\x07\x3b\x8c\xea\xd4\x15\x17\x39\xc0\x21\x2f\x13\xe3\xdf\xda\xa5\xca\xd8\x7b\x8e\x22\xf0\x66\xf4\x4f\xd1\x7a\xb7\xfb\x53\xb3\xcf\x95\x58\xc6\xb6\x98\xe8\xaa\x9b\xaa\xab\x40\x41\x75\x12\x2d\x1c\xa6\x91\x51\x78\xf8\xc4\x18\xd7\xb9\x64\x98\xfe\x82\x61\x90\x48\x27\x2b\x73\x5a\x53\xeb\x0a\x8c\xd5\x29\x3a\x6e\x35\x72\xe4\xac\x68\xa2\x59\x51\xa0\x74\x68\x3d\x9f\x42\x62\x51\xa8\xfb\x76\x6c\x0c\x67\x48\xba\x21\xa8\xb5\x83\x85\x03\x39\x88\x2a\x88\x90\x2f\x7c\x6f\xcb\xd8\xe4\xe5\x71\xa3\xc9\x94\xcf\x8d\x82\xb7\x12\xe7\x5a\x17\xb3\xc2\x38\xe3\x8c\x15\x15\xa9\x59\xde\x64\x2c\x21\xe5\x13\xf4\xdc\x38\xa6\x10\x3a\x7e\x01\x21\xc4\x8b\xcb\x83\xce\x59\x3c\xb0\x8d\x38\xd3\xd5\x58\x3e\x01\x0e\x0b\xe6\x31\x9f\x10\x36\x67\xf5\x82\x54\x52\x29\xe0\xfd\xa0\x2f\x20\xa4\x23\xa4\xcd\xfa\xc6\xec\xe0\x3b\x83\x35\xb3\x6e\xa4\xa8\xc1\x0f\xac\xef\xe9\x00\x82\x07\x32\x59\x07\xd8\xdd\xec\x84\x2f\x4e\x9f\xc7\x66\x27\xf4\xed\xe4\x1d\xc1\xff\x7c\xea\x40\x52\x0a\xc1\xd5\x64\x1d\x9f\xf4\x6b\xdb\xe1\x3c\xef\x93\x5d\x10\x1b\x82\x86\x95\x81\x24\x80\x2f\x8e\x83\xc4\x84\x2f\x4e\x3f\x3f\x7d\x7e\x64\xd6\xfe\xf3\x63\xb3\x0b\x41\xfa\xc0\xe7\x41\xfa\x80\xff\x4b\x3b\x8b\x08\xc0\x2e\xd2\x26\x67\x1d\x3d\x3f\x3e\x81\x62\x10\x40\x63\xbd\x97\x75\x6e\x01\x0d\x1c\x3e\xa6\x99\x39\x76\x45\x34\x0a\x70\xe9\x94\xcf\x01\x30\x2d\xcf\x1d\xe3\x5c\x6b\x10\xb8\x82\x74\x09\xae\xc9\x5f\x4a\x59\xb3\xbf\x04\x43\x7c\xac\x8a\xc1\x6a\x12\x5f\x49\xab\xe1\x5d\x44\x82\x76\x4a\x95\x78\x6a\x8d\xf8\x63\xa9\x88\x25\xad\x36\x78\xcf\x5c\x16\x4d\xb9\x69\xba\x7d\x9a\x42\xf4\xd2\x16\xfc\xda\xa1\x6d\x4d\x2a\xa6\xb3\x94\xb6\x58\x7b\xbc\x08\x81\x8b\xc7\xac\x90\x62\x8a\x31\x69\xdf\x50\x71\xc3\x51\xdf\x0f\x47\x3e\x93\x22\x63\x95\x56\xa7\x4a\xcb\x9a\x4e\xd9\xa9\x25\x72\xa3\xc1\xb6\x87\xf5\xf0\x03\x50\xdb\x2d\x19\xc4\x1e\x48\x38\x0f\x0f\x2b\xed\x0a\xe7\x81\x5f\xd2\x0c\x40\x36\x61\xd5\x3b\x4d\x60\x03\xb0\xcf\x8f\x04\xee\x21\xa2\xc3\x61\x4a\x19\x2d\xbd\x57\x97\x05\x55\x9a\x67\xff\x2c\x64\x76\x77\xa3\x65\x9c\x1b\xb2\x0f\x0b\x63\x1d\x2d\x9d\x93\x20\xc8\xd9\x8f\x37\xe4\x82\xab\x3b\x52\x33\x25\x9b\x3a\xb3\x9d\xd9\x96\xe0\x27\x37\x45\xca\xc5\xa7\xed\x31\x0f\x9d\xc0\x4b\x9a\xcd\xd0\xf4\xb7\xd9\x2d\xec\xa1\x92\xaa\x6d\xfe\x1c\x71\xa4\xf0\x49\xbb\xc7\x7f\xa2\xf7\x8a\xe1\x2a\x8d\xcd\x2a\x99\x8f\x63\x54\xb3\x2d\x37\xf2\xc4\xd9\xfc\xff\xec\x7d\x6b\x73\x23\x37\x92\xe0\xf7\xf9\x15\x08\xcd\x45\x48\xf2\x90\xec\xf6\xad\xe7\x71\x1d\x1b\x3b\x21\x4b\xea\x59\x9d\xfb\xa1\x93\x64\x3b\x2e\x66\xe7\xd6\x60\x15\x48\x62\x54\x04\xca\x00\x4a\x6a\x7a\xbd\xff\xfd\x02\x99\x00\x0a\x45\x51\x14\x55\x80\x9a\x54\x5b\xf8\xe0\xb6\xc8\x22\x90\x05\x24\xf2\xfd\x38\x3b\xe9\xf1\xf3\xd4\xac\xf1\x89\xbe\xea\xdd\x2d\x3f\x5f\x6e\x20\x42\xe1\xcd\x91\x13\x5e\x31\xac\xcd\x85\xad\xf4\x9d\x6f\xdb\xd1\x3c\xc0\xf1\x85\x6c\xc8\x2d\x45\x93\x33\x30\x99\xfe\x49\x9f\x57\xbc\x7e\x43\x4e\x85\x6e\x14\x6b\x53\xdb\x97\x41\xb0\x52\xab\x6f\xf2\xeb\xed\xcd\x70\x31\x30\x7f\xcf\xf2\xb2\xfe\xd5\xc4\x70\x9c\xa2\x6a\xa2\xdf\x90\x3d\xf6\xc9\x7c\xb3\x37\x20\x7b\x9f\x26\xda\xfe\x23\xcc\x44\xef\x8d\xc8\xd9\xbc\xae\x78\xc1\x8d\xd5\xc5\xc4\x84\xa9\xd6\x4e\x8a\x3f\xc8\xd4\x51\x69\x57\xee\x24\x8e\xab\x8f\x27\x1f\xdf\x80\x49\xa5\x94\xe4\x96\x59\x45\xfd\xc6\xea\x9a\x4c\x29\xa9\x42\x3c\x7f\x74\x5c\x90\x5f\x56\xc8\x79\xad\xe4\x9c\x47\xa5\x70\x81\x7e\xf5\x04\x23\x39\x0d\x17\x0c\xb3\x70\x4b\xb6\x7c\xd1\x02\x20\xfe\xae\x45\x1f\x88\xa7\xbc\x65\x67\x13\x22\x31\xcd\xa3\x5b\x18\x9d\xeb\x30\xb9\xbd\x57\x6e\x75\xd1\xa3\xc3\x53\x3b\xda\x9b\x64\x55\x7e\x37\xe5\xab\x92\xdd\xbc\xd2\x25\xfd\x7a\x00\xaf\x85\xd7\x64\xb1\xb4\x07\x54\x93\xbd\xaf\x1f\xdd\x9a\xa0\x1d\x97\x7c\xce\x2b\xaa\xaa\xc5\x20\xde\xcb\x76\xfe\x89\x54\x01\x10\x30\xe8\xbe\xde\x23\x07\x58\x7f\x1c\x44\xe6\x8a\xf9\x0e\x80\xa1\xf3\x2f\xa4\x9b\xf5\xee\xaf\x97\x1a\xd8\x42\x92\x83\x5b\x08\xf0\x47\x5a\x7e\x14\x55\xef\xca\x24\xb9\xb0\xdf\xc3\xe1\x2b\x16\xaa\xc6\xf9\xb9\x27\x12\xa5\x27\xd6\x3e\xe2\x9b\x00\x71\xe1\xc4\xf0\xf7\x16\x47\x13\x8a\x71\xec\x0e\x55\x4d\xed\x78\x48\x82\xc0\xb2\xed\x03\xf5\x70\x40\xfa\x82\xe0\x3f\x37\x8c\x9c\x9d\x78\x79\xa1\x66\x4a\x73\x6d\x2c\xb7\x28\x3b\x52\x32\x47\xd1\xf9\xe0\x68\x4e\x7f\x91\x82\x9c\x7e\x7b\xe9\x26\xea\x7d\xcd\x76\xef\x74\x7b\x32\x2b\xfa\x4b\xa3\x98\xd5\x29\x92\xd5\x9e\x30\xd3\xb2\xd2\x62\x3f\x27\x27\xd4\x50\xd4\x5d\x90\xf4\xcb\xb6\x1d\x18\xe8\x18\x63\xa8\x2a\xe7\xfb\xce\x25\x68\x18\x5b\x96\xec\x2d\xe2\x7d\xe8\xdf\xa6\xdf\xfe\xfc\xfb\x8b\xb3\x2d\xe8\x05\x05\x08\x4c\xd3\xf7\xb2\xcc\xa3\x1c\xec\x47\x13\x7a\xd9\x03\x9a\xeb\x1e\xe3\xe7\x64\x6e\x57\x22\x1f\xa4\x60\x03\x72\xc1\x68\x49\x2c\x15\x76\xff\xfb\xa3\xe2\x86\x8d\xf6\xb7\x25\xbd\xf9\x43\xcc\xb2\x11\x7e\x32\xbf\x09\x1f\xa2\x8e\x8b\xd0\x17\x15\x68\x95\x13\xc6\xc6\x95\x1c\x13\x47\x2b\xb6\xf9\xf6\xdf\x5f\x9c\x65\x7b\xf9\xef\x2f\xce\xfc\xbb\xdb\xff\x95\x93\xdd\x7c\xed\x5d\x53\x8c\xdf\x2e\x69\xa4\xe9\x22\xf9\x7b\x97\x58\x41\xef\x68\xbb\x4f\xaf\xea\x8e\xb6\xac\xe4\x26\xa3\xc7\x35\x17\xbd\x0b\x0e\x76\x09\xa3\x9d\xa9\x6d\x4d\x14\x85\x43\x41\x8b\xbb\xf2\x0d\x99\x37\x95\x81\x66\x2f\x70\x2d\xec\x3d\x81\x0c\x32\x7f\x41\x88\x6b\x7e\x4a\xc8\x09\xc3\x10\x84\xf2\x8d\xaf\x9f\x14\x7e\xb1\xfa\x07\xef\xa9\xa0\x53\xfb\x38\x30\x6b\x32\xc7\x3f\xa3\xfb\x78\x80\x9e\x5f\x11\xbe\xa2\x37\x94\x57\x74\xcc\x2b\x6e\x40\x44\x3e\x1c\x79\x4d\x0e\x8b\xcd\x00\xc8\x5b\x23\xd4\x3b\xa7\x67\xc4\x0d\x21\xa0\x89\x20\x39\xb0\xdf\xbd\xba\xb5\x0c\xed\x70\x04\xdc\x0d\x1e\x9c\x31\x15\xab\x22\xbd\x57\xb6\x97\xf5\xe2\x89\x54\x98\x34\xb5\x01\x50\xcc\x12\xb1\x3c\x92\xa5\x9d\x69\xa5\x64\x09\x5f\xb8\xb6\xaa\x5f\xb8\x70\xa9\x59\xa1\x98\x49\x10\x2f\xe1\xba\xf6\xfc\x7d\xaa\x80\xb9\x73\x77\xb5\x7c\xb9\xab\xf1\x68\x91\x2b\xcb\x09\xb5\xd3\x79\xe1\x2f\xf4\x1a\xc7\xaf\x96\x6a\x19\xe3\x65\xbe\x74\x1c\xcb\xf7\x20\x87\xdf\xdb\x2b\xdc\xa7\x8a\x3b\x8e\x64\x26\x13\x2e\x4d\x9e\x7d\xf1\xb3\xf9\x6d\x41\x56\x0c\x1f\x93\xde\x57\x3b\xf1\x35\x0b\x56\xcf\x26\xe9\xf5\x06\xec\x34\x6f\x2f\xbb\xee\xeb\x63\x56\xcf\xc8\xdb\xcb\x15\x94\x19\xab\x43\xd8\xf7\xd6\xe8\xd4\xde\xd7\xa4\xe2\x13\x66\x78\xaf\x4d\xd8\x32\x6d\x9e\x4b\xc1\x8d\x7c\x74\x97\x65\x92\xa3\xd8\xbb\x5b\x7a\xdb\x94\xd5\xc3\x61\x31\xfb\xc2\x6f\x27\x79\x1f\x7d\x4a\x49\x21\xab\x8a\x15\xbe\x3e\x02\x20\x47\xc2\xce\xe1\x58\x61\x8a\x73\x61\x7f\x7a\x74\xfd\x17\x30\xc6\x39\xb3\xdb\x2b\x44\xf4\x57\x17\xa7\x47\x27\xef\x4f\x47\xf3\xf2\xf7\x33\x79\x3b\x34\x72\xd8\x68\x36\xe4\x7d\xeb\x5f\x6e\xbd\x14\x7d\x06\x77\x95\x99\xe5\x51\x6e\xec\x4c\xf6\xa4\xdb\xb6\xda\xdf\x6b\xcc\xd6\x06\xaf\x9c\x0b\x0f\x52\x52\x9a\x01\x51\x14\x62\xe2\x42\xbb\xd6\x49\x53\x55\x88\x12\x46\x31\x36\x88\x5d\x46\xaf\x5e\x54\x0c\x2f\x38\x74\x36\xf7\x8b\xd2\x37\x76\xe5\x26\xa7\x4b\x51\x7d\xd5\x1e\x92\x11\x61\x5a\x48\xba\x28\x73\xd9\xf9\x1c\xdd\xa1\x66\x66\x11\xe8\x9a\x2d\x08\x54\xe9\x9e\x48\x65\xaf\xad\xea\x5e\x41\x66\x0a\xd8\xf5\x57\x8d\x66\x6a\x84\xd3\x3f\xf3\x93\x4e\x91\x0a\xe1\xfd\x2f\xd8\x64\x37\xce\xf9\x82\x4d\x56\x1d\xb3\xfb\x18\x5a\xc4\x86\x64\x07\x2b\x74\x36\x66\x86\x09\x79\xd8\xc4\x1b\x25\xf2\x95\xe7\x8e\x75\xdd\x9f\xf9\x41\x27\xd5\xb7\xce\xd1\xa8\x43\x24\xe8\x0f\x24\x73\x53\x83\xd8\x03\xe1\x30\x23\xb1\xfb\xc3\x23\x9d\xa1\xf2\x86\xa9\x1b\xce\x6e\x5f\xdd\x4a\x75\xcd\xc5\x74\x78\xcb\xcd\x6c\x88\x67\xa4\x5f\xd9\xad\xd2\xaf\x7e\x0f\xff\x24\x41\x85\xa1\x44\x47\x65\xe9\x82\xef\x1b\xcd\x26\x4d\x85\x01\xeb\x7a\x44\x68\xcd\x7f\x60\x4a\x43\xb2\xf6\x35\x17\xe5\x80\x34\xbc\xfc\x6b\xc2\x8a\x19\x7a\x60\xe4\xad\x5e\x6e\x87\x25\xd6\xdb\x26\x51\x16\x06\x4b\x4a\x64\x2c\x14\x2a\xcf\x7e\x14\x2d\xa5\xc6\x67\xec\x99\x77\x88\x0f\x2d\xe7\x3d\x2b\xa2\x92\x9d\xa1\x3d\x7d\x75\x72\x2e\xca\x7e\x47\x97\xe3\xd8\x70\xf5\xae\x2a\xef\x3e\x73\x41\x4e\x21\xe4\x98\x7a\xe3\x2a\x14\xb1\xf4\x81\xc4\xdd\x38\xe2\x6c\xb1\xc2\xcb\xe7\x37\x5f\xe8\x9f\xab\x21\x42\x36\xac\xcb\xf6\x00\x9f\x9f\x05\xe1\x25\x28\x78\x6d\x50\xf0\xf3\xf6\x7f\xee\x70\xa8\xef\x53\x5e\x29\xf2\x45\xaa\xe0\x5f\x94\xe7\x60\x8b\x38\x91\xae\x68\xef\x9a\xfe\xd5\x4a\x38\xb5\x84\x6a\x3d\xae\xbb\x1b\xa8\x57\xc8\x59\xbc\xcb\x03\x32\x5f\xa9\xa2\x73\x66\x98\x6a\x8b\x31\x17\x52\x88\x94\xe6\x88\x46\x92\x8f\x35\x13\x97\x86\x16\xd7\x5b\xec\x09\xf4\xa2\x33\x3d\x34\x5e\x74\x26\xb2\xab\x3a\xd3\xce\x45\x3b\x7b\xe2\x80\x55\x94\x5c\x16\x43\x9b\x12\x8a\x74\xf9\x19\x32\x80\xbe\xaa\x91\x14\x13\x3e\x7d\x4f\xeb\x74\x8f\xa5\x9f\x69\x49\xd3\x09\x1f\x3b\x27\x25\xd4\xb6\xa8\x65\x0d\xcd\x9c\x5c\x91\x34\xd8\xfe\xcf\xaf\x66\xa4\x52\x56\x27\xbc\x64\x0b\xf4\x4d\xc0\xef\x08\x94\x2e\xf3\x9c\xdb\x4f\xc6\xdc\xb4\x6c\x51\x33\x83\x8d\x63\x5c\xeb\x69\x29\x48\xe1\x2a\x01\x83\x30\x1f\x15\x84\xcd\xa0\x20\x08\x22\x0b\xe3\x6b\x95\x85\x3e\x33\xaf\x5f\xbf\x7e\x8d\x4d\x06\xfe\xfc\xe7\x3f\x13\xa9\x08\x25\x25\x2b\xf8\xfc\xee\x83\xf0\xd4\x1f\xbf\xee\x59\x87\xdb\x8e\xff\x7b\xf4\xfe\x1d\x24\x76\xd7\x46\x63\x2f\x2f\x84\xc8\x4e\xdc\x59\x54\x0f\xc8\xff\xbe\xfc\xf8\xa1\xad\xaf\xdb\xfd\x16\x6c\xba\x61\x3b\xfb\xc3\x13\x3b\x9a\x5e\xff\xe9\x9b\x6f\x12\x66\xe2\x0a\xca\xa1\x70\x57\xad\xd1\xe7\xa8\x53\x33\x83\x28\x48\x68\xde\x00\x35\xe4\xbd\x3a\x86\x15\x44\x4c\xef\x3a\xf2\xc4\xd7\x17\x9c\xf3\xe9\xcc\xb8\x3a\x73\xf6\x8a\x57\xbc\x30\x58\xe5\x05\x99\x9d\x74\xc5\x28\xe1\xd2\x23\x0c\x41\x15\x4d\xf0\x8a\x97\x6c\x40\x2a\x7e\xcd\xc8\x44\xff\x4d\xc9\xa6\x6e\x5b\x3e\x62\x71\x7b\x5f\x3c\x01\x81\x68\x71\xbf\x77\xc7\xb4\x5d\x49\x03\x4b\x72\x6b\xe7\x22\x32\x00\xc4\x92\xfe\xec\x4a\xa7\xb5\x2d\x04\x6b\xca\x43\xb5\x04\x48\x55\xc1\xc2\xd5\x5d\x81\xaf\xe8\x59\x91\xc6\x8e\xe3\xc0\x51\x7c\xa1\xef\x5a\xc9\x7f\x22\x92\x43\x8d\xc0\x88\xa3\x43\x6d\x3d\x8b\x73\xbe\xb2\x5e\x1b\x2d\xd4\x7b\x7d\xdf\xc0\xdd\x2a\x1f\xae\xad\x7c\xe8\x39\x0a\x65\xf0\xa2\xbd\x81\xee\xdf\x5c\x5b\xd0\xa0\x75\x84\x83\xb8\xf7\xda\x2b\xde\x34\xac\x06\xf7\x5e\xe3\x8d\x68\xc4\x9d\x55\xb1\xe2\x7a\xc2\xca\xc0\xd2\xe1\x05\xa9\xef\x97\xd8\xae\x8d\xf5\x5f\x5d\x37\x02\xf7\xac\xc7\x82\x70\x60\xfd\x1b\x26\x47\x47\xaa\x99\x69\xdc\xd1\x43\x22\xb3\x7d\x57\xa6\xb5\x6b\xc4\x33\xa7\xea\x9a\x95\x81\xff\x8d\xc8\xb9\xdd\x14\xdf\x08\x21\xc1\x5e\x51\x51\xc3\x6f\x30\x80\x6e\x4e\x17\xf0\x9a\x4e\xfb\x04\xe0\xf6\x47\xa3\x7d\x24\xbc\x52\x11\x6d\xa8\x72\xd4\xd0\x7e\x9e\x46\x79\xb6\x18\x0c\xd3\xa1\x1b\xef\x69\xad\xb1\xe9\xb4\x55\xb7\xa1\x99\xbd\x84\xba\x99\x66\xe6\x99\x0f\x75\x67\xd4\x9f\xb7\x64\x50\x97\x53\xad\xc7\x38\x86\xbd\x4b\xb4\xfa\xdf\xdb\x8d\x49\xb9\xe7\xc9\x3a\x3f\x50\xaa\x8c\xfd\xdf\xaf\xbb\x45\x6f\x8d\xf4\xd4\x68\x27\xda\xdd\xcf\x13\x84\x70\x1c\x79\x9b\xdd\xcf\x9d\x24\xfe\xf1\x71\x92\x38\x88\x68\x96\x61\xa5\x6d\xea\x4e\x09\xe0\x38\x76\x4d\x0c\xc7\x71\x36\x01\x52\xbe\xc4\xb2\x1d\xab\x89\x95\x2a\x2f\x6b\xd8\xb3\x4b\x5d\x74\x7b\x12\x34\x8e\xad\xc8\xd1\x38\x72\x48\xd3\x38\xd2\x65\x6a\x1c\x29\x01\x9b\x38\xf2\x12\x0e\x1f\xf6\x89\x87\xe1\xc4\x0e\x94\x2c\x26\x01\x01\xc0\x85\x07\x36\x15\x4f\x8c\x93\xe9\x85\x13\x6a\x90\x64\xd0\xb1\x96\x55\x63\x70\xe1\x5c\x53\xc7\xf2\x12\xbc\x10\xab\xa0\xa8\x75\x92\x90\xb4\xbc\x48\x24\x7b\x81\x74\x8c\xe2\x4a\xfa\x0a\xc9\x6c\x2a\xc5\x04\x9f\x0b\xc3\xf2\x9a\xde\x77\xcf\xec\xfe\x39\x4d\xee\xc9\x08\x11\x6c\x74\x39\x90\xc2\x4f\x16\x8a\xf3\xdc\xce\x98\x0b\x09\x8f\x14\x30\xcb\xe8\x2d\x19\x07\xad\xd0\x37\x87\xc3\xca\xf4\xdb\x72\x3f\xe6\x75\x39\x14\x9a\xa7\x1b\xb2\x35\x27\x07\xc7\xa1\xf0\xa3\xcf\xa3\x3a\x13\x86\xa9\x09\x2d\xd8\x61\x6c\xe0\x66\xf5\x8c\xcd\x99\xb2\x1b\xef\x9e\xf3\x75\x04\x67\x54\x94\xae\xc3\x46\xc1\x14\x10\x3e\xf6\xc9\x30\x65\x0f\xe9\xf8\xf2\x8c\x94\x8a\xdf\x30\xa5\xc9\xc1\xb7\xd0\xdd\x0b\x3b\x6b\x24\x74\xe0\xda\x5e\x9d\x0e\x78\x91\x6d\x98\xdf\x61\xe1\x6d\xd3\x54\x84\xc2\x73\x6c\x11\x51\xd8\xf6\x94\x7d\x2f\x10\x8b\x11\x3a\xf6\x79\xf4\x27\xbe\xc7\x52\x80\xa0\x06\x9c\x6e\x21\x1b\x85\x01\x7e\xae\x90\x38\x23\x85\x54\xca\x8a\x8c\x00\x10\xd5\x44\xb1\x29\xd7\x06\x2a\x9e\xfb\x2e\x57\x58\x35\x79\x6b\x65\x00\x76\x2a\x52\x2a\x84\x44\xad\x29\xb0\xd0\x7b\x0d\xa7\x64\xd4\x4a\xde\xf0\xd2\xeb\x18\x10\x0c\xde\xf6\x07\xaa\xa9\x8e\x6a\x82\x52\xad\x65\xc1\xc1\x27\xd3\x62\x51\xef\xf5\xd1\x38\x07\x1a\x4c\xc9\x8c\x55\x38\x05\xeb\x54\x92\x8b\x83\xb8\x24\xa1\x75\x5d\xf5\x0e\x53\x4f\x97\x93\x64\xc9\xce\x9b\x71\xc5\xf5\xec\x72\x57\x02\x53\x56\xc1\x84\x49\x78\x77\xd2\x01\xee\x0b\x50\x49\x08\x8a\x11\x9a\x83\x12\x60\x45\x2d\xab\xf3\x70\x29\xc0\xfa\x42\xb5\xf6\xab\xc6\xa4\x46\x42\x09\xc7\x8a\x19\xe6\xbf\xea\x2f\x2f\xb6\xef\xed\xea\x29\x5b\x35\xd1\x7e\xfa\xbd\xa8\x3b\x9f\x17\xb4\xaa\x12\x94\xf1\x2b\x34\x7b\xb0\xaa\x8c\xbd\x97\xa8\x95\xfa\xda\xcc\x78\x61\xb8\xbd\x4b\x7e\x97\x21\x1f\x03\xb9\xd7\x08\x5b\x6e\xf5\x57\x8d\x57\x1e\x9c\x8e\x5a\x14\x4b\xe1\x4f\x77\x40\x68\x55\xf9\x1f\x04\x0c\xc0\xca\x23\x78\x8f\x5f\xc2\x85\x5e\xc2\x85\x1e\x39\x5e\xc2\x85\x76\x31\x3e\xd5\x1b\x06\x91\xd6\xd3\x72\x08\x55\x7d\x30\xa8\xa5\xc1\xfe\x84\x41\xe4\x4a\x15\xe9\x1e\xc8\x40\xdd\x5a\x7c\x28\xbe\xd7\x91\x31\x8a\x8f\x1b\xd3\x9f\xae\xe4\x8d\xe5\x6a\xe1\x01\xd5\x8b\x69\xc7\x00\x87\xee\xc8\x8a\x88\x12\x3a\x23\x6a\x20\xcf\x11\xdb\x4c\x94\xfb\x47\x41\x10\x07\x19\x1c\x3f\xdc\xd7\xa4\x94\x45\x33\x67\xc2\xb4\x18\xd2\x06\xc6\xa3\x1d\x7b\x8b\x2c\x82\x96\x25\x47\x0e\x7b\x9e\x81\x59\x24\x11\x92\x52\xde\x8a\x5b\xaa\xca\xa3\xf3\x5e\x55\xf2\xba\x15\xf2\xda\xb9\x62\x15\xdd\x7f\x4c\xec\xe7\x74\x0c\x2d\x4d\x5d\x4f\xac\x97\x90\xb4\x95\x53\xe4\xb9\xa6\xab\x3c\x5f\x46\x5a\xbe\xb6\x36\xe4\xac\xf5\x5c\x65\x5d\xf9\x25\xfa\x6d\x37\xdc\x6e\x2f\xd1\x6f\x7d\x57\x7e\x89\x7e\xeb\xb7\x7c\x87\x9e\x9d\x61\x08\x9b\x15\xe7\x2a\xd7\x7c\xa9\xc3\x1f\x9c\xe7\x37\xe1\xa0\x76\x2b\x6a\xe7\xa4\xe5\x89\xa8\xa9\x2f\x17\xff\x5b\x32\x2a\x20\x2d\x6c\xfd\x8c\x51\x86\x8d\x67\x9a\xa0\x91\x7c\x09\x11\x3e\x3b\x10\xa1\x03\x7b\x99\x60\xe0\xc2\xd1\xad\x1b\xd4\xd6\x8b\xc2\x76\x89\x18\x02\x19\xc5\x60\xd6\xb2\x7c\x83\x1d\x02\xa9\x10\x12\x45\x54\x3d\x70\xdd\xab\x07\xce\x62\x2c\x4a\xf8\x1f\x5d\xd3\x82\x01\x39\x0d\xf2\x6b\xef\x62\xd2\x38\xb2\x20\x00\xc9\x84\x04\x04\x10\x01\x76\xe7\x3c\x05\x1b\x48\x36\x8c\xb0\xa3\xd5\xf5\x53\x67\x5a\x6e\x8a\x86\xb3\x7a\x44\xd0\xc5\x8c\xcd\x29\xfc\xef\x5b\xbf\x05\x96\x36\x5a\x85\xd3\x30\x6c\x6b\xc2\xd4\x5c\x13\x39\x19\x74\x32\x35\xf7\x6e\x52\x3a\x7d\xf8\x91\x29\xf2\x8b\xf8\x7b\x74\x9e\x1c\xc9\x41\x96\x37\xec\xbc\x13\x77\x61\xef\x10\x88\x90\xf6\x5a\x85\x0e\xeb\x21\x06\x16\xf8\x07\xee\xf0\x0e\x6d\x4e\x7e\x23\x0d\x8e\x5d\x0b\xb8\xeb\x1b\x68\x37\x08\x8e\xf0\xae\xb4\x9e\x08\xce\x4b\xa0\x5d\x77\xbc\x04\xda\xbd\x04\xda\x65\x0d\xb4\x8b\xe4\x1c\xcf\xb7\x56\xc4\xcc\xc5\xfe\x78\x1f\x38\x37\x66\x5e\xe5\x77\xc6\x06\x1f\xf7\xe6\x83\xde\xa4\xea\xc6\xf6\xef\x8f\x46\xfb\x18\xdd\xdf\x5a\x27\x1a\x33\x19\xfe\x85\x30\x51\xc8\xd2\xce\x73\x05\xf3\x2b\x6d\x40\x7a\x6f\xfd\x15\x31\x2c\x73\xbf\x56\x9c\x1f\x00\x73\xe7\x90\xa8\x92\x59\x85\xef\xf1\xf3\x36\xbf\x4c\x9a\x4c\xdc\x5b\x49\x36\x74\x22\x72\x5b\x1c\x3a\xb4\x3a\x91\xd6\x7f\xaf\x49\xc5\xe7\x1c\xaa\x9b\x97\x40\xe1\x98\x36\x69\x0e\x1a\x42\x0e\x70\xca\x51\x51\x37\x03\x37\xfd\x68\xce\xe6\x52\x2d\x06\x61\x09\xfb\x65\x67\x4d\xf7\xc4\x21\x08\xd1\x45\xa3\x14\x13\xa6\x5a\x44\xe2\xf4\x97\x26\x4d\xfb\x13\xd8\x11\x61\x3a\x20\x48\x4a\xdd\xe9\x76\x74\x69\x50\x1b\x26\x06\x2e\xd3\xa8\x95\x77\xe8\x9e\xa7\x07\x6d\x70\x9e\xfd\x94\x89\x1b\x72\x43\x95\x4e\xbb\xf3\x24\xaf\xfc\x5c\xf2\x1b\xae\x65\xef\x58\xaa\x68\xa2\x78\x7b\x2e\x83\xf3\xcc\xde\x54\xd9\x98\xba\x31\x8e\x9d\xf8\xeb\xeb\x7b\xe1\x86\x6b\xbb\xa4\x68\x7c\xbd\x97\x0c\x52\x4d\x8d\x61\x4a\xbc\x21\xff\xef\xe0\x3f\xfe\xf0\xeb\xf0\xf0\xaf\x07\x07\x7f\x7f\x3d\xfc\x5f\xff\xf8\xc3\xc1\x7f\x8c\xe0\x7f\xbe\x3a\xfc\xeb\xe1\xaf\xfe\x8f\x3f\x1c\x1e\x1e\x1c\xfc\xfd\xbb\xf7\x7f\xbb\x3a\x3f\xfd\x07\x3f\xfc\xf5\xef\xa2\x99\x5f\xe3\x5f\xbf\x1e\xfc\x9d\x9d\xfe\x63\xc3\x49\x0e\x0f\xff\xfa\x3f\x92\x41\xa7\x62\xf1\x31\x91\x0e\xe3\x18\x66\x94\x07\xba\x33\x66\x41\xbf\x25\x2d\x85\x0b\x33\x94\x6a\x88\x53\xbf\x81\x5e\x83\x89\x0b\x78\xf4\xca\x7d\xff\x5b\x19\xa4\xed\x23\xed\x15\xc4\x1d\xba\xe0\x79\x75\x40\x08\xc4\x39\xe1\x5b\x2b\xa8\xe7\xd7\xef\x16\x9a\x30\x6c\x5e\x4b\x45\xd5\x82\x94\xce\x31\xb0\x58\x5b\x17\x7f\x2b\x3d\xb7\x01\xf4\x92\xf7\xb9\x80\x5b\x76\x2c\xce\x59\xc9\x9b\xf9\xb6\x7d\x8a\x08\x45\x7c\xf0\xb7\xd0\x76\xda\xb5\xba\xf6\x31\xd8\xee\x31\xe7\xd9\x1d\xd3\xe2\x1a\xf5\xfd\x80\x19\x29\xfe\x9f\x4e\x03\xde\xbd\x3d\x17\x5d\x39\x67\x54\x04\xff\x26\x44\x02\xcb\x92\xed\xeb\xf0\x2c\x82\x94\xc5\xa5\x88\x81\x70\x2e\xb3\xe5\xc0\x2d\x70\x68\xb5\x96\xf7\x20\x6a\x6e\xad\x13\x67\x02\x76\x93\x2c\x85\xa4\xf9\x2f\xec\x9d\x15\xcb\xb7\x8d\xa6\x01\x10\x1f\x16\x6e\x24\x58\x60\x5c\xe7\x8e\x09\xa9\x64\x11\xa5\x0c\x74\xa4\x46\x40\xd4\x53\x4f\xe2\x52\x63\x8a\x2c\xba\x5a\x68\x50\x5d\x01\xc7\x57\xa5\x31\xc4\x97\x17\x74\x5c\x31\xb4\xf2\x00\xde\x24\xe3\xe8\x15\x74\x0b\xff\xc4\xe7\xcd\x9c\x34\xda\xbe\x99\x14\xdd\xb9\xdb\x17\xbb\xc5\xab\x89\x77\x65\xce\x05\xfc\xa8\x63\x11\xeb\xef\x62\x9a\x31\x72\x19\x4e\xa0\xb5\xcf\x42\x09\x41\x6f\x7e\xd1\x0d\x68\xe9\x0e\x3a\xa7\x2b\xca\x09\x44\x76\x06\x95\x01\x9a\xa4\xd3\xbe\x2d\xae\xda\x4d\x89\x08\x86\xe0\x55\x97\x62\xf8\xb6\xf9\xe1\x80\x1a\xe1\x32\x72\x9e\xeb\x3d\x7e\x76\x02\x77\xa2\x98\x9d\x4b\xb8\xce\x22\x52\x67\x17\xa4\x43\x86\xd3\xd6\xc4\xbd\x90\x62\xd5\x91\xf7\xe2\x66\xfb\xdd\x74\x2b\xea\x53\x5b\x02\x81\x75\xb1\x7a\xbd\x96\xbf\x0a\x66\x6a\x27\x3c\x16\x8b\xc2\x35\x7c\xe0\x6d\x24\x61\x88\x26\xc3\xbb\x0b\xe5\x48\x86\xf6\x3f\xde\x9c\xed\x83\x8c\xc6\x6c\x82\x11\xe5\xf8\x1b\x30\x05\xea\x7e\x85\x51\xd0\xa0\x5f\x31\x03\xf5\x57\x98\x08\x93\x42\x58\xfc\x5c\xde\x58\x12\xf2\xbb\x5e\x53\x7f\xaf\x5d\x1c\x1c\xef\x79\x2f\xe8\x61\xa7\xb0\x9e\x46\xe3\x9c\x60\xac\xc4\x62\x31\x55\xbb\x05\xaa\x11\x3d\x37\x60\x7c\xe8\xf3\xe6\x80\x74\x0b\xa9\xc0\x7b\x81\x54\x0c\xcd\xee\x8a\x59\x1c\x80\x4e\x1c\x4a\xce\x89\x16\xb4\xd6\x33\x69\xc0\xc4\x4b\x6b\x5a\x70\xd3\xbb\xca\x87\x51\xb4\xb8\xb6\x33\x43\xb0\x11\xbc\x59\xbf\xd7\x28\x0e\x5d\xaa\x72\x8c\xac\xdd\xf2\x3a\x66\xa6\x64\x33\x9d\x41\xfd\x15\x7c\xaa\xa8\xa8\xc6\x62\x3f\xfd\xe2\x04\x57\xae\xe9\x8c\x92\x9a\x94\x0b\x41\xe7\xbc\xf0\xe7\x07\x99\x4b\x9a\x4b\x17\x07\x02\xb0\xf4\xdd\x36\x4a\xce\x43\x73\x79\x0c\x49\x39\xae\x28\x9f\x93\x03\xcd\x18\x39\xf5\x77\x1d\xbf\xb9\x44\x95\x1a\x1d\x51\xbd\xbb\xba\x77\x62\x5c\x5c\xdb\x34\x57\x1b\xd6\x7e\xe2\x1d\x70\x51\xdc\x27\x10\xe2\xde\x2f\x28\xca\xd5\xaf\x78\x98\x72\x1b\x57\x6f\x9a\x54\x90\x96\xe2\x8c\x69\x37\x4c\x94\xb2\x0d\x80\xee\xb5\xd6\xd1\xf9\x99\x8e\xad\x97\x48\xd5\x6a\x5c\x1d\xbe\xa8\xa4\x98\xc6\xbd\xa6\x02\x4d\xec\xb5\x9e\x15\xb9\x04\xe1\xa2\xe4\x37\xbc\x6c\x68\x85\xc2\x56\xff\x7d\x3a\xbe\x3c\x43\x28\xf9\x74\x66\x86\xb7\x0c\x9c\x7f\x28\x6e\xb7\x8c\xc4\xbf\x1b\xbf\x93\xa8\xc9\x35\xc8\x65\x86\x18\xd9\x8f\x24\x31\xe7\x74\xb6\xbb\x76\x4b\x17\xd0\x6a\xd4\x25\xdb\x75\x42\xc2\x7d\xdb\x72\x5c\x76\x22\xfb\x89\x0d\x73\x2f\xe8\x39\xf4\xee\xbb\x73\x47\x40\x89\x0b\x2a\x40\x7d\x05\xa7\xb1\xbd\x02\x40\x56\xef\x6e\x5b\x5f\xa2\x53\x07\x1c\x6e\xa7\x42\xe1\x57\x53\x7b\xe9\x7a\x5a\x65\xb6\x6c\x19\xb9\x69\xef\xe3\x15\x9b\xd7\x15\x35\x5b\x0f\xbd\xfe\x31\xf2\xa1\x47\x51\x7d\x96\x7b\x50\x51\x0e\x69\x65\x89\xc6\xf9\x0f\xc7\xae\x88\x13\xd2\xf6\x2c\x39\x2c\x57\x5e\x04\x11\x4e\xcb\x41\x75\x76\x25\x59\x87\x8e\x48\x63\x56\x82\x48\xe0\x20\x4e\xc9\xe0\x93\xb7\x82\x29\x7f\xb1\xce\x7f\x38\x1e\x10\x3e\x62\x23\xff\x57\x58\xc2\x8b\x4c\x46\x4e\xb1\x44\x82\x2f\x16\xd2\x3f\x16\x50\x96\x23\x7c\xf5\xd8\xdd\x1c\xaf\xf9\xd3\xbf\xda\x4d\xb1\xdf\xfe\xdb\xf0\x5f\x1d\x8f\x81\xbf\x7e\xb2\x92\x5b\x7f\xce\x46\x7e\x5a\x9a\x2d\x4e\x43\x07\x89\xc7\xfe\xf5\xd3\xb9\x2c\x2f\x6b\x56\x8c\x70\xfb\xf5\x4f\x49\xe1\xa9\x84\x30\x61\xd4\x62\x44\xce\x25\xe4\xb2\xf0\x12\x29\x1a\xbc\xab\x62\xff\xf4\xf1\x13\x80\x06\xc1\x49\x5b\x50\xc3\x04\x48\xc0\xa2\x7f\x67\x56\xe2\x2b\x0c\xc2\xb2\x40\xe7\x29\xec\xf3\x01\x78\xd6\xb0\xd0\xf2\x80\x18\x29\x81\x4b\xf5\x66\xb8\x76\x1c\x09\xc2\x3e\x71\x0d\xfd\x01\xf0\x28\x01\x4b\xa8\x4b\xa9\xf7\x7a\x87\x85\xc6\x22\x5e\xe8\x77\x51\xcb\xfe\xc1\xb1\xb0\x85\x5f\x09\x69\xbe\x0a\xb7\xd7\x27\x97\x81\x82\x21\x09\xbd\x91\xbc\x24\x8d\x06\xb9\x53\x90\x46\x40\x88\x41\x42\x35\x4d\x87\x3e\xe3\x05\x99\x73\x6d\xe8\x35\x1b\x91\x4b\xab\x93\xc4\x11\xbf\x88\x54\x82\x8c\x2b\x59\x5c\xb3\x92\x34\xc2\xf0\x2a\xc9\x3c\x13\xe0\x86\xad\x8d\xf4\x15\xa8\x9f\xd9\x14\x56\xd2\xad\x15\x1b\x7a\xad\x09\x9f\x4a\x30\x1b\x23\x4b\x0f\xbb\xda\x9e\xd5\x20\xdc\xd5\x19\x45\xfb\x6d\x5d\xc2\x92\x70\xde\x3d\x33\xe6\x48\xa0\x46\x77\xf2\xc3\xed\x7e\x4a\xf8\xdb\xfd\x01\x48\xa6\x47\xe4\x03\x68\x2f\x55\xff\x5b\x89\xf9\x0d\x68\xf2\x76\x11\x2d\x82\x15\x4c\x6b\xaa\x16\x03\x32\x6e\x8c\x55\x47\x5d\x2e\xb5\x4b\x2e\xb5\x5a\x63\xff\x4d\xa5\xa2\xb1\x00\x13\xc5\x0a\x29\xb4\x51\x4d\x01\x58\x43\xc9\x58\xc9\x6b\x26\xda\x02\x13\xfd\x2f\x61\x37\x2f\xbc\x4d\xc0\x84\xf0\x64\x49\x8a\x19\x15\x53\x16\xca\xaa\x92\x39\x2d\x01\x95\xbf\x0b\x26\x90\xfe\xbb\x29\x03\x62\xd0\x89\xb1\x92\xa1\x01\x0c\x19\x5b\x55\xc1\x87\x0f\x25\xbc\x99\xf7\x1c\x0e\xda\xb0\x20\x7b\x60\xbc\xda\x62\x5e\x60\x7a\x0c\xc8\x10\x74\xd6\xbe\x76\xc3\x0c\x31\x1f\x73\x66\x68\x49\x0d\xdd\x95\xec\xf5\xf7\x74\x11\x62\xc9\x30\xc0\x1e\x70\x37\x0a\xbc\x77\xaa\x82\x37\x13\xc9\x9a\xc7\xd5\x7d\xcf\x7f\x38\x4e\x5a\x1f\xec\x42\x80\xae\xd0\xe7\xc6\x58\x3a\xe3\x82\x0d\x31\xb3\x1c\xac\x17\xb4\xaa\xe4\xad\xeb\x3f\xe6\x21\x41\x4e\xce\x4a\x52\x36\xc9\xfe\xe7\x56\x4a\x48\x89\x76\xca\x12\xeb\x64\xf1\x73\x57\x90\xe3\xaa\x0d\x1f\x2f\xba\xa9\xe4\x2b\xb5\x7d\x8c\x32\x64\xc2\x70\xc5\xa2\xea\xd3\x49\x20\x38\x7c\x6b\x04\x92\xd2\x2e\xe6\x21\x6a\x4e\x99\xd1\x6d\x8e\x24\xca\x94\x89\xab\x1a\xa7\x27\xe1\x1b\x81\xf2\xe7\xb1\xd1\xb9\x5c\x56\x6e\x40\xd2\x9a\x88\xe7\x5a\x3a\xd9\xd1\x4a\xdd\x5b\x47\xc6\x7c\x71\x6e\xb4\xb0\x9c\xfe\xbd\x2c\xd3\x03\xe6\xf2\x46\x6e\x76\x40\x6b\xcb\xaa\x60\xf5\x21\x0d\x5e\x4f\x7c\x00\x82\x9f\x75\xa7\xd2\x37\xca\x32\x33\x7a\x93\x5c\x0d\xb7\xb7\x4b\xac\x35\x59\x0c\xbd\x77\x0c\xc1\x1d\x02\xb8\xc3\xaf\x13\x01\x4b\xcf\x16\xf4\x23\x31\x6b\xb0\x0b\x50\x86\x98\x23\xcb\x85\x2f\xb3\x04\x5d\xe5\x46\xc8\x16\x32\x27\x5a\xba\x18\xfc\x90\x2d\xe2\x4a\x28\x32\x6e\xf9\x64\xfa\x96\x7e\xd5\xd1\x25\x9d\x09\x24\x38\x22\xb0\xde\xd0\x81\xf7\x4c\x8c\x1c\xe6\xf9\x6e\x41\xdd\xc7\x0f\x33\x03\x03\xba\xf3\x6a\x63\x75\xf2\x4a\x67\x2e\xdb\xd0\xdb\x97\x98\x82\xf4\x97\xa8\x0c\xa2\xa5\x06\x4a\x56\x15\x53\x70\x04\xce\xfb\xb0\x94\x55\x65\x4f\x8b\x60\x6c\x5d\xff\xfe\x01\x7e\x78\x87\x5c\x30\x88\x09\x76\x1b\x54\x60\xaa\xb1\xed\xaa\x0f\x2b\x07\x47\xa3\x4f\x95\x5b\x05\x4f\x3a\x55\xfa\xd1\xbb\xed\x8e\xc4\x02\x37\xff\x24\x42\x4e\xf4\x6d\x91\xa9\x05\x95\x6b\xc2\x04\x1d\x57\x56\x63\x88\x10\x38\xc0\xb9\x24\x40\x1a\x19\x3d\x75\xc1\x26\xe9\x5b\x07\xde\xc6\x78\xca\xcd\xd6\x46\x09\xb4\xf3\xc3\x51\x9b\x58\xea\x0c\x28\x19\xba\x71\xfa\xe1\xb0\xae\xb3\x44\x37\xe9\x68\x09\x9a\xb8\x3b\xc6\xca\x37\x48\x85\x29\x5b\x88\x7e\xbe\x20\x7d\xe8\x6f\xc0\x7b\x5a\xf1\xbb\xd3\x24\x59\xf3\x70\xe4\x8b\xf5\x87\xd4\x59\xc8\xb3\xca\x11\x34\x9d\x9b\xef\x10\x74\xaf\x01\x7c\xde\x50\x3b\x85\x3f\xbc\xd8\x1f\x82\x88\xc7\xcc\x52\xe7\xb6\x59\x4e\xfa\xbd\x20\x78\x37\xe2\xf5\x57\xe4\xe3\xb5\x64\xee\x3b\x2e\xca\x90\x19\xe9\x2b\x86\x5a\x19\xea\xe8\xfc\x0c\xa1\xce\x03\xd3\x5b\xe0\x09\x0b\xa7\x93\x9a\x19\x57\xe5\xb0\xa6\xca\x2c\xd0\x01\x35\xe8\x40\x1c\x8a\xfd\x65\x58\x3a\x6b\xf8\xba\xbd\x4c\xd9\x51\x0e\x8e\xc0\x07\x10\xba\x08\xd7\x7b\x31\x64\xd7\x76\x24\xb5\x84\xa0\x1f\x9d\x1d\xf9\xd0\xb6\x6f\x0a\xae\x96\x67\xb2\x23\x4f\x95\x86\x4d\xba\xdc\x6c\x77\x65\x6d\xcb\x6a\x75\x37\x21\x08\x45\x5f\x30\x29\x38\x67\xa1\x8c\xcb\x70\x05\x45\x10\x4c\xf1\x76\xa6\x01\xe1\x13\x2b\xb4\x49\x31\x84\x18\xc5\x64\xf0\xda\xf8\x24\xa7\x8c\x8e\x5c\xce\x30\x9a\xc9\x81\x30\x45\x50\x46\x4b\xb7\x74\x90\x1c\x08\xd9\xdf\x8a\xee\x07\xd0\x56\x5c\xeb\x10\xd3\xc4\xef\x89\xf8\x18\xa7\xb7\xdc\x21\xad\xe4\x19\x9b\xd7\x23\x5e\xe0\x45\x62\x2e\x4a\x7b\xa9\x40\x44\x02\xc3\xbb\x6e\x8a\x82\xb1\xe0\xd8\x73\x64\x29\x5d\xeb\xec\xf0\x1e\xb7\xe5\x73\x6a\x8a\x19\xd3\x44\x4b\xe8\xcd\xaa\x0d\xad\x2a\x56\x86\x98\x24\x44\x14\x09\x5a\x85\x8b\x57\x4a\x86\x23\x52\x56\xd2\xb7\x38\x72\x5e\x38\xdf\x68\x5d\x51\xe7\xf9\x99\x34\xa2\xc0\xa4\x40\x6e\x16\x21\x18\x64\x59\x31\x05\x53\xb1\x06\x87\x58\xba\xea\x33\xc1\xb8\x8e\xc8\xec\x1b\x90\x19\x98\xff\x02\xd9\xfd\x8c\xde\xb0\x36\x26\xc3\x75\xb5\xb3\x5c\x7a\x4c\x8b\xeb\x5b\xaa\xca\xd4\x2c\x5a\x02\xf5\x89\xa9\xe1\x63\x6e\x5f\x7e\x80\x1a\x42\x2c\xb0\x8b\xfd\x38\x6c\x9b\x8b\xdc\xaa\x4c\xbc\x0f\x07\xd1\xa6\xdf\x51\x71\x0e\x83\x6a\xa3\x99\x09\x15\x9e\xd3\x25\x5e\xe2\x22\xdd\x69\x63\xe4\x9c\x1a\x5e\x80\x1f\x8d\x4f\xa2\x60\xae\x39\x86\x47\x58\x4a\xe3\x43\xd6\x51\x44\x02\xc1\xcd\x9d\x5b\x26\x32\xb0\x5a\x59\x7a\x82\x8d\x8f\xf6\xda\x9d\x72\x77\x5b\xfd\xb6\x44\xa2\x67\xa6\xf7\xbc\xc2\xe0\x7f\x88\xbc\x55\x8c\x11\x3e\xaf\xa5\x32\x54\x18\x52\xf2\x49\x28\xe0\xec\x43\x01\xd7\xe1\x44\x0e\x7b\xd0\x8f\x10\x00\x1b\xad\x82\x4e\xcd\xaa\x92\xb7\x9a\x98\x5b\x19\xbc\x02\x6d\x14\x96\xab\x37\x3c\xe8\x02\x93\x41\xc6\x71\xab\x5a\x56\x67\xf1\x2a\xe2\x43\x03\x4b\x7b\x6e\x59\x55\xd9\x7f\xd7\x71\xa3\xe4\xe2\x20\x2b\xf7\x84\x4f\x05\x96\x75\xe5\xda\xfb\xa7\x5c\x61\x92\x83\x52\xc9\xba\x76\x11\x0a\xf3\xc3\xfc\x7b\x02\x61\xe6\xea\x86\x69\x48\x07\xf1\xc5\x52\x2c\x2a\x4c\x99\x60\x8a\x1a\x08\x82\x73\xfd\x27\x41\x24\x59\x06\x32\xd5\x2f\x83\x23\xa3\x5d\xe4\x01\xa4\xc3\x08\xc9\xd5\x48\xe6\x9f\x71\xdf\x66\x78\x2f\x2e\x10\xdf\x3c\xdd\xc9\x80\x40\xd0\x46\xe5\x90\x7c\xaf\x11\x2d\x02\xe7\x0d\xc5\x6d\x36\xb2\xb2\x61\x88\x88\x33\xb4\x65\x00\xea\xa8\xaa\x67\x11\x54\xb1\x5d\x2a\x94\x64\xeb\xee\x75\x07\xde\x63\x25\xb5\xfe\xe0\x7f\xf2\x19\x41\x7f\xb1\x59\x3d\x30\x5e\x6c\x56\x2f\x36\xab\x17\x9b\x15\x8c\x17\x9b\xd5\xf2\xf8\x52\x6c\x56\xa4\x65\x57\xbb\x4a\x9b\x3e\xc4\xaa\x4b\x97\xc1\x3e\xf1\x3e\x13\xf2\x41\x1a\x17\x07\x0c\x1a\x2c\xbd\xd7\xe9\x44\x81\x43\xdf\xd2\xc5\x48\x30\xe3\xba\x88\x78\xff\xee\x85\x87\xe9\x6f\xca\x6a\x23\xce\xf4\x11\xd1\x0d\x4f\xc8\x7c\xef\x93\x68\x15\x23\x51\x34\x6b\xc3\x92\xe1\xf3\x7d\xed\x82\x4f\xed\xf7\x50\x07\x90\x74\x5a\xef\x8f\xc8\xa5\x4b\x49\x59\x5a\xfc\x6e\xd3\x82\x92\x19\xca\x53\x1a\xfb\xc4\xc3\x4b\x43\x57\xf7\x48\x67\x5b\x93\x76\x48\xce\x6b\x13\x2a\x19\xed\x9a\x29\xb6\xad\x8c\x16\xe5\xd1\xc6\xd9\xf7\xed\x03\x4f\x15\x84\x73\x36\x21\x17\xac\x90\x37\x4c\xe1\xe9\x9e\x7e\xaa\xa9\xd0\x5c\x8a\xb7\x94\x57\xf6\x6c\xfd\x19\xb7\xde\x6e\xd2\x68\xa6\xba\x51\x8a\x51\x88\x46\xb8\xe0\x0e\x91\x2c\xf6\xa6\x2b\x28\xa1\x5b\x88\x5d\xcf\x65\xba\xd5\x8a\xdd\x70\xd9\x68\x5f\xa3\xa0\x31\x28\x69\x68\xe3\x2c\x44\x33\x3e\x9d\xf9\x87\x7d\x6a\x29\x84\x46\xab\x32\x5c\xe2\x64\xc8\xb4\xa1\xa6\xd1\xdd\x72\xce\x05\xc4\x06\xee\x50\x80\x54\xc0\xa3\xdd\x51\x42\x72\x8a\xeb\x58\x2b\x62\x57\x19\xe2\x3b\xac\x64\x81\x53\x8f\xdd\x5d\xf6\x45\x39\xda\x02\x24\x85\x9c\xd7\x8d\x61\xd1\x9d\x77\xb7\x2b\x0f\xa9\x7f\x24\x32\x75\xfa\x29\xbd\x9a\x53\x41\xa7\x6c\x18\x40\x1b\xb6\xf5\x38\x5e\x65\xa3\xf4\x59\xd0\x8a\x64\x6f\xa6\x13\x8f\x67\x57\x47\xa3\x3b\xb2\x15\xaf\x23\x4f\x52\xc0\x8e\xe4\x2f\x62\x47\x9e\xbe\x90\x1d\x09\x75\x45\x77\x95\x00\x5d\x38\xf8\x96\x49\x90\x13\x32\xd6\x91\xa0\x9c\xaa\xb2\x13\x36\x1c\x2c\x5c\x13\x39\xe7\xc6\x30\x9f\x34\x18\x48\xca\x80\x70\xd3\x29\x39\xe9\x08\x28\x38\x38\x31\xc5\x8f\x7d\xaa\x2b\x5e\x70\x13\xb5\x83\xeb\x59\xe9\x61\x79\x80\x01\xe1\x96\x6b\x14\xe5\x05\xe1\xf3\x1a\x5b\xe2\x03\x21\x1c\xba\x3a\x40\xde\x09\x17\xde\xa6\x80\xf4\x11\xc2\x3e\x81\x2b\x16\x01\x7e\xa1\xdb\x8f\x1c\x2f\x74\xfb\x9e\xf1\x42\xb7\xb3\xd3\x6d\x2c\x08\x9a\x5e\x5f\xb7\x43\xaf\xfd\xa4\xae\x9b\x11\x1d\xb3\x8a\xfc\xdc\x30\xb5\x20\x56\xc1\x6a\xeb\x77\x48\x4b\xec\x34\x2f\xb1\xcc\x84\x8f\xe9\xd8\x21\x0f\x41\x4e\xe1\x1c\x62\x46\x4e\x3f\x59\xfd\x16\x5a\x3d\x64\xe7\x92\xcb\x0b\x74\x7b\x49\xe1\x29\x84\x93\x89\xb5\x52\xcc\x75\x8a\x3f\x01\x15\xf3\xe8\xc3\x49\x4e\x03\x46\x8e\x4c\x12\x92\x2f\x9b\x84\x3c\x91\x90\x41\xc8\xd1\x9a\xbd\xc6\x33\x09\xdf\x00\x1f\x0f\x99\x47\xc1\x9b\x4b\xae\xd9\x62\xe0\xb2\x31\x89\xc5\x40\xea\x1f\xce\x04\x22\xa6\xb8\xa3\xf8\x73\xcd\x30\x8e\x23\xad\xf7\x67\x77\x64\x66\x88\x39\x5d\x75\x38\x86\xf6\xb5\xb3\xcd\xe5\x8f\x28\x0f\x8f\xce\xcc\xf3\x89\x7d\xd5\x5c\x53\x2d\xdd\x19\x8b\x3b\xce\xba\x8d\x38\x6f\x3f\x08\x75\x23\x03\x9a\x43\x4d\x4f\x20\xf8\x79\xd0\x8b\xe4\x76\x26\xe0\xf0\xc7\xf8\x44\x9b\x95\x8d\xc0\x90\x08\xd6\x6e\xe5\xc1\x6b\xb6\xd8\xd7\xae\xb7\x87\x14\x7a\xc6\x6b\x10\xdf\x21\x98\x49\x4e\xb2\x5e\x71\x1c\x3f\x40\xc6\xaa\x07\x06\xf9\xc6\x99\x18\x90\x0f\xd2\xd8\x7f\x4e\xa1\x82\x04\x90\x97\x13\xc9\xf4\x07\x69\xe0\x93\x9d\xc6\x02\xdc\xa4\xe7\x80\x03\x2e\xe6\x88\x43\xc4\x0f\xb0\x57\xac\x34\x0d\x45\x05\xdd\x59\xfb\xac\xa3\x80\x2f\x5c\x93\x33\x41\xa4\x72\x47\x94\x11\x1c\x30\xcd\x23\x48\x08\x8c\xf7\x77\xb7\x41\x81\xab\xa0\x71\x38\x22\x55\x07\x45\x3e\x0b\x60\x0e\x28\xf0\xfa\xe0\x37\xe0\xdd\x82\x58\x58\x5f\x5d\x00\x4a\x53\x29\x6a\xd8\x34\x43\x10\x6f\x3b\xe6\x4c\x4d\xa1\xf9\x4e\x31\xcb\x7d\x1b\x72\x09\x5a\x38\x32\x8a\x5b\x38\xb2\x5e\x59\x90\x79\xdf\x41\xf5\x8a\x5d\xb5\x3a\x45\x20\xa2\xf4\x37\xa7\xb5\xbd\xa7\xff\x65\x85\x3c\x40\xcb\xff\x26\x35\xe5\x4a\x8f\xc8\x11\xd1\x5c\x4c\x2b\xd6\xf9\xce\x39\x59\xa3\x69\x32\x81\x05\x31\x20\x56\xae\xba\xa1\x15\xc3\x22\x44\x54\x10\x86\x66\x1e\xa8\x40\xbd\xa4\x50\x0c\xc8\xed\x4c\x6a\x94\x18\x43\x68\xfe\xde\x35\x5b\xec\x0d\xb2\xb8\x90\x48\xcc\xd7\xec\xd4\x67\x62\xaf\xed\x4a\xd6\xb9\xc1\x41\x66\x86\x48\xc1\x3d\xf8\x6e\xef\xf3\xe8\x31\xcf\xc0\xcc\xf3\x2c\x92\x83\x9c\x9b\xee\xb8\xa2\xe8\x5a\xdf\x35\xa7\xf4\x32\x7c\xcb\x91\x32\x50\xcb\x3d\x7a\xa6\x0d\x8b\x70\x25\xbc\x76\xce\xfb\x09\x85\x79\x33\xd5\x85\xc8\x80\x5c\x08\xd6\x91\x31\x8a\x8f\x1b\xc3\xf4\xce\x62\xc2\xbd\x80\x46\x35\xcb\x42\x33\x4f\x7b\xf2\x3f\xac\xfa\x41\x54\xde\x8d\xeb\x5c\xc8\x71\x36\x59\x8e\x39\x8c\x2a\xc6\xc6\xf5\x04\xa4\x72\xe5\xe3\xee\x64\xaf\xd9\xbf\x69\x00\xd5\x55\x09\x4f\x0f\x43\x6a\x83\x1c\x15\xd3\xb5\xc4\x6c\xad\x95\x1b\xe3\x04\xb0\x19\xd5\x10\xad\x3e\x71\xc1\x44\x75\xa3\x6a\x09\xc5\xbe\xa9\xb8\x73\x19\xb3\xd4\x5b\x70\xc5\x35\x7c\x7d\x21\x2c\xa6\x16\x6e\xae\xbd\xef\xa1\x19\xe3\xd1\x52\x6f\x13\x0c\xb5\x88\xfa\x24\x08\xb9\xfa\xe5\x92\xe1\xf4\x69\x3e\xa8\x43\x87\xaa\xee\x08\x22\x96\xce\xdb\xc7\xe0\xd3\x28\x08\xc5\x6a\x84\x26\x8e\x35\x37\xb2\x0b\x3f\xd4\xf9\xc3\xa6\x0e\xc9\xfd\x3c\x09\xe2\x61\x23\xda\x70\x57\xcf\xb3\x57\xa7\x66\x40\x27\x89\xb1\x6c\x84\x43\x59\xdf\x83\xe2\x69\x37\xd0\xee\x88\x2f\xae\x18\xc0\x72\x17\x21\x2a\xf7\xc1\x27\x76\x5f\x5c\xe9\xc3\x1c\xfb\xd2\x89\x44\x86\x48\x37\x85\x87\x34\x5e\xac\xa6\x2c\xa4\x94\x0c\x4f\x14\xa0\x18\xe0\x39\xae\xde\x4a\xf7\x72\xe9\xcc\x0e\xb3\x9d\x28\x39\x67\x78\x53\xb5\xa1\x86\x41\x9a\x8d\x62\x93\x0a\xcb\xad\xb9\xdd\x9b\xcb\x92\x4f\x5c\xb6\xc2\x65\x14\xf5\x33\xc0\xea\x9b\xae\x48\x66\xdc\x11\x33\x19\xbc\x5c\xc7\x91\x8f\x97\xe2\xbf\x2d\xdd\x2c\xb2\xe0\xea\x72\x56\xc6\xea\x68\xc4\xd5\xec\xe5\xa9\x53\x2e\xb2\x71\xfc\xf7\xc9\xed\xb9\x9f\x8a\xc5\x43\x97\x67\xdf\x26\xa3\xd3\xbe\xab\xcd\xc6\x7e\x22\x29\xef\x07\x60\x28\x72\x42\xde\xf2\x8a\xe9\x85\x36\x98\x66\xc9\xe7\x48\xf5\x31\x11\x55\x1a\xc2\x45\x51\x35\x2e\x6c\x0f\x79\x80\xa5\xba\x3b\x76\xc2\xd9\x85\xb8\x76\x5a\x2f\x85\xfb\xfc\xef\x3b\x55\x6c\x97\xe9\x24\x24\x07\x87\xdb\x94\xe5\xb4\x92\x76\x6b\xd2\xab\xc6\x63\x67\x37\x26\x45\xd7\xea\xfb\x96\x8f\x15\x23\xc7\x33\x2a\x04\xab\xa2\x76\x8f\x2e\x48\x84\x1a\x43\x8b\x19\xf2\x1c\x4a\x2c\xbd\xab\x98\x95\x19\x66\x52\x1b\x32\xa7\xc5\x8c\x8b\xd0\x7c\x4a\x84\xb6\xa7\x6d\x51\xe0\x67\x58\xf8\x7e\xa2\xaf\x2c\x00\x3d\xcf\x39\x17\x71\x41\x28\x3c\xc6\x4e\xda\x8b\x0d\x54\xc5\x48\x02\x01\x47\x19\x1a\xef\xdd\x99\x3b\xb4\x70\xf6\x54\x0a\xce\x1a\x6d\x2b\xc0\xdd\xe1\xd9\xfe\x2b\x9f\x7e\x1a\x91\x3d\xf6\xc9\x7c\xb3\x37\x20\x7b\x9f\x26\xda\xfe\x23\xcc\x44\xef\x8d\xc8\xd9\x3c\x84\x24\x71\x11\x09\x3b\xcc\xfd\xc0\x0a\x58\x91\xa8\x98\x50\xcf\xff\xe3\xc9\xc7\x37\x64\x26\x6f\x49\x29\xc9\x2d\x83\x30\x68\xab\x37\x40\xea\xab\xf6\xfa\x47\xb4\x33\x50\x27\xa3\x90\xf3\x5a\xc9\x39\x0f\x69\x8f\xee\x02\xf4\x04\x23\x99\x70\x56\x8d\xc8\x82\xa6\xfb\x55\x23\x2c\xa6\x7d\x74\x0d\x9d\xdf\x90\xb7\xc7\xc4\x50\x35\x65\xc6\xae\x41\x44\x33\x1f\x33\xd5\xb7\xf1\x6b\x8e\x48\x99\xf4\x66\xfd\x8a\xd1\xf2\xa3\xa8\x7a\x3b\x33\x73\xdd\x6b\x0f\x47\x77\xbf\x4f\xa2\x48\xbd\x09\xad\x34\x23\x07\xf6\xc1\x57\xb7\x8a\x1b\x76\x38\x22\x17\xfe\x57\x90\xef\x0f\x82\xfb\x44\xa6\x08\xc7\x98\x26\xe3\x26\xd5\xcc\x60\x1d\x65\xe1\xc4\xc3\xf7\x96\xb6\xf4\x16\x99\xf1\xc0\xc7\x52\x56\xac\x67\xa1\x79\xc4\xbd\x1f\x7f\xfc\xd0\xdb\xa6\xd9\xc5\xef\x76\xbe\xfb\xd0\xfc\x56\xaa\xaa\xbc\xe5\xa5\xcb\xb4\x22\x07\xf6\xe1\xc3\x34\x94\x4f\xf1\xa5\x24\x7a\x4e\x92\x49\xcb\xed\x2d\x2f\xf3\x6c\x7e\xc2\x5d\x01\x20\xba\xc7\xe5\x8d\x4f\xf6\xb8\x08\x9c\x17\x2f\x99\x30\x96\x1d\x28\x4d\x0e\xe0\x17\xfd\x6b\x7c\x9e\x72\xec\x9c\x02\xeb\x4a\x65\x09\xfe\x98\x8b\xb6\xb3\x51\x8b\x46\x56\xe4\xb1\xa4\xd1\x7b\x03\x35\x33\xd8\x8c\x00\x2a\x2e\x4a\x33\x23\x9a\xcf\x9b\xca\x50\xc1\x64\xa3\xab\xde\xa5\x3e\x9e\x37\x26\x4d\x2a\xf6\x09\x29\xca\xb6\xba\x2c\xb6\x10\x74\xc5\x5e\x28\x78\xd1\x76\x82\x5b\x96\x7b\x7b\xad\xd5\x56\x59\x2a\x5f\x05\xb9\x39\xf4\x34\x61\x9f\x58\xe1\x8a\xb1\xd6\x55\x33\xe5\xbd\x6a\xc6\x27\x8a\xc6\x69\x91\x50\x43\x67\x1b\xde\x82\x4c\x8e\x0b\x67\xa1\x47\x6d\x47\xb4\x65\x87\x8c\xfb\xc6\x35\xbb\x0e\x4d\x8b\xd3\x7a\x47\x25\x53\xe2\x17\x75\x64\x6b\xea\x48\xdc\xe3\x38\x02\xab\x64\x35\x13\x96\x41\x08\xf2\xb6\x25\x2f\xb8\xcf\x5b\x43\x13\x09\x67\x9c\x49\x5e\x72\x93\x75\x85\xa5\xc8\xa2\x38\x93\x55\xa9\x09\xfb\x64\x14\xb5\x3c\x72\x6e\xb9\x61\xf8\xcd\x84\x50\xb1\x18\xa5\x89\x4e\x49\x7e\xf2\xbc\xbe\xf1\xe4\x93\xd9\x6d\xcd\xa3\x7c\xd1\x3c\xe2\xa1\x59\xa1\x98\x49\xa8\x87\x96\xad\xd7\xbe\x07\xa4\x7b\x5c\x9d\x8f\xef\xd8\x2f\xf1\x5b\x5f\x6d\xc1\xc5\xb9\xa4\x98\x65\x35\x13\x9a\x1b\x7e\xd3\xe9\xc6\x09\xf5\x4c\xa9\xd6\xc1\xcc\x07\xe2\x8c\x23\x80\xba\x53\x6a\xb4\xf7\xc2\xe8\x70\xe4\x13\x22\xe4\xd2\x5b\xc5\x35\x28\x42\x4c\x60\xe7\x91\xde\x8b\x86\xc0\xa0\x39\xf6\xb2\xa6\x02\x2a\x17\xe2\xe4\x03\x28\x9a\x86\xff\x8f\xb1\x41\x76\x0f\x22\x63\x27\xec\x42\xff\x9d\x76\xbb\xb7\x3d\xb2\x99\x23\x76\x3c\xb5\xd4\x4c\x4e\xd7\xcc\x87\x48\xb4\xf3\x55\x46\xd2\xac\xf7\x8f\xf4\x00\xca\x1b\xa6\x6e\x38\xbb\x7d\xe5\x6a\xa3\x0c\x6f\xb9\x99\x0d\x5d\xb9\xb9\x57\x60\x67\x78\xf5\x7b\xf8\x27\x09\x2a\xb4\x65\x1e\x95\xa5\x2b\xdc\xe4\x9a\xe0\x61\x21\xd0\x11\xa1\x35\xff\x81\x29\xab\x96\x0c\xa0\x36\xd2\x80\x34\xbc\xfc\x6b\xc2\x8a\xb9\xbb\xf9\x27\x07\x86\x4d\xa0\x7f\x63\x2f\xed\xa0\xeb\x1a\xc1\x79\x96\xfc\x23\xee\x43\xa7\x28\x6e\xe2\x0f\x71\x14\x30\x12\x13\x2d\x0a\xfa\x89\x5c\xb8\x00\xd1\x16\x39\xda\x1a\x3e\x8d\xe8\x49\xa8\xb7\xec\x2d\x29\xa9\xa1\x9a\x99\x14\xaf\x5d\xae\x4b\x1f\x81\x62\xb9\x44\x7c\xff\xdd\x57\x10\x0a\xc4\xa0\xf8\xb0\xef\xa8\x47\x86\xff\xe6\x94\x40\xd1\x79\xd2\xaa\x7f\xee\xc8\xfa\xd3\x74\x2c\x32\x03\x0d\x38\x30\x55\x11\xd7\x2e\x2d\x82\x15\x09\xfd\x4d\x93\xaf\xa0\x7b\xcb\xef\xbf\x3f\x3b\xc9\xa3\x54\xb7\xf3\x79\x1d\x11\xfe\xbf\xbb\xfd\xee\x62\x40\x08\x0f\xff\xb9\x89\x6d\x77\xd0\x30\x3d\xdc\x11\xf7\xfc\x36\x76\x67\x5a\xb0\xd6\x0b\x7c\xc2\xf5\xf5\xb6\x2c\x57\x77\x00\xe9\xd2\xa5\xbf\x1d\x9f\x12\xf7\xe9\x3a\x97\x6d\xaf\xa5\x3f\x8f\x9b\xb7\x77\x44\x8d\x0f\xa3\x99\x16\xac\x0d\xae\x29\xb9\xbe\x7e\x7e\x06\xb5\xba\xfc\xd0\xaf\x68\xe7\x97\xe6\xe4\x5e\xb6\xfa\x38\xc2\xe1\xb8\x2e\xa0\xf6\x42\x36\xe4\xd6\x35\x3c\x4e\xb4\x36\x5d\xf1\xfa\x0d\x39\x15\xba\x51\xac\xcd\x38\x5c\x06\xc1\x2a\x1a\x4f\x6e\x7b\x82\xd6\xde\xfa\xcd\xd6\x1d\xe2\x3b\x70\x15\x71\x7c\x19\x9e\xf9\x9a\x2a\x03\x36\xa8\x6d\xdf\xb0\x00\x88\x67\xcb\xd1\x07\xe2\x29\xaf\xd8\xd9\xc4\x97\xa6\xe9\xc6\xe9\x72\x1d\x26\x6f\x83\x58\x41\x02\xcb\x71\x8d\xde\xca\x20\xa9\xbf\x2a\xd9\xcd\x2b\x5d\xd2\xaf\x07\xf0\x5a\xbe\xb4\x5e\x77\x0f\xa8\x26\x7b\x5f\xef\xf5\x5f\xf9\x92\xcf\x79\x45\x55\x85\xad\x26\x42\x0f\x8f\x30\xbf\x95\x22\x3d\x20\x90\x95\xf4\x7a\x8f\x1c\x48\x05\x10\x15\x54\x90\x8a\xf9\xb6\x14\x8e\xa0\x2f\xd0\xf2\x71\xf8\xec\x6f\xf2\x6e\x44\x7d\x20\x7f\xdd\xfa\x25\x2c\xbd\x4e\xe2\xe4\xde\xd8\xeb\x74\x7e\xd2\x8a\x70\x5c\x58\xb9\x6e\x44\xbe\x77\xd2\x95\x93\x8f\x11\x6b\xed\x61\xf8\x27\xbe\x0c\xec\xf8\x92\x8c\xea\x4b\xe6\xf1\x27\x35\x73\x93\xbb\xf1\x42\x5f\x08\x46\xf4\x35\xdd\x4f\xb9\xb9\x60\xb5\xdc\x9a\xae\x86\xcb\x2f\x85\x18\x70\x63\x3f\x90\x9a\x1b\xa9\x16\x84\x1a\x42\x91\x33\x14\x4d\x45\x15\x51\x0c\x83\x05\xfa\x9d\xdc\xc9\xe9\xf9\xc5\xe9\xf1\xd1\xd5\xe9\xc9\x1b\xf2\x37\xb7\x3a\x8f\x2d\x0b\x23\x72\x25\xdb\x88\x84\xb8\x34\x1c\x66\x6e\xb5\xf0\x0d\x1c\x37\xee\xe9\x31\x39\xb5\xfc\xea\x84\x2b\x6c\xb1\x4e\x05\x39\x13\xdc\x1c\x87\xc5\xb0\x4a\x4d\x25\x85\xcb\x3f\xb0\x2b\xba\xa0\x88\x29\x37\xae\x73\x29\x02\x60\xbf\xf6\xb3\xf5\x02\xa5\x6d\xf2\x2e\xcb\x7d\xdd\xbe\xf1\x33\x8c\xb4\x68\x11\x67\x1b\x36\x3d\xae\xa0\xf6\xca\xd6\xa9\x6b\x00\x24\xd4\xde\xc7\x68\xbd\xf6\xf3\x34\xc1\x11\xa2\x0e\x84\x0c\xae\x32\x22\x15\xd1\x86\x2a\x83\x77\x64\x7f\x34\xda\x1f\x81\x28\xbb\x3f\xda\xf7\xfa\x60\x15\xb2\x25\x9d\xb4\xd7\x02\xe3\xb3\xc5\x52\xf2\xd9\xbb\x54\x63\x44\xc8\x47\x5f\x4c\x11\xba\x04\x2e\x25\x6c\x86\x5c\xcc\xaa\x0a\xef\x00\xbd\x2c\xba\xb4\x27\xc1\x2f\x05\xde\xb5\x66\x1c\xbf\xa4\xcb\xfb\x9c\xf2\x1b\xd7\x64\x6b\x6b\x41\x0f\xed\x2b\x66\xc1\xd4\x78\xc7\x9c\x11\xf3\xe2\xdd\xf6\xde\x0d\x49\x77\xa6\x37\x73\x7c\xc0\xbd\x57\x21\xe7\x73\x6e\xc8\x8c\xea\x59\xe8\x78\xd2\x66\x60\xa6\xb1\xa6\x54\x03\x6c\xd5\x68\xc3\xd4\xa4\x17\xed\xca\xc2\xcc\x3d\x00\x4b\x06\xd7\xf0\xb1\x2b\xf5\x2a\x5a\x8b\x10\x30\x39\x3d\xa3\x8a\xd9\x27\x6b\xe0\x3e\x15\x9f\x30\xc3\xfb\x5e\x8e\x15\x52\x19\x73\x5a\xae\x6f\xb1\xe0\x24\xb0\x57\x01\xde\x57\x17\xa7\x47\x27\xef\x4f\x47\xf3\x3e\x6e\x85\x2d\xf3\x3b\x26\xca\x5a\xf2\xbe\x55\xee\x87\xa4\xa6\xa6\x4f\x2f\xc9\x54\x4e\x19\xc0\xde\x36\xa7\x0c\x80\xf8\x1b\xee\x3f\x40\x5d\x13\x10\xd4\x75\xbd\x88\x30\xd9\xc8\x5a\x56\x72\x9a\xd0\x88\x30\x0d\x4f\x7f\x8f\x39\xf2\x43\x3a\xac\xe5\xd6\x7c\x61\x16\x75\xb6\x7d\x7c\x16\x06\x7f\x72\xed\xf1\x04\x73\x92\x49\xa8\xf3\xf4\x05\x9c\xd0\xb3\x50\xf6\xef\x1c\x1b\xda\xe9\x81\x59\xb0\x12\xc5\x26\x3b\xc1\x10\xaa\x0e\xd5\x4c\xcd\x39\x56\x46\xda\x55\x2b\xc0\x56\xb0\xa4\xaf\x01\xc0\xb2\xe1\xf3\x9e\x17\x39\x07\x7a\xf8\xf5\xbb\x32\x43\xad\xd8\x10\xca\x0f\x58\x75\x77\xc2\x2b\x28\xa5\xd2\x8a\xd2\x91\x08\xd1\x6b\x51\xef\x98\xf5\x9e\x5f\x9c\xb9\x5a\x2c\x3b\x68\x5b\x45\x38\x38\xe0\xb1\xe1\x67\x55\xf5\xcb\x2a\x81\x6a\x34\x56\x6e\x74\x3e\x18\x3a\x85\x17\x96\xca\x85\x20\xd5\x8a\xdf\xf0\x8a\x4d\x2d\x08\x33\x2e\xa6\xba\xed\x3d\xe3\x0a\x8d\xf4\x5a\x16\xaa\xe4\xb0\x56\xec\x0a\xf1\x36\xef\xed\x5f\x6d\x59\x76\xbc\x9a\x1f\x3e\x5e\x11\xc1\x10\x84\x9e\x97\x2c\xd1\x36\x66\x81\xec\x29\x98\x10\x32\x1c\xf6\xc3\xc4\xab\x8f\x27\x1f\x0f\xfe\x29\x05\xd3\x65\x75\x48\x7e\x64\x6e\x0f\xa0\xae\x8b\x51\xbc\x30\xe4\x76\x26\xc1\xf9\xd0\x68\xb7\x8f\x2d\x46\x02\xb5\xc2\xec\x26\xf7\xd4\x2b\xfb\xa4\x90\x3d\x11\x14\x24\xe5\xce\x1a\xdc\x8a\xc8\x9a\xb4\x31\xc6\xcf\xd0\x38\xb3\x25\x61\x73\x67\x04\x15\x1f\xd5\xb3\x8a\x90\x25\x79\x0c\xd1\x39\x87\xa2\x10\x25\x7a\x31\xaf\xb8\xb8\x86\x56\x16\x8e\xd9\xba\xb6\x70\x8c\xd8\x2f\x3c\x79\x53\x8c\x56\xf9\x85\xa4\xcf\x76\xd1\x33\x08\x48\x66\x07\x62\x39\x20\x66\xc2\xf2\x84\x7f\xf7\xac\x10\x5d\x1d\x59\xa4\x9b\xbd\xbd\xdf\xe2\xd1\x72\x5d\x68\xbe\x2d\x89\x06\x16\xef\x88\x33\x82\x9c\x5d\x1e\x5f\x9e\x7d\x89\x61\x67\xf7\xc9\xba\xb0\x09\xcf\xd9\xae\xc2\x7f\xee\x67\xfa\x1d\x92\xaa\xe9\xfb\x4b\x34\xd2\x9f\x4b\x65\x68\xb5\x05\x36\x59\xcc\x68\x7d\xd4\x98\xd9\x09\xd7\xd0\x93\x31\x8f\xda\x78\x67\xd6\xa8\xd6\x13\x03\xa1\xd7\x05\x8b\x11\xee\x2f\x89\x7b\xee\xf8\xdf\x8f\xce\x09\x6d\x2c\x0a\x1b\x5e\x40\x06\xcd\x56\x54\x24\x12\xed\xcd\x25\x56\xe5\xcd\xba\x33\x6e\xce\x07\xf6\xc5\x3f\xb5\x4b\xbb\xb2\x6b\xc1\x90\xab\xa2\x11\x5f\x02\x22\x9f\x55\x40\x24\x30\x8e\xdf\x78\x10\x24\x17\xdc\x70\x6a\xa4\xda\x85\x18\xac\x0e\x30\xc1\x0d\xd6\x68\x23\xe7\x8e\x32\x9d\xf9\x27\x20\x73\x24\x49\x8f\xb9\xb3\x58\xeb\x5b\x03\x3b\x20\x60\xc7\x99\x30\x4c\x4d\x68\xc1\x96\x4a\x85\x0c\x88\x60\xb7\x0e\x26\xee\x9f\xe9\x0d\xcd\xbf\x3a\x97\x79\x0d\xec\xf8\xdf\xde\xfc\x6b\x14\x71\xf9\x6f\xc1\x63\xed\x6a\xd5\x06\x5f\x60\x21\x85\x60\x85\xd9\x96\x0f\xd0\x0e\xfe\x73\x1e\xf6\xc4\x7f\x16\x4b\xd1\x03\xb8\xb5\xff\xa7\xa1\x15\x1e\x49\xca\x71\xa7\xbf\x66\x07\x15\xb6\x7e\x4b\xba\x88\xe9\xf6\x2d\x60\x21\xe6\x54\x01\x83\x68\x34\x03\x95\x00\x37\xd3\x28\x2a\xb4\x45\xb1\x3c\xc6\xec\x7d\x17\x2d\xbc\x4f\x0e\x4c\x51\xf7\x0e\x86\xdd\x99\x02\x6b\x55\x23\x62\x4d\x0a\xf7\xec\x0a\xb1\xf1\x5d\x28\xb0\x96\xf6\x9a\x5b\x0f\xb5\x05\x02\xb3\x75\x47\xa8\x03\x23\xa0\x6e\xbc\xd5\xa8\x92\x90\x77\x5c\x1b\x2c\xee\x81\x0f\x43\x2b\x0b\xac\xfc\x64\x75\xdc\x73\x22\x15\xe1\xf5\x7f\xd2\xb2\x54\x6f\x50\x72\x75\x96\x29\xa9\xfa\xe7\x96\x73\xed\x6c\xe3\x90\x56\xee\xa3\xe1\x0f\xcc\xa2\xe6\x05\xad\xaa\x05\xb9\x3a\x3e\x87\x15\x34\xf9\xcb\x9f\x5e\x83\xd2\xfb\x2f\xff\xf3\x4f\xaf\x13\x71\xff\xb9\x16\x8e\x22\xcf\xc5\xeb\xf7\x0c\x42\x7c\x77\xad\x28\x46\xa7\x84\x05\x74\x1d\xb0\xaa\xe0\x25\x56\x70\xb0\x02\x88\x63\x29\x78\x67\xed\x45\x08\xe2\x54\x4e\x85\xf1\xa5\x56\x42\x34\x5e\x6a\x25\xfc\x46\x6a\x25\x90\x50\x5d\x13\x99\xe1\xb6\x89\x6b\x0c\x0b\xd4\x2c\xbf\xcb\xaf\x91\x55\x9f\x7f\xe9\xac\xba\x27\x92\xf4\xa5\x22\x39\x0e\x30\x4e\x63\x4a\xa9\x92\xd7\x16\x7f\x3b\xf9\x70\xf9\x9f\xef\x8e\xbe\x3d\x7d\x07\xbb\xea\xb2\xa5\x2c\x29\x70\x26\x8f\xcf\x95\x6a\xfe\xa4\xe4\x28\xed\xbc\xb7\x17\x18\x2b\x96\x42\x62\x05\xf9\xf0\xf6\xf2\x91\xd1\xb0\xdb\x08\xc3\x10\x93\xfe\xa7\xf4\xdc\x62\x0c\xec\x4f\x35\x53\xdb\xa9\xd2\xb9\x33\x01\x0a\xde\x27\xc9\x3e\x75\xad\xd5\x16\x5f\x71\x77\xb6\x66\x18\xee\x87\x8c\xe4\x37\xa3\x50\xd9\x23\xc2\x63\x7b\xf6\x01\x94\x9f\x13\x2d\xd2\xd4\x3b\x95\xab\xb8\x6e\x52\xc1\x43\x15\xd5\xe5\xb5\x8c\x04\xc5\x0b\x65\xc5\x3c\x2b\xe0\x31\xad\xbd\xb0\xf1\xdb\xbd\xc7\xf5\xaa\x4e\x5e\xdb\x12\x08\x56\x02\xe3\x7a\x7b\xf9\x96\x65\x51\x34\x6c\xa7\x5c\x65\xbf\x10\x91\x7b\x7a\xc2\xa1\xf0\xa1\xa9\xf3\x6b\xe8\x9a\x16\xf9\xf2\x6e\x7a\x36\xf9\x5a\xee\x13\x07\xdd\x83\x9e\xa1\x20\x02\x70\x6f\xa9\x4a\x51\x58\x7b\xdb\xc4\x29\x00\xb2\x5c\x37\x9c\x3e\x06\x25\x09\xd5\x5e\x8b\x71\x29\xd0\x19\x0a\x8c\xef\x24\xce\x92\x2f\x52\x5e\xf9\xf1\x33\xdb\x7e\xb7\x69\xf7\xad\x67\xd2\x48\x91\xb9\x14\xde\xaa\x49\xbb\x3c\xe2\x1c\x9e\x38\x6e\x5b\x6a\xb6\x28\x89\x05\x50\x42\x98\x21\x15\x65\x90\x0d\xa5\xf0\xc1\x83\xdd\xd8\xc1\xe7\x47\x6d\xeb\xf2\xec\x64\x0b\x84\xf6\x39\x44\x40\x7d\xa1\x4d\x06\x3e\x53\x44\x53\x7a\x9a\x64\x99\xa9\x56\xa8\x9d\xc8\x9f\xf1\xd9\x89\xd3\xd5\x7d\x21\x50\xed\x28\x00\xb9\x9f\x04\x6c\x45\xec\x96\xca\xdc\x4a\x95\xab\x99\x4d\x77\xba\xa5\x9c\x31\xf7\xdd\x9d\x8a\xc3\x5f\x26\xc1\xc3\xb7\xfc\x2d\x13\xbd\x4b\x20\x7a\x11\x0e\xac\x23\x7e\x5f\x02\xed\x7b\x3e\x34\x6f\xe7\x24\xd0\x97\x6e\x1d\x9d\xe1\x89\x47\x96\xf3\xf1\x93\x39\xb7\x93\xc5\xcd\x96\x2b\x51\x70\x40\x46\x74\x79\x2b\x5c\x48\xc9\x7f\x42\x37\xf5\x74\x06\xe4\x67\xc2\x28\x1f\x08\xbb\xa0\x55\x65\x4f\x56\x8a\xb6\x1d\x9a\xf6\xfd\x2e\x06\xa4\x90\x62\xc2\xa7\x73\x5a\xeb\x01\x70\xa2\x52\xde\x8a\x5b\xaa\x4a\x72\x74\x7e\xf6\xf9\xb9\x4e\x72\x85\x2b\xbc\x47\x29\xdd\xc4\xb3\xd5\xb8\x6a\x41\x81\x04\x69\xd7\x25\x9f\x91\x31\x37\x1a\x33\xad\x21\xef\xd9\xc4\x26\x6f\x2b\x00\x84\x98\x5d\x4b\xcf\x2d\xed\x76\x33\x65\x90\x8f\x05\x91\x85\xa1\x15\xb9\x81\xc6\xe2\x63\x66\x6e\x19\x13\xe4\xf5\xeb\xd7\xe8\xed\x7e\xfd\xe7\x3f\xff\x99\x58\x8c\x21\x25\x2b\xf8\xfc\xee\x83\xf0\xd4\x1f\xbf\xfe\xba\x3f\x28\xff\xf7\xe8\xfd\x3b\x42\x0b\xb0\x58\x60\x3f\x45\x84\x08\x50\x2f\x5e\x54\x0f\xc8\xff\xbe\xfc\xf8\xa1\x6d\x72\xdf\xfd\x16\x30\x3b\x6c\x67\x82\x46\x1e\xa5\x2f\xc7\xfe\x68\x6a\x66\x70\x6a\x42\x1a\x42\x27\x13\xbc\x53\xc0\x47\xb9\xf6\xf4\x32\x21\x2d\x03\x3a\xe9\xf0\xe9\x0c\x8e\x85\x0b\xb8\x85\x15\xe4\x70\x73\xbb\x25\x10\xa5\xe0\x1b\x6f\x61\x8a\x3d\xc0\x10\x44\x88\xde\x2b\xdb\x2d\x1b\x90\x8a\x5f\x33\x32\xd1\x7f\x53\xb2\xa9\x07\x3e\x11\xcf\x52\x87\xa6\x32\x90\x42\x3e\x66\x0e\x88\x16\x63\x35\x4b\x6c\x82\xb6\xed\x40\x56\x47\xfa\xf2\xc4\xba\x39\x32\xea\xd4\x9d\x8a\x5b\xc9\x6a\x12\x0a\xbb\x20\x15\xb6\xa7\xf7\x5c\xa3\x3c\x3b\x6f\x7b\x1e\xde\x07\x91\x11\x7b\x40\x45\xcc\x86\x56\x52\x4c\x63\xdc\x6d\x65\x4f\x9f\xd8\xb4\xa8\x13\x42\xbc\x32\x44\xf6\xe5\x89\xed\x23\xa4\xc0\x2a\x29\x57\xaa\xd1\xe6\xdb\x46\x94\x55\x52\xac\x5f\xde\x68\x3f\x42\x8e\xef\x40\x87\x85\x39\x5c\xc0\x06\x38\x68\x8a\x82\x69\x44\xdb\x9f\x46\x56\x14\x1f\x99\xf6\xe9\x9f\x30\x64\x2e\x11\x0a\x39\x59\x05\x88\x8b\xb2\xb1\xe4\x8e\x0a\x42\x1b\x23\x87\x4d\x5d\xd2\x50\x43\x65\xf4\xbb\xdf\x25\xae\x7b\x54\xd5\x33\x3a\x20\x53\x1a\x29\x3d\x77\x01\x89\xb0\x79\xc2\xa8\x69\x14\x83\x5f\xa4\x2f\xbf\xe6\x9d\x2d\x4d\x75\xf1\x6d\xd0\x54\xb8\x0a\x0c\x45\xd0\x39\x1b\x58\xa6\x8b\xf0\x26\x82\xb0\xd4\xd8\x58\xf3\xa9\x60\x0a\x9d\x1a\x96\xca\x53\x52\xd1\x31\xab\x1c\x00\x52\xa5\xbf\xf3\x77\x68\xad\xb0\x32\x8c\xa5\xd0\x9a\xd0\xe9\x54\x31\xad\xf9\x8d\xe5\x9d\x6a\x4e\x2b\xfe\x4b\xdb\x67\x79\xc6\xc8\xf9\xe9\x7b\xa8\xe8\x02\x1a\xb1\x55\x6f\x0c\xeb\x5f\xc4\x12\x47\x28\x0f\x6b\x31\xbc\xd5\x82\x47\x84\x9c\x6a\x69\xa0\x1d\xb0\x5d\xd5\x1d\xb6\x26\xba\x29\x66\x84\x6a\x4c\x7f\x19\x8e\x2b\x59\xf4\x6f\x6b\x80\xa3\x90\xf3\x39\xf3\x05\x56\x60\x42\x32\x63\xb4\x64\x0a\x1b\xca\x59\xb5\xa0\xae\x59\x39\x22\xe4\xd8\x52\xa0\x09\x2f\xa8\x61\xf8\x5d\xc9\xca\xc6\x2a\xcd\x50\xdb\x37\x11\x8c\xab\x19\x23\x52\x95\xcc\x2a\x21\x76\xbf\x8b\x78\xb1\x48\xba\x81\x8a\x45\xdc\xae\x3f\xe6\x46\x51\xb5\x40\x19\xc0\x9d\x65\x22\x10\x96\x39\x14\x33\x2a\xa6\x28\xf2\x02\x3c\x44\x42\x03\xde\xde\x55\x13\xfd\xc8\xc2\x07\x48\xb2\x75\xab\x1d\x09\xf1\x5c\x7e\xe4\x61\x4b\x76\xc0\xdd\xbe\x74\x57\x3b\x75\xb2\xdc\x9c\xc9\x0e\x84\x0d\x14\xd2\xbb\xb4\x52\x7b\xd9\xc2\x14\x33\x14\xb3\x97\x68\x15\x21\x68\x01\xa1\x69\xa1\xe2\x38\x18\xca\xd3\xdc\xd3\xc8\x90\xd0\xc9\xcc\xc8\x2a\x4c\xa6\xa1\x55\xb5\x18\xb2\x4f\x96\xdf\x5b\x62\x06\xc2\x0d\x14\xc5\x85\x4c\xd0\x46\x68\x66\x06\x19\x00\x01\x22\x54\x2b\x66\xb0\x85\xd8\x1e\xbe\xbf\x90\x50\x5f\x6b\x0f\x17\xb3\x4a\xe2\xb8\x31\xd8\x42\x62\xb0\xfa\x27\x39\xf6\xe4\x86\xa9\x85\x5b\x37\x79\xba\x6c\x57\x95\x64\xbd\x23\x04\x28\x94\x29\x66\xa7\x9f\x6a\x85\x25\x0b\xb2\xcc\xb9\x74\x5d\x96\x97\xc0\xc2\x47\x5e\x4d\xe8\x22\xb6\x27\x46\xc0\x41\x30\x28\x3e\xfe\x04\xb8\xc4\xd1\x87\x93\x74\xf6\x80\x23\x5d\xb5\xe8\x8e\x44\x45\xa3\x3b\xf2\xd3\x1c\x1c\x47\x6b\xf6\xdc\x15\xa5\xf2\xdf\x60\x61\x7b\xdf\x31\xd6\xdb\x22\x28\xb9\x66\x8e\x4d\x52\xe1\x8c\xe8\xee\xe1\x6c\x40\x2a\x56\x01\xa7\xb6\x6c\xf3\x9a\x2d\x60\x31\x5c\x3f\xcf\xc9\x67\xbe\x94\x38\x72\x71\xd2\x76\x0c\xed\xcb\x67\x9c\xcd\x1f\x56\xa6\x29\xf3\xd2\x22\x1c\xd7\xac\xb7\x2b\x62\xd5\xe8\xdc\x22\x8b\x49\xde\x4c\x01\x77\xc0\x7e\x10\x6a\x81\x04\xb4\xa7\x50\x01\x5f\x13\x23\x73\x21\x1b\xc9\x93\x27\x75\x77\xf8\x03\x7d\xb2\x2d\xcb\x48\x78\x48\x04\x6f\xd7\x1f\x7c\xcd\x16\xfb\x1a\xef\xbc\xe5\x10\x33\x5e\x63\xef\x59\xcb\xec\xe5\x24\xf3\xc5\xc7\xf1\x03\xad\x78\x19\xc0\x41\xce\x72\x26\x06\xe4\x83\x34\xf6\x9f\xd3\x4f\x5c\x3b\x1d\xe6\x44\x32\xfd\x41\x1a\xf8\x64\xe7\xf1\x01\xb7\xea\xb9\x60\x83\xb3\x5f\x73\x48\xb4\x01\x36\x0c\x9a\x3a\x6c\x89\x3f\x75\x5f\x33\x31\x60\x0e\xd7\xe4\x0c\xba\x58\xe0\x51\x65\x05\x08\xb2\xbc\x10\x28\x04\x67\xee\xdc\x05\x42\x8a\x21\x88\x9c\x2b\xe1\x71\xd8\x22\x55\x07\x59\x3e\x13\x68\x0e\x2c\xb0\xa3\xe3\x37\xd0\x36\xbf\xae\x68\xc1\x4a\x52\x36\xb0\x99\xd4\xee\x2a\x35\x6c\xda\x33\x9f\xf2\xbe\x31\x67\x6a\x0a\x2e\x82\x22\xa1\x32\xe5\xdd\x91\x5b\x30\xc3\x91\x55\x3c\xc3\x91\xf9\x12\x83\xac\xfc\xce\xb2\xa6\xa7\x90\xc4\xb3\xdd\xde\x08\x4c\x94\x18\xe7\xb4\xb6\x37\xf7\xbf\xac\x60\x08\x48\xfa\xdf\xa4\xa6\x5c\xe9\x11\x39\x22\x9a\x8b\x69\xc5\x3a\xdf\x39\xdb\x4b\x34\x4d\x36\xc0\x6a\xc8\x89\xfa\xb9\xe1\x37\xb4\x62\x58\x37\x8c\x0a\xc2\x2a\x14\x6f\xe5\xe4\x8e\x3a\x32\x20\xb7\x33\xa9\x51\xca\x04\x83\x2f\xf4\x30\xbc\x66\x8b\xbd\x41\x06\x23\xa4\x1f\x31\xb5\xd8\x3b\x13\x7b\xad\xa7\xa9\x73\xa7\x83\xac\x0d\xf9\x3f\x7b\xf0\xdd\xde\xe7\xd2\x83\x32\xca\xc2\xb4\x2c\xa1\x39\x24\xad\xce\xb3\x8b\x88\x59\xaf\x5c\xfe\xcc\xf3\x76\xa4\x16\x3f\xc0\xf1\x74\xa6\x27\x7f\x33\x57\xd8\xea\xc7\x0b\x87\x0d\xde\xcc\x73\xd7\x0a\x94\x01\x10\xb0\x23\x45\x36\x27\x7b\x25\x3a\x86\xbb\x5c\xa6\x97\x2c\xc8\x82\x3e\xe8\xfe\xe5\x04\xda\x91\xff\x48\xad\x4c\xa2\x1a\x36\x20\xa5\x14\xfb\xc6\x99\xdd\x6b\x59\x62\xa7\xaf\xa6\xf6\x35\x03\x42\x7a\x52\xb9\xe2\xd4\x0f\xf4\x61\x06\x50\xa8\x62\x16\x04\x7a\x43\x79\x45\xc7\x95\xb7\x11\x42\x2a\x08\x3a\x78\xa0\xd0\xad\x4f\x30\x59\x05\x08\xe1\x39\xf8\x81\xab\xc2\x0f\x61\x0b\x46\x12\xe8\x51\x10\x03\xd3\x22\x5e\x04\x52\xd7\x69\x94\x01\x8a\x75\xe8\x0d\xbc\xd3\x41\x69\xa4\x33\xf7\xfe\xc2\x94\xcc\xb0\xee\x0a\xa3\x72\xae\xdb\x94\x12\xcd\xd6\x8e\x94\x44\xea\x76\x74\xae\xd2\x05\x28\x90\x37\x2e\x64\x05\xea\x45\x46\xf5\x44\x95\x44\x44\x80\x38\x42\xf8\x62\x0c\xfb\xb2\x53\x44\xa6\x45\x97\x5d\x24\x33\x8f\x74\x5a\x44\x2e\xd7\x1c\x72\xca\x03\x9e\x88\x2b\xd7\x05\x04\xdb\x74\x4c\x00\x4a\xef\x5d\x7e\x9a\x0b\x15\x4a\x4b\x36\x02\xab\x2c\x62\xe4\x56\x3e\x27\x66\x36\xd4\xc2\xc8\xc6\xf7\xb4\xce\x18\xa0\x11\xe6\x84\xbc\x3c\x35\x47\xa2\x49\xc7\xb2\x31\xbe\xbe\xa6\xfb\xbe\xa4\x86\xda\x9b\xe7\x82\x64\x76\xc3\xed\x99\xcf\x76\x99\x49\xad\xcc\x7f\x5d\x31\xee\xb5\x1b\x67\x3e\x20\x8c\x16\x33\xab\xed\x0c\x31\xa0\xd1\xea\x69\x5e\x21\x3b\xb1\x07\x85\x4a\x90\x5c\x16\x18\x72\x5c\xa1\x80\x11\xfe\xe2\x44\x31\xba\x3e\x70\xc1\xa7\x84\x68\x17\xc6\xef\xd4\x33\xd1\x26\xa6\x66\x80\xc4\xbb\x14\x1c\xbd\xf0\x46\x61\xd8\x11\xb0\xf0\x2c\xf5\x20\xad\xb8\xb6\x40\x5e\xb3\x45\xb8\xf4\x19\xa0\x58\xf1\xf6\x6d\x11\x5d\xcb\xc3\x5c\x1c\x72\x23\xee\xac\x6f\x85\x9a\x4c\x30\x80\x15\x16\x5e\x9a\x7a\x03\x79\x54\xca\x77\xc6\x0b\x68\x55\x62\x17\x74\xcf\x7a\x6c\x09\xc7\x99\xc3\xd0\x15\x1d\xbd\x66\x56\x62\x85\xd7\x84\x62\xd0\xf6\xfd\x99\xd6\x84\xc3\x39\xcd\xa9\xba\x66\x65\x90\xc6\x47\xe4\xdc\x6e\x94\xb7\x86\x65\x80\x44\x79\x29\x02\x92\x91\xe8\xa2\xd3\x3c\xd7\x82\xb9\x3f\x1a\xed\xbb\x26\x31\x77\x5b\xe9\x66\xa2\xf8\x79\x4c\x5f\xd9\x0c\x5e\x1d\xda\xf4\x9e\xd6\x1a\x0d\x8a\x56\x8c\x06\x17\x8a\x84\xbe\xdf\x66\xe6\x23\x6b\x68\x72\xc2\x77\x3b\x32\x1b\x27\xf2\x3a\xe9\xf2\x39\xe8\x32\x84\xcf\xe0\xc8\xed\x94\xcb\xe8\x90\xbb\xcf\x19\xe7\x70\xc8\xd1\xc3\xbc\x1e\xde\x8c\x0e\x96\x79\x42\x2a\xc5\xf2\x78\x2a\xb7\x0a\x04\xa9\x73\x4d\x3e\x7a\x6b\xc5\x66\x89\x16\x20\xaf\x63\xe4\x69\x2e\x48\x76\x28\xd3\x62\x79\xec\x5a\xe6\xc5\xf2\x38\x9b\x00\xd3\x59\xdd\x08\x3d\x4e\xa6\x09\x0a\x88\xce\x65\x0a\x26\x5b\x4d\xc9\x58\x1e\x5b\x49\xd1\x58\x1e\x39\x52\x36\x96\x47\x7a\x0a\xc7\xf2\xc8\x63\x4f\xc1\xf1\x54\xc4\x29\x6e\x01\xac\x3a\xc6\x1a\xa7\x6e\x80\xc0\x0f\xa6\xb0\x3a\x62\x0c\x19\x69\x92\x13\xe7\x90\x2c\xd1\xb1\x96\x55\x63\x52\xbb\x0f\xdf\xb7\x48\x2c\x33\xc2\x4b\x7a\x2f\x54\x1e\x41\x71\x79\xb9\x48\x12\x05\x4d\x02\xc5\xb3\x9c\x6b\x65\x64\xa8\xbb\xea\x1b\xc9\x5f\x24\x1a\xc7\x2e\xd5\x66\x5d\x1e\x9f\xbb\x60\x34\x8e\xdd\xf7\xcc\xf8\x69\x1d\x1f\x5e\x84\x6e\x5f\x1d\xe5\x17\xca\x33\x1b\x8d\xba\xb9\x8f\xc9\xc0\xfe\x60\xe9\x36\x93\x7c\x06\xf7\xa7\x72\x74\xfa\x1c\xe9\xa3\xf3\xb3\x8c\xb6\xc5\x68\xd6\x7b\xac\x8b\xf1\x13\x2f\xf6\xc5\x4d\x46\x67\x83\xcf\xd0\x34\x18\x47\x62\x9f\xb4\x3b\xea\x6a\xb6\x64\x11\xe5\x76\xdf\x9e\x71\xe7\xc5\xdf\x5a\x29\x24\xee\x65\x13\x61\xa0\x91\x2e\x29\xbd\x95\x57\x1c\x9f\xf7\x1d\xc9\x30\xf3\x2a\x3d\x73\x90\xec\xbe\xed\x63\x47\x2d\x16\xb0\xfb\x09\xad\x3c\x96\x47\x07\x5b\xf6\x2f\xfc\x26\x3a\x77\x18\x1a\xaa\x23\x9b\x79\x2d\xcb\x37\x18\xc0\x43\x85\x90\x06\x63\x5a\x07\xe8\xfa\xd5\x83\x36\x03\x31\xaa\x99\xa8\xa2\x12\x35\xa3\xfd\xdf\x56\x84\x3b\xec\xdd\x79\x1e\x4c\x22\x4f\x14\x94\xde\xca\x40\x4f\x16\x5a\xeb\xe6\xf7\x48\xa4\x8b\x19\x9b\x53\xf8\xdf\xb7\x7e\x83\x2c\xbd\x76\x69\xa2\x60\x83\x67\x6a\xae\x89\x9c\x0c\x3a\x25\x73\xf6\x6e\xbe\xce\x90\xb2\xd4\x8e\x27\x09\x53\x0e\x67\xfe\x64\xdb\x79\xde\xd1\x2a\xed\xed\x04\xc3\x17\xf8\xaf\x7d\xe1\xd2\xe0\xe5\xb0\x42\xc4\x0d\xee\xff\x8e\x6f\xdd\x53\xc6\xab\xe1\x78\x0e\x46\xce\xbe\xc6\xcd\x41\x10\xd0\xbb\x46\xc9\x6c\x80\xbd\x18\x37\x1f\x1e\x2f\xc6\x4d\x37\x5e\x8c\x9b\x1b\x8f\x27\x33\x6e\x46\xd2\x9c\xe7\xb0\x2b\xac\x93\x71\x13\x20\x6f\xa2\x6c\x3b\xca\x8e\xd0\xd5\xe1\xed\x8a\xde\xa8\x28\x55\xd7\x6b\xbc\x3f\x1a\xed\xa3\xdf\x78\x14\x7c\x23\x8d\x99\x0c\xff\x42\x98\x28\x64\x69\xe7\xb9\x82\xf9\x95\x36\xa0\xe9\xb4\x76\xa8\x18\x96\xb9\x5f\x2b\xf6\x3c\xc3\xdc\x79\xe5\xc6\x8c\x6c\xcb\x97\x5a\x7b\xfb\x94\x72\x79\x46\xf6\xd2\xca\xf5\x1e\x72\x7f\x14\xee\x40\x99\x72\x02\x7e\x5b\x44\xae\xe2\x73\xee\x12\xc6\x2c\x3d\x65\xda\xe4\xca\x69\x20\xe4\x00\x27\x1f\x15\x75\x33\x70\x0b\x8d\xe6\x6c\x2e\xd5\x62\x10\x16\xb3\x5f\x76\x56\x77\x4f\x1c\x82\x72\x51\x34\x4a\x31\x61\xaa\x45\xa4\x66\xfc\xb6\xb4\x0c\x7f\x52\x3b\xac\x64\x04\xe4\xca\x13\xfe\xd9\x8e\x2e\xc5\x3b\xf6\xcb\xa0\x11\x3e\xec\x36\xf0\x7b\x57\x25\x7f\xd0\x1a\x3f\xed\xa7\x4c\xdc\x90\x1b\xaa\x74\x2e\x0a\x43\x9e\x4a\xaf\x28\xf9\x0d\xd7\x4f\x98\x0d\x7b\xe9\x84\x16\x74\x61\xc9\xc6\xd4\x8d\x71\xec\xce\x93\x08\xf6\xa9\x96\x56\x14\x0d\xa4\x61\x49\x3d\xfb\x7a\x2f\x23\x70\x35\x35\x86\x29\xf1\x86\xfc\xbf\x83\xff\xf8\xc3\xaf\xc3\xc3\xbf\x1e\x1c\xfc\xfd\xf5\xf0\x7f\xfd\xe3\x0f\x07\xff\x31\x82\xff\xf9\xea\xf0\xaf\x87\xbf\xfa\x3f\xfe\x70\x78\x78\x70\xf0\xf7\xef\xde\xff\xed\xea\xfc\xf4\x1f\xfc\xf0\xd7\xbf\x8b\x66\x7e\x8d\x7f\xfd\x7a\xf0\x77\x76\xfa\x8f\x0d\x27\x39\x3c\xfc\xeb\xff\xc8\xf8\x12\x54\x2c\x3e\x66\xe3\x09\x38\x86\x4f\x22\xd7\x74\xe7\xce\x8c\xba\x4b\xba\x1d\x17\x66\x28\xd5\x10\x17\x79\x03\xd9\x1d\xd9\x96\xf2\xa8\xf9\x74\x34\xa6\x95\xaa\x02\x07\x0d\xea\xf7\x8e\x13\x91\xa7\xd2\xb0\xb1\xca\x6c\x46\x1f\x09\x4e\x78\x8f\x7b\xc4\x7d\xf9\xe2\x19\xd9\x64\x7c\xf9\x91\xd7\xae\xf3\xf4\x4b\xd8\x35\x79\xfe\x61\xd7\x78\x96\x2f\x31\xd7\x2f\x31\xd7\x2f\x31\xd7\xc9\x33\xed\xa8\x07\xf3\x25\xe6\xda\x8f\xe7\xe0\x8e\x78\x89\xb9\xde\x60\xbc\xb8\x25\xd6\x8e\x17\xb7\x44\x67\xfc\xc6\xdd\x12\x2f\x31\xd7\x3d\x17\x79\x89\xb9\xbe\x7f\xbc\xc4\x5c\xbf\xc4\x5c\x3f\x9b\x98\x6b\xb4\x85\xac\x8a\xbc\x76\xb6\x8c\x36\xec\xfa\x37\x18\x75\xad\x2d\xaa\x16\xec\xa8\x28\x64\x23\xcc\x95\xbc\x66\x89\x81\x69\x4b\x96\xc5\x3b\xb3\x5b\x0e\x72\x9f\xa5\xf1\xee\xc3\x3b\x69\x76\xfc\x22\xeb\xdc\xd3\xa6\xe4\x4c\xe4\x30\xe5\xe7\xa7\xeb\x1e\x36\x2f\x7d\x58\x69\x4e\x94\xac\x6c\xbf\x70\x44\xdf\x58\xa4\x19\x91\x23\xa2\x58\xc1\x6b\xee\x0a\xf5\x51\xfc\x3c\x03\x20\x40\x1f\x5c\xa3\xbb\x85\xa5\x1a\xac\x9a\x20\xd3\xa6\xa2\x6d\x80\xa7\x22\xfb\x9b\x93\x20\x96\x00\xcd\x61\x58\xb1\xaf\x84\xf2\x34\x10\xfe\x5b\xae\x19\xd1\x33\xd9\x54\x25\x51\xec\x9f\x5e\xa0\x77\x3b\x72\x15\xc3\x10\x7b\x11\xf3\x00\x13\xbd\xba\x3b\x09\x5a\x73\x7b\x9f\xd9\x6e\x55\x5e\x63\x9f\x6a\xae\x80\xee\x5c\xb2\x42\x8a\x72\x27\x4d\xfe\x77\x80\x6c\x85\x6e\x08\xc8\xc0\x5a\xac\xa1\xff\xcb\x0d\xad\x78\xc9\xcd\x22\xc4\xfb\x22\x19\xcd\x71\xed\x90\x12\x87\x5b\xa5\x5b\x8c\x22\xb4\xae\x95\xa4\xc5\x8c\xe9\x08\x5e\xd4\x74\x5d\xaf\xdd\xb4\xd6\x8f\xf1\xa8\xab\x66\xca\x05\xaa\xcb\xb0\xaa\xd5\x3c\xaa\x05\x51\xd2\xf8\xf4\x09\xf7\xd2\xcb\x20\x5f\x45\xe0\xd8\x9f\x67\x00\x06\x05\x75\xa3\x16\x90\xa5\x21\x63\x20\x70\x67\xf8\x24\xfe\x43\x13\x59\x95\x20\x6f\x50\x41\xfe\xf2\x9a\xd4\x4c\x15\x48\x96\xb2\x38\x87\x34\xf4\x7f\xb1\x70\x54\x56\x1b\xb3\xa2\xcc\xfd\xcb\xff\xcf\x6f\xc8\x4c\x36\x4a\x8f\x4e\x22\x02\xf0\x35\x7c\x96\x03\x5b\x44\xd9\x06\xc5\x1a\x52\x31\xaa\x0d\xf9\xfa\x35\x99\x73\xd1\x98\x7c\x35\xe3\x72\x69\xf2\x91\x0e\xff\xa7\x6f\x12\x67\x7b\x82\x0a\x74\x59\x28\x49\xac\xb1\xc3\xff\x07\xb5\xdd\x79\xab\xa0\x4b\x32\xa9\x25\x17\x66\x59\x89\x77\x12\x57\x4e\x6e\x05\x5e\xb2\x2d\xf3\x83\x9f\x1b\x39\x5e\x98\xf4\xa6\xe4\x6e\x9e\x6e\xf5\xf9\xff\xe3\x3e\xc4\x6d\x95\xa2\x6d\x10\x0d\x76\x36\x3d\xa3\x8a\xb9\xa6\x71\xfb\x9a\x54\x7c\xc2\xec\xed\xed\x01\xca\x96\xdb\x90\x2b\x36\xe5\xda\xa8\x7e\xae\x93\x61\x7f\xc6\x90\x2a\xed\x4e\x95\x6c\x7a\x17\xae\xcb\x75\x3d\x01\x08\x6f\x26\xf3\xce\x72\xd7\x3e\xb0\x7f\xbd\x4e\x47\xd2\xd1\xd3\x8b\x6b\xf4\x9c\xeb\xcb\xeb\x03\xbe\xd4\xde\x1b\x6e\xa5\xbf\xaa\xbe\x93\x26\x84\x61\xc3\xbd\x65\x25\x4a\xf4\xf6\xe7\x43\x88\xcd\x8d\xbc\x2d\x09\x3d\x71\x97\x9b\x91\x6f\xaf\x11\xb8\xbf\xbe\xdb\x3f\x20\x84\xa3\x4b\x44\x5d\x2d\x69\xa9\xc8\xbc\xa9\x0c\xaf\xab\xf6\xb0\x2e\xfc\x0f\x9c\xb8\xd7\xdf\x7e\xd6\x2a\x68\x34\xf2\x86\x53\x0d\xd4\xfa\x4d\x2d\x95\xc1\xa0\x9a\x83\x00\x03\x13\x06\xfa\x19\x43\x86\x25\xab\xa9\xa2\x01\x53\x0a\x39\x9f\xd3\x84\x92\xc7\x18\xa3\x41\x21\x50\x1c\x99\xb5\x15\x11\x15\xad\xda\x1d\x8a\x22\x6a\xb7\x75\xad\x0d\x13\x54\xf4\x0e\x3b\xcb\x85\x33\x08\x05\x91\xb7\x21\x4b\x7a\xca\x6f\x98\x58\xbe\xcf\x4e\xed\xfe\x96\x16\xd7\x4c\xf4\xb7\xe3\x7d\xaf\xfd\x19\x97\x0b\x41\xe7\xbc\xa0\x95\xa5\x07\x4a\xde\x70\x4b\x0e\x58\xb9\xb4\xae\x1e\x38\xf7\x27\x36\xbd\xf3\xed\x52\x51\x81\xd9\xd6\xc1\x35\x9a\xf5\x8e\x63\xce\x75\x6c\x16\x86\xa7\xe2\x79\x1a\xbd\xe2\x8a\xdf\x14\xcc\xeb\x7f\x76\xbd\x6d\xed\x37\xbe\x5f\x96\x1d\xf7\xd8\x1c\xd1\x28\x90\x24\x43\x48\x1f\xf6\xbb\xa9\x2c\xaf\x5a\x84\x1e\xf7\x4b\x77\xc1\xf5\xc3\x4d\xe3\x37\x3d\xf7\x43\x8d\x7b\x09\x99\x39\xd0\x4e\x8d\xcb\x2e\x63\xb9\xa0\xa5\xd4\xe4\x5b\xa8\x68\x7f\xc2\xc0\x5c\xf0\x38\x41\xbd\xdf\x0e\xae\x70\x1e\xb1\x4f\x74\x5e\x57\x4c\x8f\xae\xff\x02\xee\x23\x47\x3c\x5e\xa9\x71\xf9\xea\xe2\xf4\xe8\xe4\xfd\xe9\x68\xde\x87\x68\x6d\x59\x2d\xe0\x73\x3a\xed\xa7\x2c\x0e\xc9\x5c\x0a\x6e\xa4\xea\xc3\xdd\x52\xb5\x82\x89\xbe\xb2\xfb\xb6\x65\x0a\x89\x50\x78\x6d\xbd\x6d\xb8\x0c\x87\xea\x95\x73\x2f\xad\x5a\x24\x5d\xc8\x86\xdc\x52\x6c\x4c\x03\x78\xdc\x5f\x36\xbd\xe2\xf5\x1b\x72\x2a\x74\xa3\x58\xdb\xc4\x6e\x19\x04\xcb\xd2\x42\x03\x7a\xc7\xd8\xe0\xca\x60\x47\x1a\x68\x84\x80\x2d\xa2\x7b\xc3\x71\xea\xee\xc5\x1b\xb2\xc7\x3e\x99\x6f\xf6\x06\x64\xef\xd3\x44\xdb\x7f\x84\x99\xe8\xbd\x11\x39\x9b\xd7\x15\x2f\xb8\xa9\x16\xf6\x46\x31\xa5\x30\x24\x6a\xcc\xdc\x0f\x96\x02\xa5\xfb\x43\xf2\x48\x8f\xaf\x36\x52\xd1\x29\xf3\x17\xf9\xf7\x6a\xdc\x5f\xe6\x40\x87\xee\x4c\xde\x92\x52\x92\x5b\x46\x6a\xc5\x6e\x98\x30\x18\x4d\xab\x49\xd4\x6d\xda\x9d\x0e\xb4\x27\x28\xe4\xbc\x56\x72\xce\xb5\x17\x8b\xe6\xb4\x98\x71\xd1\xd7\x76\x93\xcc\x04\x81\x16\x6c\xfb\x4e\x01\x10\xc1\x7a\x0e\xe4\x1f\x3f\x4a\x6b\x24\xd0\x97\xa2\xff\x7e\x26\x6f\x87\x46\x0e\x1b\xcd\x86\xbc\xaf\x0b\x32\xf9\x64\xae\xd9\x02\x32\x81\xb6\x7c\x36\x0e\x8c\x8e\x79\xd2\x48\xf0\xc2\xc3\xe7\x56\xe3\xb9\xf8\xf6\xe4\x7b\x9d\xe2\x42\x8a\xac\x22\xaf\x98\x29\x5e\x15\xac\x9e\xbd\x72\x2b\xff\x56\xcf\xdf\x73\xda\x6d\x23\x80\x87\x03\xa5\xdb\x42\x56\x15\x2b\xbc\x4f\xeb\x98\xd5\xb3\xf0\xc0\xb3\x3e\xa8\x94\x54\x80\xc4\x04\x80\x64\x4c\xa9\xa5\xec\x1d\x95\x93\x0b\x4b\x2c\x0c\x5d\x0a\x0e\x9f\xa4\x11\xf0\x88\x2c\xa8\x71\x5e\x29\xe1\x19\x11\x82\x67\x61\xa7\xbd\xf0\x5f\x6a\x66\x40\xc6\xe4\x82\x60\x6d\xbd\xf7\x56\xe6\xdd\x05\x83\xec\x4e\xe0\x41\x8a\x3d\x18\x53\x3c\x13\xca\x69\xe4\xc2\x84\x00\x08\xb8\x31\xa2\x60\x4e\xda\x98\x19\x13\x86\x17\x18\xf5\xe0\x72\x52\x63\x11\x81\x9c\x4d\xd0\x2e\x57\x26\x84\xed\xc9\x1b\xa6\x14\x2f\x99\x26\xc9\x32\x42\xec\x8f\xe1\xd5\xb3\x46\xad\xa4\x88\xb9\x1c\x01\x6a\xa9\xe1\xc6\x39\x1d\xeb\xf9\x43\x8c\x77\x33\xb8\xf8\x73\x87\x15\x67\x08\xf2\xca\x1f\x22\xbb\x33\x96\xf3\x8e\x00\x04\x9f\x64\x13\x80\x68\x39\xe7\x09\xb5\x0a\x77\x80\x3e\xf5\x44\x1a\x5d\xd0\x8a\x9d\x7d\x4c\x36\x4f\xbb\x79\xba\xb6\xe6\x4b\xf7\x61\x6d\x2f\x89\x86\x14\x75\xef\xf6\x30\x86\x16\x33\xd7\xe2\xcf\x3b\x9c\xa5\x20\xdf\x05\xdc\x25\x42\x96\xfd\xe2\xa5\xb6\x6c\xff\x9d\x52\xc3\x6e\x7b\x6a\x3b\xc3\x96\xf9\xf7\xfd\x3d\x58\xc3\x5e\xec\xc7\x2b\x8d\xb7\xe9\x36\xe2\x90\x10\x7a\x67\xee\xa7\xb7\x0a\x8f\xee\xb1\x07\xe7\xa0\x7f\x30\xe3\x56\x7c\x63\x76\xb8\x2b\x93\x05\x79\xdc\x5c\x1e\x05\xe0\x14\x68\x59\x2a\xa6\xb5\x97\x58\x3c\x59\x3a\x3a\x3f\x23\x7f\xc3\xc7\xb7\xf6\xea\xb5\x92\x06\x2d\x3e\x27\x72\x4e\x79\xef\xb4\x93\xce\x1e\x2c\x4f\xea\x37\x23\x56\x26\xfc\x26\x9c\x87\x67\x89\x7b\xd8\x2a\x14\x6d\xc3\xd1\x46\xb1\x92\x38\xcb\xfe\xd6\x76\x69\xe7\x94\xf4\x3b\x6a\x33\x39\xb0\xdf\xbd\x82\x66\xc8\x87\xa3\x56\x61\x5f\xd2\xe6\xfb\x9b\xb1\x9e\xd0\x0a\xf0\x45\xea\xce\x51\x70\x80\x2f\x4a\xd3\xea\xcb\x1e\xf9\x41\x88\x0c\xc9\x23\x09\xab\x0a\xcd\x21\xa2\x38\xca\xe9\x02\x65\x1c\x6a\x12\x84\xba\x33\xa8\x98\x0f\xc8\x3b\x39\xe5\xc2\xf3\x06\xe9\x62\xfa\x27\xb4\xbf\x86\xfc\xa2\xa2\xde\x19\x2f\x2a\xea\x6f\x48\x45\xd5\xba\x3a\x15\x74\x5c\xf5\xcf\x46\xec\x2a\x33\x61\x3a\xf2\xb6\xa2\x53\xc2\xe0\x8f\x57\x25\xd7\xf6\x5f\x72\x79\xf9\x0e\xa2\x1d\x1b\xe1\x4d\x71\x10\x1c\xe7\x44\x89\x50\x9f\x12\x19\xc3\xf6\x68\x32\xf2\xec\xf7\x09\x05\x5f\xb2\x51\xe5\x16\x14\xc2\x45\x09\xcd\xdc\x75\x27\x09\xd9\x3d\x01\xc4\x99\x86\x22\x5a\x98\xc7\x37\x66\xe4\x6a\xc6\x8b\xeb\xf3\x28\xe0\x50\x2a\xfb\x99\x88\x3e\xca\x22\x06\x67\x9a\x33\xf9\x8e\xb8\xed\x38\xcf\xe5\x7a\x8a\xe6\xf3\xb2\xa0\x67\x81\x97\x6e\xe7\xe1\x3b\xaa\xb5\x2c\x78\x1b\xd3\x0b\x3e\xe9\x56\x40\x2c\x41\x40\xdc\xde\xae\x80\x0a\x95\x67\x43\x50\x73\x5b\x21\x17\x7b\x4c\x74\x4f\x50\x1d\xcb\xc1\x5c\xf8\x7d\xdb\xda\x26\xe0\xdd\x48\x29\x69\x9c\xeb\x56\xb7\x90\x2c\xef\x63\xb8\xc1\xcb\x31\x99\xbe\xe4\x9e\xc3\xbd\xde\xc6\x0a\x1c\x10\xa4\xc5\xf5\x0a\xac\xe5\x3a\xd0\x10\xa8\x96\xba\x95\xd3\xea\x5f\xa1\x34\xc7\x09\x39\x69\xb7\x9b\x54\x80\x9f\xb9\xe8\x4e\x20\xae\xb5\xac\x9b\x0a\x53\x37\xc3\xa6\x65\x8b\xf0\x7c\x4c\xb0\x18\xc2\xf6\xf9\xcd\x7d\xa9\x72\x6f\x54\xca\x6a\xdb\x17\x32\xae\xaa\xf5\xf8\xf2\x69\xfe\x8e\x82\x61\x8b\x8c\x17\x7e\xba\x0c\xc6\xb2\xed\x57\x4f\xcb\x55\x2d\xad\xbf\x61\xb2\x53\x65\xad\x63\x3f\x78\xfd\xa7\x6f\xbe\x49\x90\x5e\xb8\x62\x85\x91\x90\x95\xe3\x2a\x57\x86\x48\x32\xaa\x18\x68\x9e\x58\xda\xcc\x9b\x26\x31\x2b\xc3\x24\x39\x76\xb7\x57\x5e\x6d\x2b\xe5\xd4\x72\x24\x5d\xa7\x97\x4b\x4b\x8a\x84\xca\x16\x4d\x0a\xa5\x98\xcf\xb6\x5c\x8a\x79\xab\x05\x98\xb7\x59\x76\x79\x7b\xc5\x96\xb7\x58\x62\x79\xdb\x85\x95\xb7\x52\x4e\x79\xeb\x91\x93\x9f\xbf\x60\x72\x96\xda\x54\x39\xea\x52\xa5\x96\x44\x4e\xac\x69\x95\xa7\x9e\x55\x72\xd1\xe3\xcf\x51\xea\x38\x53\x59\xa3\xf4\xb2\xc6\x79\xeb\x8e\x6c\xbb\x84\xf1\x0e\x89\xde\x38\x76\xb3\x5c\xf1\x56\x8a\x14\x6f\xbb\x34\xf1\x16\x0b\x12\xe7\x2b\x5e\x94\xab\xf8\x70\x7a\xd1\xa2\xbc\x84\x63\x4b\xe5\x85\x9f\xb0\xa8\xf0\x67\x29\x25\xfc\xd4\x05\x84\x93\xd9\x54\x6a\x7d\xd7\xe4\xaa\xae\x3a\x53\x59\xd7\x5c\xc1\x02\xbb\x60\xc1\x6e\x21\x59\xe9\x09\xf0\x0d\xa1\x7c\x17\xfa\x7d\x1d\xf5\x98\x37\xd2\x32\x83\xad\xe5\xd6\xf6\x36\x97\x92\x64\xb3\x36\x42\x22\x7b\xc9\xa6\xab\xbc\x52\x1f\x2f\x97\xa2\x46\xc3\xc7\xbb\x1f\x2c\xfa\x12\x35\xb9\xc9\xd8\xc5\xa8\xc9\xcf\x95\x45\xff\xe5\xc5\xbe\x95\x2f\xb1\x6f\xf1\xd8\xc1\xd8\x37\xdd\x69\xab\xea\xbd\x7e\xc0\xb0\x40\x7f\x92\x63\x2b\x89\xf9\x1a\x09\x2d\xbd\x3d\x3a\x3f\xeb\xbd\x7a\xa1\x18\x94\x3f\xa6\x95\x1e\xad\x52\xac\x7c\x50\x8c\x53\xe3\xbc\x42\x45\x8d\x61\xf3\x3a\xa1\x7f\xf2\x4b\xe8\xdb\x9d\xf1\x12\xfa\xf6\x1b\x0a\x7d\xdb\xe5\x78\x90\x59\x33\xa7\x62\x68\x99\x03\xc4\xcd\x75\xc2\xcf\x97\x84\xbc\x11\x71\xe4\x3c\xe9\x06\x62\x61\x42\x28\x57\xd9\x08\xfe\x73\xc3\x5a\xdb\x74\x90\xdc\x77\x20\x72\x07\xe0\xd8\x9d\xe3\x42\x85\x66\x89\x69\x14\xf2\x4e\xc1\x25\xb7\x97\xe1\xe8\x3c\x9d\x4f\x3b\x32\x58\xbc\xe3\x4a\x32\x33\x86\x3a\xd7\xf9\x92\xce\xd5\xb1\xc2\x39\x43\x1a\xad\x2a\x79\x9b\xe6\xcf\x8b\xf5\x08\x8b\xa2\xf6\xdd\x5d\x5d\xf3\x31\x23\x73\xae\x94\x54\x2e\xb6\x28\x7e\x7d\x4c\x94\xe0\xd3\x99\x61\x0a\x6d\x5a\x18\xce\xdd\x9f\xd4\x5e\x32\xe3\x6e\x01\xdc\x22\x23\x09\x15\x58\xb6\xce\xfe\xbf\xcf\xcb\x86\xad\xf1\xec\x74\xcc\x66\xf4\x86\xcb\x26\xa1\x3c\xcc\x25\x0a\x07\x7b\x6e\x4a\x10\x7c\x17\xb2\x09\xd1\x03\x0d\x54\x53\x0a\xa7\xa0\xef\xe2\x41\xef\xa5\x3f\xb4\x93\x82\xa1\xb3\x94\xde\x7d\x38\x64\x9f\xb8\x36\x77\xf7\xdc\xa3\x80\x8b\x56\xd9\xca\x65\xbe\xd1\xb5\x15\x6d\x7f\xe8\x5d\xe1\xb0\x5b\xdd\x30\x9e\xad\xab\x09\xdf\x5c\xc2\x57\x0f\xe9\xc1\xae\xb6\x3f\x96\x6d\x4d\x28\x79\xb5\xe5\xc4\x49\x7c\xcb\xf3\x7e\x8e\xb3\x2f\x4d\x11\x7f\x51\xc2\x77\x4a\x09\x0f\x01\xd4\x15\x2f\x16\x67\x27\x79\x83\xb2\x71\x4e\x2f\x34\xe9\x10\x90\x6d\x3f\x27\xdf\x52\xcd\x4a\xf2\x9e\x0a\x3a\x45\x73\xf9\xc1\xe5\xf9\xb7\xef\x0f\x2d\xc2\x83\x2b\xe0\xec\x64\x65\xd4\xf6\x65\x3c\xf9\x87\x6d\x15\x3e\x25\xcb\x5b\x97\x4d\x4e\xbd\x33\x6b\xcf\xed\xdb\x5a\x4d\x58\x12\x44\xb0\xf3\x04\x17\xd4\x8a\x3a\xb9\xe7\xcb\xed\x2e\x30\x4c\xda\xf7\x26\xd2\xcb\x5c\xe5\x66\x5e\x5e\x3f\xe5\x06\x44\x2e\xee\x75\x6f\xb9\x59\xb8\xcb\x06\x21\x2d\x9d\x2d\xb9\x34\x8a\x1a\x36\x5d\x9c\xb0\xba\x92\x0b\x8b\x00\xe7\x91\xc7\x1d\x1f\x1d\xa3\x44\xa5\xc6\xb4\x20\xaa\xa9\xa0\x9a\x70\x79\xa7\x97\x8e\x60\xac\x6c\x29\x24\x17\xda\xd0\xaa\xb2\xef\x0e\xf3\xaf\x85\x68\x63\xbe\xba\x29\x07\x1d\x22\x9c\x0f\x3e\xd5\xed\x25\x67\x6f\xc9\xda\x9f\x6c\xce\x43\x61\xf9\x87\x71\xf6\x31\x21\x4c\x1b\x07\x2b\xf5\xe1\xb5\x48\x0c\x2e\x9a\xca\xf2\xb6\xaa\xec\xf6\xde\x43\xc9\xd3\xa1\x02\xd6\x3b\x06\xd2\x61\x5f\x72\x40\xc6\x8d\x15\x4b\x99\xee\xf8\x30\xa3\x9f\x6f\xb4\x3e\xb6\xf7\xbb\x9d\x61\xc0\x9e\x9d\x98\xd0\xba\xae\x38\x26\xa7\x4a\xe5\xa2\xe7\x22\xef\xd2\xdd\xc7\x36\xa1\x52\x8f\x94\xe0\x1e\x27\xb1\x0d\xc9\x0d\x53\xe3\x4d\x4c\x36\x8f\x15\xc6\x68\xcd\x21\x0e\x61\x63\xd9\xad\xaf\xbc\x75\x74\x7e\x86\x0b\xad\xf2\xf7\xf9\x2f\x11\x21\xdc\x51\x7b\x4f\x3c\xe6\x91\x38\xd3\x66\x68\x87\x70\x74\x7e\x86\x5d\x46\x5c\x47\x84\xd6\xdc\x69\x15\x37\x8a\x59\x53\x6d\xc3\x32\x3a\xb5\x33\x1a\x22\x05\x7b\x4c\xeb\x2b\x0b\x01\x13\xcd\x9c\x61\xb7\x85\x00\x0c\xe1\x02\xd6\x09\x50\xb4\x56\x55\xab\x14\x5b\x1d\x79\x6f\x2f\xd6\x28\x30\xab\x5f\x45\x70\x03\xa9\xdb\xfb\xaa\xf3\x94\xa5\x6b\xed\x8b\x6d\xca\x1c\x1f\x1f\xae\xf8\xc8\xf0\xc4\x47\x73\x5b\x21\xc5\x85\xdb\xaa\xef\x2f\xde\x3d\x39\x6e\x7d\xe8\x2e\xe7\xca\xd5\x33\x68\x29\x55\x53\x65\x38\xad\x48\xa3\x2a\x1f\xd2\x83\xb9\xe7\x2e\x0b\x67\x46\x6f\xa2\x56\x00\x23\x42\xbe\x42\x84\x72\xe7\x88\x54\x08\xcc\x5a\xae\x35\xc6\xa4\xa9\xaa\x01\x99\x70\x41\x2d\x0f\x62\x35\x89\x02\x2b\x36\x86\xf8\x92\x8b\xc2\xaa\xf8\x62\xe8\x51\x8a\x00\xe4\x5e\xf1\x0f\xe4\x08\xe2\xa2\x40\x29\x61\x55\x09\xed\xd4\x00\x14\x4b\x9a\x0a\xb0\xec\x4d\xa4\x22\xc7\x55\xa3\x0d\x53\x17\xd2\x72\xd0\x36\xc4\x1b\x0b\x33\xd3\xf8\xeb\x6f\xb9\x28\x1f\x95\x7d\x70\x01\x5c\xb9\xa0\x82\x30\x0e\x96\x5e\xbb\x34\xc4\x20\x5a\x3c\x6d\xef\xc3\x81\x6e\x8a\x99\xdd\xa2\xbd\x5a\x96\x7a\xcf\x12\xd6\x3d\xf4\x7e\xe8\xbd\x43\xfb\xd7\xf2\xbb\x62\xc4\x74\xf4\xbb\x57\xb4\xe6\x7b\x87\x03\x02\x1b\x0e\x01\x31\x72\xf3\x08\x98\xdd\xbb\x02\xfe\x5d\xc1\xce\xd2\xeb\x02\x5c\xc4\x33\x00\x4e\x8b\x36\xfc\xe4\x76\xc6\x0d\x86\xb7\x5b\x24\x47\x03\x6c\xa8\x9c\xbe\xcc\xbe\x08\x39\x12\x84\xcd\x6b\x03\x3e\x3c\x32\x67\xd4\x87\xb7\xb1\x1b\xa6\x16\x66\xe6\xea\x20\x7b\xda\xf5\xec\x37\x3d\x6d\xc3\x1d\x01\xf1\x9b\xdb\x22\x39\xdc\xc4\x3b\x9b\xbb\xff\xd5\xfe\x32\x0d\x6f\x99\xd6\xb3\xdd\x4a\x10\x38\x7a\x6d\xe3\x0f\xf6\x97\xdd\x2d\xc4\x8f\x90\xfa\x06\xfa\xf1\xee\x9d\x73\x2f\xe3\x5e\x7d\xc7\x45\xa9\x3d\xef\xf7\x09\xab\x6e\xbf\x57\x6e\x32\x40\xf8\x1c\x37\xf8\xae\x6e\xb0\xa9\x3c\xbf\x66\x7a\xaf\x0e\xdd\x37\xd5\xda\x09\x9c\x4e\xf5\x5e\x96\xab\xaf\x4e\xe7\x7c\xcf\xa2\x87\x43\x00\x5c\x6b\xc8\x72\x73\x39\x01\x7f\x51\xaf\x54\x96\xd6\x1f\xc7\x9a\xad\xbf\x0f\x92\xd6\x12\x03\x74\x32\xfa\x06\xcc\x7a\xd8\x22\x99\x4c\x2a\x3a\x6d\xd1\x08\xa8\x1e\x0a\xa0\xc7\x97\x3f\xf8\x57\xd0\xe4\x9e\x72\x80\x0f\x4a\xf8\x0f\xc9\xf4\xc3\x76\x97\xee\x7d\xc2\x2e\xb2\xf2\xcb\x87\x05\xfb\x30\xf9\xfd\xd8\xb4\x49\xc8\x85\x59\x6b\x8c\xbd\x6f\xff\xbd\xf1\x94\x46\x98\xe0\x1b\x87\x78\x8d\x1d\xa2\x99\x41\x5e\xb9\xfc\xa1\x83\x26\x0f\xc0\x7b\x0f\xd2\x5e\xb3\xc5\xad\x54\xab\x5b\x28\x77\xc0\x3c\x0a\x74\xc8\xff\xc4\xeb\x9c\x3e\x0e\x03\x0d\xae\x72\xa5\x27\xa7\x37\xaa\xae\x05\xbe\xa2\x63\x56\x3d\x0c\xfa\x3d\x42\xf0\x7b\x5a\xdb\xd7\x69\x53\x82\xd0\x70\xe2\x02\x3c\x50\x89\xc2\x38\x72\x9f\xf1\x20\xd5\x94\x0a\xfe\x0b\xe6\x51\x15\x96\x52\x48\xc5\x7f\x59\x8d\x6a\x07\xe8\x81\x44\x53\x4c\xc5\x0a\x73\xe8\xb0\x7e\x25\xb5\x7d\xe0\x5a\xd0\xb2\xe4\x28\xb3\x9c\x3f\x80\xc1\xeb\xf7\x8b\x8b\xeb\xc7\x9c\x34\x3c\x8f\x61\xdc\xb8\x01\x4f\x7c\xcc\x6b\xc8\xc2\xc3\x37\x77\x7d\x04\xcb\x06\x9c\xa5\x51\x6b\xa2\x9b\xd7\xfe\x7e\x4e\x39\x32\xdc\xd5\xfd\x18\xee\xd9\x5d\x87\x4d\xd4\x09\xa3\x96\x96\xda\xf7\x0b\xb3\x7d\x86\x7b\x95\xb4\xe1\x6c\x4e\x79\xdf\x1d\xc3\x91\x70\x64\x73\x6a\x1a\xc5\xcd\x4a\x4e\xbd\xfe\x87\x5c\x7c\xd7\x8c\x99\x8b\xac\x79\xf4\xcf\x05\x64\x34\x1c\x9d\x9f\xad\xdc\x96\x3c\x1c\xf9\x5e\xa5\x1d\xcc\x3b\x0e\x72\x2b\xe9\x91\x46\xd0\xf9\x98\x4f\x1b\xd9\xe8\x6a\x11\xdb\xc8\x29\x44\x0c\x8d\x08\x39\x43\xeb\x9f\xd8\x37\x84\x0a\x29\x16\x73\xf7\xa8\x28\xaa\xa6\x64\x9d\x19\xef\x63\x65\x92\xd0\x1b\xc9\x4b\x42\x1b\x23\xe7\xd4\xf0\x82\x14\x92\xa9\x02\x4a\xc4\xc5\xf3\x37\x9a\x11\xda\x99\xb1\xfd\x6d\xd1\x68\x23\xe7\x64\x4e\x95\x9e\xd1\xaa\xba\x0f\x25\x32\x48\x07\xeb\x9a\xe6\x0e\x61\x57\xee\xfd\xf2\x66\xcd\x3e\x3c\x7c\x1d\x1e\x68\x4b\xbc\xc1\x75\xb0\xc0\x25\x4d\x70\x73\x3f\x52\x6f\x30\x87\xab\xef\xb7\xb2\x56\x76\x07\x3f\xaf\x66\x8c\xd4\xcd\xb8\xe2\x1a\x74\x5e\x20\x5c\x0b\x32\x66\x33\xee\xb2\xb0\x1e\xa6\x58\xf7\x1e\xf1\x43\xfb\xbc\x8e\x64\x3c\xb8\x43\x6b\x28\xfc\xda\xdf\x3a\x0e\x78\x36\xa7\xd3\x0d\x44\xfb\x7b\xae\xef\x3b\x4b\xf6\xa9\x58\x04\x7e\x0a\x4d\xac\xf4\x80\x48\xe5\xe2\xff\xbc\xda\xa6\xdc\x57\xa1\x43\x9c\x22\x1f\xdd\x8e\xba\xbc\x3b\x77\x0d\x20\x8b\x95\xa9\x89\x54\x73\xbb\xef\x5c\x91\x49\x23\xc0\x68\x7b\x8f\x4a\x07\x11\x47\xc0\x7f\x9c\xe1\x8e\x56\x5a\x06\x62\x00\xc7\x26\x3c\x60\x84\x6a\x72\xcb\xaa\x6a\x44\x8e\xaa\xca\x75\xdc\x8a\x8a\x52\xb6\xc5\xcd\xda\xc0\xa7\xf1\x6a\xb5\xb0\xe4\x53\xa6\x0d\x39\xb8\xfc\xf7\xa3\x43\x10\x88\xc0\x30\xb5\x20\x86\x4e\x47\x08\x52\xd7\x30\x07\xe2\x56\xd9\x80\x58\x56\x50\x43\x2b\x39\xc5\x78\x19\x4b\x52\xec\xef\xeb\x8a\x2e\xa0\x43\x76\x4d\x15\x24\xb8\x14\x68\x9c\x23\xaa\x11\xf7\xb5\x78\x7c\x3a\x4e\xf9\x30\x4d\x5a\xd7\x52\x71\x08\x28\xdd\x93\xe6\x3c\xd0\x9f\xed\x69\x59\xb0\x62\x75\x45\xef\x31\x13\xdd\xa1\x17\x6d\x69\x2d\xab\xb7\x80\x4d\x42\x0a\x16\xe6\x18\x91\x4b\xc4\xa7\x39\x35\x05\x46\x00\xfc\x34\x67\x86\x96\xd4\xd0\x91\x55\xee\x7f\xea\x96\xe0\x90\x55\x69\x27\xba\xff\xa0\xef\x81\x19\x45\x71\xf9\x30\x8d\x7b\x67\x55\x8b\xf0\x38\x28\x5c\xfe\xde\xae\xb5\x4b\x25\x92\x37\x78\xfd\xd3\x4f\x56\xb7\x5e\xeb\x71\xee\xc0\xba\xfc\xa3\xae\xd9\xa8\xea\xbe\x89\xc3\xd6\x39\x13\x46\x8f\xe0\x68\xe2\x4f\xc0\x76\x7e\xf4\xe1\xe4\x7e\xfb\xe5\xc3\x36\xa0\x07\x6c\x3e\x9b\xfb\x27\x8e\xd6\xc0\xee\xdd\x13\xee\x9b\xae\xcb\xcb\x27\x62\x43\x99\x0f\x4c\x0e\xa6\x22\x70\x25\x78\x78\xcd\xb2\x78\xce\x6d\xa9\x80\x56\x29\xbc\xdf\x4e\xb6\x91\xe3\x72\x13\x77\xe5\x43\x95\x1b\x86\xe1\x35\xee\x7d\x68\x33\xef\xe5\x83\xd5\x15\xee\xab\x9e\x80\x67\x02\x69\xbb\xde\x54\x1e\x8e\x61\x53\x6f\xef\x86\x76\x3e\xff\xaa\x8f\x00\xf4\x41\x87\x57\xc0\x82\x4e\xa4\xe2\x35\x5b\xec\x3b\x4d\xd7\xde\xa0\x19\xaf\xb1\x3e\x88\xf3\x7f\x3d\x74\xfc\x38\x7e\xa0\x15\x2f\xc3\x02\x78\x97\xce\xc4\x80\x7c\x90\xc6\xfe\x73\xfa\x89\x6b\x83\x36\x86\x13\xc9\xf4\x07\x69\xe0\x93\x2c\x3b\x85\x00\xe6\xdc\x27\x67\x06\x41\x8f\x09\x5c\xf7\xc8\x58\xe2\xf6\x03\x2b\x44\xb7\xf2\x9e\x7d\xfa\x4c\x58\x81\x06\x5f\xf9\x81\x25\x42\xd1\x21\xed\x16\xf0\x19\xbe\x42\x8a\x21\x78\x5a\x56\xae\xe0\xf6\x51\xaa\xce\x36\xf6\x5e\xcc\x2d\x84\xc1\xd8\xf0\x0d\xd7\x9e\x2f\x05\x31\x84\x7a\xd3\xf0\x83\x59\x0e\x73\xa6\xa6\xe0\xc7\x2c\x1e\xf0\xbb\x6d\x6a\x4c\xdf\xc8\x84\xfe\x20\x9a\x00\x8f\x78\x77\xaf\xbd\x8c\x3c\x02\x3f\xa2\xa9\x90\x0a\xcf\xd1\x90\xf6\x5f\x96\xd8\xc2\x16\xff\x37\x14\xd0\xd2\x23\x72\x44\x34\x17\xd3\x8a\x75\xbe\x73\xae\xde\x68\x9a\x35\x4b\xd5\x76\x09\x4b\x37\x6f\x68\xc5\xb0\x4d\x32\x15\x21\xf5\x5e\x4e\xee\x30\xbf\x81\x2b\x94\x65\x09\x54\x10\x2b\xf7\xae\xd9\x62\x6f\xb0\x36\xc8\x3e\xc6\xb0\xbd\x33\xb1\xd7\xd6\x94\xe8\x60\x4d\xe0\x31\x20\xa9\xee\xc1\x77\x7b\xfd\xf9\xe8\x5a\x8e\xb1\xb9\xd5\x8f\x3c\x8c\x02\x8f\xcb\xdc\xd1\xd7\x7c\x75\x34\xcb\x26\x48\xe2\xe5\xbd\x03\x7d\x08\x76\x2e\xc1\x08\x14\x3d\x51\xe0\x22\xb0\x9f\xc6\x15\x3c\xad\x06\x71\xcd\xeb\xba\x2d\xaf\xda\xd4\x53\x45\x4b\x46\xa6\x8a\xd6\xf7\x5c\xa2\xc7\x49\x8b\x28\x72\xae\x5a\x72\x8d\x9a\xb4\xfb\x3a\xc9\x3d\x67\xbd\xc6\x0a\xb0\xf6\x77\xb7\x6c\x3c\x93\xf2\x1a\xca\x2b\x00\xde\x3d\xa1\x89\xeb\x47\x5c\xeb\xa4\xfd\xcc\x9b\x1f\x34\x29\x99\xa1\xbc\x82\xc8\xb2\x8f\xef\xde\xbb\xd8\x33\x2f\x3b\x79\x28\x57\xd3\x8c\x0c\xba\x1a\x2d\x5d\x78\xe5\x05\xbb\xe1\xec\xd6\x59\xb2\xee\x23\x51\x43\x32\x65\x02\xe2\x9a\xd6\x44\x27\x0e\x89\xe6\x25\x3b\x85\x22\x38\xf7\x4f\x94\xe0\xb4\xba\x07\xe6\x87\x68\xc5\x7a\xde\xf3\x20\xdf\xd9\x40\x34\x09\x16\x8d\x73\xa9\xd6\x54\x12\xde\xac\xac\xce\x66\x25\x73\x5c\x16\xd0\x1b\xf2\xcd\x37\xff\xb2\x86\xaf\x7c\xe2\xf3\x66\xfe\x86\xfc\xe9\x8f\x7f\xfc\x97\x3f\xde\xff\x18\x17\xf8\xd8\xd7\xf7\xbf\x9f\xbb\x6d\xc7\x17\x27\x3b\xb0\xdf\x65\x08\x13\x5e\xef\x10\xdf\x60\xaa\x09\xe5\x55\xa3\x5c\x80\xfa\x86\xda\xdc\xdb\xf8\x37\xe0\xcc\x6c\x93\xf2\xa8\x9f\xd1\x87\xa7\xba\xb0\xd5\x09\x17\x4c\x43\xa3\xfc\x46\x28\x56\xc8\xa9\xe0\xbf\xb0\xd2\xf7\xc9\x87\xe0\x2b\xe8\x1d\xea\x51\x9c\x30\x51\xd6\x92\x0b\x03\x2c\x76\x46\x45\x59\xad\x0b\xb6\xd9\xe0\x4d\xe3\x1b\x9c\xb4\x65\xc0\x8d\x1e\xb5\x61\xef\xdb\x5f\x2c\x6d\x97\x7d\x67\xef\xfa\x45\x2e\x87\xdb\x96\xf4\xa6\x48\x18\x2f\xd7\xd8\x40\x56\xc0\xf8\x38\x15\x1d\x4d\x0f\xf0\xd9\xcf\x0d\x53\x0b\xc8\xfa\x6b\x15\xa9\x28\x10\xf5\xaa\x2d\xd7\xe5\xdf\xd1\x09\x95\xf4\x5e\x1b\x3d\x59\x61\x22\x89\x44\xad\x36\x42\x6b\x09\x2a\xf8\x0d\xc3\x88\x17\xef\x85\x25\x47\x44\x34\x55\xb5\x66\xa5\x7b\x26\x11\x72\x9d\x27\x17\xc7\x46\xf6\x80\xcd\x14\xf5\x4d\x4d\x42\x38\xb6\x67\x18\x8a\x5f\x3c\x93\x56\xf3\xd8\x50\xd6\x2d\x19\x8c\x70\xf4\x31\x1b\xe1\x78\x44\xd4\xfb\xe6\x11\xef\x9b\x95\x00\xdd\xc0\x9c\x84\xe3\x31\x21\xf1\x1b\x16\xee\x7c\x4a\x03\x13\x8e\x47\xc5\xeb\x6d\x66\x6c\x5a\x01\xfa\x86\x31\xd6\x4f\x68\x78\xc2\xf1\x14\xe6\x27\x1c\x8f\xda\xc7\x4d\x4c\x51\x38\xfa\xec\xe2\x67\x30\x4b\xb9\x77\xfe\x9c\xc6\xa9\x07\x96\xcc\x6c\xa2\xc2\xb1\xb1\xa1\xca\x01\xf7\xa8\xd8\xcf\x47\xc4\x7d\x6e\x88\x5c\x1b\x18\xb0\x70\x3c\x0e\xab\x3e\xa3\x31\xcb\x2f\xf8\xd9\x4c\x5a\x38\x3e\xb7\x61\x0b\xc7\xc6\x3c\xed\x71\x46\xae\x78\xf2\x07\x50\xa6\x4f\xa9\x1a\xc5\xb8\xb8\x91\xd8\x14\xed\x51\x82\xfc\xc5\x9d\x1f\x2e\xc9\xf3\xb7\xc0\xca\x9c\x40\x1f\x34\xa0\x58\xaf\x99\x49\x79\x4d\x1a\xfd\xb0\x97\x69\xed\x7b\x3f\x90\xd9\x98\x45\x11\x7d\xcc\x0d\xbb\x68\x2a\xf6\x23\x37\xb3\x8f\xbe\x59\xa4\xbb\x66\xa6\xa9\x2b\xd8\x8b\xe8\x0b\x8b\x97\x17\xad\x82\x70\x66\x90\xcc\x15\x72\x3e\x67\xa2\xc4\x08\xc4\x39\xbd\x5e\x8f\xf0\xda\xaa\x98\x18\x24\x5f\x55\xa8\x46\xc1\x52\xec\x53\x4d\x45\xab\x30\xdc\x58\x66\xb9\x0e\x85\x37\x44\xe0\x4d\xe5\xa2\x8d\x53\x04\x1f\x2d\xf3\x2e\xa7\x04\x46\x39\x7d\x9d\xd4\x3f\x32\x66\x95\x84\xaa\x30\x98\x08\x80\xa9\x2a\x1b\x67\xc9\x9d\x4d\xfc\xaf\x9c\xf4\xe2\x7a\x43\x30\x31\x6d\x8b\xfb\xea\x8a\x17\x2c\xb0\x2d\x29\x36\x48\x4d\xbf\x70\x12\xed\x66\x42\xf2\x26\xfc\x67\x43\xde\xf3\x08\xa1\xa6\x43\x4a\xac\xfa\xb4\x79\xd9\xab\xb6\x88\xd7\x53\x9c\xbc\x9f\x3a\x3e\xfb\x1b\xff\xd9\x26\xa7\xef\x1f\x7e\x39\xff\x75\x23\xe1\xfc\x43\x93\xdc\xec\xc7\xdf\xa5\xa8\xad\x1c\x1a\xce\x7e\x89\xb5\x14\x54\x59\x66\x0f\xd6\xf4\x21\x39\xbe\x38\x3d\xba\x3a\x1d\x90\xef\xcf\x4f\xe0\xdf\x93\xd3\x77\xa7\xf6\xdf\xe3\x8f\x1f\x3e\x9c\x1e\x5f\x59\x01\xf6\xab\x07\x41\x80\x6e\x97\x55\x85\xa7\x6f\x25\x14\xd9\x25\xe6\x54\x2c\xc8\xa4\x31\x96\x22\xb7\xc0\x74\xa0\xa4\x68\xc6\xa3\x65\xb9\x49\xc6\xdc\x17\x87\x83\x9d\x33\x0f\x07\xba\x6c\x39\x8d\x5b\x2d\x63\x83\x51\x97\x92\xfd\xf0\x9b\x7d\x1e\x24\xdf\x38\x63\xf0\xb1\x38\xde\x2f\x99\xf0\x77\xbf\x7b\x70\xe2\xb7\x52\x11\xf6\x89\xce\xeb\x6a\x83\xb4\xb1\xfd\x5a\x96\x7a\xdf\x65\x7c\xda\xff\x7f\x78\xdf\xe1\x27\xaf\x2a\x39\xdd\x0f\x89\xa2\x8c\x54\x72\x4a\x74\x33\x0e\x09\xbc\x20\x09\x6e\x34\xdb\x57\x7e\x9a\x4e\x5e\xe4\x20\x64\xf9\x46\xb3\x6e\x0c\x5c\x67\xce\x78\x82\xc7\xc0\xf5\x4a\x17\xb4\x62\x9d\x99\xec\x07\x8f\x05\xe8\xab\x57\xab\xdf\xd0\xab\x2a\x5c\x2d\xcd\xf8\xf0\x09\x9f\x4d\xc8\x2d\xaf\xca\x82\xaa\xf2\x0e\xc1\x00\xe1\x0f\xef\x13\xe0\x0e\xb6\x63\x12\x20\x3a\xb6\x6b\x63\x31\xb7\x87\xed\x46\x37\x4c\x55\xb4\xc6\xec\x38\xe8\x23\x06\xd1\xbc\x9b\xc0\x78\xc2\x6a\x06\xa9\xe4\xd8\x3b\x85\x11\x26\x8a\x4a\x42\xb9\x3a\x14\x3c\x07\xdd\x83\xc1\xe0\x5f\xdf\xe7\x60\xd3\x3c\xe3\x2f\x9c\xc3\x42\x9e\x55\x6e\xc2\x83\xc9\x5b\xf7\x96\x94\xf4\x19\xb5\x0f\xce\x83\x36\xb9\xa0\x68\x33\xb2\xe7\xea\x08\xec\x0d\xc8\x5e\xa8\x1e\x58\x3a\xa5\x7c\xef\xab\xbd\x07\x67\x0c\x13\xc4\x19\xe8\xa0\xb3\xbb\x80\x83\x21\xc0\x19\x97\xd9\x00\xf4\xf6\xa1\x12\x1b\x83\xde\x56\xd6\xb4\x52\xa5\xf3\x78\xc0\x3b\x74\x17\x7a\x78\xa6\xf8\x45\xef\x40\xdd\x16\x69\x48\x86\x78\xef\xab\xce\xf4\x06\xaa\x44\x61\x31\x08\x77\x78\x8a\x59\x6c\x5c\x17\x21\x1f\x8f\xcb\xce\xdd\x0b\xa1\x26\x71\x69\x51\xae\x48\x4d\x15\x13\x26\x00\xff\xf0\xb4\x51\xbf\xee\xbd\xaf\xf6\x36\xbb\x95\x6b\x2f\x51\x14\x5d\xb0\xa1\xb9\xe2\x32\xfc\xe2\xb8\xa2\x5a\xaf\xf0\x3b\x02\x17\xb0\x13\x13\x86\x33\x13\xea\x43\x2f\xa0\x83\xdc\x8c\xde\xac\x79\xd5\x0d\x80\x36\x54\x4d\x99\x59\x1f\x17\x40\xc5\xe2\xe3\xda\xb2\xe4\xc3\x8d\x3b\xf2\x0c\x7b\x18\x8d\xb8\x30\x43\xa9\x86\xf8\x93\x37\xc4\xa8\xe6\x3e\xd3\x83\xe1\x73\x26\x1b\x73\xc9\x0a\x29\x56\xe7\xd2\xba\xe7\xb2\x05\x3a\x3c\x22\xc1\xd8\xc5\xda\x1c\x79\x09\x3c\xee\x95\xe0\x2d\x52\xad\x78\xee\xe3\x6b\xba\x55\x15\x3f\xbe\x7b\x9f\x72\xd8\x04\xea\xff\xac\x3f\xc9\x1f\x1c\x53\x16\xd3\x00\xa9\x83\x7c\xed\xcf\xde\x37\xe6\xf1\x3f\x3a\x0e\x71\x1b\xeb\x9f\x76\x9b\xb1\xbe\xc2\xdd\xbd\xef\xaf\x0d\x35\xcd\x1d\x6c\x78\x88\x15\x39\xfa\x7e\x89\xf5\x0d\x9c\x86\x7f\x09\x53\xc5\xae\xa3\xb8\x02\x18\x2a\x75\x58\x3d\x10\x9e\xf3\x89\x16\x23\xe2\x7e\x68\xaf\xac\x51\x94\xa3\x45\x8c\x16\xa6\xa1\x77\x3d\xdf\xf6\xc7\x2e\x49\x63\x75\xc9\xcc\x35\x36\xb1\x75\x76\xb0\x82\x29\xa3\xdf\x51\x6d\xbe\xaf\x4b\x7a\x4f\x6a\xfd\x52\xf2\x85\x36\x70\xa7\x50\xad\xbd\x15\xac\xb4\x4c\xc8\x6d\x09\xce\x47\x6e\x2d\x75\x6f\x70\xc6\x15\x13\x3e\x80\x95\xfe\x8e\xd9\x9f\x0f\xed\x52\xab\xa1\xbe\x90\x76\x4f\x8e\x56\xd2\xa8\x6e\x8e\xcb\x43\xd0\x5a\x8e\xa6\x60\x36\x22\xd8\xa7\x55\x62\x65\x3a\xc4\x15\xa3\x62\x75\x0e\x62\x07\xd6\x63\x7c\xee\xf1\x38\xe5\x16\x20\xb7\x33\x6e\x35\x2e\x2c\x41\xa0\x89\x17\x62\x4b\x56\xb1\x7b\x2a\x11\x24\xa6\xc5\xb8\x15\x4e\xdc\x02\xa9\x11\xcc\xe7\xdd\xe9\x82\xe3\xd9\xa9\x97\x2e\x59\xb5\xd5\xd3\x9c\xec\x13\xcc\x15\xcb\x2f\x0c\xc2\xdb\xb8\x92\xc5\x35\x16\x34\x86\xba\x56\xfc\x17\xa6\xd6\x08\x19\xe0\xcc\xe3\xa2\xe4\x45\x88\x1a\xa8\x95\x9c\x2a\xa6\x3b\x5b\x8d\xc5\x2f\x35\xce\x6e\xd7\xb4\x7b\x1e\xd6\x95\xaa\x75\xef\x34\xc2\x55\x83\xf8\x3c\x99\x3b\x5e\x35\x87\xb4\xc6\x8e\x4b\xfb\xae\x96\x8e\xd5\x01\xa1\xb4\xbd\xb3\xd1\xd0\xb9\xcb\x3d\x7e\xf5\xdd\xfd\x19\xb9\x59\xd3\x6a\xd6\xe5\x05\xe3\x13\xb0\x7d\xa2\x58\x5b\x97\x72\x6d\x06\xf1\xa6\xde\x80\x07\x32\x85\xc9\xe6\xaa\x53\x00\x79\x93\xd9\xb2\xa6\x1a\x64\x8f\x56\xb9\x37\x0b\xb2\x1d\x8f\x89\x41\xd9\xb4\x9f\xc9\xa3\x42\x1b\xc4\x63\x7a\x1f\x74\x6e\x4b\xab\x4c\xb9\x92\x22\x18\xa6\x36\x91\xea\x5e\xb5\x2d\x1f\xf0\xeb\xf3\xca\x1f\x9c\xc8\xca\xb4\xf7\xc7\x83\x77\x19\xb7\xa7\xa0\xe1\x27\x03\x42\xc9\x8c\x6b\x23\x95\x0b\xd4\xb0\x0c\xd0\x28\x2a\x34\x7e\x7f\x2f\xaf\x48\x8d\x30\x3f\x0e\x20\x10\x5a\xd7\x8c\x86\x7e\xee\x8e\x9d\x41\x63\x75\xc5\x0a\xa9\xca\x95\x80\x79\x93\xcc\x4a\x71\x6c\xe5\xf2\x19\x4a\x6a\x54\x54\x9b\xab\x00\x83\x95\x29\x36\xa4\xc6\x5d\x89\xc9\xbd\x62\xfb\x36\xbe\x8c\xa1\x14\xed\x97\x92\x50\xe1\x2c\x55\xf7\x2d\xb1\x11\x7e\x3d\x2c\x97\xb4\xef\x86\x02\x60\xaf\xf7\xba\x0d\xc2\x5e\xf4\x8a\x9f\x07\xf2\x39\xd3\x7a\x6d\x9e\xf5\x52\x81\x17\x68\x1b\x43\x42\xdb\x18\xf7\x73\xcf\xec\x51\x70\xc0\x14\x07\x5f\x57\x77\x71\x3f\xaa\x11\x10\x13\xd0\x0c\x12\xae\x55\xd2\x91\xd5\x33\xaa\x37\x7d\x99\x70\x8b\x42\x2a\xcd\xc6\xd7\x61\x43\x68\x14\xa3\x7a\x5d\xc9\x8a\xc7\xc4\x22\x8f\x15\x67\x13\x72\x4c\xe7\xac\x3a\xa6\x3a\xe7\xce\x03\x79\x58\x67\xaa\x61\xa3\xe9\x88\xec\x5f\x44\x91\x32\x1f\xa4\x79\xcf\xcc\x7e\xbf\xbd\xd9\x8c\x10\x3c\x29\x09\x48\x56\x47\x1e\xbe\xf0\x89\x57\x3d\x19\xc2\x35\x17\x7b\x27\xae\xf4\xfa\x72\x2d\xf7\x5d\xe3\xee\x05\x6e\x14\x98\x27\x8b\xbe\x17\xf9\x81\x12\x10\xf7\x5d\xde\x4d\xae\xed\x96\x2e\xec\x63\xae\xea\x03\x6f\x1f\xa6\xb8\x5c\x69\xea\xb9\xb3\x11\x57\x1d\x75\x1a\x9c\x45\x71\x88\x3a\x34\x64\xb2\xd0\x1f\x5f\xfe\x90\x53\x30\xda\x6e\x59\x25\x77\xa8\xf7\x7e\xbf\x46\xf2\x1f\xae\xe7\xf3\xa9\x25\x9b\x4a\xf0\xbf\x59\x0c\xf8\x9c\x11\x73\x27\x7e\x55\x67\x80\x09\x8d\x3f\xe0\x2f\x74\xf0\x07\xc8\x3a\xf8\x71\x60\x24\xa9\x15\xbb\x81\x74\x06\x01\x69\x9a\x8c\x08\xa6\xed\x45\x39\x5c\xb3\xfc\x86\x2a\xdb\x66\xea\xda\xc3\xaa\xf4\x83\x6a\x32\x79\xf8\x68\xfd\x43\xeb\x0e\x18\xc7\xa6\x5a\xe1\x06\x5a\xf7\x23\xd4\xc1\x87\x75\xaa\x47\x4c\xf6\xa0\x80\xf9\xc8\xf9\x56\x1b\x9e\x97\xc7\x52\xa3\x11\xfb\x93\x0b\xa0\xe7\x18\x6c\x51\x58\xaa\x5c\x40\xfb\x19\x24\xf3\x8e\x3c\x75\x8d\xcc\x17\xcb\x34\x10\x42\xdf\xbb\x18\x9e\xeb\xb5\x9a\x86\xe7\xdb\xf3\x07\x6b\xa5\x6d\x3c\xdf\x0e\x14\x7e\x7b\x10\x81\x9e\xb6\x12\x14\x8e\x87\xb0\x6e\xfb\xf8\xb6\x49\x11\xd0\xb5\x38\xf6\x44\x35\xf8\x34\x53\x37\xac\xec\x78\x18\x5d\x1b\xa8\xee\x67\x91\x3f\xba\x9d\xdf\x6d\x3b\xf9\xaf\xff\xfe\xdd\xff\x0f\x00\x00\xff\xff\x53\xa3\xb6\xb2\x02\xf0\x0a\x00") func operatorsCoreosCom_clusterserviceversionsYamlBytes() ([]byte, error) { return bindataRead( @@ -125,7 +125,7 @@ func operatorsCoreosCom_clusterserviceversionsYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_installplansYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x4b\x93\x1b\xb7\x11\xbe\xef\xaf\xe8\x5a\x1f\x64\x57\x89\x5c\xdb\xb9\x24\xbc\x29\xeb\x38\xb5\x89\x1f\x2a\xed\x5a\x17\xc7\x87\xe6\x4c\x93\x03\x2f\x06\x80\xf1\x20\xc5\xb8\xfc\xdf\x53\x0d\xcc\x93\x9c\x19\x0e\x57\x6b\x59\x95\xf2\x5c\xa4\x9d\x69\x00\xfd\xee\xaf\x01\x10\x8d\x78\x4b\xd6\x09\xad\x56\x80\x46\xd0\x3b\x4f\x8a\xff\x72\xcb\xc7\xbf\xba\xa5\xd0\x37\xbb\x2f\xae\x1e\x85\xca\x57\x70\x1b\x9c\xd7\xe5\x1b\x72\x3a\xd8\x8c\xbe\xa2\x8d\x50\xc2\x0b\xad\xae\x4a\xf2\x98\xa3\xc7\xd5\x15\x00\x2a\xa5\x3d\xf2\x6b\xc7\x7f\x02\x64\x5a\x79\xab\xa5\x24\xbb\xd8\x92\x5a\x3e\x86\x35\xad\x83\x90\x39\xd9\x38\x79\xbd\xf4\xee\xf3\xe5\xdf\x96\x9f\x5f\x01\x64\x96\xe2\xf0\x07\x51\x92\xf3\x58\x9a\x15\xa8\x20\xe5\x15\x80\xc2\x92\x56\x20\x94\xf3\x28\xa5\x91\xa8\xdc\x52\x1b\xb2\xe8\xb5\x75\xcb\x4c\x5b\xd2\xfc\x4f\x79\xe5\x0c\x65\xbc\xf6\xd6\xea\x60\x56\x30\x48\x93\x66\xab\x59\x44\x4f\x5b\x6d\x45\xfd\x37\xc0\x02\xb4\x2c\xe3\xff\x93\xe8\x77\x69\xd1\xd7\x12\x55\x7c\x2b\x85\xf3\xff\x3e\xfe\xf2\x8d\x70\x3e\x7e\x35\x32\x58\x94\x7d\x56\xe3\x07\x57\x68\xeb\xbf\x6b\x17\xe6\x85\x84\x49\x9f\x84\xda\x06\x89\xb6\x37\xea\x0a\xc0\x65\xda\xd0\x0a\xe2\x20\x83\x19\xe5\x57\x00\x95\xd2\xaa\x49\x16\x80\x79\x1e\x0d\x81\xf2\xb5\x15\xca\x93\xbd\xd5\x32\x94\xaa\x59\x84\x69\x72\x72\x99\x15\xc6\x47\x65\x3f\x14\x04\x1b\x61\x9d\x87\xdb\xfb\xb7\x20\x14\xf8\x82\xa2\x4c\xa0\x37\x90\xc9\xe0\x3c\xd9\x7b\xb2\x3b\x91\x51\xe5\x1b\x71\xfd\x66\x3a\x80\x9f\x9d\x56\xaf\xd1\x17\x2b\x58\xb2\xba\x97\xe3\x83\x7e\xfc\xfc\xa7\xce\xb8\x64\xc3\xdb\xfb\xb7\x9d\x77\xfe\xc0\x12\x3a\x6f\x85\xda\x4e\x71\x8c\xc6\x58\xbd\x43\x09\xa5\xce\x69\x82\x97\x9a\xee\x64\xd9\x57\xa7\x1f\x46\xd6\x1e\x9e\x32\x2a\x7f\x68\xca\xde\x87\x34\xe5\x5a\x6b\x49\x95\xb7\xd4\xc4\xbb\x2f\x50\x9a\x02\xbf\xa8\x5e\xba\xac\xa0\x12\x5b\x23\x69\x43\xea\xd5\xeb\xbb\xb7\x7f\xb9\x3f\xfa\x00\x7d\x5d\x74\x5c\x0e\x72\x8e\x42\x72\xd1\x80\x95\xe3\xc4\xe8\x61\x43\x22\x38\x8a\x16\x6d\x23\xe0\x84\x4d\xbd\xfe\x99\x32\xdf\x79\x6d\xe9\x97\x20\x2c\xe5\xdd\xd5\x59\x23\x75\x8c\x1f\xbd\x66\xed\x74\x5e\x19\xcb\x6b\xf9\x4e\x24\xa5\xa7\x93\x64\x7a\xef\x8f\x24\x7b\xc1\xe2\x27\xba\x9e\x64\x95\xc3\x53\x5e\xe9\x8c\x85\xf2\x85\x70\x60\xc9\x58\x72\xa4\x7c\x2b\xb4\xaa\x64\x5a\x02\x3b\x23\x59\xc7\x51\x17\x64\xce\x89\x68\x47\xd6\x83\xa5\x4c\x6f\x95\xf8\x6f\x33\x9b\x03\xaf\x53\x04\xa0\x27\xe7\x21\x86\x90\x42\x09\x3b\x94\x81\x5e\x02\xaa\x1c\x4a\x3c\x80\x25\x9e\x17\x82\xea\xcc\x10\x49\xdc\x12\xbe\xd5\x96\x0d\xb0\xd1\x2b\x28\xbc\x37\x6e\x75\x73\xb3\x15\xbe\x4e\xa1\x99\x2e\xcb\xa0\x84\x3f\xdc\xc4\x6c\x28\xd6\x81\xad\x71\x93\xd3\x8e\xe4\x8d\x13\xdb\x05\xda\xac\x10\x9e\x32\x1f\x2c\xdd\xa0\x11\x8b\xc8\xac\x8a\x69\x74\x59\xe6\x9f\xd8\x2a\xe9\xba\x17\x47\xea\x1b\xf4\x5f\xa8\xf3\xd6\xa4\xae\x39\x7f\x81\x70\xec\x26\x71\x78\x92\xa5\x55\x29\xbf\x62\xad\xbc\xf9\xc7\xfd\x03\xd4\x0c\x24\xb5\x27\x0d\xb7\xa4\xae\x55\x36\x2b\x4a\xa8\x0d\xd9\x44\xb9\xb1\xba\x8c\xb3\x90\xca\x8d\x16\xca\xc7\x3f\x32\x29\x48\x79\x70\x61\x5d\x0a\xef\xa2\xcf\x91\xf3\x6c\x87\x25\xdc\xc6\x0a\x02\x6b\x82\x60\x72\xf4\x94\x2f\xe1\x4e\xc1\x2d\x96\x24\x6f\xd1\xd1\xef\xae\x6a\xd6\xa8\x5b\xb0\xfa\xe6\x2b\xbb\x5b\x00\x4f\x07\x9c\xc4\x18\x40\x5d\xa2\x46\xad\xd3\x89\xf1\x7b\x43\x59\x13\x0d\x4d\x4c\xbf\x32\x46\x8a\x2c\xb9\x7d\xe3\x1d\xec\xc8\xeb\x26\x11\xf4\xb2\xd2\x24\x3b\x63\x61\x0f\xa9\xbc\x9c\xa6\xcd\xfe\xa7\x93\x85\xf8\xd3\xac\x32\x02\x13\x39\x03\x62\xde\x48\x4b\x9f\x7e\x39\xd2\x57\x9d\xda\xd9\xa1\xd9\xc3\x82\x23\xdb\x16\x0c\xa3\xa5\xc8\x0e\xb0\xd1\x96\xf3\x43\x47\xb7\x4b\xb8\xf3\x50\x06\x17\xfd\x4d\x2b\x62\xcd\x5e\xbf\x0a\x5e\x97\xe8\x45\x76\x0d\xda\xc2\xf5\xb7\xa8\x02\xca\xeb\xe5\x00\x0b\xa3\x0e\xd1\xf2\x3e\xa4\xd2\xe1\x1a\xd1\x3e\xe3\xaa\x1b\x9f\x0b\xad\xc5\xc3\xc0\x57\xe1\xa9\x1c\x1c\x76\x86\xfb\x2d\x29\x2e\x1a\x03\x19\xbb\x1d\xca\x89\x72\x4b\xf6\xe4\x7b\xf2\xc6\xf1\x71\x23\x4b\xa6\x61\x0d\xd2\xb9\x68\xbc\xf3\xe8\xc3\x89\x9c\x3d\x17\xb9\xee\xc6\x54\x24\xef\x24\xb0\xaa\x80\x6e\xb4\x2d\x53\x4c\xe1\x5a\x87\x94\xac\xd2\xd4\xec\x19\xce\x93\x71\x4d\xa8\x70\xb0\x65\xba\x34\x92\x7c\xbf\xf6\x2e\xe1\x3f\x0a\xaa\x15\x38\x1d\x7a\x8b\x42\xc6\xa9\x30\xf3\x01\x65\x9c\x91\xaa\x0a\x7d\x70\x9e\xca\xe5\xf5\xf3\x44\x6a\x86\x1e\xa5\xde\xde\xa7\x6c\x30\x40\x60\x0a\x74\x74\x49\xfc\x79\x4f\x2a\x70\x16\xae\x9c\xf1\x55\x96\xe9\xa0\xfc\x1b\xda\x9c\x0f\xc9\xf1\xb1\x60\x69\x43\x96\x54\x56\xd5\x77\x97\x08\x00\x13\x05\xf8\x02\x3d\x47\x72\x70\x49\xcd\xb9\x4e\x38\x38\x6f\xa0\x4c\xad\xf0\xf1\xa8\x1c\x54\xde\x39\x79\x61\x12\xab\x0c\x8b\xf9\xfa\xae\xc6\x27\x09\x96\x50\x2d\x9d\x1f\x62\x0e\xce\x45\x01\x3f\x1b\x41\x32\x8f\xf8\x73\x0e\x07\x2f\xee\x2a\x85\xc6\x2a\xee\x35\x20\x18\x41\x19\xf5\xe0\x50\x54\x18\x61\x5e\xbd\xe4\x82\x67\xa9\xfa\xf6\x32\xd5\xea\x0a\x06\xb4\x70\xc9\xa3\x50\x80\x8c\x0b\x44\x0e\xff\xba\xff\xfe\xbb\x9b\x7f\xea\xc4\x1b\x5b\x8a\x9c\x4b\x9e\x5c\x92\xf2\x2f\xc1\x85\xac\x00\x74\xcc\x1a\xbb\x27\xfb\x3f\x2d\x4b\x54\x62\x43\xce\x2f\xab\xd9\xc8\xba\x1f\xbf\xfc\x69\x09\x5f\x6b\x0b\xf4\x0e\x39\x78\x5e\x82\x48\x5a\x6b\x40\x45\xe5\x1a\x31\x95\xb3\x30\xcd\x58\xd8\x0b\x5f\x44\x96\x8c\xce\x2b\xa6\xf7\x91\x59\x8f\x8f\x9c\xbf\x13\xb3\x81\x7b\x99\x47\x5a\xc1\x75\x6a\x4d\x9a\xa5\x7f\x65\x18\xfe\xdb\x35\x7c\xba\x2f\xc8\x12\x5c\xf3\x9f\xd7\x69\xc1\x06\x03\xf2\xbb\xda\x8e\xed\xc2\xd1\x21\xbd\x15\xdb\x2d\xc5\xc8\x67\x40\xc3\xa0\xe1\x33\xae\x10\x62\x03\x4a\x77\x88\xe3\x14\xac\x4f\x43\x99\xd8\x08\xca\x4f\x18\xf9\xf1\xcb\x9f\xae\xe1\xd3\xbe\x5c\x20\x54\x4e\xef\xe0\xcb\xd4\x8e\x09\xc7\x32\x7e\xb6\x84\x87\x68\x99\x83\xf2\xf8\x8e\xe7\xcc\x0a\xed\x48\x81\x56\xf2\xc0\x1c\x17\xb8\x23\x70\xba\x24\xd8\x93\x94\x8b\x84\x12\x72\xd8\xe3\x81\x65\xa8\x55\xc9\x56\x45\x30\x68\xfd\x11\x42\x7e\xf8\xfe\xab\xef\x57\x69\x35\x36\xdb\x56\xf1\x12\x8c\xbe\x36\x82\xf1\x2f\x03\xdf\x84\xe2\xa2\xcd\x99\x91\x90\x8c\xc4\xa9\xaf\x40\xb5\xa5\xba\x79\xdc\x04\xc6\x53\xcb\x63\xc4\x34\xdb\xe3\x87\xe0\xea\xb0\xb3\x47\xd8\x7a\x1c\x68\x7f\x20\x28\x9c\x2d\x62\xec\x01\x67\x89\xf8\x5d\xc7\x07\x27\x45\x7c\x0c\x6b\xb2\x8a\x3c\x45\x29\x73\x9d\x39\x16\x30\x23\xe3\xdd\x8d\xde\x71\x52\xa5\xfd\xcd\x5e\xdb\x47\xa1\xb6\x0b\x76\xb2\x45\xb2\xbc\xbb\x89\xbb\x1f\x37\x9f\xc4\x7f\xde\x4b\xa2\xd1\x52\x3d\x2c\x56\x24\xff\x10\xb2\xf1\x3a\xee\xe6\xc9\xa2\xd5\x90\xfa\x92\x4a\xf0\xe2\x3e\x05\x7c\x76\x3c\x9a\xc3\x65\x5f\x88\xac\xa8\x9b\xd6\x4e\x86\x2b\x31\x4f\x29\x10\xd5\xe1\x77\x77\x63\x56\x60\xb0\xbc\xf6\x61\x51\xed\xcb\x2d\x50\xe5\xfc\x7f\x27\x9c\xe7\xf7\x4f\xd6\x58\x10\x33\x03\xf8\x87\xbb\xaf\x3e\x8c\x73\x07\xf1\xc4\x68\x5d\x07\x95\x4b\xfa\x46\xeb\xc7\x60\x06\x41\x42\x4f\xa0\xbf\x77\xa9\xeb\xfe\xa3\xea\xd2\x84\x5a\x18\xab\xb7\x96\x6b\x65\xa7\xcb\x05\x13\x64\x4a\xaf\x41\x19\xcc\x1e\x71\x4b\xd5\xa2\xb1\x8c\x70\x6f\x5c\x95\xa3\xaa\x15\x18\x87\x39\x4f\xc0\xfd\xa3\xdc\xa7\xdd\x80\x8a\xcf\x11\x36\xeb\xba\xc8\x3c\x46\x04\x5b\xf1\x7d\x9e\xdf\xb3\xc0\x6c\x0a\xdb\xa6\xe7\x08\xe1\xbe\xa1\xcd\x28\xa1\xc8\xd9\xef\x37\x62\xa0\x3d\xa9\x49\x0c\xfa\x62\xf4\xa3\x25\x23\x71\x08\x44\xc3\x0c\x08\x09\x27\x7c\x8e\xd1\x1d\x59\xe3\xf6\x68\x58\x6d\x91\x3a\x61\x54\x5a\xee\x91\xc5\x37\x95\x15\x58\x24\xd8\xa3\x8b\x19\x48\xee\x28\x8f\x1b\x30\x63\x38\x74\x86\x45\xe6\x49\x0b\xb3\x60\xf3\x80\xbc\x4f\x00\xcf\x5d\xc6\x27\xd2\x51\x7a\xce\x02\xe9\x01\x9e\xfe\x84\xd3\x7f\xc2\xe9\x8f\x1c\x4e\x5f\x14\x03\x53\xd0\x7a\xc8\xfd\x3f\x56\x80\x7d\x91\xd0\x53\x60\x7b\x48\xe8\x8f\x04\x72\x5f\x2c\xe3\x24\xfc\x1e\x13\xf4\x23\x01\xe1\x17\x09\x3b\x13\x90\x0f\x89\xfc\xff\x0c\xcb\x2f\xd2\xe1\x04\x44\x1f\xd2\xdb\x47\x01\xd4\x67\x0b\x98\x69\x95\x4e\xc1\x27\x50\x4a\x1f\x6b\x35\x03\x8e\xf7\x81\x99\x69\x94\xbd\x7d\xda\x2e\x4c\x3e\x07\xa7\xc6\x20\x79\x7a\x26\x80\x79\x77\x92\x33\x98\xec\x3c\x56\x4e\xcf\xa2\xda\xbe\x3e\x43\xc4\x6b\x4e\x90\xcc\x43\x80\x00\x12\x9d\x7f\xb0\xa8\x9c\xa8\x6f\x70\x4c\xd3\x1f\x59\xe4\x1b\xe4\xb6\x43\x94\x4d\x97\x91\xec\x03\xbe\x99\xb2\x02\xb4\xf1\xa8\xa6\xda\x97\x67\x4c\xa3\xb4\x2f\xc6\x9a\x8e\xf6\x99\x19\x25\xfc\xa4\x73\x80\x15\xe4\xe8\x69\xc1\x1c\x9d\x15\xfb\x87\x78\x58\xf9\x6c\x22\x33\x86\x37\x56\xaf\x29\xff\xc3\xa4\x2a\xc9\x39\xdc\x5e\x26\xce\x2b\x28\x42\x89\x0a\x2c\x61\x8e\x6b\x49\xf5\x24\x8c\xc6\xe2\x69\xa5\xda\x42\x4e\x1e\x85\x74\x9d\x13\x96\xd6\xbe\xcf\x26\xac\x25\x74\xe7\xaa\x04\x9c\x5e\x31\x49\xc3\xe2\x41\x61\xcf\x1e\x2f\x5c\x34\xf2\xef\xc1\xe9\xf0\xc9\xd5\x24\xa7\xf7\xcd\x89\x54\x8f\xc9\x97\xf5\x09\xe6\x83\x0d\xf4\x12\xbe\x46\xe9\xe8\x25\xfc\xa0\x1e\x95\xde\x3f\x1f\xbf\x91\xf0\x22\xbd\x1e\x4c\xe4\xaa\xe1\xf3\x19\x58\x69\xbb\xfb\x99\xc9\xfe\xae\x19\x50\xef\xd0\x54\x1d\xfa\x22\x28\xf1\x4b\xe8\x37\x2a\xcd\x21\xd3\xa7\xc7\x2d\xcc\xed\xfd\xdb\xe8\x1c\xa9\xdd\x76\xa9\x91\xa9\x5b\xbb\xdb\xfb\xb7\xee\xb3\x33\xb5\x61\x52\x2a\x33\xd9\xa8\xf6\xe4\xe1\x9e\xf6\xa8\xd5\x92\x3a\xeb\x5c\xfd\x69\xb7\x65\x4c\x90\x72\x09\x77\xfe\x85\x63\x1e\x44\x86\x52\x1e\xb8\x6b\x11\x25\x07\x66\x83\x7a\xce\x55\xb5\x69\xce\x67\x14\x88\x93\x60\xa3\xcd\x86\x32\x2f\x76\xd4\x19\x5e\x2b\x3a\x6d\x38\x51\x5e\xc9\xf1\x5e\xcc\xd5\x5b\x39\x33\x59\x7b\x53\x91\xd7\x8e\xd2\xb5\x7f\xab\xd5\x6a\xd2\xd4\x6b\x46\xa7\x51\x04\x1b\x1d\x54\x0e\xe8\xa3\x79\x9e\xc8\x73\xff\x0c\xf7\xc3\x1d\xf8\x4f\xe3\xa7\xe7\xd9\x6c\xec\x9c\xc0\x37\xe8\x6b\x0a\x7c\xb5\x49\x8e\xde\x51\x16\x3a\x77\xbc\xba\x77\x38\x9e\xb6\xd7\x78\xde\x65\x2f\x41\x33\xb3\xd2\xe7\xdc\xfa\x3b\x17\x4f\x3c\xeb\xa2\x67\xcb\xfd\xac\x48\x9b\xae\xba\xc3\xf8\xfb\x4d\x2a\xba\x71\xab\x33\xc3\x92\x64\x86\x8e\xf2\xe3\x5a\x9c\xc0\xf8\x9c\x02\x3c\x83\xd1\x73\x45\x77\xc6\x14\xd3\x75\xf0\xac\xdb\xc7\xaa\x98\xa8\xd6\xf5\x2d\x88\xa6\xdd\xe8\xf9\x37\xe7\x13\x84\x8c\x6c\x2c\x32\xe9\x12\x1d\xb2\xae\xf6\x85\x7e\x72\x66\x9c\xb0\x76\x8f\xf5\x6f\x6b\xfc\xc6\x0b\x46\x6c\xb7\x38\xc1\x76\x55\xfd\x6b\xb1\x1d\xe5\xbd\xab\x34\xb1\x48\x96\x78\x88\x57\xd3\x4a\xa3\xad\xc7\x74\xc0\x11\x54\x4e\xd6\x79\x54\x39\x8f\xdd\x17\x87\xa8\x06\xc3\x32\x17\xe8\x40\x78\x07\xa9\x2f\xf6\x95\xc1\x2e\xbe\x83\x15\xef\xbb\x9c\x15\xb2\xa3\xec\xd7\x3c\xa0\x81\x08\xbd\xc5\x53\x5d\xed\x19\x66\xd2\x0a\xd3\x8c\x49\x9c\xb8\x58\xf5\xbe\x79\xf6\xde\x93\x39\xce\xab\x1d\x21\x54\x84\xe3\x3b\x91\xa7\xcb\x48\x64\x40\xa8\xe7\x49\xaa\xe7\x0f\x70\xd2\xc1\xc4\x78\x58\x2d\x9a\x5d\x9a\x51\x82\x89\x8e\xf6\x7c\x52\xd7\x26\xdd\x94\x3f\x17\xfb\x63\x77\xf3\xd2\xd3\x48\xf1\x9e\xe9\x72\xfc\xa6\x5c\x7a\x4e\xac\x5a\xff\xfa\x62\xc2\xba\x9d\xbb\xba\xf1\x36\xa8\xb7\x15\x92\x3a\xcc\xb2\x31\xcc\xdd\x82\x98\xb3\x01\xb1\x48\x3f\xc2\x98\xa4\x78\x14\xea\xf4\xfe\x68\x97\x80\x01\xd8\x24\x41\x7b\x71\x70\x26\x59\xdc\x98\x9c\xa4\xad\x0e\xa5\xde\xf3\x4c\x2c\xfd\x02\xe5\xc3\x6c\xe2\xcf\x9c\xa8\x3e\x42\x7a\x96\xc9\xce\xef\xb2\xcf\x9c\xa8\x35\xcd\x33\x4f\x37\x63\x7f\x7c\xe6\x9c\xbb\x39\x1b\xcf\xcf\x00\x3d\x4e\x42\xbe\xea\xf6\x27\x6a\x92\x41\xeb\x45\x16\x24\xda\x36\xf6\x63\x92\x3f\xf9\xdd\xd2\xc5\x3c\x3b\x8f\xd6\x8f\xa1\xd0\xe3\x4d\x89\x44\x59\x73\x1a\x77\xb5\xf6\x05\xa9\xe6\xf0\x2f\xfd\x0c\x0c\xd6\xb4\xe5\xe2\x69\x8c\x3c\xd4\xbf\x31\x68\x6f\xb0\x4b\xe1\x7c\xc4\x0f\x2d\x16\x98\x7b\x15\x62\x54\xed\x63\x10\xd8\x91\xdd\x51\xbe\x02\x6f\x43\xf3\xca\x6b\xcb\xb8\xa8\xf7\x2e\xac\x1b\xfe\x5a\x35\x54\x76\x84\x5f\x7f\xbb\xfa\x5f\x00\x00\x00\xff\xff\xa9\xc5\x05\x0b\x43\x37\x00\x00") +var _operatorsCoreosCom_installplansYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x4b\x73\xe3\x36\x12\xbe\xfb\x57\x74\x39\x87\x24\x55\x96\x94\xc9\xee\x61\x4b\x37\xaf\xb3\xd9\xf2\x6e\x1e\xae\x91\x33\x97\xd4\x1c\x5a\x64\x4b\x44\x0c\x02\x0c\x1e\x92\xb5\xd9\xfc\xf7\xad\x06\x48\x8a\x92\xf8\x92\xc6\x63\x2f\x2e\xb6\x48\xa0\xd1\x0f\xf4\xe3\x03\x40\x2c\xc4\x07\x32\x56\x68\x35\x07\x2c\x04\x3d\x3b\x52\xfc\xcb\x4e\x9f\xfe\x66\xa7\x42\xcf\x36\xef\xae\x9e\x84\x4a\xe7\x70\xe7\xad\xd3\xf9\x7b\xb2\xda\x9b\x84\xbe\xa3\x95\x50\xc2\x09\xad\xae\x72\x72\x98\xa2\xc3\xf9\x15\x00\x2a\xa5\x1d\xf2\x63\xcb\x3f\x01\x12\xad\x9c\xd1\x52\x92\x99\xac\x49\x4d\x9f\xfc\x92\x96\x5e\xc8\x94\x4c\x20\x5e\x4d\xbd\xf9\x66\xfa\xee\xaf\xd3\x6f\xae\x00\x14\xe6\x34\x07\xa1\xac\x43\x29\x0b\x89\xca\x4e\x75\x41\x06\x9d\x36\x76\x9a\x68\x43\x9a\xff\xe4\x57\xb6\xa0\x84\xa7\x58\x1b\xed\x8b\x39\xb4\xf6\x89\xd4\x2a\x4e\xd0\xd1\x5a\x1b\x51\xfd\x06\x98\x80\x96\x79\xf8\x3f\x4a\x78\x1f\x27\x7d\x90\xa8\xc2\x53\x29\xac\xfb\xf7\xf1\x9b\x1f\x84\x75\xe1\x6d\x21\xbd\x41\x79\xc8\x6a\x78\x61\x33\x6d\xdc\x4f\xfb\x89\x79\x22\x51\xc4\x57\x42\xad\xbd\x44\x73\x30\xea\x0a\xc0\x26\xba\xa0\x39\x84\x41\x05\x26\x94\x5e\x01\x94\xba\x29\x89\x4c\x00\xd3\x34\xe8\x1b\xe5\x83\x11\xca\x91\xb9\xd3\xd2\xe7\xaa\x9e\x84\xfb\xa4\x64\x13\x23\x0a\x17\x74\xfa\x98\x11\xac\x84\xb1\x0e\xee\x16\x1f\x40\x28\x70\x19\x05\x99\x40\xaf\x20\x91\xde\x3a\x32\x0b\x32\x1b\x91\x50\xb9\x04\xc2\xfc\x35\x39\x80\xdf\xac\x56\x0f\xe8\xb2\x39\x4c\x59\xdd\xd3\xee\x41\xbf\x7e\xf3\xb1\x31\x2e\xda\xf0\x6e\xf1\xa1\xf1\xcc\xed\x58\x42\xeb\x8c\x50\xeb\x3e\x8e\xb1\x28\x8c\xde\xa0\x84\x5c\xa7\xd4\xc3\x4b\xd5\xef\x64\xda\xdb\xd3\x17\x1d\x73\xb7\x93\x0c\xca\x6f\x23\x79\xf0\x22\x92\x5c\x6a\x2d\xa9\x5c\x2d\x55\xe7\xcd\x3b\x94\x45\x86\xef\xca\x87\x36\xc9\x28\xc7\xbd\x91\x74\x41\xea\xf6\xe1\xfe\xc3\x5f\x16\x47\x2f\xe0\x50\x17\x8d\x25\x07\x29\x3b\x1b\xd9\x60\xc0\x72\xe1\x04\x1f\x63\x43\x22\x58\x0a\x16\xdd\x7b\xc0\x09\x9b\x7a\xf9\x1b\x25\xae\xf1\xd8\xd0\xef\x5e\x18\x4a\x9b\xb3\xb3\x46\x2a\x57\x3e\x7a\xcc\xda\x69\x3c\x2a\x0c\xcf\xe5\x1a\x9e\x14\x5b\x23\x96\x1c\x3c\x3f\x92\xec\xbf\x93\xa3\xb7\x00\xac\x90\x38\xf2\x40\xd6\xd2\x05\x28\x2d\xb5\xc8\x62\xba\x4c\x58\x30\x54\x18\xb2\xa4\xdc\x5e\x0d\xaa\x94\x72\x7a\x42\x9c\x97\x2b\x19\xcb\x7e\xe9\x65\xca\x11\x69\x43\xc6\x81\xa1\x44\xaf\x95\xf8\x4f\x4d\xdd\x82\xd3\xd1\x47\xd0\x91\x75\x10\x9c\x4c\xa1\x84\x0d\x4a\x4f\x37\x80\x2a\x3d\xa1\x9d\xe3\x0e\x0c\xf1\xbc\xe0\x55\x83\x62\x18\x62\x4f\x79\xf9\x51\x1b\x36\xe1\x4a\xcf\x21\x73\xae\xb0\xf3\xd9\x6c\x2d\x5c\x15\x6b\x13\x9d\xe7\x5e\x09\xb7\x9b\x85\xb0\x29\x96\x9e\xed\x39\x4b\x69\x43\x72\x66\xc5\x7a\x82\x26\xc9\x84\xa3\xc4\x79\x43\x33\x2c\xc4\x24\x08\xa3\x42\xbc\x9d\xe6\xe9\x17\xa6\x8c\xce\xf6\x68\xe2\x56\x07\x80\x2a\xf0\x9d\x69\x2c\x0e\x89\x20\x2c\xaf\xbc\x40\x30\x0a\xbb\xb7\x09\x3f\x62\x35\xbe\xff\xc7\xe2\x11\x2a\x8e\xa2\xdd\xa2\x89\xf6\x5d\x5b\x34\x54\x59\x8b\x35\x2b\xd4\x8a\x4c\x1c\xb9\x32\x3a\x0f\x54\x49\xa5\x85\x16\xca\x85\x1f\x89\x14\xa4\x1c\x58\xbf\xcc\x85\xb3\x61\x59\x93\x75\x6c\xc8\x53\xc2\x77\x21\x37\xc1\x92\xc0\x17\x29\x3a\x4a\x4f\xbb\xdc\x2b\xb8\xc3\x9c\xe4\x1d\x5a\x7a\x75\xdb\xb1\x8d\xec\x84\x0d\x32\xda\x7a\xcd\xcc\x7b\x3a\xe0\xc4\xeb\x01\xaa\xa4\xd9\x69\xee\x46\xd4\x59\x14\x94\xd4\xde\x58\x47\x99\xdb\xa2\x90\x22\x89\x6e\x57\xaf\x36\x76\x9c\x65\x1d\x9a\xe8\xd8\x4d\x3a\xd9\xe9\x0a\x44\x10\x13\xde\x69\x20\x3f\x7c\x75\x32\x11\xbf\x1a\x95\xd8\xa0\x27\x8a\x41\x88\x64\x71\xea\xd3\x37\xc3\xee\xc1\xad\xca\x41\xec\x26\xbc\x4e\xbd\x25\xb3\xcf\x6c\x85\x96\x22\xd9\xc1\x4a\x1b\x0e\x5b\x0d\x95\x9f\xae\x39\x6e\xf7\x0e\x72\x6f\xc3\xca\xd5\x8a\xd8\x08\xd7\xb7\xde\xe9\x1c\x9d\x48\xae\x41\x1b\xb8\xfe\x11\x95\x47\x79\xdd\x36\xbc\x73\xed\xec\xc5\x6c\xd3\x7e\x7b\x82\xdb\xb7\x6e\x2d\x77\xd3\x42\x63\x70\xd7\xf2\x56\x38\xca\x5b\x87\x0d\x70\xbf\x26\xc5\x19\xaf\x25\xdd\xec\x87\x72\x0c\x5f\x93\x39\x79\x1f\x17\x6e\xf7\xb8\x8e\x29\xe3\xb0\xba\x4c\x3b\x6b\xbc\x75\xe8\xfc\x89\x9c\x43\xab\xa9\xe9\x90\x81\x40\x23\x78\x96\xf5\xc0\x4a\x9b\x3c\x3a\x24\x2e\xb5\x8f\x81\x31\x4e\x06\x7a\x75\x2a\x82\xa3\xc2\xd6\x7e\xc7\x9e\x9b\xe8\xbc\x90\xe4\x0e\x4b\x8b\xe9\xd5\xd5\x69\x68\x8e\x44\x39\x32\x3b\x83\x42\x86\x99\x30\x71\x1e\x65\x98\x90\xca\x7a\x64\x67\x1d\xe5\xc7\x8b\xf1\xc2\x20\x90\xa0\x43\xa9\xd7\x8b\xd6\xb4\xc6\x1d\x8a\x0c\x2d\x9d\xe3\xda\xce\x91\xf2\x1c\xff\xcb\xc5\x7b\x9b\x24\xda\x2b\xf7\x9e\x56\x17\x7b\x7b\x37\x49\x30\xb4\x22\x43\x2a\x29\x2b\x1a\x1b\x3b\x00\xc6\x1e\xe0\x32\x74\x1c\x24\xbc\x6d\x09\x66\x41\x6d\x1a\x52\x1d\xf1\x41\x5a\x97\x78\x95\xa5\xba\x1d\xbe\x55\xcf\x43\xaa\x81\xde\x1a\xae\x55\x23\xb7\x0f\xf7\x55\x95\x16\x8b\x33\xaa\x24\x6e\x29\xc4\x9a\x0c\x76\x38\x18\xb7\x95\x20\x99\x86\xba\x7c\x0c\x07\x1d\x36\xe1\x76\x5f\xaa\x3f\x14\x29\x4e\x03\x42\x21\x28\xa1\x83\x72\x31\xa8\x92\x30\x2d\x1f\x72\x3e\x36\x54\xbe\xbb\x89\xa5\x47\x0f\xab\x10\xe1\x5e\x59\x56\x3a\x14\x0a\x90\xcb\x21\x91\xc2\xbf\x16\x3f\xff\x34\xfb\xa7\x8e\xd2\xb0\xbd\xc9\xda\xe8\x25\x39\x29\x77\x03\xd6\x27\x19\xa0\x65\x61\x78\xed\xb3\x6f\xd1\x34\x47\x25\x56\x64\xdd\xb4\xa4\x46\xc6\xfe\xfa\xed\xc7\x2e\x4d\x02\x7c\xaf\x0d\xd0\x33\xb2\xff\xde\x80\x88\xfa\xaf\x6b\xac\x72\xe1\x85\x1c\xc4\xc2\xd7\x34\x61\x2b\x5c\x16\x58\x2d\x74\x5a\x0a\xb9\x0d\x42\x38\x7c\xe2\x24\x13\x85\xf0\x8c\x16\x9f\x5a\x83\x5c\x6c\xd7\x11\x14\xd6\xac\xfe\xc1\x00\xe8\xcf\x6b\xf8\x6a\x9b\x91\x21\xb8\xe6\x9f\xd7\x91\x91\xba\xb6\xe6\x67\xd5\x4a\xd9\x33\x14\xdc\xc0\x19\xb1\x5e\x93\xe9\x70\x04\x6e\xa1\xfe\xe3\x9a\xe9\x6b\x4e\x7b\x62\x05\x4a\x37\x88\x04\xd2\x6c\xaf\x82\x12\xb1\x12\x94\x9e\x30\xf8\xeb\xb7\x1f\xaf\xe1\xab\x43\x3d\x74\x4e\x26\x54\x4a\xcf\xf0\x6d\x04\xce\xc2\xb2\xae\xbe\x9e\xc2\x63\x58\x11\x3b\xe5\xf0\x99\xe7\x4a\x32\x6d\x49\x81\x56\x72\xc7\x12\x66\xb8\x21\xb0\x3a\x27\xd8\x92\x94\x93\x58\x3d\xa5\xb0\xc5\x5d\x5b\x28\xae\x5a\x65\x2a\x5e\xa6\x08\x05\x1a\x37\x80\x68\xaa\xf6\xf8\xf3\x77\x3f\xcf\x23\x77\xbc\x8c\xd6\x8a\x59\xe2\x22\x77\x25\x18\xb7\xa0\x4a\xcb\xe2\x39\xac\x41\x66\xdc\xc7\xc5\xc1\x51\x3f\x43\xb5\xa6\x6a\x5b\x60\xe5\xb9\x2c\xbd\xd8\x65\xdb\x60\x44\xd5\xc6\x7a\x6b\x80\x15\x23\x63\xc8\x1b\x16\xe3\xa3\x75\x12\x76\x03\x3e\x51\x27\x3f\x35\xbc\xe5\x22\x9d\x3c\xf9\x25\x19\x45\x8e\x82\x5a\x52\x9d\x58\xd6\x48\x42\x85\xb3\x33\xbd\xe1\x64\x44\xdb\xd9\x56\x9b\x27\xa1\xd6\x13\x76\x87\x49\x5c\x73\x76\x16\x76\xce\x66\x5f\xa8\x96\xca\xf9\x2c\x15\x74\x16\x4a\xe7\xea\x21\x10\x7a\x4b\x65\xf0\xfc\x76\x76\xa9\x2e\x2a\xb0\x74\x4e\x76\xed\xd1\xc8\x22\x06\xb9\xe4\x98\x2e\xbb\xf6\x36\x13\x49\x56\x6d\x94\x34\xb2\x40\x8e\x69\x4c\x13\xa8\x76\x6f\xe6\x59\xac\x71\x6f\x98\xa7\xdd\xa4\xdc\x1c\x9e\xa0\x4a\xf9\x7f\x2b\xac\xe3\xe7\x97\xaa\xd8\x8b\x4f\x0e\x42\xbf\xdc\x7f\xf7\xb6\xfe\xe6\xc5\xa5\x11\xe7\x79\xb2\x9f\x7c\x92\x63\x31\x29\x51\x97\xd3\xb9\x48\x4e\xfa\x2f\xbd\x4a\x25\xfd\xa0\xf5\x93\x2f\x5a\x4b\xc1\x03\x8d\xfd\xbd\xd9\xbb\x02\xb5\xe5\x8e\x80\x50\x93\xc2\xe8\xb5\xe1\xfa\xa6\xb1\x01\x03\x85\x97\x31\x05\x79\x55\x60\xf2\x84\x6b\x2a\x27\x0d\x29\x9b\x94\xab\x4a\x82\x12\x4b\x76\x17\xb3\x17\x00\xc7\x4e\xee\xe3\xc6\x55\xc9\x67\x07\x9b\x55\x6d\xc2\x3c\x06\x44\x53\xf2\x3d\xcc\xef\x60\xf9\xdd\x07\x76\x62\x3b\x82\x3c\xef\xa9\xab\x6e\x98\x80\x48\xd9\xaf\x56\xa2\x05\xdf\x56\x5d\x0a\xec\xac\x70\x26\x8c\x24\x25\xb6\xa1\x2a\x18\x01\x14\xe0\x84\xcf\xee\x42\xf1\xc0\x1a\x77\x47\xc3\x2a\x8b\x54\x81\xaa\xd4\xf2\x41\xb7\xf0\xa4\xb4\x02\x8b\x04\x5b\xb4\x21\xf2\xc9\x0d\xa5\x61\x6f\xb0\xdb\x4b\x07\x2d\x32\x4e\x5a\x18\x05\x8e\x5a\xe4\xbd\x00\x22\x35\x19\x1f\x40\x1f\x23\xe0\x52\x0b\x4f\x3d\x11\x30\xb6\xd7\x81\x4e\xb1\xbd\x25\x80\x8a\xed\x6d\x61\x54\x6c\xaf\x0e\xa6\x62\x7b\x55\x48\x15\xdb\xeb\x01\xab\xd8\x2e\x86\x57\xb1\xbd\x16\xc8\x2a\xed\x31\xce\xe9\xfb\x00\x57\x6c\xe7\xf9\xfb\x79\xe0\x2b\xb6\x37\x87\x60\x67\x69\xac\x0f\x8e\x5d\xa2\xb1\xf3\xa0\x59\xa7\xc6\x3e\x2b\x40\x3b\x5b\x41\xbd\x60\xed\x52\x2d\x9d\x09\xdc\x3e\x97\xaa\x7a\xe1\xdb\x59\x9a\x1a\x09\xe5\x2e\xd1\xd7\xe7\x83\x75\x9d\x6a\xfd\xff\x00\x77\x67\x19\xa0\x07\xe8\x5d\xa2\xf4\xb3\x40\x5f\xa7\x1e\x3f\x27\xf4\x3b\x43\x3b\xe7\xc1\xc0\xd8\x12\xad\xe2\xdd\xa2\x9e\xea\xf7\xb0\x86\xaf\x07\x1c\x1f\x47\xb1\xa4\x28\x0f\xce\x83\x9a\xf0\x6b\xa8\x4c\xef\x82\x7a\xb1\xf5\x00\xbe\x26\x91\x81\x5a\x7f\x18\x83\xc5\x36\x29\x4f\xd1\x06\x3a\xf1\x9c\x3d\x5d\xc6\x21\x0b\x00\x89\xd6\x3d\x1a\x54\x36\xe8\xf5\x51\x0c\x65\xab\x23\x8b\xfc\x80\x0c\x67\x45\x5e\xa3\xd7\x68\x1f\x70\x35\xc9\x12\x28\x85\x33\xe4\xf2\x78\x90\xeb\x59\xa5\x5d\xd6\x05\x66\xf7\x6d\xa4\x63\x72\x8b\xc7\x91\x73\x48\xd1\xd1\x84\x39\x1a\x14\xfb\x97\x70\x1f\xe3\xc5\x44\x66\x6c\x58\x18\xbd\x6c\xbb\xe1\xf1\x4a\x52\xe5\x64\x2d\xae\xcf\x13\xe7\x16\x32\x9f\xa3\x02\x43\x98\xe2\x52\x52\x45\x84\xeb\xe5\x70\xe3\x42\xad\x21\x25\x87\x42\xda\xc6\x41\xef\xde\xbe\x2f\x26\xac\x21\xb4\x43\x59\x0d\x4e\x2f\xee\xc5\x61\xe1\x56\xc3\x81\x3d\xbe\xb4\xc1\xc8\x9f\x83\xd3\xf6\x23\xf5\x5e\x4e\x17\xd5\xc1\xf8\x21\x93\x37\xd5\xd5\x8a\x47\xe3\xe9\x06\xbe\x47\x69\xe9\x06\x7e\x51\x4f\x4a\x6f\x5f\x8e\xdf\xd0\xf1\x2c\xbd\xee\x8a\xc0\x55\xcd\xe7\x0b\xb0\xb2\xdf\x35\x1a\x19\xec\xef\xeb\x01\xd5\xce\x5f\xb9\xf3\x33\xf1\x4a\xfc\xee\x0f\x61\x68\x7d\x44\xfd\xd5\x31\x40\xbd\x5b\x7c\x08\x8b\x23\x6e\xe3\xd8\x08\x53\x2b\xd0\x7f\xb7\xf8\x60\xbf\x1e\xc8\x0d\xbd\x52\x15\xbd\x1b\x20\xe3\xeb\x81\x07\x74\xd9\x11\xca\x96\x3a\x69\xdc\xb6\xdc\xef\x05\x16\xbe\xfd\x04\xbe\x6a\xf7\xee\x4b\xcb\xac\x8b\x04\xa5\xdc\x31\xe0\x14\x39\xfb\x73\x5d\xbc\x0d\x25\xc3\x7e\x81\x47\xe4\x95\x13\x1f\xa5\xd5\x8a\x12\x27\x36\xd4\x18\x5e\xd9\x27\xee\x7f\x52\x5a\x4a\xf8\x49\xcc\x55\x3b\x8b\x23\x59\x7b\x5f\x76\xaf\xd6\x57\x73\xd9\xec\xf5\x5d\x12\x0d\x5b\x0c\x71\xad\x29\x82\x95\xf6\x2a\x05\x74\xc1\x70\x17\xf2\x7c\x78\xc7\xe4\xf5\x2e\x30\xf5\x97\x5d\x2f\xb3\xf7\xdd\xb9\xd8\x1b\x17\x8b\xea\x6a\xae\xaf\x98\xdb\x07\x4d\x7a\xa6\xc4\x97\x0e\xd1\x41\x7c\xcc\xb5\xb6\xc1\x5a\x6d\x78\x85\x9f\x53\x33\x8d\x0a\xd2\x63\xb3\xfc\xd8\xaa\xe5\x45\x27\x1d\x2c\x2a\x46\x39\x66\x7f\x6e\x6f\xaf\xf2\xdf\xc7\xd4\x1e\x36\xea\x13\xcc\x49\x26\x68\x29\x3d\xce\xf8\xb1\xe4\x1f\x93\xe6\x47\x30\x3a\x94\xda\x47\x90\xe8\xcf\xb6\x5d\xd7\x5e\x6b\xa1\x43\xee\x8d\xbd\x96\xd5\xed\xad\x1a\xd4\x1c\xac\x6f\x0e\x3f\x08\x09\x99\x90\xca\xe2\xed\x64\x64\x5d\x6d\x33\x7d\x71\x20\xed\xb1\xf6\x18\x07\xff\xb1\x2a\x1e\x99\x8f\x50\x58\x4e\x4e\x0a\xcb\x32\xf9\xee\x0b\xcb\x8e\xdd\xe2\xe6\x15\xc3\x90\xb5\x73\xdc\x85\xfb\xbe\x79\xa1\x8d\xc3\x78\x92\xe7\x55\x4a\xc6\x3a\x54\x29\xd3\xdb\x66\x3b\xd6\x58\xbb\x5f\xb3\xca\x32\xb4\x20\x9c\x85\xb8\x5d\xe0\x4a\x7b\x9f\x7d\x83\x35\xdc\xfe\x1b\xd4\x51\xc3\x56\x0f\x3c\xa0\xae\x63\x0e\x26\x8f\xf9\xfd\xc0\xae\xbd\x46\xec\x67\x4c\x62\xcf\xb5\xd4\x4f\x8d\xea\x0b\x47\xc5\x71\xb0\x6e\x08\xa1\x02\x66\xd8\x88\x34\xde\xcc\xa4\x02\x84\x7a\x99\x98\x3c\x7c\x7a\x19\x4f\xe5\xba\xbd\x72\x52\x6f\x6d\x75\x76\xe8\x81\xdd\xc3\x39\x41\x17\xf1\x23\xa9\xa1\xd0\xd1\x75\xb3\x39\xb6\x5a\x8a\x4f\x8c\xb6\xdd\xf7\x8c\x63\x1b\x5f\x98\xb2\xc9\xab\x8f\xef\x7a\x4c\xdf\xf8\xe0\x22\xdc\xc9\x77\xa6\x2c\xea\xb8\x00\xed\x2b\x56\x87\x96\x06\x8c\xdd\x5e\x19\xb3\xb9\x32\x89\x9f\xed\xf5\xf6\x78\x12\x2d\xdf\xdb\x34\x3b\x70\x95\xd8\xdb\x61\x7f\x5b\x7b\x64\xb7\xb0\x47\xdc\xdb\xb7\x3c\xc8\xed\xec\x33\x6e\xb7\x27\x7e\xb3\xf8\x12\x3b\xa1\xc3\xe7\x40\x23\x09\x55\x07\xa7\x2f\x42\x6c\xf8\xac\x65\x24\xa1\xbd\x69\x5e\x98\xdc\x88\x83\x8e\x91\x34\x37\x63\x0e\x01\x5e\xa0\xe0\x39\x2f\x52\x94\xdb\x1c\x3d\x79\xae\x40\xe3\x44\xe2\x25\x9a\x7d\xc8\x08\x89\x63\x5c\x90\xb8\x2c\x2c\x5a\x87\xc6\x75\x95\xcc\x63\x24\x5c\x54\x04\x2a\xd1\xc2\xfe\xdf\x36\x23\x55\x1f\x82\xc7\xaf\x8d\x61\x49\x6b\xce\xe0\x45\x21\x77\x5d\x4a\x8f\x1b\xfe\xd5\x37\x4c\x52\x58\x47\x69\x75\x56\x1b\x8a\x94\xb1\x17\x94\x3a\x0d\xdb\x55\xda\x5b\x32\x1b\x4a\xe7\xe0\x8c\xaf\x1f\x39\x6d\xb8\xde\x3b\x78\xe6\x97\x35\x7f\x7b\x8d\x95\x2b\x05\xfe\xf8\xf3\xea\x7f\x01\x00\x00\xff\xff\x78\x47\xff\x36\xbe\x3d\x00\x00") func operatorsCoreosCom_installplansYamlBytes() ([]byte, error) { return bindataRead( @@ -145,7 +145,7 @@ func operatorsCoreosCom_installplansYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_olmconfigsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x7b\x6f\xdb\xc8\x11\xff\xdf\x9f\x62\xc0\x1e\x10\x2b\x91\x28\x3b\x29\xd2\x8b\x8a\x20\x08\x94\xfa\x10\x24\xee\x05\xb1\x9b\x02\xb5\xdc\xde\x90\x1c\x92\x7b\x5e\xee\xf2\xf6\x61\x5b\xf7\xf8\xee\xc5\xec\x92\x14\x65\x4b\x8e\x81\xbb\xf3\x3f\x16\x77\x67\x67\xe7\xf9\x9b\x99\xc5\x56\x7c\x21\x63\x85\x56\x0b\xc0\x56\xd0\xad\x23\xc5\x5f\x36\xbd\xfa\xd6\xa6\x42\xcf\xaf\x8f\x0f\xae\x84\x2a\x16\xb0\xf4\xd6\xe9\xe6\x33\x59\xed\x4d\x4e\xef\xa8\x14\x4a\x38\xa1\xd5\x41\x43\x0e\x0b\x74\xb8\x38\x00\x40\xa5\xb4\x43\x5e\xb6\xfc\x09\x90\x6b\xe5\x8c\x96\x92\xcc\xac\x22\x95\x5e\xf9\x8c\x32\x2f\x64\x41\x26\x30\xef\xaf\xbe\x3e\x4a\x5f\xa5\x47\x07\x00\xb9\xa1\x70\xfc\x5c\x34\x64\x1d\x36\xed\x02\x94\x97\xf2\x00\x40\x61\x43\x0b\xd0\xb2\xc9\xb5\x2a\x45\x65\x53\xdd\x92\x41\xa7\x8d\x4d\x73\x6d\x48\xf3\xbf\xe6\xc0\xb6\x94\xf3\xcd\x95\xd1\xbe\x5d\xc0\x4e\x9a\xc8\xab\x17\x10\x1d\x55\xda\x88\xfe\x1b\x60\xc6\x97\x84\xdf\x51\xf1\xef\x3f\x9e\x2e\xc3\x95\x61\x4d\x0a\xeb\x3e\x6c\xaf\x7f\x14\xd6\x85\xbd\x56\x7a\x83\x72\x2c\x64\x58\xb6\x42\x55\x5e\xa2\x19\x6d\x1c\x00\xd8\x5c\xb7\xb4\x80\xa5\xf4\xd6\x91\x39\x00\xe8\x8c\xd1\xc9\x31\xeb\x14\xbe\x3e\xee\xc4\xb2\x79\x4d\x0d\xf6\x42\x02\xab\xa6\xde\x7e\x7a\xff\xe5\xc5\xd9\x9d\x0d\x80\x82\x6c\x6e\x44\xeb\x82\x69\x07\x31\x41\x58\x40\x30\x9d\x03\xf9\x47\xab\x95\x15\x99\x24\x28\xb5\x81\x28\x98\x37\x42\x55\x7c\x26\x1d\xf1\x73\x6b\x96\x54\x67\x3f\x52\xee\x46\xcb\x86\x7e\xf2\xc2\x50\x31\xbe\x9a\x05\xef\x03\x62\xb4\xdc\x1a\xf6\x84\x1b\x59\x39\xfe\x8d\xc2\x6f\x6b\xfd\x8e\x0e\x4f\x58\xd1\x48\x07\x05\x47\x1e\x59\x70\x35\xf5\x26\xa3\xa2\xb3\x0e\xe8\x12\x5c\x2d\x2c\x18\x6a\x0d\x59\x52\x31\x16\x79\x19\x55\xa7\x40\x0a\x67\x64\xf8\x20\xd8\x5a\x7b\x59\xb0\xe2\xd7\x64\x1c\x18\xca\x75\xa5\xc4\xcf\x03\x37\x0b\x4e\x87\x6b\x24\x3a\xb2\x0e\x84\x72\x64\x14\x4a\xb8\x46\xe9\x69\x0a\xa8\x0a\x68\x70\x0d\x86\x98\x2f\x78\x35\xe2\x10\x48\x6c\x0a\xa7\xda\x10\x08\x55\xea\x05\xd4\xce\xb5\x76\x31\x9f\x57\xc2\xf5\xc9\x95\xeb\xa6\xf1\x4a\xb8\xf5\x3c\xe4\x89\xc8\x3c\xc7\xea\xbc\xa0\x6b\x92\x73\x2b\xaa\x19\x9a\xbc\x16\x8e\x72\xe7\x0d\xcd\xb1\x15\xb3\x20\xac\x0a\x09\x96\x36\xc5\x5f\x7a\x6f\xda\x27\x77\xcc\x17\x5d\x66\x1d\xbb\x73\x6b\x2b\xc4\xf4\x83\xb6\xe6\xe8\x8e\xb1\x12\x8f\x47\x5d\x36\x26\xe5\x25\xb6\xca\xe7\x7f\x9c\x9d\x6f\xc2\x29\x98\x3d\x5a\x78\x43\x6a\x37\xc6\x66\x43\x09\x55\x92\x89\x94\xa5\xd1\x4d\xe0\x42\xaa\x68\xb5\x50\x2e\x7c\xe4\x52\x90\x72\x60\x7d\xd6\x08\x67\x43\x80\x91\x75\xec\x87\x14\x96\x01\x5b\x20\x23\xf0\x6d\x81\x8e\x8a\x14\xde\x2b\x58\x62\x43\x72\x89\x96\xfe\x74\x53\xb3\x45\xed\x8c\xcd\xf7\x78\x63\x8f\xa1\xf1\xfe\x81\x7b\x09\x05\xd0\xc3\xd7\x5e\xef\x0c\xd9\x7c\xd6\x52\xce\x5e\x62\xb3\xf1\xa9\x90\xc3\xa8\x46\xe9\xde\xbb\x26\x7d\xec\xe5\xfb\xd3\x94\xff\x4a\x42\x36\xcd\x8e\x9d\x3b\x22\x9e\x74\x84\x01\xfb\x51\xa8\x28\x23\xe3\x26\xe7\x61\x0f\x33\xc8\xb8\xf3\xfd\xc7\xd3\x81\xef\x5d\x31\xbf\x22\xea\xd7\xc4\x0d\x62\x09\xcb\xd7\x2c\x75\x2b\xa8\x58\x9e\x7d\xd9\x43\x76\x47\xfe\x77\x77\x4f\xb1\x99\xbd\xa5\x82\xe1\xa0\x63\xc9\x92\x3f\xb1\x90\x44\x22\x58\x9e\x7d\x49\x7a\x45\x82\x23\x86\xba\x03\x42\x59\x87\x52\x52\x01\xd8\xc7\x78\x00\xfc\x88\xff\x53\xb8\xa9\xc9\x10\xe0\xf6\x72\x31\x30\xe0\xbb\xb5\xe2\xf4\x42\x07\x35\x5a\xc8\x88\xd4\x88\xa9\x50\xc1\xe9\x1d\xf5\x77\x5c\xf5\x22\xad\x43\x53\x91\xb3\x80\x52\xc6\x72\xd7\x62\xce\x80\xf4\xef\x9a\x14\x18\x22\xc5\x6a\x14\xd3\xe0\x82\x1b\x21\x25\xc3\x1f\xd7\x5e\x0a\x42\x8e\x14\xb3\x49\xd0\x88\x30\xaf\xf7\x09\xb9\xcb\x75\x1b\xf7\x65\x5a\x4b\x42\xb5\x93\xa6\xc5\xfc\x0a\x2b\x8a\x20\x71\xb6\x56\xf9\x7b\xc6\xd8\x6b\x94\x8f\xf2\xd4\xa7\x7d\xa7\xb7\x3c\x16\xea\x45\xcc\x93\xb5\xca\x23\x8a\x33\x0d\x6b\xd5\xdd\x6f\x6c\x60\x01\xad\x2e\x6c\xda\xb3\x1d\xad\x41\x4b\x46\xe8\x42\xe4\x28\xe5\x1a\xf2\x9a\xf2\xab\xc8\xd0\xa1\xf3\x96\xc3\x7a\x89\x0e\xa5\xae\xce\x22\x1a\xff\x3d\x82\x1c\xe7\xa5\x28\x45\x57\xac\x22\x0f\xf0\xdc\x0e\x40\xe1\x4d\x2c\x4d\xa5\x36\x0d\x3a\x38\xa4\xb4\x4a\x21\x79\x79\xd4\x24\x93\x14\x4e\x74\x07\x93\x2d\x1a\x6c\xc8\x91\x99\x82\x56\x72\x0d\xb5\xf6\xc6\xc2\x61\x52\x27\x93\x29\x34\x42\x79\x47\xfc\xd9\xf0\x27\x97\x23\x4b\xb9\x56\x05\x2f\xd9\x64\x12\x30\x37\xa3\x41\x8c\xa2\xf3\x3e\xc3\xe8\xb0\x36\x1d\xcb\x56\x50\x89\x5e\xba\xa1\xf0\x45\xe4\x1f\x68\xe1\x46\xb8\x5a\xa8\x78\x62\x6c\xa4\x87\x03\x60\x07\x30\x8e\x23\xc0\x71\x55\x5d\xc0\x7f\x0f\x2f\x8e\x66\xaf\x2e\x9f\x1d\xae\xd2\xf8\x63\xf2\xe6\xd0\xfe\xda\xfc\x5a\x4f\x26\xcf\xbe\xd9\x06\xc9\x60\xf5\x47\xc2\x64\xf4\x50\x0f\x94\xf1\xeb\xcf\x86\x4a\xf6\x81\x18\x35\xc1\xbb\x98\xa2\x31\xb8\xde\xb1\x2b\x1c\x35\xfb\xe0\x6c\xac\x61\xb2\xec\x2f\xd9\xe0\x6c\x41\x0e\x85\x8c\xfa\x31\x68\x20\x7b\xce\xc5\xa6\x88\x20\xf7\xc6\x84\xea\xea\x38\xcb\xfb\x4e\xe9\xed\xa7\xf7\xd0\x37\xf5\x29\xcc\x66\x33\x38\x0f\xa1\xeb\x8c\xcf\x1d\xdb\x8d\xf3\x45\x15\x54\x04\xae\x85\x30\xa1\xd5\xb1\xcc\x9c\x6d\x18\xd4\xe8\xa1\xad\x14\x24\x0b\xf6\x68\x0d\x69\x34\x75\xba\x31\x45\x0a\x21\xac\xe9\x16\x9b\x56\xd2\x14\x56\x2a\x58\x02\x4e\xb4\xee\x9c\x14\xef\xfc\x05\xe6\x73\xf8\x3c\x74\x10\x81\xb1\xce\x38\xce\xe2\x5c\x11\x9a\x39\x28\xb5\x7e\x62\xb7\x55\x4a\xf9\xe0\x07\xa5\x6f\xd4\xae\xdb\xc3\x5d\x68\x68\x01\xab\xe4\xed\x35\x0a\xc9\xf8\xb7\x4a\xa6\xb0\x4a\x3e\x19\x5d\x19\xb2\x9c\x97\xbc\xc0\x79\xb4\x4a\xde\x51\x65\xb0\xa0\x62\x95\x30\xdb\x67\x2d\xba\xbc\x3e\x25\x53\xd1\x07\x5a\xbf\x0e\xcc\x86\xe5\x33\x67\x78\x88\x58\xbf\x6e\x78\x3f\xac\x73\xb5\x3b\x5f\xb7\xf4\xba\xc1\x76\x58\x38\xc5\x76\x38\x3c\x78\xcf\xc2\xc5\x25\xb7\x09\xd7\xc7\xe9\xc6\xa3\x3f\xfc\x68\xb5\x5a\xac\x92\x8d\xfc\x53\xdd\x70\x64\xb4\x6e\xbd\x4a\x60\xeb\xd6\xc5\x2a\x09\xf7\xf6\xeb\xbd\x90\x8b\x55\xc2\x37\xf1\xb2\xd1\x4e\x67\xbe\x5c\xac\x92\x6c\xed\xc8\x4e\x8f\xa7\x86\xda\x29\x57\x85\xd7\x9b\x1b\x56\xc9\x0f\xec\x93\xf9\x1c\xb4\xab\xc9\x44\x67\x5a\xf8\x2d\xd9\x19\x8b\x5f\xa9\xcc\xfb\x86\x83\xcd\xdf\x0c\x24\x5a\x77\x6e\x50\x59\xd1\x0f\x7c\x7b\x49\x1b\xb2\x16\xab\xfd\xfb\x86\xd0\xea\xdd\x15\x86\xb7\x63\x34\xec\xdd\x66\x5d\x76\x57\xa7\xaf\xf4\x17\xb0\x43\x87\x7d\x94\x77\xd2\xf7\xfe\xc1\x1e\xa3\x78\x07\x1c\x2f\x84\xa4\x1d\x62\xc2\x0d\xd4\x9c\x8b\xdc\x3e\x73\x8a\x77\x88\xe6\x34\xa0\x0a\x7e\x4b\xbb\xfc\x8d\xb3\x4d\x46\xdc\x60\x44\xc4\xf6\xaa\x20\x23\xd7\x5c\x7d\x36\x5c\xf3\x1a\x55\xc5\x95\x01\xde\x97\xb1\x71\x10\x36\x14\x88\x2b\x4e\xa4\x50\x1c\x54\x57\xb2\x98\x47\x90\x6b\xe0\xc8\xd8\x11\x73\xbe\x63\x13\xc6\x86\x3c\xa7\xd6\x71\x76\xed\xab\x0a\x8f\xaa\x0b\xd0\x55\xc6\x05\x70\xb3\x3f\x73\xfb\xc3\xa3\x0b\x8e\x47\x1a\xbe\xa3\x8e\x03\x4e\xed\x1b\xe4\x6e\x08\x8b\xd0\xd4\x0d\x7b\x8a\x4b\x7d\x18\x74\x7a\x48\xc5\x4c\xfb\x08\x72\x1b\x3f\x74\xa6\xee\xaa\x2c\x2a\x08\xf9\xd9\xa9\xf5\x3b\x95\x6f\xf0\xf6\x23\xa9\xca\xd5\x0b\x78\xf1\xfc\x6f\x2f\xbf\xdd\x43\x18\x81\x91\x8a\xef\x48\x51\x6c\x28\x1e\x69\x86\xfb\x07\x47\x53\x5b\xd0\x33\xed\x87\x97\xb4\xda\xd0\xc4\xd6\x72\x2b\x2e\x6f\xd0\x82\x25\x07\x19\x72\xc3\xe5\x5b\xb6\x0b\x03\x7d\xe8\x51\x55\x4e\x53\x10\xe5\x6e\x66\x62\x00\x70\xb9\x86\xe3\xe7\x53\xc8\x3a\x13\xdf\x87\xef\x8b\xdb\xcb\x74\x87\xc8\xc2\xc2\xab\xe9\x1d\x79\xb8\x61\xf6\xa1\xe8\x71\xe0\x84\x96\x25\xbc\x75\x70\xdd\xea\xda\x9a\x1d\x95\x90\x06\x79\xbf\xe6\x38\xae\x87\x55\x78\xb0\xd9\xfd\xd7\x87\xad\x50\xee\xe5\x5f\xf7\xfb\x57\x28\xd1\xf8\x66\x01\x47\x7b\x48\x22\xa4\x3d\xd2\x9b\x91\x78\xd3\x08\x20\x43\x57\x65\xb0\x69\xd0\x89\x1c\x44\xc1\x73\x6c\x29\xc8\x8c\x43\x9b\x95\xee\x0e\x96\xa1\xdf\x1c\x59\xf1\x89\xed\x70\x68\x14\xec\x9f\x8c\x2e\x7c\xce\xb3\xbc\x2e\xfb\x9e\x30\x1f\x03\x14\x0f\xc8\x21\x1b\xba\x96\x9b\x6e\xd9\xe8\xc3\x63\x48\x7c\x2f\x21\x54\x42\x55\xb6\xbb\x52\xd8\x08\x20\xb1\xea\xde\xd4\x14\x4a\xcf\xd0\x7a\x5a\xae\xd8\x7c\x85\x15\x05\x19\x9e\xa1\xa0\xf2\x68\x50\x39\xa2\x82\xe1\x87\x53\x70\x68\x53\x07\xc8\xc3\xcd\xb3\x40\x9f\x8d\x31\x55\x23\x58\xb1\x88\xdd\x53\x42\xc8\xd8\x3f\x2e\x55\x8f\x8f\x9e\x3f\xe8\xf2\x81\x6e\x2f\xd1\xa6\x1d\xbe\x78\x3b\xfb\x0f\xce\x7e\xbe\x3c\xec\x7e\x1c\xcd\x5e\xfd\x6f\xba\xb8\x7c\x3a\xfa\xbc\x9c\xbc\xf9\x66\x0f\xa7\xdd\x3d\xf2\x9e\xf0\xd9\x8c\x31\x5b\x41\x30\x0d\x15\x46\x97\x70\x6e\x3c\x4d\xe1\x04\xa5\xa5\x29\xfc\x4b\x85\xd2\xf0\x3b\x8d\x46\xca\x37\xfb\xa5\xe3\xaa\x9c\xf0\xad\xbb\x9b\x8f\x81\x24\x88\xf4\x30\x4d\x27\xee\x43\x03\xca\xe3\x8c\x14\xda\xb6\xf8\x80\xd1\x23\xcd\xe8\xf9\x09\x02\xe2\x71\x5b\x9a\x76\x1d\x6e\x9a\xeb\x66\x3e\x7a\x9e\xe2\xd6\xfa\x14\xd5\x1a\x36\xb0\x16\x9b\xd2\xbb\x91\x6e\x1d\x63\x13\xe6\x46\x5b\x3b\x4c\x26\x16\xa4\xb8\x22\x18\x3a\xd7\x08\x96\x19\xe5\x18\x7a\x71\x93\x09\x67\xd0\xac\x47\xa3\x07\xe4\xa8\xc2\x6b\x99\xa5\xd2\x4b\x38\xb4\x44\x90\x2a\x5d\xd0\x7d\x74\x9d\x44\x0c\xc5\x4c\x48\xe1\xd6\x71\x68\xce\xb5\x2a\xa5\xe8\x46\x80\xa6\xd5\xc6\xa1\x72\x31\xdd\x0c\x55\x74\x0b\xc2\x41\xc3\xfd\x26\x85\xe9\xea\xb0\x50\xf6\xf8\xf8\xf9\x8b\x33\x9f\x15\xba\x41\xa1\x4e\x1a\x37\x9f\xbc\x39\xfc\xc9\xa3\x0c\xb3\xe3\x3f\xb1\xa1\x93\xc6\x4d\xfe\xb8\xb2\x78\xfc\xf2\x11\x59\x74\x78\x11\x73\xe5\xf2\xf0\x62\xd6\xfd\x7a\xda\x2f\x4d\xde\xf0\xac\xf9\xd0\xfe\xe4\x29\xeb\x30\xca\xc0\xcb\x8b\xd9\x26\xfd\xd2\xcb\xa7\x93\x37\xa3\xbd\x49\x9f\x8c\xb1\x4e\x2d\xc0\x19\xdf\x37\x2d\xd6\x69\xc3\x4d\xca\xd6\x9a\xcf\x06\xf7\x6e\x82\xb0\xcb\x5c\xf8\xe5\xb7\x83\xff\x07\x00\x00\xff\xff\xd5\xa6\x3c\x8a\x9d\x19\x00\x00") +var _operatorsCoreosCom_olmconfigsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x7b\x6f\xdc\xc6\x11\xff\x3b\xfa\x14\x03\x36\x40\xee\x9c\x3b\x4a\x72\x02\x37\xbe\xc2\x30\x0c\xb9\x0a\x0c\x5b\xb5\x61\xa9\x2e\x50\x45\x6d\x86\xdc\x39\xde\x46\xe4\x2e\xb3\x0f\x49\x97\x38\xdf\xbd\x98\x5d\xbe\xa4\x3b\x9e\x54\x58\x2d\xff\xb0\x8f\xfb\x98\xf7\xfc\x66\x86\xc2\x5a\x7e\x22\x63\xa5\x56\x0b\xc0\x5a\xd2\x8d\x23\xc5\x6f\x36\xbd\xfc\xc1\xa6\x52\xef\x5f\x1d\xee\x5d\x4a\x25\x16\x70\xe4\xad\xd3\xd5\x47\xb2\xda\x9b\x9c\x5e\xd3\x52\x2a\xe9\xa4\x56\x7b\x15\x39\x14\xe8\x70\xb1\x07\x80\x4a\x69\x87\xbc\x6c\xf9\x15\x20\xd7\xca\x19\x5d\x96\x64\xe6\x05\xa9\xf4\xd2\x67\x94\x79\x59\x0a\x32\x81\x78\xcb\xfa\xea\x20\x3d\xfc\x3e\x3d\xd8\x03\x50\x58\xd1\x02\x74\x59\xe5\x5a\x2d\x65\x61\x53\x5d\x93\x41\xa7\x8d\x4d\x73\x6d\x48\xf3\x7f\xd5\x9e\xad\x29\x67\x06\x85\xd1\xbe\x5e\xc0\xd6\x33\x91\x56\x2b\x07\x3a\x2a\xb4\x91\xed\x3b\xc0\x9c\x99\x84\xdf\x51\xbf\xf7\xef\x4e\x8e\x02\xcb\xb0\x56\x4a\xeb\xde\xde\x5e\x7f\x27\xad\x0b\x7b\x75\xe9\x0d\x96\x43\x21\xc3\xb2\x95\xaa\xf0\x25\x9a\xc1\xc6\x1e\x80\xcd\x75\x4d\x0b\x38\x2a\xbd\x75\x64\xf6\x00\x1a\x9d\x1b\x39\xe6\x8d\xc2\x57\x87\x8d\x58\x36\x5f\x51\x85\xad\x90\xc0\xaa\xa9\x57\x1f\xde\x7c\xfa\xee\xf4\xce\x06\x80\x20\x9b\x1b\x59\xbb\x60\xc1\x4e\x4c\x90\x16\x10\x4c\xe3\x27\xfe\x51\x6b\x65\x65\x56\x12\x2c\xb5\x81\x28\x98\x37\x52\x15\x7c\x27\x1d\xd0\x73\x6b\x96\x54\x67\xbf\x50\xee\x06\xcb\x86\x7e\xf5\xd2\x90\x18\xb2\x66\xc1\x5b\xbf\x0f\x96\x6b\xc3\x9e\x70\x03\x2b\xc7\x67\x10\x65\xb7\xd6\xef\xe8\xf0\x79\x7e\x67\x17\x80\x55\x8f\x37\x41\x70\xc8\x91\x05\xb7\xa2\xd6\x88\x24\x1a\x7b\x81\x5e\x82\x5b\x49\x0b\x86\x6a\x43\x96\x54\x0c\x42\x5e\x46\xd5\xa8\x94\x6e\x10\x3f\x25\xc3\x84\xc0\xae\xb4\x2f\x05\x9b\xe6\x8a\x8c\x03\x43\xb9\x2e\x94\xfc\xad\xa3\x6e\xc1\xe9\xc0\xb6\x44\x47\xd6\x81\x54\x8e\x8c\xc2\x12\xae\xb0\xf4\x34\x03\x54\x62\x83\x76\x85\x6b\x30\xc4\x7c\xc1\xab\x01\xc5\x70\xc5\x6e\xca\x72\xa2\x0d\x81\x54\x4b\xbd\x80\x95\x73\xb5\x5d\xec\xef\x17\xd2\xb5\x59\x98\xeb\xaa\xf2\x4a\xba\xf5\x7e\x48\x28\x99\x79\x8e\xf6\x7d\x41\x57\x54\xee\x5b\x59\xcc\xd1\xe4\x2b\xe9\x28\x77\xde\xd0\x3e\xd6\x72\x1e\x94\x51\x21\x13\xd3\x4a\xfc\xa9\x8d\x07\x7b\x87\x71\xf4\xb9\x75\x1c\x0f\xb7\xb6\x42\x52\xfc\x97\xce\xe2\x84\x89\xe1\x17\x09\x46\x65\x7b\x9f\xf0\x12\x9b\xf1\xe3\x5f\x4f\xcf\xfa\x08\x0d\x7e\x8b\x2e\xea\x8f\x6e\xb1\x50\xeb\x2d\xb6\xac\x54\x4b\x32\xf1\xe6\xd2\xe8\x2a\x50\x25\x25\x6a\x2d\x95\x0b\x2f\x79\x29\x49\x39\xb0\x3e\xab\xa4\xb3\x21\x86\xc9\x3a\x76\xe4\x26\xe1\xa3\x80\x5a\x90\x11\xf8\x5a\xa0\x23\xb1\x79\xe4\x8d\x82\x23\xac\xa8\x3c\x42\x4b\xff\x77\xdf\xb1\x8f\xec\x9c\x1d\xf2\x60\xef\x0d\x31\x79\xf3\xc2\x46\x8a\x03\xb4\x80\x3a\xea\xee\x0e\x5f\x4e\x6b\xca\xd9\xc9\x6c\x65\xbe\x15\x50\x05\xd5\x00\x80\x5a\xcf\xde\x35\xd4\x28\xf3\x71\xe0\xe0\x67\x49\xc8\x96\xd9\xb2\x73\x47\xc4\xe3\xe6\x60\x28\x3a\x28\x55\x94\x91\x91\x9c\x71\xa0\x05\x3e\x64\x24\x7c\xff\xee\xa4\xa3\xbb\xe9\xcf\x9d\xa2\xde\x27\x6e\x10\x4b\x5a\x66\x73\xa4\x6b\x49\xe2\xe8\xf4\xd3\xc8\xb1\xfb\x33\xaa\x7d\x5e\xdf\x25\xc8\x1e\xf0\x96\x04\x23\x53\xc3\x8d\x95\xfa\xc6\x42\x12\x0f\xc1\xd1\xe9\xa7\xa4\xd5\x71\x94\x2e\xfb\xae\x2b\x9e\x20\x95\x75\x58\x96\x24\x00\xdb\x2c\x0a\x55\x2b\x16\xb1\x19\x5c\xaf\xc8\x10\x60\xbb\x3c\x4a\x35\x1c\x17\x1d\x61\x96\x55\x2b\x4e\x74\x74\xb0\x42\x0b\x19\x91\x1a\x30\x93\x0a\x50\x8d\x12\x7b\xdf\x50\xf9\x91\x4b\x7d\xa4\xe1\xd0\x14\xe4\x2c\x60\x59\xc6\x1a\x5f\x63\xbe\xdd\x8f\xf1\xf9\xc7\x8a\x14\x18\x22\xc5\x66\x12\xb3\xe0\xfd\x6b\x59\x96\x8c\xf4\x86\xd0\x51\x50\x76\x60\x38\x9b\x04\xcb\x10\xe6\xab\x51\xa2\xb7\x6c\xd3\x2b\x3b\x26\x45\x8c\xa8\x4c\xeb\x92\x46\x94\xad\x31\xbf\xc4\x82\x22\xcc\x9d\xae\x55\xfe\x86\xcb\xcc\x15\x96\x5f\x1a\x3c\x1f\xc6\x08\xdf\x0a\xa2\x50\x5d\x63\x56\xaf\x55\x1e\x6b\x1c\x9f\x59\xea\x71\x47\x37\x22\x1b\x1b\x48\x43\xad\x85\x4d\x5b\x76\x83\x35\xa8\xc9\x48\x2d\x64\x8e\x65\xb9\x86\x7c\x45\xf9\x25\x33\x1a\x8f\x1f\x87\xce\x5b\x4e\xda\x23\x74\x58\xea\xe2\x34\xd6\xae\xbf\x44\xc4\x67\xd4\x91\x4b\xd9\xb4\x02\x91\x36\x78\x6e\xbf\x40\x78\x13\x0a\xff\xae\x80\xaf\xd0\xc1\x84\xd2\x22\x85\xe4\xd9\x41\x95\x4c\x53\x38\xd6\x4d\x2d\xa9\xd1\x60\x45\x8e\xcc\x0c\xb4\x2a\xd7\xb0\xd2\xde\x58\x98\x24\xab\x64\x3a\x83\x4a\x2a\xef\x36\x0a\x68\xff\x4c\x92\x8a\x8f\xa1\x12\x60\x29\xd7\x4a\xf0\x4d\x9b\x4c\x43\xc1\xca\xa8\x13\x5b\xa4\x31\x20\xb9\xe6\x74\x6b\xb3\x9d\x06\x69\x74\x14\xb4\x44\x5f\xba\xae\x1d\x89\xe5\xb5\xa3\x01\xd7\xd2\xad\xa4\x8a\x56\x19\x3a\x61\x77\x4c\x6e\x29\x1f\x43\x0f\x3b\xee\x75\x16\xf0\xaf\xc9\xf9\xc1\xfc\xf9\xc5\xb7\x93\x9f\xd2\xf8\x63\xfa\x72\x62\x3f\x57\x9f\x57\xd3\xe9\xb7\x5f\xef\x6d\x7a\xef\x81\xc5\x24\x7a\xba\x2d\x27\xf1\xed\x7f\x5d\x50\xd8\x37\x72\x30\xa3\x6c\x23\x8a\xc6\xe0\x7a\xcb\xae\x74\x54\x8d\x81\xfe\x83\xd2\xf1\xa8\x65\xde\x57\x29\x41\x0e\x65\x19\xf5\x66\x9c\x44\xf6\xa8\x8b\x2d\x2d\x41\xee\x8d\x09\xad\x8c\x63\xa0\x6a\xfb\xdc\x57\x1f\xde\xc0\xc7\x11\xb3\xb4\xcf\x7c\x3e\x26\xc4\x59\x48\x23\x67\x7c\xee\xd8\xf6\x9c\xeb\x4a\x90\x08\x12\x08\x69\x42\xd3\x6a\x59\x10\xf6\x43\x30\x45\x5b\x11\x96\x92\x4a\xc1\x51\xb1\x82\x34\xba\x2b\xed\xcd\x99\x42\x48\x25\xba\xc1\xaa\x2e\x69\xb6\xb7\x37\xc2\xfe\x2b\xb6\x31\x1c\x6b\xdd\xb8\x3f\x4a\xf2\xfb\xd8\x69\xfe\x67\x7f\x1f\x3e\x76\xbd\x61\x90\x44\x67\x1c\xdc\x71\xd6\x0c\x7d\x3e\x2c\xb5\xfe\xc6\xde\xb6\xd7\x98\x69\x5a\x9a\x6f\x95\xbe\x56\xdb\x34\x09\x12\xa2\xa1\x05\x24\xaf\xae\x50\x96\x5c\x39\x92\x19\x24\x1f\x8c\x2e\x0c\x59\x06\x9b\x24\xe6\x7a\xf2\x9a\x0a\x83\x82\x44\x72\x0f\xaf\x6f\x6b\x74\xf9\xea\x84\x4c\x41\x6f\x69\xfd\x82\x39\x3c\xe8\xc6\xa9\x33\x3c\xbc\xae\x5f\x54\x7c\xf5\xbe\x2b\xdc\xee\x9c\xad\x6b\x7a\x51\x61\xfd\x90\xb3\x27\x58\x3f\x44\x9a\x2e\x6c\x2d\x9c\x5f\x70\x77\x79\x75\x98\xf6\xa1\xfc\xf3\x2f\x56\xab\x45\xd2\xdb\x6f\xa6\x2b\xce\x94\xda\xad\x13\xb8\xa5\xc4\x22\x09\x5a\x34\xab\xad\x31\x16\x09\xf3\x4f\x38\x6b\x9d\xce\xfc\x72\x91\x64\x6b\x47\x76\x76\x38\x33\x54\xcf\xb8\xc4\xbf\xe8\x69\x27\x3f\x8f\x07\x56\xa3\x99\x76\x2b\x32\x31\x56\xc7\xf0\xfa\xab\x3f\xb6\x6e\xdc\xd3\xf8\x8d\x4d\xc3\xfd\x33\x87\x12\xad\x3b\x33\xa8\x6c\x10\xf7\x4c\x56\x63\x86\xe5\x11\xda\x5a\x1c\xf5\xe9\x1c\x0c\xa1\x1d\x2d\x66\xf3\x06\x2f\x47\xb7\x47\x7d\x7a\x5f\xfb\x0a\x5b\x74\x18\x3b\xf9\xf0\x36\x64\x1b\xd5\x16\xf9\x79\x07\x1c\x2f\x04\xc8\xeb\x02\xcb\x75\xa7\x19\x9d\x78\xd2\x63\x80\x6c\xea\x84\xd3\x80\x2a\xb8\x7a\xbc\xf5\x6b\xb1\x2e\x4e\xf8\x19\x71\x0f\x1b\x2b\xa4\x57\x82\x4c\xb9\xe6\xae\xa1\xe7\x97\xaf\x50\x15\x5c\xa1\xe1\xcd\x32\xf6\x9a\xd2\x86\x42\x7d\xc9\x40\x11\x8a\xb4\x6a\x5a\x0d\xa6\x11\x24\xee\x28\x32\x26\x47\x7c\x6c\xc8\x84\x59\x38\xcf\xa9\x76\x0c\x1f\xe3\x42\x3e\xa0\x0e\xb7\x9d\xcb\x02\x78\x42\x9d\xbb\xf1\xa8\x6a\x62\xea\x31\xfc\xd5\x90\x8a\x23\xfd\xca\x57\xc8\x5d\x34\x8a\x30\x6c\x74\x7b\x8a\xfb\xba\x30\xda\xb7\x75\x0c\x33\xed\x63\xb5\xe8\xdd\x77\xaf\x87\x9a\x26\x09\x15\x04\xd8\x68\xac\xf1\x85\x36\xab\xf0\xe6\x1d\xa9\xc2\xad\x16\xf0\xdd\xd3\x3f\x3f\xfb\x61\xe4\x60\x2c\x25\x24\x7e\x24\x45\xb1\x7f\x7c\x0c\xeb\x6d\x52\x1d\x7c\xde\x08\xe6\x49\xdb\x31\x3d\x2d\xfa\x33\x71\xc2\xb9\x95\x05\xd7\x68\xc1\x92\x83\x0c\xb9\x59\xf7\xf5\x6e\x73\x72\x09\x0e\xc3\x95\xca\x69\x06\x72\xb9\x9d\x8d\xec\x2a\x65\xb9\x86\xc3\xa7\x33\xc8\x1a\x9f\x6d\x16\xc3\xf3\x9b\x8b\x74\x8b\x32\xd2\xc2\xf3\xd9\x1d\x49\x79\xd2\xf3\xa1\x75\xe1\x30\xdd\x21\x24\xb7\xaa\xe1\xdb\x24\xf7\x1a\x4d\x3b\xbb\xa5\xd3\xa1\x4e\x93\xfb\x22\x81\x7b\x98\x62\xc7\x4c\xda\xa6\x8f\x54\xee\xd9\xf7\xe3\x01\x23\x95\xac\x7c\xb5\x80\x83\x91\x23\x11\x91\x1f\x23\x3c\x22\xa5\xbe\x0b\x44\x86\xe5\xc2\x60\x55\xa1\x93\x39\x48\x41\xca\x71\x5b\x6f\x86\x29\xc6\x16\x69\x2e\x2e\xc3\xd0\x32\x30\xfe\x37\xb6\x81\xd1\x07\x25\xdd\x07\xa3\x85\xcf\xc9\x84\xde\xa9\x19\x21\xf2\x21\xf2\xae\x6b\x8a\x59\xd9\x4c\x86\x74\xc3\xbe\xea\xbe\x60\x86\xde\xa7\x22\x54\x52\x15\xb6\x11\x46\xda\x88\x7f\xb3\x1d\x7c\xf9\xda\xf5\x8a\x42\x81\xee\x66\x18\xcb\xad\x16\x33\xb7\x52\x90\x21\x01\x08\x85\x47\x83\xca\x11\x09\xc6\xd5\xdd\xf0\xd1\x4d\x42\x1d\xca\x63\xff\xb9\xee\x5e\x24\x69\x00\x28\x22\x37\x2b\xdc\x7c\x0c\x0c\x38\xf4\x78\x00\x74\x78\xf0\x74\x67\xdc\x75\xe7\x76\x4c\xdb\xed\x2c\x76\xfe\x6a\xfe\x4f\x9c\xff\x76\x31\x69\x7e\x1c\xcc\x9f\xff\x7b\xb6\xb8\x78\x32\x78\xbd\x98\xbe\xfc\x7a\x84\xd2\xf6\x01\xad\x7f\x6e\xc5\x70\x3f\x8b\xdf\x0a\xb6\x59\x28\xc4\x7a\x09\x67\xc6\xd3\x0c\x8e\xb1\xb4\x34\x83\xbf\xab\x50\x27\xbf\xd0\x68\xa4\x7c\x35\x2e\x1d\x77\x36\x09\x73\x1d\xeb\xb7\x9b\x23\x41\xa4\xdd\x67\x1a\x71\x77\x4d\xc7\x8f\x90\xe8\x61\x94\x88\x1f\x20\x5b\x94\x1c\x7c\x4d\x86\x80\xd6\x3c\xbb\xa4\xcd\xdc\x94\xe6\xba\xda\xdf\xf1\xb5\x79\xa0\xc1\xe8\x80\xc7\xcf\x09\xaa\x35\xf4\x30\x1e\x47\x9a\xbb\xe9\x66\x1d\x23\x2e\xe6\x46\x5b\xdb\xcd\xd9\x16\x4a\x79\x49\xd0\x0d\x3e\xb1\x38\x64\x94\x63\x98\x0a\x4d\x26\x9d\x41\xb3\x1e\x0c\xd2\x90\xa3\x82\x6c\x17\xe0\x7b\x4b\x4b\x5f\xc2\xc4\x12\x41\xaa\xb4\xa0\xcd\x3a\x33\x8d\xd5\x04\x33\x59\x4a\xb7\x8e\x1f\xa5\x72\xad\x96\xa5\x6c\xc6\xd4\xaa\xd6\xc6\xa1\xda\xf2\x97\x9c\xfe\x39\x0b\x08\x59\xd0\x0d\x48\x07\x15\x0f\x19\x14\xbe\x2f\x4c\x84\xb2\x87\x87\x4f\xbf\x3b\xf5\x99\xd0\x15\x4a\x75\x5c\xb9\xfd\xe9\xcb\xc9\xaf\x1e\xcb\xf0\xf5\xe4\x6f\x58\xd1\x71\xe5\xa6\x8f\xd7\x71\x1c\x3e\x7b\x40\x2a\x4f\xce\x63\xc2\x5e\x4c\xce\xe7\xcd\xaf\x27\xed\xd2\xf4\xe5\xe4\xa7\x74\xe7\xfe\xf4\x09\xeb\x30\x80\x81\x8b\xf3\x79\x8f\x01\xe9\xc5\x93\xe9\xcb\xc1\xde\xb4\x45\x84\x58\xcb\x17\xe0\x8c\x6f\x7d\x66\x9d\x36\xdc\x36\xde\x5a\xf3\x59\x17\x12\x7d\x26\x34\xf0\x01\xbf\xff\xb1\xf7\x9f\x00\x00\x00\xff\xff\x31\x78\xbf\xa0\x3e\x1e\x00\x00") func operatorsCoreosCom_olmconfigsYamlBytes() ([]byte, error) { return bindataRead( @@ -165,7 +165,7 @@ func operatorsCoreosCom_olmconfigsYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_operatorconditionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x5f\x6f\x1b\xb9\x11\x7f\xf7\xa7\x18\xa8\x05\x62\xa7\xd2\x2a\x4e\x8a\xf4\x22\x20\x08\x82\x5c\x53\x04\x89\x2f\x41\xec\xde\x43\x2d\xb7\x99\x5d\x8e\x24\x9e\x77\xc9\x3d\x92\x2b\x5b\x77\xb8\xef\x5e\x0c\xb9\xff\x64\xad\x14\x1f\x92\x06\x6d\x41\xbe\x58\x22\x87\x43\x72\xfe\xff\x68\x0a\x4b\xf9\x23\x19\x2b\xb5\x9a\x01\x96\x92\x6e\x1d\x29\xfe\x66\x93\xeb\xef\x6c\x22\xf5\x74\x7d\x7a\x74\x2d\x95\x98\xc1\xab\xca\x3a\x5d\x7c\x24\xab\x2b\x93\xd1\xf7\xb4\x90\x4a\x3a\xa9\xd5\x51\x41\x0e\x05\x3a\x9c\x1d\x01\xa0\x52\xda\x21\x77\x5b\xfe\x0a\x90\x69\xe5\x8c\xce\x73\x32\x93\x25\xa9\xe4\xba\x4a\x29\xad\x64\x2e\xc8\x78\xe6\xcd\xd2\xeb\x47\xc9\xb3\xe4\xd1\x11\x40\x66\xc8\x4f\xbf\x90\x05\x59\x87\x45\x39\x03\x55\xe5\xf9\x11\x80\xc2\x82\x66\xa0\x4b\x32\xe8\xb4\xc9\xb4\x12\x7e\x79\x9b\x34\x5d\x36\xc9\xb4\x21\xcd\x7f\x8a\x23\x5b\x52\xc6\x3b\x58\x1a\x5d\x95\xdd\xb4\x2d\x9a\xc0\xb3\xd9\x28\x3a\x5a\x6a\x23\x9b\xef\x00\x13\xd0\x79\xe1\x3f\x07\x01\xbc\xaf\x79\xbc\x6a\x96\xf6\x63\xb9\xb4\xee\xed\xf0\xf8\x3b\x69\x9d\xa7\x29\xf3\xca\x60\x3e\xb4\x79\x3f\x6c\x57\xda\xb8\x1f\xba\xad\xf0\xd2\xd9\xd6\x22\x56\xaa\x65\x95\xa3\x19\x60\x71\x04\x60\x33\x5d\xd2\x0c\x3c\x87\x12\x33\x12\x47\x00\xb5\x64\x6b\x8e\x93\x5a\x7a\xeb\xd3\x7a\x01\x9b\xad\xa8\xc0\x66\x39\x60\xb6\xea\xe5\x87\x37\x3f\x3e\x39\xbf\x33\x00\x20\xc8\x66\x46\x96\xce\xeb\x69\xe7\x8c\x20\x2d\x60\x6d\x1b\xd0\x18\x07\xe8\x05\xb8\x4d\x49\xf0\x69\x87\xfe\x13\xdc\xac\x64\xb6\xe2\x69\x95\x25\x01\x4e\xf3\x51\xd7\xb4\x01\xa9\x16\xda\x14\x5e\xf9\xdc\xfb\xfe\xdd\x19\x60\xaa\x2b\x07\x6e\x45\x60\x1d\x3a\xcf\x16\x55\x2b\x82\xa4\xb7\x49\x5e\x6d\x06\x3a\xfd\x89\x32\xd7\xeb\x36\xf4\x73\x25\x0d\x89\xfe\x79\x58\x1a\x8d\xc9\xf6\xba\x4b\xc3\x7c\x5d\x4f\xff\xa1\xf5\x1c\x64\xab\xff\x8e\x60\x1e\xb0\xf4\x02\x1d\x08\xf6\x0d\xb2\x7e\xe3\xb5\x1e\x48\xd4\x22\xf7\xa2\x59\x49\x0b\x86\x4a\x43\x96\x54\xf0\x96\xe6\x68\xfe\x00\x09\x9c\x93\xe1\x89\x6c\x19\x55\x2e\x82\x84\x8c\x03\x43\x99\x5e\x2a\xf9\x4b\xcb\xcd\xb2\xa4\x78\x99\x1c\x1d\x59\x07\x52\x39\x32\x0a\x73\x58\x63\x5e\xd1\x18\x50\x09\x28\x70\x03\x86\x98\x2f\x54\xaa\xc7\xc1\x93\xd8\x04\xce\xb4\x21\x2f\xfc\x19\xac\x9c\x2b\xed\x6c\x3a\x5d\x4a\xd7\xb8\x7f\xa6\x8b\xa2\x52\xd2\x6d\xa6\xde\x93\x65\x5a\xb1\x17\x4d\x05\xad\x29\x9f\x5a\xb9\x9c\xa0\xc9\x56\xd2\x51\xe6\x2a\x43\x53\x2c\xe5\xc4\x6f\x56\x05\xd7\x2c\xc4\x1f\x4c\x6d\x13\xf6\xc1\x1d\xf1\x05\x95\x59\x67\xa4\x5a\x6e\x0d\x79\x6f\x3b\x28\x6b\xf6\xb7\x60\x78\x61\x7a\x38\x4b\x27\x52\xee\x62\xa9\x7c\xfc\xeb\xf9\x05\x34\x1b\x08\x62\x0f\x12\xee\x48\x6d\x27\x6c\x16\x94\x54\x0b\x32\x81\x72\x61\x74\xe1\xb9\x90\x12\xa5\x96\x2a\x18\x62\x96\x4b\x52\x0e\x6c\x95\x16\xd2\x59\x6f\x60\x64\x1d\xeb\x21\x81\x57\x3e\xfa\x41\x4a\x50\x95\x02\x1d\x89\x04\xde\x28\x78\x85\x05\xe5\xaf\xd0\xd2\x7f\x5c\xd4\x2c\x51\x3b\x61\xf1\xdd\x5f\xd8\xfd\xe0\xbd\x3b\x61\xc7\xa1\x00\x9a\xc0\xba\x57\x3b\x3b\x2e\x7f\x5e\x52\x06\x98\xe7\xfa\x86\x35\x96\xe5\x95\x75\x64\x00\x45\x21\xd5\x1e\xf7\x3f\xec\xf7\x75\x74\x18\x43\xa9\x1d\x9f\x1e\xf3\x7c\x03\x7a\x4d\xc6\x48\xc1\x9a\x0f\x73\x0c\x95\xda\x38\x12\x90\x6e\x3c\xa7\xa1\xa8\x71\xf0\xa0\xfb\x43\x42\x38\x72\x99\xeb\x4d\xc1\x16\xb4\x3b\xd8\x70\x45\x63\x70\x33\x30\x2a\x1d\x15\x83\xd3\x0e\x28\x8a\x5b\x7d\xc8\xa1\xfd\x7c\xc1\x92\x5b\xda\x1b\x75\x91\x9d\xad\x10\xa5\xb2\x20\xc8\xa1\xcc\x2d\x2c\xb4\x01\xad\x08\x90\x6d\xc0\x85\x48\x46\x90\x55\xc6\x78\x97\x68\x54\xe5\xbd\xe7\xe5\x87\x37\x6d\x3a\x48\x60\x32\x99\xc0\x05\x77\x5b\x67\xaa\xcc\xb1\xef\x72\xa8\x52\x82\x84\xe7\x2a\xa4\xf1\xf1\xc9\x32\x73\xd6\xb5\x3f\x06\x60\x30\x82\x85\xa4\x5c\x40\x89\x6e\x05\x09\xaf\x52\x71\xfa\x6e\xd3\x3f\xc0\x6b\x6d\x80\x6e\xb1\x28\x73\x1a\xc3\x5c\x85\xd4\xf3\x5a\xeb\x73\x4f\x5b\xaf\xf9\x2b\x4c\xa7\xf0\xb1\x75\xfb\x60\x13\xa9\x25\xb3\x0e\xe5\x8a\x37\x32\x58\x68\xfd\xc0\x6e\x1f\x29\xe1\x89\x6f\x95\xbe\x51\x43\xab\xfb\xb5\xd0\xd0\x0c\xe6\xa3\x97\x6b\x94\x39\xa6\x39\xcd\x47\x63\x98\x8f\x3e\x18\xbd\x34\x64\x39\x77\x73\x07\xc7\xe2\xf9\xe8\x7b\x5a\x1a\x14\x24\xe6\x23\x66\xfb\xa7\x12\x5d\xb6\x3a\x23\xb3\xa4\xb7\xb4\x79\xee\x99\xb5\xdd\xe7\xce\x70\x4d\xb2\x79\x5e\xf0\xb8\xef\xe7\x62\xe3\x62\x53\xd2\xf3\x02\xcb\xb6\xe3\x0c\xcb\x76\x72\xab\x3d\x0b\x97\x57\xec\xdb\xeb\xd3\xa4\xd3\xe8\xa7\x9f\xac\x56\xb3\xf9\xa8\xdb\xff\x58\x17\x6c\x19\xa5\xdb\xcc\x47\xb0\xb5\xea\x6c\x3e\xf2\xeb\x36\xfd\xcd\x26\x67\xf3\x11\xaf\xc4\xdd\x46\x3b\x9d\x56\x8b\xd9\x7c\x94\x6e\x1c\xd9\xf1\xe9\xd8\x50\x39\xe6\x4a\xe3\x79\xb7\xc2\x7c\xf4\x89\x75\x32\x9d\x82\x76\x2b\x32\x41\x99\x16\x7e\x1b\x1d\x30\xff\x41\x6f\x0c\x6d\x38\xa3\x77\x8d\x73\xbb\xb5\xb8\xa4\xbd\xe3\x86\xd0\xd6\x65\xd5\xd0\x70\x50\xf1\xde\x61\xde\xe0\xe0\xe0\xa1\x60\x11\x5a\x8e\xd6\x5d\x18\x54\x56\x36\x05\xee\x3e\xca\x3b\x3e\xb9\x3b\x91\x1d\x28\xa4\x7d\xeb\xc0\x71\x87\xf7\xc4\x56\xd1\xae\xa5\x66\x07\xe3\x44\xc6\x7e\x1b\x8e\xc6\xe1\x13\x95\x57\x46\x52\x3b\x65\xa8\x32\x52\x82\x9b\x15\x29\xcf\xaa\x52\x82\x4c\xbe\xe1\x70\xda\x71\xcd\x56\xa8\x96\x9c\xd5\xe0\x0d\x7b\x39\x7a\x3f\xe6\x8c\x77\xcd\xde\x31\xe6\x89\x0a\x2a\xdb\x64\x5f\xbf\xaf\x96\x23\x07\x84\xe0\xc8\x35\x1b\x9f\xc0\xb3\x8c\x4a\xc7\x2e\x73\x37\x2c\x77\xed\x60\x44\x6c\x5a\xc8\x1d\x33\xe0\xb4\x3b\xe1\x85\xf7\x50\xd6\xc6\x71\x4f\xc1\xd7\xd4\xa1\xd4\x58\x55\x05\x2a\xb6\x1e\xc1\xfb\xed\xc6\x94\x90\x19\xfa\x92\xa3\x89\x93\x5d\xfa\xea\xf4\x50\x8b\x9a\x6b\x8c\x94\x38\xc2\x79\xa7\xab\x8f\xf5\x85\x87\x2f\xf0\xf6\x1d\xa9\xa5\x5b\xcd\xe0\xc9\xe3\xbf\x3c\xfd\x6e\x0f\x61\x88\x76\x24\xfe\x46\x8a\x53\xe1\x40\x45\xbb\x47\x0c\xbb\x13\x7b\xf5\x93\x3f\x67\xd2\x94\x11\xc9\xb2\xa3\xf1\x16\xb2\x6d\x97\x37\x68\xc1\x92\x83\x14\xb9\xf6\xaf\x4a\x96\x0b\x47\x6f\xa9\xac\x43\x95\xd1\x18\xe4\x62\x98\x99\x6c\xa3\x72\xbe\x81\xd3\xc7\x63\x48\x6b\x11\xef\xc6\xe4\xcb\xdb\xab\x64\x60\xcb\xd2\xc2\xb3\xf1\x9d\xfd\x70\x41\x58\xf9\x4c\xc6\x86\x03\x37\xd2\xad\xb8\x5e\xf4\xe9\xad\xae\xac\x07\xd2\x1b\xb5\xfb\xfd\x9c\xe2\x38\xc9\x2d\xc9\x7c\xd6\x6c\xa5\x72\x4f\xff\xbc\x5f\xbf\x52\xc9\xa2\x2a\x66\xf0\x68\x0f\x49\x08\x69\xf7\xd4\x66\x20\xee\xb2\x3b\x72\xe8\x5a\x1a\x2c\xb8\xf8\xca\x40\x0a\xae\xa9\x16\x92\x4c\xdf\xb4\xf9\xd0\xf5\x44\xce\xd7\x5b\x52\x7c\x60\xeb\x38\xd4\x33\xf6\x0f\x46\x8b\x2a\xe3\xaa\x5a\x2f\x7c\xc9\x28\x17\x32\xeb\x07\x28\x2e\x55\xbd\x37\x04\xb0\x04\x74\xcb\x42\x6f\x61\x49\x40\x2e\x84\x4a\xaa\xa5\xad\x97\xe4\x9a\x9c\x03\x48\x48\xa5\x37\x2b\xf2\xf9\xc4\x83\xac\x7a\x8e\xf1\xbb\xb2\x52\x90\x21\x01\x08\xcb\x0a\x0d\x2a\x47\x24\x38\xfc\xb0\x0b\xd6\xb4\xbd\x90\x87\x5d\x81\xde\x78\x63\x70\xd5\x10\xac\x78\x8b\x75\x51\xef\x3d\xf6\xeb\xb9\xea\xe9\xa3\xc7\x07\x55\xde\xd2\xed\x25\x2a\xd1\x31\xdc\x9b\xc1\x3f\x2f\x5f\x4e\xfe\x81\x93\x5f\xae\x8e\xeb\x0f\x8f\x26\xcf\xfe\x35\x9e\x5d\x3d\xec\x7d\xbd\x3a\x79\xf1\xc7\x3d\x9c\x82\x07\xdd\xd3\x7c\xea\x24\xd2\x14\x7f\x8d\x46\xc7\x3e\xc3\xe8\x05\x5c\x18\x06\x9e\xaf\x31\xb7\x34\x86\xbf\x2b\x9f\x1a\xbe\x50\x68\xa4\xaa\x62\xff\xee\x38\x2b\x8f\x78\xd5\xe1\x8a\xa2\x25\xf1\x5b\x3a\x4c\x53\x6f\x77\x0f\x8d\xdf\xeb\xfd\x84\xe4\x6b\x31\xbd\xe8\x47\x9a\x1e\x10\x04\x1f\xf1\xb8\xd6\x4c\xea\xb2\x35\xc9\x74\x31\xed\x01\x45\xae\x97\xcf\x50\x6d\xa0\x0b\x6b\xa1\xd2\xbc\x6b\xe9\x96\x11\x10\x60\x66\xb4\xb5\x2d\xd2\xb5\x90\xcb\x6b\x82\xb6\x1c\x0d\xc1\x32\xa5\x0c\x7d\x81\x6d\x52\xe9\x0c\x9a\x4d\xb7\x3b\x0b\x19\x2a\x8f\x5b\x2d\x2d\xaa\x1c\x8e\x2d\x11\x24\x4a\x0b\xda\x8d\xae\x27\x21\x86\x62\x2a\x73\xe9\x36\x1c\x25\x05\x65\x5a\x2d\x72\x59\xd7\xf5\x05\xe3\x2e\x54\x2e\xb8\x9b\xa1\x25\xdd\x82\x74\x50\x70\x11\x49\x96\x49\x8e\x85\xb2\xa7\xa7\x8f\x9f\x9c\x57\xa9\xd0\x05\x4a\xf5\xba\x70\xd3\x93\x17\xc7\x3f\x57\x98\x73\xe4\x11\x3f\x60\x41\xaf\x0b\x77\xf2\xf5\xd2\xe2\xe9\xd3\x7b\x78\xd1\xf1\x65\xf0\x95\xab\xe3\xcb\x49\xfd\xe9\x61\xd3\x75\xf2\xe2\x78\x9e\x1c\x1c\x3f\x79\xc8\x67\xe8\x79\xe0\xd5\xe5\xa4\x73\xbf\xe4\xea\xe1\xc9\x8b\xde\xd8\xc9\xae\x33\x72\xc6\x92\x19\xbd\xcc\x32\x5d\x7d\x33\x58\x39\xec\xfb\x9f\x01\xf4\x21\x04\x34\x90\x7e\x1b\x99\x0f\xc0\x79\xe9\x6c\x9d\x3e\x03\x72\x0f\x96\x51\x07\x12\x0e\xb0\xce\xa0\xcc\x83\x59\x65\xae\xc2\xbc\x07\xfb\xc1\x6e\xac\xa3\xe2\x2b\xa1\xf6\xce\x8c\x23\x82\x8e\x08\x3a\x22\xe8\xa1\x36\x19\xc0\x9b\x11\x6c\x47\xb0\xdd\xb5\x08\xb6\x23\xd8\x8e\x60\xfb\x5e\xda\x8c\x60\x3b\x82\xed\xed\x16\xc1\x76\x4d\x13\xc1\x76\x04\xdb\xdf\x1a\x6c\x87\x3c\x35\x03\x67\xaa\xa6\x68\xb1\x4e\x1b\x2e\x52\x60\xc1\x26\xdb\x74\x56\x69\xab\xdf\xce\x0a\x6b\xd7\x85\x5f\x7f\xdb\x7e\x54\xf3\x38\x3e\xaa\x89\x8f\x6a\xe2\xa3\x9a\xf8\xa8\xa6\x69\xdf\xfa\x51\xcd\xf6\x0d\x5c\x78\xf9\xb2\x75\xe3\xe6\x6d\xb6\x34\x7a\x2d\x05\xd9\x3b\x4f\x70\x7c\x1d\x7e\x27\xcb\x14\xa8\xaa\xfe\xb3\x1a\xfa\x36\x8f\x6a\xe2\xf5\x5c\xbc\x9e\x8b\xd7\x73\xf1\x7a\x6e\xbb\xc5\xeb\xb9\xb6\xc5\xeb\xb9\x78\x3d\x17\xaf\xe7\xe2\xf5\x5c\xbc\x9e\xbb\xdb\xe2\xf5\x5c\x68\xf1\x7a\x2e\x5e\xcf\x0d\xb4\xff\x8d\xeb\xb9\xbe\x05\xc5\x9f\x57\x44\xf4\x19\xd1\xe7\x7f\x1f\xfa\x8c\x90\x32\x42\xca\x08\x29\x07\x5a\x84\x94\x11\x52\x46\x48\x19\x21\xe5\x4e\x8b\x90\xb2\xa6\x89\x90\x32\x42\xca\xf8\xf3\x8a\xdf\xf9\xf3\x8a\xf7\xef\xce\x7a\xef\x39\xc2\x3b\x8f\x9e\x65\xad\x70\x4d\x90\x12\xa9\xb6\x8c\x88\xff\x8b\x8d\x68\x38\xa2\xe1\xf8\xbf\xd8\xba\x45\xe0\x1c\x81\x73\x04\xce\x11\x38\x6f\x29\x2e\x02\xe7\x08\x9c\xb7\x55\x19\x81\xf3\xef\x17\x5a\x04\xce\x11\x38\x0f\xa8\xe2\xff\x03\x38\x1f\xfa\xa9\x44\xbf\xef\x73\xbf\x94\xf8\x77\x00\x00\x00\xff\xff\x0a\x10\x91\x5e\x61\x56\x00\x00") +var _operatorsCoreosCom_operatorconditionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x6d\x6f\x1c\xb7\xf1\x7f\xfd\xd7\xa7\x18\xdc\xbf\x40\x24\xf7\x1e\x2c\x27\x48\x93\x03\x0c\xc3\x70\xea\xc2\xb0\x15\x1b\x96\x9a\x17\x55\xd5\x7a\x76\x39\x77\xc7\x78\x97\xdc\xf0\xe1\xa4\x4b\xda\xef\x5e\x0c\xb9\x7b\xbb\xa7\xdb\x3d\xa9\xb5\xea\xa0\x2d\xf9\xc2\xd6\xed\x92\x43\x72\x1e\x7e\x9c\xf9\x81\x8b\x95\xfc\x81\x8c\x95\x5a\xcd\x01\x2b\x49\x37\x8e\x14\xff\xb2\xd3\x8f\xdf\xd8\xa9\xd4\xb3\xf5\xe9\xd1\x47\xa9\xc4\x1c\x5e\x78\xeb\x74\xf9\x9e\xac\xf6\x26\xa7\xef\x68\x21\x95\x74\x52\xab\xa3\x92\x1c\x0a\x74\x38\x3f\x02\x40\xa5\xb4\x43\x7e\x6c\xf9\x27\x40\xae\x95\x33\xba\x28\xc8\x4c\x96\xa4\xa6\x1f\x7d\x46\x99\x97\x85\x20\x13\x84\x37\x53\xaf\x1f\x4f\x4f\xbf\x9a\x3e\x3e\x02\x50\x58\xd2\x1c\x74\x45\x06\x9d\x36\xb9\x56\x22\xcc\x62\xa7\xcd\x23\x3b\xcd\xb5\x21\xcd\xff\x95\x47\xb6\xa2\x9c\x27\x5a\x1a\xed\xab\x76\xd8\x4e\x9f\x28\xb3\x59\x0f\x3a\x5a\x6a\x23\x9b\xdf\x00\x13\xd0\x45\x19\xfe\x8e\xfb\x7c\x5b\xcb\x78\xd1\x4c\x1d\xde\x15\xd2\xba\xd7\xfd\xef\xdf\x48\xeb\x42\x9f\xaa\xf0\x06\x8b\xbe\xc5\x87\xd7\x76\xa5\x8d\xfb\xbe\x5d\x0a\x4f\x9d\xef\x4c\x62\xa5\x5a\xfa\x02\x4d\x8f\x88\x23\x00\x9b\xeb\x8a\xe6\x10\x24\x54\x98\x93\x38\x02\xa8\x15\x58\x4b\x9c\xd4\xda\x5b\x9f\xd6\x13\xd8\x7c\x45\x25\x36\xd3\x01\x8b\x55\xcf\xdf\xbd\xfa\xe1\xcb\xf3\x5b\x2f\x00\x04\xd9\xdc\xc8\xca\x05\x73\xec\xed\x11\xa4\x05\xac\x5d\x00\x1a\x1f\x00\xbd\x00\xb7\xa9\x08\x3e\xec\xf5\xff\x00\xd7\x2b\x99\xaf\x78\x98\xb7\x24\xc0\x69\xde\xea\x9a\x36\x20\xd5\x42\x9b\x32\xb8\x08\x3f\x7d\xfb\xe6\x0c\x30\xd3\xde\x81\x5b\x11\x58\x87\x2e\x88\x45\xb5\x55\xc1\xb4\xb3\x48\x9e\x6d\x0e\x3a\xfb\x91\x72\xd7\x79\x6c\xe8\x27\x2f\x0d\x89\xee\x7e\x58\x1b\x8d\x67\x76\x1e\x57\x86\xe5\xba\x8e\xfd\x63\xeb\xc4\xc1\xce\xf3\x5b\x8a\xf9\xdb\xe4\xd6\x5b\x00\xd6\x67\x1c\x09\x82\x83\x82\x6c\xd8\x4a\x6d\x19\x12\xb5\x11\x82\xb2\x56\xd2\x82\xa1\xca\x90\x25\x15\xc3\xa4\xd9\x6c\xd8\xd2\x74\x4f\xf8\x39\x19\x16\xc4\xbe\xe3\x0b\x11\x75\x68\x1c\x18\xca\xf5\x52\xc9\x9f\xb7\xd2\x2d\xeb\x92\xa7\x2d\xd0\x91\x75\x20\x95\x23\xa3\xb0\x80\x35\x16\x9e\xc6\x80\x4a\xec\xc9\x2e\x71\x03\x86\x78\x5e\xf0\xaa\x23\x31\x0c\xb1\xfb\x6b\x39\xd3\x86\x82\xf9\xe6\xb0\x72\xae\xb2\xf3\xd9\x6c\x29\x5d\x83\x13\xb9\x2e\x4b\xaf\xa4\xdb\xcc\x42\xc8\xcb\xcc\x73\x1c\xce\x04\xad\xa9\x98\x59\xb9\x9c\xa0\xc9\x57\xd2\x51\xee\xbc\xa1\x19\x56\x72\x12\x36\xa3\x62\x70\x97\xe2\xff\x4d\xed\x55\xf6\xd6\xc4\xd1\xe6\xd6\x19\xa9\x96\x3b\xaf\x42\xb8\xfe\x93\xc6\xe2\x10\x8e\xbe\x1c\x05\xc6\xcd\xb6\x36\xe1\x47\xac\xc6\xf7\xbf\x3f\xbf\x80\x66\x45\xd1\x6e\xd1\x44\x6d\xd7\x1e\x0d\x35\xd6\x62\xcd\x4a\xb5\x20\x13\x47\x2e\x8c\x2e\x83\x54\x52\xa2\xd2\x52\x45\x5f\xcf\x0b\x49\xca\x81\xf5\x59\x29\x9d\x0d\x3e\x4c\xd6\xb1\x21\xf7\x05\xbf\x08\xb8\x0a\x19\x81\xaf\x04\x3a\x12\xfb\x5d\x5e\x29\x78\x81\x25\x15\x2f\xd0\xd2\x67\xb7\x1d\xdb\xc8\x4e\xd8\x20\xf7\xb6\x5e\xf7\xd4\xd8\x1f\xb0\x17\xe2\x00\x0d\xd4\x0f\x9a\x7b\x0f\x84\xce\x2b\xca\x01\x8b\x42\x5f\xb3\xc1\xf3\xc2\x5b\x47\x06\x50\x94\x52\x0d\x00\xd2\x61\x24\xaa\xf1\x6a\x0c\x95\x76\xbc\x79\x2c\x8a\x0d\xe8\x35\x19\x23\x05\x3b\x4e\x1c\x63\xa8\xd2\xc6\x91\x80\x6c\x13\x24\xf5\xe1\xd8\xc1\x8d\x0e\x83\x54\xdc\x72\x55\xe8\x4d\xc9\x0e\xb8\xff\xb2\x91\x8a\xc6\xe0\xa6\xe7\xad\x74\x54\xf6\x0e\x3b\x60\x28\x6e\xf5\x26\xfb\xd6\xf3\x09\x53\xde\x15\xac\xb1\xb5\x67\x10\x3b\x27\x4a\x65\x41\x90\x43\x59\x58\x58\x68\x03\x5a\x11\x20\xfb\x86\x8b\x08\x4b\x90\x7b\x63\x42\x64\x35\x26\x0c\x41\xf8\xfc\xdd\xab\xed\xc1\xb5\x1f\x1f\xb1\x4d\x26\x43\x8b\xb8\x60\x11\xd6\x19\x9f\x3b\x86\x0f\x86\x57\x25\x48\x84\x15\x08\x69\x02\x86\x5a\x5e\x08\xfb\x4b\x50\x05\x60\x74\xa4\x85\xa4\x42\x40\x85\x6e\x05\x53\x5e\x91\xe7\xa4\x64\x9b\xd4\x00\xbc\xd4\x06\xe8\x06\xcb\xaa\xa0\xf1\xd1\xd1\xc0\xf4\xff\x17\x8e\xd9\x97\x5a\x9f\x07\x09\xf5\x4a\x7e\x19\xea\xcd\xff\xcc\x66\xf0\x7e\x0b\x55\xd1\x11\x33\x4b\x66\x1d\x93\xb3\xe0\xd9\xb0\xd0\xfa\x0b\xbb\xab\xaf\x21\xd5\x34\x32\x5f\x2b\x7d\xad\xfa\x76\x12\x56\x88\x86\xe6\x30\x7a\xbe\x46\x59\x60\x56\xd0\x68\x0c\xa3\x77\x46\x2f\x0d\x59\x4e\x6d\x46\xe1\x1c\x82\xd1\x77\xb4\x34\x28\x48\x8c\xee\x98\xeb\xb7\x15\xba\x7c\x75\x46\x66\x49\xaf\x69\xf3\x94\x67\xb8\xd7\x88\x73\x67\x38\xcb\xdb\x3c\x2d\x79\xe8\x5d\x43\x38\xb3\xbb\xd8\x54\xf4\xb4\xc4\xea\x3e\x7d\xcf\xb0\xba\xcf\x6a\xb6\x6e\x6b\xe1\xf2\x8a\xc1\x6e\x7d\x3a\x6d\x5d\xf9\xc3\x8f\x56\xab\xf9\xa8\xd5\xdf\x58\x97\x1c\x29\x95\xdb\x8c\x60\x67\x13\xf3\x51\xd8\x45\xfd\xb4\x51\xc6\x7c\xc4\xf3\x8f\x18\x29\x9c\xce\xfc\x62\x3e\xca\x36\x8e\xec\xf8\x74\x6c\xa8\x1a\x73\x16\xf8\xb4\x95\x3d\xfa\x30\xec\x58\xf5\xce\xb4\x5b\x91\x89\xbe\x7a\x1b\xc1\xb7\x5d\xff\x7e\x00\x37\x7a\x61\x2c\xb6\xfe\xe4\xac\x6d\x9c\xa6\x59\x8b\x83\x86\x9a\x80\x21\xb4\x75\x86\xdc\xf7\x3a\xfa\xe2\xe0\xeb\x41\x43\x1d\x42\xd9\xd8\x0a\xb4\xee\xc2\xa0\xb2\x41\x8f\x17\xb2\xa4\xa1\x9e\xf7\x05\xb3\x7e\xa9\x0c\x29\x31\x79\xb3\x0e\x1c\x3f\x08\x38\xb6\xf5\x16\xb7\xed\xcd\x90\xc3\xd9\x04\xa3\x5e\xdc\x37\x1f\x4a\xa8\x82\xfd\x86\x62\x17\xb6\x00\x16\xb3\xc8\x8c\xe0\x7a\x45\x2a\x4c\xe2\x95\x20\x53\x6c\xf8\xf8\x6a\xe7\xcb\x57\xa8\x96\x24\xa6\x00\xaf\x18\x3d\x31\x60\x1e\x27\x20\x1f\x39\xfa\xc7\x3c\x50\x81\xb7\x4d\xb2\x14\x56\xbc\x95\xc8\x40\x1b\x41\xaf\x16\x13\xf2\xad\x3c\xa7\xca\x31\x26\x0c\x2f\xf2\xe0\x09\xd4\xb4\x78\x56\xcf\x81\xb3\xa0\x09\x4f\x3c\xd0\xb3\xf6\xa9\x87\xb0\x57\x2d\x2a\xa6\x8d\x2b\x5f\xa2\x62\x8f\x14\xbc\x99\xf6\x9d\x12\x32\xc7\x90\x3e\x36\x87\x53\x9b\x4b\xb4\xe6\xbb\xd3\x42\x9c\x39\x66\xc4\x87\x48\xc0\x82\x5a\x1b\x9f\xa8\xb3\x12\x6f\xde\x90\x5a\xba\xd5\x1c\xbe\x7c\xf2\xbb\xaf\xbf\x19\xe8\x18\xcf\x07\x12\x7f\x20\xc5\x19\x4b\x4f\x29\xf4\xaf\x68\x6f\x5f\x6a\x27\x85\x0e\xea\x99\x36\xa9\xe0\x74\xd9\xf6\x09\x5e\xb7\x1b\x05\xd7\x68\xc1\x92\x83\x0c\xb9\xa2\xf4\xd5\x61\x75\xf2\xb9\x2a\x95\x75\xa8\x72\x1a\x83\x5c\xf4\x4f\x23\xb7\xc7\x5f\xb1\x81\xd3\x27\x63\xc8\x6a\x9b\xed\x9f\x70\x97\x37\x57\xd3\x9e\xcd\x48\x0b\xdf\x8e\x6f\xad\x94\xab\x05\x1f\xf2\x11\x76\xd3\x03\x8b\xbc\x96\x6e\xc5\x65\x46\x48\x5f\xea\x0a\xae\x27\x7d\xa1\xed\x4e\xee\xf2\x04\x4e\x4c\x96\x64\xee\x0c\x1f\xa9\xdc\xd7\x5f\x0d\x3b\x8c\x54\xb2\xf4\xe5\x1c\x1e\x0f\x74\x89\x88\xfc\x10\xee\x11\x25\xb5\xa9\x1d\x32\x2c\x2f\x0d\x96\x9c\x91\xe7\x20\x05\x27\xda\x0b\x49\xa6\x1b\x62\xac\x91\x7a\x20\x27\x60\x3b\xca\xff\xc2\xd6\x30\x7a\xaf\xa0\x7b\x67\xb4\xf0\x39\xd7\x6c\x7a\x11\x2a\x0c\xb9\x90\x79\x17\x79\xb9\xb0\x09\x51\x19\x6b\x7b\xa0\x1b\xb6\xd5\xb6\x4a\x0e\x09\x4d\x49\xa8\xa4\x5a\xda\x7a\x31\x5c\xf1\x31\xfe\x8d\x0f\xcc\xcb\xc3\xae\x57\x14\x4e\xdd\xc0\x16\xd4\xd2\x4c\xd8\x89\x95\x82\x0c\x09\x40\x58\x7a\x34\xa8\x1c\x91\x60\x5c\x3d\x0c\x1f\xb5\x94\x0e\xca\x63\x5b\x12\xde\x89\x24\x35\x00\x45\xe4\xe6\x0d\xd7\x05\x67\xc0\xa1\x87\x03\xa0\xd3\xc7\x4f\x0e\xfa\xdd\xb6\xdf\x60\xa7\x0a\x9d\x23\xa3\xe6\xf0\x97\xcb\xe7\x93\x3f\xe1\xe4\xe7\xab\xe3\xfa\x8f\xc7\x93\x6f\xff\x3a\x9e\x5f\x3d\xea\xfc\xbc\x3a\x79\xf6\x9b\x01\x49\x31\xc0\xef\xe9\xc3\xf5\x59\xdb\x54\x18\x8d\x7f\x8c\xc3\x41\xac\x17\x70\x61\x3c\x8d\xe1\x25\x16\x96\xc6\xf0\x47\x15\xce\xc9\x4f\x54\x1a\x29\x5f\x0e\xaf\x8e\x33\x9b\x11\xcf\x3a\x94\x44\xd7\x5d\xc2\x92\x0e\xf7\xa9\x97\x3b\xd0\x27\xac\xf5\x01\x02\x3d\xd4\x07\x7a\xd1\x45\xc9\x0e\x63\x01\x01\xad\xb9\x20\x99\xd6\xc5\xd0\x34\xd7\xe5\xec\x00\xa3\xd1\xd9\xc1\x60\xd5\xc6\xed\x0c\xd5\x06\x5a\x18\x8f\x75\xca\xed\x70\xb3\x5c\xcf\x03\xe6\x46\x5b\xbb\xa5\x7d\x2c\x14\xf2\x23\xc1\xb6\x9a\x89\x87\x43\x46\x39\x86\x52\xcf\x64\xd2\x19\x34\x9b\x76\x47\x16\x72\x54\x90\x1d\x02\x7c\x6f\x69\xe1\x0b\x38\xb6\x44\x30\x55\x5a\xd0\xfe\x39\x73\x12\x4f\x13\xcc\x64\x21\xdd\x86\x4f\x05\x41\xb9\x56\x8b\x42\xd6\xb5\x67\x59\x69\xe3\x50\xf5\xb0\x85\x6d\xbb\x08\x08\xb9\xa4\x1b\x90\x0e\x4a\xae\x1c\xc8\xf2\xe0\x63\xa1\xec\xe9\xe9\x93\x2f\xcf\x7d\x26\x74\x89\x52\xbd\x2c\xdd\xec\xe4\xd9\xf1\x4f\x1e\x0b\x86\x59\xf1\x3d\x96\xf4\xb2\x74\x27\x0f\x97\x71\x9c\x7e\x7d\x8f\x50\x3e\xbe\x8c\x01\x7b\x75\x7c\x39\xa9\xff\x7a\xd4\x3c\x3a\x79\x76\xfc\xe7\xe9\xc1\xf7\x27\x8f\x78\x0f\x1d\x18\xb8\xba\x9c\xb4\x18\x30\xbd\x7a\x74\xf2\xac\xf3\xee\x64\x1f\x11\xf8\x54\x97\x39\x3d\xcf\x73\xed\x3f\x1b\xb1\xd2\x0f\x40\x77\x45\xd4\x3e\xcb\x15\xa1\xa9\xe1\xb9\x76\xe9\xaa\x1e\x8e\x4b\x3a\x5b\xe7\x16\x91\xce\x9a\x06\x67\xa9\x01\x8e\x81\xdf\x19\x94\x45\xf4\xc1\xdc\x79\x2c\xf6\xb5\xb5\xe5\xc6\xc0\x6e\xac\xa3\xf2\x81\xa8\xad\x36\x06\x12\xcd\x94\x68\xa6\x44\x33\x25\x9a\xa9\x6d\x0f\x40\x33\xed\xf3\x2e\x89\x91\x1a\x92\x9a\x18\x29\x48\x8c\x54\x62\xa4\x12\x23\x95\x18\xa9\xc4\x48\x25\x46\x2a\x31\x52\x90\x18\xa9\xc4\x48\x25\x46\xea\xdf\xcc\x48\xc5\xb3\x7c\x0e\xce\xf8\xc6\x66\xd6\x69\xc3\x69\x23\x2c\x38\x6e\x9a\x87\x3e\xdb\xfa\x44\x1b\x0a\x35\x7e\xc0\x2f\xb1\x84\xda\xde\x06\x7d\xd2\x8c\x4a\xb7\x41\xd3\x6d\xd0\x74\x1b\xb4\x6d\xe9\x36\xe8\x7f\xef\x6d\xd0\x7b\x51\xe7\xdd\x0b\xa2\xbb\xc4\x79\xbc\xc5\xb9\x43\x94\x87\x14\xb9\x32\x7a\x2d\xc5\x9e\x5b\xc2\xad\xeb\xa5\xa1\x8c\xba\x75\x68\x96\xa8\x7c\xf7\xca\x28\x7d\x9e\x0b\xa3\x89\x55\x4f\xac\x3a\x24\x56\x3d\xb1\xea\x3d\x2d\xb1\xea\xa1\x25\x56\x3d\xb1\xea\x89\x55\xff\x34\xed\x25\x56\x3d\xb1\xea\x89\x55\xbf\xdd\x12\xab\xde\xdb\x2f\xb1\xea\x6d\x4b\xac\x7a\x62\xd5\x13\xab\xfe\x79\xee\x79\xa6\x8f\x67\x13\xff\x92\xf8\x97\x83\x23\x12\xff\xf2\x9f\xc5\xbf\x24\x52\x25\x91\x2a\x89\x54\x49\xa4\x4a\x22\x55\x12\xa9\x92\x48\x95\x44\xaa\x24\x52\x05\x12\xa9\x92\x48\x95\x44\xaa\xfc\xcf\x7f\x3c\x7b\xc7\x97\xb2\x6f\xdf\x9c\x75\x2e\x22\xc6\x0b\x8a\x1d\x6f\x5c\xe1\x9a\x20\x23\x52\xdb\x24\x2c\xdd\xc7\x49\x7c\x50\xe2\x83\x0e\x0f\x49\x7c\xd0\xaf\xcd\x07\xa5\xfb\x38\x43\x2d\x51\x47\xfd\x2d\x51\x47\x89\x3a\x4a\xd4\x51\xa2\x8e\x12\x75\x94\xa8\xa3\x44\x1d\x25\xea\x28\x51\x47\x89\x3a\xfa\xd5\xbe\x72\xed\x3e\xbb\xeb\x23\xd7\x7f\x04\x00\x00\xff\xff\xee\x7a\x89\xe5\xbc\x66\x00\x00") func operatorsCoreosCom_operatorconditionsYamlBytes() ([]byte, error) { return bindataRead( @@ -185,7 +185,7 @@ func operatorsCoreosCom_operatorconditionsYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_operatorgroupsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x79\x6f\x23\x37\x96\xff\xbf\x3f\xc5\x83\x66\x81\xb6\xb3\x3a\xda\x9d\x45\x76\x22\x20\x08\x8c\xee\x74\xe0\x4d\xb7\xdb\x68\xbb\xb3\xc0\x5a\xde\x1d\xaa\xea\x55\x89\x63\x16\x59\x43\xb2\x24\x6b\x82\x7c\xf7\xc5\x7b\x64\x1d\xba\xe5\x1c\xb3\x93\x85\xea\x1f\x5b\x3c\xdf\xc1\xf7\x7b\x07\x29\x4a\xf9\x23\x5a\x27\x8d\x1e\x83\x28\x25\x3e\x79\xd4\xf4\xcb\x0d\x1f\xff\xec\x86\xd2\x8c\xe6\x17\x2f\x1e\xa5\x4e\xc7\xf0\xa6\x72\xde\x14\x9f\xd0\x99\xca\x26\xf8\x16\x33\xa9\xa5\x97\x46\xbf\x28\xd0\x8b\x54\x78\x31\x7e\x01\x20\xb4\x36\x5e\x50\xb3\xa3\x9f\x00\x89\xd1\xde\x1a\xa5\xd0\x0e\x72\xd4\xc3\xc7\x6a\x8a\xd3\x4a\xaa\x14\x2d\x2f\x5e\x6f\x3d\x7f\x35\xfc\x7a\xf8\xea\x05\x40\x62\x91\xa7\xdf\xc9\x02\x9d\x17\x45\x39\x06\x5d\x29\xf5\x02\x40\x8b\x02\xc7\x60\x4a\xb4\xc2\x1b\x9b\x5b\x53\x95\x6e\x58\xff\x74\xc3\xc4\x58\x34\xf4\xa7\x78\xe1\x4a\x4c\x68\x77\x1e\xd3\x4e\x59\x19\x13\xd6\xab\x89\x14\x1e\x73\x63\x65\xfd\x1b\x60\x00\x46\x15\xfc\x7f\x60\xfe\x63\x5c\xe3\x7b\x5a\x92\xdb\x95\x74\xfe\x87\xcd\xbe\xf7\xd2\x79\xee\x2f\x55\x65\x85\x5a\x27\x98\xbb\xdc\xcc\x58\x7f\xdd\x6e\xcf\xdb\xe5\xa1\x4b\xea\xbc\x52\xc2\xae\xcd\x7b\x01\xe0\x12\x53\xe2\x18\x78\x5a\x29\x12\x4c\x5f\x00\x44\xf1\xc5\x65\x06\x51\x44\xf3\x8b\xb8\xaa\x4b\x66\x58\x88\x7a\x0f\xa0\x25\xf5\xe5\xcd\xd5\x8f\x5f\xde\xae\x75\x00\xa4\xe8\x12\x2b\x4b\xcf\xca\x58\x61\x08\xa4\x03\x3f\x43\xa8\xb4\xf4\x60\x32\x28\x2a\xe5\xa5\x47\x2d\x74\xb2\x84\xcc\x58\xf8\xf8\xfe\x03\x14\x42\x8b\x1c\xd3\x8e\xa8\xe1\xca\x93\xee\x9d\xb7\x42\xea\xb0\x82\xd4\xce\x0b\xa5\x58\xbd\xb4\x52\x33\x18\xa4\x06\xe9\x5d\xd0\x08\xf1\x06\xde\x80\x00\x52\xa3\xcc\x24\xa6\xe0\x90\xb7\xf6\xc2\xe6\xe8\xdb\x61\x6e\xd8\xe1\xc0\x2f\x49\x3c\x66\xfa\x57\x4c\x7c\xa7\xd9\xe2\xdf\x2a\x69\x31\xed\x32\x4b\xa2\xaa\x0f\x6d\xa7\xb9\xb4\x44\x91\xef\x9c\x82\xf0\x75\x4c\x64\xa5\x7d\x4d\x6a\x2f\x49\xb4\x61\x1c\xa4\x64\x1d\x18\xd8\x8e\x4a\x22\x36\x58\xec\xcc\xc9\x4c\x3a\xb0\x58\x5a\x74\xa8\x7d\x23\x11\xa1\x23\x03\x43\xb8\x45\x4b\x13\xe9\xac\x54\x2a\x25\x51\xce\xd1\x7a\xb0\x98\x98\x5c\xcb\xbf\x37\xab\x39\x92\x15\x6d\xa3\x84\x47\xe7\x41\x6a\x8f\x56\x0b\x05\x73\xa1\x2a\xec\x83\xd0\x29\x14\x62\x09\x16\x69\x5d\xa8\x74\x67\x05\x1e\xe2\x86\xf0\xc1\x58\xd2\x4e\x66\xc6\x30\xf3\xbe\x74\xe3\xd1\x28\x97\xbe\x06\x80\xc4\x14\x05\x29\x7f\x39\x62\x5b\x96\xd3\x8a\x74\x36\x4a\x71\x8e\x6a\xe4\x64\x3e\x10\x36\x99\x49\x8f\x89\xaf\x2c\x8e\x44\x29\x07\x4c\xac\x66\x10\x18\x16\xe9\x9f\x6c\x84\x0c\xf7\x72\x4d\x7c\x41\x65\xce\x5b\xa9\xf3\x95\x2e\xb6\xb9\xbd\xb2\x26\xcb\xa3\x93\x29\xe2\xf4\xc0\x4b\x2b\x52\x6a\x22\xa9\x7c\xfa\xee\xf6\x0e\x6a\x02\x82\xd8\x83\x84\xdb\xa1\xae\x15\x36\x09\x4a\xea\x0c\x6d\x18\x99\x59\x53\xf0\x2a\xa8\xd3\xd2\x48\xed\xf9\x47\xa2\x24\x6a\x0f\xae\x9a\x16\x74\x68\xe9\x80\xa1\xf3\xa4\x87\x21\xbc\x61\xfc\x83\x29\x42\x55\xa6\xc2\x63\x3a\x84\x2b\x0d\x6f\x44\x81\xea\x8d\x70\xf8\xbb\x8b\x9a\x24\xea\x06\x24\xbe\xe3\x85\xdd\x85\xef\xcd\x09\x1b\x06\x05\x50\xc3\xeb\x4e\xed\xac\xe0\xc7\x6d\x89\x49\x8d\x21\x34\x93\x31\x43\xe8\x35\x90\xa9\x55\x34\x3c\x96\x08\xda\x32\x13\x95\xf2\xeb\x94\x00\x54\x65\x6e\x45\x8a\xb7\xde\x12\xac\x2f\xc7\xf0\x36\x8c\x5c\x1b\xb8\xcb\xdc\x99\x45\x54\x98\x78\x63\x37\x7b\xd6\x58\xbd\x8d\x03\xe3\x8c\xc0\xe6\x0a\x6b\x2f\xdd\x7e\xdc\x3a\x82\xd3\x43\xd4\xd2\x57\x08\x9f\xcc\xbe\x7b\xa2\x33\xdd\x71\x09\x07\xa8\x5f\x9f\x14\x2c\x8a\x3c\x1b\xa1\x91\x12\x53\x54\x8d\x28\x6a\x24\x2d\x82\xc9\xdc\xcd\x70\xa5\x05\x84\x45\xb8\xbc\x7e\x8b\xe9\x36\xe6\x5a\x06\x85\xb5\x62\xb9\x63\x84\xf4\x58\xec\x24\x7c\x8d\xf4\xcb\x3d\xe4\x45\x60\xa8\x7b\xfc\x4c\xb0\x2f\xf2\xec\x89\x02\xe8\xf5\x41\xc0\x23\x2e\x03\x3e\x12\xec\x46\x95\x85\xc1\x16\x19\x4d\x59\x99\x8f\xb8\xe4\x41\x11\x2c\x77\x52\x77\x40\x7f\xe1\xdb\xee\x8d\x56\xbf\x01\x6d\xb9\xb7\xbf\x26\x76\xe7\xa0\x43\x87\x25\x7c\x8f\xb8\xdc\xd7\xbd\x26\x70\x92\x43\x34\xe3\x20\x79\x6a\x60\x69\xb1\x65\xd7\xc2\x16\x65\xa9\x24\x32\x1a\xee\x5d\x7b\x27\x1c\xad\x7e\x35\xab\xcf\x20\xb4\x51\x65\x8b\xf0\x41\xd9\x2f\x5d\x50\x2c\x9d\xf4\x99\x2c\x63\x90\x11\x42\x8b\xda\x15\xfe\x28\x94\xec\x84\x31\x7c\xaa\xaf\x74\x1f\xae\x8d\xa7\x3f\xdf\x3d\x49\x82\x7a\x3a\x0f\x6f\x0d\xba\x6b\xe3\xb9\xe5\x37\x61\x35\x90\xf0\x0c\x46\xc3\x04\x3e\xec\x3a\xd8\x15\x71\xd2\xf5\x87\x14\x86\x65\xac\x9f\x46\x28\xd2\x91\x47\x32\xb6\xe6\x88\x23\x94\xb0\x50\x58\xa2\xa8\x1c\x3b\x30\x6d\xf4\x00\x8b\xd2\x2f\xb7\xae\x11\x05\x61\xec\x8a\x1c\xf6\x2c\x17\x97\xba\x23\xbf\x1a\x7a\x42\x04\xa4\x28\x94\x85\xb4\x62\xa2\xd9\x9b\x13\x68\xcb\x04\x0a\xb4\x39\x42\x49\x08\x75\x8c\x78\xf7\xe1\x4a\xf8\x0e\xa0\xcb\x91\xba\x62\xc8\x7c\x4f\x06\xf0\x0c\x88\x0d\xe3\x03\x2c\x15\xa2\x24\x35\xfd\x44\xe8\xc3\x92\xfa\x19\x4a\x21\x29\x62\xbe\xe4\xe8\x5f\xe1\x4a\x9f\xd4\x2c\xd3\xee\x32\xb4\x82\x74\x40\x50\x32\x17\x8a\xf0\x8e\x4e\xb2\x06\x54\x01\xfd\x28\x48\x5f\x03\xf6\x3e\x2c\x66\xc6\x05\x30\xcb\x24\x2a\x8e\x9d\x7a\x8f\xb8\xec\xf5\x37\x54\xdb\xbb\xd2\xbd\x80\x8b\x1b\xca\x6c\x40\xd4\x68\xb5\x84\x1e\xf7\xf5\x7e\xb9\x2f\xd8\x0b\x96\x22\x4d\x39\xbd\x14\xea\xe6\x08\x34\xdb\xab\x37\x87\x76\x2e\x13\xbc\x4c\x12\x53\x69\x4e\xbc\x8e\xf0\xeb\xeb\x53\x6a\xf0\x13\x69\x21\xf5\x4a\x6e\xc2\x23\x41\x84\xa1\xb0\x98\xc9\x64\x06\x0b\xa9\x14\x87\x81\x0e\x53\x52\x4f\x8a\xa5\x32\xcb\x46\xce\x67\xee\x3c\x68\x96\xe2\xd1\x5a\xf6\x9c\xe9\xed\x0e\x0d\x76\x31\x47\xe9\x43\x72\x63\xcd\x5c\xa6\x98\x5e\xde\x5c\x6d\x95\xd2\x2a\x73\x3c\x05\x3c\x2a\xe5\x38\x7d\xa3\x98\xd5\x9b\x18\xb3\x6e\x0d\x61\xca\xce\xfa\x9d\x24\x7f\x27\xb1\x53\x63\x14\x8a\xcd\xfe\x10\x0a\x35\x49\xec\x61\x5a\xef\xd6\x26\x44\xb8\xc3\xa7\x52\xc9\x44\xfa\x1a\xbf\xdb\xd8\x8a\xf3\x21\x9e\xc4\xc0\x25\x39\x1a\x70\xe8\xfb\x6d\xac\x26\x1d\xc8\x5c\x1b\xbb\xfd\x7c\xee\xc7\x93\x3d\x28\x72\x00\x3b\x9e\x06\x8f\xd5\x14\xad\x46\x8f\x6e\x40\x31\xd6\x20\x4e\xc0\x4d\x13\x58\x0f\x61\x0f\x49\xa9\xf7\x79\x75\xc2\x4a\x02\x1a\x17\xab\xb1\x35\x64\xed\x2b\xc9\x37\x8d\x6a\x24\xc8\xf6\x6c\x91\x8d\x38\xa9\xac\x45\xed\xd5\x12\xfc\xc2\x80\xab\xca\xd2\x58\x8f\xe9\xfa\x92\x64\x9a\x30\xd1\x75\xa0\x3d\xe6\x43\xc5\x26\xc0\x40\x21\x94\x32\x0b\x48\x54\xe5\x3c\xda\x68\x59\x31\x53\x66\x75\x15\x66\x8e\x75\x1a\x1b\x5c\x02\x39\x83\x72\x26\x1c\xb6\x39\x98\xab\x92\x04\x31\xc5\x34\x74\x44\x57\x82\x59\x86\x89\x97\x73\x54\x4b\x28\x50\x70\xa5\x41\xf8\x76\x7f\x3a\xd9\x61\xfb\x96\xe1\xb5\x1d\x35\x3e\xf9\x3a\x49\x07\xc9\x49\xf8\x6a\xa5\xc2\x36\xec\xce\x84\x83\x4c\x48\x45\x79\xdd\x44\xc3\x1d\x26\xb3\x1b\x8b\x73\x89\x8b\xcf\xda\x89\x0c\xdf\x09\xa9\xde\x19\xbb\x10\x36\xed\xc8\xe0\xf7\x60\x9f\xa8\x6a\xfa\x02\x49\xb5\x5c\x2e\x1b\xe0\x54\xcb\x7e\x4b\x45\x8e\x9a\x04\x40\xfc\x2e\x6a\x06\x6f\x14\x49\x6c\x31\x43\x4d\xae\xb7\x9a\x36\x27\x0a\x2c\x66\x68\x51\x93\x3d\x89\x7a\xfd\xce\xa4\xc6\x3d\x24\xc2\x0b\x65\x72\x96\xcc\x14\x51\xd7\x79\x2f\x2c\xa4\x9f\x81\xe0\xcd\x6a\xe9\x65\x1c\x5e\x23\x20\x85\x0a\xc4\x62\xb4\xdd\x4e\xd1\x68\xa2\xe1\x3f\x2f\x3f\x5d\x5f\x5d\x7f\x3f\x66\xaf\xb2\x4f\xc2\x9b\xe7\x5a\x3a\xa8\x78\x54\xa7\xea\xe1\x2a\xe5\xe9\x88\x57\x1a\x9f\x4a\x4c\x88\xb4\x29\xce\xc4\x5c\x92\x0d\xd8\x58\x0f\x99\xa3\x15\x53\x85\x40\x69\x30\x28\xe3\x68\x1d\x85\xce\xc1\xd2\x54\x30\x13\x73\x84\x14\xb1\x84\x4a\xa7\x68\x9d\x17\x3a\x25\xea\x4d\x16\x23\xdf\x55\x26\x60\x8a\xd4\x5b\x57\xc4\x36\xac\xab\xf7\x5c\x80\x6f\x33\xdd\x1d\x89\x2c\x7d\xa8\xab\x62\x3b\x2a\x0d\xf6\xcc\xa2\xde\x7d\x22\x5e\x4d\xfb\xbd\xf0\xd5\x06\xf4\xed\x49\xfc\x79\x7c\x93\xfa\x87\x5f\xdb\x92\xff\x4f\xcf\xcf\xfd\x77\xe7\x51\x03\x50\xc2\xf9\xcf\xe1\x14\x3e\x23\xe3\x4f\x8c\x0e\x66\x73\xd8\x25\xbd\x69\x86\xae\xc7\xde\xdb\x3c\x67\xbb\xf0\x6f\xea\x6c\x56\xe1\xbf\x21\xa9\x0d\xd1\x52\xf4\x42\xaa\x20\x71\xa3\x11\x04\x85\x2c\xbe\xa6\x32\x02\x3b\xab\x05\x9b\x8a\xe4\xe5\xcd\x15\x34\xda\x80\xc1\x60\x10\x40\xd6\x79\x5b\x25\xec\x47\xa5\xf6\xa8\x09\x84\x68\xd5\x54\x5a\x2e\x29\x3a\x5a\xbc\x95\x43\xcc\x08\x43\x98\x59\x0a\x3f\x83\x61\x50\xfe\xb0\x23\x0a\x80\x77\xc6\x02\x3e\x89\xa2\x54\xd8\x27\xbb\x27\x49\xc0\x3b\x63\xe2\xb1\x09\x7b\xfe\x04\xa3\x11\x7c\x6a\xf3\x38\x8e\x55\xa7\x14\x72\x85\x34\x8e\x8b\xa6\x90\x19\x43\x82\xee\xb2\x34\xa4\x89\x3f\x68\xb3\xd0\xdb\x76\xe7\xbd\x84\xc5\x31\x4c\x7a\x97\x73\x21\x15\x59\xff\xa4\xd7\x87\x49\xef\xc6\x9a\x9c\xa3\x66\x9d\x4f\x62\x18\x3c\xe9\xbd\x45\x46\x9a\x74\xd2\xa3\x65\xff\x95\x93\x92\x0f\x94\x9f\xfc\x80\xcb\x6f\x78\xb1\xa6\xb9\xf6\xc0\xdf\x84\xfc\x85\xda\xc9\xd7\xdf\x2d\x4b\xfc\x86\x02\xf7\xba\xe1\x83\x28\x9b\xc9\x9d\x03\x75\xff\x50\xa0\x17\xf3\x8b\x61\xab\xd1\xbf\xfc\xd5\x19\x3d\x9e\xf4\x5a\xfa\xfb\xa6\xa0\x93\x51\xfa\xe5\xa4\x07\x2b\xbb\x8e\x27\x3d\xde\xb7\x6e\xaf\x89\x1c\x4f\x7a\xb4\x13\x35\x5b\xe3\xcd\xb4\xca\xc6\x93\xde\x74\xe9\xd1\xf5\x2f\xfa\x16\xcb\x3e\xe1\xd3\x37\xed\x0e\x93\xde\x5f\x48\x27\xa3\x11\x18\x3f\x43\x1b\x94\xe9\xe0\xe7\x6d\xe0\x75\x44\x34\x7f\xa8\xec\x11\x8c\xf6\xce\x0a\xed\x64\x7d\xf9\xb3\x73\x68\x81\xce\x89\x7c\x77\xbf\x45\xe1\xb6\x46\xa6\xa1\x3b\x9c\x86\x9d\xdd\xc4\xcb\xd6\xce\xc3\x35\x95\x4d\x1e\x8e\xac\x65\x6d\x4e\x6c\x2b\x2d\xce\x83\xa7\x06\x36\xda\xe6\x4c\xf8\x66\x34\xd9\x22\xc5\x01\x64\xe2\x11\x63\x39\x1b\x64\xbd\xc5\x20\x29\xde\x21\x4c\x31\xb8\xfa\x70\x9b\x93\xa2\x55\x4b\xf2\x54\xed\xaa\xc9\x4c\xe8\x9c\x62\x9b\x90\xf1\x0b\x36\x79\x8a\xa0\x1e\xc9\x90\x38\x53\xd4\x50\xb9\xba\xb6\xce\x74\x35\x2b\x12\x76\x04\x9b\x8f\xcb\x30\x38\x26\x09\x96\x9e\xac\xeb\x50\xe1\xec\x40\x79\x24\x33\xb6\x10\x7e\x4c\x1e\x1a\x07\x7e\xf7\xf1\x88\x87\xe3\x48\xc1\xc7\xd1\x21\x31\x9f\x55\x85\xa0\xc0\x47\xa4\x1c\x0b\x34\x7d\x3a\x95\x89\xe0\x78\xa5\x86\x54\x31\x35\x55\x00\xb9\x56\x0f\x51\xd4\x14\x74\x4c\x91\x33\x14\xb2\xcf\xc8\xd6\xaf\x64\xbe\x10\x4f\xef\x51\xe7\x7e\x36\x86\x2f\x5f\xff\xfb\x57\x7f\xde\x31\x30\x00\x23\xa6\xdf\x87\x48\x6f\xcb\x7d\xd5\x0e\x31\x6c\x4e\xec\xd6\xce\x88\xcf\x61\x7d\x49\x30\xcc\xdb\x31\x4d\xf1\xaf\x3d\x41\x0b\xc1\xb9\x16\x4c\x85\xe3\x2c\x81\xe4\x42\x40\xcf\xa1\xa3\x4e\xb0\x4f\x01\xf6\xd6\xc5\xa4\xeb\x24\x1b\x17\xaf\xfb\x30\x8d\x22\xde\x84\xef\xfb\xa7\x87\xe1\x16\x92\xa5\x83\xaf\xfb\x6b\xf4\x50\x7a\x5d\xb1\xd3\xe3\xcc\x96\x83\x52\x8b\xc1\x13\xc6\x88\x7b\x8b\x27\xc4\x86\xde\x43\x8a\x23\x7f\x98\xe3\xee\x42\x6c\x7d\x6c\xa5\xf6\x5f\xfd\xdb\x6e\xfd\x4a\x2d\x8b\xaa\x18\xc3\xab\x1d\x43\x02\xa4\x1d\xa9\xcd\x30\xb8\x0d\x04\x04\x41\x57\x6e\x45\x51\x70\xd6\x2f\x53\xd4\x5e\x66\x12\x6d\xf7\x68\x87\xdc\x83\x27\xd6\x61\x7a\x23\xc5\x97\x2e\xe2\x50\xe7\xb0\xdf\x58\x93\x56\x09\x5a\xf6\xc0\xb1\x18\x92\x74\x01\x6a\x59\x62\xb0\x86\x90\x89\x42\x13\x7d\xd7\x05\x25\x8a\xd0\x51\x68\xa9\x73\x17\xb7\x94\x2e\x00\x48\xf0\xba\x8b\x19\xb2\xeb\x59\x29\x42\x31\x55\x4e\xa6\x68\x31\x05\x01\x79\x25\xac\xd0\x1e\x31\x25\xf8\x09\x85\xa8\x70\x11\xd8\x42\x9e\x68\xaf\xdf\x6a\x6b\x0c\xa6\x1a\xc0\x8a\x48\x8c\x57\x76\xa1\x44\xf9\x9b\x99\xea\xc5\xab\xd7\x7b\x55\xde\x8c\xdb\x5d\xc6\x17\xde\xa3\xd5\x63\xf8\xef\xfb\xcb\xc1\x7f\x89\xc1\xdf\x1f\xce\xe2\x3f\xaf\x06\x5f\xff\x4f\x7f\xfc\xf0\x45\xe7\xe7\xc3\xf9\xb7\xff\xb2\x63\xa5\xed\x91\xfb\x8e\xe3\x13\x9d\x48\x1d\x27\xd6\x1a\xed\xb3\x87\x31\x19\xdc\xd9\x0a\xfb\xf0\x4e\x28\x87\x7d\xf8\xac\xd9\x35\xfc\x4a\xa1\xed\x4e\x5e\xc2\x37\x80\x1e\xed\xba\x3d\xf8\x68\x86\x30\x49\xfb\xc7\x44\x72\xf7\x15\x25\x8f\x13\x12\x87\x6d\x26\xeb\x22\x4d\xe7\x9a\x17\x18\xf1\x28\x2c\x1d\xc6\x08\x77\x98\x98\x62\xd4\xb9\x06\xa6\xd0\xfa\x83\xd0\x4b\x68\x61\x2d\x04\xa5\xeb\x27\xdd\x79\xc2\x26\x91\x58\x4a\x4a\x9b\x8b\x74\x50\xf2\x11\xa1\x89\x5c\x03\x58\x4e\x31\x11\x1c\x8b\xdb\xa9\xf4\x56\xd8\x65\x27\xf5\x80\x44\xe8\x58\x8e\xcc\x2a\x05\x67\x0e\x11\x86\xda\xa4\xb8\x89\xae\xe7\x01\x43\xc5\x54\x2a\xe9\x97\xa1\x76\x99\x18\x9d\x29\x19\x53\x80\xa2\x34\xd6\x0b\xed\xeb\xba\x6f\x8e\x4f\x20\x7d\x28\x39\x87\xfa\xdc\x59\xaa\xdd\xc5\xc5\xeb\x2f\x6f\xab\x69\x6a\x0a\x21\xf5\xbb\xc2\x8f\xce\xbf\x3d\xfb\x5b\x25\x14\x17\x4d\xaf\x45\x81\xef\x0a\x7f\xfe\xdb\xb9\xc5\x8b\xaf\x8e\xb0\xa2\xb3\xfb\x60\x2b\x0f\x67\xf7\x83\xf8\xdf\x17\x75\xd3\xf9\xb7\x67\x93\xe1\xde\xfe\xf3\x2f\x88\x87\x8e\x05\x3e\xdc\x0f\x5a\xf3\x1b\x3e\x7c\x71\xfe\x6d\xa7\xef\x7c\xd3\x18\x3b\x89\xe9\xc1\x1c\xf3\x7d\x3b\x36\x44\x27\xbe\x7e\x0f\x55\x5b\xe6\x6a\x68\xb8\x9e\x75\x46\x2b\x26\x7f\x1c\x97\x79\x76\x61\xf9\x98\xa0\x4b\x1f\x5f\xc8\x5d\x2d\xe1\x76\x2a\x27\x1b\xb7\xe3\x8d\x07\x5a\x61\xea\x9f\xb5\x54\xbb\x7a\xb9\xf0\x09\xb3\x67\xde\x2d\x7c\xc2\xac\x5b\x6d\x0b\x82\x59\xbd\x52\x88\x2f\x56\x9a\x3b\x87\xdf\xe1\xf9\xc0\xee\x37\x4e\x5b\x59\xa0\x60\xbf\x2e\x99\xc6\xf3\x18\x79\xd8\x79\x17\x7a\xd0\xa4\xd9\x1f\xdf\x08\x3f\x3b\x8a\x82\x97\x57\x51\x6c\x7c\x71\xc8\x57\xb9\xa5\xc4\x04\x57\x9e\x51\x71\x1c\x87\x22\x8d\x8d\x14\xf8\x58\x8c\x7d\xfd\x10\x71\xc4\xeb\xd2\xf6\x99\x15\x05\x4d\x20\x08\x88\x65\x0a\xff\x71\xfb\xf1\x7a\xf4\xbd\x89\xb1\x02\x65\x33\x2e\xd8\x16\x5f\x74\xf5\xc1\x55\xc9\x0c\x84\x23\xd2\x28\xbf\xbd\xe5\xd2\x43\x21\xb4\xcc\xd0\xf9\x61\x5c\x0d\xad\xbb\x7f\xfd\x30\x5c\xad\x78\xc8\x78\xa7\x5a\x3f\x46\x8a\x07\x80\x6d\x83\x98\x69\xe6\x72\xd0\xca\x24\x95\x26\x8d\x44\x2f\x98\x58\x2f\x1e\x11\x4c\x24\xb6\x42\x76\x0a\x63\xe8\xd1\x31\xe9\x6c\xfd\x13\x19\xd6\xcf\x3d\x38\x5b\x70\x55\xbf\x47\x3f\x7b\x61\xc3\xe6\xed\x18\xb5\x75\x3c\x7e\xdc\x38\xc4\xf7\x56\xe6\x39\x87\x5b\x5c\xba\x9d\xa3\xf6\xe7\xec\xdf\x32\xd0\xa6\x33\x58\xc7\x2b\xb2\xf6\x62\x6c\x9d\x90\xfb\xd7\x0f\x3d\x38\x5b\xe5\x8b\x42\x50\x7c\x82\xd7\xcd\x65\x58\x69\xd2\xf3\x3a\x6b\x5d\x6a\x2f\x9e\x38\x31\x98\x19\x87\x3a\xdc\x25\x78\x13\x0a\xb2\xce\x50\xf2\x89\x4a\x0d\x42\x80\x99\xc2\x22\xd4\xe0\x6a\x51\x86\xfb\xe4\x52\x58\xbf\xf6\xb2\xee\xee\xe3\xdb\x8f\xe3\xb0\x1b\xa9\x2d\xd7\x75\x96\x9b\x49\x2d\x54\xac\x6c\x37\xf1\x21\x11\x52\x05\x25\x79\x13\x53\xdb\xba\xa8\x9b\x55\xbe\xb2\x38\x5c\x7f\x69\x75\xf4\x89\xdf\xf6\xcc\x6d\xfb\x61\xe7\xe7\x6e\xeb\x86\xf6\x7f\xf8\x98\xec\x68\x16\xf5\x8e\xcb\xd6\x4d\x16\xaf\x3b\x67\x70\x2f\x8b\x2d\x34\x13\x97\xa9\x49\x1c\x31\x98\x60\xe9\xdd\xc8\xcc\x09\x3a\x71\x31\x5a\x18\xfb\x28\x75\x3e\xa0\x43\x36\x08\x9a\x77\x23\x76\x31\xa3\x3f\xf1\x9f\x5f\xc5\x11\xfb\xa9\xe3\xd9\x0a\x6f\x5a\xff\x01\xbc\xb1\xfb\x1c\xfd\x62\xd6\xea\xf8\xf2\x39\x9e\xe0\xe5\x6d\x9d\xfc\xad\xcd\x26\x73\x09\x77\xe1\xf1\xb1\x6b\x07\xe1\x0a\x91\x06\x08\x14\x7a\xf9\xbb\x1f\x63\x12\x20\xe7\xf8\xc9\x72\x10\x5f\xa3\x0f\x84\x4e\x07\x4d\x7c\x9d\x2c\x7f\xb1\xc4\x2a\x79\xa4\x01\x7f\xbe\x7a\xfb\x8f\x39\xdc\x95\x7c\x96\xb5\x86\x2a\xca\x18\xbc\xad\xea\xe8\xce\x79\x63\x45\x8e\xab\x6d\xd5\xb4\x49\x3e\x5a\x86\x63\x5e\x09\x3f\xfd\xcc\x4d\xed\xfb\x73\xa1\xca\x99\x78\x5d\xcf\x3d\xbd\x42\x3f\xbd\x42\x3f\xbd\x42\x3f\xbd\x42\xdf\x2b\xec\x3f\xea\x2b\xf4\xd3\x2b\xf2\xd3\x2b\xf2\xd3\x2b\xf2\xdd\xdd\xa7\x57\xe4\xa7\x57\xe4\xa7\x57\xe4\xeb\xdf\xe9\x15\xf9\xe9\x15\xf9\xe9\x15\xf9\xe9\x15\xf9\x96\x6f\xa7\x9a\xfe\x7f\xbf\xbf\x3c\x5d\x8e\xfd\x31\x2e\xc7\x4e\xd7\x5d\xa7\xeb\xae\xd3\x75\xd7\xe9\xba\xeb\x17\x9c\xf8\xd3\x75\xd7\xe9\xba\xeb\x74\xdd\x75\xba\xee\xfa\x27\xbd\xee\xca\x84\x72\x47\xdf\x77\xfd\x6f\x00\x00\x00\xff\xff\x43\xb0\x74\xb5\x37\x4b\x00\x00") +var _operatorsCoreosCom_operatorgroupsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7b\x7b\x6f\x1b\x39\x92\xf8\xdf\x9b\x4f\x51\xd0\xfe\x80\xb1\xe7\xa7\x47\x9c\x59\xcc\xed\x0a\x18\x0c\x8c\x64\x32\xf0\x4d\xe2\x18\xb1\x33\x07\x5c\xce\x77\x4b\x75\x57\x4b\x5c\x77\x93\xbd\x24\x5b\xb2\x76\x6e\xbe\xfb\xa1\x8a\xec\x97\xd4\xdd\x52\x12\xef\xce\xdd\x42\xfc\x23\xb1\x9a\xec\x62\xb1\xde\x0f\xb6\xc8\xe5\xcf\x68\xac\xd4\x6a\x0e\x22\x97\xf8\xe8\x50\xd1\x2f\x3b\x7d\xf8\xa3\x9d\x4a\x3d\x5b\x5f\x3c\x7b\x90\x2a\x9e\xc3\xcb\xc2\x3a\x9d\xbd\x47\xab\x0b\x13\xe1\x2b\x4c\xa4\x92\x4e\x6a\xf5\x2c\x43\x27\x62\xe1\xc4\xfc\x19\x80\x50\x4a\x3b\x41\x8f\x2d\xfd\x04\x88\xb4\x72\x46\xa7\x29\x9a\xc9\x12\xd5\xf4\xa1\x58\xe0\xa2\x90\x69\x8c\x86\x81\x97\x5b\xaf\x9f\x4f\x2f\xfe\x30\x7d\xfe\x0c\x40\x89\x0c\xe7\xa0\x73\x34\xc2\x69\xb3\x34\xba\xc8\xed\xb4\xfc\x69\xa7\x91\x36\xa8\xe9\xbf\xec\x99\xcd\x31\xa2\x4d\x78\x4d\xfd\x4a\x6b\x8d\x87\x57\xe2\x22\x1c\x2e\xb5\x91\xe5\x6f\x80\x09\xe8\x34\xe3\xbf\xfd\x19\xdf\x05\x18\x3f\x12\x48\x7e\x9e\x4a\xeb\x7e\xda\x9f\x7b\x23\xad\xe3\xf9\x3c\x2d\x8c\x48\x77\x11\xe6\x29\xbb\xd2\xc6\x5d\xd7\xdb\xf3\x76\x4b\x3f\x25\xd5\xb2\x48\x85\xd9\x79\xef\x19\x80\x8d\x74\x8e\x73\xe0\xd7\x72\x11\x61\xfc\x0c\x20\x50\x29\x80\x99\x04\x12\xad\x2f\x02\x54\x1b\xad\x30\x13\xe5\x1e\x40\x20\xd5\xe5\xcd\xd5\xcf\xdf\xdc\xee\x4c\x00\xc4\x68\x23\x23\x73\xc7\x34\xff\xef\x49\x63\x06\xda\xe7\x03\x69\xc1\xad\x10\x0a\x25\x1d\xe8\x04\xb2\x22\x75\xd2\xa1\x12\x2a\xda\x42\xa2\x0d\xbc\x7b\xf3\x16\x32\xa1\xc4\x12\xe3\x06\xe5\x5b\x00\xaf\x1c\x71\xdf\x3a\x23\xa4\xf2\xd0\xa4\xb2\x4e\xa4\x29\xcb\x07\x41\xad\x5e\x04\xa9\x40\x3a\xeb\x99\x45\xc7\x06\xa7\x41\x00\x71\x58\x26\x12\x63\xb0\xc8\x68\x38\x61\x96\xe8\xea\x65\xad\x1d\xdd\x96\x28\xa7\x17\x7f\xc1\xc8\x35\x1e\x1b\xfc\x6b\x21\x0d\xc6\xf3\x16\x72\x13\x28\xc5\xb6\xf1\x38\x37\x84\x91\x6b\x08\x88\x1f\x0d\x25\x69\x3d\x1f\x26\x28\x0d\xe2\x83\x7f\x13\x62\xd2\x18\xf4\x84\x08\x1c\xa5\x83\x31\x8f\xf8\x6c\x2b\x69\xc1\x60\x6e\xd0\xa2\x72\x15\x8d\x84\x0a\x47\x9a\xee\x01\xbf\x45\x43\x80\x48\xd0\x8a\x34\x26\x62\xaf\xd1\x38\x30\x18\xe9\xa5\x92\x7f\xab\xa0\x5b\xa2\x26\x6d\x9b\x0a\x87\xd6\x81\x54\x0e\x8d\x12\x29\xac\x45\x5a\xe0\x18\x84\x8a\xf7\x60\x67\x62\x0b\x06\x69\x5f\x28\x54\x03\x22\xbf\x62\xf7\x71\x79\xab\x0d\xf1\x37\xd1\x73\x58\x39\x97\xdb\xf9\x6c\xb6\x94\xae\x34\x22\x91\xce\x32\x12\xa5\xed\x8c\xed\x81\x5c\x14\xc4\xf5\x59\x8c\x6b\x4c\x67\x56\x2e\x27\xc2\x44\x2b\xe9\x30\x72\x85\xc1\x99\xc8\xe5\x84\x0f\xa3\xd8\x90\x4c\xb3\xf8\xf7\x26\x98\x1d\xbb\xb3\xb1\xe7\xb9\x75\x46\xaa\x65\x6b\x8a\xf5\xf9\x13\x99\x45\x7a\x4e\x82\x2f\x02\x40\x7f\xd8\x9a\x27\xf4\x88\xc8\xf8\xfe\x87\xdb\x3b\x28\x31\xf2\x7c\xf3\x2c\xaa\x97\x76\x50\xa8\xe4\x16\x51\x56\xaa\x04\x8d\x7f\x33\x31\x3a\x63\xa8\xa8\xe2\x5c\x4b\xe5\xf8\x47\x94\x4a\x54\x0e\x6c\xb1\xc8\x48\x2f\x48\x86\xd1\x3a\x62\xe4\x3e\xe0\x97\x6c\x74\x61\x81\x50\xe4\xb1\x70\x18\xef\x2f\xb9\x52\xf0\x52\x64\x98\xbe\x14\x16\xff\xe1\xbc\x23\x1e\xd9\x09\x31\xe4\x68\xee\x35\x5d\xca\xfe\x0b\x7b\x2a\x0e\x50\xfa\x82\x5e\x76\xb7\xac\xdb\x6d\x8e\x51\x69\xe1\xe8\x4d\xb6\x68\x42\xed\x98\xc0\x92\xc3\xbb\x04\xeb\x45\x82\xb6\x4c\x44\x91\xba\x5d\x4c\x00\x8a\x7c\x69\x44\x8c\xb7\xce\x90\x0f\xda\xce\xe1\x95\x5f\xb9\xb3\xb0\xcf\x00\xf1\x11\x31\xc5\xc8\x69\xb3\x3f\xb3\x73\xd4\xdb\xb0\x30\xbc\xe1\x8f\xd9\x3a\xda\x57\x76\xd8\x92\x1e\x71\xd2\x43\xd8\x02\xdb\x10\x17\xad\x7e\x78\x24\x95\x68\xf8\xaf\x03\xd8\xef\xbe\xe4\x15\x92\xdc\x30\x59\xc3\x54\x2c\x30\xad\x48\x51\xda\xf6\x8c\x35\x0e\xee\x56\xd8\x7a\x02\xc2\x20\x5c\x5e\xbf\xea\xd2\x88\xe6\x01\x85\x31\x62\xdb\xb3\x42\x3a\xcc\x7a\x11\x3f\x6c\x52\xea\x71\x39\x80\x7b\x30\x3a\xe5\x8c\x5b\x09\x76\x9d\x8e\x1d\xa7\xb7\xb8\x63\x10\xf0\x80\x5b\x36\xd6\xec\x13\x02\x3f\x79\xf1\xc0\xb6\x06\xd9\xe8\xb3\x0c\x3c\xe0\x96\x5f\xef\xb3\xe1\x6d\xaa\xf4\xb2\xbd\x04\xdc\xe5\x56\xdb\x63\x42\x5b\x0e\xce\x97\xc7\xe8\x5d\x74\x48\xc6\xfc\x78\xc0\xed\xd0\xf4\x0e\x9f\x88\x0e\x41\xfb\x3d\x4f\xe8\x01\x13\x9d\x0d\x42\xc9\x06\x91\xe7\xa9\xc4\x6e\x9b\xdb\x1c\xbd\x56\xac\x3d\xca\xa3\x7e\x02\xa2\x83\x02\xd5\x84\xd9\x70\x3c\x5e\x4e\xbe\xb2\x9e\xf3\xa4\x41\x2b\x99\x87\x70\xca\x07\x51\x87\xd8\xef\xc7\xcf\x22\x95\x8d\xd0\x8e\x75\xe9\x4a\x8d\xe1\x5a\x3b\xfa\xef\x87\x47\x49\xfe\x88\xc4\xe9\x95\x46\x7b\xad\x1d\x3f\x79\x12\x4a\x79\x04\x9f\x92\x4e\x1e\x22\xab\x99\xf2\xea\x4e\x84\x68\x7a\x79\x3b\x85\xab\x84\xf9\x5f\xd1\x54\x5a\xf2\x9b\xda\x84\x23\x1f\xd8\x82\xc3\x3a\xbf\x8d\xdf\x20\x2b\x2c\x3b\x65\xa5\xd5\x04\xb3\xdc\x6d\x3b\x77\x08\x74\xd4\xa6\x45\xc6\xcf\xde\x2c\x6c\x74\x47\x91\x85\x9f\xf1\x41\x65\x4a\xa9\x04\xc4\x05\x1f\x98\xe3\x1b\xf2\x43\x32\x3a\xb0\x4f\x86\x66\x89\x90\x93\x49\x3e\x86\xb3\x43\x86\xd4\x8f\x03\xe6\xb4\x09\x6c\x40\x4c\xd8\x47\xbc\x21\xd5\x3d\xce\xa7\x0c\xc8\x47\x03\x94\xb7\xc2\x99\xc8\x49\x36\x7e\x21\x63\xcb\x24\xfe\x15\x72\x21\x8d\x9d\xc2\x25\xa7\x6d\x29\xb6\xe6\xa4\x62\x66\x34\xc0\x0c\x6c\xc5\x69\x15\xd9\xcd\xb5\x48\xc9\xec\x93\x56\x2a\xc0\xd4\x3b\x01\x4a\xb3\x76\x9c\xdf\x18\x36\x2b\x6d\xbd\xe5\x4e\x24\xa6\x1c\x9e\x8e\x1e\x70\x3b\x1a\xd3\xb6\xbd\x5b\x35\x25\x6c\x74\xa5\x46\xde\x6d\xec\x49\x4d\xe5\x63\xb4\x4a\xb7\x30\xe2\xb9\xd1\xe7\xfb\xd1\x41\x8f\x21\xe2\x98\xcb\x05\x22\xbd\x39\xc2\xa4\x1f\x10\x81\xc7\xc9\x43\xb1\x40\xa3\xd0\xa1\x9d\x64\x22\x9f\x04\xf9\x73\x3a\xeb\x90\x69\x8b\x66\x2d\x23\xbc\x8c\x22\x5d\x28\xce\xc8\x0f\xc6\x50\x3d\x12\x73\xbb\x07\xa9\x74\x24\x22\xce\xa4\x6a\x25\xac\xbc\x12\x84\x5f\x0a\x9b\x95\x8c\x56\xb0\x91\x69\x0a\x8b\x6e\xbe\x15\x16\x63\x92\x88\x18\xf3\x54\x6f\x2b\x16\x9e\xd9\x73\x2f\x64\x94\x65\x94\x6c\xe5\x6a\x41\x7f\xc4\xd6\x43\x37\x4b\x59\x65\x74\x63\xf4\x5a\xc6\x18\x5f\xde\x5c\x75\x32\xa0\x1d\x4b\xf2\x2b\xe0\x30\x4d\x2d\xe7\xfc\x94\x69\x38\x1d\x32\x8d\xce\xc8\x32\x6f\xc0\x6f\xd4\x83\x7a\x91\x5d\x68\x9d\xa2\xd8\x9f\xf7\x11\x6a\x55\x08\x39\x8c\x6b\x0f\xcf\xee\x76\xe0\x04\x2f\x80\x8f\x79\x2a\x23\xe9\x4a\xaf\x58\x47\xc2\x9c\x2d\xf3\x4b\xdd\xe2\x7e\x95\x80\xe4\x90\xcd\xa2\x1b\xd7\xd1\xb6\xb4\x20\x97\x4a\x9b\x6e\x2d\x19\x36\x90\x03\x66\xf1\x53\x34\x81\xa2\xe4\xa0\x0a\x16\xf7\x15\x71\x37\x09\xf9\x4c\x82\x7e\x68\x83\x69\x15\x36\xc2\x16\xa5\x83\xf1\xb5\xa2\x56\x99\x87\x56\x55\xb4\xee\x26\xf0\xdd\x0a\x0d\xb2\xd1\x89\x0a\x63\x50\xb9\x74\x0b\x6e\xa3\xc1\x16\x79\xae\x8d\xc3\x78\x77\x1b\x36\x25\xcf\x3a\x61\x85\x3c\x6b\xce\xc2\xcb\xea\xc7\xb6\x4e\xa4\xa9\xde\x40\x94\x16\xd6\xa1\x09\x5a\x1d\x0a\x35\xcc\xff\x4c\xaf\xb1\xac\x9a\x78\xf7\xd9\xe7\x8b\xf2\x95\xb0\x58\x67\xf1\xb6\x88\x22\xc4\x18\x63\x3f\x11\x5c\x31\x26\x09\x46\x4e\xae\x31\xdd\x42\x86\x82\xcb\x61\xc2\xd5\x38\x29\xdd\x6d\x36\x3d\x9a\x35\xfd\x76\x30\x53\xf8\xe8\xca\x5a\x12\x48\xae\x15\xb5\x4b\x6c\xa6\xa4\x54\x27\xf4\x95\xb0\x90\x08\x99\x92\xc4\x76\x53\xef\x0e\xa3\xd5\x8d\xc1\xb5\xc4\xcd\x07\x65\x45\x82\xaf\x85\x4c\x5f\x6b\xb3\x11\x26\x6e\x90\xf4\x13\xa8\xd9\xb9\x4d\x45\xe1\x03\xd4\xa4\x03\x55\x73\x1e\xf3\x40\xe6\x4e\xb0\x97\x95\xcb\x49\xb7\xe3\x1a\xdb\x25\x2a\xa2\x27\x91\x6f\x53\xd2\xeb\x26\x25\xa6\x6c\x56\xa8\x28\x3a\x2a\x16\x95\x16\x80\xc1\x04\x0d\xaa\xfd\xd2\x53\xe0\x50\x89\x47\x03\x50\xe5\x6c\x23\xe1\x44\xaa\x97\x4c\xe8\x05\xa2\x2a\x0b\x34\xb0\x91\x6e\x05\x82\x11\x28\x45\x39\xe9\x49\x82\xb8\x34\x44\x31\x21\x91\x27\xd8\xaa\x46\xc1\xb5\x9b\x6f\xff\x76\xf9\xfe\xfa\xea\xfa\xc7\x39\xbb\xf2\x21\x26\xee\x2b\xac\xb4\x50\xf0\x2a\x3e\x85\x2f\x03\xda\xfd\x4a\x85\x1f\x52\x41\xa1\xf0\x31\xc7\x88\x4e\xb5\xc0\x95\x58\x4b\x52\x78\x13\x8a\x86\x6b\x34\x62\x91\x22\xc4\xc2\x09\x48\xb5\x25\xd8\x29\x5a\x0b\x5b\x5d\xc0\x4a\xac\x11\x62\xc4\xbc\xdb\x1d\xaa\x18\x8d\x75\x42\xc5\x74\x70\x9d\x84\xdc\xac\x7d\x7e\x58\x20\xcd\x96\x85\xe8\x63\xcc\xcb\x01\x7b\x5a\x56\x70\x7a\x0a\x34\x34\x50\x15\x59\xb7\xad\x9e\x0c\xbc\x45\xb3\x43\x9c\x68\x97\xb3\x9c\x70\xc5\x9e\x43\x18\x28\x68\xf1\xfa\xaa\xa4\xe5\x7f\x75\x15\xb5\xde\x7f\x7a\x4d\xab\x3f\xd1\x9f\x40\x2a\xac\xfb\xe0\x65\xfa\x13\x2a\x59\x91\x56\x5e\x31\x0f\xfb\xf4\x97\xd5\xd2\xdd\xe4\xad\x2b\xf4\xa8\x01\x3f\xa9\x0b\x3e\x2e\x97\xa8\x50\xad\xc3\xea\x18\x9d\x90\xa9\xe7\x84\x56\x08\x82\xe2\x43\x57\x62\x1f\x9c\x1b\xb3\x0b\xab\x0e\xc0\xe5\xcd\x15\xf4\x71\xa9\x22\xfc\xa4\x0f\x09\xf6\x36\xd6\x99\x22\xe2\x08\x45\x2a\x87\x8a\xcc\x27\x61\x10\x4b\xc3\xe5\x7c\x4b\x88\xd4\xb4\x0c\x65\x0f\x9f\x5e\xe4\xc2\xad\x60\xea\x05\x68\xda\x20\x27\xc0\x6b\x6d\x00\x1f\x45\x96\xa7\x38\xee\xb1\x3a\x00\xbf\x23\x1a\xc3\x6b\xad\x83\x40\x7a\x4c\x7e\xe9\x5b\x4d\xff\xcc\x66\xf0\xbe\x2e\x5e\x70\x7a\xbc\xa0\xe0\xd9\xd7\x2e\xb8\x03\x02\x89\xd6\xc4\xdd\x26\xbd\xfa\x48\x53\xc2\xfc\x49\xe9\x8d\xea\x3a\x09\x63\x28\x0c\xce\x61\x74\xb9\x16\x32\x25\xfb\x34\x1a\xc3\xe8\xc6\xe8\x25\xa7\x5d\x6a\x19\xd2\xa5\xd1\x2b\x64\xdb\x18\x8f\x0e\xec\xf5\xff\x39\x41\x7e\x4b\xb9\xf2\x4f\xb8\xfd\x8e\x76\x38\xea\x8d\x32\x82\xfa\x8e\xd3\xec\x43\xaf\x50\x70\x77\xb7\xcd\xf1\xbb\x4c\x74\x5b\xcc\x9d\xb5\x6f\x45\x7e\x0c\x36\x0d\x0d\xfb\x78\x9f\xa1\x13\xeb\x8b\x69\x2d\xca\x7f\xfe\x8b\xd5\x6a\x3e\xaa\xe9\x37\xd6\x19\x69\x4a\xee\xb6\x23\x68\x1d\x62\x3e\xe2\x53\x84\xa7\x25\x31\xe6\x23\xda\x7f\x44\xe6\xc0\xe9\x45\x91\xcc\x47\x8b\xad\x43\x3b\xbe\x18\x1b\xcc\xc7\x64\xa8\xbf\xab\x61\x8f\xfe\xdc\x2f\x58\xe1\x64\xda\xad\xd0\x78\x59\xed\x4b\xb4\x7f\xf7\xeb\x40\x1c\x3d\x90\xa2\x1e\x2a\x68\x7a\x6b\x77\x67\x84\xb2\x8c\xee\x9d\xcc\xfa\x08\x3b\x81\x0c\xad\x15\xbd\x3c\x9d\x80\x41\x61\x3b\x73\x22\x3f\xed\xc5\xb6\x77\xba\x97\xa7\x87\xab\xa5\xfb\x67\x78\x8a\xe2\xf6\x3e\xd4\xba\xc0\x6a\x1d\x38\x7a\xc0\x26\xaf\x12\x2c\x57\xad\x26\xeb\x44\x31\x1d\x19\xc8\xe0\xb9\xb8\x2e\xc2\xac\x1e\xaa\x3a\x79\x5b\xe7\x7b\x9f\x0b\xf4\xc1\x9b\xef\x59\xc7\x68\xd2\x2d\x05\x06\xf5\x7e\xd1\x4a\xa8\x25\xc6\x53\xf0\x45\x38\xc1\xe6\x91\x92\xd9\x07\x32\x14\x5c\x4d\x51\x50\xd8\xb2\xc5\xc7\x18\x57\x10\xc9\x26\x7b\xfb\x18\xc0\xb0\x33\x8a\x22\xcc\x1d\x99\x8f\x43\x95\xf4\x03\x05\xcf\x44\x9b\x4c\xb8\x39\x05\x49\x38\x71\xfd\x52\x15\x64\xea\x29\xf8\x15\x40\xf9\x8a\xd7\xaa\xc8\x04\xc5\xb9\x22\xe6\x58\xad\x9a\x53\xb1\x8c\x04\x87\x9d\xa5\x1f\x13\x0b\x5d\x78\x6f\x51\xb3\xef\x20\x87\x28\x84\x5c\x20\xa7\xdc\x64\x36\x02\x35\xbe\x90\x66\x99\x78\x7c\x83\x6a\xe9\x56\x73\xf8\xe6\xc5\xbf\x7c\xfb\xc7\x9e\x85\xde\x95\x60\xfc\xa3\x0f\xf9\x3b\x1a\xf8\x9f\x43\xbd\x7d\xa8\xcd\xfa\x3b\x91\x67\x5a\x36\x30\xa7\xcb\x7a\x4d\xd5\x61\xa8\xa5\x72\x23\xb8\x8a\x00\x0b\x61\x39\xab\x1d\x26\x27\xb9\x60\x4e\x33\x54\x84\x63\xca\xf7\x3a\xb7\x91\xb6\x91\x36\x5f\xbc\x18\xc3\x22\xf0\x6c\xdf\x19\x7e\x7c\xbc\x9f\x76\x1c\x46\x5a\xf8\xd3\x78\x07\x53\x69\x81\x78\xaf\x13\x16\xd3\x01\x24\x39\xb5\x31\xe8\x23\x9d\x90\xa7\x76\x44\x3a\x58\x9d\xe4\x90\x24\x50\x0c\xb3\xc4\xfe\x0e\x51\xa9\x3e\x52\xb9\x6f\xff\xd0\x2f\x30\x52\xc9\xac\xc8\xe6\xf0\xbc\x67\x89\xb7\xc8\x4f\x21\x1e\x1e\x52\x1d\x05\x0a\x32\xcb\x4b\x23\xb2\x8c\x6b\x69\x32\x46\xe5\x64\x22\xd1\x34\x55\xcc\x17\x1a\xf8\xc5\x84\xbb\x7a\x0d\xe2\x7f\x65\x83\x19\x3d\x4a\xe9\x6e\x8c\x8e\x8b\x08\x0d\xc7\x4e\xa1\x20\x19\x35\x2d\xef\x36\x47\xaf\x95\xbe\x70\x03\x55\xfe\x56\xd6\x86\x29\xef\x43\xa1\xa4\x5a\xda\x80\x8c\xb4\xde\xfe\x0d\xf5\x25\xe8\xb5\xcd\x0a\xd9\x41\xb7\x2a\xcd\x7c\x12\x2b\x63\x34\x18\x83\x80\x65\x21\x8c\x50\x0e\x31\x26\xbb\x3a\x6c\x3e\x02\x94\x86\x95\x17\xf5\x45\x86\x83\x96\x24\x18\x20\x6f\xb9\xe9\xc0\xe1\x9a\x84\x6f\x92\x3c\x99\x01\xba\x78\xfe\x62\x50\xee\xaa\x75\xfd\x4d\x4e\xe1\x1c\x1a\x35\x87\xff\xfc\x78\x39\xf9\x77\x31\xf9\xdb\xfd\x59\xf8\xe3\xf9\xe4\x4f\xff\x35\x9e\xdf\x7f\xdd\xf8\x79\x7f\xfe\xfd\xff\xeb\x81\xd4\x9d\x36\xd6\xa3\x25\xc3\xc1\xd7\x96\xc9\x48\x29\x1f\x63\x76\xc4\x3a\x81\x3b\x53\xe0\x18\x5e\x8b\xd4\xe2\x18\x3e\x28\xf6\x93\x5f\x48\xb4\xfe\xcc\xd9\x8f\x09\x8c\x68\xd7\xbe\x78\x3b\x2c\x61\x94\x86\xd7\x04\x74\x87\xba\x15\x4f\xa0\xe8\x9c\x4a\xe8\xa4\x69\x25\x1b\xf7\x6c\x80\xad\x35\xe5\x2e\xd3\x90\x37\x4d\x23\x9d\xcd\x06\xee\xe1\x34\x4e\xd0\x9b\xe0\xd1\x78\x2b\xd4\x16\x6a\x33\xee\x53\x9a\x5d\x75\xb3\x8e\x2c\xae\x88\x8c\xb6\xb6\xba\xca\x62\x21\x95\x0f\x08\x55\xe2\xe3\x9d\xc3\x02\x23\xc1\x59\xa1\x59\x48\x67\x84\xd9\x36\x12\x69\x88\x84\xea\xeb\x58\xf8\x51\x58\x4c\x8a\x14\xce\x2c\x22\x4c\x95\x8e\x71\xdf\xcf\x9c\x7b\x6f\x22\x16\x32\x95\x6e\xeb\x9b\x1c\x91\x56\x49\x2a\x43\x9a\x9a\xe5\xda\x38\xa1\x06\xdb\xc7\xbe\x2b\xb5\xc4\x47\x90\xce\x37\xca\x7c\x2d\xff\x2c\x56\xf6\xe2\xe2\xc5\x37\xb7\xc5\x22\xd6\x99\x90\xea\x75\xe6\x66\xe7\xdf\x9f\xfd\xb5\x10\x29\xf7\x62\xae\x45\x86\xaf\x33\x77\xfe\x74\x11\xc7\xc5\xb7\x47\xa8\xf2\xd9\x47\xaf\xb0\xf7\x67\x1f\x27\xe1\xaf\xaf\xcb\x47\xe7\xdf\x9f\xfd\xc7\x74\x70\xfe\xfc\x6b\x3a\x43\xc3\x0c\xdc\x7f\x9c\xd4\x36\x60\x7a\xff\xf5\xf9\xf7\x8d\xb9\xf3\x7d\x8b\xd0\x28\xcd\x1c\xac\xb2\xbc\xa9\xd7\xfa\x90\x90\xa2\x50\xeb\x44\x96\x97\xe6\xa1\x1d\xc6\xef\xd6\x5d\x82\x29\xa1\x68\xe6\x43\xdf\x15\xb4\x83\x64\x3e\x1c\x06\xab\xe3\x7b\x41\xed\x76\x4f\xa3\x74\xb8\x77\xef\xa9\x72\xb7\xad\x43\xfd\x6f\x6d\xe1\xb4\x5b\x99\xef\x31\x39\xe2\x36\xd8\xce\x1b\x8d\x8a\x76\x20\x4c\xbb\x53\x19\xae\x32\x56\xad\xcc\xbf\xc3\xc5\xb0\xfe\xfb\xb4\x9d\x47\xa0\xf4\xab\xec\x72\x04\x79\x0c\x67\xe8\x35\x18\x07\x55\x9a\x83\x82\x1b\xe1\x56\x5f\x7a\x81\xe0\x2a\x10\x94\x6f\x56\xf0\x35\x9b\x5c\x62\x84\xad\xab\xbb\x1c\xeb\xa2\x88\xc3\x43\x8a\xff\x0c\x86\xb9\xb1\x0f\xaf\x0e\x58\x9f\xfa\x8a\x2f\xc5\x94\x20\xc8\xdc\xcb\x18\xfe\xf5\xf6\xdd\xf5\xec\x47\x1d\x42\x1c\xca\x48\xad\xd7\x46\x6e\xdc\x8f\xc1\x16\xd1\x0a\x84\xa5\xc3\x48\x83\xf1\x2d\x57\xce\x32\xa1\x64\x82\xd6\x4d\x03\x34\x34\xf6\xe3\x8b\xfb\x7e\xd3\xdb\xac\xfc\x51\xd6\xe1\x6b\x74\xe1\xbe\x6b\x10\x25\xd6\x32\x3a\x7c\x05\x93\x13\x01\x46\x35\xd7\x71\x38\xe4\x86\x0f\xe1\xc4\x03\x82\x0e\x87\x28\x90\x5d\x52\xbf\x3b\x1e\x91\x20\x36\x50\xfd\x85\x54\xf7\xd7\x11\x9c\x6d\xb8\x4b\x38\xa2\x9f\x23\x8f\x48\x75\xcf\x99\x9e\x35\x02\x9b\x80\x90\xcf\xbf\x8c\x5c\x2e\x29\x12\xed\xf7\x06\x2b\x04\x5c\xa3\x72\xe7\xec\xc1\x13\x50\xba\x01\x44\x85\x9e\x7f\xdd\xe9\xdf\x45\xf0\xe3\x8b\xfb\x11\x9c\xb5\xe9\xd0\xbb\x99\x54\x31\x3e\xc2\x8b\xaa\xc3\x9f\xeb\xf8\x3c\xf4\x0c\xed\x56\x39\xf1\xc8\xe9\xdc\x4a\x5b\x54\xbe\x71\xe9\xb4\xef\x9b\x58\x9d\x21\x6c\x30\x4d\x27\x3e\x8a\x8f\x61\xc3\x75\xf1\xde\x9d\x4a\x56\xf9\x0b\x40\xb9\x30\xee\xc0\xed\xf2\x72\xdc\xbd\x7b\xf5\x6e\xee\xb1\x23\x31\x5a\xaa\xb2\x72\x92\x48\x25\xd2\xd0\xeb\xaa\xc2\x6c\x42\xbc\xf0\xc2\xe1\x74\x28\x97\x94\x7d\x99\xa4\x70\x85\xe9\x8d\x7b\x0e\xaa\x6c\xd7\x95\xee\x72\x1c\xab\xad\x7c\xc5\xfb\x48\x1b\xf2\x1b\x5e\x8c\x3e\x9a\x26\xaa\xe7\x32\xcb\xa7\xd0\xe4\xba\xa1\x2d\x9f\x45\x93\xda\x7d\x11\x59\x62\x1d\x59\xa2\x48\x84\xb9\xb3\x33\xbd\x26\xf7\x82\x9b\xd9\x46\x9b\x07\xa9\x96\x13\x52\x87\x89\x97\x39\x3b\x63\x37\x3c\xfb\x3d\xff\xf7\x25\x24\x60\x57\xfe\x14\x74\xf0\x1f\x9f\xfc\x86\xc4\xe0\x98\x64\xf6\xb9\xb4\x28\xe3\xfc\x4f\xf1\xae\x03\x14\xb9\x2d\xab\x07\x3b\x70\x49\xb5\xfd\x85\xa6\xf0\xd1\x4a\xc3\x0b\x64\x22\xf6\x6e\x42\xa8\x81\x1c\xfb\xef\xac\x59\x44\x71\xae\x39\x45\xdb\x49\xf8\x02\x6d\x22\x54\x3c\xa9\x32\xa3\xa8\xef\x9a\xe2\x41\x12\x17\xf2\x8b\x8d\xd0\x87\xab\x57\xbf\xad\xbe\x15\xf2\x73\x2d\xce\x31\x17\xef\x7c\x3d\x71\x0e\xce\x14\x65\x0c\x6f\x9d\x36\x62\x89\xed\x67\xc5\xa2\x4a\x4b\x6b\x8a\x86\x12\x06\xfc\xe2\xbb\x38\xf5\xc7\x6e\x22\xcd\x57\xe2\x45\xf9\xee\xe9\x93\xb7\x06\xb7\x4e\x9f\xbc\x9d\x3e\x79\x3b\x7d\xf2\xb6\x33\x4e\x9f\xbc\xfd\x63\x3e\x79\x3b\x7d\xb2\x76\xfa\x64\xed\xf4\xc9\x5a\x73\x9c\x3e\x59\x1b\x1a\xa7\x4f\xd6\x4e\x9f\xac\x9d\x3e\x59\xeb\x1a\xa7\x4f\xd6\x4e\x9f\xac\x95\xe3\xf4\xc9\x5a\xa0\xc3\xe9\x93\xb5\x7f\xa2\x4f\xd6\xfe\xb9\x3f\x6b\x38\x75\xdc\xff\x6f\x74\xdc\x4f\x3d\xf4\x53\x0f\xfd\xd4\x43\x3f\xf5\xd0\x4f\x3d\xf4\xf6\x38\xf5\xd0\x3f\x9f\x26\xa7\x1e\x7a\x4d\x87\x53\x0f\xbd\x39\x4e\x3d\xf4\xfd\x71\xea\xa1\x7f\x49\x0f\x3d\x11\xa9\x3d\xba\x89\xfe\x3f\x01\x00\x00\xff\xff\x30\x4b\xcf\xd3\xe0\x57\x00\x00") func operatorsCoreosCom_operatorgroupsYamlBytes() ([]byte, error) { return bindataRead( @@ -205,7 +205,7 @@ func operatorsCoreosCom_operatorgroupsYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_operatorsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\x5f\x73\xe3\xb6\x11\x7f\xf7\xa7\xd8\x51\x1e\x9c\xcc\xe8\x4f\x72\x7d\x69\xf5\xe6\xb1\x2f\x1d\xb7\xa9\xef\xe6\xec\xbb\x97\x4c\x1e\x56\xe4\x4a\x44\x05\x02\x0c\x16\x94\xac\xde\xdc\x77\xef\x2c\x00\x4a\xa4\x24\x4b\xd4\xd5\x97\x06\x2f\x12\x41\x60\xb1\x7f\x7f\xbb\x0b\x62\xa5\x3e\x91\x63\x65\xcd\x14\xb0\x52\xf4\xec\xc9\xc8\x13\x8f\x97\x7f\xe5\xb1\xb2\x93\xd5\x4f\x57\x4b\x65\xf2\x29\xdc\xd6\xec\x6d\xf9\x81\xd8\xd6\x2e\xa3\x3b\x9a\x2b\xa3\xbc\xb2\xe6\xaa\x24\x8f\x39\x7a\x9c\x5e\x01\xa0\x31\xd6\xa3\x4c\xb3\x3c\x02\x64\xd6\x78\x67\xb5\x26\x37\x5a\x90\x19\x2f\xeb\x19\xcd\x6a\xa5\x73\x72\x81\x78\x73\xf4\xea\xc7\xf1\xdf\xc6\x3f\x5e\x01\x64\x8e\xc2\xf6\x27\x55\x12\x7b\x2c\xab\x29\x98\x5a\xeb\x2b\x00\x83\x25\x4d\xc1\x56\xe4\xd0\x5b\xc7\xe3\xdd\xbf\xcc\x3a\xb2\xf2\x53\x5e\x71\x45\x99\x1c\xbc\x70\xb6\xae\xda\xab\x5b\x6b\x22\xa9\x86\x3f\xf4\xb4\xb0\x4e\x35\xcf\x00\x23\xb0\xba\x0c\xff\xa3\xdc\xef\x12\x8d\x30\xa5\x15\xfb\x7f\x76\xa6\x7f\x51\xec\xc3\xab\x4a\xd7\x0e\x75\xeb\xcc\x30\xcb\xca\x2c\x6a\x8d\x6e\x37\x7f\x05\xc0\x99\xad\x68\x0a\xb7\xba\x66\x4f\x32\x91\xf4\x90\x78\x18\x25\x59\x57\x3f\x25\x96\x38\x2b\xa8\xc4\x86\x41\x10\x52\xe6\xe6\xfd\xfd\xa7\xbf\x3c\xee\xbd\x00\xc8\x89\x33\xa7\x2a\x1f\xb4\xda\xf0\x08\x8e\x2a\x47\x4c\xc6\x33\x20\x64\xf1\xd8\x2d\x43\xe3\xd6\x76\xbf\x11\xc6\xec\xec\xdf\x94\xf9\xd6\x74\xe5\x64\xb1\x6f\x69\x29\x8e\x96\xf7\x74\xe6\xf7\xf8\xb8\x16\x66\xe3\x3a\xc8\xc5\x71\x88\xc1\x17\xd4\x88\x4d\x79\x92\x10\xec\x1c\x7c\xa1\x78\xc7\x6f\xf0\x05\x99\x46\x93\xb8\x1a\xc3\x23\x39\xd9\x08\x5c\xd8\x5a\xe7\xe2\x61\x2b\x72\x1e\x1c\x65\x76\x61\xd4\x7f\xb6\xd4\x18\xbc\x0d\xc7\x68\xf4\xc4\x1e\x94\xf1\xe4\x0c\x6a\x58\xa1\xae\x69\x08\x68\x72\x28\x71\x03\x8e\x84\x2e\xd4\xa6\x45\x21\x2c\xe1\x31\xfc\xcb\x3a\x02\x65\xe6\x76\x0a\x85\xf7\x15\x4f\x27\x93\x85\xf2\x4d\x6c\x64\xb6\x2c\x6b\xa3\xfc\x66\x12\xdc\x5c\xcd\x6a\xb1\xfb\x24\xa7\x15\xe9\x09\xab\xc5\x08\x5d\x56\x28\x4f\x99\xaf\x1d\x4d\xb0\x52\xa3\xc0\xac\x09\xf1\x31\x2e\xf3\xef\x5c\x8a\x26\xbe\xde\x53\x5f\xb4\x03\x7b\xa7\xcc\xa2\xf3\x2a\xf8\xe4\x49\x5d\x8b\x7b\x82\x12\x43\xc7\xed\x51\x96\x9d\x4a\x65\x4a\xb4\xf2\xe1\xed\xe3\x13\x34\x0c\x44\xb5\x47\x0d\xb7\xbc\x65\xa7\x6c\x51\x94\x32\x73\x72\x71\xe5\xdc\xd9\x32\x50\x21\x93\x57\x56\x19\x1f\x1e\x32\xad\xc8\x78\xe0\x7a\x56\x2a\x2f\x56\xfc\xbd\x26\xf6\x62\x87\x31\xdc\x06\x68\x80\x19\x41\x5d\xe5\xe8\x29\x1f\xc3\xbd\x81\x5b\x2c\x49\xdf\x22\xd3\x37\x57\xb5\x68\x94\x47\xa2\xbe\xfe\xca\x6e\x23\xdb\xe1\x86\x83\x28\x01\x68\xe0\xe7\x45\xeb\x34\x11\xf9\x58\x51\xd6\x09\x85\x9c\x58\x39\x71\x5d\x8f\x9e\xc4\xe1\x3b\xb0\xd3\xe7\x68\x8f\xbe\xe6\x7e\x87\x87\xa5\x9d\xe3\xed\x8c\xc5\xd0\xad\xf3\xd1\xec\xe0\x43\x22\x45\x0c\x9a\xd9\xb2\xb2\x46\x1c\xa3\x2f\x57\x2f\x43\x07\x84\xe4\xd0\xd0\x3b\x7c\xb7\xc7\xfb\xed\x76\x69\x9a\x9f\x11\x6f\xbd\x57\x64\x40\x1f\xc9\x31\x45\x81\x8e\x80\x5b\x0f\x6e\x65\x88\xdb\x8a\x2d\x8e\xf1\x24\xe0\xac\x71\x46\xfa\x91\x34\x65\x87\xe6\x39\x27\xb1\x8c\xce\xfe\xe3\x4b\xf6\x84\xff\xa5\xbd\x23\xc6\x76\x20\x02\xbf\xd7\xe4\x36\x60\x57\xe4\x24\xdc\xc9\x8b\xe1\x76\x4a\xa9\x99\x72\xc1\x40\x0e\x3b\x3b\x6a\xb9\x3e\x61\xcc\x9e\x6a\xea\x23\xaa\x8c\x12\x7d\x56\xbc\x7d\x16\x48\x69\xe5\xb8\x1e\x52\xef\x6f\x4c\x82\x2b\x0e\x62\x46\x05\x70\xa3\x94\x64\xb4\x32\xa2\xd6\x53\x41\x9d\x19\x40\x47\x70\xf3\x70\x47\xf9\x31\x7f\xe8\x0a\x8c\xce\xe1\xe6\xc4\x2a\xe5\xa9\x3c\x29\xc4\x9e\x18\x37\x27\x58\x4d\x38\xdd\xbc\x49\x5e\x6c\x3c\x2a\xc3\x29\x07\x0d\x01\x61\x49\x9b\x98\xae\x24\x0b\x36\x41\x19\x16\x3b\x0a\xc9\x2d\xd8\x76\x49\x9b\xb0\x28\xe5\xae\x93\x1c\xf6\xb0\x6d\x1c\xa7\x83\x61\x37\x46\x72\xfc\xd9\x35\xf6\x38\xa8\x75\x47\x1f\xa7\x8a\x63\x49\x9b\x73\x4b\xf6\x8c\x21\x3a\x52\x9c\xaa\x02\xb1\x8a\x4c\x04\x4d\xca\xd4\xd6\x10\x58\x55\x5a\x51\x48\x5c\x67\xe9\xbf\x98\x3d\x0e\x47\x23\xfe\x85\x4c\xdb\xa3\x65\xdc\x92\x36\xd7\x1c\x1d\x40\xa2\xa3\x50\x95\xc4\xfa\x16\x06\x9a\x0a\xe6\x13\x6a\x95\xef\x8a\xd2\x10\x09\xf7\x66\x08\x0f\xd6\xcb\xcf\xdb\x67\x25\x19\x5a\xfc\xe6\xce\x12\x3f\x58\x1f\x66\x5e\x55\xec\xc8\xca\x85\x42\xc7\x4d\x21\x40\x4c\x8c\x49\x91\xaa\x5d\xd2\xf0\x18\xee\xe7\x1d\x54\x93\xd5\xf7\x06\xac\x6b\xa4\x0b\x45\x66\x24\x14\x49\x94\x35\x87\x1a\xc4\x58\x33\xa2\xb2\xf2\x9b\xa3\x34\x92\x52\xac\xeb\xe8\xe4\x04\xb9\x44\xea\x49\x4a\xa3\xf8\x26\x16\xb1\x1a\x33\xca\x21\xaf\x03\xd3\xa1\x20\x93\x76\x43\x65\x50\x92\x5b\x10\x54\x82\x70\x7d\x55\x7d\x0e\x97\xe2\xe8\x81\x4e\x6d\xa2\x67\xec\x17\x20\x38\x64\x9f\x0b\x61\x3b\xee\x89\xf0\x56\x62\x25\xa6\xfb\x2c\x28\x16\xb4\xf7\x05\x2a\x54\x8e\xc7\x70\x13\xda\x23\x4d\x9d\x77\xca\x04\x3d\xb7\xc9\x08\x05\xc5\x20\x50\xb4\x42\x2d\xb8\x29\x9e\x6e\x80\x74\x44\x51\x3b\x3f\x48\x16\x43\x58\x17\x52\x0b\x48\x7c\xcf\x15\xe9\x50\x12\x0f\x96\xb4\x19\x0c\x0f\xcc\x3d\xb8\x37\x83\x88\xaf\x07\x06\xde\x82\xb1\x35\x7a\x03\x83\xf0\x6e\xf0\xbf\xe5\x97\xb3\xa0\x8b\x79\x1e\x1a\x6b\xd4\xef\x7b\x22\xe1\x59\x5b\x3a\x9a\xbf\x48\xa2\x63\xbc\x0f\x34\x8f\xc2\xb4\xca\x89\x39\x39\x32\xa1\xc8\xb2\x2f\xd6\x10\xbb\xaa\x63\x98\x50\x94\x72\x58\x2b\x5f\x74\x6b\x97\x97\xb4\x73\xde\xc3\xcf\xf8\x75\x57\x08\x95\x15\x1f\x1a\xb6\xa3\x0f\x6e\xa5\x88\x18\xd9\x70\x3b\x04\x32\x4e\x65\x45\xc3\xac\x14\xb9\xb1\x90\x16\xcb\x47\x33\x9c\xc8\xa4\xbd\x0c\xda\x2f\x9d\xbd\xdc\x49\x9f\x10\xf4\xe6\xfd\x7d\xd3\x43\xc7\xd6\x99\x1a\x41\xcf\x00\x78\x4f\xf0\xde\xe9\xe0\x02\xa6\x6e\xb7\x9b\xda\xf9\xaa\xd5\x87\x6f\x5b\x8c\xd0\x32\x36\x1e\xd4\x87\xe1\xf3\x10\xd8\x0b\xfe\x8e\xb3\xbb\xe3\xb6\xcd\x2c\xae\x50\x69\x9c\xe9\xa6\x45\x8a\xc9\x36\x35\x48\x5b\xe6\xaf\xa3\xdb\xd0\x39\x2c\xef\x5d\x76\xf5\x2f\xbc\xa4\xac\x8a\x2e\xdb\x63\xa1\x9c\x7f\x66\x59\xff\xea\x4b\x3a\x19\xf6\x4f\x0e\x0d\xab\xe6\xca\xae\x4f\xe6\xd9\x6b\x6d\xd8\x83\x57\x25\x25\x6f\x68\x8c\xe1\xb7\x64\x29\x8f\xb7\x0d\xd6\x50\x13\x9b\x01\xfd\xad\x2f\xe8\x45\x40\x69\x8f\x0b\x2a\x15\x19\x73\xeb\x4a\xf4\x53\xc8\xd1\xd3\x48\x38\xeb\xa5\x86\x8f\xe1\x52\xe3\x55\x55\xb0\x46\x16\x6b\xcc\x28\xff\x33\x08\x59\x12\x33\x2e\x2e\x97\xee\x06\x8a\xba\x44\x89\x2e\xcc\x43\x1c\x25\x42\xa0\x4c\xae\x32\x0c\xd7\x51\x39\x79\x54\x9a\x01\x67\xb6\x8e\xd1\xb7\x33\xff\xab\x5b\xd8\x11\xf2\x39\x94\x3d\x22\x47\x4c\xf9\xb2\x55\x94\xd7\x35\xd5\x35\x07\x1f\xf8\x96\x5c\x1f\xbf\xde\x39\xcb\x75\xba\xea\xd9\x82\x6d\x62\x78\x18\xa2\xc9\xce\xe1\xc9\xd5\x34\x84\x9f\x51\x33\x0d\xe1\xa3\x59\x1a\xbb\x7e\x7d\xde\xc3\xe2\x8b\xf5\xbd\xa9\x02\x87\x5b\x9e\x5f\x91\xad\x50\x10\xbe\x47\x5f\x5c\x90\xd6\xae\xef\x53\x2d\x14\x6a\xf9\x50\x45\x54\x8a\x32\xea\x5c\x4e\x83\x32\xec\x09\xf3\x34\x49\xc6\x2b\x47\xe9\xdd\x30\xde\x9c\xa6\x0e\x66\x77\x79\x2d\xf5\x25\xa0\x94\x9d\x2a\x87\x7f\x3c\xbe\x7b\x98\xfc\xdd\xa6\x92\x15\xb3\x8c\x38\xa5\x16\xa9\x33\x87\xc0\x75\x56\x00\x72\x73\x5d\xf8\x18\x92\x4e\x89\x46\xcd\x89\xfd\x38\x51\x23\xc7\xbf\xbe\xf9\x6d\x0c\x3f\x5b\x07\xf4\x8c\x65\xa5\x69\x08\x2a\xb5\x39\xcd\x15\x6f\xab\x3c\x0a\xc2\x6c\xf7\x86\x4a\x28\xb0\x54\xd9\x3c\x31\xbd\x0e\xcc\x7a\x5c\x12\xd8\xc4\x6c\x4d\xa0\xd5\x92\xa6\x30\xe0\x8a\xb2\xd6\xd1\x9f\x0d\x96\xf4\x65\x00\xdf\xaf\x0b\x72\x04\x03\x79\x1c\xc4\x03\xb7\x25\xa4\xcc\xb5\x9c\x32\x1d\x1c\xfb\x70\xa7\x16\x0b\x72\x14\x8b\x71\x5a\x91\xf1\x3f\x48\x27\xa6\xe6\x60\x6c\x6b\x71\x20\x21\xfa\xac\x28\x53\x73\x45\xf9\x01\x23\xbf\xbe\xf9\x6d\x00\xdf\x77\xe5\x12\xd4\xa1\x67\x78\x13\xbb\x0c\xc5\x22\xe3\x0f\xa9\x71\xe3\x8d\xf1\xf8\x2c\x34\x33\x69\x1d\x4c\xac\xf9\xbd\x85\x02\x57\x04\x6c\x4b\x82\x35\x69\x3d\x8a\xf7\xa6\x39\xac\x63\x4b\xda\xa8\x32\xb6\x78\x15\x3a\xbf\xf7\xbd\xe2\xe9\xdd\xdd\xbb\x69\x3c\x4d\xcc\xb6\x30\x72\x84\xb1\x1e\xe6\xca\xa0\x4e\x7d\x87\xe2\x5d\x9b\xc2\x75\x34\x92\xb7\x90\x15\x68\x02\x56\x06\x6d\xcc\x6b\x5f\x3b\x1a\xef\xdf\x5f\x7f\x55\x0c\x1c\xfb\x90\x70\xca\xfd\xc3\x67\x85\xfd\x22\xf3\xff\x78\x69\xff\x55\x42\x87\xef\x6a\x17\x08\xfd\xd0\xf2\xd3\x93\x42\x2f\xeb\x19\x39\x43\x9e\x82\xdc\xb9\xcd\x58\x44\xce\xa8\xf2\x3c\xb1\x2b\x72\x2b\x45\xeb\xc9\xda\xba\xa5\x32\x8b\x91\x38\xe2\x28\x7a\x07\x4f\xc2\xb7\xc8\xc9\x77\xe1\xe7\xd5\x64\xe4\x0a\xb3\x8b\x05\x0d\x9b\xfe\x08\x69\xe5\x1c\x9e\xbc\x8a\xb0\x4d\x23\x77\x79\xef\x74\xfd\x18\x81\x23\xdb\xa7\x21\x61\xb7\x2e\x54\x56\x34\x9f\x22\x5b\x48\x59\x62\x1e\xa1\x14\xcd\xe6\x9b\x3b\xbf\xa8\xb4\x76\x72\xf6\x66\x94\x3e\xa3\x8f\xd0\xe4\xf2\x9f\x15\x7b\x99\x7f\x15\x1d\xd6\xea\x22\x20\xf8\x78\x7f\xf7\xc7\x84\x44\xad\xbe\x22\xea\xe3\x67\xac\x29\x78\x57\x37\x35\x2d\x7b\xeb\xa4\x72\xed\xcc\xd5\xb3\xed\x8d\xc5\x4e\xf8\x54\x64\xc1\xe7\x2f\x57\xff\x0d\x00\x00\xff\xff\x08\x9c\x4f\xa3\x18\x21\x00\x00") +var _operatorsCoreosCom_operatorsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x1a\xcb\x92\xdb\xb8\xf1\x3e\x5f\xd1\x25\x1f\xbc\x5b\xa5\xc7\xda\xc9\x21\xa5\xdb\xd4\xd8\x9b\x9a\x64\x33\x76\x79\xc6\xbe\x6c\xed\xa1\x45\x36\x45\x44\x24\xc0\x45\x83\xd2\x28\x8e\xff\x3d\xd5\x00\x28\x91\x7a\x0c\x39\xb1\x76\x07\x17\x49\x20\xd0\xef\x37\x85\x95\xfa\x42\x96\x95\xd1\x73\xc0\x4a\xd1\xa3\x23\x2d\xbf\x78\xba\xfa\x1b\x4f\x95\x99\xad\xdf\x5c\xad\x94\x4e\xe7\x70\x53\xb3\x33\xe5\x27\x62\x53\xdb\x84\xde\x51\xa6\xb4\x72\xca\xe8\xab\x92\x1c\xa6\xe8\x70\x7e\x05\x80\x5a\x1b\x87\xb2\xcd\xf2\x13\x20\x31\xda\x59\x53\x14\x64\x27\x4b\xd2\xd3\x55\xbd\xa0\x45\xad\x8a\x94\xac\x07\xde\xa0\x5e\xff\x34\x7d\xf3\xd7\xe9\x4f\x57\x00\x1a\x4b\x9a\x83\xa9\xc8\xa2\x33\x96\xa7\xfb\x6f\x89\xb1\x64\xe4\xa3\xbc\xe2\x8a\x12\x81\xbf\xb4\xa6\xae\xda\xa7\x5b\x67\x02\xa8\x86\x0c\x74\xb4\x34\x56\x35\xbf\x01\x26\x60\x8a\xd2\x7f\x0f\xec\x7d\x88\x30\xfc\x56\xa1\xd8\xfd\xb3\xb3\xfd\x8b\x62\xe7\x1f\x55\x45\x6d\xb1\x68\xe1\xf4\xbb\xac\xf4\xb2\x2e\xd0\xee\xf7\xaf\x00\x38\x31\x15\xcd\xe1\xa6\xa8\xd9\x91\x6c\x44\x76\x23\x0d\x93\xc8\xeb\xfa\x4d\x24\x89\x93\x9c\x4a\x6c\x08\x04\x01\xa5\xaf\x3f\xde\x7e\xf9\xcb\xfd\xc1\x03\x80\x94\x38\xb1\xaa\x72\x5e\x78\x0d\x8d\x60\xa9\xb2\xc4\xa4\x1d\x03\x42\x12\xd0\xee\x08\x9a\xb6\xae\xbb\xad\x10\x66\x16\xff\xa6\xc4\xb5\xb6\x2b\x2b\x87\x5d\x4b\x4a\x61\xb5\x8c\xa4\xb3\x7f\x40\xc7\x7f\x27\x07\x4f\x01\x84\xfc\x70\x13\x52\xb1\x18\x62\x70\x39\x35\x82\xa0\x34\xf2\x0c\x26\x03\x97\x2b\xde\x73\xe0\x6d\x48\xb6\x51\x47\x3a\xa7\x47\xc0\xef\xc9\x0a\x20\xe0\xdc\xd4\x45\x2a\xa6\xb6\x26\xeb\xc0\x52\x62\x96\x5a\xfd\x67\x07\x9d\xc1\x19\x8f\xb6\x40\x47\xec\x40\x69\x47\x56\x63\x01\x6b\x2c\x6a\x1a\x03\xea\xf4\x08\x76\x89\x5b\xb0\x24\x78\xa1\xd6\x2d\x88\xfe\x0a\x1f\xd3\xf2\x2f\x63\x09\x94\xce\xcc\x1c\x72\xe7\x2a\x9e\xcf\x66\x4b\xe5\x1a\x27\x4a\x4c\x59\xd6\x5a\xb9\xed\xcc\xfb\x83\x5a\xd4\x62\x39\xb3\x94\xd6\x54\xcc\x58\x2d\x27\x68\x93\x5c\x39\x4a\x5c\x6d\x69\x86\x95\x9a\x78\x66\xb4\x77\xa4\x69\x99\xbe\xb2\xd1\xed\xf8\x00\x71\x50\x24\x3b\xab\xf4\xb2\xf3\xc8\x1b\xf5\x33\x95\x25\x16\x0f\x4a\x6c\x27\x00\x0c\xcc\xee\x75\x22\x5b\x22\xc6\x4f\xef\xef\x1f\xa0\xa1\x28\xe8\x2d\xa8\xa8\x65\x80\xe7\xb5\x25\x92\x55\x3a\x23\x1b\x6e\x66\xd6\x94\x1e\x2a\xe9\xb4\x32\x4a\x3b\xff\x23\x29\x14\x69\x07\x5c\x2f\x4a\xe5\xc4\x2c\x7e\xaf\x89\x9d\x28\xf2\x18\xf0\x8d\x0f\x3a\xb0\x20\xa8\xab\x14\x1d\xa5\xc7\x47\x6e\x35\xdc\x60\x49\xc5\x0d\x32\xfd\xe9\xba\x13\x1d\xf1\x44\x14\x32\x58\x7b\xed\x90\x7a\x7c\xe1\xc8\x6f\x01\x9a\x80\x78\x56\xdd\x4d\x8c\xb8\xaf\x28\xe9\xb8\x62\x4a\xac\xac\xb8\x8a\x43\x47\xe2\x70\x9d\x40\x38\x04\xb5\x43\x57\xf3\x30\xe4\xfe\x68\x07\xbd\x59\xb0\xd8\x45\x0b\x3f\xea\x7d\x40\x43\x31\x48\xc7\x90\x98\xb2\x32\x5a\xec\x6a\x28\x55\xe7\x83\x19\xf8\xac\xd4\xc0\x3b\x7e\x76\x40\xfb\xcd\xee\x68\xdc\x5f\x10\xef\x8c\x5f\x78\x40\x17\xc0\x31\x05\x86\x4e\x84\xdb\x01\xd4\xca\x12\x2b\x17\x5d\x9c\xa2\x49\xd2\x45\x81\x0b\x2a\xee\xa9\xa0\xe4\x58\x3d\x7d\x1c\xcb\xea\xdc\x3f\x7d\xe4\x80\xf9\x5f\xda\x37\x42\x68\xf0\x40\xe0\xf7\x9a\xec\x16\xcc\x9a\xac\x44\x0b\x72\xa2\xb8\xbd\x50\x6a\xa6\x54\x62\x2e\xfb\x9b\x1d\xb1\xbc\x7e\x42\x99\x03\xc5\x34\x84\x55\xf0\x21\xdc\x25\xf9\xfb\x47\x89\x48\xad\xac\x3b\x80\xeb\xc3\x8b\x91\x71\xc5\x9e\xcd\x20\x00\x6e\x84\x12\x95\x56\xfa\xa0\x07\x0f\x39\x75\x76\x00\x2d\xc1\xf5\xdd\xbb\x53\x41\xe9\x90\x61\xb4\x16\xb7\x4f\x9c\x52\x8e\xca\x27\x99\xe8\x8f\xf0\xdd\x75\xfd\x04\x2f\x31\x0f\x34\x4f\xa2\x99\x6b\x87\x4a\x73\x4c\x82\x63\x40\x58\xd1\xd6\xe7\x4f\x9f\xa6\x1b\xaf\x95\xc3\x3d\xa8\x2d\xf9\x5c\xec\x4d\x63\x45\x5b\x0f\xe2\x5c\x6a\x3d\x96\xd4\x93\xa6\xd1\x20\x78\xca\x97\xf6\x6b\x22\xe8\x7b\xcf\x98\xd3\x31\xb1\xbb\x86\xd8\x64\x58\x2b\xda\xf6\x1d\x39\xd0\xa5\xc8\x48\x71\x2c\x62\x44\x67\xb2\xe1\x95\x22\x5b\x3b\x35\x61\x55\x15\x8a\x4e\xa7\xc9\xc3\x75\x36\xf9\x1c\xaf\x86\xfd\x67\x12\xdd\x6b\x80\x6d\xd8\xdd\xe2\x75\x45\xdb\xd7\x1c\xac\x44\x3c\x30\x57\x95\xc4\x93\x5d\xa8\x19\x62\x2a\x61\x7d\xc1\x42\xa5\xfb\x62\xdd\xfb\xe3\xad\x1e\xc3\x9d\x71\xf2\xf1\xfe\x51\x49\x59\x21\xe6\xf7\xce\x10\xdf\x19\xe7\x77\x2e\x2a\xbd\x40\xec\x1f\x21\xbb\x00\xd9\xbb\xaa\x0e\xe1\x43\x84\xd3\x2e\xde\x78\x0a\xb7\x59\x27\x00\xcb\xe9\x5b\x0d\xc6\x46\x11\x0c\x40\xe3\x2b\xf6\x80\x2a\x20\x29\x6b\xf6\xf5\x96\x36\x7a\x42\x65\xe5\xb6\x27\xb1\x44\xd9\x1a\xdb\x11\xed\x77\x21\x8c\xc8\x1e\xa4\x70\x0c\x4f\x42\xcf\x50\x60\x42\x29\xa4\xb5\x67\xdc\x97\xaf\xd2\xef\xa9\x64\x00\xae\x92\xec\x92\xa0\x92\x90\x3f\x54\xeb\x7d\x81\x3a\xac\x01\xe1\xba\x0d\xb4\xc7\x94\x7c\x4e\xf2\xe9\x78\x78\x1e\xeb\xb1\xa1\x16\xc8\x10\xed\x4b\xac\xc4\x7e\xbe\x4a\x50\xf7\xe2\xff\x06\x15\x2a\xcb\x53\xb8\xf6\x0d\x6e\x41\x9d\x67\x4a\x7b\x45\xb5\xc0\xf4\xa0\xab\x04\x8d\xc4\xe5\x35\x16\x92\x62\xc4\xa3\x35\x50\x11\x12\x8e\xc9\x8e\x12\xef\x18\x36\xb9\xd4\x55\x12\xec\x32\x45\x85\xef\x4e\x46\x2b\xda\x8e\xc6\x82\xfa\x49\x74\x6d\x4b\x1c\xdd\xea\x51\x48\x53\x47\x96\xb5\xcb\x69\x46\x17\x5b\x18\xf9\x67\xa3\xef\xcb\xe3\xbd\xd9\x09\xd3\xd4\x4f\x4e\xb0\xf8\x38\x30\x65\x0c\x30\x91\xc7\xc9\xaa\x5e\x90\xd5\xe4\x88\x27\x25\x56\x93\x68\xab\xce\x94\x67\xfc\xc0\x52\x76\x16\x6d\xc7\x8e\x3e\x51\x16\x04\xd0\x2a\xf5\x32\xb2\xa4\x7d\x01\x6c\xce\xd6\x77\xfb\x8a\x70\x1c\x53\x14\xa5\xb0\x51\x2e\xef\xd6\x95\xe7\x24\xda\xef\x6c\x3d\x2e\xd6\x65\x42\x25\xf9\xa7\x86\xec\x60\xef\x3b\x2e\x42\x6e\x69\xa8\x1d\x03\x69\xab\x92\xbc\x21\x56\x1a\x90\xd0\xe4\x88\xb5\x04\xd5\x3d\x91\x7b\x06\x19\xc1\xb0\x5a\xe1\xfc\xdc\xe5\x09\x46\xaf\x3f\xde\x36\xf3\x95\x30\x56\xa1\x86\xd1\x9e\xb4\x36\x30\xa5\xed\x65\xf0\x0c\xa2\x6e\x76\x97\xda\x79\xbe\x35\x93\xd9\xb5\x7f\xbe\xfb\x6f\x2c\x68\x08\xc1\xfd\xd1\x78\x50\x24\x3e\x4d\xee\x9e\xda\x36\xb1\xb8\x46\x55\xe0\xa2\x68\xda\xd7\x50\xa4\xc4\xe6\x75\x47\xfc\xeb\x60\x36\x27\x06\x0e\xa7\xd8\x18\x50\xd3\x0e\xaf\x6a\xa5\x66\x0d\x26\x3b\xe0\xa0\xe0\xef\x39\x36\xbc\xb4\x95\x2e\x93\xdd\x83\x45\xcd\x5e\x80\x0f\xaa\xa4\x21\x49\xf0\xa0\xed\x64\x07\x4e\x95\x14\xad\xa1\x51\x86\xdb\x81\xa5\x34\x0c\x8e\x8c\xa6\xc6\x37\x7d\x36\x31\x2e\xa7\xb3\x01\xa5\xbd\x9e\x51\xbf\xc9\xca\x8c\x2d\xd1\xcd\x21\x45\x47\x13\xa1\x6c\x90\x18\x3e\xfb\x79\xd4\x45\x45\xb0\x41\x16\x6d\x2c\xe8\x78\x64\xf9\x02\x4c\x96\xc4\x8c\xcb\xe7\x73\x77\x0d\x79\x5d\xa2\x78\x17\xa6\xde\x8f\x22\x20\x50\x3a\x55\x09\xfa\x49\x63\x4a\x0e\x55\xc1\x80\x0b\x53\x07\xef\xdb\xab\xff\xe2\x1a\xb6\x84\xdc\x17\x65\x4f\xf0\x11\xca\x04\xb9\x2a\xc2\xeb\xaa\xea\x35\x7b\x1b\xf8\x23\xa9\x3e\x3d\x7a\xeb\xa5\x3a\x8e\xe1\x76\xc1\x36\x12\x3c\xf6\xde\x64\x32\x78\xb0\x35\x8d\xe1\x67\x2c\x98\xc6\xf0\x59\xaf\xb4\xd9\x5c\x9e\x76\x7f\xf8\xd9\xf2\xde\x56\x9e\xc2\x1d\xcd\x17\x24\xcb\x17\x98\x1f\xd1\xe5\x97\x1c\xb1\xdc\xc6\x5a\xc9\x37\x26\xbe\xca\xa8\x14\x25\xd4\x79\xb1\x01\x4a\xb3\x23\x4c\xe3\x26\x69\xa7\x2c\xc5\x67\xe3\x30\x24\x1f\x24\xd3\xfd\x6b\x10\xa9\x68\x01\xa5\xd0\x55\x29\xfc\xe3\xfe\xc3\xdd\xec\xef\x26\x16\xd0\x98\x24\xc4\x31\x31\x49\x65\x3b\x06\xae\x93\x1c\x90\x9b\x41\xf0\xbd\x4f\x59\x25\x6a\x95\x11\xbb\x69\x84\x46\x96\x7f\x7d\xfb\x5b\x9f\xb4\x7f\x36\x16\xe8\x11\xcb\xaa\xa0\x31\xa8\xd8\x11\x36\x6f\x06\x5a\xa5\x97\x17\xc4\x0e\xb2\xaf\xb2\x3c\xc1\x95\x49\x23\xc3\x1b\xcf\x8a\xc3\x15\x81\x89\xac\xd4\x04\x85\x5a\xf5\xda\xcc\x88\x2b\x4a\x5a\x64\x7f\xd5\x58\xd2\xb7\x11\xfc\xb0\xc9\xc9\x12\x8c\xe4\xe7\x28\x90\xb3\x2b\x5e\x65\xaf\xe5\x0e\x91\xac\x30\x5e\xb1\x6a\xb9\x24\xdb\x1b\x6e\xfd\x1b\x8c\x35\x69\xf7\xa3\x34\xbc\x2a\x03\x6d\x5a\xa0\x3c\x02\xd1\x63\x45\x89\xca\x14\xa5\x47\x64\xfe\xfa\xf6\xb7\x11\xfc\xd0\x95\x49\x0f\x4a\xa5\x53\x7a\x84\xb7\xa1\x0f\x53\x2c\xd2\xfb\x31\xf6\xc6\xbc\xd5\x0e\x1f\x05\x63\x22\x0d\x94\x0e\xdd\x8d\x33\x90\xe3\x9a\x80\x4d\x49\xb0\xa1\xa2\x98\x84\x49\x7c\x0a\x1b\x3f\x39\xe8\x2d\x3e\x82\x0a\x43\x8f\x5d\xa1\x75\x3d\xef\xe7\xba\xeb\xe1\xc3\xbb\x0f\xf3\x40\xa9\x98\xda\x52\x0b\x79\xda\x38\xc8\x94\xc6\x22\x76\x67\x8a\xf7\x8d\x1e\xd7\xc1\x74\x9c\x81\x24\x47\xed\xb3\x83\x97\x73\x56\xbb\xda\xf6\x94\x55\x03\x9d\xfe\xd4\x6b\xb2\xee\x7a\x9e\xbf\xfb\x57\x68\xcf\xaa\xba\x5f\xf0\xf5\xd3\xff\x25\x31\xff\xce\xfa\x82\x12\xbb\x6b\xf9\xde\x77\x48\x6c\xdf\xfc\x8a\xd0\x52\x93\xb0\xc8\x2b\xa1\xca\xf1\xcc\xac\xc9\xae\x15\x6d\x66\x1b\x63\x57\x4a\x2f\x27\xe2\x5c\x93\x60\xb5\x3c\xf3\xff\x12\x98\xbd\xf2\x1f\x97\x12\x10\x57\x98\x5c\x5c\x4a\x1e\xe8\xcb\x8b\x4a\xa8\xe0\xd9\x25\x24\xd5\x34\xdc\xcf\xef\x71\x7b\xe5\x75\x1f\x02\x6d\x72\x88\x43\x82\xc9\x26\x57\x49\xde\xfc\xdd\xa0\x95\x95\x4a\x4c\x43\xda\x42\xbd\x7d\x61\x9f\x15\x7d\xd4\x56\x28\xdb\x4e\xe2\x3f\x68\x26\xa8\x53\xf9\xce\x8a\x9d\xec\x5f\x42\x01\xb5\xba\x68\xf0\xfb\x7c\xfb\xee\xe5\xcd\x73\xf6\xaa\x56\x97\x88\x74\x43\xe6\x69\xe1\xd5\xf5\x1c\x9c\xad\x9b\x5e\x89\x9d\xb1\xd2\x11\x75\xf6\xea\xc5\x6e\x12\xb6\x97\x77\x2c\xde\xe1\xeb\xb7\xab\xff\x05\x00\x00\xff\xff\xbc\xd3\x31\x8d\x85\x25\x00\x00") func operatorsCoreosCom_operatorsYamlBytes() ([]byte, error) { return bindataRead( @@ -225,7 +225,7 @@ func operatorsCoreosCom_operatorsYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_subscriptionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\xe3\xb8\x95\x28\xfe\x7f\x3e\x05\xca\x49\x95\xed\xac\x24\x77\x67\x73\x93\xdc\xde\x54\xb6\x3c\xb6\x7b\xe2\x3b\xdd\x3d\xbe\xed\x9e\x99\xda\x5f\x92\xdf\x06\x22\x21\x09\x31\x09\x70\x00\x50\x6e\x25\x9b\xef\x7e\x0b\xe7\xe0\x45\xea\x45\xca\xf2\xa3\x27\xe2\x1f\x33\x6d\x0a\x00\x81\x03\xe0\xbc\x1f\xb4\xe2\xdf\x33\xa5\xb9\x14\x6f\x08\xad\x38\xfb\x6c\x98\xb0\x7f\xe9\xd1\xdd\xef\xf4\x88\xcb\xb3\xf9\xeb\x9f\xdd\x71\x91\xbf\x21\x17\xb5\x36\xb2\xfc\xc8\xb4\xac\x55\xc6\x2e\xd9\x84\x0b\x6e\xb8\x14\x3f\x2b\x99\xa1\x39\x35\xf4\xcd\xcf\x08\xa1\x42\x48\x43\xed\x6b\x6d\xff\x24\x24\x93\xc2\x28\x59\x14\x4c\x0d\xa7\x4c\x8c\xee\xea\x31\x1b\xd7\xbc\xc8\x99\x82\xc1\xfd\xa7\xe7\xaf\x46\xff\x7b\xf4\xea\x67\x84\x64\x8a\x41\xf7\x4f\xbc\x64\xda\xd0\xb2\x7a\x43\x44\x5d\x14\x3f\x23\x44\xd0\x92\xbd\x21\xba\x1e\xeb\x4c\xf1\x0a\x3e\x31\x92\x15\x53\xd4\x48\xa5\x47\x99\x54\x4c\xda\xff\x95\x3f\xd3\x15\xcb\xec\xc7\xa7\x4a\xd6\xd5\x1b\xb2\xb2\x0d\x0e\xe7\xe7\x48\x0d\x9b\x4a\xc5\xfd\xdf\x84\x0c\x89\x2c\x4a\xf8\x37\xae\xfd\x36\xf9\x2a\xbc\x2e\xb8\x36\xdf\x2c\xfd\xf4\x8e\x6b\x03\x3f\x57\x45\xad\x68\xd1\x9a\x2d\xfc\xa2\x67\x52\x99\x0f\xf1\xdb\xf6\x5b\xba\x1e\xa7\xff\x76\x0d\xb9\x98\xd6\x05\x55\xcd\x41\x7e\x46\x88\xce\x64\xc5\xde\x10\x18\xa3\xa2\x19\xcb\x7f\x46\x88\x83\xa3\x1b\x73\x48\x68\x9e\xc3\xde\xd0\xe2\x46\x71\x61\x98\xba\x90\x45\x5d\x8a\xf0\x4d\xdb\x26\x67\x61\xd4\x37\xe4\xd3\x8c\x91\x8a\x66\x77\x74\xca\xfc\xf7\xc6\x2c\x27\x46\x86\x0e\x84\xfc\x4d\x4b\x71\x43\xcd\xec\x0d\x19\x59\x10\x8f\x2c\x04\x93\x9f\x71\x7f\x6e\x70\x90\xe4\xbd\x59\xd8\xe9\x6a\xa3\xb8\x98\x6e\xfa\x7c\x46\x0d\x2d\xe4\x94\xe0\xf9\x22\x13\xa9\x88\x99\x31\x62\x3f\xc5\x27\x9c\xe5\x7e\x7e\x1b\x66\x84\x5d\x97\xe6\x74\xdb\x7e\xdd\x79\x4a\x33\x2a\x04\x2b\x88\x9c\x90\xba\xca\xa9\x61\x9a\x18\x19\xe1\xb3\x19\x3c\xae\xf3\xd2\x6c\x2e\x96\xde\xaf\x98\x0e\x36\x9d\xbf\xa6\x45\x35\xa3\xaf\xdd\x4b\x9d\xcd\x58\x49\xe3\x1e\xca\x8a\x89\xf3\x9b\xeb\xef\xff\xfd\xb6\xf5\x03\x69\x2e\x25\x3d\xa2\xe4\x8e\xb1\x4a\xc7\x4b\x41\xea\xca\xae\xc9\x2e\x8e\x8c\x17\xc4\x28\x9a\xdd\x71\x31\x85\xa5\x4f\x71\xbd\x17\xb8\x31\x7a\xb4\x34\x65\x39\xfe\x1b\xcb\x4c\xf2\x5a\xb1\x1f\x6b\xae\x58\x9e\x4e\xc5\x42\xd6\xa3\x88\xd6\x6b\x0b\xa7\xe4\x55\xa5\xec\xb4\x4c\x72\x0f\xf1\x49\x70\x54\xe3\x7d\x6b\x99\xc7\x16\x16\xd8\x8e\xe4\x16\x3d\xd9\xe9\xcf\x98\xbf\x1c\x2c\x77\x00\xb4\xdb\x69\x66\x5c\x13\xc5\x2a\xc5\x34\x13\x88\xb0\xec\x6b\x2a\xdc\x9a\x46\xe4\x96\x29\xdb\xd1\x5e\xd8\xba\xc8\x2d\x1e\x9b\x33\x65\x88\x62\x99\x9c\x0a\xfe\xf7\x30\x1a\x80\xc8\x7e\xa6\xb0\xe7\xc3\x10\xb8\x6e\x82\x16\x64\x4e\x8b\x9a\x0d\x08\x15\x39\x29\xe9\x82\x28\x66\xc7\x25\xb5\x48\x46\x80\x26\x7a\x44\xde\x4b\xc5\x08\x17\x13\xf9\x86\xcc\x8c\xa9\xf4\x9b\xb3\xb3\x29\x37\x1e\x03\x67\xb2\x2c\x6b\xc1\xcd\xe2\x0c\x90\x29\x1f\xd7\x76\xe3\xce\x72\x36\x67\xc5\x99\xe6\xd3\x21\x55\xd9\x8c\x1b\x96\x99\x5a\xb1\x33\x5a\xf1\x21\x4c\x56\x20\x8a\x2c\xf3\x9f\x2b\x87\xb3\xf5\x71\x0b\x7c\x2b\xef\x01\xf1\x58\x6f\x23\xac\x2d\xf2\x23\x5c\x13\xea\xba\xe3\x5a\x22\x48\xed\x2b\x0b\x95\x8f\x57\xb7\x9f\x88\x9f\x00\x82\x1d\x21\x1c\x9b\xea\x08\x6c\x0b\x28\x2e\x26\x4c\x61\xcb\x89\x92\x25\x8c\xc2\x44\x5e\x49\x2e\x0c\xfc\x91\x15\x9c\x09\x63\xaf\x61\xc9\x8d\x86\x33\xc7\xb4\xb1\xfb\x30\x22\x17\x40\x80\xc8\x98\xb9\x0b\x9b\x8f\xc8\xb5\x20\x17\xb4\x64\xc5\x05\xd5\xec\xd1\x41\x6d\x21\xaa\x87\x16\x7c\xdd\x81\x9d\xd2\xcf\xe5\x0e\x4b\x77\x8c\x10\x4f\xe0\xd6\xee\x4e\x7a\xe1\x6f\x2b\x96\x85\xeb\x40\x05\x39\xaf\xaa\x82\x67\x78\xe2\xcd\x8c\x1a\x92\x51\x61\xe1\xc5\x85\x36\xb4\x28\x80\x9c\x74\x9a\xc5\xba\xdb\x4e\xe0\x6a\xb7\x88\x83\x7f\xbd\x84\xa1\x9b\x3f\x04\xa2\xd6\x6a\xb1\x0e\x33\xd8\xc7\xe1\xd9\xe5\x1f\x36\x80\x9c\x20\x67\x32\xe1\xd3\x55\xdd\xd6\xc2\xf2\x02\xba\x00\x4f\x43\xb9\xd0\x6e\x88\x5a\x21\x34\x23\xa5\xb2\xb4\x8b\x36\xe8\xf6\x68\xed\xec\x56\x42\x76\xdb\x9a\xed\x43\x27\xc0\x81\x2d\x56\xff\xda\x5a\xc5\xf5\x24\x4e\x6f\x40\xe4\x9c\x29\xc5\x73\x87\x1f\x2b\x99\x1f\x6b\xc0\x66\x79\x5d\x00\xee\x97\x42\x1b\x45\x39\x5c\x4d\xc1\x0b\xbb\x92\x21\x35\x78\x1f\x98\x26\xf7\xbc\x28\xc8\x2f\x85\x34\xbf\x0c\x23\xc1\x40\x52\xf1\x29\x0f\xa8\x4f\x13\x2e\xfc\xf8\x40\x11\x1d\x49\x97\x9a\xb5\x06\x1c\x91\xef\x34\x23\xac\xac\xcc\xc2\x23\x87\x93\x7f\xfc\xf3\xd4\x22\x56\xa6\xa8\x4e\x06\x6e\xf4\xf3\xe8\x73\xcd\xfa\xb7\x80\xb7\x0b\x88\xed\x23\x64\xce\xce\xb7\x80\x7a\x09\xdc\x97\x0c\x39\x04\x0d\xdd\xc3\x56\xa5\x40\x56\x75\xc1\x74\xe0\x72\x2c\x8c\x36\x0c\xde\x61\x2d\x5d\xd7\x83\xed\xd8\x84\x29\xc5\xf2\xcb\xda\x5e\x8d\xdb\x30\xab\xeb\xa9\x90\xe1\xf5\xd5\x67\x96\xd5\x66\x05\xd5\xdd\xb8\x74\xcb\x37\xb9\x65\x32\x85\x47\x05\x3f\x07\xac\x93\xfb\xc1\xae\x17\x08\xa7\x05\x8f\x46\x3c\xa4\xa9\xe1\x7a\xb2\x00\x70\x04\x80\xb1\xcf\x96\x48\x00\x6f\x9b\xdc\x2f\xcb\xa8\x00\x7d\xe0\xac\xc8\x07\x64\x5c\x1b\xc2\x0d\x10\x8f\x6c\x26\xed\xf9\xa2\x08\x77\x18\x77\xce\x25\x90\x66\x22\x85\x3d\x49\xa4\xb4\x14\x00\x58\x00\x96\x0e\x3f\x82\x99\xc7\x6e\x5c\x93\x52\x6a\x13\x61\x65\xdf\xc0\x29\x17\x8c\xdc\x73\x33\x83\x3f\xa6\x56\x5c\xb1\x64\x5f\xd7\xa5\x1d\xf4\x9e\xf1\xe9\xcc\xe8\x01\xe1\x23\x36\x82\xdd\x65\x34\x9b\x25\xc3\x96\x8c\x19\x4d\x68\x51\xf8\x29\xa4\x47\x02\xf1\x69\x69\x69\x22\x39\x09\x44\xd3\x11\xb8\x41\xc0\xb7\xed\x5d\x5b\x09\xae\x01\x61\x26\x1b\x9d\x0e\x48\x26\xcb\xca\xde\x16\x0a\x73\x1c\x2f\x08\x37\x96\xf7\x43\x02\xad\x64\x3d\xc5\x95\xb0\xc2\x7d\xd8\x73\x47\x00\x5c\x60\x5f\xac\x34\x21\xa6\xe4\x08\x17\x77\xe4\x19\x1e\x3b\x1c\xc7\x45\xc0\xfa\x4a\x6a\xb2\x99\xc3\x29\x99\x54\x8a\xe9\x4a\x0a\xe8\x09\xbf\x5c\xc5\xb9\xfd\x47\xe8\x74\xa2\x4f\x23\x30\x67\x7c\x3a\xf3\xb0\xa4\x0a\x71\x4a\x73\x0f\x36\xdd\x91\x78\x4f\xa8\x52\x74\xb1\xa5\x25\x37\xac\xdc\x72\x4b\x96\x8e\xf6\xb9\x70\x48\x2a\x9e\x89\x64\xf7\x0c\x53\x65\x80\x01\x6c\x30\x5c\x57\x8d\xeb\xe3\xa5\x25\xbb\xdc\xb8\x13\x42\x5e\x91\x13\x38\x22\xdc\x1c\x6b\x38\xae\x43\x59\x9d\x8e\xc8\x39\x48\xbb\x1d\x3e\x20\x64\x18\xdf\x0d\x64\x3f\xaa\x65\x1c\x6b\xeb\xda\x3a\x22\x15\x7c\xd6\xd3\xfa\xe5\x67\xe8\xe6\xcf\xc4\x0a\x52\xbf\xaa\x39\xc2\x64\x6b\xd3\xae\xe8\xcd\xb7\xf6\x73\xe8\xd2\xba\xbd\xd5\x78\xa4\x35\x2b\x58\x66\x2c\x8e\x66\xaa\x1c\x10\xaa\xb5\xcc\xb8\x65\x2b\xe3\xa1\x6d\x9e\x74\x5c\xc9\x76\xd8\x93\xbe\xf0\x27\xbd\xd7\x6f\x9f\xf6\xc5\xeb\xda\x6f\x09\x1a\x05\xd7\xc6\x62\x86\x26\x54\x1a\x08\x6b\xbc\x80\x5f\x8f\x35\x29\xe8\x98\x15\x6b\xe9\xf2\xf2\xd3\xfd\xd6\xc6\xa7\xe3\xfd\x5d\xbb\xa0\xb5\x0b\x71\x42\x4d\xd8\x78\x60\x91\x3d\xc3\x87\x1c\xc7\x80\x50\x72\xc7\x16\x28\xdb\x59\x91\xd1\x09\xd3\xd8\x58\x31\x24\x37\xf6\x70\xdc\xb1\x05\x34\xda\xcc\xa9\xac\x87\x49\x8f\xc3\x81\x4f\x9f\x6b\x1a\x9f\xa1\x9d\x68\xcf\x1e\x7e\xd1\x3d\xba\xf5\x3f\xbf\xf8\xdc\xb1\x8d\x9c\xd7\xaa\x67\x89\x25\x81\x33\x09\xfb\x01\x9b\x04\xf4\xcb\xef\x31\xb5\x22\x11\xe8\x3a\xfa\xec\x10\xd9\x26\x60\x6c\x7a\x3c\xf4\x1e\xb4\xae\x8f\x41\x82\xc6\x03\x79\xac\xf1\xf0\xd9\x9b\x3e\xe3\xa0\xd7\xb1\x27\x19\x2e\xae\x57\x35\x7c\x4f\x0b\x9e\x27\xea\x1f\x4b\x67\xaf\xc5\x80\x7c\x90\xc6\xfe\xef\xea\x33\xd7\x96\x7d\xb9\x94\x4c\x7f\x90\x06\xfe\x1c\x91\xaf\x0d\x9e\xf5\x77\x1d\x31\xdb\x1e\x00\x84\xf3\x7d\x10\x78\xce\x05\xe2\x14\xbb\xfc\x54\x49\xa1\x47\x56\x1c\x02\x56\xce\x5f\x5c\xae\xc9\xb5\xb0\xcc\xa1\x03\x03\xa8\x8d\x50\x88\xc1\x21\xca\x5a\x83\x56\x41\x48\x31\x04\x1e\x60\xe5\x18\x08\x3d\x3b\x4e\x0a\xbf\x0d\xc3\xad\x1f\xea\x6b\x63\x87\x79\xb7\xb6\xf3\x8c\xce\x81\xa5\xe3\x62\x5a\x04\xe6\x6d\x40\xee\x67\x3c\x9b\x21\xd7\x0d\x32\xbd\x61\xaa\x52\xcc\x12\x2c\x0a\xd2\xbf\x7d\x33\x65\xca\x32\xbb\xdc\x8f\x87\x9a\xb0\x82\x66\x2c\x27\x39\xb0\x96\xa8\xd5\xa1\x86\x4d\x79\x46\x4a\xa6\xa6\x8c\x54\x96\x92\xec\xb6\xfb\xfd\x10\x3b\x3e\xbd\xd1\x7b\xfa\xc1\x5e\xc7\x0d\x48\xe4\x5b\xcb\xeb\x3e\x11\x75\x04\xbe\xfa\x40\x1d\x0f\xd4\xb1\xf5\x1c\xa8\x63\x78\x0e\xd4\x71\xcb\x73\xa0\x8e\x07\xea\xf8\xe8\xd4\x11\x65\xd9\x1d\x84\xe7\x1f\x50\xc5\xd1\x96\x96\x81\xd2\x7a\xbb\x50\x53\x6c\xb6\xf4\xe6\xd6\x21\x9c\x4f\x20\x6a\x3b\xdd\xb1\xa2\x62\xca\xc8\xeb\xe1\xeb\x57\xaf\xfa\x08\xd5\x6e\x23\x3b\xf5\x98\x48\x55\x52\x03\x7d\xfe\xfd\x57\x1b\x7b\xac\xd3\xbf\xed\x41\x6b\xea\xce\x78\x50\xe4\x35\x78\x87\x35\x8a\x4f\xc0\x4e\x42\x1a\x52\x32\x43\xa8\x69\xa8\x8a\x78\xc9\x06\x5e\xb1\x8c\x07\xde\x99\xc5\xbc\x06\x36\x27\x52\x38\x3d\x9e\x05\xfe\x68\xb7\x19\x64\x8c\x6a\x66\x31\xe9\x98\x85\x59\xc8\xd2\x7e\x95\x0b\xe3\xaf\x8b\x9d\x02\xf3\x50\x21\x27\x6c\x34\x1d\x91\xbc\x86\x6e\x54\x38\x3b\xdd\x29\xce\x56\x2f\xb4\x61\x25\x68\x72\xa5\x82\xff\xd9\x69\x1b\xb5\x00\x5b\xc0\x9c\x09\x53\xd3\xa2\x58\x10\x36\xe7\x99\x09\xeb\x03\x33\x21\x37\xa8\x6c\xef\xa6\x22\xec\xc4\x3a\x74\x67\x17\x86\x4b\x27\x58\x6f\xe9\xd3\x87\xda\x2f\x8d\xdd\xe5\x4e\xb6\x68\x21\xae\x64\xb4\x96\x59\x35\x76\x5c\xd4\x81\xc3\x3f\xe1\x70\x7d\xfb\x71\xbb\xca\x95\xf4\xc6\x64\x3d\xb0\x57\x9b\x2d\xad\x8b\xc2\x1e\x0c\xd4\xc2\x2e\x2f\x60\x85\x76\x14\x97\xd4\x38\xcc\xa8\x78\x47\x15\xf3\xf9\x87\x4b\x0b\x15\xdb\xe6\x93\xac\x64\x21\xa7\x8b\x14\xd2\xb0\x32\xd0\xdd\xba\xbe\x68\xd5\x43\xa6\xc1\x1e\xbf\x0f\xad\xad\x39\x68\xfe\x0e\x9a\xbf\x83\x6c\xb3\xf4\x1c\x64\x9b\xf0\x1c\x64\x9b\x2d\xcf\x41\xb6\x39\xc8\x36\x07\xcd\x1f\x39\x50\xc7\x0d\x30\x39\x50\x47\x72\xa0\x8e\x6b\xd7\x75\xa0\x8e\x1b\xc1\x73\xa0\x8e\x07\xea\xb8\xea\xa9\x64\xfe\x00\x47\xc7\x4a\xe6\x1b\xfc\x1c\x51\xeb\x93\xc9\x61\x21\x33\x6a\x9c\x23\xb8\xed\xe2\xf4\x7c\x9a\x96\xa8\x88\x1a\x90\xbf\x4b\xc1\xd0\x79\xcd\xee\x0d\xa8\x93\xa4\x99\x31\x65\x9b\x9f\xe8\xd3\x8d\x8e\x4d\x07\x3f\xc9\x83\x9f\xe4\x8b\xf7\x93\x9c\x51\x8d\xfb\x8a\x48\x69\xbd\xdb\x64\x72\x21\x3f\x31\x55\x7e\xa1\x5e\x93\xf6\xb8\xb8\xed\x86\x10\x9b\xb8\xa5\xb8\xf2\xdc\xd9\x0b\x58\x7e\xd3\x5c\xaf\xe3\x97\x61\x51\x34\xcf\x59\x4e\x2a\xa6\x86\x78\x44\x24\x99\x70\x91\xaf\x58\xab\x87\xcf\xb3\x7a\x3f\x36\xd7\xf1\x8c\x2e\x90\xcd\x89\xec\xa0\x73\x4d\x15\xc7\x0d\x0c\xff\x22\x1c\x22\xfb\x72\xf5\x43\x62\x9c\x92\xf7\x9b\x8e\x7c\x7d\x7f\xd6\x1c\x18\x6a\xaf\x12\xde\x5d\xae\x04\xb6\xfc\xc7\x9a\xa9\x05\xc4\x58\x44\x86\x35\x04\x73\x39\x1b\x19\xd7\x24\xa3\x1a\x29\x45\x5f\xd1\xb2\xa7\x18\xb5\x9b\x9c\xb2\xbb\x26\x9a\xb4\xe1\xd2\x1e\x0a\x65\x52\x2f\x83\x23\xcc\x56\x0a\xe1\x2b\xac\x00\x51\xfb\xdf\x6b\x3e\xbb\xb2\x6e\x3b\x31\x6e\x2b\x0f\xc5\x0b\x16\xce\xc9\xee\x02\x3a\xd9\x59\x48\x27\x3b\x09\xea\x64\x57\x61\x9d\x3c\x40\x60\x27\xbb\x09\xed\xa4\x7d\x14\xec\x0e\x39\x2e\xeb\x71\xe4\x77\xf2\x10\x11\x95\x3c\x40\x8e\x27\xed\xa5\x86\x63\xaa\x1e\x4b\xa8\x87\xb3\xde\x90\xeb\x9f\x1a\x58\xbb\xc9\xf4\xa4\x0d\x2a\x1f\x75\x07\x02\xed\x17\x22\xe1\x3f\x89\xb8\x4d\x1e\x24\x72\x93\xdd\xc5\x6e\xb2\xfb\xc9\x00\x52\xf7\x0e\xcc\xa9\x0f\x25\x98\x38\x0a\x92\x88\x92\x56\xf6\x50\xfc\xc3\x52\x02\xd8\x97\x7f\x92\x8a\x72\xa5\x2d\x7f\xe7\x74\x26\xe9\x6f\x4e\x3a\x4f\x87\xb1\x23\x70\x4d\x2c\xaa\x9e\xd3\xc2\xd2\x1e\xf4\xe3\x70\x72\x91\x1d\xbd\x4d\xa6\x07\xe4\x1e\xa2\x3e\x2d\x96\x42\x69\x89\x6b\x72\x74\xc7\x16\x47\x83\xa5\x83\x74\x74\x2d\x8e\x90\x46\x2d\x1d\x9d\x40\xd0\xa4\x28\x16\xe4\x08\x7e\x3b\xda\x37\x65\xdf\x81\x70\xa5\xc9\x36\x76\xa5\x0b\x3b\x9c\x12\xe1\x63\xa5\xf7\xcf\x6c\x22\x15\x41\xc3\x86\xff\x8a\x8e\x04\x06\x5c\x2d\x12\xe2\x12\xbc\x46\xe0\x8c\xc1\xfb\xdc\x0b\xbf\xb5\x70\xa9\x15\x40\x76\x8d\x83\x21\x91\x5a\x76\x69\x72\x1b\x2f\x05\xd3\xc0\xd8\xb1\xa0\x22\x4a\x3a\x43\xdb\x11\xba\x83\x44\x6a\x27\xf2\xb6\x83\x48\xec\x01\x3c\x62\xc9\xa8\xd0\xe4\xc8\xeb\x9e\x8e\x75\x6c\x71\x34\x8a\xd1\x7d\x61\x44\x08\x42\x4e\x23\xfa\xe2\x80\x07\x4e\xfb\xc0\x69\x1f\x38\xed\x1e\xbd\x0e\x9c\xf6\xfa\xe7\xc0\x69\xf7\x78\x0e\x9c\xf6\x81\xd3\xde\xf4\xe1\x03\xa7\x7d\xe0\xb4\xb7\x7f\x7c\x37\x4e\x7b\x57\x3f\xa1\x94\xef\x75\xc6\x39\xcc\x9c\x45\x0d\xcf\xa2\x0f\x91\x6f\x85\xff\xda\x2f\xbf\x9d\xf2\xd2\xab\xb9\xed\x94\x23\x5f\x92\x2d\x46\x5b\x58\xeb\xc0\x7c\x2f\xf5\xdc\xcc\x75\xbf\x2c\x5f\xa8\x1d\xce\x46\x62\x50\xd8\xf1\x70\x7c\xf2\xa6\x70\x97\x69\x6e\xcc\xa2\x9d\x3c\x27\x27\xde\xe2\x72\x6a\x81\x2f\xa4\x69\xfe\x28\x0c\x1f\xc6\x16\xc1\x06\x03\xe6\xc5\x46\xbc\x4d\xc3\x2c\x11\xac\xee\xc1\x52\x1c\xf7\xd3\xa2\x10\xa6\x1a\x73\xe0\xda\x25\x10\x03\x6f\x09\x55\x0b\x61\x47\x95\xc2\x9b\x8f\x11\xe7\x60\x02\x38\x77\xf2\x90\x59\x82\xf9\x00\xc7\x14\xa1\x94\xd8\x3b\xa9\xc1\x9c\x7b\xce\x95\x5f\x0a\x67\x11\xb5\x6f\xbc\xd5\xd7\x1f\x4a\x58\x11\x0f\x5f\x1f\x91\x2b\x38\x87\xe9\xc0\x5c\x03\x7c\x68\x51\xc8\xfb\x3e\x28\xe9\xa9\xc2\xa2\xee\x7b\x87\x45\xb5\xec\x77\x87\xa8\xa8\x7f\x91\xa8\x28\xf8\x11\xaf\xd0\xde\xc3\xa3\xc8\x0f\x33\x06\xa7\x48\x31\x00\x55\x59\x17\x86\x57\xd1\x57\x4a\xe3\xa7\x0a\xe4\x32\x27\xce\xf3\xa4\x79\x2e\xed\xd7\x68\x36\x6b\x9f\x4f\x18\x0f\x7c\xab\x34\x5c\x5a\xe7\xdd\x41\x8b\xc2\xc5\x14\x79\x96\x14\x5d\x58\xf8\x73\x7b\x26\x5c\xfa\xac\x88\x5e\x9a\x01\x24\x73\x62\x71\x61\xb1\x70\x99\xea\x36\x20\x51\x14\x8a\xe6\xcc\x93\xde\x29\x9f\x33\x11\x31\xe9\x89\x3e\x3d\xf5\x34\x7c\xaf\x18\xfe\x51\x30\xf4\xef\x13\x4c\xfa\x87\x2e\x38\x1a\x16\x14\xb0\x74\x04\x5f\xc4\xd1\xcf\xe9\x82\xd1\xc7\xce\xdf\x4f\xc7\xb0\x83\x7d\xff\x09\x6d\xfb\x5f\x4e\x64\xd9\x33\x6b\x18\x9f\xc3\xb7\xfe\xc5\x6b\x15\x0f\xce\xf5\xf1\x79\xa8\x73\xfd\xa3\x6b\x0e\x9f\xd7\xc7\xfe\x0b\xd0\x16\x3e\xa7\x8f\xfd\x41\x43\xb8\x71\x53\x5e\x9a\xeb\x7b\xf3\xd9\x49\x23\x78\xd0\x06\xee\x4c\x85\x7b\x12\x9c\x87\x6a\x01\x7b\x9e\x88\x1d\xed\xec\x07\x1b\xfb\xd3\xd8\xd8\x0f\x1c\x6f\xc7\xe7\xc0\xf1\xae\x05\xca\x81\xe3\x25\x07\x8e\x77\xdb\xf2\x0e\x1c\xef\x46\xf0\x1c\x38\xde\x8d\x9b\x72\xe0\x78\x0f\x1c\x2f\xf9\xd2\x38\xde\x5d\xb2\x74\x1d\x6c\xdd\x0f\xb2\x75\xf7\xc5\x16\xbd\x70\x44\xcf\x73\xd0\xdb\xb6\x7d\xb0\x6b\xbf\x14\xbb\x76\xe7\x80\x7f\x61\xf8\x43\x83\xfe\xd3\xbd\x5a\x17\xf9\x4f\xe7\x92\xe7\xa4\xaa\x8d\x8b\xa7\x3e\x44\xff\xef\x23\xfa\xbf\x01\xf9\x43\x0a\x80\x4e\x29\x00\xd6\xc1\xec\x90\x07\xe0\x90\x07\x60\xcf\x46\xe8\x43\x1e\x80\x43\x1e\x80\x43\x1e\x00\xff\x1c\xa2\x93\xc8\x21\x3a\xa9\xd3\x73\x88\x4e\x5a\xff\x1c\xa2\x93\x5e\xac\xf6\x95\x1c\xa2\x93\x5e\xb6\x26\x96\x1c\xa2\x93\x0e\xda\xd9\x8e\x1b\xf5\x05\x46\x27\x1d\xf2\x00\xbc\x54\x1f\x05\x72\xe0\xb4\x0f\x9c\xf6\x81\xd3\x3e\x70\xda\x9b\x9f\x03\xa7\xdd\xe3\x39\x70\xda\x07\x4e\x7b\xd3\x87\x0f\x9c\xf6\x81\xd3\xde\xfe\xf1\x43\x1e\x80\x2f\xc8\x37\x82\x1c\xf2\x00\x1c\xfc\x25\x0e\x79\x00\xfe\x75\xf3\x00\x34\x6c\xf7\xcf\x97\x0c\xa0\xff\x34\x0e\x19\x01\x0e\x19\x01\x0e\x19\x01\x0e\x19\x01\xfc\x73\xc8\x08\x80\xcf\x4b\xd2\x35\x1e\xe2\xa3\xd6\x02\xe5\x10\x1f\x45\x0e\xf1\x51\xdb\x96\xf7\x05\xe8\x0d\x0f\xf1\x51\x2f\x50\x57\x78\x88\x8f\x3a\xe8\x05\xdb\x9b\xf3\x85\xc4\x47\x1d\x32\x02\xbc\x44\x6b\xfb\x81\xe3\xed\xf8\x1c\x38\xde\xb5\x40\x39\x70\xbc\xe4\xc0\xf1\x6e\x5b\xde\x81\xe3\xdd\x08\x9e\x03\xc7\xbb\x71\x53\x0e\x1c\xef\x81\xe3\x25\x5f\x1a\xc7\x7b\xc8\x08\x70\xc8\x08\x70\xc8\x08\xf0\x25\x5a\xb8\xb7\xee\x34\x15\x42\x1a\xe4\x59\xd6\xed\x6d\x93\x97\x8f\xed\x1d\x8d\xaf\x85\x36\xaa\xce\x4c\xad\x58\x0e\xc0\x40\x40\x59\xac\xad\x8d\x54\xde\xd0\x0d\x86\xc2\x4b\x56\x15\x72\x61\x91\xe6\x80\xdc\xc8\x7c\x40\xce\x6f\xae\x6f\x99\x9a\xf3\x8c\xf9\x3d\xfb\xd6\xa1\xe6\x11\xf9\xb4\xa8\x78\x46\x8b\x02\x38\xff\xf8\xd5\x92\x2e\xc0\x76\xc8\x8c\xbd\xb5\xec\xb3\x61\x4a\xd0\x82\x18\x29\x0b\x08\x9b\x87\x8f\xc2\xe5\x54\xcc\x28\xce\xe6\x8c\x50\x35\xe6\x46\x51\xb5\x20\x25\x33\x34\xa7\x86\x8e\xc8\x77\x9a\xa5\x68\xc1\x48\x52\x29\x36\xc4\x73\xd0\xf8\x1e\xec\xe3\xb7\xef\xde\xfb\xf3\x4b\xf3\x3c\x18\x3e\xdd\x2e\xde\xd6\xe3\x00\xa2\x63\x7b\x98\xfc\x2a\xf5\x00\x36\xd6\x89\x2e\x15\xd7\xb8\xd6\xb5\xa2\x49\x07\xaa\xd0\x8f\x06\x6c\xdd\x7f\x26\xe6\x9d\xf6\xfd\x4a\xcc\x9b\x72\x2a\x13\x73\xae\xa4\x00\x0a\x3c\xa7\x8a\xd3\x71\xc1\x10\xfe\xcc\xf8\xbd\x74\xf4\x93\xa9\x11\xb9\x00\x90\xda\x8d\x43\x4b\xf6\xda\xf3\xbb\x1d\xf1\x6d\x41\x75\xed\x69\x7f\x4f\x9b\xac\xba\x58\x39\x75\xe2\x1a\xd8\xa9\x53\x72\x11\x26\xbe\x05\xb2\x5b\x08\x78\x17\xf9\x70\x08\xc8\x69\x6d\x83\x6e\x52\x9c\x1d\x62\x33\x6e\x6e\x80\xe5\x03\x2d\x63\x8a\x87\x15\xd0\x18\x91\xf7\x8e\x43\xa6\xe4\xe2\xbf\xaf\x2f\xaf\x3e\x7c\xba\x7e\x7b\x7d\xf5\x71\x33\xd2\xe9\x48\x56\x00\x3f\xf4\x98\xec\xf1\xf7\x7e\x8f\x20\xcc\x9f\x09\x4b\x81\x7f\x71\xf2\xfd\xf9\xc7\xff\xfe\x70\xfe\xfe\xea\x14\xd8\x2f\xf6\xb9\xa2\x22\x67\x39\xa9\xb5\x27\x09\x95\x62\x73\x2e\x6b\x5d\x2c\x02\x7a\x5f\x7d\x68\xdb\xa7\xd5\x29\x1a\x16\xc4\x5d\xd7\xd5\xdd\x40\x02\xa1\xf1\x00\x65\xe1\x84\x2b\xa6\x65\x31\x67\x39\xf2\x9a\x61\xd2\xfe\x3b\x5c\x54\xb5\xf1\x12\x11\xb8\xa0\xd8\x5b\x21\xb2\x19\x15\x53\x96\x8f\xc8\xa5\xac\xed\x78\xbf\xf8\x05\x2c\x4c\xb1\xbc\xce\x90\xd7\xa1\x9e\x61\xfe\xc5\xc0\x53\x12\x4b\x0b\x34\xa6\xd1\xd0\x19\xad\xfc\xd2\x53\xe8\xe8\x85\x30\xf4\xf3\x1b\xf4\xc1\x38\xfa\x45\xf2\xd3\x91\x4f\x41\x22\xed\x27\x90\x1e\xe1\xac\x0a\xc8\x7e\x51\x90\xa3\xb4\xf5\x88\x5c\xd9\x6f\xb0\x3c\xdd\x07\x74\xa1\x61\x73\xa6\x40\x9e\x72\xbb\x30\x20\x8a\x4d\xa9\xca\x0b\xa6\xc1\x79\xe4\x7e\xc6\x20\x9d\x0b\x72\xd8\x0e\x60\x2c\x48\x6b\x42\x9a\x11\xb9\x64\x13\x5a\x17\x06\x70\xc8\xd1\xd1\xe8\x78\x6f\x47\xed\xad\x92\x5b\x92\x1f\x34\x8e\xdb\x2d\x26\x15\x99\x48\xb5\xf6\x7a\x1c\x3b\xd5\x54\x03\xad\x69\xcb\x49\x38\x49\xdf\xd3\x6a\x94\x2f\x3b\xac\xa4\x83\x20\xd0\x5d\x9d\x93\x49\x31\xe1\xd3\xf7\xb4\xfa\x86\x2d\x3e\xb2\x49\x4f\x6f\x18\x64\xa2\x9c\x4e\x03\x18\x18\x8b\x0e\x71\xc0\xed\x4c\xc7\x23\xfa\x72\x74\x51\x9a\xf5\xd3\x79\x75\xd6\x74\x2d\xa5\x34\x41\xa6\xcf\xb1\x6f\x7b\x4c\xce\x14\x9f\xed\x18\x7d\xe5\xe4\x8e\x53\xd4\xee\xee\xa9\x19\x91\xf7\x12\x5c\xb2\x26\xf2\x0d\x99\x19\x53\xe9\x37\x67\x67\x77\xf5\x98\x29\xc1\x0c\xd3\x23\x2e\xcf\x72\x99\xe9\xb3\x4c\x8a\x8c\x55\x46\x9f\xc9\xb9\xc5\x7c\xec\xfe\xec\x5e\xaa\x3b\x2e\xa6\x43\xcb\xc2\x0d\x71\x57\xf5\x19\x30\xd3\x67\x3f\x47\x89\xed\xd3\xb7\x97\xdf\xbe\x21\xe7\x79\xee\x32\x36\xd5\x9a\x4d\xea\xc2\x65\x6f\x19\x59\xa6\xe7\x7b\xa6\xac\x50\x3e\x20\x77\x5c\xe4\x03\x52\xf3\xfc\x3f\x37\x5f\xee\x1d\x21\x26\x2b\xe4\x8b\x76\x80\xda\x2d\x08\x0a\x8b\x06\x9e\x0a\x87\xde\x62\x28\x6e\x34\xec\xb9\x57\x1c\x39\x82\xd2\x63\x19\x63\x29\x0b\x46\xc5\x96\x1e\x00\xb6\xfe\x77\xf6\x38\x5e\x5a\x64\x67\xdd\x01\xa8\x64\xfe\x86\xe8\xba\xaa\xa4\x32\x3a\x32\xbf\x76\xe7\x06\xcd\x3f\x41\x38\x1a\x90\xbf\x86\x97\x20\xe1\xe8\x3f\x1d\x1f\xff\xfe\x9b\xab\xff\xfa\xc3\xf1\xf1\x5f\xfe\x9a\xfe\x9a\x30\xc8\xcd\x26\x56\xe4\x1a\x59\x71\xe7\x03\x7c\x03\xfe\x74\x64\xf4\x3c\xcb\x64\x2d\x8c\xfb\xc1\x50\x53\xeb\xd1\x4c\x6a\x73\x7d\x13\xfe\xac\x64\xde\xfe\x4b\x6f\xa1\x04\xe4\x71\x91\x0e\x80\xf3\x86\x9a\xd9\x9e\x51\x4f\xbc\x17\x3b\x1c\x57\xd7\x33\xcd\x90\x55\x52\xf8\xe7\x5b\x3f\x5d\x4b\x81\xee\x15\x37\x86\x09\xe0\x3b\xc0\xef\x52\x4e\x06\xf6\xe4\x46\x32\x3b\x7f\xdd\x4b\x1d\xd1\xf9\x2a\x06\xa8\xed\xb0\x38\x98\xbd\x5b\x59\x90\xcd\x10\xd1\x2e\xcb\xf5\xe7\x37\xd7\x64\x8e\xd0\xd8\xfb\x42\xbc\x17\xde\xdb\x07\xdf\xc9\x90\xa9\xcc\x2d\x2b\x70\x9a\x6f\x50\xb3\x18\xfc\xfd\x48\xc1\x4b\xee\x0c\x00\x2e\xab\x99\x26\x27\xf8\x72\x94\x55\xf5\xc0\x35\x18\x95\xac\x94\x6a\x11\xfe\x64\xd5\x8c\x95\x96\x63\x1b\x5a\xe9\x97\x4e\xd9\x20\x74\xc7\x6e\xe1\x2f\xec\xd8\xf8\xc0\x72\x6f\x64\xa9\xb3\x5a\x59\xe2\x51\x2c\x3c\x06\x61\xf9\xf3\xde\x45\x0f\xa6\x3d\x5f\xc5\xb0\x1b\x1f\x76\x24\xb9\x41\x5a\x44\xa2\x1d\x56\x05\x3c\xe4\x5c\x16\x75\xc9\xf4\x20\x90\x27\xe4\xd6\xc5\xdc\x72\x93\xfa\x51\x08\x61\xce\xe7\x5c\xef\xe4\x9f\x70\x1b\x34\xb5\xa0\x22\xad\x8d\x95\x54\x30\x18\x20\xc9\x08\x28\x35\xc8\x00\xc1\x47\xb5\x81\x52\x5e\x1f\x75\xb3\xbe\x53\x63\x98\x12\x6f\xc8\xff\x7f\xf2\xe7\x7f\xfb\x9f\xe1\xe9\x7f\x9e\x9c\xfc\xe9\xd5\xf0\x7f\xff\xe5\xdf\x4e\xfe\x3c\x82\x7f\xfc\xf2\xf4\x3f\x4f\xff\xc7\xff\xf1\x6f\xa7\xa7\x27\x27\x7f\xfa\xe6\xfd\xd7\x9f\x6e\xae\xfe\xc2\x4f\xff\xe7\x4f\xa2\x2e\xef\xf0\xaf\xff\x39\xf9\x13\xbb\xfa\x4b\xc7\x41\x4e\x4f\xff\xf3\x17\x9d\xa6\x47\xc5\xe2\xdb\x0e\x17\x1e\x9f\xe1\x0e\x11\x16\xb1\x57\x0f\x03\xcd\xe7\x61\x64\xda\x86\x5c\x98\xa1\x54\x43\xec\xfe\x86\x18\x55\x6f\xbf\x18\x11\xa9\xed\x72\xce\x7d\x3a\xb8\x37\x11\xa1\x05\xd4\xbc\xf7\x83\xac\x59\xa6\x98\xd9\x97\x04\x83\xa3\x79\xfa\xd1\x52\xc9\x1f\x84\x9a\x28\xd4\x04\xbd\x34\xc0\x2b\x52\xde\x89\x92\xe5\x88\x24\x6a\xa1\x39\x58\xb2\x5d\xbb\x3b\xb6\x45\xca\xf5\xcf\x41\x08\xfa\xb2\x84\xa0\x5b\xdc\xdf\x47\x97\x80\x98\x98\x6f\x52\xd3\xb4\x75\xba\x6f\x21\x94\x29\x55\x47\x7b\x06\xca\x48\x52\xc9\xaa\x2e\xa8\x59\xa3\xb6\x5b\xa1\x9b\x76\x67\x3f\x5a\x81\xec\x46\x83\x1e\xd8\x61\xb9\x72\xb5\x32\x94\x9c\x17\x05\xe1\x02\x6f\x02\x0c\xe0\xb5\x79\x8a\x21\xbf\x44\x28\x2a\x9c\xe7\x76\x0a\xf7\x2e\xe0\x2a\x51\x34\x72\x6d\x65\x1d\x65\xc0\xe2\x03\x01\x59\x88\xb3\x9c\x6a\x8c\x8b\x18\x96\x15\xa8\x6d\xb0\x52\xaf\xcc\xbf\x59\x50\x6d\xfc\xb4\x61\x36\x86\xde\x81\x2a\x34\x63\x39\x13\x19\x03\x17\x94\x9a\xc5\xb5\x8e\x2d\x33\x08\xea\x7d\x18\x83\x92\xbc\xae\x0a\x9e\x59\xf8\xd9\x99\xac\x1e\xe3\xba\x2c\x6b\x03\x8a\xe2\xa7\xd2\xe2\xdb\x1d\xbf\xf5\xe9\x7e\x83\x32\x1f\x50\x55\x60\xad\x83\xb7\x4d\x10\xdd\xf5\xc3\xd4\xf7\xdd\x10\x6f\x50\xb7\x6d\xa5\x54\x4b\x18\x37\xea\x18\x9a\x98\xf6\xa9\x35\x86\xdd\xf0\xec\x4f\x12\xc7\xf6\xc0\xaf\xdd\x71\x6b\x0f\xe5\x52\x5f\x7c\xda\x55\x9b\x54\x29\x36\xe1\x9f\x7b\x9c\xc7\x73\x11\x45\x14\x9e\x33\x61\xac\x20\xa0\x9c\x61\xb4\x62\x22\x5a\x3d\xc1\xc1\x4f\x34\xd7\xf1\xa8\x16\x23\xe4\x32\xfa\x5f\xaf\xdb\x55\x5c\xcc\xe1\x6e\xfd\xc4\xef\x96\xdb\xf5\xfd\x5f\x2c\x21\xf3\xad\xce\xff\xad\x7d\x4c\x7a\xb4\x3c\x9d\x5d\xfa\x77\x37\x49\x2b\xbd\x05\x93\x53\x25\x73\xcc\x71\x6e\xa2\x13\xca\x88\xdc\xae\xe8\x09\xbe\x26\xae\xc5\xf1\xb1\x46\xb7\x14\xdd\x1e\xa8\x15\xdd\x8e\x1e\x0d\x38\x68\xcf\x23\x85\xa4\xae\x56\xa0\xf9\x3d\xa3\x5a\xf3\xa9\x18\x56\x32\x87\xbc\xec\x67\xeb\x0e\xc4\xd3\x7b\x35\x04\xe5\x44\xb7\x6d\xfa\x18\xf4\x6f\x09\x6f\xe1\x2b\x02\xa8\xe4\x47\xa7\xd7\xf1\x71\x14\x09\x0f\x19\x39\xa2\x87\xc1\xb4\xa4\x82\x4e\xd9\xd0\x7d\x7c\x18\x3e\x3e\x0c\xdf\x7a\x08\x98\xbb\x60\xad\xac\xa0\x7c\xb3\x2b\x59\x03\x78\x47\x17\xd0\xde\x25\x0a\x08\x1e\x78\xad\x30\x66\xcf\x6d\x72\x81\x26\x01\xff\x13\x76\x1e\xe0\x91\xa4\xca\x99\x51\x57\xc0\xf7\xcf\x02\x1d\xc9\x9c\x5f\x71\x51\xcd\x68\xe2\xd0\xe7\x76\x46\x13\x26\xe8\xb8\xf0\x56\xf0\xcb\x85\xa0\x25\xcf\xfc\xee\x9e\x17\xe0\xf0\xc5\xa5\x20\x13\x46\x4d\xad\x18\x99\x52\xc3\xe2\xd8\xc1\x53\x94\xc7\xcd\xbc\x36\x24\xa3\x02\xd5\xb4\xce\xeb\xc8\xde\xae\x30\x33\x3d\xda\xa4\xef\xea\xe6\xc5\xd7\xc1\x77\xaf\x95\x96\x3f\x01\x5e\x6a\x8c\x97\xc2\x0a\x3d\x46\x01\x79\xbe\x91\xb9\xc5\x8e\xa3\x46\xeb\x2d\x41\x11\x9d\xc9\x5f\x57\x25\xc7\x16\xe7\x16\xf2\xd8\x94\x14\x08\x69\x82\x2a\xfd\xf9\xb4\xc7\xb3\x01\xad\x4a\xe6\xa3\x15\x27\xd3\x13\xe1\x1b\x99\x3b\xbf\x41\xd3\x38\x29\xf6\xb8\xc2\x21\x29\xe9\x9d\xf7\xf9\x0b\xca\x31\x3a\xa7\xbc\x00\x57\x07\x2e\x34\xcf\x2d\x6b\x94\x6d\x77\x2c\xf2\x4f\x47\xe2\xd9\xd0\x09\xda\x4b\x38\x2c\x69\x35\xb4\xd2\xe8\x66\x50\x6d\xdd\x99\xe5\x81\x71\x46\x25\xad\xd6\xf6\x42\x73\x44\x67\xdc\x71\xfc\x0e\xcd\x1d\x79\x28\x2d\x84\xbe\xdf\x9f\x79\x59\x97\x84\x96\xb2\x46\xf7\xee\x65\x54\xec\x9d\x20\xf7\x82\x6c\x57\x20\x59\xbd\x16\xcb\x92\xee\xd7\xa4\xbf\xbb\xf6\x0b\xd5\x8a\x77\xd2\x86\xf7\xd3\x82\xf7\xd0\x7e\xef\xac\xf5\xf6\x06\xae\xee\xe7\xf1\xa3\xb7\xb9\xb5\x4e\x24\x17\x5b\x4f\xa4\x0a\xb5\x52\xae\x27\x24\x8c\xc3\x35\x91\x25\x37\xc6\x19\x83\x12\x04\x30\x20\xdc\x34\x2c\x27\xee\x2e\x40\xad\x20\x2c\xaf\xc4\x3e\x57\x05\xcf\x38\x58\xe0\xbc\xc5\x73\x80\x1c\xfa\x3d\xc7\xcc\x42\x54\x10\x5e\x56\x18\x08\x01\x67\x7a\xe8\x29\xad\x73\x50\x0a\x33\x71\xee\x69\xec\x73\xc6\x58\xee\x3e\x76\xb8\x3e\x87\xeb\xb3\xfa\xfa\xe8\x3e\x62\x4e\x2a\xe1\x44\xe7\xf8\x20\xe9\xd8\x83\xef\x6b\x9a\x81\xf3\x3f\x9e\x21\x7b\x55\x20\x3e\xcb\xb2\x6b\x1f\x19\x28\x1d\x6f\x99\xd1\xce\xdd\x1e\x7a\x58\x8e\x70\x29\x7a\xd9\x2b\x59\x43\x14\x07\x9d\x4c\x9a\x2d\xa2\x03\x36\xd2\xe6\x26\xfd\x07\xa9\x88\x95\x55\x41\x0d\x0b\x32\xd3\x03\x3c\xb2\xbb\x30\x30\x7d\x42\x87\x9f\x37\x58\xf8\x71\x58\xd6\x17\x19\x02\xfc\x08\xdc\xee\x76\x73\x5e\xc7\x50\xde\xee\x5c\x71\x27\x7b\xdf\x63\x07\xe8\xf6\xd2\xf4\x74\x0d\xc2\x7d\xf9\x61\xb7\x3d\x96\xdd\x35\xb4\xf6\x10\x4c\xbb\x09\xd4\xdd\x02\xe2\x3a\x07\xc3\x75\xda\xbf\x8e\x41\xb1\x87\x30\xd8\x1e\xf4\xe5\x11\x98\xbf\xad\x7b\x69\x64\xc1\x54\x8f\x50\xb7\x4f\xb1\x7d\x28\xad\x89\x9e\x23\xc9\x48\x4f\x63\x00\xfd\xe4\xd9\x16\x7b\xb7\xe2\xbc\xe0\x68\x19\x43\xa1\x8e\xa6\x91\x7e\x5e\x76\xe3\xc4\x82\xd8\x3d\x33\xae\xa8\x6a\x52\x65\xd4\x28\xb0\x27\xff\x3e\x9c\xb6\x01\x03\xfe\xe9\x0f\x49\xe8\x4c\x08\xad\x0c\x27\xe4\xf7\xfe\x5f\x7f\x78\x60\x48\x54\x37\xc2\x86\x53\xea\xc1\x60\x5c\x41\x07\xc2\x45\x0e\xb6\x6b\xb7\x54\x80\x00\x8e\x65\xe1\x03\xcb\xf2\xa1\x95\x18\xa3\xeb\x34\xe8\x60\xe4\x8e\x8d\xb5\xb3\xc6\x27\x62\x97\xd3\x38\xc4\x9b\xc1\xc8\x07\xe9\xf2\xdd\xb2\x01\xb9\x01\x35\x5c\x7c\x03\x37\xe9\x83\xc4\xcc\xb7\x6b\xcd\xe4\x29\xdc\xb6\x52\x91\xad\x84\xbe\x01\x90\x6f\x22\x91\xc7\x95\x35\x88\x7c\x3c\xc1\x8d\x20\xeb\x4d\x90\xb9\x63\x8b\x48\x6c\x1c\x0b\x01\x28\x7f\x10\x4f\x89\x27\x05\x48\x3b\xfe\xc3\x6b\x71\xcb\x31\x17\xf8\x31\x1c\xda\x6f\x05\x8c\xee\x01\x6a\x39\xbb\xa2\xc0\xcf\xec\x03\x5c\xdd\xf8\x8c\x06\xcc\xbe\xed\xc1\x63\x04\x2c\xb9\x9a\xbb\x48\x58\x8a\xab\x1f\x6b\x5a\x34\xe3\x9b\xdc\x2b\xd7\x68\x09\xab\xdf\xf3\x22\xcf\xa8\x72\x0e\xa4\x70\x47\x89\x96\x4e\x49\x0e\x88\x20\xa3\x22\xdc\xf6\xb8\x47\x58\x62\x97\x54\x54\x19\x9e\xd5\x05\x55\xc4\xde\x85\xa9\x54\x9d\x62\x90\xb6\x42\x34\x1e\x9a\x5b\x96\x49\x91\xf7\x11\x00\x3e\xb5\xfb\xb6\xdd\x38\x2a\xa6\xb8\xcb\x24\xcb\x4b\xd6\x3e\xa4\x27\x4d\x73\x99\x9c\xf8\x5b\x1d\xae\x58\x43\x31\xd2\xd4\xe6\x63\x2a\xea\xd3\x04\x3d\x86\x5b\x31\x22\x5f\x2d\xbc\x16\x06\x34\x32\x2e\x70\x4b\x33\xe3\x63\xec\xfc\x91\x75\xc0\x8e\x17\x6a\x22\x15\xc4\xbd\x9d\xe4\x12\x83\xbd\xe6\x3c\x33\xa7\x23\xf2\xff\x31\x25\x31\x39\x00\x9b\x62\x62\x60\x77\xc4\x83\xe0\x0a\x35\xb1\xc1\x39\xe8\x15\x39\xc1\x24\xcd\xbc\x2c\x59\xce\xa9\x61\xc5\xe2\x14\xe5\x58\x9f\xe6\xb9\xcb\xd6\x75\x51\x1a\x24\x39\xbd\x7f\xf3\xeb\x0d\x2d\xfb\x86\x67\x7e\xef\x03\xde\x22\x64\xd0\x3d\xa9\xb5\x85\x81\x06\xc9\x0d\xec\x66\xea\xde\x14\xf3\x05\x78\x34\x13\x36\xf8\x6f\xf6\x1c\x50\xa2\xd8\x14\x4e\x39\x9e\xdc\x07\x9e\x71\x74\xd4\x7e\x2f\x6b\xb1\x5e\x63\xd8\x58\xf8\x3b\x27\x84\x7f\x9f\x74\x5c\x1b\x00\xfd\x24\x6c\x42\x32\x93\x44\x83\x49\x09\xa8\x2d\x81\x9c\x5b\xf4\x80\xad\xa2\x93\x5b\x07\x9b\xc4\x1e\x83\x9d\x61\x2e\x5b\x02\x6a\xf6\x12\x12\x1d\x3e\xd4\xe3\x2c\x43\xec\x89\x03\x4c\x2b\x24\xd8\x38\x74\x00\xe7\x13\x21\x18\x0f\x28\x7c\x8b\xe5\xde\x41\x16\xd3\x58\x40\x57\x72\xfc\xe6\x78\x2f\xc8\x17\x97\xa3\x64\x45\xa7\x74\x7b\x2a\xfd\xa6\x30\xd2\xea\x4a\x72\x66\x98\x2a\x21\xe7\xf9\x4c\xde\xe3\xef\x48\xb6\x2a\xd7\x8a\xb9\x74\xf1\x76\xb5\x33\xa9\x81\x2a\x35\xe3\xa3\xe1\xfe\x82\xcf\xc5\x3d\x5d\x10\xaa\x64\x2d\x72\xc7\x35\x05\x04\xfa\xbe\xf5\xe1\x0f\x52\xb0\x68\x35\x6b\xda\x5c\xc7\xcc\x50\x7b\x6d\x5e\x8f\x5e\x6f\x29\x6b\xd0\x11\x60\x3d\x43\xe2\x61\x36\x2d\x4d\xa1\x77\xc3\xf1\x77\x66\x2f\xf3\x52\x8c\xe6\xdf\x8a\xa2\x0f\x2f\xf7\x1e\x8f\x17\x74\x1d\x82\x10\xc6\x27\xa0\xbb\x1d\xe0\xab\x7b\xc5\x0d\x4b\xd0\xe3\xc9\x84\x16\x9a\x59\xd1\xbd\x16\x81\x85\x3d\x6d\xb2\x20\xd0\xa4\xcb\x82\xb6\xbb\x9a\xe9\x7a\xfc\xc0\x7b\xe6\x2e\x14\x1c\xb9\x78\xcd\xc2\x81\x3b\xd6\x1b\xae\x5c\x33\x6e\x9c\x9c\x60\x4b\xcb\xb1\x49\x69\x4e\xf7\xe3\x7f\x86\x0b\xb4\x92\x75\x1f\x91\xc4\xa7\x24\xa8\xf6\xb8\xda\xaf\xd8\x8c\xce\x99\x26\x9a\x97\xbc\xa0\xaa\x80\x30\xe4\x5b\x9c\x1f\x19\xd7\x66\x75\x72\x8b\x7e\x89\x13\xd2\x99\x24\xc3\x6d\x05\xb5\x9f\x87\x85\x13\xe0\x08\x3f\x2f\xac\x2f\xe1\x8b\x52\x7c\xce\x8a\x5a\xf3\xf9\x43\x6f\x93\x0b\xac\xda\x81\x54\xb7\xa9\x74\xe5\x3c\x25\x9e\x90\x46\x37\x25\x0c\x8b\xaa\x72\xbf\xe9\x40\x93\x51\xd8\x07\xc9\x1d\xfc\x4e\x68\x96\x31\xad\xbd\xbb\xf6\x22\x75\x21\x0f\x6b\xf8\x52\x72\x95\xd0\x7b\x7d\x55\x50\x6d\x78\xf6\x55\x21\xb3\xbb\x5b\x23\x55\xaf\x74\x20\xab\xfa\xb7\x32\xbc\x9c\xff\x70\x4b\x2e\xb9\xbe\x4b\x02\x95\x9c\x4d\x35\x55\x97\x50\x72\x57\x8f\x59\xc1\xcc\xf1\xb1\x46\x2a\x57\xd2\x6c\x86\xf9\x7f\x80\xc0\x89\x10\xed\xe6\x04\x3e\x0b\xe5\xbe\x36\x53\x17\x53\x79\xe6\xce\xeb\xcf\xe9\xbd\x66\x38\xfd\xb1\x9d\x3e\xa4\x2b\xea\x92\xec\x62\xaf\x76\x0a\x9c\xcc\xf5\xe5\x9e\x6c\x10\x13\xfd\xc9\xce\xb1\x9f\x72\xfb\x18\x7b\x79\xd1\x61\xc2\x0b\xe6\x0a\xdb\xd8\x05\x7b\xcf\x1b\x77\x2b\x60\xff\x16\xb2\x26\xf7\x14\x65\x64\xc0\x88\x23\xf2\x89\x57\x6f\xc8\x95\xd0\xb5\x62\x51\xbb\xd1\x1e\x8a\xeb\x18\xc2\xea\x85\x2b\xd8\x6f\x14\x40\x2c\xde\x73\xb2\x16\xb9\xfa\x4c\xcb\xaa\x60\xfa\x0d\x39\x62\x9f\xcd\xaf\x8f\x06\xe4\xe8\xf3\x44\xdb\xff\x09\x33\xd1\x47\x23\x72\x5d\x06\xa3\x3c\x17\x13\xa6\x14\xf3\x3e\x96\xd8\xc1\x92\xe6\x84\xea\x3e\xca\x71\x71\xfe\xba\x96\x77\xcb\x25\xb9\xc7\x54\x37\x16\xe1\x33\xa5\xa4\x0a\x21\x2e\x09\x18\x80\xd6\x64\xb2\xac\x94\x2c\x79\xa2\xe6\x83\xe3\xbe\x57\x47\x5e\x50\x3e\x74\xa9\xf5\xd4\x3e\x0d\xa1\xa3\x3f\x10\xc9\x0b\xd1\xe5\x28\x5c\x4f\xbc\xaf\x05\x4a\x91\x4e\xac\x87\xe1\x5c\x23\xbb\xf9\x6e\x14\x8b\xc8\xd2\xed\x7e\x1b\x62\x75\xc9\x59\xce\xe6\x67\x3a\xa7\xaf\x07\xf0\x19\xed\x7c\x8c\x9b\x73\xa2\x9a\x1c\xbd\x3e\x1a\x91\x5b\x4f\x88\x07\xe9\x1c\x63\xbb\x89\x54\x61\x40\xd0\xb3\xbf\x3a\x22\x27\x52\xc1\xc8\x19\x15\xa4\x60\x74\xee\x74\xcb\x78\xdd\x16\x28\xee\x9e\x76\x8e\xb5\xee\x1a\x76\xda\xbd\xa8\x57\x57\x26\x75\x79\x13\x7d\x3f\xaf\x02\x50\xb5\x0b\x43\x9a\x48\xe5\x52\x0c\x85\x26\x9a\x19\xb8\x7a\x5c\x34\x44\xe8\x67\x40\xb0\xa4\x67\x96\x0e\x8f\x3d\xfb\x42\xc7\xf7\x03\x19\x48\xf0\x1f\x6b\x46\xae\x2f\x43\xae\x0e\xa6\x34\xd7\xc6\x5e\xe3\xbc\x41\xba\x38\xd2\xb3\x93\xf3\x92\xfe\x5d\x0a\x72\xf5\xd5\xad\x9b\xc0\xe9\xb3\x82\x6a\x2b\x36\xa0\x7f\xaf\x15\xb3\x54\xb8\x07\x71\x0f\x7d\xda\x04\xdd\xbe\x27\x97\xd4\x50\xa4\xeb\xce\x11\x4b\x44\x54\x6e\x49\xf6\x98\x8b\xdc\xfd\x94\x10\xec\xa7\xa6\xad\x76\xf7\x3e\x6c\xf3\x7a\xf5\x0d\xbf\xfb\x78\xbd\x27\x1a\x9c\x01\x32\x9f\xbe\x97\x79\x6f\x42\x9c\x74\xf5\xc8\xf7\x8f\x16\xa6\x17\xf8\x9e\x94\x76\x4c\x62\xa5\xf7\x01\xf9\xc8\x68\x4e\xec\xfd\x75\xff\xfc\xc1\xca\x9e\x9d\x71\x55\x27\x12\xe2\x01\xd8\x73\x19\xbe\x9b\x5f\x42\x1a\x44\x93\xdb\x93\x03\xd7\xca\xd1\x92\x71\x21\xc7\xc4\x5d\x87\x7d\xcf\xfd\xbb\x8f\xd7\x3b\x4c\xfd\xbb\x8f\xd7\x7e\xe6\xf6\x9f\x72\xf2\x74\x93\xde\x89\x7d\x8b\xdc\xdb\xdb\x16\xbb\x15\x49\x72\x8c\x09\x6b\xb3\x64\xdd\xf9\xb1\xd1\xbe\x38\xb1\x7d\x42\xec\x8e\x8b\x0e\x01\xfe\xcd\x5b\x66\xfb\x58\x81\x02\x7d\xd5\x12\x3b\xe2\xed\x8c\x42\x56\x85\x10\xeb\x0b\xfb\x6c\x37\x5e\x5b\xaa\xe0\x77\xdc\x0a\x81\x80\xdb\xc8\x25\x43\x2b\x67\xfe\xc6\xfb\x0e\x84\x1e\xab\x3b\xbc\x07\x4f\xcd\xdc\xe1\x57\x82\x8e\x9b\x79\x72\xc0\x4e\x50\xab\x24\xc2\x4f\xce\x77\x9d\x17\x1c\xaa\x74\x58\xe9\x3e\x75\x56\xd5\x30\xe5\xbd\xde\xfa\x1d\x59\x8e\xc0\x4e\x2c\x29\xb7\xc8\x89\xfd\xed\x0c\x94\x63\xa7\x23\xc0\x56\xd0\x10\xdc\xf8\x5b\x4c\xc9\xc7\x6d\x4c\xc9\xde\xf8\x07\xd8\x01\x7b\x63\xfa\x52\x45\xdb\x67\x25\x55\x84\x1f\x7c\x16\xdd\x97\x4c\x18\x31\x8c\xb3\x13\x69\x84\xf3\xb5\xb5\x65\x77\xe2\xf8\xd0\xc3\x95\x7f\x19\x87\x8b\x84\x60\xd9\x1d\xe8\x67\xec\xe8\xe9\x50\x08\x95\xf1\xe9\x40\x1a\xae\x99\x78\xfa\x6e\x1d\xae\x71\xd9\xdd\x90\xea\xda\x33\xd7\xa5\xe4\x66\x9f\x7c\x30\xfe\x44\xf4\x5d\x95\xef\xe7\x17\x85\x28\x10\x5e\x93\x0e\x67\xb1\xf3\x24\x33\x56\xcd\x26\x7d\x4c\xe2\xb6\xc3\xdb\xdb\xa6\x26\xf0\x82\x55\x33\xf2\xf6\x76\xc5\x35\x06\xd8\xc3\xac\x35\xea\x07\x8f\x35\x29\xf8\x84\x19\xbe\x65\x09\x8f\x70\x91\x4b\x29\xb8\x91\x6a\x7d\x76\x05\xd2\xeb\x72\xfa\xe1\xfa\x12\x54\xdf\xcf\xee\x6c\xcc\x4d\xf4\x3e\x79\x4b\x49\x26\x8b\x82\x65\xc6\x65\xcb\x03\xf0\x86\x6e\x2b\x84\x27\xe6\xf4\x01\xa3\xbb\xdf\x81\xf8\xe4\x04\xa5\x33\xdc\xdc\xb3\x8f\x57\xe7\x97\xef\xaf\x46\x65\xfe\xf3\x99\xbc\x1f\x1a\x39\xac\x35\x1b\xf2\x0e\xc9\x8f\x9e\xcf\x7b\x11\x9f\xaa\x53\x2e\xbe\xb6\x42\x06\xd3\x08\x7e\xeb\x43\xb3\xc9\x77\x1a\xbd\x16\x40\x77\xe4\x6d\x52\x52\x9a\x01\x51\xd4\x85\x5f\x53\xa7\x7a\xaa\x8b\x02\xa1\x6d\x14\x63\x83\x54\x17\xb3\x31\x34\xa4\xf7\xc2\x1e\xac\xa8\x68\x2c\xf0\x71\x79\x88\xa7\x3f\x70\x7d\x28\xc6\x76\x9e\x64\x19\x8a\xb1\x67\x13\x8e\xb7\x8d\xf7\xa8\x38\x33\x33\x0b\xd5\x3b\xb6\x20\xe0\x08\x3c\x91\xca\x9e\x27\xd5\x3c\x1b\xcc\x64\xb0\xf4\xb3\x5a\x33\x35\x72\x64\xe7\xc9\xc1\xd6\x23\x41\xd9\x0e\x79\x21\x43\xc7\x55\x30\x73\xaf\x63\xd2\x70\xc7\xaf\xd1\xda\xcc\x98\x30\xdc\x05\x30\x3b\xc8\xac\x04\xa2\xf3\xc3\x7e\x72\xa8\x75\xcc\x8f\xd6\x2f\x9b\xd9\x21\x03\x58\x9f\x33\x69\x6f\x4d\xdf\xe3\x68\xfb\x40\x9c\x62\x8a\xe6\x43\x2c\x97\xa2\xb9\x04\x87\x0d\x4c\x6e\xd9\x38\x68\x34\x2f\xb9\x78\x81\xb7\x33\xe3\x22\xdf\x06\x87\x96\x02\x0c\x7a\x34\x59\x31\xf7\xce\x29\xf4\x83\xdd\x90\x7a\x49\x0a\x73\x69\x38\x0b\x62\xd3\x7e\xd8\xe9\xf2\x95\x0b\xfd\x63\x31\xc4\xaf\x0c\xab\x3c\x42\xe5\x60\x0c\x5c\xb6\xe0\xed\x57\xa5\xf4\x04\x26\xbe\x3d\xed\x36\x79\x62\x6e\xe8\x71\xe5\xdc\x27\x01\x54\x1f\x9e\xe7\xa1\xd4\x3b\xe2\xcc\x4a\x72\xe7\xfe\x19\x92\x8d\xe2\x1d\xf5\xf2\xb2\x85\x47\x45\x15\x2d\x99\x61\x0a\x5d\xe0\x9c\x53\x9d\x70\xd1\x09\xdf\x56\x4c\xdc\x1a\x9a\xdd\xed\x3b\xcb\xf2\x81\xe2\x3e\x1e\xc5\x7d\xb0\x29\xd0\x1f\x04\x97\x72\x6d\x91\x5a\x91\xb9\x70\x54\xe8\x85\xa0\x98\x90\xe9\xb0\x8f\x96\x23\x64\xba\x6b\x52\xd7\x98\xf9\x10\x15\x1b\xe0\xe9\x16\x52\x77\x82\x07\x3f\x42\x61\x3f\xd4\xb0\xfb\x1d\x70\x28\x70\x17\x3b\x5a\xd2\xb5\x89\x1d\x4a\xfb\x66\xcc\x4d\xbc\xf7\x9a\x19\x52\x31\x55\x72\x17\xd6\x2d\x05\xc9\x5c\x58\x00\xd0\x35\x4b\xc3\xdc\x70\x09\xcd\x13\x44\x66\x86\xba\x98\x19\x32\x66\xe6\x9e\x31\x41\x5e\xbd\x7a\xf5\x0a\xf8\x92\x57\xbf\xfd\xed\x6f\x09\xa4\x99\xc8\x59\xc6\xcb\xe5\x86\xd0\xea\x7f\xbd\x7e\x3d\x22\xff\x75\xfe\xfe\x1d\x78\x95\x55\x46\x93\xb1\x34\x33\x37\xb2\x6d\xd0\xe8\xac\x07\xe4\xff\xdc\x7e\xfb\x21\xa6\x58\x6a\xfe\x0a\x22\x48\x58\x5e\xd3\x45\xf0\xd5\x6f\x7e\xfd\xeb\x11\xb9\xe4\x0a\xe2\x89\x39\x44\x40\x04\x27\xc8\xca\x3b\x06\x42\x4d\xbb\x76\x04\xbf\xa3\x20\xce\x49\xb8\xe4\xd3\x19\x00\xc0\x5e\x08\x29\x26\x05\xcf\x0c\xa6\x2b\xc5\xab\x8f\x80\x76\xe9\x77\xa8\x0b\xf7\x72\x5c\x04\x4c\x6e\x40\x0a\x7e\xc7\xc8\x44\x7f\xad\x64\x5d\xc5\x30\x47\xc5\xb4\xe5\x65\x33\x2a\x20\xaa\x04\x06\x8b\x7b\xa5\x99\x79\x56\x27\x8c\x8e\x8a\xa0\xc6\x19\x84\x3e\x2d\x06\x65\x10\xd2\x36\x0e\xf1\x3c\x54\x94\x07\xc7\x41\xb0\xa9\x37\x8a\x86\x04\xd9\x33\x4f\xd2\x54\xfa\xd8\x95\x4a\xc9\xbf\xe1\x56\x71\xe1\xa3\xa0\x1c\x87\xac\x1d\x4f\xe6\x82\x4e\x45\xa2\x73\xf5\x51\xf9\x96\x16\xba\x88\xff\x24\x7e\xea\x7a\x92\x06\xda\x41\x58\x3a\x56\xee\x6c\xe4\xd4\x5d\xf1\xe5\x58\x07\xc2\x9e\x26\x57\x66\xaf\x16\x4b\xbd\x5d\x89\x26\x87\x7e\x5c\xe1\x2e\x17\xc2\x16\xc7\x40\x57\x5c\x17\x00\x94\x94\x83\x6b\xe4\xb9\x6c\x78\xf9\x68\x66\x6a\x07\x1a\xf0\xbc\xb2\xdf\x66\x5a\xbb\x38\xa2\x92\xaa\x3b\x2b\x24\x38\x2c\x30\x02\xaf\x67\x1d\x62\x98\x30\xa0\x6c\x8e\xca\xf2\x92\x2e\x1a\x51\x03\xf6\x23\xc7\xa3\xd1\x31\x5e\x13\xa9\x30\x4d\x30\x9e\x79\xfb\xfe\x99\xe2\xa5\x9b\x5e\xe9\xb4\xc2\x8a\xae\xa0\xcf\x71\x15\x91\x68\xc3\xdb\x99\x3a\x48\x75\x49\x0e\xde\xb3\x22\x6e\xbf\xd2\xeb\xdd\x4b\xae\x0f\x61\x01\x1d\x9a\xf6\x2d\xaf\xde\xa3\xac\xfa\xba\x6c\x0d\x0e\xc6\xee\x26\x74\x2d\x36\xdc\xbb\xcc\x40\xd9\x89\xf4\xad\x98\xea\x71\xe9\x28\xdf\xb7\xfd\x28\x9f\x8b\xd7\x6b\xd4\x1d\x7c\xf9\xa4\xee\x7a\x82\x91\x2e\x4d\xd4\xe5\x50\x43\xca\x0a\x84\x1a\x7f\x31\xec\xe5\x45\x53\xb4\xf4\xd8\xf4\xab\x69\xd1\x87\xba\xe1\xd3\xcd\x30\x81\x4f\xe3\xac\x79\xeb\x04\x2e\xda\xa1\xd2\xaa\x51\x3b\xa8\x40\xbd\x01\xf0\x98\xfe\xf2\x8c\xc8\x7b\x87\x6a\xf1\x90\xd1\xb1\x96\x45\x6d\xb0\x6b\xfc\x31\xc5\xc3\x30\xa8\xcf\xb2\x00\xc8\x37\x34\x4b\xb0\xb2\x89\xd5\x13\xbb\x21\x68\x7c\x7a\x5c\xce\x43\x22\xe1\x47\x4c\x24\x1c\x52\x5f\xeb\x8e\xa5\xe0\xf4\xa3\x65\xee\xce\x34\xef\x23\x5f\x69\x4e\x4e\x62\x05\x22\x6f\x8e\xbf\x16\x86\xa9\x09\xcd\xd8\x69\x2a\x77\x85\x4a\x4f\xc1\x45\xc8\xc7\x45\xcc\xa8\xc8\x0b\x64\xc0\x33\xa6\xe0\xec\x87\xd2\xca\x17\xb7\xd7\x24\x57\x7c\xce\x94\x26\x27\x5f\x31\xcb\x2f\x62\xfe\xd4\x4e\xd1\x55\xfb\xf5\xad\x84\x69\xec\x4b\xd2\x83\xc1\xfa\xba\xea\x41\x27\x8f\x79\x44\x72\xbf\x22\x98\x10\xaa\x08\x52\x9d\xca\xb2\x23\x7b\x94\x00\x41\x03\xce\x58\xc8\x5a\x39\x2d\xba\x4f\xd9\x9c\x49\x65\xc5\x25\x1c\x98\x6a\xa2\xd8\xd4\x72\xb3\xca\xd7\xb1\x67\x24\x2b\x6a\xfb\x62\xaf\xee\x6c\x0f\x71\x00\x8c\xaa\xd9\x4d\xbe\x7a\x13\xc7\x55\xcb\x39\xcf\x3d\xa9\xc4\xb2\xfa\xa1\x60\x6a\x45\x75\x12\x6a\x93\x14\xb7\x48\x00\x8b\x3c\x3a\x10\xd4\x10\xc4\xda\x70\xf6\x4f\x95\xc2\x12\x72\x5b\x74\xa8\x4c\xd3\x07\x09\xcb\x9c\xdd\xd4\xe3\x82\xeb\xd9\xed\x8e\x2a\xc4\x55\x43\xa0\xb3\xc2\x92\xd5\x6f\xad\x26\x51\x33\xa1\x39\x90\x3c\x8b\xc6\x2d\xd1\xe5\x96\x8f\x92\x00\x44\xdf\x3b\x3d\x90\x12\xa2\x3f\x0a\xe6\x32\x18\xd8\x9f\x3e\xc4\x79\xb8\xa0\x34\xcc\x59\x92\xb3\xef\x44\xd5\x78\x9f\xd1\xa2\xd0\xed\x80\x5d\x8f\x31\x91\xf7\xf0\x81\x6a\xb8\xa7\xdc\x6e\x77\x28\xba\xd4\x4a\x8e\xb9\x76\x61\x9a\x94\x12\xc3\x78\x04\x24\xe7\xc5\x46\x90\x7a\xc5\x77\x48\x02\x19\x21\x5c\x19\x8e\xcc\x9e\xab\xd2\x1e\xd4\xa5\x8f\xa7\x2e\x7d\xa8\x1f\x9e\x0e\x05\xea\x68\x12\x0d\xdd\x48\x4b\x1a\x50\xa9\x47\xb9\x5b\x9c\x3a\xf6\x6a\x56\xc0\x6f\x9e\x1b\xa3\xf8\xb8\x36\xfd\xf3\xbd\xb5\xba\x03\x99\xb6\x82\x08\xdc\xe2\xa1\x5b\x7d\x96\x1c\xd1\x98\x39\xbd\x89\x3e\xe3\xdd\x8f\x34\x07\xc8\x0d\xbe\x3c\xd6\x24\x97\x59\x1d\xd2\xc6\x02\xd0\xa2\x01\xad\x4b\xf6\x44\xd2\xf7\x5e\xf5\x4f\xe9\x95\x7e\x64\xeb\xf1\xca\xe5\xbd\xb8\xa7\x2a\x3f\xbf\xd9\xe2\x7d\xdf\x24\xe7\xb1\x57\xca\x28\xf9\xd7\x50\x60\x94\x8e\x65\x6d\x62\xea\xd0\x9f\x8e\xbe\x7a\x95\x98\x6e\xa4\x45\x0d\x1d\xf5\xd1\x7d\x05\xfd\x83\x8a\xfb\xa0\xe2\x6e\x3c\xbb\xa8\xb8\xaf\x51\xc5\x9d\xe6\xc1\x6d\x5c\x57\x9f\x5e\x81\x17\x5d\x7d\x7b\x1f\x53\x4b\x7a\x19\x11\x0c\x72\x53\x6d\x3f\xfe\x16\x03\x87\x57\x24\xee\x6d\xc2\xf4\x79\x0c\x04\x34\xfb\xf9\x35\xaa\x8f\xa4\x27\xed\x5e\x02\x1d\x9f\x75\x35\x4a\x37\x95\x44\x07\xae\x21\xa9\x61\x3e\x70\x59\xa0\x07\x4e\xee\x12\x79\xac\x0e\x8a\x49\xa8\x7b\x54\x40\xc6\xa7\x27\xf0\x49\xef\x0d\x20\x3d\xeb\x93\xe3\xd3\x77\x37\xc8\x0e\xb5\xca\xf1\x79\xe6\x8a\xe5\xf8\xf4\xd6\x7d\x93\xfe\xd5\xcb\x57\x2c\xf7\x71\x6b\x98\xef\xb8\xb4\xdd\xd5\xfa\xbb\xaa\xf3\x07\xb1\x72\xe6\xcb\x27\xeb\x07\x75\xfe\xd2\xf3\x84\xea\xfc\x04\x71\x7b\x64\xb0\x42\xb5\x9f\xaa\xdb\xbc\x7e\x7f\xcc\x3c\x5b\x39\x8a\xd9\xd7\xec\x91\xf3\x9a\xfd\x58\xae\x09\xcd\xaa\xc7\xa3\xd1\xf1\xb1\xd7\xf7\xbb\xf3\x59\x9b\xc9\xf0\x77\x84\x89\x4c\xe6\xb8\xa9\x76\x7c\xa5\x0d\x10\xfd\x28\xa6\xa7\x73\x29\xfd\xb7\x52\xd3\x2c\x8c\xdd\x6f\x4b\x7a\xdc\x60\x9f\x12\xe0\xed\x83\x48\x64\x24\x8c\x21\xc5\x80\x5b\x60\xc8\x2a\xe4\x28\x64\xac\x6e\x82\x85\x7d\x42\xad\x2d\xa8\x28\x72\x82\x2f\x47\x59\x55\x0f\x5c\x83\x51\xc9\x4a\xa9\x16\x83\xd0\xc8\xfe\xd8\xe8\xe5\x5a\x60\xee\xa9\xac\x56\x8a\x09\xa8\x6f\xf2\x52\xe9\xab\x07\xc1\x23\x92\xd7\x00\xf5\x6e\xd1\x6d\xf1\x69\x6e\x6b\xb4\x01\x80\x4a\x2a\x56\xab\x9b\x84\xcc\x26\x7a\x10\xed\x1c\xf6\x2d\x13\x73\x32\xa7\x4a\x77\x85\x39\xd9\x95\xa2\xe6\x7c\xce\x75\x97\x94\xff\x6b\x16\x77\x1b\xd4\x3e\x90\x76\xb0\x36\x55\x6d\x1c\x76\xf2\x67\xd7\x67\x6a\x6a\x16\x9d\x8b\x8c\xc3\xeb\x4d\x75\xda\xda\xcf\x0b\x2d\x24\xd3\x7c\x3a\x95\x95\x69\x3e\xfd\x8a\xcc\xac\xee\xdb\x73\xeb\x1f\x50\xbf\xa9\xfd\xf8\xad\xdd\xfd\x8e\x44\x22\x13\x13\x83\x79\xc6\xec\x11\x2e\x01\x28\xc3\x2f\x79\xaf\x50\x04\xdf\xa7\xe9\x2e\x69\x58\x59\x49\x45\xd5\x82\xe4\x4e\xd7\xb0\x58\x11\x11\x9a\x84\x84\x3e\x38\x35\x0c\xcc\x23\xe7\x6a\x4f\xd1\x08\x3d\xa2\x41\x59\xce\xeb\xb5\x95\xe0\xd7\x81\x0d\x7b\xa5\x40\xbb\x87\x6c\x60\x2e\x93\x98\x37\x77\xba\x66\x3e\xb1\x22\xcd\xee\x5c\xc5\x20\x0f\x55\xa4\xfd\x49\x90\xcb\xd1\x51\x2b\x0f\x34\xa8\xc7\xc0\xf6\xe7\x8a\xae\xfa\xc6\x38\x76\x43\x95\x85\xd6\x10\xe7\x16\x70\xe2\x1a\x9e\x5a\x8e\xe4\x3d\x90\xc1\x27\xda\x25\xd2\x33\xb2\x8d\xff\x9d\x41\x81\xb0\xde\xbe\xf1\xbe\x63\x48\x07\x2d\x81\x33\x0f\x65\xd3\x0a\x99\x25\xb6\xe7\x06\x85\x82\x6d\xb8\xf2\x87\xdf\xeb\xee\xed\x66\xd8\x51\x91\xbf\x00\xa5\x4f\xa1\xd1\xae\xc7\x33\x48\x6d\x09\x5c\x3c\x00\x33\x6c\xc0\xa7\xa4\x88\x60\xad\xed\x97\x20\xf3\x7c\xd2\x26\x7e\xe8\xde\x67\xd8\x34\x49\x9d\xb7\xa6\xec\x61\x7f\xb9\x0d\x2b\x8b\x72\x1b\x84\x40\x78\x46\x5d\xd7\xc0\x26\xba\xaf\x38\x76\x49\x4e\xc0\x76\x15\xcb\xa2\x85\xe4\x8e\x4b\xc7\x4c\xf0\xa2\x79\xce\x7c\x2e\xbb\xb0\xf0\x5a\x38\x47\x83\x27\x3c\x34\x2f\x98\x0e\x76\xa6\x7e\xfd\x69\x5e\x4f\x4a\xf7\x00\xfa\x16\xfc\x31\x7a\x50\x88\xa3\xe8\xc4\xd1\x20\x11\x69\x76\xbc\xa6\x43\x07\xf5\x3e\x03\xe1\xe6\x79\xcb\xd0\xa7\x20\xe1\x3a\xd2\x91\x2d\x32\x17\xb3\xcb\x1b\x59\x2f\x71\x58\x3c\x80\xe0\xdf\x3a\xb4\xff\xf1\x92\xb0\x57\xeb\x8f\xd9\x44\xc6\x42\x29\x28\x18\x39\xaf\xdc\x9c\x15\xcc\x80\x93\x2d\x0b\x09\x4b\xd1\x32\x5c\xca\xb9\x3d\xd3\x7f\x16\xe4\x3b\x9f\xba\x9f\x4f\xde\x10\x7a\xda\x88\x84\x70\xc5\x67\x04\x63\x39\xba\xea\x16\xf1\x3b\xaa\x16\x7a\x40\xc6\xa7\xde\x2d\x05\x2e\x9e\xb0\xdc\x61\xe1\x19\x5f\x14\xaf\x15\xb3\x00\x80\xe8\x63\x25\x4b\xa2\x05\xad\xf4\x4c\x1a\x90\x10\x69\x45\x33\x6e\x16\xc4\x28\x9a\xdd\x41\xa5\x22\xc5\xdc\xe7\x06\x24\x3b\x75\xfe\x5d\x29\xf8\x9a\xde\xc3\x66\xa6\x64\x3d\x9d\x81\x43\x2c\xb6\xca\x0a\xaa\xfd\xea\x57\xf6\x77\x42\x8f\x26\x39\x16\x2a\x0e\xc9\x03\x95\x9c\x73\xcd\xa5\x53\xfa\xfa\x71\x6f\x42\x82\x38\x54\x24\x63\xf9\xdf\x13\xcd\x18\xb9\xf2\x47\x02\x7f\xb9\x45\xd6\x06\x15\x1c\xaa\xe9\x23\x20\x43\x66\x73\xe1\xf2\x22\x44\x3c\x17\x6c\x58\x48\x37\xed\xcc\x57\x7e\xf4\x34\x6c\xd7\xea\x39\x49\x05\xf6\x7b\x9f\xc1\x93\x89\x5c\x26\xc6\xcb\xf3\x9b\x6b\x9d\x0a\x25\x78\xb6\x5c\xfa\x3b\xf8\xa1\x90\x62\x9a\x66\x13\x88\x27\xd3\x62\x54\x01\x55\x5e\xe6\x3c\xaf\x69\x81\xb8\xd4\x4d\xe6\xe2\xf6\x1a\xbb\xf3\xe9\xcc\x0c\xef\x19\x28\x65\x90\xe4\xc4\x3b\xe3\x3f\xca\x97\x9c\x76\xb8\x06\xdc\x6b\x9c\x52\x01\x15\x5c\x76\x6a\xf7\x74\x01\xd9\x6b\x9c\xa7\x49\xc3\x6e\xea\xf3\x8b\xe1\x10\xab\x20\x0e\xd3\x3b\x0f\x55\x3b\x2c\xf7\x00\x5a\x2b\x0b\x62\x38\xa9\xcb\x73\xb3\x80\x4f\xd2\x01\x86\xd7\xae\x40\x1b\xb5\x1b\x64\x79\xbc\xcd\x22\xcd\x23\xf0\x66\xf3\xb8\xc9\x9f\x5c\x05\xc5\x9e\x3c\xc2\xd1\x0f\x89\xf6\x2c\xb1\x77\xd8\x6b\x43\x45\x3e\xa4\x85\x3d\x39\x37\xdf\x5f\x38\x47\x67\xbc\x08\x0d\x7b\xbe\x2f\x86\xc4\x45\xc8\x9e\x6d\x59\x87\x95\x57\x00\xc2\xe1\xc7\x2c\x07\xa4\x91\xd6\x8d\xbc\xb7\x82\xb2\x2f\xee\xfc\xfd\xc5\x80\xf0\x11\x1b\xf9\xbf\x42\x53\x8f\xb5\x8c\x9c\xa2\x37\x60\x70\xf5\x84\x73\x07\x53\x49\x75\x52\x69\xdf\xbf\xfe\xde\x4e\xd2\xfe\xfa\x87\xe1\xef\x93\xa4\xa3\x7f\xf8\xab\xab\x24\xfd\xd7\xd6\xdb\xd4\xa5\x2c\x24\xdf\xff\xab\x2f\xe3\xed\x52\x57\xff\xd5\xd5\xe4\x82\xc2\xd5\x23\xa8\x4b\x3d\xa7\x05\xcf\xf1\x34\xc2\xb7\x15\xfb\x9b\xd7\x2f\x02\x98\x82\x6e\x27\xa3\x86\x09\x40\xd4\x3e\x36\x43\x48\x83\xdd\x5d\x75\x5a\x3b\xff\x13\xd0\x0c\x60\x6c\xd9\x80\x18\x29\xe1\x3a\xe2\x95\x3f\x17\x84\xf9\x92\x9d\xb8\x56\x00\x07\x75\xfe\x6a\x9e\xf6\xd8\x61\x2d\x84\x43\x24\xae\x9d\x07\xcc\xed\x97\x42\x9a\x5f\x86\xed\xf7\x9e\x1a\x40\x60\x24\xa1\x73\xc9\x7d\x1e\x72\x7b\x53\x04\x16\x76\x0c\x99\xb1\xc7\x0b\x52\x72\x6d\xe8\x1d\x1b\x91\x5b\x4b\x5b\x52\xa3\x18\x42\x4f\x10\x48\x64\xc9\x72\x52\x0b\xc3\x0b\xf8\x35\x8e\x63\xa7\x9c\xd2\x9c\xeb\x09\xd1\x75\x66\x71\x6b\xa5\xd8\xd0\x53\x31\xd7\x6a\x09\x17\xc4\xb5\x0c\xc2\x66\xcf\x28\x8a\x04\x55\x0e\x5d\x01\x1e\x54\xb8\xe3\xb5\xe4\xce\x65\xe7\x29\x45\x16\x29\x17\x00\x53\x8f\xc8\x07\x20\x56\x85\xb7\x0c\xa3\x74\xe2\xf4\x98\x82\x65\x4c\x6b\xaa\x16\x03\xc8\xef\xce\x43\x4e\x70\xe7\xc1\x03\x14\xb5\xa4\x02\xb3\xab\x2b\x96\x49\xa1\x8d\xaa\x33\x83\xe5\xf6\xc6\x4a\xde\x31\x11\xbc\x06\x97\x8b\xdd\x47\x37\x1a\x30\x7b\x49\x92\xcd\xa8\x98\x26\xe5\x6a\x4a\x9a\x03\xec\xbf\x09\x5c\x8e\x5f\x8f\x85\x00\x9d\x58\xc6\x82\x1b\x00\xc5\xd8\xd2\x91\xa0\x8d\xfd\xb3\x08\x69\x79\x06\x51\x5d\x6a\x97\xc4\x8b\x2d\xb8\xab\x17\xfe\x22\x3d\x75\x7b\x43\x20\xdb\x7b\xf6\x03\x2b\x99\xa1\x39\x35\x74\x07\x5f\xb0\xf7\xb1\xc6\x9e\xb3\x43\xba\x3a\xa7\xc1\x3e\xe9\xe8\x90\x67\xb7\x64\xc5\xd3\x30\x28\xb8\x89\x33\x0f\x79\x08\xbc\x36\xf6\x4c\x39\x7b\x01\xba\x78\x01\x3f\xe3\x8b\x98\xd9\xe1\xfd\x68\x88\x2e\x62\x85\xc6\x88\x4e\xba\x59\xa3\x7a\x2a\x62\x2d\xe8\x77\x80\xd1\xa7\x68\x32\xcb\x9a\x6e\x5e\x2b\x59\x10\xa4\x12\x4c\x18\xae\x58\x1a\x75\xe6\x40\x57\x0b\x3c\xe4\x2d\x20\x02\x94\xa7\xcc\xe8\xe8\xa8\x82\x78\xd8\x22\x17\x47\xef\x9c\x4c\x0a\x48\xda\x01\xd6\x89\x75\xab\x79\x21\x04\xbb\x96\x0e\xcf\x5a\xcc\xff\x28\x70\xdd\x45\xf7\x8c\x55\x05\xde\xcb\xbc\x8f\xba\xba\x95\x8c\x3f\x0e\x11\xdd\x38\xd1\x21\x57\x83\x6c\x8f\x0d\xc0\x68\xa5\x1b\xb1\x73\x88\xe4\x66\x74\xbe\xbb\xae\x2a\xf2\x48\xc3\x90\xd1\x18\x3e\x37\x84\xcf\x0d\x5f\x77\xd7\xe9\xf5\x71\x04\xf1\x4f\x67\x87\x90\xe6\x47\x7a\x29\x50\x2d\x4a\xb9\xed\xa9\xf5\x6c\x05\x25\x87\x11\x1c\xce\x77\xc6\xc4\x60\xc0\x75\x01\x0f\x8c\x5b\x6c\xf1\x86\xfc\xb2\x41\xe5\x1d\x37\x15\x24\x25\x74\xd8\x3d\xf1\xa2\xd3\xc8\x6d\x85\x8f\x41\x6f\x36\x3f\x6d\x0d\x06\xec\xc5\x6a\x89\xc2\x3b\x06\x07\x96\xcf\xb2\x67\x0a\x74\x68\x3e\x0c\xc1\x1e\x2f\x25\x8b\x82\x29\x58\x82\x93\x9e\x5a\xc6\x74\x48\x69\x8a\xaa\xdd\x41\x10\x51\x03\x8f\x29\xd8\x7d\x60\x26\xa8\xc6\x0c\x2e\xde\xf0\xc5\x5c\xfd\xbc\xb5\xe3\xb9\xea\x46\xf6\xf7\x73\xb1\xc0\xc9\x5f\x26\xc0\x45\xe1\x93\x4c\xed\xa7\x2c\xdf\x29\xe8\xb8\xb0\x94\x2f\xd9\x80\xf0\x9d\x16\x2a\x37\x32\x69\xf5\x91\x4d\x9c\xd4\x98\xbe\xea\xd6\x17\xe9\x40\xa3\xe3\x28\x7a\xb2\xf8\xe2\x76\x31\x73\x89\x83\x7a\xa3\x49\xd3\x02\xde\x1a\xad\x11\x50\xbb\x6a\x06\x9d\x0d\x78\x3b\x99\xf0\x76\x31\xe2\x41\xf4\x27\x17\x5d\x3c\xa6\x62\x87\x8d\x75\x4e\xda\xcf\x2e\x56\x3f\x70\xab\x01\x6b\x7f\x3f\x13\x4e\xb3\xac\xfa\xcd\x35\x0c\xe1\x65\x87\x29\xfc\xe1\x29\x63\xb0\x71\x8c\x99\xbd\x7d\x31\xae\x1b\xf6\x3d\xed\xbb\xc2\xf1\x21\x5e\x81\x6f\x20\x79\xac\x53\x6a\x87\xc2\x68\x8a\x81\xe3\x0a\x7c\x71\x04\xd5\x13\xa8\x58\x38\x8e\xc3\xcc\xb8\xca\x87\x15\x55\x66\x81\x62\xee\xa0\xf1\xb5\x10\x0d\xd0\x6b\xe1\x3b\x5a\x9f\xba\x65\x6a\x5e\x0b\x61\x58\xbc\xd7\x66\x3b\x63\xc2\x5a\xb8\x3e\xc5\x7a\xba\xc7\x1b\xac\x5c\x4f\x9a\x09\xd5\x4b\xae\xcf\xb6\x9e\x06\x66\x79\x38\x7d\xb3\xe8\x49\x37\x2d\xc5\x48\xae\xd2\x4a\x5b\x32\x75\xda\x0e\xdc\x08\x08\x6e\x76\xa4\x81\x95\x97\x69\x2c\x8d\x9e\x28\x20\x1d\x47\xe3\x5d\x7e\x5c\x61\x26\x7b\xe8\x93\xaf\xa4\x5d\xc3\xfd\x20\x27\x42\x0a\xbc\x33\xd8\xf6\x14\x7d\x9d\xd6\x68\xcf\xa0\x49\xa0\x36\xa9\xac\x96\xdc\x51\x4f\xc6\xb8\xc8\xed\xa6\x01\x5a\x06\x29\x4e\xd7\x59\xc6\x58\x90\xfb\xd3\x5a\x3a\xf1\x4e\xbb\x29\xfb\x9a\x9c\x5a\x42\xb6\x19\x6d\x68\x51\x44\x79\xdb\x01\x4a\x02\x25\xf6\x3a\xca\x84\x40\x37\x22\x82\x9c\xea\x01\xaa\xbd\xa3\x7f\x4e\x2d\x32\xf4\x35\xe0\x66\x91\xe6\xe1\x6f\x30\x23\x20\xe8\x68\x14\xc3\xf9\x04\x35\x63\x89\xc0\x12\x80\x09\x48\xc9\xd5\x9a\x9f\xf9\x8a\x29\xc0\x85\xbb\x24\x12\x16\x03\x8d\x69\x76\x77\x4f\x55\x0e\x35\x87\x2b\x6a\x38\xe6\x2f\x1f\x20\x55\x4c\x89\x9c\x38\x3e\x4e\x4d\x39\x5c\xb4\xe9\x6f\x3a\x91\x93\x64\xd6\x4b\x74\xf9\x34\xd0\x63\xcd\x42\x76\xed\x38\x31\x42\x6b\x23\x4b\x6a\x78\x06\xe2\x39\x9f\x24\x9a\xd1\x32\x64\x6b\x6c\x55\x54\x04\x8c\x1c\x6a\xf3\xff\xd0\x9e\xfc\xc6\x89\x27\x73\xf5\xcb\x5c\x3d\xaf\x04\xa9\x87\xca\xfd\x60\xd1\x02\x0d\xbe\x62\x8c\xf0\xd2\x32\x58\x14\x0a\x92\x4c\x42\xdc\x95\x57\x17\x6f\x02\x8a\xe5\x22\x7f\x00\x1d\x7d\xd2\x0a\x75\x0c\x56\x02\xd5\xc4\xdc\xcb\x20\xce\x45\x4d\xa8\x0b\x5c\x1a\xb4\x58\x0e\xd7\xc7\x5e\x35\x0b\x96\xe4\x1e\x0d\xec\xd9\xb9\x67\x45\x61\xff\xbf\xe9\x36\xe9\xd1\xaa\x19\x61\x65\x60\x4d\x72\xae\x5b\xe5\xbd\x4f\x72\x25\xab\xca\xe9\x97\xca\xd3\xf6\x8c\xc0\xec\xa2\xe6\x4c\x27\x15\xac\x91\x67\x9b\x32\x11\x4a\xb0\xbb\xa4\x20\x80\x50\xda\x9f\x68\x6c\xe3\xca\xc9\xa5\xe0\x42\x25\xf6\x66\xf0\xb8\x5f\x41\x16\xb5\x90\xf2\x07\x46\x8f\x30\x68\xf7\x94\x7c\xe7\x0a\x3f\x85\x3b\x1b\x3c\x23\x3b\xf1\xb4\xa8\x0a\x73\x6c\xed\x88\x9c\x9c\x17\xd5\x2c\x19\x35\xe5\x22\x83\xc7\x75\x73\xa6\x8d\xef\x5d\x28\xa9\xf5\x07\xdf\xa5\xcf\xa7\x0f\x1c\x66\xc7\xe7\xc0\x61\x1e\x38\xcc\x7f\x6d\x0e\xd3\xaf\x07\x70\xcc\x03\x17\x15\xc8\x6f\x13\xd7\x6d\x5a\x1e\xf9\x20\x8d\x33\x8b\x00\x0b\x42\xd7\x4a\xda\x14\x10\xdd\x3d\x5d\x8c\x04\x33\x2e\x9a\xd7\x2b\x55\x3e\xfa\xf1\xbe\x56\x96\x18\x3b\xde\x2d\x39\xe6\xfe\xce\xf8\x38\xe2\xe4\x2b\x46\x22\x7d\x88\x56\x1a\x78\x7f\xac\x9d\x8d\xc2\xfe\x0e\xbe\xf4\xe9\x00\x19\x1b\x91\x5b\xe6\x93\x7a\x36\x3e\xbe\x1c\x35\x9a\x33\x43\x79\xa1\x23\x41\xf8\xb4\x86\xc0\xec\x8e\xf0\x1f\xfb\x94\x04\x9f\xd1\x5d\x65\x90\xe8\x28\x9d\xb8\x64\xa4\x1e\x45\xb1\xc1\x3a\x15\xe8\xf5\x84\x7c\x64\x99\x9c\x33\x85\x90\x81\xea\xc1\x96\xcf\x7e\x4b\x79\x61\xe1\xe2\xe1\x13\x55\x4b\x90\x96\xb9\xa9\xd8\x4f\xf4\x79\xe1\x50\xba\x4d\x28\xdd\xa4\x5c\xb8\xb0\x6d\xef\x4c\xec\x95\x62\x73\x2e\x6b\xed\xfd\x9e\x6a\x83\xc8\x58\x1b\xc7\xd9\xce\xf8\x34\x64\xf7\x0f\x8e\x12\x8a\x65\x52\xe5\xf1\xf0\x69\x43\x4d\xad\x9b\xc1\x56\x19\xea\xe2\xf7\xa7\xde\x0d\x70\x7c\x64\x1e\x60\x37\x7a\x0b\xcb\xed\xd5\xa3\x6d\x1d\x07\x9e\x55\x43\x5c\x63\x82\x67\x52\x1c\x83\x7e\xcd\x5c\x20\xe0\xed\x66\x8f\xfc\x4f\xd8\x79\x10\xf7\x38\x9a\x2d\xb9\x4e\xca\xfc\x07\x1b\x20\x07\x2e\x95\xda\x6b\x9b\x88\x63\xe1\xd2\xc2\x31\xf3\xcc\xdd\x25\xca\x7f\x1f\xdd\xb7\xce\x0b\xcb\x93\x22\x12\x48\x2e\xee\x0a\xfb\x22\x2f\xcb\xda\xd8\xf3\x3a\x22\xd7\x18\xc9\x02\x9c\xad\x13\x98\x26\x31\x3a\x83\x29\xdd\xc1\x2a\x98\x3e\xbb\x28\xed\xc9\x2e\x8a\xfb\xa5\x8d\xfa\x98\x82\x3c\xcd\x4a\x61\xa5\x3b\xb0\xcd\xdb\xdd\xf1\xb6\xfb\x46\xeb\x0e\x61\xf5\xab\x56\xd9\xf3\x00\xe3\xb3\x0b\x2b\x8b\x4f\x4f\xfe\x14\x9f\xdd\x6e\x0d\x3e\xfd\xb9\x0e\x7c\x96\x79\x8f\x56\x11\x7f\xcf\x83\x34\x76\xa6\x92\xf9\x68\xc5\xdd\x09\x7e\x1c\x32\x77\x4e\x1a\x4d\xfd\x0b\x86\x7c\x5d\xdb\xe1\xef\xbc\xe3\x52\xc0\xb3\xae\x64\x5a\x01\x9a\x14\x9e\x33\xcc\x72\xeb\xee\xdc\x0e\x2b\xdb\x91\xdd\x69\x39\x24\x5a\x54\x32\x2c\x69\x35\xbc\x63\x8b\xde\xdb\xb2\xc3\x29\x58\xfe\x38\xae\xa3\xa4\x55\x8f\x71\xd0\x81\xf6\x01\x98\xf4\xf8\x1d\xba\xe0\xe2\xcb\xb1\x23\xbc\xde\x2b\x38\x7a\x24\x67\xb2\xac\x6a\xc3\x12\x02\xed\x48\x69\x6f\xaa\xd5\x48\x42\x72\x86\x75\xf4\x86\x61\xd8\x61\x44\x72\x1d\x0a\xe0\xa4\xcf\xce\xd7\x7f\xd7\x7c\x1b\xe9\xf3\x82\x1d\x80\x5b\x8b\xed\x1f\x0c\x43\x1e\x18\x10\x43\x1e\x12\x14\x43\xf6\x19\x18\x43\x42\x78\xdd\x43\x6e\xcc\x47\x1f\xd8\xd7\xba\x33\x8e\x85\xdd\x74\x67\x1a\xf9\x9d\xc2\x38\x5c\xfb\x82\xdc\xce\xbd\x2c\xdc\x01\x30\xcd\xa6\xe1\x59\xee\xb6\x82\xce\x1a\x7d\xc8\xd8\xe7\x50\x84\x21\x11\x93\x40\xfa\xbf\xe7\x1a\x05\x1b\x41\x78\x59\x61\x62\x46\xb8\x75\x43\xcf\x19\x39\x9d\x70\x98\x49\x06\xbe\x34\x84\x7d\x06\xcd\x38\x7e\xec\x70\xc1\xc9\xe1\x82\x77\xee\xff\x9c\x17\x1c\xe3\xd3\xfa\x84\x4f\xb6\xea\x3a\x62\x77\x97\x32\x85\x8e\x59\x41\x7e\xac\x99\x5a\x10\x2b\x6d\x46\x2f\x6c\x28\x46\x61\x19\x17\xf4\x63\x76\x96\xa5\xee\x9c\xcb\x13\x0a\x5a\xc0\xdd\x5d\x7d\xb6\xa2\x36\x64\x1d\x78\x00\xda\x6b\x0f\xd5\x4c\x2c\x83\xd0\x0a\x10\x4c\x45\x69\x74\x04\x6b\x08\xd7\x56\xe6\x3a\xff\x70\xb9\x9b\xc6\xe2\x39\xc4\x98\xf3\x0d\x0b\x44\x40\x84\x5f\x9a\xb5\x3f\x83\xc9\x83\xdc\xb1\xc5\xc0\xb9\x2b\xba\x5a\x3b\xbe\x31\x7a\xdd\x36\x13\xc0\x77\x4d\x2c\xb6\x0a\x40\x4f\x2e\x01\x75\x4d\x19\xde\xec\xe5\x81\xf0\x84\xb2\x53\x8f\xd4\xe2\xe9\xb3\x2e\xcd\x38\x9e\x09\xc8\x97\xec\xa3\xd0\xc2\x31\x80\xc8\x3b\xc0\x16\x4f\x2a\xd2\x10\xc8\xec\x8b\x80\x7d\xf0\x52\xc3\x31\x6d\xc4\x4f\xdd\xb1\xc5\xb1\x76\x39\x1e\xa4\xd0\x33\x5e\xf9\x6a\x3e\x80\x09\xdc\xc9\x25\xdf\x83\x1b\xa7\x1f\x02\xef\xfc\xb5\x18\x90\x0f\xd2\xd8\xff\x5d\x81\x47\x37\x9c\xf5\x4b\xc9\xf4\x07\x69\xe0\xcd\x93\x03\x0b\xa7\xfb\x60\x50\x39\x73\xa8\x53\x14\x41\xe4\x01\x44\xd3\x7a\x4f\x61\x00\x89\x73\x22\x0b\x60\xe5\x9a\x5c\x0b\x22\x95\x87\x89\xf1\xa5\x1e\xb4\x1b\xc2\x9b\x7a\x12\x23\xf7\x8a\x31\x1c\x28\xa5\x6a\x40\x72\xc3\x70\xc1\x8c\xcd\xfd\x2f\xa0\x23\x07\x97\x84\xe0\xde\x0c\x05\x0b\xa8\x61\x53\x9e\x91\x92\xa9\x29\x64\xf3\xc8\x66\xbb\x6f\x50\x7f\xbc\x8d\xcf\x4e\xd8\x3b\xfd\x70\xef\x93\x01\xa4\xee\x1d\x38\x98\x3f\x94\x60\xe2\x28\x48\x22\x4a\x5a\xd9\x43\xf1\x0f\x4b\x09\x60\x5f\xfe\x09\x05\x46\xf4\x88\x9c\xfb\xf2\xf4\xe9\x6f\x4e\x5d\x9c\x0e\x63\x47\xb0\x2c\xff\x8f\x35\x9f\xd3\x82\x61\xd8\x05\x15\x21\xe9\xba\x9c\x2c\x91\xe9\x81\xab\x32\x62\xb1\x54\x50\xcf\x1c\xdd\xb1\xc5\xd1\x60\xe9\x20\x1d\x5d\x8b\xa3\x98\x52\xa7\x71\x74\x02\x41\x03\x9d\xe4\x11\xfc\x76\xb4\x6f\xca\xfe\x4c\xac\xfd\x0e\xa7\xc4\x69\xde\x2f\x0a\x8a\x96\x9a\x5d\xed\x21\xed\x71\x56\xa5\xcb\xbe\x4d\xda\x44\x4b\x96\x0b\xb2\xd9\xbb\xe1\x00\x82\x31\xfb\x3b\x84\xf7\x82\xde\xdc\xd5\xba\xeb\x9e\x66\x6b\x65\xfa\x57\x48\x32\xe5\x43\x6d\x1b\x59\x0c\xa2\x2f\xda\x1a\x78\x7d\x0f\x06\x1c\x39\x21\x6f\x63\x1a\x6c\x50\xc1\x5b\xa2\xed\x82\x6f\xad\x20\xcc\x45\x56\xd4\xce\x76\x03\x5d\xd1\x90\xf0\xf8\xc0\x79\xc0\xa1\x8a\x03\xf8\xd3\xe4\x7d\xdf\x96\xe2\xac\xda\x9e\x40\xe0\x18\x16\x7c\x5f\x10\x56\xfb\x5e\xeb\x64\x4b\x54\x4b\x33\x75\x7a\xd6\xe4\x3d\xde\xf2\xb1\x62\xe4\x62\x46\x85\x60\x45\x92\x9b\xc4\xe9\x42\x42\xf1\x51\x60\x48\x5c\xc9\xd1\xe3\x66\xcd\x51\x8f\xdf\x44\xc8\x84\x13\x83\xce\xf6\x94\xa6\xff\xa7\x54\x02\x74\x7d\xa6\xfa\xbe\xc5\x3f\x31\xb1\xf6\x4c\xde\x93\x5c\x92\x7b\xa8\x32\x35\xb7\x44\x0b\x9c\xbf\xb4\x27\x77\xc9\x4c\xc1\x4f\x34\x93\x65\xa5\x64\xc9\x83\xf3\x94\xdb\xc6\xbd\x26\xf2\x28\xea\x0e\x19\x1b\x9b\x7b\x50\xd4\xa2\x59\xc0\xe7\xed\x05\x31\x54\x4d\x99\xb1\xa3\x11\x51\x97\x63\xd6\x39\xdb\xc8\x63\x64\x8c\xfd\x92\x0a\xbe\xef\xb7\x64\x29\x6e\xc3\x0f\x3f\x7c\xe8\x9b\x30\xf7\x38\xf6\x5c\xb7\xb7\xf7\x52\x15\xf9\x3d\xcf\xbd\xc1\xf9\xc4\x36\x3e\xed\x3a\xff\x3d\xe7\xcf\xed\x71\xc2\xef\xef\x79\xde\x1b\x1c\xd0\xa9\x09\x06\xef\x06\x6e\xc1\x40\x00\x0e\xae\x1e\x27\x87\xa2\x27\xd0\xe3\x94\x5c\x71\x0c\x02\x87\xfe\x60\xb8\x2e\xc7\x5c\xc4\x44\x00\x11\xcc\x16\x19\xdb\xfb\xe2\x45\x13\xcd\x0c\x86\xef\x42\xe4\x8c\x34\x33\xa2\x79\x59\x17\x86\x0a\x26\x6b\x5d\x2c\x3a\x1f\x95\xe7\x01\xf5\xa4\x60\x9f\xf1\x64\xf7\x21\x72\xa1\x53\x93\xd8\x81\x8b\x6c\xcc\x76\xb1\x44\xed\xa2\x87\x79\x7e\x16\x28\x5f\x88\x0a\x67\x9f\x59\xe6\x82\xb7\xaa\xa2\x9e\xf2\x2d\x51\xaa\xff\x62\x35\x68\x62\xb9\x8f\x5a\xb3\x98\x57\xa9\x6b\x15\xbe\x27\x2a\x19\xf3\xbc\x14\xfe\xd3\xea\x72\x31\x39\xab\x98\xc8\x21\x81\xed\xdb\x78\x72\x71\xf2\x7b\x85\x9c\x4b\x06\xdb\x17\x6b\xf9\x1c\xb2\x0d\x0c\x9e\xb8\x27\xcc\x64\x91\x6b\xc2\x3e\x1b\x45\x2d\x62\x2a\x2d\x0a\x0a\x7d\x26\x84\x8a\xee\x48\xe6\x65\x14\x74\x20\x7b\xa7\xf6\x8f\x5b\xdd\xfc\x25\x16\x28\x8f\x6b\x6f\xbc\xde\x73\xa1\x21\x44\xc4\xee\xae\xe8\x66\x80\xd4\x8a\x82\x40\xd1\x81\x75\x39\x12\x75\xc7\xc2\x40\x7a\x45\x09\x94\xd6\xac\x0e\x45\xd5\xbf\x88\x2a\x41\x13\xc8\xdf\xd2\x27\x65\xa6\xeb\xd1\x92\xa8\xdd\x4b\x5f\x9c\xb8\x83\x04\xed\xce\x6d\x42\x07\x2c\xd4\xfd\x40\x2e\xfa\x9c\x68\x0b\xcb\xe8\xea\x5d\x0b\xb1\x0d\x8b\x3d\x46\xcd\x17\x6a\xa8\x66\xa6\x9b\x36\xa5\xc9\x3a\xc4\x9e\xf6\x02\xa6\xe7\xcb\xfd\x84\x35\x87\x20\x2a\xcf\xe7\x34\x21\xc3\x3f\x38\x2e\x43\x34\x5a\x5a\xfe\xc2\xc3\xc7\xa7\xd4\x64\xc1\x8a\x8c\x63\xe4\x76\x57\x32\x6a\x3a\x17\x48\xec\x44\x17\xdc\x0c\xbe\xfb\xae\x77\xe5\xfd\xa4\xa7\xe7\x43\xe0\xdf\x4d\x20\x8c\x82\x83\x6c\x2d\xf8\x8f\x75\x2a\x0e\x40\x0e\xb2\xb0\x6c\xd7\x7e\x5f\x6b\x9b\x66\x2c\x2a\xaf\x2e\xb9\xbe\xeb\x93\x3a\x76\xa9\x73\xf3\x4a\x7c\x7d\x71\x45\xdc\xdb\x4e\xfa\xa5\x3e\x0a\xa6\x87\xa6\xa4\x9c\x66\x2c\x2a\x6d\x73\xae\xef\xf6\x94\x76\xb6\x3b\x57\x5f\xe5\x1f\xb6\xb9\x3a\x3e\x9d\xfe\xab\xcd\xf5\xfa\x4c\x7a\x49\x8a\xc7\x85\xac\xc9\xbd\xcb\x50\xe5\xb8\xe6\x4f\xbc\x7a\x43\xae\x84\xae\x15\x8b\x96\xdb\xf6\x50\x96\xea\x76\xe6\xa1\x21\x09\x98\x7e\xb3\x37\x5d\xd9\xbe\x4f\xc9\x4b\x56\xbe\x55\x54\x19\x60\x8f\xfb\x1e\x83\xd0\xd1\xe3\xa7\xe4\x85\xe8\x72\x0e\xae\x27\xde\xef\x6e\xe0\x52\xf1\x84\x34\xb3\xbe\x91\xdd\xf9\x24\xfb\x5c\xba\xd7\x6f\x43\x66\x46\x72\x96\xb3\xf9\x99\xce\xe9\xeb\x01\x7c\xc6\x47\x96\x34\xe7\x44\x35\x39\x7a\x7d\x34\x22\xb7\xbc\xe4\x05\x55\xc5\xa2\x51\x38\x23\xb6\xb3\xc4\xc2\x0f\x08\x56\xb9\x57\x47\xe4\x44\x2a\x18\x39\xa3\x82\x14\xcc\x87\x75\xbb\x7b\xb6\x40\xde\xf1\xf4\xa9\x91\x0b\x79\x54\xfd\x25\xe2\x99\xde\x67\x22\xf7\x14\xdb\xd1\xa3\x46\xd6\xc1\xcb\x88\xd2\xb9\xb0\x78\x7e\x44\xbe\x73\x08\xda\xd1\x2d\xdc\x34\xb8\x32\xbe\xc5\x73\x01\xf5\x69\xe4\xbe\x9d\x24\xb8\x65\x75\xf0\xf3\x81\x69\xbb\x94\x38\xe5\xe6\x23\xab\x64\x2f\x0e\x01\xbb\xb4\xf4\x71\xdc\xd8\x17\x52\x73\x48\x2b\x4f\x0d\xa1\x78\x6d\xb3\xba\xa0\x96\xad\x46\x6d\xdc\x88\x5c\x5e\xdd\x7c\xbc\xba\x38\xff\x74\x75\xf9\x86\x7c\xed\x46\xe2\x29\x87\x37\x22\x9f\xd2\xa4\x9d\x89\xc3\xaf\xcb\x8c\x18\xbe\x35\x70\x68\x88\x8a\x98\x8a\x1b\x52\xb1\x51\x41\xae\x05\x37\xb1\x98\x05\xfa\x9d\x15\x52\x30\x5f\xeb\xbd\x92\x4e\x1b\x38\xe5\xc6\xa5\x28\xc2\xc1\xec\xcf\xcd\xd1\x5c\x2c\x87\x65\x65\x62\x28\xc6\x93\xb3\x16\x11\xb8\xfb\x62\xff\x7d\xb6\xfa\xbe\xbc\x6f\xa8\x1d\xe0\xe3\x8d\x51\xfb\x1f\xdf\x23\x31\x08\x65\x74\x7c\x56\x42\xa9\x1a\x55\x6e\xa0\x06\xbe\x25\x33\xc7\xa3\x63\xcf\x50\x14\x4b\x25\x93\xc2\xa0\x69\xe2\xd5\xe6\x61\x1b\x11\xf2\xad\xf7\xe8\x86\xcc\x2b\xab\xab\x2f\x61\x12\xaf\xa4\x86\x4f\xeb\xc8\xfa\x08\xc4\x7a\x9c\x7e\xd4\x65\x6a\x9d\xf2\xb9\xcb\x9f\xb1\x57\x2d\x5e\xfc\x7c\xef\x5a\xb6\x71\xde\x4e\xfe\xf8\xf8\x6e\xbf\x33\xc3\xfb\xd7\x7b\x5e\xee\xda\xba\x59\x65\xb2\x2c\x31\xad\xe7\x2c\xc4\xfb\xc7\x90\xfd\x80\x15\xf6\x26\xf9\x60\x82\xd2\xc9\x96\xc3\xdf\xc2\x67\xbe\x53\x4b\xd2\x09\xaf\x5d\xcc\x82\x88\x6c\x6e\xff\xaa\x19\x2e\x17\xae\xf6\xe1\xd8\x0e\xb5\x9f\x85\x8f\x9f\x7d\xbc\x3a\xbf\x7c\x7f\x35\x2a\xf3\x27\x47\x2d\x4c\xe4\x95\xe4\xc2\xe8\xed\xf2\xcd\xb6\x1a\x81\xdd\xd1\x4f\xf8\x68\x5f\xea\x1c\x3a\xfa\x33\xe6\x5f\x24\xe9\x83\x5d\x38\x79\xb2\x87\x46\x56\xb2\x90\xd3\xd5\xc5\x32\x7a\x6c\xce\xcf\x31\x0d\xe0\x90\x0e\xed\xae\xef\x97\xd5\xef\x52\xf5\xac\xcd\xe5\x63\x95\x33\x0b\x86\xb8\xd6\xc0\x35\x43\x71\xb2\x17\xba\xdc\x47\x61\xce\x96\x60\x80\x82\x24\x5c\x60\x9f\x59\x39\xa6\x2a\x4e\x2a\x0e\x76\xe5\xda\x1e\x1b\x74\xdb\x19\x36\x8b\x7f\xb6\x97\x95\x6c\xc2\xcc\xf7\x69\x22\xb8\x4a\xb1\x61\xc8\xaa\x09\x85\xf0\xa4\x4a\x08\x6e\x8a\xef\xbc\xf6\xc6\xeb\x7a\xb0\x55\xb1\x68\x6b\x71\x92\xf0\x70\xaf\xfa\xc2\x5c\x46\x45\xb1\x88\xd9\xba\x9d\x14\x4d\xa7\x98\x2d\x53\x39\x35\x71\xa5\xf8\x9c\x17\x6c\x0a\x19\xf3\xb9\x98\x26\x79\x06\xd2\xcc\x04\x2e\xa5\x44\x53\xe9\xfa\xde\xfe\x95\x94\x48\x81\x73\xf1\xe1\xdb\x4f\x50\x7c\x01\x0c\x5c\x0f\x66\xc2\xed\x07\xe1\xbe\x0d\x87\x43\x50\x19\x9c\xfc\xcd\xf2\x93\x79\x71\x4a\x7e\x60\xee\x3b\x12\xaa\x43\x28\x28\xdc\x38\x93\x21\x55\x3f\xcc\x35\x42\x16\x8e\x23\x9a\xf7\x5d\xab\x33\xdb\xd2\xf2\x4a\x48\x6a\x1a\xed\xa1\x4e\x3d\x66\xd8\x46\x1b\xd3\xd3\xf3\x9e\x7b\x44\xfb\x3b\x63\x39\xaf\x5a\x5d\x75\x3e\x83\xe1\xc7\xe3\x43\x4a\xf4\xa2\x2c\xb8\xb8\x8b\xe9\x5b\x27\xd2\x65\x30\x61\xc4\xfe\xe0\x4f\xac\x62\xb4\x58\x8f\x29\x77\x39\x1f\x7b\xc5\x92\x66\x07\x0d\x20\x68\xe8\xec\x3d\xfb\xa3\xbf\xf6\xce\x0c\x9d\xa2\xb8\xa3\xa3\x17\xb7\x5e\xae\x33\xcd\xfb\xa0\x35\xe8\xd0\xc0\x69\x82\x5c\xdf\x5e\xdc\x5e\x3f\xa9\x86\x7a\x1d\x49\x80\xd9\x3d\x23\x57\xc7\x7f\xdc\x66\x1d\x1e\x92\xa2\xde\xde\x06\xc5\xbb\x1b\xa9\x0c\x2d\xf6\x84\x04\xb2\x19\xad\xce\x6b\x33\xbb\xe4\x1a\x92\xd5\xf4\x65\x02\x96\xfa\x27\x9e\xce\x58\x62\xc3\xe7\x75\xe6\xfe\x38\xb8\x76\x17\x7f\x3c\xbf\x21\xb4\xb6\xfb\x6b\x5c\x0e\xf8\xbd\x1a\xdc\xfd\xcc\x6e\x31\xc2\x60\xc7\x75\xb9\xde\x5b\x56\xe5\x5b\x3d\xf6\x9a\x1e\xc3\x0f\xf7\x60\x8b\x00\x1c\x8a\x18\xec\x05\xdb\x1f\xb8\xe0\x86\x53\x23\x3b\x96\x95\x6d\x1c\x81\x46\xdf\xa0\x10\xa8\xb5\x91\xa5\x3b\xc1\xd7\xbe\x05\x98\x90\x81\x8a\x2f\x75\x8a\xda\x02\xe0\xde\x01\x62\xd7\xc2\xf2\xda\x34\x63\x2d\x07\xc8\x01\xe4\x66\xc7\xb1\x79\x68\xf3\x7b\xa7\xa0\x82\x3c\xa4\xc5\x1f\xde\x34\x2a\xe6\x2c\x95\x1f\xf3\x5a\x8a\x58\xdb\x6a\xaf\x1a\x1f\xfe\x63\x5f\xa4\xc0\x7f\x14\x2d\x4d\x1b\x2e\xf0\xff\xd6\xb4\x40\xc0\x7c\xd8\xb7\x5a\xaa\x09\xe4\xbe\xf3\x6d\xee\x90\x9b\x7a\xdc\x8e\x0f\x41\x4a\xaf\x35\x66\x38\xc5\xf5\x18\x45\x85\xb6\x7b\xd4\x94\xc5\x8e\x9d\xe1\xe9\x98\x9c\x98\xac\x3a\xdd\xeb\x3a\xfb\xbb\xb6\x17\xb5\x48\x19\x0e\x9c\xf9\x27\xdc\x96\x77\xc1\xb5\xbd\xeb\x24\x1f\xc5\x34\x04\xa7\xbc\xaf\x56\xc5\xf5\x0a\xbb\x95\xae\x0b\x49\x3f\x79\xc7\xb5\xf1\x75\xb3\xe0\x05\xd7\xae\xdc\x03\xf0\x5d\x37\x56\x90\xe3\xd5\x7f\xd3\x3c\x57\x6f\x90\x4a\x39\x9e\x1c\xfe\xad\x43\xce\x4d\x2a\x82\x2d\xf1\xc4\x2c\x2a\x97\xd3\xf8\xd3\xc5\x0d\xc1\x3a\x76\xbf\xfb\x0d\xd6\xe9\xff\xf7\x5f\xfd\xe6\x55\xe7\xed\x7e\x3e\xe7\xf1\x1d\xf5\x18\x7b\xb7\x31\xbd\x08\xbf\xc1\x86\x7f\x20\xa4\x6b\xb4\xbc\xc9\x2d\xba\xe3\x59\xcc\xea\xae\x3a\x1e\x2c\xbb\xcb\x01\xdf\xef\xc6\xc1\x1c\xfc\xec\x9e\xd5\xcf\x8e\x84\x88\x12\x44\x12\x3d\x8f\x4b\xda\x15\x42\x0c\x97\xd1\x0e\x62\x9c\x9b\x97\x87\x71\xb6\xc2\x66\xfb\x29\x6a\x9e\x9e\xd4\x18\xef\xab\x14\x46\x17\xf6\xcb\x0f\xb7\xff\xfd\xee\xfc\xab\xab\x77\x30\x53\x67\xbf\xb7\x47\x83\x8b\x9d\xfd\xa7\xba\x1f\xb5\x2e\xc2\xeb\x76\x80\xf4\x33\xcb\x88\x96\x41\x46\x90\x0f\x6f\x6f\xfb\xda\x62\x1e\xca\xa0\x8b\x49\xa7\xb5\x3f\xad\xb6\x0d\x8a\xcf\x31\xb5\xbf\xf8\x91\x9d\x95\x72\x49\x9e\xad\x86\xfc\x65\x77\x0a\x67\xf8\x60\x11\x69\xeb\x0e\x90\x17\x60\x77\xb0\xeb\x45\x18\xec\xdd\xe2\xf0\x48\xb0\xea\xca\x07\xa8\xfe\x81\x45\xc7\xd8\xcb\xb3\x00\xf6\x92\x22\x6e\x53\x16\x67\x5b\x6c\xcd\x74\x48\x92\xf9\x42\x4f\x4a\xb5\xaa\x0c\x44\x1f\xec\xb5\x72\x80\x46\x55\xd9\x86\x2d\xa6\x11\x4b\xb1\xae\xa6\x8b\xf7\x50\xa0\x65\x92\x3a\x7c\x9f\xf9\x0d\xe2\x2b\x7c\x83\xa9\x88\x9f\x1c\x01\xc2\x67\xf7\xe8\x48\x1b\xc6\xeb\x7b\x90\x43\xc7\x76\x94\x5c\xaf\x1d\x22\x54\x7b\x12\xed\x7c\x8e\xd2\x70\xba\x67\xde\x3e\xf2\xb4\xd2\xce\x0f\x3b\x0a\x3a\xfb\x16\x72\xaa\x99\x34\x52\xec\xec\x25\xbf\xaa\x7b\xf3\x42\xdf\x40\x8b\x8b\x58\x6d\x30\x29\xc5\x0d\x1e\x94\xc1\x18\x01\x35\x74\x1c\xb9\x90\xc2\x9b\x25\x9a\x46\x89\x27\x67\x41\xf2\xeb\xcb\x3d\x5d\xbe\x2f\x37\xc4\xb3\xaf\x32\x78\xaf\xce\x20\x79\xef\x98\x14\xdb\xc5\x43\xec\xfa\xd2\xb1\x66\x3e\xe0\x44\xbb\x03\x49\xd6\x9f\xc8\xbd\x91\x4e\xa9\xcc\xbd\x54\xfd\x43\xbd\x9b\x1d\x5b\xbe\x0a\xee\xb7\xa5\x50\xac\x97\x78\x7b\x70\x8e\xcf\x7c\x83\x6e\xe1\x06\xb5\x2a\x49\xac\xbb\x49\x8f\x71\x91\x9e\xf7\x02\x3d\x94\x50\x3d\x6e\x94\xef\x5e\x99\x74\x7f\xdc\x7a\x2e\xd5\x77\x73\xca\x04\xbb\x49\x11\x5b\x50\x50\xb9\x24\x37\x6e\x6f\xd8\x41\x49\xac\x14\xde\x07\x31\xf8\x3e\xa8\xc0\xc5\x3c\xd0\x45\x61\xa1\x2a\x45\x9a\x41\xda\x85\xf1\x0e\x08\x66\x59\x2e\x69\xe5\x0a\xaa\xe5\xf2\x5e\xdc\x53\x95\x93\xf3\x9b\xeb\xfd\x60\x83\x1e\x7e\xd6\x78\x92\xba\x65\xf4\x6a\x7a\x5a\xc7\x9e\xae\xa0\x1e\x83\x12\xd8\x64\xcc\x8d\x8e\xa5\x97\x99\x49\xe5\x4a\x8b\x05\x83\x2d\xcb\xde\x65\x7b\x6f\xdd\x48\x09\xc1\x14\x44\x66\x86\x16\xbe\x5a\x8b\x2b\xc7\xf7\xea\xd5\x2b\x54\x85\xbd\xfa\xed\x6f\x7f\x8b\xe5\x25\x73\x96\xf1\x72\xb9\x21\xb4\xfa\x5f\xaf\x5f\x8f\xc8\x7f\x9d\xbf\x7f\xe7\xca\xff\x68\xcc\x4a\x82\x23\x03\xdc\xd3\xce\x7a\x40\xfe\xcf\xed\xb7\x1f\x62\x69\x90\xe6\xaf\xb0\xad\x61\x79\x23\x72\x99\xf8\x3f\xa5\x8a\x2e\x6a\x66\xae\xaa\xa3\x21\x74\x32\xc1\x83\xe1\xeb\x93\xb8\x0b\xe7\xa3\xc7\xf9\x74\xe6\xcb\x81\xd9\x23\x51\x80\x63\x96\x15\xc9\x51\x35\xe8\x33\x1b\xa0\x9f\x19\x8c\x15\xd0\x24\x4c\x65\x40\x0a\x7e\xc7\xc8\x44\x43\x51\xb0\x98\xfe\x4f\x31\x6d\x99\x52\x57\x04\x1b\x07\x8b\x3b\xa3\x59\xe7\x5c\x0f\x8f\x61\x01\xea\x5c\x86\xa8\xa9\xba\x77\x77\xc8\xa7\x6f\x75\xb9\x8b\xbd\x2f\x29\x5e\x41\x0b\xad\xe7\xb1\xc8\x34\xe6\x7a\x13\x66\x83\x5b\xe7\xb2\x04\x44\x3c\x41\x0b\x09\xe5\x4c\xc3\x4e\x47\x2a\xe6\x5d\x0e\x16\x15\xdb\xbe\x94\xde\xc9\x17\xfb\x26\xe0\x45\x44\xf5\x9e\x76\xae\xae\xd7\xf4\x17\xf1\xbd\x1b\x79\x15\xe8\x58\xd6\xc6\xdb\xb0\xdd\xef\x10\x80\x6d\xa4\x07\x51\xc7\x8f\xed\x90\x79\x72\x97\x0c\xc4\xbd\x93\x98\x36\xed\xcd\x40\x13\x9a\xac\xc4\x80\x30\x9a\xcd\xc8\x1d\x5b\x0c\x11\x6f\x55\x14\xa2\x79\xb0\x08\x91\x85\x45\xa3\xc2\x54\x52\x6b\xed\x22\x80\xcc\x3b\x06\x24\xd4\xc7\x47\x03\x79\x26\x54\x3b\x7e\xc9\xa5\x11\x15\x89\xa6\xc0\xe7\xaa\x76\x05\xd7\xfd\x6b\x57\x53\xe0\x7a\x29\x48\xc5\xde\x37\x96\xdb\x6e\x7a\xd3\x97\xa3\x37\x84\xc5\x83\x8e\xba\xd5\x62\xa9\xb7\xab\xad\xee\x98\x3f\xf8\x20\xf5\xd9\x99\x13\x8f\x0a\xa8\x66\xec\x0a\x2b\xba\xb6\x1e\x4a\x01\x10\x8d\x20\x1a\xcd\x4c\xed\x40\x83\x75\x49\x6b\x51\x30\xad\x09\x87\x15\x96\x54\xdd\x31\x9f\x30\x86\x16\x23\x72\x63\x27\x19\xf2\x57\x61\x5a\xe4\xb9\x2b\x1b\x4b\x17\x8d\xe8\x20\xfb\x91\xe3\xd1\xe8\x18\x11\xfc\x8a\x58\xa1\x1e\xe7\x63\xb7\x9c\xba\x3b\xe4\xd2\x6d\x1c\xc4\xf7\xb4\xd2\x98\x19\xd8\xb2\x7c\x90\xf9\x5a\x42\x14\x9c\x99\x79\x02\x46\x3b\x27\x51\x5a\x5e\xce\x0e\x09\x60\x77\xcd\x5b\xbe\x4b\xd6\xf2\x4e\x76\x8b\xe6\xb3\x7b\xb6\xf2\x9d\x72\x95\xaf\xcb\x54\xee\x76\xca\xdd\xb6\xfe\x39\x9c\x1f\x90\x62\xbb\xec\x95\xe6\xd5\x3f\x4d\x25\x25\xf0\x1d\x8d\x2c\x3d\x9d\x78\x44\x97\xf4\xa9\x60\x5f\x14\x53\x78\x3d\x59\x55\x04\xd6\x07\x0b\x26\xfc\xb2\xc7\xa1\x58\x6c\xeb\xb9\xb9\xc1\x7e\xb5\x5c\x48\x6f\xf6\xb0\xfd\xf4\x61\x17\xdb\x4f\x37\x63\x60\xfb\x69\x0a\x6c\x49\x58\x52\x40\xfa\xa9\x17\x3f\x80\xd4\x48\xc8\xd9\x1d\xaf\xe0\x88\xbc\x77\x44\x01\x0f\x23\x1d\x6b\x59\xd4\x26\x44\x32\xad\xa0\x18\x30\xa8\xcf\xf0\x8d\x21\xa5\xbe\x59\x42\x3f\x80\x72\x22\x5a\xee\x4b\x4a\xf0\xd9\xe9\x8a\xf7\x2d\x46\xf7\x93\x75\x26\x79\x00\x0c\x3d\x2b\xb1\x33\x1c\xfd\x00\x21\xef\x84\xf7\xa5\x6e\xf0\x38\xe0\x49\x62\x34\x32\x50\x9e\x5d\x71\x75\xa0\x7a\x2f\xb1\x9b\xd6\xc6\xcd\xd5\x29\x26\xce\x6f\xae\x77\x92\x00\x92\xfe\x6b\x64\x80\xb4\xc5\x4f\x58\x0a\xb8\x46\x29\x20\x2d\xbb\x73\x19\x57\xee\x54\xca\x16\xed\xbc\x78\x36\x72\x69\xda\x6f\x2d\xb2\x4c\x9d\x4e\x9b\x39\xf4\x50\xd9\x13\xd1\x6a\x92\x77\xcf\x5b\x1d\xe1\x12\xbf\x74\x96\xf3\x09\xd9\x47\x80\x47\x27\xef\xc6\xf6\xb3\x5c\xec\x0e\x16\x4b\x6e\xa1\xb4\x0d\xca\x83\x89\x60\x59\xc9\xfc\x0d\x56\x85\x80\xda\x71\x58\x14\x66\x80\xb5\x71\xf4\x00\x05\x46\xcb\x45\x24\xb6\x62\x95\xa8\xdc\x77\xe6\x1b\x76\xaa\x72\xf4\x90\x3a\x47\x76\x03\x61\xe5\x37\x7d\x77\x91\x3c\xb0\x6c\x11\x49\x48\xd3\x6e\x85\x50\x1a\x7b\xea\x46\xf2\x1b\xa8\xb3\x19\x2b\x29\xe6\xf0\xf3\xcb\xb3\x58\xe6\x5e\x71\x63\x18\xe6\x52\x62\x0a\x6a\xbe\x0e\x1a\x36\x83\xa3\xf9\xeb\xa3\x5d\xca\xc1\x3c\xb0\x62\x0f\x89\xbb\xb0\x07\x60\xdc\x34\x58\x36\x7b\xae\x41\x96\x28\x20\xf1\xa6\x68\x29\x24\x2c\x81\x99\x23\xf4\x9e\x7c\xe1\xfb\x90\xa3\x76\x95\x9f\x06\x81\x61\x38\xc8\x4f\x07\xf9\x69\x2f\xf2\x53\x42\x58\x3c\xc2\x59\x21\x4b\xa5\x0e\xc3\x5e\xa0\x8a\x81\x4c\x49\x02\x1e\x7b\x34\xbd\x28\x15\x2b\xa5\xa3\xc6\xcd\xca\x43\xc7\x5e\xc0\x72\xe7\xb8\x36\x93\xe1\xef\x08\x13\x99\xcc\x71\xf3\xed\xf8\x4a\x1b\x60\x6d\xa2\x4c\x92\xce\xa5\xf4\xdf\x4a\xb5\x76\x30\xf6\xae\x5b\xb7\x13\x1e\xf0\xa6\xc0\xb7\x7b\x22\xf0\x91\xac\x87\x60\x62\xb7\xfc\x90\x6b\xc0\xd1\xf7\x68\x84\xc4\xaa\xd3\xa1\x08\x3e\x94\x8e\x3d\xc1\x97\xa3\xac\xaa\x07\xae\xc1\xa8\x64\xa5\x54\x8b\x41\x68\x64\x7f\x6c\xf4\x72\x2d\x4e\x81\x27\xc8\x6a\x65\x25\xc0\x62\xf1\xa5\x72\x07\x1e\x40\x4f\xcc\x1c\x84\x7d\xea\x57\x34\x28\x7d\x9a\x47\x22\x26\x15\x03\xf9\x3e\x16\x51\x9a\x84\x94\x87\x7a\x10\xc5\x4e\xfb\x96\x89\x39\x99\x53\xd5\xc1\x13\x6f\xd5\xf3\x40\x7e\x20\xe7\x73\xae\x77\xab\x77\xd8\x5a\xfa\xad\x23\x1a\xa8\xd7\x91\xb5\xa9\x6a\xe3\x30\xa5\xbf\x15\x3e\x64\x3e\xdc\x86\x16\x53\xf4\xfa\x68\xa7\x69\x7c\x31\xf5\x85\xf1\xd9\xb1\xca\x30\x3e\x0f\xad\x35\xdc\x1c\x65\xe7\x63\xb3\xd7\xc2\xe2\xfe\xf1\xc7\x62\x1f\xf7\x30\x92\xc8\x98\xe7\xc1\x33\xa7\x4f\x74\xd1\xd0\xdd\x64\x27\xbd\x8d\xcb\x50\xbf\x5a\x65\xe3\x7e\xfc\x09\x6b\x6b\xf6\x6b\xb3\x75\xf1\x85\xff\xe2\x06\xdb\x5b\x57\xcf\xe0\x60\xad\xed\x74\x04\x0f\xd6\xda\x83\xb5\xf6\x60\xad\x3d\x68\x1b\x0e\xda\x86\x83\xb5\x96\x1c\xac\xb5\x7b\x81\xe1\xfe\xac\xb5\xc8\xea\xad\xb2\xd9\x3a\x66\x2f\x1a\x6c\x9f\xd4\x5e\xeb\x0a\xf7\x9c\x67\x99\xac\x85\xf9\x24\xef\x58\x67\xa3\x43\x8b\xff\x5f\x1a\x07\x12\x20\xac\x91\x07\x96\x1b\x3f\x99\x70\xd0\x9f\x2b\xe9\xc5\x5b\xec\xc2\x55\xd0\x3a\xe7\x96\xf3\xdf\xf9\x98\xf9\x01\xd2\xe4\x44\x22\x67\x79\xfc\xc1\x5d\x65\x63\x61\x3d\x22\xe7\x44\xb1\x8c\x57\xdc\x95\x91\xa7\xf8\x1e\x0f\x5e\xa8\x8d\xc0\x8d\x66\xc5\xc4\xe5\xa8\x17\x69\xad\x9f\xc8\xbf\x3b\x3c\xb8\xf2\x33\x48\xa1\xa4\xcf\x64\xee\x6b\x21\x29\xf6\x37\x4f\xda\xdc\x6c\x3e\xa5\x23\xa4\xea\x15\x58\x4a\xa3\xc4\x10\x7c\xac\xe2\x2e\xc0\xfa\xb1\xaf\x3f\xfb\x5c\x71\x05\x87\xf7\x96\x65\x52\x74\xa9\xa9\xba\x66\x83\x96\x46\x8a\xf4\x09\x74\xa3\x2c\x27\x79\xad\x42\xcd\xd4\x39\x2d\x78\xce\xcd\x22\x58\xed\x5c\x79\x2d\x8a\x37\x26\x6c\xa3\x8e\x60\x24\xb4\xaa\x94\xa4\xd9\x8c\xe9\xe4\x6b\xc8\xa0\xb8\x20\xb2\xe0\xfb\x8e\x25\xe0\x80\x47\x81\x3e\x96\x40\x16\x0b\xa2\xa4\xf1\x86\xf7\x35\x1f\xfc\x94\x0c\x06\xdd\x91\xca\x19\xb5\x00\xeb\xbc\x4c\x87\xc0\x59\xf1\x49\xfa\x87\x26\xb2\xc8\x7d\x0a\x93\xdf\xbd\xb2\x4c\x61\xe6\xce\xa0\x45\x7e\x90\xe0\xc2\x48\x52\x58\x82\x6d\x11\xe2\xfa\xce\xbf\xfa\x35\x99\xc9\x5a\xe9\x51\x9a\x74\xe0\x35\xbc\x43\xf9\xce\x33\x95\x86\x14\x8c\x6a\x43\x5e\xbf\x22\x25\x17\xb5\xa5\x53\xbd\x8f\x4d\x7f\x3e\x28\xe1\x80\x7e\xf3\xeb\xce\xfd\xfa\xf2\x3e\x6b\xb9\x9e\x0a\x73\x23\x3b\xd6\xc7\xdd\x24\x0c\x8c\xc3\xcc\xe2\x2d\x46\xc8\x21\xdd\x14\xda\xc2\xc8\x47\xb8\x5f\x3f\xd6\x72\xbc\x30\x7d\x82\x28\x5d\x8f\x66\xf4\xe4\xff\x75\x2f\xbb\x24\x4f\x89\xb9\x53\x36\x7e\xf4\x51\x2a\x5c\x4c\xb9\x36\x5b\xea\x5b\xc4\xf8\xca\x8d\xcd\xba\x93\x95\xa9\x95\x0e\x7a\xc6\xca\x40\x1f\xcf\x11\x7b\xdd\x52\x96\x31\x2c\x66\x79\x19\x2b\x25\x09\x89\x6d\xb7\x0e\xff\xcc\x09\xc7\xfc\x01\xd9\x43\xd6\xf4\x8e\x4b\xed\xc6\x74\xf9\x23\xd1\x7b\xad\xd8\xad\x79\x0b\x34\x17\x53\x4c\x72\x5e\xd6\x85\xe1\x55\x11\xd7\xfd\xd1\x77\x70\x88\x3c\xd5\xb9\xd1\x44\x4d\x44\x31\xb0\x18\xb3\x4d\x81\x7e\xf2\x24\x8c\xc5\x84\xc1\x5c\xdd\xca\xd2\x83\x8a\x2a\x1a\x80\x07\x95\x74\xf5\xa9\x53\xdf\x51\xb0\x28\xba\x74\x98\xb6\x17\x2d\xe2\x8c\x13\x2b\xd2\x3e\x0f\x8d\x61\x82\x8a\x0e\xaa\xea\x66\x7a\x2e\xe8\x44\xe4\x7d\x70\x26\xc3\x32\x28\xad\xd3\xe2\x98\x9a\xaf\x68\x76\xc7\x44\x8e\x45\xa3\x60\xd9\xf9\x42\xd0\xd2\x65\xdb\x4a\xea\x71\xb7\xfa\xeb\x81\x53\x4c\x60\xf8\x9e\x0f\x33\x46\xaa\xbb\x4f\x18\xd4\xba\x77\x2a\x1b\xdb\x65\xdb\x3d\xd7\xa8\xb2\x51\x7c\x9e\x31\x4f\xff\x6d\xbf\x7d\x4e\x7d\xde\x21\x96\x7e\x69\xf2\x7e\x7b\x92\xf3\x0b\xe8\x3e\x68\xce\x21\xa9\x16\x2d\xec\xd5\x5e\x84\x98\xd1\xd6\xe6\x8e\x17\xfb\xad\x7a\xa3\xc6\x7d\x22\x7f\x8f\xd5\x38\x6f\x5e\xe2\x8f\x34\x97\x9a\x7c\x55\xc8\xec\x8e\x5c\x32\x60\xba\x1e\xb3\x3c\x8b\x1a\xe7\xcf\x99\xc2\xbb\xa4\xd3\x6d\x76\xb6\x21\x29\xa5\xe0\x46\xaa\xcd\xf8\xe2\xe9\xca\x4e\x1e\xd2\x3d\xaf\xcd\x50\x65\x4f\xf3\x4b\x4e\xf6\x6c\x8f\x5b\xdf\x8d\x87\x4e\x41\x3c\x83\xdb\x89\xaf\x5c\x15\xb0\x1d\xef\xda\xcf\x67\xf2\x7e\x68\xe4\xb0\xd6\x6c\xc8\x3b\x18\x74\x7b\x2c\xf3\x8e\x2d\xc0\x8a\xdd\x73\xa1\xae\x5b\x43\x66\x30\x12\x34\x50\xf0\xde\x52\xee\x8f\x5f\x5d\x7e\xa7\x99\x1a\xa5\x3c\xe0\x19\x33\xd9\x59\xc6\xaa\xd9\x99\x1b\xe1\x45\x02\xc5\x23\x91\xbe\x50\xf1\xfd\x90\xcc\x64\xb2\x28\x5c\x60\xb6\x9c\x90\x0b\x56\xcd\xc2\xc0\x4f\xbd\xea\xe7\xcb\x08\x5c\x49\xd9\x37\x11\xea\xb1\xed\xd3\xbc\x44\xf0\x06\xef\x50\x72\x98\xd4\xb8\x5f\x11\x8a\xa7\x3a\x3e\x2f\xba\xd4\xe6\x23\x02\xe7\x71\xd3\x29\x1f\x37\xf2\x29\xa7\xfe\x9e\xcd\x64\xc9\xde\x63\xa4\x81\x82\xae\x27\xc8\x74\xe7\x2c\x27\x72\xce\x94\xe2\x39\xd3\x24\xe0\xa0\x54\x4a\xe5\xc5\x53\xc3\xed\x90\xb7\xf9\xd9\xf3\x36\xef\x20\x0e\x1d\x83\x3c\xd4\x40\x53\xf0\x66\x09\x4d\xd1\xbc\xe4\xe2\xc5\x21\x2a\x9d\xd1\x82\x5d\x7f\xdb\x43\xfe\x70\x3d\x9a\x22\xc8\xad\x7b\x99\xe4\x4f\xdb\x92\x95\xec\x9b\x70\x6e\x88\x90\xf9\x36\x95\xea\x23\x08\x12\x53\x6a\xd8\xfd\x56\x72\x38\x8c\x88\x6a\x7b\x4b\x60\x4e\x9f\x53\xe4\x78\x11\x39\x02\x93\x33\x8f\x49\xcf\xf6\x49\x54\xdd\xae\xf5\x55\x4e\x62\xaf\x34\xfd\x6e\x3b\xe9\xae\x3f\xc1\xe7\x37\xd7\xe4\x6b\x6c\xbe\xdf\xec\x85\x4a\x1a\x64\x03\x2f\x65\x49\x79\xdf\x22\x1b\xed\xee\xed\xec\xab\xe9\x12\x6e\x42\x5b\xe2\x1a\x27\x05\x5c\x26\x7c\x5a\x5b\x99\xce\xc9\x61\x2f\x2a\xc1\xdc\x12\xeb\xf2\x72\x13\xcc\x3d\xbc\x1a\x44\xa2\x72\xf2\x7e\x91\x91\x63\xf1\x5b\x09\xa4\x24\xd8\x40\x89\x66\x42\x73\x30\xc8\x24\x56\x71\x57\xe9\x0f\x4b\x4b\xa2\x13\x24\xb2\x38\x03\xf2\x4e\x4e\xb9\xf0\xb7\x57\x3a\x7b\xdd\x84\xf2\xa2\x2b\x30\x0e\x3c\xc9\xb3\xf3\x24\x5a\x17\x57\x82\x8e\x8b\x2e\xee\x06\xcd\xa3\x16\x3a\x92\xb7\x05\x9d\x12\x06\x7f\x9c\xe5\x5c\xdb\xff\x93\xdb\xdb\x77\xa0\x84\xaf\x85\xe7\x98\x41\x41\xed\x70\x5f\x08\x52\xc0\x8b\xb8\xdf\xbb\x83\xa8\x67\x87\xec\x7f\x49\x4f\xc2\x45\x6e\x27\x9e\x94\x82\x43\x27\x29\x68\x81\xf9\x10\x83\xcf\x2f\xba\x0d\x8c\x19\xf9\x34\xe3\xd9\xdd\x4d\xa2\x77\x97\xca\xbe\x13\xc9\xab\x06\x01\x6b\xff\xb6\x4f\x6c\xe9\xa6\x7a\xd3\x5f\x34\x4e\x7a\x7a\x3a\xe0\x11\xc6\xad\x5b\x3f\xfc\x46\xb5\x96\x19\x8f\x36\x17\xd0\xd1\x44\xe2\x90\x03\x71\xd8\xef\x9a\x80\x3d\xe8\xbb\x1c\xe4\x3f\x56\x50\x34\xbf\x9b\xbe\x3a\xae\x4e\x29\x18\x17\x7e\xd5\x7b\x5d\x02\x9e\x99\x1d\x52\xa3\xc7\x8e\xcb\xa9\xd1\x3d\x33\xdc\x32\x2c\x78\x37\x75\xb7\x79\x9e\x11\xf3\xb5\x39\x97\xb6\x2f\xa4\x48\x77\xa9\x09\xf7\xb6\xf0\x2e\x61\x1b\xab\xc4\xf0\x96\x35\x11\xdf\x39\x53\x03\xdc\xb9\x4a\x56\x75\x81\xfe\x1c\x0f\xcf\xef\xee\x75\xc6\xf8\x9d\x3d\x99\x1e\x9e\x22\x6b\xe9\x71\xea\xd8\xdb\xdf\xd3\xf9\xa7\x91\xbb\x34\x61\xee\x5e\xfd\xe6\xd7\xbf\xfe\xd2\xb3\x99\x76\x15\xc1\x1f\x23\x9d\x69\x47\x15\xed\x8a\xf8\xa2\xeb\x43\x7c\xd1\xbf\x6e\x7c\xd1\xe3\x67\xa1\xdd\x73\x04\x51\x4f\xdf\xdc\x7e\x7e\xb9\xdd\x63\x84\x3a\x7b\xef\xf6\xf5\xdc\xed\x11\x05\xb4\xdf\xd8\x9f\xde\xbe\xac\x7d\xe2\x7c\x0e\xd1\x3d\x3f\xd5\xe8\x9e\x5d\x7c\x59\xfb\x47\xf2\xf4\xf1\x61\xfd\x29\x46\xed\xf4\xb8\x9c\xdd\xa3\x4b\x1e\x1c\x53\xd2\x3f\x09\x60\x7f\x7d\xda\x2e\x05\xa9\x62\xcf\x95\x12\xa4\x0f\x2a\xf7\xb9\xc7\x8e\x8f\x75\x92\x5a\xcc\x48\x7b\x03\x9f\x44\x20\x21\x3d\xa4\x31\x1c\x5e\xf6\xa9\x0d\xe9\xfa\x7c\x7b\xdb\x32\xcc\x84\xd7\xcf\x63\x8f\xf9\x57\x30\x78\x1c\x6a\xba\x7c\x21\x2a\x77\xdd\xc8\xd6\xe2\xb5\x15\x80\x02\x80\x90\xcb\x71\x9a\x25\x32\x5e\x9d\xf3\x9b\x6b\x2b\x83\x43\x18\x11\x2d\xf4\x88\xac\xa0\xf3\x5e\x5d\xea\xf8\x02\x4f\xdf\xa9\x31\xac\xac\x4c\xf7\x5d\x3f\x68\xdc\x9f\x5d\xe3\xbe\x47\x0d\xe0\xac\x2e\xa9\x18\xda\x1b\x05\x3a\xf7\x86\xb5\xae\x85\x99\x47\xc4\xdd\x1d\x24\x4f\xa0\x01\x81\xe0\x82\x66\x61\x63\x9a\x94\xb9\x7c\x1c\xb5\x27\x8c\xbd\xf3\xca\x91\xae\xb6\x6e\x5a\x26\x97\x1c\x5e\xdd\x72\x02\x14\xfc\xa5\x4a\x88\x73\x43\x0c\x37\x33\x86\x34\xfc\x06\x02\x72\x62\xab\x26\x27\x8d\xac\x34\x2d\x0a\x79\x8f\xdf\x4e\xe9\x9a\x85\xbe\x9d\x8b\x8b\x34\x1b\x33\x52\x72\x2b\xa3\x3b\x05\x6b\x3a\x1d\x34\x99\x5a\x8e\x9c\x29\x64\x78\x95\x33\xb6\xdd\x32\xe3\x36\x0a\x36\xda\xca\xb7\x02\x1d\xc2\xed\xbf\xbd\x57\x11\x7c\xdb\xe3\x84\x31\x9b\xd1\x39\x97\xb5\xc2\xde\x46\x92\x23\xf7\x13\xd0\x86\x85\xac\x83\xbe\x0b\x8b\x61\x86\xd5\xe9\x15\x70\xfa\x10\x7f\x04\x51\x20\x97\x5e\x35\x31\x64\x9f\xb9\x36\xcb\x6b\xf1\x20\xf2\x69\xf0\xf6\x75\x6e\xe6\xba\xb2\x64\xa1\x77\x55\xbb\x46\xbf\x26\xbf\x32\xbf\x85\x9f\xbe\xa0\x9a\x76\x5b\xb3\xbb\x3e\x19\x0b\xf4\x2f\xc8\xfe\x04\x4b\x58\xc1\xb3\x45\xef\x72\x6f\xad\xde\x1e\x69\xeb\x60\x43\xb3\xef\xc9\x57\x54\xb3\x9c\xbc\xa7\x82\x4e\x51\xde\x3b\xb9\xbd\xf9\xea\xfd\xa9\xdd\x57\x90\x27\xaf\x2f\x57\x1a\xda\x6e\xd3\xc1\x3f\xec\x33\x5e\x64\x69\xe1\x3b\x90\xaa\xa5\xfe\x3b\x2e\x7e\xaf\x81\x30\x24\xd0\xa1\x6e\xc9\x7a\x57\x90\xa0\x9b\x76\x08\x6b\xbb\xe6\x67\x0b\xc1\xcc\xcb\xfc\x81\x55\x3e\xb9\xd0\x86\x16\xc5\x4d\x41\xc5\x79\x55\x29\x39\x5f\x2d\x8d\x37\xe6\xea\x1b\xfa\x99\xa2\x9b\x87\x7f\x59\x21\xe8\xc1\x84\x2d\xc8\x75\x1c\x7f\x44\xae\x4d\x90\xc2\xa5\x00\x92\x7a\x74\x5e\x1b\x59\x52\xc3\xb3\x23\x2b\xac\x1f\xbd\xa7\xa2\xa6\xc5\x4a\xa7\xab\x8d\xcb\x58\xc7\x22\x6e\xec\xb4\x3e\x75\x5d\x87\x6e\x1b\x79\x8d\xcd\xfd\x0d\x55\x16\x3b\x5d\xdc\x7e\xdf\xab\xaf\x36\xd4\xd4\x4b\x58\x78\x03\x65\x58\x4f\x0b\x86\xa4\xa0\xda\x7c\x57\xe5\xf6\xd2\xb7\x7e\xdd\x84\xf0\x33\x6a\x68\x21\xa7\x7f\x64\xb4\x58\x7d\xc2\x1b\xe7\xe4\x22\x6d\xed\x15\x50\xce\xe0\x5f\x8f\x43\xc3\x63\x4d\x2c\x83\xed\x63\xe0\x15\x2b\xd8\x9c\x0a\xe3\xbb\x63\x71\x75\x7d\xec\xd6\x0f\xa7\x88\x47\xe5\x6b\xce\x0c\x53\x25\x17\xcd\x31\x6f\xa1\xed\x85\x14\x39\x47\xb5\x23\x28\xd4\xb0\x47\x73\xdc\xf5\x47\x6d\x9d\xa5\x61\x83\x6d\xa1\x99\x5d\x33\x99\x4f\x13\x14\xd8\x6c\xec\xf8\xcb\x19\xbe\x04\x4b\x7b\x63\x6e\x4b\x90\x22\x77\xc2\x32\x86\x90\x47\x64\x35\xda\xda\xca\x27\x6c\xe3\x0f\x86\x7e\x8f\x71\x0a\xeb\x1d\x47\x87\x6e\xde\xeb\x6c\x10\x9b\x8e\x18\x3e\xdb\x39\x8b\xf6\x54\xd6\xe3\xd4\x55\xe7\x2e\x74\xc3\x48\x96\x56\x41\xfe\x46\xa3\xf5\x34\xa0\x13\xe3\xd5\x8d\x47\xea\x9a\xd5\xbe\x89\x6b\x63\x0e\xf6\x25\x51\xb6\x03\xc7\xb8\x95\x68\x75\x4c\x2e\xdf\x14\xac\xaf\x9d\xff\x9f\x72\xa2\x08\x25\x15\x67\x98\xfc\x84\x0a\x07\x2c\xa0\x2c\x8c\xe6\xee\xa5\xa5\x60\x56\x24\x84\xdf\x06\xce\x18\x8e\xca\x65\xe7\x6b\xe1\x15\xd4\x14\x93\x7f\x80\xe1\xe2\xec\x6b\xe9\x94\xbc\x2e\x48\xd7\xe2\x00\xa0\xe4\x03\xa2\xeb\x6c\x46\xa8\xb6\x53\xb3\x07\xda\xde\x78\x36\x2a\xa9\xe0\x13\xa6\xcd\x28\x64\x09\xd6\x7f\xfa\xd5\x5f\x46\xe4\xad\x54\xc4\x39\xaa\x0f\x7c\x56\x0d\x37\xcf\x78\x2e\xb8\xc6\xc5\x84\xbe\x51\x6a\xad\x64\xee\x26\x7d\x0f\x93\x35\xf4\xce\xd2\x30\x9c\x6c\xcd\xc0\x74\xf1\x86\x1c\x59\x36\x31\xf9\xf4\x3f\x2c\x59\xfa\xe7\x11\x39\xb9\x07\xa2\x7d\x64\xff\x3c\xc2\x0f\x06\xb7\xc9\x54\xa8\x8e\x1f\xc6\x60\x49\xc5\xa7\x53\xa6\x50\x7c\x24\x10\x54\x78\xea\xb2\x82\x08\x99\x34\xf6\x46\xe9\x28\x6e\xb6\x27\xf2\xa7\x5f\xfd\xe5\x88\x9c\x34\xd7\x45\xb8\xc8\xd9\x67\xf2\x2b\xd4\x2e\x73\x6d\xd7\x78\xea\x8c\x39\x7a\x21\x0c\xfd\x6c\xc7\xcc\x66\x52\x33\x81\xa2\xbc\x91\x64\x46\xe7\x8c\x68\x69\x25\x60\x56\x14\x43\xa7\x4b\x27\xf7\x14\x32\xb5\x78\x50\x42\x60\x3d\xa9\xa8\x32\x8d\x23\x31\x72\x1a\x12\xf8\x9a\xdd\xb6\xa9\xf0\x96\xe9\x09\x17\xce\x7e\xe5\x2c\x67\x76\xcf\x21\x30\x14\x37\xc9\x48\x92\xcd\xa8\x98\x86\xd8\xf4\x49\x6d\x6a\xc5\xb6\x98\x7e\x3a\xde\x81\x3b\x2e\x7a\x85\x30\x7f\xc3\x45\xdb\xa9\x60\xb5\x5e\x69\xca\x8d\x8f\x8a\x70\xbe\x8a\x66\x71\x66\x77\x41\xf1\x71\x6d\xa4\xd2\x67\x39\x9b\xb3\xe2\x4c\xf3\xe9\x90\xaa\x6c\xc6\x0d\xcb\xec\xb2\xce\x68\xc5\x87\x99\x14\x76\xc7\x21\x2b\x43\x99\xff\x1c\xca\x9b\x0e\xed\x54\xb7\x64\x9d\xee\xb8\xe8\xed\x4a\xb5\x67\x55\xa6\xed\x6d\x8d\x1d\xf4\x41\xcb\x0b\x45\xdd\xcc\x13\xac\x16\x14\x21\x67\x7b\x59\xac\x4f\x9a\xdc\x9f\xc6\x1c\xbb\x3c\xe0\x59\x7b\x0c\x7b\xed\xd0\x81\x04\x6e\x65\x03\x53\x96\x34\x47\x54\x4a\xc5\xe2\xd1\x0f\xbf\x05\x29\xa4\xcb\xcf\x16\x43\x18\x42\x16\x43\x2a\x72\xfb\x6f\x0c\xd8\xc9\x16\x7b\x81\x61\xcd\x7b\x21\x82\xef\xae\x2f\x9f\xe6\x4a\xd4\x7c\x0f\xb7\xde\xf1\x6b\x1d\x99\x28\x64\x55\xd1\x51\x43\xd5\xcc\x13\xcd\x26\x83\xca\xb5\x1f\xf5\x3f\x9c\xfd\x25\x64\x3b\xdb\xc6\x52\x6d\xb6\x9a\x24\xbc\x63\xc7\xf9\xbe\x8b\x3d\x52\x9d\x1c\x38\x5e\x51\x6d\x5c\x6a\x2d\x9f\x83\xa0\xb1\x0c\x2f\xa0\x00\x81\x59\x6f\x18\xee\x74\x86\xbc\xbf\x80\x9d\xc8\x70\x65\xce\xa5\x2c\x08\x25\xdb\x05\xa8\x28\xbf\x34\xea\xa0\xe1\xa2\x0c\xd3\x86\xd0\x39\xe5\x05\x68\xe7\xe5\x58\x33\x35\xc7\x82\x54\x2e\xd5\x20\x6d\xcb\x59\xae\xe6\x04\xb2\x51\x4f\x24\xf9\xf8\x35\x2c\xef\xca\xa6\x05\x80\x34\xd4\x9a\xfd\xda\x59\xef\x45\xee\x41\xf1\x72\xed\xcf\xf6\x0b\x3b\x8a\x31\xf6\xfc\xfd\x91\x51\x65\xc6\x8c\x9a\x4f\x7c\x13\xdd\x5d\x3a\xd2\x8d\x7e\xa1\x94\x7b\x38\xd0\xf7\x8c\x4c\xa5\xb1\x2c\x56\x0d\x67\x1f\x79\x52\x4c\xea\x13\x0e\xda\x63\x9f\xe8\xb8\xca\x4f\x8a\x42\x88\x8f\x14\x3d\x97\xd9\xec\xb8\xbc\x4e\xc7\x1d\xbb\x93\x64\xb0\x35\x26\xd2\x90\x82\xb9\xbd\x43\x6b\x06\x60\xa0\xa7\x59\x72\xc9\xb4\xde\x98\x60\xa3\xe9\x5d\x88\xad\xf1\x2a\xb7\x4c\x6b\xa5\xff\x0d\xc3\x42\x2c\x03\x9d\x33\x43\x79\xe1\xaf\x32\x82\x22\x40\x69\x1b\x76\xdd\xb8\x40\xc5\xa8\xde\xc4\x20\x34\x66\xfd\x11\x1a\xe3\xa4\xa5\x60\xc3\x7b\xa9\x72\x72\x41\x4b\x56\x5c\x50\xcd\xdc\x58\x69\x88\x1e\xee\xd1\xb1\xde\xeb\x94\x57\xeb\xbe\xd6\x4c\x19\x95\x3f\x51\x25\x0c\x7f\x45\x11\x0b\x27\x38\xf0\x2a\xc8\x4f\xaa\x66\x03\xf2\xd6\x52\xaf\x01\xf9\x4e\xdc\x09\x79\xff\xb0\xb9\x9a\x8d\x56\x90\xc6\x4c\x53\xf7\x0f\x9f\x56\xa7\xa1\xf0\x09\xd3\xdd\x71\x46\x0e\xe1\xaf\x51\x35\x36\x89\x4d\x68\xea\x67\x64\xff\xb9\xa4\x82\xb2\x82\xa2\x92\x53\xc5\x34\x66\xae\x59\x99\x24\xb1\xab\xca\xf9\x6b\x26\x5c\x70\xdf\xd6\xe9\x5d\xaf\xea\xe5\x67\xea\xe9\xda\x34\xfe\xe2\xf6\xdb\x7d\xac\x2a\x56\xb2\x1a\x9b\x3d\x02\x93\x89\xae\x51\x3e\xad\x9b\xe1\x6a\xa5\x53\x42\xf5\x92\xb6\xc8\x94\x6c\xd2\x8e\xfa\xd5\x5d\xdc\x7e\xbf\x1e\xd8\x6b\x69\xdf\x36\xfa\xb4\x5d\x2d\xf5\x50\x85\xd4\xd6\x3b\xb3\x55\x09\x75\x50\x3f\x1d\xd4\x4f\x5f\x92\xfa\x69\xeb\x89\xdf\xa4\x72\xfa\x32\x94\x4d\x5b\x97\xb8\x49\xc1\xf4\x22\x55\x4b\x9d\x56\xb4\x51\x9d\xf4\x62\x15\x49\x5b\x97\xd6\x51\x79\xf4\xaf\xa3\x36\xda\x0a\xb1\x0d\xaa\xa2\x17\xa8\x24\xea\xc2\x90\xb1\xbc\x0b\x9b\x78\x9d\x34\x4e\x19\xc5\x58\xce\x32\x0c\xe7\x9d\x72\x52\x76\x66\x57\x6e\xd1\x32\x70\x5b\xe7\x76\xec\x26\xd7\x9d\xf7\x72\x0c\xa3\x2b\xf6\xb8\x34\x59\x72\x79\x75\xf3\xf1\xea\xe2\xfc\xd3\xd5\x65\x9b\xbf\x5b\x05\xe9\x2d\x9c\xd8\x66\x1d\xc4\x30\xe1\xc4\xd6\x34\xb0\x08\x79\xcd\x4f\xf6\x0c\xac\xf9\xa9\xae\xf9\xaa\x5e\x0f\xe7\x0b\x1f\x44\xe5\x1e\x44\x3f\xb6\xdf\xce\xae\xd7\xf3\x3b\x74\x9c\xa2\xce\xe7\xcc\xf2\x3d\x33\x59\xe4\xda\xfb\xad\x5e\x5f\x86\x48\x2a\x2e\xb2\xa2\xce\x2d\x73\xf1\xdd\x77\xd7\x97\x7a\x44\xc8\x57\x2c\xa3\xb5\x06\x2d\x4c\x2e\xc5\xb1\x21\xdf\x7e\x78\xf7\x5f\xe0\x8f\x0d\x2d\x06\x21\xaf\x09\x64\xe5\xe5\x14\x13\x0b\x1b\x4c\xd7\x46\xbe\x62\xc8\xa8\xc0\x97\x33\x5a\x59\x2c\xa6\xb1\x72\x85\x01\x5e\x64\xc6\x8a\xca\x62\xcc\x3b\x46\x62\x06\x55\x3b\x70\xac\x30\xef\xdd\x27\xa7\xcc\x60\xd4\xd5\x26\x0f\xc9\x8d\x50\xdb\xa2\x71\x7d\x80\xae\xb5\x21\x3e\x3a\x69\xfc\x9e\x6a\xa7\xb1\x5a\x39\xdb\x2d\xfb\xbb\x5d\x3f\xb3\x5e\xc5\xb1\x46\xb9\x81\xe8\x19\xfe\x5a\x9a\xb3\x9d\x6c\xd4\x63\xa0\x13\x09\x37\x9d\xb5\xa9\xeb\xdd\x80\x56\xd7\x01\x58\xd2\x65\xb0\x36\x90\x1b\x1f\x0e\x1e\xd9\xc9\x94\xbb\xcd\x05\x8a\x88\xe4\x8d\xda\x9f\xce\x7f\xae\xf9\xae\x1e\x87\xea\xaf\x71\xbe\x4e\x23\x43\xfe\xf1\xcf\x9f\xfd\xbf\x00\x00\x00\xff\xff\xbd\x73\x0a\x76\x37\x6c\x02\x00") +var _operatorsCoreosCom_subscriptionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\xe4\xb6\x95\x28\xfe\xbf\x3f\x05\x4a\x49\x95\xa4\x6c\x77\x6b\x9c\xcd\x4d\x72\x67\x53\x49\xc9\x23\x8d\x57\xd7\x9e\xb1\xee\x68\xec\xd4\xfe\xb2\xb9\x6b\x88\x44\x77\x23\x22\x01\x9a\x00\xa5\xe9\x6c\xf6\xbb\xff\x0a\xe7\x00\x24\xd8\x2f\x02\xec\x87\x34\x0e\xf1\x87\x3d\x62\x93\x78\x1e\x9c\xf7\x83\x16\xfc\x07\x56\x2a\x2e\xc5\x6b\x42\x0b\xce\x3e\x69\x26\xcc\x5f\x6a\xf2\xf0\x7b\x35\xe1\xf2\xe2\xf1\xcb\x2f\x1e\xb8\x48\x5f\x93\x37\x95\xd2\x32\xff\xc0\x94\xac\xca\x84\x5d\xb1\x29\x17\x5c\x73\x29\xbe\xc8\x99\xa6\x29\xd5\xf4\xf5\x17\x84\x50\x21\xa4\xa6\xe6\xb1\x32\x7f\x12\x92\x48\xa1\x4b\x99\x65\xac\x1c\xcf\x98\x98\x3c\x54\xf7\xec\xbe\xe2\x59\xca\x4a\xe8\xdc\x0d\xfd\xf8\x6a\xf2\xe5\x6f\x26\xaf\xbe\x20\x44\xd0\x9c\xbd\x26\xaa\xba\x57\x49\xc9\x0b\xe8\x69\x22\x0b\x56\x52\x2d\x4b\x35\x49\x64\xc9\xa4\xf9\x5f\xfe\x85\x2a\x58\x62\xc6\x98\x95\xb2\x2a\x5e\x93\xb5\xef\x60\x77\x6e\x2a\x54\xb3\x99\x2c\xb9\xfb\x9b\x90\x31\x91\x59\x0e\xff\xc6\x25\xde\x79\xa3\xc2\xe3\x8c\x2b\xfd\xcd\xca\x4f\xdf\x72\xa5\xe1\xe7\x22\xab\x4a\x9a\x2d\xcd\x16\x7e\x51\x73\x59\xea\xf7\xcd\xd8\x66\x2c\x55\xdd\xfb\xff\xb6\x2f\x72\x31\xab\x32\x5a\xb6\x3b\xf9\x82\x10\x95\xc8\x82\xbd\x26\xd0\x47\x41\x13\x96\x7e\x41\x88\xdd\x2e\xdb\xe7\x98\xd0\x34\x85\x23\xa0\xd9\x6d\xc9\x85\x66\xe5\x1b\x99\x55\xb9\xa8\xc7\x34\xef\xa4\xac\xee\xf5\x35\xf9\x38\x67\xa4\xa0\xc9\x03\x9d\x31\x37\xde\x3d\x4b\x89\x96\xf5\x07\x84\xfc\x4d\x49\x71\x4b\xf5\xfc\x35\x99\x98\x2d\x9e\x98\x1d\xf4\x7e\xc6\xf3\xb9\xc5\x4e\xbc\xe7\x7a\x61\xa6\xab\x74\xc9\xc5\x6c\xdb\xf0\x09\xd5\x34\x93\x33\x82\x60\x44\xa6\xb2\x24\x7a\xce\x88\x19\x8a\x4f\x39\x4b\xdd\xfc\xb6\xcc\x08\x3f\x5d\x99\xd3\xdd\xf2\xe3\xe0\x29\xcd\xa9\x10\x2c\x23\x72\x4a\xaa\x22\xa5\x9a\x29\xa2\x65\xb3\x3f\xdb\xb7\xc7\x7e\xbc\x32\x9b\x37\x2b\xcf\xd7\x4c\x07\x5f\x7d\xfc\x92\x66\xc5\x9c\x7e\x69\x1f\xaa\x64\xce\x72\xda\x9c\xa1\x2c\x98\xb8\xbc\xbd\xf9\xe1\x5f\xef\x96\x7e\x20\xed\xa5\xf8\x20\x4a\x1e\x18\x2b\x54\x73\x29\x48\x55\x98\x35\x99\xc5\x91\xfb\x05\xd1\x25\x4d\x1e\xb8\x98\xc1\xd2\x67\xb8\xde\x37\x78\x30\x6a\xb2\x32\x65\x79\xff\x37\x96\x68\xef\x71\xc9\x7e\xaa\x78\xc9\x52\x7f\x2a\x66\x67\x1d\x26\x58\x7a\x6c\xf6\xc9\x7b\x54\x94\x66\x5a\xda\xbb\x87\xd8\x3c\x54\xd4\x7a\xbe\xb4\xcc\x7f\x8c\x97\x7e\x25\xc4\xec\x0e\x7e\x49\x52\x83\x97\xcc\x82\xe6\xcc\x5d\x17\x96\xda\x2d\x35\x07\xac\xe7\x5c\x91\x92\x15\x25\x53\x4c\x20\xa6\x32\x8f\xa9\xb0\xab\x9c\xac\x74\x7e\xc7\x4a\xd3\x91\xb9\xd2\x55\x96\x1a\x84\xf6\xc8\x4a\x4d\x4a\x96\xc8\x99\xe0\x7f\xaf\x7b\x87\x4d\x34\xc3\x66\x06\x82\x34\x81\x0b\x29\x68\x46\x1e\x69\x56\xb1\x11\xa1\x22\x5d\xe9\x3b\xa7\x0b\x52\x32\x33\x2e\xa9\x84\xd7\x23\x7c\xa2\x56\xe7\xf2\x4e\x96\x8c\x70\x31\x95\xaf\xc9\x5c\xeb\x42\xbd\xbe\xb8\x98\x71\xed\x50\x75\x22\xf3\xbc\x12\x5c\x2f\x2e\x00\xeb\xf2\xfb\xca\x1c\xfd\x45\xca\x1e\x59\x76\xa1\xf8\x6c\x4c\xcb\x64\xce\x35\x4b\x74\x55\xb2\x0b\x5a\xf0\x31\x2c\x46\x20\x92\xcd\xd3\x5f\x94\x16\xb9\xab\xa5\x81\xd7\x5e\x24\xe2\xd0\x66\xe4\x61\x19\x7c\x4a\xb8\x22\xd4\x76\x88\x8b\x6d\xce\xc4\x3c\x32\xdb\xf8\xe1\xfa\xee\x23\x71\x33\xc2\x73\xc3\x23\x6a\x5e\x5d\xb3\x43\xee\xb4\xcc\xce\x72\x31\x65\x25\x7e\x39\x2d\x65\x0e\xbd\x32\x91\x16\x92\x0b\x0d\x7f\x24\x19\x67\x42\x9b\x9b\x9e\x73\xad\x00\xac\x99\xd2\xe6\x20\x57\x3b\x7e\x03\xa4\x8d\xdc\x33\x8b\x23\xd2\xd5\x57\x6e\x04\x79\x43\x73\x96\xbd\xa1\x8a\x1d\xfd\xec\xcc\x19\xa9\xb1\x39\x90\xe0\xd3\xf3\x09\xf7\xea\x07\x2b\xb7\x9e\x10\x47\x72\x37\x1e\xb7\x8f\x82\xee\x0a\x96\xd4\xd7\x91\x0a\x72\x59\x14\x19\x4f\xf0\xc6\xe9\x39\xd5\x24\xa1\xc2\x6c\x27\x17\x4a\xd3\x2c\x63\xcb\xb7\x63\xe3\x2c\x36\xe1\x1f\x02\xc8\x66\x89\x5c\xb9\xc7\x2b\x34\xa3\xfd\x43\x4d\x66\x97\xde\xd8\x84\xab\x4c\xb3\x98\x7f\xf5\x87\x2d\x5b\x4e\x90\x25\x9a\xf2\xd9\xba\xcf\x36\xee\xe5\x1b\xf8\x04\x98\x29\xca\x85\xb2\x5d\x54\x25\xee\x66\x43\x3b\x0d\x35\xa5\x2d\x4e\x62\x15\x0e\xb7\xee\x6c\xd7\x9a\x4d\xa3\x53\x60\xfd\x16\xeb\x7f\xed\x46\x00\xae\xdd\x4c\x9b\x99\x8f\x88\x7c\x64\x65\xc9\x53\x8b\xba\x0b\x99\x9e\x2a\x40\xac\x69\x95\x01\xa1\x92\x42\xe9\x92\xf2\xb5\x97\xde\x35\xc1\x33\xb3\xf8\x31\xd5\x78\x83\x98\x22\x4f\x3c\xcb\xc8\xaf\x84\xd4\xbf\xaa\x47\x80\x01\x64\xc9\x67\xbc\xc6\xce\x8a\x70\xe1\xc6\x05\xb2\x6e\xf9\x12\xa9\xd8\x52\x87\x9b\x07\xff\x5e\x31\xc2\xf2\x42\x2f\x1c\x9a\x3a\xfb\xef\xff\x39\x37\x34\x81\x95\x54\x79\x03\xb6\xfa\xdb\x88\xe9\xb1\x75\x9c\x14\x09\x38\x2d\xd8\x17\x99\xb2\xcb\x8e\x53\x23\xcb\x27\x77\xc5\x90\xfd\x51\xf0\x79\x7d\xea\xfe\xa1\x94\x55\xc6\x54\xcd\xc2\x99\xbd\xdb\xd2\x79\xc0\x5a\x42\xd7\x83\xef\xb1\x29\x2b\x4b\x96\x5e\x55\xe6\x96\xdd\xd5\xb3\xba\x99\x09\x59\x3f\xbe\xfe\xc4\x92\x4a\xaf\x61\x29\xb6\x2e\x7d\x0b\xd0\xba\x66\xf8\x46\xbb\x13\xac\x44\x28\xc3\x19\x01\xeb\x68\x7f\x30\x5b\x02\x6c\x81\xd9\x41\x85\x58\x4f\x51\xcd\xd5\x74\xd1\x39\x80\xd9\xd1\x7a\xcf\xd9\x27\x43\xf1\x80\xf7\xf7\x6e\xbb\x61\xe4\x80\xb8\x71\x96\xa5\x23\x72\x5f\x69\xc2\x35\x50\xbe\x64\x2e\xa5\x5a\xc5\x76\xcb\x8d\xe2\xd1\xc2\xbc\x1e\xb9\x04\xc6\x85\x48\x61\x80\x95\xe4\x86\x5c\x01\xc3\xc4\xfc\xe1\x27\xb0\xf2\xe6\x33\xbe\x4c\x6d\x56\x5b\x2e\x95\x6e\x8e\xcb\x90\x7e\xb8\x80\x82\x91\x27\xae\xe7\xf0\xc7\xac\x64\xc8\x34\xa9\x2a\x37\x83\x3e\x31\x3e\x9b\x6b\x35\x22\x7c\xb2\x86\x92\x2e\x37\x03\x80\x8c\x26\x73\x6f\x5a\x39\x63\x5a\x11\x9a\x65\x6e\x09\x3e\xd4\x22\xf5\xc8\x0d\x03\x41\xce\x1c\x87\xd1\x39\x8a\xe5\x0e\x46\x35\xf5\x59\x06\xbc\xb5\xc7\x35\x22\x4c\x27\x93\xf3\x51\x67\xf7\x89\xcc\x0b\x83\x10\x28\xec\xc1\xfd\x82\x70\x6d\x78\x77\xe4\x86\x4a\x59\xcd\x70\xa7\x58\x66\x27\xee\x78\x59\x38\x7c\xc3\x5c\x82\x34\xb8\x86\xdc\x2c\xb7\x13\xdc\xdc\x13\xc7\xae\x9a\xe1\x38\x6e\x12\xec\x5f\x4e\x75\x32\xb7\x68\x38\x91\x65\xc9\x54\x21\x85\xe9\x19\x7f\xb9\x6e\xd6\xf6\x6f\xe6\x9d\xce\xf1\x4c\xa7\x67\xea\xbc\x39\xec\x39\x9f\xcd\xdd\x59\xd3\x12\xd1\x71\x1b\x46\xba\x8e\x1c\x51\x09\x2d\x4b\xda\x75\x8f\xb8\x66\x79\x07\x22\x21\x3d\x6e\x3f\x21\x97\xc2\x22\xfb\x06\xb0\x3d\x10\xd3\xac\xcc\xeb\x8d\x04\x28\x04\xb4\xa7\x70\x13\x78\x6e\x38\x21\xae\x2d\x98\x93\x57\x01\xe3\x9d\x99\x9b\x40\xb8\x3e\x55\x70\x6b\xc7\xb2\x38\x9f\x90\x4b\x22\xaa\x1a\xf1\x6c\x9b\x82\x90\xf5\x0c\x6c\x47\x66\x5a\x4a\x36\x7d\x75\xe3\xa3\x30\xf4\x8d\x6d\x33\x83\xb6\xda\xc6\x76\xfe\x4c\x04\x5c\x42\xf3\x3a\xee\x5a\xe7\xab\xa1\x84\xc4\xbd\xed\xe6\x10\xf2\xf6\x12\xc4\x5c\xe2\xcd\x51\x2c\x63\x89\x36\xd4\x90\x95\xf9\x88\x50\xa5\x64\xc2\x8d\xa8\xd0\xc0\x7e\xfb\x42\xe1\x4a\xba\xf7\x9e\xc4\xee\x3f\x89\x5e\x3f\x01\x69\xb4\x7d\xbf\x43\xbf\x5b\xd9\x8d\x8c\x2b\x6d\x10\x54\x7b\x57\x5a\x78\xf7\x7e\x01\xbf\x9e\x2a\x92\xd1\x7b\x96\x6d\xe1\xab\x96\x5b\xf8\xe5\x6f\x5a\x20\x1a\xd8\xb0\xa0\x20\x84\xd0\xb4\x65\x68\xf0\xd6\x6d\xe5\xde\x1a\x4e\x40\x0c\x72\x4c\x3d\xb2\x82\x23\x42\xc9\x03\x5b\x8c\x10\xa5\x8b\x5a\x85\x13\x35\x05\xe8\xb8\x64\x48\xd0\x0d\xdc\x3d\xb0\x05\x74\xb8\x9d\xdd\x5c\xdb\x55\x2c\xdc\x61\x8b\xc1\x00\x4d\x1b\x9b\x89\x46\x7e\xd1\x63\x83\xe2\xaf\x06\xb6\x07\xb6\x95\x7d\x5e\xd7\x56\x94\x8d\x00\xee\x70\x1e\x70\x48\x40\x81\x1d\x3c\x50\x23\x22\xb3\xf5\xfa\x87\xed\x6d\xab\xc0\xb9\xad\xb9\xdd\xdb\x69\x5d\x91\x17\xc4\xb4\x0f\xb5\x0e\x07\xe1\xfd\x54\x21\xbc\x1a\xbc\x33\xe7\xa0\xac\x34\x17\x05\xd0\x48\x3c\xd0\x62\xfb\x81\x66\x3c\xf5\x74\xa0\x86\xd9\xb8\x11\x23\xf2\x5e\x6a\xf3\xbf\xeb\x4f\x5c\x19\x1e\xf3\x4a\x32\xf5\x5e\x6a\xf8\x73\x42\xbe\xd6\x78\xf5\xbe\x0d\xc4\xcb\x4d\xeb\x7d\x06\xb8\xbe\x63\x9f\xc0\xa5\x40\x24\x6a\x76\xd8\xd7\xc4\xa9\x89\x91\xcc\x81\x45\xb7\x3b\x67\xb0\xd6\x8d\x30\x42\x01\xee\x5c\xf4\x50\xa0\x8c\x45\x39\x1b\x87\xcc\x2b\x05\xaa\x34\x21\xc5\x18\xd8\xa8\xb5\x63\xe2\x01\x99\x71\xfd\x23\xda\xe3\xf0\x9b\x87\xfe\x5a\x9b\x61\xbf\xd5\x23\xef\xe3\xe8\x71\xbd\xc1\xe6\xf4\x11\x58\x7b\x2e\x66\x59\xcd\xc4\x8f\xc8\xd3\x9c\x27\x73\x94\x1e\x41\x13\xa6\x59\x59\x94\xcc\x70\x0c\x14\x74\x66\xe6\xc9\x8c\x95\xf1\xa0\xff\xd1\x88\x06\x38\x3e\xea\xbb\x33\x9a\xb0\x94\xa4\x20\xb2\xa0\xea\x95\x6a\x36\xe3\x09\xc9\x59\x39\x63\xa4\x30\xa4\xbf\x1f\xc0\xc7\x51\x62\x6c\xd1\xf4\xd8\x1f\x30\xea\x86\x01\x4f\xf3\xd6\xc8\x48\x47\x62\x67\x40\x1e\x1b\xd8\x99\x81\x9d\x19\xd8\x99\x81\x9d\x19\xd8\x99\xe0\x36\xb0\x33\x3b\x0f\x3f\xb0\x33\x3f\x73\x76\xe6\xd3\xf8\xa1\xba\x67\xa5\x60\x9a\xa9\x71\x4e\x8b\xb1\x9d\xb2\x96\x39\x4f\x02\x7a\x40\x7d\x53\x0f\x05\xd7\x9f\x51\x51\xb9\xac\xd1\x02\xe6\xca\xd9\xeb\xdb\xaa\x2d\xc3\x33\xdc\x59\x42\xf0\x11\xd4\x61\xd6\xc2\x56\x52\x31\x63\xe4\xcb\xf1\x97\xaf\x5e\xc5\x28\xbe\x2c\xe8\x04\x7d\x31\x95\x65\x4e\x35\x7c\xf3\xaf\xbf\xde\xfa\xc5\x26\x55\xfe\x71\x6c\x48\xf6\xa2\xd6\x66\x83\x16\x47\xb9\xc1\xcc\x03\x58\x5f\x48\x4d\x72\xa6\x09\xed\x66\x61\x7c\x8d\x30\xcf\xd9\xc8\x59\xea\xf0\x96\x5a\x8f\x06\x67\xaf\x4a\x89\x14\xd6\x2a\x60\xce\xaf\xfb\x7c\x7a\xad\x20\x61\x54\x31\x43\x11\xef\x99\x59\x45\xb7\x95\x4a\x13\x25\x73\x33\x6b\x2e\xb4\xbb\xf3\x66\x09\xcc\x1d\x0c\x39\x63\x93\xd9\x84\xa4\x15\x74\x4b\x85\x75\xd1\x38\xc7\xd5\xaa\x85\xd2\x2c\xef\x36\x53\x19\xda\x51\xc2\xff\xcc\xb6\xe8\x72\x01\xc6\xdb\x47\x26\x74\x45\xb3\x6c\x41\xd8\x23\x4f\x74\xbd\x7f\xe0\x51\xc2\xb5\x0a\xda\xa9\x08\xae\x33\x9c\xd3\x1c\xaf\x5c\xb2\x2e\x9c\x1e\xc3\x28\xae\xf4\x1d\x82\x36\x5a\x37\xe0\x83\x5d\xc9\x64\xa3\x08\xa5\x4d\xbf\x68\x51\x84\x7f\x02\x70\x7f\xf7\xa1\xdb\x00\x44\xa2\xd1\x75\x04\x8a\xee\xc7\x89\x58\x5b\x8c\x2c\xad\x5d\x68\x75\xa5\x6b\xac\x31\xb8\xf6\xd6\xad\x91\xd3\xc0\x01\xf5\x9c\xa1\xfd\xec\xf2\xfd\x55\xd8\x8e\x11\x6b\xb7\xfe\x28\x0b\x99\xc9\xd9\xc2\x3f\x5e\xd8\x4e\xb0\x4c\xd9\x79\xa0\x1b\x09\x72\xac\x06\xe6\xdf\x2f\xc1\xc3\x60\xb5\x18\xac\x16\x83\x98\x0f\x6d\x10\xf3\x07\x31\x7f\x10\xf3\xc3\xda\x20\xe6\xef\x3c\xfc\x20\xe6\xff\xcc\xc5\xfc\xc1\x6a\xb1\x66\x41\x03\x3b\x33\xb0\x33\xd0\x06\x76\x66\xfd\xba\x06\x76\x86\x0c\xec\xcc\x96\x36\xb0\x33\x03\x3b\xd3\x6a\x9f\x83\xd5\xa2\xdf\xb7\x85\x4c\x77\x08\x77\x29\x64\xba\x25\xda\x05\x55\xcd\x89\x1c\x67\x32\xa1\xda\x06\x26\x9a\x4f\xac\x7d\x43\xd1\x1c\xb5\xe7\x23\xf2\x77\x29\x18\xfa\xff\x1b\x48\x02\x1d\xb6\xd4\x73\x56\x9a\xd7\xcf\xd4\xf9\x56\xa7\xeb\x21\x5a\x66\x88\x96\x19\xa2\x65\x36\xb6\x17\x13\x2d\x33\xa7\x0a\xe1\x16\xa9\xc8\xe6\xe0\x19\x0f\x27\x7d\x64\x65\xfe\x33\x8d\x9d\x31\xe0\x6e\xc1\x11\xc2\xea\x1b\x90\xc2\x9d\x49\xad\x29\x99\xa5\xb7\xed\xfd\xb0\x12\x28\x2c\x8a\xa6\x29\x4b\x49\xc1\xca\x31\x82\xa8\x24\x53\x2e\xd2\x35\x6b\x75\xfb\xd3\x8d\x1e\x0e\x18\xbc\xd2\x5e\x47\xd0\x37\x87\x89\x60\x69\x4f\xa4\x87\xad\xcb\x37\xd8\xb5\x88\xe0\x8b\x88\x67\x89\x15\x66\xc7\x44\x5b\x3b\xd7\x37\x81\xe2\x6c\xbc\x44\x0a\x72\xa4\xb3\x8a\xf5\xd4\xd4\x44\x49\x0d\x97\x56\x74\xfd\xa9\x62\xe5\x02\x22\x9a\x1b\x09\xad\xce\xde\x60\x7d\x2d\xb8\x22\x09\x55\x48\x56\x63\xb8\xca\x9b\x29\xc6\x99\x89\x2a\xcb\x46\xd8\xcf\xf2\x65\x75\x68\x0e\xe0\x40\x48\xf3\x7b\xb4\xf2\x28\x52\x9b\xd1\x4f\x5d\xd0\xdf\x38\x48\x96\xcf\x69\xb9\x2b\x54\x23\x39\x2d\x1b\x1e\xcb\x5a\x35\xdb\x1a\x23\x6f\xb4\xd9\x16\x5b\x5f\x5e\xbf\x17\xa7\xbf\xb3\x68\xbb\x65\x4f\x76\x50\xc1\xc1\xcb\xd1\x93\xd9\x8f\x1a\x8e\xf4\x57\xc5\x91\xde\xea\x38\xd2\x4b\x25\x47\xfa\xaa\xe5\xc8\x0e\xaa\x39\xd2\x4f\x3d\x47\x96\xa1\xcd\x9c\x90\x65\x7c\x0f\xa3\xa9\x23\xbb\x68\x8a\xc8\x0e\x1a\x3b\xb2\x87\x8b\xe5\x8f\xef\xe5\xc2\x39\x9c\x0a\x8f\x84\xaa\xf1\xe0\x5a\xb5\x34\x79\xc7\x3e\x97\x7e\x5a\x3c\xb2\xa7\x53\x71\xb9\x44\x40\x6d\x74\x2c\xbd\x1e\x79\x7e\xdd\xde\xd6\x29\xd8\xe1\x83\x95\x61\xbd\x46\xdf\x41\x81\x46\x76\x52\xa2\x91\xfe\x8a\x34\xd2\x1f\xd8\x81\x17\xf9\x16\x5c\x90\x76\xe0\x68\xa2\xa1\xdc\x1b\x16\x29\x78\x4e\x0b\x03\xe1\xff\x6d\x08\x35\x1c\xfe\xff\x90\x82\xf2\x52\x19\x09\xc2\xaa\x59\xfd\xdf\xac\x8a\xcc\xeb\x26\x7a\x02\x85\x19\xd8\xd0\xd1\x47\x9a\x19\x46\x02\xfd\x3d\xad\x9c\x6f\xe6\xb2\xcc\xa6\x8d\xc8\x13\xa4\xf1\x31\x24\x04\xa5\x7f\xae\xc8\xc9\x03\x5b\x9c\x8c\x82\x44\xf0\x76\xf3\x6f\xcf\xc9\x8d\x38\x41\xf6\x64\x05\xf6\x6b\x5e\x46\x8a\x6c\x41\x4e\xe0\xb7\x93\x7d\xf3\x81\x3d\x78\x10\x3f\x61\x64\x5f\x12\xdf\x0b\x64\x77\xf5\x5c\x27\x2d\xe8\xfb\x86\x2d\xfa\xda\xc5\xa3\x60\xfe\x5d\x6b\x44\xc7\xb4\x02\x98\x19\xf9\xb8\xe6\x4d\x30\x5f\x24\xb0\x25\x56\x0f\x84\x2a\x21\x9e\x65\x11\xa3\xdd\x33\xa2\xe9\x03\x03\x83\x83\x84\x84\x57\x3c\x65\x98\xe2\x0b\x41\x07\x46\x32\x20\x53\x29\x48\xda\x49\x32\x29\x1f\xaa\xc2\x81\x9e\xcb\x71\x17\x31\x24\x17\x89\xcc\x9d\x3b\x35\xba\x34\x8e\x6c\xda\xab\x07\xb6\x18\x63\x66\x3e\x7c\x0e\x03\x03\x9a\xb5\xe2\xff\x8f\xdf\xfa\xc2\xef\x8f\x84\x2a\xf2\x23\x30\x6e\x82\x9c\xc1\x87\xe7\x3f\xc6\x58\xb8\xeb\x0d\x44\x0d\xa7\xac\x00\xb3\x30\x43\x90\xec\x04\xd5\xf2\xde\x6e\xdb\xb1\x88\xa1\x5d\xfe\x2a\x7f\x33\x4e\x51\xa7\x7f\x46\x85\xe6\xe7\xb5\x22\x64\x42\x00\x0e\x80\x13\x4d\xa5\x38\xd5\x38\x3f\x87\xd7\x5c\x07\x31\x46\xf0\x7a\xdf\x1b\x03\x14\x6a\xe4\xf1\xc8\x53\x36\xa5\x55\xa6\x6d\x8e\x44\x83\xfa\x80\x9a\x46\x8c\xf0\xd1\xd9\x24\x2c\x53\x3d\x95\xe5\x3d\x4f\x53\x26\xc0\xbb\xdd\x4d\xff\x5e\xea\xf9\x32\xb8\x83\x01\xd6\x3f\xe3\x98\x61\x2f\x33\x25\x47\xcb\x3d\x26\x75\x0e\x45\x73\x8b\x9e\xe6\x4c\xb4\x07\x20\x5c\x99\x4d\x55\x2c\x8a\x71\x04\xce\xc2\xf2\x5c\x59\x31\xa7\x9e\x92\xd7\x22\x5b\x45\x98\xa0\xf7\xa0\x75\x6e\xcf\xe8\x46\x78\x9a\x0d\x32\x65\x54\x57\x25\x23\x33\xaa\x03\xf4\xe8\xae\x1d\xc5\x15\x66\x77\xa4\x9b\x71\xa5\x7b\x61\x5d\xae\x9e\x01\xf1\x2e\x0f\x3a\xe0\xde\x20\xdc\x2b\xa4\x1e\xd0\xef\x67\x8b\x7e\x57\x80\x7e\x1f\x18\x78\xa5\xd3\x01\x09\xdb\xf6\x19\x21\x61\xe1\xd2\xd3\x3e\xb3\xad\x01\xd5\x6f\xe8\x56\xea\xa6\xa4\x1a\xcd\x1c\x44\x39\xf5\xd3\xca\xb9\x18\x30\x80\x21\xe8\x21\x75\x26\xd7\x4a\xd8\x24\xdd\x60\x74\x6d\x86\x45\x84\xb5\x6c\xd9\x8f\x18\xd3\x89\x6e\x52\x30\x05\x8a\x7c\x56\x7b\x71\x78\xc3\x40\xaf\x31\x4b\x81\x38\xb0\x46\x49\x29\xd2\xe5\xc8\xb0\xa6\x6f\xb0\x1e\xe4\x8c\x0a\x45\x4e\x9c\x23\xc9\xa9\x6a\xde\x38\x89\xba\xf0\x2e\x25\x61\x3d\x36\x64\xa0\xf5\xd3\x10\x36\x43\x0f\xd6\x9a\xc1\x5a\xe3\xb7\xc1\x5a\xb3\x3a\x89\xc1\x5a\xb3\xa9\x0d\xd6\x9a\x5e\xe3\x0f\xd6\x9a\x76\x1b\xac\x35\x83\xb5\x66\xb0\xd6\x6c\x6e\x83\xb5\x66\xb0\xd6\x7c\xae\xd6\x9a\x46\xd4\x38\x86\xac\xea\x8b\x85\xd6\xe3\x1b\x2b\x0c\x51\xcd\x93\x26\x14\xd2\xbd\x85\xff\x7a\x2e\xc1\xd5\x17\x35\x77\x15\x5b\x7d\x21\x78\x45\x4b\x10\x2d\xb5\x6e\x94\x51\x6b\x29\x76\x65\x8c\x3d\x89\xaf\x2f\x55\x81\xe3\xf9\x90\x1e\x03\x8e\x3f\xba\x68\x12\x5b\x6d\xec\x9e\x35\xa1\x26\x29\x39\x73\x9a\xd0\x73\x73\x52\x42\xea\xf6\x8f\x42\xf3\x71\xf3\x46\xed\xa3\x0b\x0a\x5b\x97\xaa\x2b\x66\xb7\x1c\x43\xdf\x68\x06\xc5\x52\xad\xbe\x06\x4c\x0c\xe2\x66\x65\x6b\xb6\x5c\xd9\xf2\x4f\x10\x48\x55\x56\x42\x18\xde\x41\x0a\x1b\x48\x11\x31\x13\xa4\x09\xa8\x84\xb5\xd7\x09\x25\x0d\x58\x23\x88\x1b\xcd\x31\x79\x3e\xf8\x54\x63\x6d\x37\x9b\x8d\x47\x0a\xab\xc2\x36\x4f\xb0\x9f\x88\x49\xd4\x37\x0d\xf6\x93\xd7\x2b\x8a\xb9\x64\xd7\x70\xb9\xfc\xc9\x72\x05\xe7\x48\xb3\x4c\x3e\xc5\x10\x96\x48\x50\xee\x9d\xf9\x2d\x18\x7a\x9f\xa2\x53\xc4\x2d\x39\xac\x87\x32\xb2\x43\x1e\xb9\xe5\x36\xe4\x91\x3b\x4c\x1e\x39\xcf\xd0\xe8\x27\x94\xeb\xde\x2b\x48\x38\x77\xd0\x84\x72\x84\xfc\x79\xce\xe0\x22\x94\x0c\xad\x83\x55\xa6\x79\xd1\x84\xb5\x2a\x3c\xa1\x0c\x45\xc6\xa9\x8d\xa9\x6b\x5f\x40\x33\x1b\x9a\xcc\x3b\x87\x5a\xba\xa8\x30\x1e\x84\xc9\x2a\x40\x88\x18\x77\x06\xfa\x65\xcc\xe2\xe6\x64\x49\x0c\xde\xe3\xcf\x1d\x93\x14\x84\xc2\xae\x5c\xa1\x42\xcf\xc8\xac\xc8\x99\x21\x70\xd9\xc2\x9a\x65\x5b\xb8\xac\x45\x19\x03\x06\x40\x3d\xcf\x23\x73\xcc\xe1\x8c\x3f\x32\xd1\x10\xd0\x33\x75\x7e\xee\xf8\xd1\x65\x16\x20\xa0\xf7\x5d\x98\x84\x10\xc4\x1b\x4b\xdc\x97\x48\x76\xc0\x08\x6b\x88\xfa\x1f\x3c\x42\xf9\xc7\x6e\xb2\x1e\x30\x08\x5e\x69\x17\xe4\xe8\x1d\x74\x43\xce\x3b\x7b\x39\x60\x2c\x59\x4c\xc0\x52\x9c\xd6\xb7\x47\xa0\x52\xdf\x34\x88\x87\x0d\x50\x3a\x68\x70\xd2\xe7\x93\xad\xf0\x99\xcd\x5b\x9f\x41\xfa\x9f\x17\x62\xce\x1a\xf2\xff\x6c\x6a\xcf\x95\xff\xe7\xe0\xe6\xaa\xcf\x2e\x0d\xd0\x51\xcd\x53\xc7\x31\x4d\x7d\x66\x69\x80\x9e\xc5\x14\xf5\xc2\x13\x02\x1d\xce\x04\xf5\xb3\xce\xb6\xd3\xd3\xdc\xd4\x1f\x82\x9f\xd5\xcc\xf4\xac\x26\xa6\xe7\x37\x2f\xf5\xe2\x0b\x76\x35\x2b\x1d\xbd\x6c\x45\x1f\xff\xf3\x7e\xf0\x7c\xbc\x80\x9f\x23\x3b\x9c\xbf\x8c\x40\x9f\x67\xf2\x32\x7f\x2e\x0f\xf3\xc3\x7a\x97\x3f\x43\x60\xcf\x91\x82\x7a\x9e\xd1\x97\x3c\x96\xbe\x47\x51\xf5\xdd\x10\x67\x1f\xdf\xf1\x9e\xc1\x3b\x3d\x91\xe7\x31\x83\x76\x7e\x06\xf8\xb3\x57\xb0\xce\x80\x42\x9f\x09\x85\xee\x2f\x38\xe7\x78\x81\x39\x03\x22\xb5\x6d\x67\x44\xda\x33\x00\x67\x6f\x3a\xf4\xc3\x04\xde\x1c\x3b\xe8\xe6\x00\x01\x37\xcf\x11\x6c\x73\x80\x40\x9b\xc1\xf2\x10\xd8\x06\xcb\x43\x68\x1b\x2c\x0f\x9b\xda\x60\x79\x58\x6e\x83\xe5\x61\xb0\x3c\x0c\x96\x87\xc1\xf2\xb0\x3a\xe0\x60\x79\xd8\x38\xf8\x60\x79\xf8\xd9\x5b\x1e\x62\x83\x58\xfa\xc1\xf2\xf3\x04\xaf\x1c\x37\x70\x65\xff\x41\x2b\xcf\x18\xb0\xf2\x92\x94\x1b\xd1\x01\x2a\xfd\x60\xf4\xa5\x04\xa6\xbc\x8c\xa0\x94\x67\x0f\x48\xd9\x35\x18\x65\x3f\x81\x28\x41\xa0\x5a\xc8\xf4\x52\x68\xbe\x6b\x41\x1e\x1f\x86\x36\x55\xe5\xa1\x8f\x92\xa7\xa4\xa8\xb4\x2d\x04\x32\x54\xe6\xe9\x3c\xc6\xe3\x54\xe6\x69\x1d\xde\x50\x9e\x67\x5b\x7b\x31\xe5\x79\x36\x9d\xd9\x50\xa3\xa7\xdd\x86\x1a\x3d\x43\x8d\x9e\xa1\x46\x0f\xb6\xa1\x46\xcf\x50\xa3\x67\xc8\xfa\x36\x64\x7d\x1b\xb2\xbe\x85\x7f\x35\x64\x7d\xdb\xdc\x86\xac\x6f\x31\x6d\xc8\xfa\x16\x3c\xfa\x90\xf5\x6d\xc8\xfa\x16\x37\xf0\x90\xf5\x2d\x78\x02\x43\xd6\xb7\x7f\xda\xac\x6f\x43\x8d\x9e\xcf\xa2\x4e\xc4\x50\x24\x22\xc6\x5d\xec\x45\x15\x89\x18\x6a\xf4\x0c\xe5\x21\x96\xdb\x50\xa3\xe7\x33\xc2\xbd\x43\x8d\x9e\xcf\x19\xfd\x0e\x35\x7a\x06\x24\xbc\xbe\x0d\x35\x7a\x86\x1a\x3d\x9d\x6d\xa8\xd1\x33\x58\x6b\x06\x6b\x4d\xbb\x0d\xd6\x9a\xed\x6d\xb0\xd6\x74\xb5\xc1\x5a\xb3\xb5\x0d\xd6\x9a\xf8\x36\x58\x6b\x06\x6b\x4d\x50\x1b\xac\x35\x83\xb5\xe6\x73\xb5\xd6\x0c\x35\x7a\x86\x1a\x3d\x43\x8d\x9e\xa1\x46\xcf\x50\xa3\xc7\x6b\x43\x8d\x9e\xa1\x46\xcf\xe1\x6a\xf4\xb4\xa2\x6a\x3e\xdf\x42\x3d\xf1\xcb\x18\xaa\xf5\x0c\xd5\x7a\x36\xb4\xa1\x5a\xcf\x50\xad\x67\x5d\x1b\xaa\xf5\x0c\xd5\x7a\xb6\xb4\x21\x67\x5e\x60\x1b\x72\xe6\x85\xb6\x21\x67\xde\xa6\x36\xe4\xcc\x5b\x6e\x43\xce\xbc\x21\x67\xde\x90\x33\x6f\xc8\x99\xb7\x3a\xe0\x90\x33\x6f\xe3\xe0\x43\xce\xbc\x9f\x7d\xce\xbc\xa1\x5a\xcf\x8b\xac\x36\x31\x94\x9a\xe8\x68\x2f\xa7\xd4\xc4\x50\xad\xe7\x9f\xb3\xc8\xc4\x50\xad\xe7\x05\xe3\xcf\xa1\x5a\x4f\x77\x7b\x39\x28\x74\xa8\xd6\xf3\xcf\x8c\x48\x87\x6a\x3d\x43\xb5\x9e\xba\x0d\xd5\x7a\x06\xcb\xc3\xc6\x36\x58\x1e\xc8\x60\x79\xa8\xdb\x60\x79\x08\x1a\x77\xb0\x3c\x0c\x96\x87\xc1\xf2\xb0\x7d\xd2\x83\xe5\x61\xcb\x70\x83\xe5\x61\xb0\x3c\xac\x69\x43\xb5\x9e\xcd\x6d\xa8\xd6\x33\x54\xeb\x19\xaa\xf5\x0c\xd5\x7a\x0e\x59\xad\x07\x34\x9a\xc8\xc5\x6f\x02\xce\x50\x70\xbc\x6c\xba\xb2\xdc\x6a\x25\x94\x2e\xab\x44\x57\x25\x4b\x61\xcf\xf1\x3c\x0c\x61\x56\x5a\x96\x4e\xfd\x0e\xa5\x4f\xae\x58\x91\xc9\x85\xa1\x76\x23\x72\x2b\xd3\x11\xb9\xbc\xbd\xb9\x63\xe5\x23\x4f\x98\x03\xa0\xef\x2c\x4d\xdd\xbc\xf4\x8f\x8b\x82\x27\x34\xcb\x40\x3a\x6f\x66\x93\xd3\x85\x53\xda\xde\x2f\x08\xfb\xa4\x59\x29\x68\x46\xb4\x94\x19\xda\x39\xcc\x64\xac\xd2\x55\x97\x9c\x3d\x32\x42\xcb\x7b\xae\x4b\x5a\x2e\x48\xce\x34\x4d\xa9\xa6\x9b\x47\xfd\x5e\x31\x3f\xea\x41\x4b\x52\x94\x6c\x8c\x40\xdc\x9a\x07\x80\xd7\x77\xdf\xbe\x73\x57\x94\xa6\xa9\x73\xf1\x77\x40\x7a\x57\xdd\xd7\xbb\x7d\xba\x99\xdb\x49\xeb\xdd\x52\x23\x80\x30\xab\x8e\x28\xb8\xc2\x3d\xdb\x28\x7d\x05\xb0\x05\x71\x4c\x40\x27\x88\x31\xf1\xb8\x2b\x68\x5d\x8b\xc7\xb6\x16\x8b\x89\x47\x5e\x4a\x01\x7c\xdc\x23\x2d\x39\xbd\xcf\x98\x35\x59\xd5\x86\x0c\xcb\x5b\xb1\x2d\xf0\xf2\xa6\x56\xe8\x63\xf8\xc8\xc6\x5b\xd5\x4d\x4f\x3a\x28\x48\x6b\xa5\xd7\xe2\xf1\x07\xda\x16\xa9\xc5\xda\x25\x11\xfb\x82\x59\x12\x25\x6f\xba\x17\x14\xc4\xf4\x85\xa8\x7e\xc6\x80\xa4\x37\xbe\x10\xa6\xa0\x31\x5d\x6c\x27\x79\xad\x6d\x79\x4f\xf3\xa6\x62\xd3\x9a\xdd\x98\x90\x77\x56\x0c\xa4\xe4\xcd\x7f\xdd\x5c\x5d\xbf\xff\x78\xf3\xf6\xe6\xfa\xc3\x76\x54\x18\x48\xad\x01\x35\x45\x4c\xb6\x93\x2e\xff\xe0\xce\x10\xaa\xe2\x30\x61\x18\x9f\x5f\x9e\xfd\x70\xf9\xe1\xbf\xde\x5f\xbe\xbb\x3e\x07\x96\x9e\x7d\x2a\xa8\x48\x59\x17\x8b\x56\x29\x17\xd3\x52\x94\xec\x91\xcb\x4a\x65\x8b\x9a\x48\xae\xbf\x0a\xcb\x77\xc0\xa0\x87\x8e\x51\x0c\x89\xb3\xd8\x63\x7d\xa7\x20\xf2\xd3\x06\x38\x1b\x73\x58\xc9\x94\xcc\x1e\x59\xda\x25\xe9\x43\x80\xa0\xdb\x8e\xc6\xe0\x58\x54\xda\x29\x34\x9c\x0d\xb1\x12\xc9\x9c\x8a\x19\x4b\x27\xe4\x4a\x56\x66\xb4\x5f\xfe\x12\xb6\xac\x64\x69\x95\x74\xee\x18\x6a\xa3\x50\xa0\xfc\xe5\xc8\xd1\x70\x43\x39\x15\x56\xdb\x52\x09\x2d\xdc\xa6\xfa\xa7\xa2\x16\x42\xd3\x4f\xaf\x43\xea\x76\x9d\xfc\xd2\xfb\xf0\xc4\xd5\x51\x93\x66\x7a\xc8\xef\xe0\x8a\x32\x28\x81\x95\x91\x13\xff\xed\xae\xbe\xaf\xcd\xfc\x58\xea\xc3\x0e\xc6\xf2\xb1\x47\x56\x82\x22\xc4\x42\xce\x88\x94\x6c\x46\xcb\x34\x63\x0a\xa2\xc8\x9e\xe6\x0c\x8a\xda\xa1\xa4\x89\x07\xd5\x31\x16\xab\x95\x36\x42\x76\x2a\xd3\xae\xd0\x9c\x0b\xb8\xf6\xa4\x63\x19\x31\x37\xef\x6d\x29\x3b\x4a\x23\xb5\x6e\xdf\x1d\x84\xa9\xd4\x46\xef\x75\xe0\x7a\x6a\x15\xf6\x13\x1f\xcb\x2b\xc3\x60\x4e\x1b\x63\xb4\x79\x1e\x60\x90\x0e\x96\xa5\xc3\x15\xd7\x89\x14\x53\x3e\x7b\x47\x8b\x6f\xd8\xe2\x03\x9b\x46\x46\xcc\x21\x6f\x6d\x55\xb1\xc0\xb1\x1a\xea\x80\x1d\x76\x73\x86\x07\x0c\x90\x0a\x31\x0f\xc4\x69\xf7\x83\x75\xfa\x2b\x05\xcf\x90\xcb\xb7\x9c\xf8\x1e\xab\x5b\x36\xad\x9b\xc0\xad\x9d\x5c\xb0\x4c\xe7\x53\x44\x8b\x0a\x82\xd5\xdd\xef\x24\x04\x81\x4e\xe5\x6b\x32\xd7\xba\x50\xaf\x2f\x2e\x1a\x55\xcb\x84\xcb\x8b\x54\x26\xea\x22\x91\x22\x61\x85\x56\x17\xf2\xd1\xa0\x7e\xf6\x74\xf1\x24\xcb\x07\x2e\x66\x63\xc3\x9a\x8f\x11\x46\xd4\x05\x48\x6c\x17\xbf\x80\xff\x85\xca\xa3\xdf\x5d\x7d\xf7\x9a\x5c\xa6\xa9\x2d\xb3\x59\x29\x36\xad\x32\x5b\x4f\x6e\x62\x58\xd5\x1f\x58\xa9\xb8\x14\x23\xf2\xc0\x45\x3a\x22\x15\x4f\xff\x74\x88\x43\x92\x05\x32\xb3\x3d\x0e\xea\x0e\x44\xd6\x45\x0b\xab\xd6\xf7\xcc\x60\x4c\xae\x15\x80\x99\xd3\x4f\x5b\xa2\x1c\xb1\x8c\x7b\x29\x33\x46\xbb\xbd\x7c\x76\x51\x94\xc1\x9e\xc7\x23\x99\x20\x30\x6d\x30\x11\x4a\x3f\x16\x5a\x0b\x99\xbe\x26\xaa\x2a\x0a\x59\x6a\xd5\xc8\x50\x06\x80\x46\xed\x3f\x41\x11\x30\x22\x3f\xd6\x0f\xd1\x9b\xe8\x2f\xa7\x7f\xf8\xe6\xfa\x3f\xfe\x78\xfa\xd7\x1f\xfd\xdf\x3c\x69\xca\x7b\x21\x60\x9a\xaa\x60\xc9\xc4\x88\xf4\xef\x61\x06\xf0\xa7\x65\x76\x2e\x93\x44\x56\x42\xdb\x1f\x34\xd5\x95\x9a\xcc\xa5\xd2\x37\xb7\xf5\x9f\x85\x4c\x97\xff\x0a\x30\x6f\x1d\x10\xcd\xc2\x5e\xdf\x52\x1d\x10\x1a\x1e\x85\x6c\x9b\x5b\xd9\xe3\xb6\xd8\x2f\xfd\x8a\xa5\x39\x85\x7f\xbe\x75\xd3\x35\x34\xf7\xa9\xe4\x5a\x83\xab\x9b\x8d\x46\x97\xd3\x91\x73\x13\x43\xbe\xe2\xf1\xcb\x28\x35\x5f\x30\x26\xa8\x77\xad\xc7\xe2\x60\xf6\x76\x65\xb5\x9c\x6f\x1d\xfd\x56\x14\x5c\x97\xb7\x37\xe4\x11\x77\xe3\x00\x0b\xd9\x05\x15\xb8\x08\xdf\xb7\x47\x41\x09\x6e\x34\xb7\x71\xb5\x38\xf2\x1a\x0d\x1e\x75\xbc\x31\xc9\x78\xce\xad\x6d\xd7\xd6\xa9\x0d\xa1\x33\x67\xf8\xd9\x24\x29\xaa\x91\xed\x62\x92\xb3\x5c\x96\x8b\xfa\x4f\x56\xcc\x59\x6e\x18\xf0\xb1\xd2\xb2\xa4\x33\x36\xaa\x07\xc0\xcf\xea\xbf\xf0\xc3\xd6\x14\x56\xbf\x46\xb9\x2d\xa9\x4a\x43\x8a\xb3\x85\x43\x71\x21\xfa\xb8\x03\xa2\x83\xe0\x1a\xc0\x71\xd8\xa0\x3e\xae\xf7\xfd\xf8\x9c\xd3\x5a\x63\x81\x9c\x52\xbd\x2a\x60\xdc\x1f\x65\x56\xe5\x4c\x8d\x6a\x02\x8d\x92\x99\x78\x34\x2c\xbc\x3a\x3d\x04\x02\x48\xf9\x23\x57\xbd\x5c\x03\xef\x6a\xb3\x0f\xd8\x48\x2a\x6d\x64\x56\x4c\x44\xe3\x15\x99\x96\x0a\x64\xb6\x3a\x88\xbe\x85\xd5\xbe\x3c\x09\x1a\xb6\xa0\x5a\xb3\x52\xbc\x26\xff\xef\xec\x3f\xff\xe5\x1f\xe3\xf3\x3f\x9d\x9d\xfd\xe5\xd5\xf8\x7f\xff\xf5\x5f\xce\xfe\x73\x02\xff\xf8\xd5\xf9\x9f\xce\xff\xe1\xfe\xf8\x97\xf3\xf3\xb3\xb3\xbf\x7c\xf3\xee\xeb\x8f\xb7\xd7\x7f\xe5\xe7\xff\xf8\x8b\xa8\xf2\x07\xfc\xeb\x1f\x67\x7f\x61\xd7\x7f\x0d\xec\xe4\xfc\xfc\x4f\xbf\x0c\x9a\x1e\x15\x8b\xef\x02\xb0\x06\xb6\x71\x8f\xec\x3e\xcd\x57\x7d\xcd\x88\x5c\xe8\xb1\x2c\xc7\xf8\xf9\x6b\xa2\xcb\x2a\x44\x69\xef\x8e\xad\x0f\x9c\xbb\x0a\xbd\xaf\x1b\x8c\x57\x53\x87\x03\x00\xf2\x2e\x04\x40\xb1\xa4\x64\x7a\x5f\x42\x27\xf6\xe6\x08\xe0\x92\xad\x6e\x90\x43\x1b\x39\xb4\xce\x68\x02\xfb\xd5\xb0\x0e\xd3\x52\xe6\x13\xe2\x29\x36\x1f\xc1\x07\xca\xbe\xf7\xc0\x02\x3d\xe5\x07\xb9\x75\x90\x5b\x3b\xe4\xd6\x3b\x04\xa9\x17\x2e\xb4\x32\xf1\xb8\x4d\x15\x18\x61\x30\x7a\x0b\xd9\xba\x7c\xa3\x91\xe3\x35\xb5\x24\x85\x2c\xaa\x8c\xea\x0d\x8a\xee\x08\x0b\x52\x1d\xc8\xe4\xd4\xf1\x06\xfc\xc0\x5a\x63\xe9\x40\xbe\xde\x64\x41\x2e\xb3\x8c\x70\x81\xb7\xdd\x74\xb0\x71\x04\xa7\x11\x2f\x19\x32\x9a\x84\xa2\xb9\xe8\xd1\x4c\xf9\xc9\xe6\x18\xf3\x14\xfd\x5c\x19\x39\xb5\xd4\x5c\xcc\x26\x98\x83\x0c\xf1\xb5\x55\xf3\x72\x51\x67\x22\xdb\x38\x64\xcd\xbf\xd4\xfe\x4a\x6b\x8b\xcc\x67\x54\x69\xb7\x4c\x98\xa5\xa6\x0f\x60\xa2\x48\x58\xca\x44\xb2\x45\x81\xfe\x03\xfa\x40\xb9\x3d\xbb\x37\x5c\x37\x18\xf9\xa0\x6f\x4a\xd2\xaa\xc8\x78\x62\xce\xc7\xcc\x3c\xae\xef\x9b\x3c\xaf\x34\x98\x8b\x8e\x65\xcb\x33\x90\x66\x15\xd2\x9e\x49\x0f\xd0\x7d\x2d\xfd\xd4\xbe\xb1\xb5\xfa\x68\xf3\x89\x07\x91\xc5\x30\xe2\x55\x6b\x99\x3b\xa9\xfd\x0a\xd5\x6a\xf4\x5c\x6d\x6a\x75\x6c\x45\x79\x18\xad\x8a\xa7\x53\x7d\x69\xd4\x73\xd2\xa7\xc3\xd0\xa6\x08\xba\x14\x4e\x93\x22\xf4\xa8\xb1\x74\x28\x9c\x06\xf5\x65\x94\x8b\x92\x4d\xf9\xa7\x88\x0b\x73\x29\x1a\x29\x96\xa7\x4c\x68\x23\x2b\x96\xd6\x15\xa4\x60\xa2\xf1\xf3\xb0\x71\xf9\xad\x1d\x38\xa8\x61\x1b\x59\xc9\xf8\xfb\x7f\xb7\x8e\x55\x1d\x2e\xff\x70\xf9\xf7\x71\xf9\x2d\x70\xbd\xa4\x9b\x2f\x64\xda\x19\x3b\x1a\x0a\x68\xef\xbd\xbe\x96\x42\xca\xd0\x15\xc1\x2d\x5c\x97\x55\x63\xc5\x2e\x24\xa0\x89\x29\xd7\x8d\xbb\xe3\x66\xa0\xbc\x5b\xd3\x23\xf8\x31\xda\x2f\x4f\x95\x8b\xcb\x5e\xea\x7f\x29\x17\x30\x7a\xa5\x6d\x1f\x2b\x12\xec\x91\xeb\xa8\x30\x7e\xfd\x82\x2a\xc5\x67\x62\x5c\xc8\x74\x6c\x46\xb9\xd8\xca\x96\x1d\xd3\x31\xad\x56\xd4\xed\x7a\xdc\x1f\x6a\x35\xb6\xc7\xff\x25\x32\x2f\x2a\xcd\x3c\x1d\x77\xad\xfd\x74\x91\xb9\x01\xf2\x45\x27\x37\xbb\xe3\xe1\xe4\x54\xd0\x19\x1b\xdb\xc9\x8e\xeb\xc9\x8e\xeb\xb9\xed\x70\x5e\x21\x78\x3e\xc9\x28\xdf\xee\x7a\x1d\x83\xdd\xdf\x40\x6f\x36\xa9\x72\xed\x1b\xbf\x94\xda\xd4\x89\x1d\x5c\xa0\x1d\xd0\xfd\x84\x1f\x6f\xb7\x26\xc2\x65\xa9\x93\x56\xac\x39\xc8\x2f\xb6\x7e\x1e\x15\xef\xdf\xe5\x6c\x7c\xb5\x10\x34\xe7\x89\x83\xbe\xcb\x0c\x5c\xa8\xb9\x14\x4b\xd9\x00\x02\xa6\x54\x07\xbb\xf0\x1a\xde\xc8\x8d\x26\x09\x15\x68\xa8\xb1\xde\xb3\x06\x93\xd4\x6b\xdd\x6a\x01\x0d\x73\xc0\x0f\x70\xbb\x6f\x9d\xfe\x07\xff\xa4\x7c\xe7\x28\x29\x8c\x28\xaf\x4b\xe0\xad\x6e\x65\x6a\x68\xce\xa4\xf5\x76\x87\xbd\x36\x98\x77\x09\x55\x43\x76\x38\x50\x92\x97\xc3\x06\x79\x94\xc3\xdd\x18\x73\x61\x5a\x5b\x5a\xc8\x74\xb2\xe6\xae\x84\x27\x8e\xbe\x95\xa9\x75\xf5\xd7\x2d\x78\x33\xd7\x08\x40\x2d\xa7\x0f\xce\x01\xbf\xd6\xa1\xd3\x47\xca\xb3\x00\x0f\x36\x02\xf9\x5f\x14\x4f\x0d\x03\x1d\x80\x54\xeb\x89\x85\xf1\x3e\xab\xb9\x29\x0c\x43\xf1\xd0\x99\xac\xa7\x13\x04\x36\x25\xbd\xc8\x69\xb1\xf1\x2b\x34\x6b\xee\x0b\x5f\x7e\x8b\x66\x57\xfc\xe4\xde\x5a\xb7\x72\xfa\x89\xe7\x55\x4e\x68\x2e\x2b\x8c\x93\x5b\xa5\x65\x41\x51\x08\xfb\xa0\x4c\x6b\x28\x92\xda\x44\x92\x48\xf8\x45\x8e\x0f\x74\x7b\xa1\x76\xb9\x20\x7b\x5c\x9c\x1d\x2e\xc2\xfe\xd6\xdb\xee\xe6\x2c\xec\xfb\x02\xe4\x0f\xb6\xbf\x65\x50\xe6\xa2\x13\x94\x1d\x46\xdf\x0e\xcb\x37\xd3\x66\x0c\xae\x88\xcc\xb9\xd6\xd6\x90\xed\xe1\x9c\x11\xe1\xba\x65\xf5\xb5\x17\x8c\x4f\x11\xb5\x71\x45\xd8\xa7\x22\xe3\x09\x07\xe7\x01\xe7\x30\xb2\x9d\xe7\x00\x71\xef\x89\x63\x29\x0d\x2a\x08\xcf\x0b\x0c\x61\x85\x8b\x32\x76\xec\x8c\xf5\x76\xad\x67\x69\xdd\xb3\xd9\xa7\x84\xb1\xd4\x4e\x64\xb8\xaf\xc3\x7d\x8d\xbe\xaf\x6a\x4f\x52\xb1\x2f\x11\x37\x01\x79\xb5\x64\x6c\xae\x12\x04\xcb\xa1\x8c\xea\xa0\x6b\xdb\xc5\xbc\x76\x49\xd5\x3e\x30\x30\x18\xdc\x31\xad\x6c\xe8\x1f\xf4\x44\xcb\x2d\x46\x8e\xe5\x3c\x49\x75\x22\x36\x17\x04\x4b\xa7\xd3\xf6\x1b\x4d\xd4\xd5\x16\x81\x4d\x2f\x33\x54\x20\x76\xb3\xbc\xc8\xa8\x6e\x84\xf2\x1d\xc2\xb3\x42\xd8\xc6\x98\x54\x42\xcf\x9b\x3c\xe8\x30\x82\x42\x27\xf7\xfb\x8c\x49\x80\xfa\xa6\xfd\x39\x80\x88\xd2\xed\x25\x11\x98\xbe\x27\x5c\x94\x09\x72\xa3\x38\x74\x52\x9e\x28\xa5\x67\x68\xe2\x9d\x78\xf1\xeb\xc0\xc9\x75\x0e\x95\x4e\x27\x62\xf7\x42\x53\xe6\xc4\xef\xdd\x91\xd2\xe2\x1c\x3d\x11\xce\x31\x53\xdf\x44\x25\xbb\x89\x49\xa9\x10\x9c\x4e\x21\x08\x94\x02\x93\xd6\xc4\xc0\xd0\x91\x13\xd3\x1c\x39\x15\xcd\x73\x24\x9f\x39\x18\x1f\x1f\x00\x22\xf1\xc6\x1e\x2d\x33\x9b\x5e\x37\x4c\xf9\xff\xb1\x79\x1f\xb6\xa3\xf1\x76\xf4\x7a\x3a\x8e\xc3\xc9\x56\xc8\xfe\xe8\xf8\x4d\x83\x25\x9a\x49\x03\x8c\x6b\x4d\x93\xb9\x4d\x21\x83\xbf\x18\x48\x10\x0b\x62\x80\x40\x23\x45\xb5\x89\x30\xb6\x9d\xf3\x9c\x11\x5d\x42\x21\xc3\x3f\xd4\x17\x62\xc4\x80\x55\xfe\xa3\x17\xa9\x5c\x97\xe2\xab\x81\xf1\x0f\xee\x5f\x7f\xdc\x31\x7e\x3d\x8c\xd9\xc0\x29\xed\x93\x67\xbc\x86\x1e\x09\x17\x29\xf8\x26\x21\x4b\x82\x9b\x87\x83\x99\xad\x85\x75\x4f\x6c\xfa\x0e\x4c\x64\x63\xad\x72\xe0\xc4\xd4\xbc\xdc\x49\xc2\xc1\x77\xab\x51\x11\x38\x95\x5b\x73\x87\x19\x79\x2f\x6d\x4d\x53\x36\x22\xb7\xa0\x0e\x6f\x9e\xc0\x9d\x7f\x2f\xb1\xba\x69\x47\x30\x73\x20\x45\xef\xe4\xdd\xe2\xf6\xf3\x9b\x86\xb1\xc3\x8d\x69\x31\x76\xcd\xc5\xf2\x59\xbb\xad\x1b\xfb\xc0\x16\x9d\xbb\x6a\x89\xb5\x65\x2a\x81\xa8\x8e\x1a\x18\x75\xc4\x16\xe9\xf7\xbf\x39\xeb\x4e\x7e\xcf\x05\x4e\x05\x07\x76\xe7\x0c\x63\xbb\xf3\x30\x92\x40\x96\x05\x4c\x22\x70\xb7\xc3\x38\xcf\xb8\x2d\xff\x2e\x82\xe3\xac\xe9\x45\xd7\x96\xae\xe3\x33\x3d\xe6\xf2\xfa\xa7\x8a\x66\x93\x56\xe4\x38\x3e\xea\xba\x6e\xd6\x61\x71\x99\x6e\x3e\xf1\x2c\x4d\x68\x69\x83\x48\x00\xfd\x10\x25\xad\x65\x0e\xb0\x5f\xd2\xe9\x9a\xea\x10\x60\x03\x3c\x0a\xbd\xf4\x0a\x5a\x6a\x9e\x54\x19\x2d\x89\xb9\xe3\x33\x59\x06\x85\x86\x77\x1e\x66\x03\xcd\x77\x2c\x91\x22\xdd\xab\x30\xfb\x71\xb9\xf3\x65\x3f\xc4\x82\x95\xdc\x96\xd5\xe4\x39\x5b\xbe\x5e\x67\x2d\x9f\x84\x2e\x79\x68\xea\x90\x5d\x8d\x5b\x46\xbe\x86\xb2\x6d\x4d\xc4\x4c\xf0\xe7\x1e\xc1\xa9\x6f\xfb\x84\x7c\xb5\x70\xaa\xd2\x2e\xc6\x98\x6b\x17\xac\xaf\x98\x76\xe9\x1c\xdc\x55\xb4\x27\xd9\xa0\x91\xa9\x2c\x21\x4d\xc2\x59\x2a\x31\xc0\xff\x91\x27\xfa\x7c\x42\xfe\x3f\x56\xca\x80\x3c\x18\x82\xcd\xb0\x0e\xac\xbd\xd8\xb5\x5e\xa8\x64\xd4\xfa\xdf\xbe\x22\x67\x58\x1a\x98\xe7\x39\x4b\x39\xd5\x2c\x5b\x9c\xa3\x9a\x88\xd9\xe2\xc2\x21\x50\x13\xa2\xde\xf3\x8a\x5d\xff\xf6\x37\x5b\xde\x3c\x40\xfe\x12\x9b\x23\xa1\xd9\x58\x74\x05\x5e\x82\x9e\x3a\x77\x56\xa7\xdc\xbd\x51\x4e\xf2\x1d\x8d\x9b\xec\x65\x0e\x37\xd7\xb0\xf5\x37\x03\xa0\x94\x94\x6c\x06\xf7\x13\xef\xdc\x8e\xb7\x13\x83\xd0\xde\xc9\x4a\x6c\xb6\x45\xb4\xf6\xed\x5b\xab\x0a\xfb\xc1\xfb\x30\x36\xf1\xd0\x7e\x19\x42\x6f\x26\x9e\xf5\x83\x12\x30\x79\x00\x07\x66\x10\x1b\xbe\xd5\xb8\xa7\x07\x98\x49\xf7\x98\x4c\x08\xe6\xd2\x11\xaf\xbc\x97\x94\x43\xf5\x40\xfb\xbc\x0a\x10\xfb\x6b\x77\x6e\x29\xab\x8e\xab\x8e\x02\x00\x8c\x5b\xdc\x40\x30\x4c\x86\xa5\x36\xbe\xa7\x0b\xed\xc8\x5a\xcb\x48\x4e\x5f\x9f\xee\x85\xea\xe0\x6e\x94\xb2\xa0\x33\xda\x5d\xe1\x3e\x6e\x53\x96\xfb\x26\x29\xd3\xac\xcc\xa1\x46\xf7\x5c\x3e\xe1\xef\xc8\x0c\x14\xf6\x2d\x96\xd6\x55\x5d\xc8\x5c\x76\xee\x08\x56\x42\x69\xf2\x17\x21\xf6\x00\x1f\xc2\x27\xba\x20\xb4\x94\x95\xe8\x8c\xbb\x05\x2e\xba\xa6\x1c\xef\x96\x26\xfd\x5e\x0a\x56\xbb\x21\x74\x51\xd9\x16\x69\xbb\x67\x9a\x9a\x0b\xff\xe5\xe4\xcb\x57\x7b\x39\xab\xc8\x64\x59\x30\x9b\x25\x4b\x83\xf3\x6a\x75\xb7\x7d\x2f\xf3\x2a\x19\x4d\xbf\x13\xd9\x5e\x39\xff\x77\x78\x31\xa0\xef\x31\x68\x1f\xf8\x14\xec\x4f\x23\x7c\xf4\x54\x72\xcd\x3c\xcc\x7f\x36\xa5\x99\x62\x44\x96\xa4\x12\xb5\x44\x74\x1e\x93\xab\x08\x3a\x08\xd9\x8f\x6e\xe7\x52\x55\xdd\x1f\x1a\xc1\x58\x4c\x02\x97\xa5\xc1\x2f\xf5\x65\x38\x55\x9b\x71\x4d\xc4\x9e\x9c\x9c\x90\x33\xec\xc7\x70\xff\x52\xea\x8e\x1d\x0d\x75\x38\xc7\xfd\xb9\xfe\x54\xec\x55\x74\xb9\xb6\x19\xaf\x48\x71\xb4\xcd\xfa\x8a\xcd\xe9\x23\x53\x44\xf1\x9c\x67\xb4\xcc\x20\x9d\xd0\x1d\x2e\x8f\xdc\x57\x7a\x7d\xce\xbe\x80\x7c\x6f\x9e\x9e\xc4\x9f\xa7\xd7\xdd\x21\xcf\x91\xb8\x35\x98\x23\x02\xc4\xea\xd6\x04\x85\xb1\x2a\x5d\xd1\x2c\x5b\x10\xf6\x29\xc9\x2a\xc5\x1f\x77\x45\x23\x36\xce\xbf\x07\x77\xb5\xcc\x58\x15\xd6\xb1\xef\x88\x6c\x55\x5b\x50\x36\x38\x3a\x75\xe0\x04\x6c\x14\x2a\xdb\x40\x73\x06\x5e\x92\x34\x49\x98\x52\x2e\xa6\x6d\xe1\xc7\xe5\xd5\x6b\xf8\x5c\xd2\x37\xd2\x27\x75\x9d\x51\xa5\x79\xf2\x55\x26\x93\x87\x3b\x2d\xcb\xbd\x4a\x18\xeb\xfa\x5f\x4a\x8a\x79\xf9\xe7\x3b\x72\xc5\xd5\x83\x17\x57\x6f\xdd\x68\x7c\x75\x26\xed\xb2\x39\x56\xf7\x2c\x63\xfa\x54\x01\xd7\x41\x72\x9a\xcc\x31\x35\x2b\xb0\x14\xa2\xce\xdc\x60\x95\x1e\x5b\x8f\x08\x5b\xa4\xa7\x8c\x4d\x1e\x72\x61\xaf\xc2\x2f\xe8\x93\x62\xb8\xf2\x7b\xb3\x72\xc8\x3f\x7b\x6c\xdb\x2f\xce\xe5\xe6\x6a\x4f\x76\xdd\xa9\xfa\x68\xe6\x78\x00\x4b\x1f\xf6\xec\x24\xd1\x29\xcf\x18\x4a\xd8\xb0\x29\x2e\x88\xc7\xde\x49\x80\x8e\x85\xac\xc8\x13\x45\x65\x11\x60\xfa\x10\x63\xe9\x47\x5e\xbc\x26\xd7\x42\x55\x25\x6b\x74\x90\xcb\x83\x71\xd5\x24\x7c\x71\xe2\x3e\x80\x14\xca\xb4\x06\xa7\x87\x48\xff\xd8\xae\x3f\xd1\xbc\xc8\x98\x7a\x4d\x4e\xd8\x27\xfd\x9b\x93\x11\x39\xf9\x34\x55\xe6\x7f\x42\x4f\xd5\xc9\x84\xdc\xe4\xb5\xa7\x18\x17\x53\x56\x96\xcc\xc5\x6f\xe0\x07\x86\x69\xf2\xf8\xa1\x03\xc4\x2f\xed\x0c\xb7\x76\x6f\x21\x72\xc9\x08\x05\xa9\x24\x4f\x98\xc5\xd4\x90\x4c\x56\x96\xb2\xac\xa3\xad\xbd\xcd\x06\x5a\x9e\xc8\xbc\x28\x65\xce\x3d\x93\x02\xdc\xdb\x7d\xda\xa7\x41\xdd\xd7\x2d\x19\x91\x5e\x80\x5b\x77\xee\x60\xd7\x7b\x20\xf6\x03\xb5\x37\x53\xe7\x89\x88\x3a\x14\x57\x6d\x91\xab\xba\x1b\x03\xa7\x76\x1c\x43\x13\xe2\x20\xf3\x6d\x9d\xa7\x87\x5c\xa4\xec\xf1\x42\xa5\xf4\xcb\x11\x4c\x55\xd9\xa8\xae\xf6\xba\xa8\x22\x27\x61\xc9\xbb\xee\x1c\x4f\x35\xf2\x77\xa2\xe9\x69\x2a\xcb\x7a\x48\xb0\x63\xbe\x3a\x21\x67\xb2\x84\xb1\x13\x2a\x48\xc6\xe8\xa3\xb5\xc3\x21\x8e\x5a\xa0\xc2\xa8\x93\xf7\x89\x51\xbe\x91\xb6\x02\xee\x5f\x7f\xdd\xf1\x76\x98\xac\x44\x7a\x41\x93\xeb\xdb\x69\xe1\xca\xca\x46\xdd\x4f\x65\x69\x33\xce\xd6\xaf\x28\xa6\x01\x19\x71\xd1\xd2\x53\xbd\x54\x0c\x11\x93\x54\xc2\x91\xad\x83\xf8\x94\xd8\xbe\x41\x23\x20\xf8\x4f\x15\x23\x37\x57\x75\x46\x43\x56\x2a\xae\xb4\xc1\x5b\x69\x8b\x23\xe1\xc8\xa6\x9c\x5d\xe6\xf4\xef\x52\x90\xeb\xaf\xee\x6c\x47\x01\xa0\xf8\x9c\xfb\xdd\x89\x20\xe9\xdf\xab\x92\x19\xee\x2b\x82\xe9\xab\xbf\x59\x66\xe4\xcc\x73\x72\x45\x35\x45\x7e\xce\xfa\x63\x8b\x86\x84\x1a\x6e\xec\x9e\x8b\xd4\xfe\x14\xca\x8b\x1d\x80\x33\x32\xc7\xfb\xbe\x2b\x78\xc7\xbd\xf8\xfd\x87\x9b\x3d\x71\x50\x09\x90\xb7\xd9\x3b\x99\xc6\xb2\x51\xa7\xde\xa7\x8e\xd6\xfc\xbb\xd9\xd3\x37\xf8\x9c\xe4\xa6\x4f\xf2\x5e\x0a\x36\x22\x1f\x18\x4d\x89\xc1\x12\xf6\x9f\x7f\x2e\xb9\x66\x93\xee\x2c\x55\x11\x54\xd5\x6d\x60\xe4\x32\xdc\x67\x6e\x09\x7e\x90\x76\x6a\x20\x07\xee\x9d\x25\x9d\xf7\x99\xbc\x27\xf6\x36\xec\x7b\xee\xdf\x7f\xb8\xe9\x31\xf5\xef\x3f\xdc\xb8\x99\x9b\x7f\xca\xe9\xf1\x26\x7d\x0c\xe6\xfb\xed\x12\x2f\x1c\xc3\xa6\x34\xe9\x0d\x96\x39\xea\x7d\xb2\xd3\x93\xa3\x31\xd2\x11\x47\xf3\xc0\x45\x40\xca\xb2\xf6\x75\x36\xdf\x18\xa1\x14\xbd\xcf\x3d\x7f\x8f\xbb\x39\x85\x2c\x73\x2e\x83\x0f\x02\x94\x81\x30\x65\xe8\x93\x03\x2d\x42\x31\xa5\x2d\x21\x57\x0c\x7d\x55\xd2\xd7\xce\x8b\xad\xfe\x62\xfd\x07\xef\x20\x8a\x23\xb5\x88\x9c\x60\x50\x47\xea\x41\xf2\x19\xaa\x6b\x45\xfd\x93\x0d\xd2\xe3\x19\x87\x7a\xbb\xfa\x7c\xd2\x0a\x80\x51\x30\xe5\xbd\xa2\x97\xa3\x70\x59\x2b\xca\x63\x72\x66\x7e\xbb\x00\xd5\xf4\xf9\x04\x70\x27\xbc\x08\x41\x8d\x0d\x23\x16\x30\x86\x01\xf3\x0f\x3b\xb3\x6a\xa1\x4c\x13\x1c\xa4\xb9\xbc\xb1\x54\xdc\x7c\xb3\x96\x8a\xc3\x0f\xae\x36\xcf\x4b\x26\xe4\x98\xfa\x24\x88\x94\x03\x98\x76\xbe\x19\x4e\xcc\x8f\x02\xa3\xe9\xcf\x05\x46\x49\x9d\xa7\xa6\x07\xdb\xd0\x7c\xe8\xc8\x6f\x1d\xc3\xec\xd2\x2d\xb6\x22\x38\x10\x88\xef\x2c\xe6\xb3\xd9\xbf\x91\xd9\x30\xa0\xfb\x4d\x40\xe6\xc8\x08\x64\x55\x03\x56\xec\xaa\xdc\x77\x6e\x51\x88\x90\xe1\x31\x09\x00\xe9\xe0\x49\x26\xac\x98\x4f\x63\xdc\x91\xcc\x07\x6f\xef\xda\x8a\xf1\x37\xac\x98\x93\xb7\x77\x6b\xb0\x01\xec\x3d\xcc\x5a\xa1\xba\xfc\x54\x91\x8c\x4f\x99\xe6\x1d\x4b\x38\x00\x3e\xc8\xa5\xe0\x5a\x96\xdb\x7d\xb5\xc3\xef\xb8\xeb\xee\x10\x77\xdc\xf5\x6d\x4e\xbf\xc9\x2e\xfb\xce\x7b\x4a\x49\x22\xb3\x8c\x25\xda\xa6\x5c\x87\x23\x08\x5a\x21\xb6\x35\x82\x27\xb3\x7a\x9f\xc9\xc3\xef\x41\xf4\xb4\x42\xe6\x05\x82\xc8\xc5\x87\xeb\xcb\xab\x77\xd7\x93\x3c\xfd\xc5\x5c\x3e\x8d\xb5\x1c\x57\x8a\x8d\x79\x77\xe6\xd6\xe7\x8b\x1c\xc0\x56\x04\x65\x7c\x6f\xb3\x60\x85\x4d\x56\xff\x9d\xcb\x79\x44\xbe\x57\xe8\xfb\x05\x9a\x48\x67\xbf\x96\x52\x8f\x48\x49\x6d\x5e\x23\x6a\x15\x99\x55\x96\xe1\x71\xe8\x92\xb1\x91\xaf\x94\xbb\xf8\xfc\x18\xa1\xd6\x26\xbc\x78\xae\xe8\xf8\x70\x1d\x43\xdd\xba\xd9\x30\xd2\xeb\xb0\x9a\xde\xdb\xc7\x75\xd7\x7a\x8e\xaa\x5a\x3d\x37\x87\xf7\xc0\x16\x04\x22\x86\xa6\xb2\x34\xa0\x5d\xb6\xc1\x94\xe9\x04\x76\xe7\xa2\x52\xac\x9c\x60\xf7\x2f\x70\xef\xc3\x28\x70\x58\x02\x3c\xb2\xc3\xce\x7f\x60\xd3\x75\x1b\x6f\x1f\x37\x15\xcf\x2c\x2f\x4c\x2b\x3d\x67\x42\x73\x9b\xad\xc7\x72\x29\x6b\x4f\x22\xa0\x38\x15\xb6\x63\x6f\x7d\x60\xd6\xee\xb8\x1c\xdb\x43\x5e\xea\xcd\xed\x85\xe4\xa5\xde\x25\xf7\xbc\x41\x26\x87\xb8\x84\xa6\x5f\x48\xca\xe1\x13\xeb\x3a\xcd\x40\x49\x53\xa9\xf0\x1d\x2c\x3f\xe4\x5d\x2f\x9a\xe6\xbc\x3b\x8d\xf5\x0b\x44\x6c\x09\x17\x69\xd7\x66\xc6\x6d\x24\xf6\xd8\x66\xeb\xed\x33\x6b\x9c\xab\x5d\x2e\xa8\x13\xee\x31\x81\xa0\x75\xaf\x68\x7b\x57\xf4\xf0\xa0\x58\xde\xd1\x7c\xa1\x7e\xca\xc6\x38\x87\x71\x91\x36\x5b\x3a\xb8\x4a\x6c\xed\x79\x93\xab\xc4\xcb\xd3\xd8\xbe\x08\x07\x88\xfd\x80\x1d\x79\x81\xac\xfb\x8b\xd7\x0f\x1d\xe5\x3c\x62\x18\xf4\x63\x70\x89\x0d\x95\x2a\x24\xb7\xd1\x23\x75\x25\x15\xc4\x5b\x4e\x59\x65\x36\xb5\xa0\x25\xcd\x99\x66\x25\x7a\xa9\x5b\xaf\x78\x11\xc2\x7c\x81\x0b\xfd\x77\x05\x13\x77\x9a\x26\x0f\x7b\xae\x50\x35\x70\x76\x03\x67\x57\xb7\xa3\x78\x65\x38\xf0\xb7\x09\xd6\x17\xbe\xe3\x10\x17\x96\x59\x79\x21\x48\xa7\x9b\x81\x73\xc9\xdf\x63\x34\xaf\x75\xca\xfc\x36\x97\xd6\x54\x6a\x40\x65\x2b\xb8\xb9\xd7\x25\x4e\x20\x24\x13\xb7\x69\x3f\x8c\x53\xf8\xcd\xb7\x04\xa8\x87\x4b\x43\x10\x64\x78\xdd\xb7\x11\x6b\x6e\x9e\xdc\x73\xdd\xa0\x4c\xc5\x34\x29\x58\x99\x73\x9b\xd6\x4a\x0a\x92\xd8\x78\x4e\x60\x70\x0c\x33\x63\xbb\x8b\x62\x8f\x04\x91\x89\xa6\x36\x08\x9c\xdc\x33\xfd\xc4\x98\x20\xaf\x5e\xbd\x7a\x05\x5c\xf2\xab\xdf\xfd\xee\x77\x04\x52\x04\xa6\x2c\xe1\xf9\xea\x8b\xf0\xd6\xff\xfa\xf2\xcb\x90\x41\xff\xe3\xf2\xdd\xb7\xe0\x60\x5e\x68\x45\xee\xa5\x9e\xdb\xb1\x4d\x17\xad\xee\xd5\x88\xfc\x9f\xbb\xef\xde\x37\x29\x85\xdb\xbf\x82\xa6\xa1\xde\xa2\x90\x91\x7d\xb5\xdf\xab\xdf\xfe\xe6\x37\x41\xdf\xf0\x12\x12\x33\x71\x08\xa1\xad\xa3\x35\x0a\x17\x67\x20\xa4\x5e\xcd\xb0\x66\x39\x89\x20\x87\x5d\x08\x80\xe2\xb3\x39\x1c\x84\xb9\xff\x52\x4c\x33\x9e\x68\x2c\x22\x83\xa8\x14\x41\xc2\xe6\x95\xa5\x36\x49\x83\x65\x8d\x83\xb4\xf0\x29\x1b\x91\x8c\x3f\x30\x32\x55\x5f\x97\xb2\x2a\x9a\x54\x2a\x25\x53\x46\x88\x4c\xa8\x30\xe3\xe3\x70\x0d\xdc\x29\x16\x9c\x48\xe9\x10\x8e\x88\x81\x6a\xf4\xf8\x2b\x07\x1d\x2f\xf1\xdd\xa3\xba\xb2\xc5\x18\xa1\xbb\xa0\xbc\x8e\x77\x00\x97\xaf\x56\x69\xe0\x5a\x1d\x16\x52\x71\xaa\xa9\x12\xe2\xc2\xb0\x8b\x52\xfe\x0d\x81\x86\x0b\x97\xa5\xc0\xca\xa7\xca\x8a\x2b\x36\x75\x8e\x68\xac\x67\x01\x23\xb9\x54\x6c\x86\xf5\xb2\x49\xe0\x9a\x0c\x08\xe4\x66\xea\xa7\xe2\x80\x5c\x64\x5c\x99\x49\x40\xf1\x27\x3b\xb7\x80\x51\xd6\xcc\xbe\x29\x1b\x6b\xee\x86\x42\x08\xab\xc4\x4a\xff\x58\xc3\x3e\x68\x0c\x20\x0d\x30\x69\xea\x32\x5d\x34\xa3\x60\x8c\x94\x8d\xa7\xb7\xef\xae\x94\x24\x09\x4e\x55\x65\x43\xab\x98\xae\xec\x11\x81\x53\xb7\x99\x3f\x53\xca\x06\xee\xe7\xb4\x7c\x60\x69\x8d\x9f\x27\x10\xef\xa6\x02\x13\x0e\x10\x97\x32\x8f\x3f\xa2\x81\x36\xa7\x8b\x56\xb0\xac\x99\xc6\xe9\x64\x72\x8a\xa8\x45\x96\x58\xfe\x0a\xb1\x80\x79\xfe\x4c\xa9\xad\x5a\x77\xeb\x1d\x2d\x14\x26\xe7\x32\x2c\xbd\x2d\x4c\x4f\x5b\xa1\x6c\xd4\xee\x65\x08\xee\x8b\x62\xd4\xe3\x4a\x27\x86\x16\x4f\xc4\x37\x8b\x90\x12\xd4\xb1\xb2\x42\x44\xad\xc5\xcd\xa9\x02\xed\x1e\xdb\xfb\x16\x2a\x0a\x44\x17\x1e\xcd\x83\x58\x9b\x35\x53\x0d\x96\x6c\x70\x8c\xb6\x79\x21\x88\xbf\xb1\xa9\x38\xb6\x95\x8e\x58\x6e\xcf\xc2\xd6\x60\x7b\x3e\xe6\x06\xdb\xcd\x14\xa3\xc4\xdb\x48\xde\xa2\x37\x9f\xd1\x74\x74\x28\x24\x64\xbc\x69\xc7\xe0\x56\xb0\x1d\x98\x67\xc1\xd6\xa7\xac\x6f\x0c\xff\x82\x2d\xcc\x70\x8f\xad\xef\xe5\x72\x86\x7e\xdc\x1e\x4b\x66\x8a\x56\xb1\xf7\x0c\x55\xa7\x20\x5f\x39\xc4\x12\x71\xa7\x2c\xb9\xc2\x6b\x45\xef\x95\xcc\x2a\x8d\x43\xc4\x77\xe2\xd3\x3c\x98\xa4\xcb\x20\x18\x46\xe8\x96\xbb\xf3\x28\x25\x70\x22\x48\x9e\x62\xfa\x8a\x40\x98\x43\x2d\xaf\xa6\x7d\xae\xb5\xbc\xea\x22\x77\x6a\x6b\x45\xbf\xa6\xc8\xac\x7a\x51\x35\xbe\xb0\x25\x8a\xc7\x28\x5d\x14\x27\x67\x4d\x21\x7b\xe7\x37\x78\x23\x34\x2b\xa7\x34\x61\xe7\xbe\x32\x86\x15\x73\x96\xb3\xd2\x6c\x90\x7d\xcf\xc5\x2b\xcf\xa9\x48\x33\x94\x74\x13\x56\xc2\x25\x66\x9f\x34\x2b\xcd\x66\xbe\xb9\xbb\x21\x69\xc9\x1f\x59\xa9\xc8\xd9\x57\xcc\x08\x4c\x58\xc0\x27\x28\x21\xc3\x7e\x63\x5f\x60\x1a\xfb\x52\xff\x40\x67\x07\xd1\xfc\x40\xcf\x0e\x6f\x0b\x0f\x03\x34\x7b\x89\x5b\x8f\xfb\xae\x7c\x2d\x58\x08\x72\x78\x23\x05\x90\x4a\xc0\x8d\x0b\x59\x95\x68\x2a\xae\x6b\xa9\x25\xb2\x2c\x0d\x79\x86\xa1\xa9\x22\x25\x9b\x19\x79\xad\xc4\xb2\x52\xf0\x46\x56\x99\x07\x7b\x0d\x26\x38\xb8\xe5\xb0\x36\x11\x6e\x09\xa7\x08\xe8\xcd\x32\x53\x45\x29\x1f\x79\xea\x78\x29\x70\x65\xb1\x8c\x22\x57\xa4\xa0\xca\x8b\xb9\xf7\xea\x0b\x37\x27\x18\x30\x12\x0a\xb3\xc0\x93\xd5\xf9\x87\x5a\x91\xb0\xbe\xf9\x52\x42\x26\xc9\x00\x77\x9a\x18\xaa\x26\x53\x76\x5b\xdd\x67\x5c\xcd\xef\x0e\x69\x42\x5a\x37\x0e\xba\x81\xae\xb8\x17\x6d\x32\x25\x05\x19\xaa\x84\xe2\xc0\x02\x19\xc2\x68\xf8\x35\x6e\x24\x09\x09\xa7\xe5\xfa\xf7\xaf\x98\x84\x30\xed\x8c\xd9\x04\x7c\x6f\xee\xb6\x47\xc3\x61\x7b\xdf\xac\xc5\x66\xd9\xc0\x5c\xa5\x29\xfb\x5e\x14\xad\xe7\x09\xcd\x36\xd7\x4a\xf0\x5b\x3b\x39\x93\x23\x53\xc8\xf9\xba\xdc\x1c\x08\x80\xdc\xc0\xa6\xdb\x23\xee\x95\x7f\xb1\xf9\xe9\x82\xcd\x79\x4b\x1b\xac\x48\x2e\x31\x77\x80\x80\xda\x59\xf8\x12\xa4\x6d\x75\x1f\x78\x99\x61\x20\x2d\x16\xdc\x80\xc1\x2c\xb7\xa1\x0d\x66\x39\x68\xbb\x98\xe5\x8e\xe2\x65\xe0\x44\x66\xc4\x45\x2e\xa1\x57\xab\x38\x50\x4d\x36\xc3\x09\x70\x87\xa7\xf1\x5e\x6d\xff\x38\xab\x4b\xad\x4b\x7e\x5f\xe9\x03\xd5\x2b\x58\x1a\x03\x18\x44\xa6\x2c\x22\x1d\xdb\x4d\x4c\xbc\xfb\xdb\xd4\x9a\x6c\x93\xca\x30\x1c\x8b\xfd\x4e\x6a\x46\x06\x78\x18\x7c\x78\xaa\x48\x2a\x93\xaa\xae\x20\x05\xa7\xd3\xb8\xf5\x84\x16\x98\x88\x42\x4b\xf1\x79\xdf\xfd\x41\x3a\xaf\x4a\x2a\x9f\xc4\x13\x2d\xd3\xcb\xdb\x8e\xc8\xdd\x76\xd4\x6e\xf3\x95\xcf\xc4\xbb\xc7\xc4\x3c\xa7\xf7\xb2\xd2\x4d\x1d\x9f\x7f\x2e\x03\xeb\x3a\x8d\xa3\x96\x06\x13\x6e\x35\xa0\x36\x7a\xc4\x9e\x63\x0c\x56\xdb\xc1\x6a\x3b\x58\x6d\x37\xb5\xd6\x3d\xbe\x41\x83\xac\x5f\xa5\xab\x85\xbf\x5c\x76\xc4\x90\xad\x3b\xbc\x1d\xec\xaa\xc1\xb8\xc8\xe1\x2f\x07\x19\x2f\x89\x1d\x78\xdb\x1b\x3d\xac\xe7\x17\xe7\x50\x32\xf0\x63\xcf\x6f\x33\x3b\x90\x25\x0c\x56\x17\x24\x52\x62\x6b\x47\xb1\x35\x91\x83\x58\x7b\x0f\x0d\xe4\x9e\x2d\xbe\x90\xe9\x6b\x2c\xff\x02\xc5\x22\x31\xff\xff\xc8\xd6\xa8\x1b\x59\xed\x86\x48\xb1\x8c\x76\x41\x13\x06\x48\xa0\xe6\x15\x02\xd2\x86\x60\x8b\xdc\x7c\x12\x7d\x00\x04\x0e\x01\xd6\xd6\x91\x66\xda\x6f\xb1\xa7\x61\x5a\xc3\xf7\x87\x7f\xb3\x9c\x5a\x12\xbf\x77\x87\xa0\x92\x39\xcb\x29\xfc\xf3\xad\x5b\x80\xb9\xd1\x86\xd5\xd5\x0c\x93\x85\xb1\x12\xaa\x2d\x8f\x5a\x3e\xbd\x27\x8f\x61\xb9\xb6\x5c\x8b\xb6\x6e\x12\x07\x81\xdd\x09\x6f\xb7\x2c\xf7\xb6\x65\x4d\x31\xd0\x07\xa4\x3d\xc3\x62\x2a\x4b\x3e\x10\x80\xb3\x70\x7f\x0e\xbc\xb4\x5d\x04\x2b\x6c\xc7\x30\xfe\xf6\x35\xfa\x8e\x6a\xc5\x7b\x9b\xdb\x09\x1e\x78\x30\xfa\x0e\x46\xdf\x76\x7b\xe1\x46\x5f\x8f\xda\x39\x0c\xba\xc6\xaa\xeb\xdb\x0a\x9c\x69\xf7\x9e\x39\xb1\xc2\x8a\x2e\xce\x5e\xeb\x8c\xb5\xb2\x6c\x7b\x1b\x9d\x4e\x26\xa7\xe8\x6f\xd4\xc8\x3a\x95\x9e\x8e\x7f\x4f\x98\x48\x64\x6a\xfa\xf9\x08\xfd\x97\x4a\x03\xa7\xd4\xe8\xc0\xfc\xb9\xe4\x6e\x2c\xdf\x63\x09\xfa\x8e\xa3\xab\x11\x68\xcf\x65\xad\x7b\xbb\x0b\x5f\x11\x81\xbe\x1a\xbe\xa3\xce\x97\x67\xb7\xa2\xce\x8c\x6c\x19\x90\xa6\x20\x37\x96\xb8\x07\xf8\x75\x65\xc2\x83\xc7\x3b\xc3\x8f\x27\x49\x51\x8d\x6c\x47\x93\x9c\xe5\xb2\x5c\x8c\xea\xce\xcc\x8f\xad\xde\xed\x1b\x98\xa3\x3b\xa9\xca\x92\x09\x28\xcf\x5d\xb3\x39\x2f\x8b\xcb\x71\x3b\x75\x40\x26\xa7\x3e\x9c\xb0\xcc\x25\x4d\x6b\xdf\xc8\xc6\x6c\x0a\x8a\xe6\x7a\xb5\x58\xba\x09\x03\x26\x47\x8d\x51\xd9\x3c\x65\xe2\x91\x3c\xd2\x52\x85\xde\x00\xd2\x97\xaf\x49\xf9\x23\x57\x21\x75\x5d\x37\x2c\xee\xae\x56\x7b\x42\x59\x8a\x4a\x17\x95\xb6\xe8\xce\x81\xb8\xcb\x2b\x5d\x83\xf6\x12\xfb\xf6\xe5\x49\xc4\xe0\x2f\xb4\x9e\x79\xbb\x05\x55\x37\x6f\xb7\xb8\x5a\xe7\xeb\xbf\x8d\x3c\xfa\x9e\x75\xd0\xd7\x35\x77\xb4\xfd\xef\x48\x43\xb5\x9a\x1c\xe7\x8e\x3d\x3e\xf0\x25\xe8\xcb\x01\x83\x21\xed\x8a\xef\x35\xfc\xd8\xf5\xd9\x0e\x6d\xd1\x2c\x2f\x64\x49\xcb\x05\x49\xad\x62\x6a\xb1\x35\xa3\xd0\x81\xf3\xb6\xc3\x24\x53\xbe\x1d\x48\x0f\xa0\xe6\xcd\x59\xca\xab\xfc\x20\x79\x86\xa0\x67\x7f\xd3\x9f\x20\xf9\xb9\x4d\xad\xee\xbc\x58\xec\x6b\xae\x82\x06\x4d\x1e\x6c\x45\x7c\x77\x2a\x61\xba\xbf\x56\x82\xea\x93\x93\xa5\x42\x6e\xa0\x57\x06\x7f\x0e\x99\xb2\x53\x55\xbf\x8b\x83\x47\x2a\x78\xd1\xd8\x6b\x3d\xda\xce\x6c\x57\xe7\x86\x93\x7b\x07\xc4\xfe\x08\xb9\x79\x83\xa0\x85\x44\x26\x33\xe1\x7f\x67\xdf\x1a\xb6\xe6\x20\x61\xaa\xae\xf3\xba\xec\x9b\x04\x69\xcc\x66\xf5\x9a\x92\x4c\x26\x9e\x6b\x53\x8b\x9a\x03\x38\x5c\xbb\x4b\x1c\x6e\xe7\x33\x40\x61\xc6\x45\x66\x0d\x14\x99\x99\x42\x47\x0d\x9e\x40\x3d\x15\x90\xed\xe0\xcc\x22\x20\xe1\x23\xe4\x8b\xff\xc4\xf3\x2a\x27\x95\x32\xb3\x85\xe2\x9d\x5e\x2f\xcd\x64\x9f\x5c\x59\x18\x48\xed\xc4\x05\x7c\xd4\x92\x6d\x43\xd4\x8b\x73\x46\xee\xea\xfd\x6b\xf4\x19\x10\x5a\xed\x44\x31\x55\x81\x24\x60\xe7\x61\xf9\x5c\x39\x05\x1f\x81\x9a\xe5\x52\x75\x65\x91\x1e\x97\x4a\xf0\xac\x7d\xab\x5c\x29\x83\x7a\x7b\x2b\x61\x3d\xf1\x5e\xd2\x0d\x78\xc1\xcc\x4d\x30\x4b\x13\xcf\xc8\x44\xb2\x2f\x3b\x30\x2d\xb5\x5f\xe2\x5e\x49\x76\xed\xec\xd8\xa2\xd9\x7e\x51\x83\xb6\xe3\x23\x75\x4e\x71\x35\x0a\xb1\x56\xea\x8e\x81\x3e\xd6\x4a\x19\x4b\xea\x93\x45\x62\x53\x5a\xf1\x56\xd9\x16\x1c\x14\xe1\x1b\x82\x8f\xc6\xe6\x3f\x4e\x79\xe3\x4c\x87\xf7\x6c\x2a\x9b\x1a\xde\x28\x7c\xab\xae\x80\x27\x54\x49\x65\x4c\x43\x04\x15\xab\x8b\xf9\xa0\x0b\x51\x2e\x1f\xcd\x85\xfa\xa2\xa3\x93\xef\x5d\x85\x54\xde\x09\x51\xf4\xbc\x15\xde\x6c\x8b\xb4\x0b\xc6\x52\x0c\xe1\xca\x9a\x05\x94\x95\xe8\x9c\xfe\xfd\xb9\xf3\x29\x05\x84\x23\x8c\x9c\x92\x39\x11\x0c\x15\x47\x25\x33\xa7\x02\x39\xc1\x4a\x99\x13\x25\x68\xa1\xe6\x52\x83\xf2\x83\x16\x34\xe1\x3a\x20\x2a\x48\x97\x34\x79\x30\x7d\x80\xb1\x10\x66\xdb\x35\xb5\xe4\xdc\x3a\x9f\xfb\x20\xd1\x0e\x59\xd3\xf3\x52\x56\xb3\x39\x44\x50\xe1\x5b\x49\x46\x15\x86\xca\x75\x59\xc8\xd7\xf6\x6e\x45\x7b\x45\xd2\x85\xa0\x39\x4f\xea\xfa\x13\xa5\x7c\xe4\x8a\x4b\x6b\x61\x82\x51\xbb\x17\x4d\xc9\x6d\x5d\x1c\x00\xcd\x5a\x6f\x32\xca\x73\x72\xa6\x18\x23\xd7\xee\x96\xe0\x2f\x77\xc8\xe2\xa3\xc2\x32\xa4\x7a\x8a\x6f\x11\x93\x75\xfd\x49\x61\x13\x3f\x3a\xe5\xab\xe7\x83\x00\x48\x25\x60\xd2\x22\x5d\x3f\xed\xf3\x30\x38\x5e\xbf\x64\x59\x82\xf3\x9b\xab\xca\xc3\x44\x2a\x1b\xe7\x96\x8e\x5e\x2f\x6f\x6f\x94\xaf\x19\xc0\xdb\x6c\xeb\x2e\xc0\x0f\x99\x14\x33\x3f\xd3\x62\x8d\x0b\x3a\x7a\x36\x24\x56\x40\xe1\xf6\x47\x9e\x56\x34\x43\xe2\x1a\xb2\xca\x37\x77\x37\x38\x32\x9f\xcd\xf5\xf8\x89\x81\x32\x17\xd9\xa0\x06\xfd\xb9\xf9\xf2\x15\x17\x64\xae\x80\x0e\x6b\xa2\x65\xd7\x05\x65\x56\xad\x6f\xd6\xfc\x44\x17\x90\xbe\xd8\xba\xb2\xb6\x9c\x75\x5c\x42\x7c\x1c\x60\x2a\xbb\x08\x4d\xee\x48\xb8\x05\xa2\xee\x75\x5f\xba\x22\xda\xc0\x90\x83\x5a\xde\x80\x14\x20\x8e\xd5\x45\x77\x5f\x41\xaf\x72\x46\xfd\x11\x32\x25\x8a\x1a\x70\xed\x94\xdb\x0e\x20\x51\x3d\x36\x30\xfb\x91\xe5\x45\x46\xf5\x41\x1c\x68\xfe\xec\xd9\x0d\x3c\x7b\xb6\xc1\x63\x54\xa4\x63\x9a\x99\xcb\x72\xfb\xc3\x1b\x1b\xaa\x88\xb8\x27\xd2\x53\xee\xa3\x23\x44\xa2\x2e\x7f\x68\x58\xf1\xb5\x68\x07\x32\x0a\xde\xb3\x14\x88\x88\xab\x6b\x1d\xe4\xf3\x2a\x9f\x04\x2b\x1d\xf0\xdd\xfe\xf0\x66\x44\xf8\x84\x4d\xdc\x5f\x75\x67\x8e\x44\x6a\x39\xc3\xc0\x10\x17\x5c\x14\x62\x1b\x97\xe9\x04\x97\xe3\x2b\xe9\xfd\xde\x7f\xfc\x83\x59\xa8\xf9\xf5\x8f\xe3\x3f\x78\x45\x8d\xfe\xf8\xa3\xa1\xc9\x41\xb5\xa8\x7e\x5c\xfa\xce\x0f\x21\xa8\x8b\xd3\xfe\x78\x6b\x2b\x0d\xda\x3a\x84\x3f\x06\x3a\x45\x10\xc2\x84\x2e\x17\x13\x72\x2b\xc1\x8f\x8e\xa7\x78\x67\x61\xfe\x25\xfb\x9b\xb3\xed\xc0\x71\xd5\x6a\xf0\x84\x6a\x26\x80\x33\xd9\x5a\xb4\xaf\x69\x36\x76\x1b\x06\x00\xec\x44\x61\x97\xce\x40\x7f\x8a\x89\x4c\x46\x44\x4b\x09\xf8\x32\x00\x9d\x9b\x76\x29\x08\xfb\xc4\x15\xe4\x71\xc2\x2d\x87\x73\xa3\x36\xc4\xc1\x71\x73\x66\x5c\x03\x0a\x75\xf6\xaf\x42\x86\x38\x5f\xc0\x06\xfc\x4a\x48\xfd\xab\xfa\x36\x38\x97\x50\x60\xdb\x24\xa1\x8f\x92\xbb\xba\x98\x06\xf3\x08\x30\x95\x04\xe5\x08\xb0\x07\x7a\xbf\x20\x39\x57\x9a\x3e\xb0\x09\xb9\x33\x3c\x9d\xef\x25\x82\xc7\x2c\x08\x54\xc9\x61\x29\xa9\x84\xe6\x59\xa0\x58\x57\xcf\x05\x36\xc6\xe3\xf7\x20\x2b\x40\x95\x18\xbe\xa4\x28\xd9\xd8\xf1\x97\xf8\x56\x90\xf2\xc5\xd6\xfb\x72\x7b\xd2\xec\xe9\xa8\x86\xfd\x39\x45\xdd\x48\x91\x42\xe7\x70\x2e\x9d\x1e\xad\xa4\xbe\xb1\x2b\xd1\x01\x66\x37\xa4\x48\x1a\xf6\x11\x8e\x5d\x4d\xc8\x7b\xe0\x09\xb3\x10\x28\x47\xaf\x2f\x54\x06\x59\x5b\x99\x60\x09\x53\x8a\x96\x8b\x11\x54\x46\xe5\x75\x45\x4c\xeb\x36\x6d\x78\xe6\x90\x2d\xa1\x02\xab\x8f\x96\x2c\x91\x42\xe9\xb2\x4a\xe0\x1c\x29\xb9\x2f\xe5\x03\x13\x4d\x58\x4d\x08\x50\xb7\xa3\x02\x1a\xe7\x64\x70\x69\x91\x24\x99\x53\x31\xf3\x2a\xfc\xe7\x34\x05\x30\xfa\xa6\x16\xb3\x42\xf6\x42\xd6\x47\x45\xa7\x46\xb6\xe1\x1a\xce\xec\xde\xb0\x65\xce\xac\x18\x34\x5b\xa7\x09\x1e\x35\x86\x41\xb3\xb1\x3c\xdb\xb3\x2f\x6e\x8c\xcd\x69\x0c\x5c\x78\xb7\xfc\x1e\x65\x63\xca\x99\xa6\x29\xd5\xf4\x90\x91\x07\xef\x68\x5d\x7c\xd5\xba\x33\xc1\xa9\x7b\x6e\x4e\x96\xd5\x72\xc2\xa1\x2c\xb8\x9f\x95\xe3\xf6\x87\x37\x81\x23\x81\x34\x08\x07\x0d\x39\xf0\xb4\xb9\x49\xd6\xcc\x8e\xb1\x02\x20\x0b\xd1\x2c\x93\x4f\x36\x77\xa6\x1b\x13\x29\x02\x4b\x49\x5a\x45\x68\xed\x1b\xba\x12\x66\x97\x8c\xb4\x4a\x9a\xf3\x3e\xe4\xc1\x7c\x6c\xdc\x7d\x92\x76\x70\xc0\x5a\x89\x02\x2d\xe9\x4c\x68\x5e\x32\x2f\x37\x4b\xe0\x60\xf6\x54\x2b\x81\x57\xbd\x7d\xbe\x08\x00\x33\xa6\x55\xe3\x55\x8c\x1c\x40\x70\xff\xda\xf2\x8e\x38\x4b\x60\x67\xdd\x99\x5b\x35\xde\xda\x45\x05\xf6\x8e\x70\xa3\xa4\xa5\xf4\x86\xc3\x39\xc8\x91\xf7\xb1\x11\x63\xa1\xe3\x77\x32\x8d\x31\x2b\xf7\xf5\x22\x68\x0d\xd7\x04\x5c\x61\x9c\x9f\x02\x1d\x34\xbe\x00\x8e\x2d\xaa\x95\x99\x06\xa9\xd4\x9c\x76\xd5\xb1\x6e\xb7\x9e\x8a\xcf\x46\xd4\x19\xd7\x15\xfa\x60\x62\x63\x98\xd8\xf8\xcb\xe0\x29\xc4\xf8\xe2\xba\x16\xec\x93\xdb\x1e\x24\xca\x66\x68\xf0\xf6\x5d\xa4\xc9\xb3\xff\xb1\x37\xa3\x59\x32\x6e\xbd\x98\x6a\x0f\x38\x1b\x86\xce\xb8\xc1\xb7\x31\x4b\xff\x55\x8b\xe3\xb5\x42\x52\xad\xf2\xc2\xc8\xbe\x33\xa7\x03\x9b\xd8\xf3\x75\xd9\x01\xdb\xaf\x9f\xf7\x1e\x16\xb8\xf6\xf5\x4a\x98\x88\x3e\x6f\xac\x2f\xaf\x93\x1f\x8d\x9c\x56\x82\x0d\xcc\x05\x98\x9b\x1b\x53\xca\x2c\x63\x25\x6c\xa0\xd5\x7e\x2d\x79\x5e\x42\x8d\x2f\xb4\x40\x87\x64\x7f\x72\xcd\x29\x58\x6b\xd1\x56\xb0\xa7\x9a\x25\xa7\x0a\x53\x44\x3b\x87\x1f\x50\x11\x3b\xb7\xd7\x75\x23\xc7\xdc\xd1\x3f\x3b\x35\xec\xa5\x58\xe0\xd6\x5d\x79\xe0\x82\xda\x4e\x32\x33\x93\x32\x62\xaf\xa0\xf7\x99\xe1\xad\x3c\x90\xaa\x67\xb4\xc4\x04\x68\xe9\xbd\xf5\x81\x4d\x63\xb6\x03\xf4\xc4\xfe\xc7\x61\xa3\x20\x17\xd1\xfa\x70\xd2\x38\x5d\x5b\xc1\x2b\x2a\xd3\xb1\x6b\x16\x3a\x5a\x9d\xb5\x1d\x1e\x97\xc6\xf5\xb3\x8d\xad\x9d\x6b\xf8\xe8\x3d\x1c\xa2\xfa\xb8\x44\x41\xce\x2a\xde\xa9\x87\x6a\x7f\x10\x28\x6b\x63\xeb\xe3\x43\x05\xae\xe2\xe0\x8b\x19\xe7\x10\xd3\x1f\x5b\x12\x54\xa2\xc2\x98\x4e\xb1\x31\x83\x3f\x1c\x8b\x55\xbb\x98\xdc\x33\x83\x7f\x9a\x54\x7c\x31\x10\x45\x10\xaa\xfc\x91\xd6\x78\xd1\x36\xd7\xfb\x1b\x28\x06\x67\x4d\xf3\x2e\x3b\x82\xa1\xaf\x97\xb7\x37\x38\xbf\xd8\xd1\xdf\x02\x7e\x5b\x58\x2e\x5b\xcf\x79\x99\x8e\x0b\x5a\xea\x05\x2a\x2a\x47\xad\xb9\xd5\x01\xde\x51\x83\xf4\x74\x2c\x0a\x2b\xf7\xe8\xb7\xd6\x71\xc3\x56\x39\xe3\xbb\xf5\xc1\xd8\x78\x66\xc7\x58\x4f\x78\x80\xf8\xda\xf5\xf8\x05\xcc\x9c\x52\xef\x19\xd7\xb3\xbb\xcb\x3f\x69\xe3\xca\xe3\xf2\x40\x06\x39\xab\xb6\xdb\x21\x32\x2a\x20\xb6\x58\xe5\xaf\xf4\x03\x53\x6b\x36\x18\xd4\x46\xa6\xa7\x11\xe1\x53\x43\xa4\xa5\x18\x83\x75\x3e\x62\x22\x8d\x2d\xd2\x32\xdd\x13\xeb\xe1\x8e\x8a\x1e\xb8\x90\xde\x7c\xbc\x41\x9a\x9b\x4e\xce\x84\x0c\xd1\x03\xb9\x06\x78\x02\x7b\x3d\xc7\xe0\x83\x0d\x76\xa7\xfb\x98\x34\x7f\xa4\xe1\x1e\x7c\x05\x91\x87\xc1\x1c\x03\xc3\x45\x6a\x80\x14\x48\x22\xa8\x8e\x54\x95\x24\x8c\xd5\xea\x5b\x7b\x49\x63\x78\xee\x16\x6e\xb4\x1b\x96\x53\x9d\xcc\x99\x22\x4a\x42\x2e\x6b\xa5\x69\x96\xb1\xb4\xb6\x4a\xe2\x81\x4a\xe0\xeb\xac\xc5\x32\x62\x44\x8f\x31\x8c\xd9\x20\x4f\x79\x66\xf5\xd7\x45\x46\xad\xde\x70\x5a\x89\x04\x9d\x76\xb9\x5e\xf8\x35\x9a\x5b\xcc\x3a\x28\x5c\x14\xa8\x48\x63\x18\xca\x29\xda\x9c\x3c\xe5\x49\x0d\x48\x40\x5a\x16\x48\x4c\x8c\x48\xd7\x58\x91\x6c\x9e\x56\x43\x19\xee\x69\xf2\xf0\x44\xcb\x34\xdc\x6b\x9c\x40\x16\x13\xaa\x39\x96\xb1\x1d\x21\x37\xe6\xb3\x4c\xe2\xd4\x77\xea\xe1\xa2\x3f\x83\xe8\xaf\xed\xcc\xdb\xb2\x15\xc6\xf1\xbc\x66\x18\x15\xab\xcb\xa8\xaa\x18\xae\x85\x58\x2f\x26\x5a\x69\x99\x53\xcd\x13\xd0\xac\xf2\xa9\x67\xa2\xcd\xeb\x22\x53\xb5\x93\x12\x12\x55\x20\xea\x76\xd7\xa3\xaf\xd5\x7a\x66\x73\xa7\x6d\xf3\x76\xca\x9e\x46\x7b\x53\xdc\x52\x3d\x56\x23\x7a\xee\x1f\xd1\x59\x0b\x7c\x43\x4a\xc6\x08\xcf\x8d\x98\x44\xa1\xe2\xff\xb4\x4e\xdd\xe2\x4c\xee\xdb\xce\x2e\x4e\x12\xfd\x33\xb8\x73\x78\xfd\xa1\x92\x3a\xcb\xe4\x93\x22\xfa\x49\xd6\xfa\xb2\xc6\x0e\x6b\xf3\x9a\x8c\xda\xc3\x46\x51\x50\xdb\xbf\x41\xdb\xe6\xa4\x3d\x4c\x3b\x32\xb7\xf6\x89\x65\x99\xf9\xff\x36\x7c\x1b\x11\x6a\xb5\x76\x9d\x7c\x26\x30\x09\x06\x57\x4e\x3f\x6a\x03\xba\xce\xd2\x52\x16\x85\xb5\xe0\xe4\xe7\xbb\xac\x13\x5c\x93\xca\x47\xa6\xc0\xcd\xce\x85\x93\x99\x23\x9b\x31\xc1\x4a\xaa\xc1\x88\x6d\xf3\x16\x03\x71\x5c\x9e\x4e\xb8\xbe\x11\x5b\x2f\x39\xad\x03\x0c\xd0\xe7\x60\xfd\xb1\xbb\x77\xec\xaf\x51\x73\xe5\x02\x21\xc0\xdd\xd8\xa8\x23\x85\x64\x75\xe7\xe4\x7b\x85\x07\x55\xd3\x8b\x3a\x4c\x2f\x48\x3a\x47\x03\x98\x15\xd0\xa3\x86\xbf\xcc\x8a\xb9\x37\xbe\x2f\xe5\xd6\x61\xce\xed\x9d\x6a\xcd\xec\x4d\x29\x95\x7a\xef\x3e\x39\xc8\x24\x07\x09\x78\x90\x80\x07\x09\x78\x7b\x1b\x24\xe0\x63\xaf\x07\xf0\xdd\x31\xef\xe4\x7b\x9f\x21\x6c\x23\xea\xbd\xed\x07\x21\xef\xa5\xb6\x9e\x2a\xc0\xbf\xd3\x8d\x4a\x4f\x0a\x38\xfd\x89\x2e\x26\x82\x69\x9b\x2f\xce\xe9\xf6\x3f\xb8\xd1\xbf\x2e\x0d\xe7\x67\x05\x34\xef\x16\xb9\x0b\xec\xf2\xd9\x79\xa3\x68\x89\xa4\xb8\x71\x9c\x81\xe7\xa7\xca\x3a\x63\x98\xdf\x21\xda\x9d\xb4\x0a\x61\x4c\xc8\x9d\x75\xf5\x5b\x1a\x7c\x35\x4d\x57\xca\x34\xe5\x61\x29\x11\xfd\xe6\x28\xe5\xc7\x0d\x34\xfa\x08\x94\x90\xf4\x03\xd9\x3a\x76\xf2\x18\xaa\x96\x26\x06\xd9\xf3\x68\xf7\xa3\x42\x9a\x17\x76\x37\x31\xde\x4c\xc9\x07\x96\xc8\x47\x56\xe2\x7e\x5f\x7f\x2a\xa8\x30\x62\xfa\x5b\xca\x33\xb3\xdb\x6e\xd7\x1b\xeb\x05\x54\x31\x6d\xfb\x13\x78\x46\xb0\xfa\x1a\xd9\xa3\x35\x90\x13\xc3\x0c\xd6\xf9\xe6\x4c\xcf\xd6\xcb\xb6\x28\xd9\x23\x97\x95\x72\xf1\x30\x95\x46\x3a\xa6\xb4\x95\x4d\xe7\x7c\x56\x17\x3f\x77\x6e\xe2\xe0\xbc\x53\xa6\xf5\x55\x89\x98\x83\xd2\x54\x57\xaa\x9d\xa4\x26\x01\x3f\x80\x67\x31\xde\xd6\xe7\x7d\x58\x86\xaf\x1f\x73\x85\xf1\x43\xc7\x44\xe3\xdf\x62\xc4\x12\x76\x72\x6f\x6f\x81\x0b\xb3\x6a\xc2\xc4\x12\x99\x17\x95\x66\xde\x6d\xb1\xd0\x1a\x8b\xb6\x22\x0f\xb2\x95\x73\xf2\x22\xa7\x82\xce\xd8\xb8\x9e\xc4\xb8\x89\xb0\xba\xe8\x81\xb5\x22\x8f\x94\xec\x90\xf4\xd0\x6f\x2f\x38\x32\x6a\x69\xb1\xf1\xa1\xdf\x64\xc7\xf0\x6f\xb2\x4b\x08\x38\xd9\x67\x18\x38\xa9\x73\x49\x1c\xf3\x3a\x7e\xb0\x63\x2e\x5f\x48\x4b\xac\xb6\x5d\xc8\x7e\x22\x81\x25\x5a\x76\x54\xae\x88\xcc\xb9\xd6\xcc\x39\x21\xd7\x17\x6c\x44\xb8\x6e\xa5\x3a\xb0\x88\x03\x94\xe6\xe8\x48\xcc\x3e\xd5\xb5\x7d\x1b\xc6\x2c\x72\x32\x20\xfc\x3c\x71\x85\x8c\x97\x20\x3c\x2f\xb0\x1c\x06\x20\x80\xb1\x8d\x73\x74\xaa\xe1\x7a\xde\x09\x38\x01\x12\xf6\x09\x14\xf9\x38\xb5\x01\x33\x0d\x98\x69\xa9\xfd\x1c\x30\x13\xa6\x91\x88\xc9\x72\xd2\xc2\x48\xee\x73\x9b\x5f\x92\xde\xb3\x8c\xfc\x54\xb1\x72\x41\x0c\xdb\xda\xc4\x69\x41\x49\x62\xc5\x53\x0c\x48\x72\x56\xb3\x03\x6b\xc9\xfa\x31\x4d\x60\x69\xbb\xfe\x64\xb8\x7b\x48\x9a\xb6\x03\xbe\x5e\xee\xaa\x9d\x85\x13\x77\xab\xde\x41\x9f\x27\x47\x6f\x51\xff\x09\xb0\xdd\x97\xef\xaf\xfa\x09\x54\x71\x5e\x82\xa4\x8f\xa7\xe0\xca\xe2\xa3\x89\x15\x21\x97\x5b\xf6\x04\xf7\xae\xfe\x05\xa8\x44\xed\xe7\x59\xeb\xec\xc9\x03\x5b\x8c\xac\x1f\xb7\x2d\x39\x6f\x5f\x8e\x9e\x0c\x86\x74\x34\xb5\xe2\x4c\xa7\xa1\x99\xaf\xdb\xad\x37\x12\xee\xa7\xe8\xc5\x16\x5e\xa4\xaf\xfd\x95\xdb\xb4\x58\x5c\xdf\x9b\x4a\x44\x15\xf3\xf3\xdb\xa6\xc2\x7e\x08\x43\x50\x85\xcb\xe5\x36\xa8\xc1\x06\xb2\x46\x00\x42\x8a\x3d\x44\xd2\x5f\xa1\x86\xcd\x6d\xec\xce\x4b\xed\x71\xb1\xfc\xf1\xdb\xb1\xf8\x0f\x6c\x71\xaa\x6c\xd6\x39\x29\xd4\x9c\x17\xae\xda\x3c\xe0\xa8\x7e\x00\x8f\xed\x07\xf0\x49\x77\xc3\x22\x06\xbb\x11\x23\xf2\x5e\x6a\xf3\xbf\x6b\x88\x2a\x82\x6b\x75\x25\x99\x7a\x2f\x35\x3c\x39\xfa\xb9\xe0\x12\x9f\xeb\x54\xac\x35\x93\x83\x85\x11\xd0\x34\x66\xd5\x81\x30\x7b\xbb\xfb\xce\x43\xb3\x3e\x41\xae\xc8\x8d\x20\xb2\xb4\x5b\xd9\x6b\x60\xed\x4a\xd7\x2a\x3b\xac\xb3\x3e\x34\x46\xfd\x75\xe3\xda\x53\x93\x65\xeb\xd0\xf6\x3c\x05\x3b\x3c\xe8\x22\xf1\x17\xd0\xae\x82\x77\x89\x8b\x85\xc1\x62\xa9\x54\xb3\x59\x94\xab\x4b\xd3\x72\x56\xce\x20\xcd\x62\x12\x51\x66\xcf\x9b\x7c\x4f\xc2\x8a\xad\x17\x79\xf5\x07\x8e\x06\x76\xe0\x45\xbe\x85\x38\xa7\x63\x4a\xa0\xde\xb0\x48\xc1\x73\x5a\x18\x08\xff\x6f\x43\xa8\xe1\xf0\xff\x07\xaa\x41\xab\x09\xb9\x24\x8a\x8b\x59\xc6\x5a\xbf\x59\x55\xba\xd7\x4d\xf4\x04\xc0\xc2\x65\xe8\xe8\x23\xcd\x18\x86\x53\x52\x51\xd7\x45\x94\xd3\x15\x36\x6d\x64\xcb\x43\x1b\x12\x52\xbb\x7e\x9d\x3c\xb0\xc5\xc9\x28\x52\x59\x49\x7c\xbc\x6b\x3a\xb9\x11\x27\x4d\xde\xd5\x16\xec\xd7\xbc\x0c\xd8\xf4\x4f\xe0\xb7\x93\x7d\xf3\x81\xcf\x24\x08\x3e\x9b\x2b\xa6\x55\xdc\xbe\xc9\x28\x1a\x2f\x8e\x61\x22\x58\x1e\x73\x5d\x0d\xba\x3b\xef\x9d\xc6\x6c\x64\x83\x7b\x9f\x51\x9b\x0d\x49\x53\xa2\x63\x90\xa2\x0e\x76\xb9\xcc\xcd\x51\xcf\x66\xe3\xe0\x5e\x2c\x72\x9d\x38\xdb\x9c\xc5\x0f\xeb\x3e\xf0\x42\xb1\xb9\x8a\x3f\xae\xd5\x4a\xf1\x5e\x3e\x10\x3f\x52\x46\x96\x36\xa8\x7b\xc5\x4f\x17\x0a\xe2\x35\x95\x82\x42\x2b\x67\x36\xad\x71\x31\x28\x99\x2a\x24\xfa\xb0\xae\x5d\xac\x25\xc3\x73\xa8\x9d\xef\xbc\xdc\x34\x29\xaa\xb2\x90\xca\x56\x33\x5b\x06\xf9\xc8\xe8\x20\x1b\xb2\xe5\x22\x30\x31\x48\xba\xbe\x09\xe6\xfe\xd4\xc9\x97\x2f\x97\xf2\xf6\xa1\xd1\xc9\xcb\x64\x26\xe4\xfa\x65\x44\xcc\xc8\x39\x55\xa2\xac\x50\x67\x8f\xc2\xc9\x60\xe8\xfa\x29\xba\x73\x78\x26\x36\xc3\x51\x6b\xdf\xc3\x49\xcb\xf6\x4c\x21\xa2\x1e\x13\xac\x45\x64\xd4\x26\x08\x2f\x95\x68\x5c\x45\x1c\xf5\x58\xef\x76\x07\xf9\xdb\xee\x65\x25\x2c\x68\xb9\xcc\x6f\xfb\xda\x14\xb3\x4a\x97\x84\xa0\x9e\x80\x05\x4d\x2f\x88\x8c\x4f\xcd\x5a\x6d\xe2\x80\xb8\xb5\xb6\x7c\x70\xc0\x02\x5e\xe2\x16\xdf\x2f\xd6\xdf\x5f\x92\x4a\x86\xe7\x01\xe3\x8d\xf0\x14\xd6\x6f\x8f\x5d\x46\x0c\x3a\x47\x2f\x52\x4a\x6e\x19\xde\x12\xa5\xa9\x66\x23\x2c\xe9\x39\xcd\xbc\x3a\x37\x8c\xe4\x32\xe5\x53\xeb\xcb\x76\xe7\xd9\x29\x47\x98\x4d\xc2\xa6\x82\xf0\x73\x5d\x47\x4c\x24\x7e\x33\xf7\x47\x17\xf0\xff\x0d\xc6\x49\x22\xa1\x67\xd9\x0f\x6f\xbd\x8f\xc1\x7a\x64\xbb\x3f\x27\xbb\x1e\x74\x2a\xac\x6e\x96\x6b\xbb\x12\x26\xa8\x24\xe0\x92\xd3\xb5\xd2\xac\x36\x91\x15\x3b\x73\x0b\x3f\x00\xca\x94\x53\xf2\xb6\x29\x7c\xca\x15\x98\x46\xb8\x4b\x5d\x67\x2e\x13\x17\x49\x56\x59\x13\x3d\xe2\x3e\x83\x83\x8e\xb0\xe7\x3b\x30\x03\x4d\x07\x8e\xeb\x72\xf1\x19\x2b\x59\x4e\x96\xf1\x03\x04\x05\xd4\xd0\x19\xb9\xab\x81\x6b\x9d\x76\xe4\x4d\x68\xad\x65\x9a\xb4\x35\x35\x6f\xf9\x7d\xc9\xc8\x9b\x39\x15\x82\x65\x5e\x2a\x68\x6b\x2e\xa3\x5a\xd3\x64\x8e\x98\x92\x12\x73\xcf\x33\x66\xe8\xd4\x5c\x2a\x4d\x72\x9a\xcc\xb9\xa8\xd3\x8c\x8a\x3a\xf1\x78\x93\xf2\xe5\xe8\x09\xb6\x0e\x5e\xaa\xd8\x42\x80\x5f\xdf\xb7\x55\xc1\x38\xa0\xa7\x3a\x5d\xf0\x4a\x2f\x4d\x35\x44\x7b\x0f\x61\x9f\x51\xd6\x03\x2a\x01\xef\x86\x8c\xb1\xb9\x8e\x32\xb9\xc9\x6b\x13\x28\x17\x1e\x21\x64\xf6\x03\x43\x66\x3d\xd6\x20\x28\x17\x18\xd4\x2c\x9d\xcb\x27\x92\x4a\xf2\xc4\xc0\x7d\xc7\xf0\x73\xe0\xdc\xae\x1c\x5f\xe8\xad\x16\x22\xb5\x12\x99\x17\xa5\xcc\x79\xed\x46\x6d\x01\xaa\x73\xc0\x08\x24\x90\x55\x01\xf5\x92\xda\x99\xd1\xb3\x4a\x98\x53\x6e\x2a\xe0\xbc\x7d\x43\x34\x2d\x67\x4c\x9b\xde\x88\xa8\xf2\x7b\x56\x76\xa7\x48\x3f\x5c\xbd\xb6\xa3\x94\x57\x6d\xed\x40\x47\x55\x54\xf2\xc1\x7d\x05\x91\x2c\xc0\x0e\x4d\x65\x18\x23\x82\xee\x87\xae\xa6\x2b\x56\xf4\x33\x00\xf3\x83\xa5\x5d\x95\x08\x61\x4f\x62\xca\xae\xe2\x59\xfe\xf9\xcf\xef\x63\x6b\xde\x9d\x36\x5f\x6e\x02\x90\x27\x59\x66\xe9\x13\x4f\xad\xa7\x29\x39\x33\x2f\x9f\x87\x02\xcb\x9e\x4b\xe0\x45\x5c\x93\xa7\x27\x9e\x1e\xa4\xfe\x2c\x74\xdc\xde\x2a\x27\x72\x9a\xad\x22\xb0\x57\x3c\x65\x42\x1b\x64\x53\x2a\x72\x06\x5f\x84\xe4\xa1\xb8\xe6\x98\xe9\x0f\x46\x80\x52\x39\xf9\x3d\x17\x4d\xb6\xca\xe6\xb0\x0c\x81\x32\x57\xd7\x69\x82\x15\xd3\x98\x2e\x0c\xb2\x0d\x48\x3d\x27\x8a\xe7\x55\xa6\xa9\x60\xb2\x52\xe1\x95\xda\x9f\xe7\xbc\xa6\x19\xfb\x84\xb7\x63\x9f\x59\x95\x9b\x5e\xdb\x0c\x02\x04\x2b\x35\x99\x6a\x97\x39\x84\x8e\x5e\x9b\x18\xd0\xf4\xa2\xe6\x25\xea\x6c\x7b\xec\x13\x4b\x6c\xb2\x8e\x22\xab\x66\xbc\x23\xb3\x54\x30\xbb\x10\x6a\xdf\x1c\x87\x14\xfc\x8f\xa8\x8a\x0b\x9d\x45\xde\xa2\x26\x63\xeb\xb2\x3a\xaf\xa9\x75\x5f\x29\xd6\x24\xbb\x0f\xcd\xd0\x19\x71\xfb\x07\xa6\x09\xdb\x16\xa6\xc9\xcf\x77\xef\x4d\x20\x65\x05\x13\x29\x94\xc0\x7b\xdb\x5c\x20\xdc\xa5\xbd\x1e\x91\x2d\xd7\x16\x4b\xb1\x5c\x95\xb7\x16\xb9\xf2\x24\xe5\xb9\xcc\x52\x45\xd8\x27\x5d\x52\x83\x3f\x73\x83\x29\xeb\x6f\xa6\x84\x8a\x45\x40\xad\xcd\x97\x54\x91\x9b\x3c\x0b\x7f\x94\xfe\x9c\xf8\x23\xc5\x92\x92\xe9\xa0\x68\xe2\x1e\xb5\x3e\x5c\xe7\xed\x0d\x6c\x3d\x5e\x91\xaa\xf1\x57\x17\x13\xd3\x14\xe3\x0d\x1a\x4f\x28\x0e\xa5\xef\x96\x4a\xfc\x16\x54\xa9\x5a\x50\x05\xe2\x63\xaf\xad\x6a\xa5\x97\x08\x18\x02\x15\xb2\x7c\x4a\x84\x5c\x9a\xa9\x1f\xfd\x53\xdb\xbd\x5b\xaf\x04\x74\x5f\x9b\xf0\x72\xac\x1e\x40\x05\xc4\xd1\x63\x37\x23\x08\x2e\xc6\x7f\xab\x35\x45\xfb\x71\x65\x21\xfb\x64\xd7\xbe\xdf\xcb\x1e\xe7\xbf\x13\x1e\xf2\xd6\x4f\x25\xf6\xde\x23\xae\x2e\x8a\x2a\x54\x1b\x13\xa9\xf5\x94\x8f\xac\x7c\xe4\xec\xe9\xc2\x46\x79\x8d\x9f\xb8\x9e\x8f\x6d\xa0\xf4\x05\xc8\x06\x17\xbf\x80\xff\x05\x8e\x8f\x12\xf6\x65\x9a\xda\xd0\x4b\x9b\xde\x16\x13\x3a\x4c\xbc\xea\xc0\x23\x88\x84\x1c\x91\x8a\xa7\x7f\x0a\xea\xbb\x7f\x2d\x90\x08\xf3\xe9\x14\xf2\x1f\xc7\x54\xee\xb2\x5f\x2c\x69\xab\xec\x43\xcb\x8c\x86\x68\xa7\xec\x6d\xf6\x08\xb5\x39\x7e\xd7\x91\x35\x2e\x10\x65\x8e\xab\x89\x04\xac\x44\x27\x7a\x39\x80\xee\x2a\xa5\x9a\x2a\xa6\xc3\x34\x95\xf1\x57\xc0\xeb\xde\x60\x26\xff\x36\xd8\x9f\xc0\xe4\xc6\x20\x79\x8a\xcb\x95\x4b\xc6\x7f\xb4\x4c\xa9\x68\xbd\x69\xd8\x51\xbb\x89\x21\xd8\x65\xee\x6a\x1d\x39\x87\x5d\x1c\x25\x35\x87\x9b\x04\xe5\xdb\x8e\x00\x53\x3b\xc7\xef\xbf\xbf\xb9\x8a\x65\xc6\x9b\x2f\x1d\xcf\x0a\xff\x6e\x6f\x93\x05\x29\x30\x8a\xf1\x9f\x2a\x5f\x7e\x85\x92\x0f\x35\x74\xd9\xf7\xf7\xb5\xb6\x59\xc2\x1a\xfd\xf2\x15\x57\x0f\xfb\x94\xff\x56\x3a\x6f\xdf\xbc\xaf\xdf\x5c\x13\xfb\x74\x9b\x8a\xb8\x63\x90\x7d\x2b\x90\x77\xae\x14\x35\x4b\x58\x63\x98\x4a\xb9\x7a\x38\xb6\x00\x5a\xa4\xef\xbb\xd2\x21\xbc\x2c\xe5\xf7\xb2\xf4\xe5\x4a\xae\x78\xd5\x97\x16\xb2\x22\x4f\x36\xc5\x7c\xb0\x7c\xf7\x91\x17\xaf\xc9\xb5\x50\x55\xc9\x1a\x0f\xdb\xe5\xc1\x0c\x43\xb5\x47\x69\x0f\x4a\x16\xa8\xd7\x47\x54\x94\x1f\x15\x5c\xed\xc6\xbe\x58\xdd\x7c\x41\x4b\x0d\xb2\xe0\x21\x20\xb6\xee\xdc\x21\x72\xef\x81\xd8\x0f\xc8\xde\x4c\x5d\x20\x5a\xdb\x2b\x82\xab\xba\x9b\xc6\xbd\x00\xa8\x68\x1c\x58\xbe\xad\x6b\x12\x91\x8b\x94\x3d\x5e\xa8\x94\x7e\x39\x82\xa9\xba\xd0\xeb\xf6\xba\xa8\x22\x27\x5f\x9e\x84\x8c\x71\xc7\x73\x9e\xd1\x32\x5b\xb4\x2a\xcf\x37\x3d\x19\xea\xee\x86\x04\x0f\xc3\x57\x27\xe4\x4c\x96\x30\x76\x42\x05\xc9\x98\x4b\x82\x66\x91\xd3\x02\xa5\xa0\xf3\x17\x79\x07\x0e\x67\x89\x41\xec\x7d\x10\xf0\x4d\x1d\x9f\x66\x79\x8c\x56\x6d\x9a\xab\x86\x0c\x73\x61\x68\xf3\x84\x7c\x6f\xe9\xa6\xe5\x45\x10\x36\xcc\xf6\xb8\x37\x5e\xee\xc9\xbc\x1c\xa5\xce\x92\x7a\x66\x4f\xca\x17\xb2\x6a\x3f\x7b\xc1\xa7\xd1\xad\x24\x9a\x71\xfd\x81\x15\x72\xaf\xdc\x27\x76\xb9\x64\x7a\xe0\xda\x3c\x90\x8a\x43\x01\x66\xaa\x09\x45\x1c\x95\x54\x19\x35\x92\x21\x9a\x16\xba\xf6\xf2\xea\xfa\xf6\xc3\xf5\x9b\xcb\x8f\xd7\x57\xaf\xc9\xd7\x76\x1c\xee\xcb\x1e\x13\xf2\xd1\x2f\x83\xe5\x05\x14\xdb\xb2\x37\xf5\x4c\x46\x16\xab\x77\xea\xd0\xea\x22\xaf\x50\xf8\x81\x0a\x72\x23\xb8\x6e\xca\xd2\x63\x9c\x59\x26\x85\xf5\x51\x32\x7d\x5b\xb3\xc8\x8c\x6b\x9b\x1d\x1b\x87\x32\x3f\xbb\xde\x3a\x06\x6d\x8a\x4c\x40\x71\xea\x7a\x15\x47\xb7\xaa\x34\x87\xb6\x2f\xc9\xd8\xd5\x7b\x3e\x88\x5c\x5c\x97\xf8\x76\xf9\x9f\xd0\x96\xdb\x3c\x0f\x25\xdd\xef\x5c\xfd\x1c\x57\x01\x46\x96\x58\xe6\x13\xe1\xe8\x74\x32\x39\x9d\x00\xdb\x70\x3a\x39\x75\xbc\x6c\x56\xfb\xeb\x5a\x2a\xdc\x0c\x1b\x57\x29\xad\x7d\x5b\x26\x84\x7c\xe7\xc2\xd4\x21\xf7\xee\x92\x73\x70\xed\xf7\xdb\x94\x00\xc6\xac\x65\xed\x3b\x17\xa4\x3b\x04\xad\x66\x75\xef\x4f\xdc\x7a\x13\xcf\xf8\xa3\x4d\xcb\xb9\x57\x63\x48\x33\xc1\x48\x78\xf0\x57\x66\xc5\xfb\x0f\xdf\xee\x77\x66\x88\x44\xa2\xe7\x65\x71\x8f\x9d\x55\x22\xf3\x1c\xeb\x39\xcd\xeb\x0c\x72\x8d\xaf\x6e\x28\xe2\x0b\x57\x2c\x60\x71\xab\x69\xc7\x3d\x8c\x44\xe9\xae\xd3\x25\x45\x42\xfd\xd8\xa6\x89\x10\x8d\x14\xb7\xe7\x12\xfb\xb6\x26\x9d\x72\x29\xb6\x2c\x65\xbc\xa8\x67\x76\xf1\xe1\xfa\xf2\xea\xdd\xf5\x24\xdf\xae\x7e\x3a\x00\x86\x64\x22\x2d\x24\xef\xce\x93\x34\x26\x05\xd5\xdb\xb3\x18\x87\x63\xd1\x7a\xd0\x43\x60\xd1\xba\x73\x07\xc3\xee\x81\x57\xc8\xcf\x66\x11\xf3\x60\x40\xcb\x42\x66\x72\xd6\xb7\x2c\x7e\xc4\x09\xff\x02\xbd\xfd\xc7\x74\x1c\x52\x3a\x30\x4a\x8a\xd5\xf3\xc3\x08\xb0\x7a\xee\xf6\xb2\xd9\xb0\x5a\x54\xd3\x41\xf1\x85\x2f\x74\xcf\x9e\x8d\x99\x5f\xd9\x48\xd4\xe7\x00\x2a\x72\x55\x0e\x9b\x7a\x7d\x05\x2b\x73\x8e\xd1\x7b\xc7\xe4\xf2\x0f\x7c\x42\xdd\x0c\xbe\x41\xc6\xb7\x9d\x60\x1d\x77\x34\xae\xcf\x36\x35\x28\x4a\x36\xae\xcb\x12\x4d\x79\x06\xe1\x49\x0d\x23\xe1\x11\x87\x8e\xee\x9d\x2a\xd9\x69\xa5\xb1\x8f\x6c\xb1\xac\x52\x6e\x98\xe2\x5a\x89\x8f\xe9\x98\xbb\x2b\x50\xd6\xe5\x43\xad\x9e\x8c\xce\xb0\xac\x50\x69\x4d\x72\x45\xc9\x1f\x79\xc6\x66\x50\x4d\x99\x8b\x99\x6a\x32\xdb\xd9\x90\x9e\x8e\x01\x20\x42\x8c\x35\xe4\xb0\xb6\x60\xbd\x33\x7f\x35\xc9\x7a\x10\xa8\xdf\x7f\xf7\x11\x2a\x9d\x83\x3b\xc7\x81\xd5\xe4\x66\x3a\x9d\x84\x88\x90\xf1\xb8\x0b\x0a\x3e\x7e\x77\xf5\xdd\xd9\xdf\x8c\xdc\x93\x66\xe7\xe4\xcf\xcc\xae\x00\x22\x9d\x74\xc9\x13\x4d\x9e\xe6\xb2\xae\x01\x0d\xbb\xd0\x40\x03\xdc\x52\xf4\xe6\xb3\x6f\x5d\x98\x37\x85\xec\x04\x0e\xe0\x34\x5a\xbd\x71\xa6\x30\xd8\xc6\x79\x69\x1c\x5d\x48\xda\x23\x61\x3f\x28\x09\x72\xb6\xaf\x75\x97\x32\x50\x4b\x8a\x6a\x4a\x24\x67\x94\xa8\x45\x9e\x71\xf1\x30\xaa\x4b\x78\x4d\xa5\x4d\x5e\xca\x88\xf9\xc1\x5d\xd5\x92\xd1\x6c\x17\x42\x77\x00\x00\x8f\x22\x72\xfa\x40\xb6\x18\xb0\x84\x18\x3c\xf4\xef\x0e\xa5\xa2\x3a\x2a\x92\x42\x9d\x9c\x7c\x7e\xdb\xca\x55\xa2\xf8\x3e\xa9\x12\x74\xd8\x22\x49\x82\xdc\xdc\xbd\xb9\xbb\xf9\x5c\x8c\x9d\x9b\x78\x05\x58\xd8\xf3\xc9\x37\xfc\xa7\x2e\xc5\xc1\x98\x64\x55\xf7\x3b\xa8\x8a\xb9\x95\xa5\xa6\xdb\xcb\x66\x87\x23\xcb\x64\x4e\x8b\xcb\x4a\xcf\xaf\xb8\x82\x2c\xb8\xb1\x4c\xe8\xca\xf7\x5e\x6c\x1d\xd6\x9e\x77\x75\x0e\xb9\x03\x24\xfb\xde\x9b\x7f\xbf\xbc\x25\xb4\x32\x87\xaf\x6d\x11\xda\xbd\xb1\x6c\xfe\xca\xee\x30\xe3\x44\xcf\x75\xd9\xaf\x3b\x56\xe5\xde\x3a\xf4\x9a\x9e\xcb\x35\x79\x30\x6b\x1f\xd1\xac\x0d\xc8\xea\xb3\x36\x65\x73\xc1\x35\xa7\x5a\x96\x87\xb2\x07\xb6\x06\xa8\xd5\x84\x95\xd2\x32\xb7\x37\xf2\xc6\xbd\x01\x9e\x5d\x81\x9c\xd9\x4a\xb7\x8d\x96\x11\x64\x61\x38\x99\x1b\x61\xa4\x4e\x9a\xb0\xa5\x30\x99\x11\xd4\x5c\xc5\xd1\xb9\x7b\x27\x60\xdc\x3f\x58\x05\x3b\x54\x39\xca\xfe\xf8\xfa\x0f\x9e\x85\xfc\x8f\x4d\xb9\x52\x57\x1b\xdb\xea\x3f\x13\x29\x04\x4b\xc2\xea\x8f\xc7\x9c\xdc\x4f\xb1\x88\x92\xff\x24\x96\x2c\x05\xb8\x05\xff\xb7\xa2\x19\x6e\x5d\xd8\x01\xc4\x4c\xb2\x75\x0c\x07\x81\xaf\xf6\x41\xdb\xf5\xd5\xa7\x8a\xde\x82\x80\xc0\x2a\x85\x85\x8b\x70\xd1\xba\xa4\x42\x99\x83\x8c\x55\x90\x9c\x5a\x6f\x89\x53\x72\xa6\x93\x22\xc0\x71\xe0\xa0\x41\x9f\x59\x25\x7c\x2e\x10\xd7\xf6\x11\x4f\xf7\xdb\x3a\xe8\x33\x74\x92\x07\x71\x35\x80\xcb\x72\x10\xd5\xad\xed\xba\x3e\x74\x7f\xf1\xc8\x7a\x91\x6f\xb9\xd2\x18\x04\x83\x2f\x43\xf2\x2b\x8c\xbf\x33\x1c\xf3\x2d\x91\x25\xe1\xc5\x7f\xd1\x34\x2d\x5f\x23\x97\x60\xa5\x3e\x59\x86\xf8\xb8\x73\x55\x57\x94\xa1\xa2\xf6\xa3\x39\xd3\x8b\xc2\x16\x8f\xfb\xf8\xe6\x16\xfa\x52\xe4\xf7\xbf\x7d\x05\x2c\xf4\xbf\xfe\xfa\xb7\xaf\x82\xa1\xe6\xf9\x02\x2b\xff\xd9\xdc\x16\x8e\x11\x68\xd2\x0a\x16\x81\x4c\x47\x86\x09\xbd\xc3\xb8\x0a\x43\x2e\x2c\x6a\x42\x08\x36\xc0\x52\x93\xb9\x7e\xac\xea\x10\xed\x30\x44\x3b\xc4\x26\x8b\xf3\x25\xd7\x83\x68\x81\xbc\xfe\x21\xd3\xca\x2a\xd6\x46\x84\x7d\xfb\x39\x22\xec\xce\x03\xea\xbe\x3d\x71\x5b\xea\xbb\xd7\x85\x45\xd8\x36\x01\xa9\x57\xef\xef\xfe\xeb\xdb\xcb\xaf\xae\xbf\x85\x75\x5a\x7f\x3d\x73\x05\xac\x40\xb2\x7f\x37\xf6\x3d\x5d\xb8\xd0\xbd\xde\xaf\x63\x80\x58\x72\x09\x10\xe4\xfd\xdb\xbb\x48\x6f\x80\xc3\x9a\x3b\xc4\x34\x64\xdf\x8e\x6b\x0d\x30\x2f\x41\x3d\xd1\x7d\x45\xab\x1f\xd4\x68\xe0\x95\xdb\x68\x69\x35\xcc\x49\xe3\x2a\x8e\xa0\x56\xe8\x3a\x46\xf2\x99\xb0\x72\x66\xd3\x70\x23\x5f\xa4\xb9\xfa\x30\x47\x12\xca\x42\x96\xf1\x29\x17\x02\x03\x95\x4b\x2f\x2f\x83\x41\x48\x48\x22\x4a\x43\x3c\x0d\xd9\x64\x4a\x39\x82\xf1\xb9\x42\x75\xb1\x2e\x9b\xe1\x3e\x51\xfd\xda\x01\x6c\x26\x43\x97\x8a\xd1\xf3\x06\x68\x05\x7e\x77\x99\x57\x36\x64\xaa\x44\x02\x02\xa5\xb9\xeb\x42\x88\x07\xb2\x8e\xaf\x49\x69\xb8\x9c\xbd\x12\x32\xbe\x1d\x9d\x98\xc0\xa8\x7b\x8c\x2b\xab\xfb\x3b\xc4\x45\xab\x3b\x5f\xce\x81\x42\x63\x8e\x98\x50\xe5\x78\x2d\xeb\x48\x1d\x95\x2c\xe5\x99\x61\x80\xbc\x40\x4a\xf4\xe7\x83\xe9\x13\xf6\xad\x4b\x28\xe6\x52\x4b\xd1\x3b\x34\x76\xdd\xe7\x6d\xbc\x74\x0b\x6f\xbc\x69\x12\xd1\x36\x47\x8c\x21\x36\xb5\x59\xd8\x08\x00\x8e\x3a\x4b\xe1\x4c\xc0\x6d\x0b\xf0\xd1\x59\xcb\xf4\xe6\x6a\x4f\x88\x60\x48\x14\x84\xed\x98\xd9\x15\x63\x5c\x51\xd3\xe8\x88\x77\xf3\x89\xdb\xf5\x9b\x2b\xcb\xb7\xbb\x70\x76\x65\x21\x9f\x6c\x06\xfd\xbd\xb1\x22\xb2\xd4\x4f\xb2\x8c\x4f\x6c\xd6\xfe\x70\xc9\xbb\xd0\xfe\xb6\x92\x2f\xe2\x25\x5e\x53\x9c\xe3\xe7\x70\x55\xef\xe0\xaa\x2e\x95\x2a\xde\x74\x65\x5f\xea\x8d\x7d\xde\x9b\x7a\x14\x0a\xfe\xb3\xca\x4a\xe5\xae\x47\xe4\x8e\xb9\xcf\xac\x5a\xce\x9c\x75\x83\xdd\x28\x28\x47\x3d\x0c\xb1\x37\x6c\x56\xca\xbf\x41\x0e\xf7\x18\x44\xe6\xbe\x41\x3b\x14\xd6\x36\xcd\x32\xb3\xab\x52\xf8\x35\x54\x6d\xb6\xa7\x11\xc1\xea\x9e\x39\x2d\x14\x56\x7f\x49\xe5\x93\x78\xa2\x65\x4a\x2e\x6f\x6f\xf6\x83\xbd\x22\x22\xf4\x10\xd6\xc2\x32\x9b\xf7\x88\xd1\x6b\xba\x07\x87\x6a\x9b\x17\x9f\x91\x7b\xae\x55\xab\xbe\x86\xa7\x04\x31\xa8\xbd\xf6\x22\x30\x98\xc5\x60\x11\xdb\x53\x14\x27\x21\x88\x4c\x34\xcd\x5c\x31\x72\xa6\x9f\x18\x13\xe4\xd5\xab\x57\xa8\xd9\x7e\xf5\xbb\xdf\xfd\x8e\x40\x25\xda\x94\x25\x3c\x5f\x7d\x11\xde\xfa\x5f\x5f\x7e\x19\x32\xe8\x7f\x5c\xbe\xfb\xd6\x56\xeb\x57\x98\x9b\x14\xc7\x86\x03\xf6\xbb\x57\x23\xf2\x7f\xee\xbe\x7b\xdf\x24\xbb\x6f\xff\x0a\xf0\x53\x6f\x51\x10\x77\xee\xb9\x46\xfb\xda\x6b\xaa\xe7\xb0\xe7\x50\x9b\x62\x3a\xf5\x6a\x13\x60\xd5\x09\x1d\x58\x73\x13\xb3\xaa\xf1\xd9\x1c\x36\x95\x0b\x80\xdf\x0c\x7c\xbe\xb9\x59\x26\xd8\x13\x5c\xf2\x41\x74\x9d\x87\xd1\x6a\xf2\x12\x30\x86\x59\xf0\x88\x64\xfc\x81\x91\xa9\xfa\xba\x94\x55\xd1\x14\x46\x2a\x99\x32\xc2\x87\xad\x0b\x82\xc3\x35\x30\x14\x54\x3e\xe3\x70\xe6\x7d\x7b\xb9\x63\x2d\xa1\x16\x25\xb8\x1a\x85\xb6\x06\xa8\x0b\x12\x42\x8c\x62\xf6\xf3\x79\xec\xe4\xad\xb9\xde\xd6\xb3\xc1\xc3\xb5\xb5\x71\x1a\xb4\x47\x33\x29\x66\x3e\x2c\x34\xd4\xdf\xb9\xe1\x2d\x8a\x20\x13\x62\x64\x59\xaa\xd8\x2a\x93\x09\xc6\xe1\x7c\x2c\x2b\xa5\xbf\xaa\x44\x9a\x05\x17\x16\xe8\x5b\xca\xe1\xcd\xca\x88\x18\x52\x62\x0d\x23\xa0\x2e\x4b\x12\xa6\x10\x0c\x7e\x9c\x40\x4d\x05\xdd\xbc\xfd\x23\x9a\x4e\x83\xc7\x93\xd3\x75\x43\x5a\xfb\x92\xb9\xba\x54\x10\x5a\x69\x39\x86\x4a\x42\x2e\x76\x67\xf2\xc5\x17\xc1\x23\x40\xe9\x8e\x11\x94\xdf\xa8\x99\xbb\xd5\x21\x3d\x98\xf1\x0b\x76\xc4\x0c\xb4\x65\x1d\x06\x13\x58\x9b\xe8\xbd\xab\xe6\x89\xb3\x11\x34\x67\x23\x83\xd2\x71\x66\xc1\x83\x2d\xa5\xa0\x56\x7c\x26\x58\x89\x0a\x2d\xa8\x1e\xbb\x54\x89\x36\x66\x1d\xdf\xa0\x8c\x62\xe8\x9b\xc1\x2b\x8a\xd0\xd9\x0c\x4a\xcb\x3d\x1a\xcc\x5c\xe6\x34\xe3\x7f\x6f\x72\x5f\xcf\x19\xb9\xbd\x7e\x07\x31\x43\xc0\xa1\x1b\x96\x4f\xb3\x90\x60\x6e\x6c\x75\x2a\x01\x03\x5d\x0d\x57\x3e\x21\xe4\x5a\x49\x0d\x09\xa1\x4d\xff\xf6\x50\x54\x5d\x83\x06\x1c\xc6\xc6\xf7\x99\x4c\x42\x52\x13\xd5\x9b\x66\x8b\xd0\x89\x94\xc0\xa7\x64\xce\x68\xca\x6c\x71\x4f\xc3\x6c\x15\x05\x4b\x27\x84\xbc\x31\xb7\x74\xca\x13\xa8\xa0\x6b\x7e\x4b\x59\x5a\x19\x26\x1e\xb2\x38\x04\x0f\xf8\x71\xce\x88\x2c\x53\x86\x15\x94\xa6\x24\xf1\xbb\xf5\x28\x1f\xc4\xa3\x41\xb1\xc8\x7b\xae\x4b\x5a\xda\x1a\xc0\xf6\x24\x82\x87\x33\x88\x0e\xab\x50\x41\xaf\x30\x32\x16\xb2\x0e\x89\x6b\x76\xad\x47\xa9\xbd\xf8\x32\xbf\x41\x76\x48\xd7\xfa\x14\xe7\x05\xf8\xbf\x8b\xae\x0e\xbe\x5b\xbd\x48\x1c\x0f\x98\xe9\x55\x6c\xa0\x1c\x35\xd2\xc9\x1c\x59\x9a\xa5\x3b\x4a\x08\xca\x48\x34\xae\x46\x24\x43\xde\x85\x3b\x2c\x50\x3b\xd8\x32\x3d\x31\xac\xa5\xae\x68\x96\x2d\xc6\xec\x93\xa1\x26\xe6\x12\x03\xe1\x83\x54\x09\xae\x38\x17\x8b\xac\x80\x0a\x97\xaf\x28\x99\xc6\xe4\x8a\x27\xb8\x26\x21\x21\x1a\xf1\x04\xbb\x85\x4a\x5b\x95\xc6\x74\x4d\xa3\xf5\x9f\xc4\xad\xf3\x91\x95\x0b\x3b\x42\xc4\x87\x3d\x2b\x47\xf6\x2d\x08\xbd\x5b\xf9\xf5\x97\x57\x80\x7d\x97\x4a\xb1\x3d\xab\xc4\xee\x5e\x97\xf8\x45\x15\x62\xdf\x67\x29\xf6\x9d\x8a\xb1\xef\x52\x8e\xbd\x6f\x41\xf6\x1d\x4a\xb2\xef\x56\x94\xbd\x77\x59\xf6\xe7\x28\xcc\xbe\x63\x09\xf0\xdd\x8a\xb3\xef\xa7\x10\xf8\x33\x14\x68\x3f\x66\x89\xf6\x9d\x4f\xa8\x7f\x99\xf6\x7d\x9d\xcf\xb3\x95\x6a\x7f\x11\xc5\xda\x9f\xbb\x5c\xfb\xce\x05\xdb\x77\x2d\xd9\xbe\x53\xd1\xf6\x1d\xc0\xbf\x77\xe1\xf6\xdd\xe1\xfe\xd9\x8b\xb7\xbf\x80\xf2\xed\x2f\xa5\x80\xfb\x4e\x9c\xcb\x3e\x8a\xb8\xf7\x06\xe1\x7d\x14\x72\x8f\x09\xc2\xc0\xb6\x0f\x31\xd4\xc1\xf4\x1a\xcd\xd4\xfd\xc2\x95\x0e\xb1\x82\xe0\xaa\x9c\x18\x35\x24\xc8\x94\x9e\xfc\x09\x85\xd0\x7c\x11\x3c\x5e\x64\x8b\x3c\x28\xe9\x4a\xbc\x1c\x69\x93\x0d\xbd\x2a\x2b\x36\x22\xa9\x14\xa7\xda\xaa\x93\x0a\x99\x62\x1e\xc6\xaa\x70\x71\x0e\xb5\xab\x61\xba\xe6\x1c\xce\x82\xea\xcf\x35\x8d\x96\xcc\x0c\x46\x1f\x29\xcf\xe8\x7d\xe6\x24\x78\x70\x43\x43\x55\x22\x24\x7c\x70\xce\x6d\xeb\x86\xec\x2e\xa5\xb6\x34\xa4\x2d\x12\x2e\x24\xe0\x2e\xc8\xa1\xe4\x0f\xdb\x1c\xba\x37\x78\x5b\x3d\x19\x35\xde\x36\x20\x02\x2c\xde\x14\x2d\x47\xb5\xc3\xdf\x59\x29\xa3\x46\x58\xa3\x9a\x89\x87\xce\x30\x5b\x72\xd3\xc2\x9c\xe0\x9b\xd6\x02\xcd\x0f\xc0\x3e\x3f\x5a\x13\x19\xc4\x9a\x7b\x39\x03\x4a\x89\x47\x03\xd6\x76\xf8\xe1\x1e\x56\x75\xf0\x2b\xd7\x1c\xd5\x0b\x55\xb0\x79\x6a\xf1\x38\x6a\xd5\xa1\x35\xfb\x68\xf3\x7b\x61\x5a\xae\xa9\x2d\x8d\x84\x5a\xfd\x5d\x41\xb1\x0e\x4b\xaf\x44\x53\x30\xbf\x9f\xfa\xb9\xc7\xb1\xa2\xa5\xff\x1d\x2d\x7a\x19\x9a\xea\xaf\x5b\x35\xb0\xe8\xbd\xac\xb4\x8b\xac\xb7\xbf\x43\xc5\x17\x2d\x9d\x51\xee\x70\xaa\xe9\x3e\x3a\x84\x68\x46\x79\x17\x90\x46\x1f\x8c\xb6\x07\xd0\x88\x30\x9a\xcc\x0d\x07\x38\x46\x03\xbf\xe1\x52\x1d\x3b\x7a\x65\xb6\x0e\x19\x43\xb9\x4c\x62\xe2\x80\xaf\x3e\x0d\x07\x72\x9e\x67\x88\x33\xcb\x38\x87\x36\x65\x9d\xa6\x2c\x73\x2a\x1a\x37\xea\xa8\x31\x9d\xfa\xcb\xde\x1e\xa7\x5a\x81\x55\x82\x0c\xb8\x94\x3d\x38\xe3\xca\x4c\xe7\x81\x2d\xea\x8b\x11\x35\xde\x9a\x15\x35\x89\x27\x0c\x36\xb5\x1e\x2d\x95\x58\x19\x09\x4a\xb6\xc6\x8e\x06\x7a\x0f\x58\x08\x75\xaa\x23\x2f\xd1\xc5\x9c\x27\x90\x9a\xcc\x74\x6d\xdf\x75\xa7\x5a\x1f\x46\x9c\x78\xeb\x1d\x91\x62\x86\xeb\x80\xa9\x43\x9a\x12\xb3\x26\xa6\x14\xe1\xb0\xcb\x39\x2d\x1f\x58\x5a\x73\x49\x13\x72\x6b\x16\xef\x64\xe0\xa8\x31\x4b\x47\x8d\xc0\xb9\x91\x2e\x5a\x89\xa8\xcd\x84\x4e\x27\x93\x53\x9b\xd2\x6d\x35\x2d\x75\x34\xf6\x8a\x15\x78\x7b\x88\xb9\xad\xfb\xfb\x8e\x16\x0a\xc5\x7d\xc3\xde\x80\xba\x4f\x42\x3e\x78\x3d\x77\x36\x3b\x1a\xe1\xee\xbf\xbc\x9c\x1e\x02\x50\x5f\xb5\x6d\x1f\x95\x6d\x94\x61\x0e\x5b\x7f\x35\x6d\x2f\x15\xed\x26\xf5\xac\x3d\x29\x7b\xe3\xfb\x6a\xd6\x7b\x29\xf8\xf2\x20\x67\xb4\xe5\xb6\xbb\x5a\x0f\x9c\x8a\x5a\xe5\x2d\x83\x5c\xd5\x6c\x59\xd6\x38\x0e\xd1\xb5\x67\xf1\x55\x5b\x6e\xcf\xe7\xbb\xb6\xdc\x6e\xa6\x80\xfe\xd6\x27\xbd\xf7\x9d\x09\x6b\xb6\x4e\xc5\xab\x4e\xc8\x91\x9c\xda\x96\xdb\x81\x9d\xdc\x96\x5b\x9c\xd3\xdb\x72\x8b\x71\x82\x5b\x6e\xb1\xd2\x19\xb6\xdd\x2f\xb0\x9f\x7a\xbb\x6c\x09\x79\x96\xb5\x03\x96\x0b\x44\xdd\xc2\x43\x72\xbd\xee\xad\x25\xd4\x78\x75\xe9\xbd\x92\x59\xa5\xc3\xf3\x7b\x6f\xea\xce\xa7\xfb\x30\x71\xa7\xd9\x8c\x25\xf6\xcb\x1d\x7b\x7c\x03\x70\x6d\x48\x8e\xfb\xf5\xda\x0b\xb5\x1f\x53\x63\xb7\x4b\x0a\x15\x6c\xcf\x9d\x48\x05\xdb\xe1\xd2\xa9\x60\x7b\x1e\xcd\xa0\xeb\xa0\xae\x86\xe6\x32\x55\xb6\x18\x77\x48\x74\xa2\x15\x4a\x10\xce\xb6\x84\xb9\x2d\x63\xe4\xb2\x3e\xea\xa5\xdd\x55\xd4\xce\xa3\xff\xf2\xf6\xa6\x97\xe4\xef\x7d\xbf\x41\xf6\xf7\xdf\xf8\x19\x4b\xff\x37\x28\xce\xfb\x7e\x3a\x57\xcd\xca\x6d\xec\x58\x24\x39\x7e\x1e\x39\x68\x65\xda\x6f\x0d\x2d\xf2\x73\xd7\xb5\xeb\x9c\x63\x00\x44\x43\xb5\x9a\xea\xe9\x9e\x7f\x67\x8c\x6f\x30\x79\x1e\x99\xe9\x88\xf2\x0f\xec\x47\x50\x5a\xb2\xe5\xd6\x3a\xa9\xd3\x0f\x6e\xb1\x56\x41\x8a\xca\x1a\x4f\x43\x54\xc8\xf4\x35\x1a\xf6\xa8\x10\x52\xa3\x2f\xc6\x08\x95\xeb\x6a\xd4\xf8\x0d\x7b\x51\xee\xa5\x17\x14\x37\x39\xfd\x9c\xfc\x94\x60\xe5\xb7\xb1\xa7\x48\x76\x76\x38\x6a\xa8\xdb\x1e\xdc\x3c\x6c\x4f\xee\x00\x55\x32\x67\x39\x85\x7f\xbe\x75\xcb\x33\x58\xc6\xba\x5b\x83\x16\x89\x95\xb9\x22\x72\x3a\x6a\x85\xe3\x9d\x3c\x86\x15\xea\x5c\x6d\x3b\x3a\xbc\xd4\xa7\xb0\x87\xcd\xb8\x6d\x71\xc4\x06\xae\x41\xb0\x05\x5b\x80\x4b\xd2\x50\x6b\xd9\x0c\x81\x79\xc4\xdd\x7b\x86\x85\xef\xc7\x5a\x8c\xed\xb9\xd4\x0a\x7d\xd5\x09\xa3\x9a\xed\x69\x2b\x07\x7a\x4c\x61\x50\x27\x0c\xea\x84\x7f\x6a\x75\x82\x47\xd3\x1d\xae\x5f\xa3\x25\xf0\x93\x09\x3a\x55\x41\x93\xd1\x7a\xd2\xd4\x89\x34\x77\xd2\x89\xfc\xb2\x6c\x6b\xeb\x8d\x4c\x8d\xfa\xfa\x49\xad\xdd\xab\xf4\x74\xfc\x7b\xc2\x44\x22\x53\x28\x5b\x0a\xfd\x97\x4a\x03\x57\xd9\x48\xaa\xfe\x5c\x72\x37\x96\xaf\xf1\x87\xbe\xfb\x72\x0f\xbd\x50\xb0\x0b\x5f\x7e\xbb\x1f\xde\xaa\x17\x02\x6d\xb8\xb0\xba\xae\x87\xdd\xb2\xba\xb6\x92\x65\xc7\x9a\x60\xeb\x8c\xe7\xdc\x3a\xab\x1a\xec\xc2\x54\x67\xc9\xbe\x75\xed\x0c\xbb\x99\x24\x45\x35\xb2\x5d\x4e\x72\x96\xcb\x72\x31\xaa\xbb\x35\x3f\xb6\xc6\xb1\x6f\x9c\x03\xd3\x97\x54\x65\xc9\x84\xce\x16\x1e\xfb\xf7\x39\x71\x7f\x6e\x47\x8f\xcc\xfc\xd5\x07\x1b\xeb\x0e\xd1\xb4\xf6\xfd\x6f\x6a\xf8\x82\x22\xaa\xde\x15\xa0\x31\x36\x03\xd4\xa8\x51\x4d\x98\xa7\x4c\x3c\x92\x47\x5a\xaa\xf8\xfb\x46\x76\xe7\xf7\x52\xfe\xc8\xd5\x5e\x3c\xd0\xef\x2c\xf1\x43\xb5\xa8\xac\x74\x51\x69\x8b\x8e\xdd\x35\x72\x15\x6d\xea\xeb\xb3\xc4\xf4\x7e\x19\x52\x72\x68\xb5\x15\x54\x6b\x56\x8a\xd7\xe4\xff\x9d\xfd\xe7\xbf\xfc\x63\x7c\xfe\xa7\xb3\xb3\xbf\xbc\x1a\xff\xef\xbf\xfe\xcb\xd9\x7f\x4e\xe0\x1f\xbf\x3a\xff\xd3\xf9\x3f\xdc\x1f\xff\x72\x7e\x7e\x76\xf6\x97\x6f\xde\x7d\xfd\xf1\xf6\xfa\xaf\xfc\xfc\x1f\x7f\x11\x55\xfe\x80\x7f\xfd\xe3\xec\x2f\xec\xfa\xaf\x81\x9d\x9c\x9f\xff\xe9\x97\xbd\xa6\x4b\xc5\xe2\xbb\x1e\xf8\x0d\xdb\x78\x47\xfa\xd8\xee\xa5\x37\xd8\x2c\x71\xcc\x5c\xe8\xb1\x2c\xc7\xd8\xdd\x6b\xf0\xb0\xeb\xd1\xa9\x03\x8b\x7d\xdc\xc3\x86\x0e\x37\x35\x9a\x9c\xf0\xf1\x0c\x17\x6d\x77\xf9\x02\xb3\x7a\xf4\xd2\xf2\xe1\xa7\x1b\x14\x7c\xf6\xc7\x9f\xb1\x6e\xef\xb3\xf1\xec\xb1\x19\xea\x07\xb7\x9e\x67\x77\xeb\xc1\x93\x18\x7c\x7a\x9a\xc5\x0d\x3e\x3d\xd0\x06\x9f\x1e\xbf\x0d\x3e\x3d\xad\x71\x07\x9f\x9e\x41\x09\x37\x28\xe1\x9e\x5f\x09\x37\xf8\xf4\x0c\x3e\x3d\x83\x4f\xcf\xcf\xdb\xa7\x07\xe5\xad\x75\x9e\x3d\x56\x8a\x6a\xdc\x7a\x3e\x3b\xaf\x1e\x65\x00\x22\x61\x97\x49\x22\x2b\xa1\x3f\xca\x07\x16\x6c\x9a\x5e\x92\xfb\x57\xfa\x81\x4a\x50\x1b\xf4\x00\xab\x2f\x1f\x4d\x29\xf0\x02\x33\x51\xd1\x2a\xe5\x46\x84\x3f\x16\xde\x71\xe3\xf9\xa5\x35\x45\xca\xd2\xe6\x07\x8b\x94\xb4\x39\x9a\x09\xb9\x24\x25\x4b\x78\xc1\x6d\x38\x3a\xc5\xe7\x51\x43\xc2\xbd\xb0\xe9\x6e\x17\xe6\xb6\xb0\x6c\x8a\x68\x9e\x8a\x26\x0d\x6e\xe9\xc9\xcc\x96\xba\x2c\x4d\x29\x4e\xf4\x32\xd3\x44\xde\x05\x10\xd3\x13\x57\x8c\xa8\xb9\xac\xb2\x94\x94\xec\x6f\x8e\x4d\xb2\xab\xfc\xe8\x8f\xe6\xeb\x8a\x63\x87\xf5\x96\x63\xf7\x91\x16\x3c\xbc\x26\x4b\x3d\xfb\x3e\x58\x8f\x7d\x2a\x78\x09\xf7\xed\x8e\x25\x52\xa4\x47\x53\x65\xad\x0c\xdc\x30\x38\x60\x42\xc2\x3c\x19\x75\x56\xc0\x47\x9a\xf1\x94\xeb\x45\xed\xbd\x82\x28\x21\x0e\x8c\x11\x7f\xd4\x50\xaa\x9a\xd3\x24\xb4\x28\x4a\x49\x93\x39\x53\xde\xcc\x90\x4b\xb7\x19\xd6\x43\xd3\x2c\xfb\xad\xc8\xaa\x19\x17\xc8\xd4\x43\xff\x86\x73\xcb\x16\xa4\x94\xda\x39\xb6\xd9\x85\x2c\x4f\xee\xa3\x37\xb0\xf9\x3c\x6a\x58\x64\x8a\x74\xb9\x00\x4f\x39\xe9\x0f\x87\xab\xe5\x53\xff\x0f\x45\x64\x96\xba\x7a\x78\xbf\x7f\x65\xe4\xc0\x04\xaf\x6e\xa4\x72\x52\x41\x56\x40\x33\x62\x66\x38\x54\x43\xe6\x36\x0f\xf4\xeb\xdf\x90\xb9\xac\x4a\x35\xf1\x6b\x39\x7d\x09\xcf\xe2\x4e\x55\xa4\x8d\x93\x88\x26\x19\xa3\x4a\x93\x2f\x5f\x91\x9c\x8b\x4a\xf7\x89\xc3\x8e\x97\x2c\x3c\x99\xe2\xb7\xbf\x09\xfe\x6e\xa7\xf8\xed\xc8\xdb\xe6\x4b\x10\xf0\xef\x5a\x8c\xb0\xba\x4e\x2c\x61\x57\x48\x2e\xf4\xb2\x50\x61\x29\x6c\x3f\x6c\x0a\xda\xd4\x03\x60\xb1\x9f\x2a\x79\xbf\xd0\x31\xc5\x16\xec\x17\xed\x5c\x52\xff\xd7\x3e\xdc\x63\x05\xbf\x03\x94\x57\x28\xd9\x8c\x2b\x5d\x76\x29\xe9\xc6\x21\x28\x2a\x9c\xdf\x98\x19\x49\xfe\x10\x09\xd1\xa1\x63\x27\xae\x3a\xb3\x81\x4d\x01\x1c\x92\x77\xc1\x95\xe2\x01\xfd\x38\xf6\xd6\xf9\xd5\x4b\xab\x6f\xb0\xae\x56\x9e\x03\x46\x97\x31\xfa\x79\xeb\xe5\xc5\xc8\x17\x0e\x40\x0f\xb3\x65\xd8\x77\xfb\xe2\xda\x3c\x34\xb2\x24\x79\x95\x69\x5e\x64\xcd\xf6\x7d\x70\x1f\x58\xd2\x1a\x22\x9b\x36\x6c\x24\xf5\xb4\xfa\x14\xab\xaa\x60\x91\x59\x30\xab\x9d\xd5\xa3\x31\xa1\x21\xdb\x3c\x78\x35\xb3\x82\x96\xb4\x3e\xa5\x44\xe6\x39\x0d\x4a\xc3\x82\x76\x1e\x0a\x8e\x3d\x88\x9c\x0d\xe1\x2d\x69\xd6\xac\xda\xf3\xcd\xd8\x27\x90\x6b\x26\xa8\x08\x30\xd9\xf6\x28\xee\x0b\x3d\x13\xf9\x54\xfb\xe9\xcf\xf8\x23\x13\xcb\xd0\x6d\xd9\xf5\xaf\x68\xf2\xc0\x44\x88\xdc\xfb\xbd\x72\xfb\x9b\x2e\x04\xcd\x6d\xad\xde\xa2\x94\x8f\xdc\x5c\x03\x96\x2e\x8d\xa0\x46\x56\x95\x8c\x89\x6b\x5d\xa2\x6e\x64\xc9\xf6\xb9\x95\x95\x3a\x4c\x15\x47\xd3\xef\xee\x58\x52\xa1\x76\xbf\xe4\x8f\x09\x73\x3c\xa6\xe9\x79\x9f\x3b\xf0\x18\x50\xf8\x88\xac\xaf\x6e\x62\x73\xa7\xe2\x7d\x03\x9a\x5b\x1b\xa8\x31\xab\x60\x66\x70\xde\xa2\xae\x85\xb1\x04\x45\x36\xdf\xf9\xde\xea\xdb\x94\xf7\x31\x65\x4f\x3a\x8f\xb1\xbc\x4f\xdb\x68\xeb\x03\x4d\xa5\x22\x5f\x41\x66\xa7\x2b\x06\x8c\x7f\x1c\xeb\xd1\xa3\x1c\x24\xfb\x44\xf3\x22\x63\x6a\xf2\xf0\x7b\x50\xf1\xd9\xeb\x71\x51\xde\xa7\x17\x1f\xae\x2f\xaf\xde\x5d\x4f\xf2\xed\x17\xf0\x00\x2c\x0d\xcf\xe9\xac\x8b\x9d\x1c\x93\x5c\x0a\xae\x65\xb9\x1d\xf3\xbd\x88\xba\x52\x5b\x4b\xc0\xb5\x6a\x73\xe3\xf1\x2e\x64\x45\x9e\x28\x26\xef\x0b\x2e\x0f\xf7\x91\x17\xaf\xc9\xb5\x50\x55\xc9\x9a\x84\xb1\xcb\x83\x19\x74\xb7\xc7\xd2\x53\x08\x3b\xaf\x8f\x56\x32\x6e\xe7\x1a\xb3\xe5\x7d\x08\x35\x41\x15\xf4\x5c\x3e\x91\x54\x92\x27\x46\x8a\x92\x3d\x1a\x99\x17\x7c\x22\x14\xf1\xb2\xe8\xdb\xbd\x85\x14\x59\x89\xcc\x8b\x52\xe6\x5c\x39\xd2\x16\x52\x6f\x8d\xc4\x21\x53\xb8\x19\x87\x80\x51\xe8\xb8\xd6\xb2\x00\x22\xc2\x47\xa1\xc9\xac\xfa\xe2\x96\x5f\xcc\xe5\xd3\x58\xcb\x71\xa5\xd8\x98\x77\xab\x5d\x23\xf6\xea\x81\x2d\xc0\xab\xef\x00\xbb\x65\xbb\x6e\x09\xcd\x5a\x82\xce\x1e\x9e\x1b\xbe\xec\xc3\x57\x57\xdf\xab\x30\x25\x9d\x27\xb3\x5c\x30\x9d\x5c\x24\xac\x98\x5f\xd8\x31\x3e\xcf\xbd\x77\xb8\xf9\x10\x9b\xef\xfa\x46\xee\x20\x91\x59\x66\x2b\xa9\xc8\x29\x79\xc3\x8a\x79\xfd\xc2\x8b\xdb\xba\x3d\x57\x21\x8a\x29\xa0\x29\x65\x80\xed\xaa\x47\x4d\x7c\x29\xb3\x36\xd6\x80\x27\xa1\x48\xc3\x03\xfc\xf2\xbe\x2f\xfe\x7f\x66\x50\x7f\x36\x8d\xc0\x1e\x0b\x17\xef\x5c\x2a\xff\x70\x67\x10\x5a\x2e\x3f\x29\x99\x0e\x0a\xbf\xe9\x53\x31\xdf\x76\x0e\x4a\x25\xcf\xcc\x4e\x2b\x3d\x67\x42\xf3\x04\x2d\x11\xd6\x23\xd9\x47\xfe\xe4\x66\x8a\x52\x68\x1a\x64\xbe\x95\x8f\xac\x2c\x79\xca\x14\x89\xc0\xfe\xbe\xc6\x8b\x67\x2f\xee\x00\x03\xed\xa9\x71\xa6\xce\x70\xc7\x8a\x7e\x8a\xf1\x5d\x9c\x29\x9e\xdb\x8d\xe2\x70\x0e\x14\x51\x46\xc4\x5d\xdc\x09\x0e\xaa\x35\x69\x91\x2b\x78\xd2\x83\x5c\xd1\x34\xe7\x41\xf1\xde\x2f\x8b\x60\xa9\x84\x66\xec\xe6\xbb\x08\x35\x86\xfd\xa2\xad\xa9\xb8\xb3\x0f\xbd\x9a\xd9\x1d\x95\xa8\xbf\xa9\x61\x81\x08\x99\x76\x59\xde\x0e\xa0\x53\x98\x51\xcd\x9e\x3a\xb9\xaf\x71\x83\xec\xbb\xdf\x04\xd9\xef\x33\xd7\x3e\x7c\x3e\x05\xe8\xe3\xee\x27\x96\xc2\xde\x27\x9f\x67\x01\x28\xf2\x88\xec\x57\x6e\xfb\x61\x5f\x68\x9a\x96\x4c\x29\x47\x5f\xdc\x65\xba\xbc\xbd\x21\x5f\xe3\xeb\xfb\x2d\x9e\x5f\x4a\x8d\x12\xd2\x95\xcc\x29\x0f\x70\xc9\x5a\x2e\xdf\xdc\xfa\xdc\x2d\xc5\x67\x84\xdc\x12\x6e\xeb\x77\x89\x7d\x79\x2a\x4b\x2f\x15\x73\x55\xb2\x94\x58\x9d\xcc\xe7\x57\x76\x7c\x85\x59\xfe\x9c\xcb\x8e\x1f\x89\x63\xf6\x14\xf6\x2e\x70\xaa\xe1\x92\x1d\xd8\x00\x11\xae\x1d\xab\x82\xfa\x17\x8a\x83\x87\x82\xe7\x13\x68\x6b\xfa\x70\xd5\xc4\x46\x21\xe3\x3d\x22\xdf\xca\x19\x77\x75\xd5\x0c\x70\xe2\xd9\xd0\x10\x6e\x79\x60\x62\x07\x26\xb6\x1f\x13\xab\x54\x76\x2d\xe8\x7d\x16\xe2\x1d\xda\x66\xb9\xea\x0f\xc9\xdb\x8c\xce\x08\x83\x3f\x2e\x52\xae\xcc\xff\xc9\xdd\xdd\xb7\x60\x45\xae\x84\x13\x3c\xc1\xf0\x69\x49\x47\x1d\x99\x8e\x28\x6a\xbf\x38\x03\x31\xf7\xa1\x6a\xe1\x7b\xdd\x13\x2e\x52\x57\xb7\xd6\x73\x91\xb6\x6f\x00\xf2\xa0\x75\xd0\x22\xfa\x60\xde\x33\xf2\x71\xce\x93\x87\x5b\xcf\xe8\x2b\x4b\xf3\x4c\x78\x8f\x22\xd9\x88\xe8\xaf\x23\xa0\xcb\x2e\xe6\x36\x5e\x35\xe7\x7d\xe9\xa8\xb1\x43\xa5\x77\x76\x87\xe0\x37\xaa\x94\x4c\x78\xe3\x7b\x00\xba\xea\x86\x44\xa7\x40\xa2\xf7\xbb\x26\x60\xf4\x62\x97\x83\x9c\xe4\x1a\xbe\xc2\x9d\xb7\x7d\x83\x2a\x9f\x8f\xe0\xc2\xad\x7a\xaf\x4b\x40\xa8\x0a\x4b\xab\x11\x0f\xe3\x4d\xef\xcb\xeb\xad\xe1\x79\xd9\xaa\xed\x42\x7b\xed\x09\x07\x88\x1d\x76\xcd\x73\x8a\xa2\xea\x0a\x14\x70\x55\xdf\x1d\xc8\x30\xb0\xb7\xfd\x0b\x89\xf5\x8f\xdb\x33\xcb\x2d\xb4\xdd\x7b\xf0\x99\xb5\x84\xc3\xe5\x2f\x64\x51\x65\xe8\xc6\x5a\x2f\xae\x87\x35\x3c\xc6\x94\x88\xb3\xd8\x8f\x18\x1b\xce\x37\x78\xe1\x80\x87\x00\x4f\x3f\xda\x30\x3e\x28\xd4\x41\x2c\x88\x87\x46\x14\xb4\xdd\x45\x09\x97\xc7\x8c\x09\xdd\x57\x0c\x68\x88\x18\xde\x8a\x12\x6d\xc9\x12\xaf\x7e\xfb\x9b\xdf\x04\xd1\x25\x5e\x42\x59\x2a\xde\xae\xe6\x0e\xd6\x47\x5a\x32\xe0\x79\x31\x60\xd3\x09\xe2\xe8\xdd\xa4\x03\x15\xc9\xc7\x08\x0f\x3d\x70\x38\x68\x9c\x93\x76\x4c\xb8\x67\xa0\x55\xae\x87\xe5\x1d\xd2\x76\xdc\x1c\x2d\x6d\xc7\x91\x92\x75\x1c\x27\x45\xc7\x31\x12\x73\x1c\x25\x1d\xc7\xf1\x92\x70\x1c\x38\xf5\xc6\x41\x2c\xdd\x87\x4c\xae\x11\x19\xf5\x17\x17\xf1\x17\x9e\x3e\x23\x38\x2e\x30\x36\x26\x30\x22\x41\xc6\x7e\xd3\x62\x44\x87\x9c\xc5\xa4\xc0\xe8\x1b\xef\x72\xbc\x74\x17\xcf\x98\xe4\xe2\xb9\x53\x5b\x1c\x38\xa1\xc5\xf1\xd2\x58\x1c\x25\x79\x45\x9f\xc0\xb2\xf8\x44\x15\x31\x01\x65\x7d\x2f\xd7\xc1\x53\x51\xec\x25\x01\xc5\x9e\xd3\x4e\xec\x2f\xd9\x44\x04\xc2\x0c\xcf\x47\xb0\x73\x16\x82\xf8\xe2\x22\xf1\x66\x88\x43\x69\x5b\x9a\xde\xd7\x6a\x97\x5c\x7a\x41\x57\xb3\xe0\x54\x79\x15\x09\xb4\x34\x68\xe9\x08\x3e\xc9\x01\x8a\x04\x12\xa1\x82\xc1\xde\x65\x07\x77\xb0\x4e\x9f\xf8\xdd\xdd\x92\x95\xbf\x7e\xfc\x3c\xc6\xfd\xc1\x7a\xbe\x3f\xeb\xf9\xfe\x7d\xf1\x5f\x9a\x75\x36\x1d\xac\xb3\xd1\xd6\x59\xd5\x4a\x7d\xec\xf4\xaa\x80\xf8\x80\xf7\x93\xf7\x7e\x49\x9d\x06\x1f\x5c\xde\xde\x04\x8c\x93\x94\x0c\x92\x57\xd0\x4c\x4d\xd6\x31\x85\xce\x50\x65\x99\x4d\xc7\x0c\x52\xad\x59\x5e\x04\xe5\x01\x1f\x8c\xb3\x83\x71\xb6\x9f\x71\xf6\xd8\x56\x9e\x79\x95\x53\x31\x36\x08\x09\x6c\xb8\x2d\xe7\x99\x25\x32\x3b\x21\x16\xb1\x04\x42\x29\x86\x19\x43\xe0\x77\x25\xf8\x4f\x15\x6b\xb4\x20\x35\x37\x73\x20\x0b\x19\xf4\x7d\xd8\x0d\x44\x66\x6c\x09\x51\x25\x72\x25\x70\xce\xae\xb9\xde\x4c\x87\x71\x42\x37\x11\x86\x69\x29\xf6\xf4\x9c\x21\x67\x78\xbb\xc4\x19\xb6\xa4\x56\x2b\x8e\xd2\x2c\x93\x4f\xa1\xba\x51\x9f\x5f\x32\x80\x60\xd6\x63\xb3\xb1\xdc\x33\x92\xf3\xb2\x94\xa5\xb5\xd6\xf9\x4b\x42\x67\x2a\x23\xf7\xb2\x12\xe5\x45\x74\x67\x09\x41\x1b\x77\x4c\x5b\xa8\x02\xa8\xd4\x92\x50\x81\xe1\xb1\xe6\xdf\xce\xef\x1c\x96\xeb\xd0\xf2\x3d\x9b\xd3\x47\x2e\xab\xa0\x10\xa6\x3b\x24\x1c\x27\xf6\x63\x60\x27\x16\xb2\xaa\xed\x12\x15\x44\xc5\xd5\x7b\xa8\x56\xcf\x2b\x60\x90\xf7\xcd\xe7\x20\xd6\xa7\xd2\x29\x5d\xc7\xec\x13\x57\x7a\x75\xc7\xdc\x51\xb9\x0a\x25\xfb\xba\x06\x8f\xaa\x30\x6c\xc4\x0f\x01\xb1\xcd\xed\xb8\x66\xff\xbb\x36\xb7\xfd\x78\x07\x3f\x75\xf1\xda\x36\xef\x0f\x26\x1f\x08\x0a\x31\x3c\x80\x33\x2d\xce\xb1\xb3\xe6\xd9\xcb\x62\xe0\x07\xe6\xbd\x69\x7d\xdc\x54\x32\x9e\x2c\x6e\xae\xfa\xba\xaa\xe0\xd7\x8e\x1c\xaa\xda\x4d\xc5\x3c\x27\x5f\x51\xc5\x52\xf2\x8e\x0a\x3a\x43\x15\xcc\xd9\xdd\xed\x57\xef\xce\x0d\x00\x81\xca\xe8\xe6\x6a\xad\x2f\xcb\x9d\xdf\xf9\xfb\x7d\x86\xfa\xaf\x2c\xbc\x07\xa7\xb0\xf2\x7d\xcf\xc5\xef\x35\x87\x01\xa9\x89\x6b\x58\xad\xbc\x35\x59\x19\x6e\x97\xd3\x45\xa1\xa3\x89\xcb\x53\xa7\x96\x31\xd9\x63\x9e\x3e\xec\x36\x7d\x2e\x94\xa6\x59\x76\x9b\x51\x71\x59\x14\xa5\x7c\x5c\xaf\xf8\x0a\x41\x0e\xee\x7b\xb7\x00\x74\x3d\x75\x0f\x0b\x3c\x11\x70\x2f\x13\xe4\xa6\x19\x76\xfd\xfe\xdf\xe8\x5a\x37\x26\x05\x30\x24\x27\x97\x95\x96\x39\xd5\x3c\x39\x21\xb2\x24\x27\xef\xa8\xa8\x68\xb6\xd6\x11\x7d\xeb\x8a\x37\x49\x1f\x5b\x3f\xda\x5c\x84\x24\xe0\xb3\xad\xec\xdc\xf6\xef\x35\x2d\x0d\xaa\x7b\x73\xf7\x43\xd4\xb7\x4a\x53\x5d\xad\x50\x86\x2d\xd4\x6a\x33\x7d\x1a\x93\x8c\x2a\xfd\x7d\x91\x1a\xfc\xb0\xf4\xeb\x36\x22\x94\x50\x4d\x33\x39\xfb\x77\x46\xb3\xf5\x97\x21\x04\xa4\xde\xf8\x9d\x38\xad\xb2\xf5\xca\xab\xee\xeb\xef\x4f\x15\x31\x42\x98\x81\x12\xae\x15\x29\x59\xc6\x1e\xa9\xd0\xee\xf3\x3b\x2c\x2c\x74\x6a\xb7\x65\x23\xc0\xf1\xc6\x4e\x95\x32\xcd\xca\x9c\x8b\xf6\x38\x77\xf0\xfd\x1b\x29\x52\x8e\x16\x10\xd0\xc4\xe3\x17\xed\xb1\x36\x43\xe5\x26\xf3\xed\x16\x83\x6d\xbb\xa4\x92\x37\x9f\xf6\xf6\xe0\x6b\xf7\x96\x91\x9f\xe3\x43\xf0\x7e\x6b\xcd\x6d\x65\xf7\xc8\x83\x30\xfc\x35\xa4\x7d\x5d\xbf\x37\x9d\x6c\x4e\x17\x7b\x33\x76\xe0\x80\x53\xd8\x1c\x02\x34\xb6\xf3\xde\x64\xd8\xdd\x06\x8d\xd8\xba\x19\xa3\xe5\xa9\x6c\xc6\xd4\xad\x8d\x7f\xb3\xf4\x19\xc6\xc8\xd7\xfe\x21\x68\x29\x6f\xbd\xb4\x99\xb2\x04\xf1\x8d\x61\x2c\x5e\x68\xa9\xda\xd6\x5a\xbc\xc2\xaa\x71\x8a\x92\x40\x52\x18\x58\x31\x36\x8e\xe5\xbc\xb1\x21\x0f\xa5\x95\xe7\x28\x29\x38\xc3\x84\xb3\x54\xd8\xcd\x04\x7a\xc6\x68\x6a\x1f\x1a\xba\x69\x04\x78\xf8\x6d\x64\xbd\xb6\x82\x18\x14\xf4\x7d\x74\x76\x2c\x8a\x79\x50\xc1\xa2\x7b\xf1\xb5\xb4\x36\x1e\x9b\x15\xca\x60\x15\xe0\x2e\x46\x44\x55\xc9\x9c\x50\x65\x16\x66\xae\x83\xc1\x17\x6c\x92\x53\xc1\xa7\x4c\xe9\x49\x5d\x58\x4e\xfd\xe5\xd7\x7f\xed\x62\x3b\xde\xca\x92\xd8\x68\xc6\x91\x4b\xe7\x69\xd7\xd8\xc0\x1c\x57\xb8\x11\x75\xcf\x8d\x7e\xa2\x90\xa9\x5d\xf0\x13\x2c\x45\xd3\x07\x43\x4a\x71\x29\x15\x03\xcb\x6b\x17\x8f\x72\x62\xd8\x5e\x6f\xda\xff\x6d\x68\xe7\xff\x9c\x90\xb3\x27\x60\x42\x4e\xcc\x9f\x27\x38\x9d\x3a\x06\xc5\x57\xbf\x34\xd3\xc2\xac\x39\x25\x9f\xcd\x58\xd9\x69\xe6\x82\xb2\x70\x8f\x4c\xe8\x73\x9b\xca\x54\x48\xaf\x2b\xe7\x2b\xd5\x68\x13\x96\xa7\xf9\x97\x5f\xff\xf5\x84\x9c\xb5\xf7\xa4\x63\x48\x2e\x52\xf6\x89\xfc\x1a\x0d\x56\x5c\x99\xdd\x3b\x9f\xa0\xfa\x41\x2d\x84\xa6\x9f\xcc\x88\xc9\x5c\x2a\x26\x50\x1d\xa4\x25\x99\xd3\x47\x46\x94\xcc\x19\x79\x62\x59\x36\xb6\x26\x3c\xf2\x44\x17\xdd\x19\x5c\xdd\x11\x42\xb6\x3b\x52\xd0\x52\xb7\xc0\xb8\x0b\x38\x50\x4b\x08\x33\x35\xa0\x36\x13\xce\x49\x6a\xca\x85\x75\x46\xb0\x6e\x15\x06\x4e\x21\x33\x11\x82\x8e\x96\x24\x99\x53\x31\xab\xf3\xc0\x4d\x2b\x5d\x95\x1d\x3c\x70\xe0\xa5\x7f\xe0\x62\xaf\x49\xbc\xbe\xe1\x62\xd9\x0d\xaf\x73\x63\xd6\xa8\x6f\x67\x5c\xbb\x68\x60\x1b\xda\xa1\x17\x17\x06\x38\x4a\x7e\x5f\x69\x59\xaa\x8b\x94\x3d\xb2\xec\x42\xf1\xd9\x98\x96\xc9\x9c\x6b\x96\x98\x3d\xb9\xa0\x05\x1f\x27\x52\x18\x40\x84\x74\x8f\x79\xfa\x0b\xb3\x13\x6a\x6c\x16\xba\x5d\x9f\x1b\xb8\x63\xdd\x8a\xf0\xb8\x1d\xeb\xa3\xf8\x7e\x1e\x85\x77\xc4\x06\x05\x28\x42\xe3\x77\x09\xb5\x8d\xcf\xbe\x55\xa0\x70\xbb\xd8\xc7\x4e\xb9\x8a\x86\xf1\xbc\x40\xe7\x7e\xd9\x22\x9e\xc9\xf2\x18\x06\x99\xa0\x87\x26\xe0\x9a\x16\x55\xca\x69\x8a\x64\x8b\x8a\xce\x88\xdb\x03\xdf\x59\x73\x1e\x50\x08\x37\x59\x8c\xa1\x0b\x99\x8d\xa9\x48\xcd\xbf\x31\xc0\x3e\xd9\xee\x45\x18\x78\x00\x15\xdf\x2b\xf2\xfb\xfe\xe6\xea\xf9\xc1\xf3\xe2\x17\x15\xdf\x07\xa6\xeb\x63\x4d\xb2\x72\x40\x20\x73\x8e\x22\x10\x7a\x55\x96\x15\x73\x0c\x53\x5b\xf0\xe1\xca\xf5\xfa\x6f\xd6\x8c\x5d\x57\x1b\xe8\x62\xd5\xb7\x9b\x96\x3d\x99\x24\x70\xbe\xdf\x36\x5f\xf8\xaa\x6a\xf0\xd6\xa6\x4a\xdb\x7c\xee\x2e\xd5\x60\x6b\x19\x4e\x18\x06\x32\xbe\x99\x95\x0a\x3a\x18\xe7\xeb\x66\x26\x32\x5e\x9b\x61\x3b\xa9\x85\xdd\x4e\x19\xde\x93\x8b\x41\x34\xca\xb8\xaa\x73\x9a\x1b\x31\x59\x69\x42\x1f\x29\xcf\xc0\x4a\x27\xef\x15\x2b\x1f\x29\xbe\x8e\x15\x47\xe8\xb2\x4c\x6f\xeb\x57\x23\x83\x7d\x24\x89\xda\xad\x61\xf5\x54\xb6\x2d\x00\xa4\xec\xa5\xd9\x6f\x9c\xf5\x5e\xe4\x69\x54\x65\x6c\xfc\xd9\x8c\xd0\x53\x3c\x36\xf0\xf7\xef\x8c\x96\xfa\x9e\x51\xfd\x91\x6f\xe3\x50\x56\x40\xba\xf5\x9d\xd3\x03\x36\x00\xfd\xc4\xc8\x4c\x6a\xc3\xe6\x56\x00\xfb\x28\x8f\x60\x9a\xe2\x1a\xd0\x0e\x0d\xd1\xcd\x2a\x3f\x96\x14\x62\xdd\xa5\x88\x5c\x66\xfb\xc3\xd5\x75\x5a\xd9\xc7\x42\x92\xc6\xb7\x31\x93\xa5\x14\xcc\x9e\x1d\x1a\x0a\xb7\x87\xe5\xef\x75\xc9\x39\x53\x6a\x6b\x8a\xcb\x76\x28\x00\xbe\x8d\x57\x79\xc9\xc4\x9e\xbb\xdf\x30\x92\xd8\x08\x31\x29\xd3\x94\x67\xee\x2a\xe3\x56\xd4\xbb\xd4\x85\x5d\xb7\x2e\xb0\x64\x54\x6d\x63\x68\x5a\xb3\xfe\x00\x2f\xe3\xa4\xa5\x60\xe3\x27\x59\xa6\xe4\x0d\xcd\x59\xf6\x86\x2a\x66\xfb\xf2\x33\x67\xe0\x19\x9d\xaa\xbd\x4e\x79\xbd\xfa\x75\xc3\x94\x51\xa9\xd8\x18\x30\xe0\xaf\x46\x80\xc6\x09\x8e\x9c\x16\xfc\x63\x59\xb1\x11\x79\x6b\xa8\xd7\x88\x7c\x2f\x1e\x84\x7c\xda\x6d\xae\x7a\xab\x71\xb0\x35\x53\xdf\x5d\xcf\xe5\xd7\x6d\x29\x12\xeb\xe9\xf6\x9c\x91\x45\xf8\x1b\xb4\xdd\x6d\x62\x53\xbf\xea\x66\x64\xfe\xb9\xa2\xda\x34\xa2\x7c\x29\x67\x25\x53\x98\x3a\x76\xad\x43\x74\xa8\x81\xe4\x6b\x26\x6c\x96\x8b\xce\xe9\xdd\xac\xfb\xca\xcd\xd4\xd1\xb5\x59\xf3\x8b\x3d\x6f\x3b\x58\x91\xad\x65\x35\xb6\x7b\xb3\x7b\x13\xdd\xa0\xd4\xdc\x34\xc3\xf5\xca\x4c\x8f\xea\x79\xef\x22\x53\xb2\x4d\x13\xef\x56\xf7\xe6\xee\x87\xcd\x9b\xbd\x91\xf6\x75\xd1\xa7\x6e\x75\xe7\xae\x8a\xce\xce\x3b\xd3\xa9\xdc\x0c\xe5\xf4\x8f\xa3\xd0\x7c\x4e\x55\xe6\xf3\x2a\x31\x8f\xae\xbe\x3c\xaa\xe2\xf2\x78\x2a\xcb\xde\xca\xca\x63\xa9\x29\x3b\xaf\xec\x36\xd5\x64\xe8\x6d\x8d\x53\x47\x3e\xbb\x22\xb2\x73\x4f\xb6\x29\x1f\x43\xf7\x24\x4e\xe1\x78\x6c\x55\x63\xd0\x16\x6c\x55\x2f\xc6\xec\x43\xa4\x4a\xf1\xc8\xca\xc4\xce\xbd\x08\x54\x20\x86\xee\xc8\xe1\x94\x86\x2f\x56\x5d\xd8\xb9\xc5\x5b\x54\x84\xa1\xdb\x1a\xa5\x16\x3c\xb2\x42\xb0\x63\xfd\x71\x4a\x40\xcb\xcd\xb2\x34\x44\x18\xb8\xf1\x5e\xf6\xc5\x01\xcb\x8a\x82\x6b\x9f\x7d\xc3\xb9\x12\xfa\x4c\x6b\x5f\x99\xc0\xb0\xe9\x7d\x3d\x5b\xec\x94\xc3\xf9\x6e\x2b\x2c\xb0\xb4\x96\x5e\xbb\x96\x40\xc8\xd5\xf5\xed\x87\xeb\x37\x97\x1f\xaf\xaf\x96\xf9\xfd\x78\xc6\x7c\xbb\x4a\x6a\xec\x31\xe6\x1b\x5e\x30\xc4\x6a\xc3\x4f\x06\xb6\x36\xfc\x54\x55\x7c\xdd\x57\xbb\x8b\x09\x3b\xf1\x0c\x3b\x11\xd7\x6e\x3c\xb1\x27\x44\x01\xb0\x85\xfe\xb8\x86\x7f\x9d\xcb\x2c\x55\x2e\x8e\xe1\xe6\xaa\x0e\x53\xe7\x22\xc9\xaa\xd4\x30\x77\xdf\x7f\x7f\x73\xa5\x26\x84\x7c\xc5\x12\x5a\x29\xc3\x24\x6e\x56\x0c\x48\x71\xaa\xc9\x77\xef\xbf\xfd\x0f\x88\x68\x82\x2f\x47\x75\x8a\x48\x28\x20\xc5\x29\xd6\xc0\x82\x85\x42\xaf\xc8\x40\xc2\x8c\x12\x5a\x18\x0c\xbc\xd9\xb8\xc0\x31\xb7\x89\xe1\x11\xe7\x2c\x2b\x0c\x75\x78\x60\xa4\x29\xc1\x63\x06\x84\x5f\x31\x4e\xc3\xfa\xab\xcf\x98\xc6\x90\xf5\x6d\x2e\xe9\x5b\x0f\xa0\x43\x97\xbf\x83\x16\xbf\xa5\x98\xb0\x7a\x9e\x27\xaa\xac\x2e\x74\xed\x6c\x3b\x40\xa5\x5b\xf3\xb7\x59\x79\xb6\x41\x6d\x86\x94\x05\xfe\x5a\x99\xb3\x99\x6c\xa3\x21\x43\xb7\x37\xae\x83\xf5\xf4\x9b\x7d\x1c\xd7\xd7\x13\x5d\xd1\x92\xb1\xe5\x4d\x6e\x0d\x5c\xc7\xfc\x78\x53\x0e\x9b\x0b\x94\x7c\x4e\x5f\x83\xe5\xc8\x3d\x42\x3f\xe2\xf6\xb3\xea\xde\x31\x33\x1e\xd6\xb1\xba\x3e\xf2\xdf\xff\xf3\xc5\xff\x1f\x00\x00\xff\xff\xba\xb8\x4c\xdd\xad\x46\x03\x00") func operatorsCoreosCom_subscriptionsYamlBytes() ([]byte, error) { return bindataRead( diff --git a/go.mod b/go.mod index fa3c121a6..f087673cb 100644 --- a/go.mod +++ b/go.mod @@ -5,91 +5,92 @@ go 1.21 require ( github.com/blang/semver/v4 v4.0.0 github.com/go-bindata/go-bindata/v3 v3.1.3 - github.com/google/cel-go v0.16.1 + github.com/google/cel-go v0.17.7 github.com/sirupsen/logrus v1.9.2 - github.com/spf13/cobra v1.7.0 + github.com/spf13/cobra v1.8.0 github.com/stretchr/testify v1.8.4 - google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f - k8s.io/api v0.28.4 - k8s.io/apiextensions-apiserver v0.28.4 - k8s.io/apimachinery v0.28.4 - k8s.io/client-go v0.28.4 - sigs.k8s.io/controller-runtime v0.16.3 - sigs.k8s.io/yaml v1.3.0 + google.golang.org/genproto/googleapis/api v0.0.0-20240213162025-012b6fc9bca9 + k8s.io/api v0.29.2 + k8s.io/apiextensions-apiserver v0.29.2 + k8s.io/apimachinery v0.29.2 + k8s.io/client-go v0.29.2 + sigs.k8s.io/controller-runtime v0.17.2 + sigs.k8s.io/yaml v1.4.0 ) require ( github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect - github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect + github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/emicklei/go-restful/v3 v3.11.0 // indirect - github.com/felixge/httpsnoop v1.0.3 // indirect - github.com/go-logr/logr v1.3.0 // indirect + github.com/emicklei/go-restful/v3 v3.11.2 // indirect + github.com/felixge/httpsnoop v1.0.4 // indirect + github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-openapi/jsonpointer v0.19.6 // indirect - github.com/go-openapi/jsonreference v0.20.2 // indirect - github.com/go-openapi/swag v0.22.3 // indirect + github.com/go-openapi/jsonpointer v0.20.2 // indirect + github.com/go-openapi/jsonreference v0.20.4 // indirect + github.com/go-openapi/swag v0.22.9 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/google/gnostic-models v0.6.8 // indirect - github.com/google/go-cmp v0.6.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/google/uuid v1.3.1 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect - github.com/imdario/mergo v0.3.6 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect + github.com/imdario/mergo v0.3.16 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/kisielk/errcheck v1.5.0 // indirect github.com/mailru/easyjson v0.7.7 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_golang v1.16.0 // indirect - github.com/prometheus/client_model v0.4.0 // indirect - github.com/prometheus/common v0.44.0 // indirect - github.com/prometheus/procfs v0.10.1 // indirect + github.com/prometheus/client_golang v1.18.0 // indirect + github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/common v0.47.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/stoewer/go-strcase v1.2.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect - go.opentelemetry.io/otel v1.20.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect - go.opentelemetry.io/otel/metric v1.20.0 // indirect - go.opentelemetry.io/otel/sdk v1.20.0 // indirect - go.opentelemetry.io/otel/trace v1.20.0 // indirect - go.opentelemetry.io/proto/otlp v1.0.0 // indirect - golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect + github.com/stoewer/go-strcase v1.3.0 // indirect + go.etcd.io/etcd/client/pkg/v3 v3.5.12 // indirect + go.etcd.io/etcd/client/v3 v3.5.12 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect + go.opentelemetry.io/otel v1.23.1 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.23.1 // indirect + go.opentelemetry.io/otel/metric v1.23.1 // indirect + go.opentelemetry.io/otel/sdk v1.23.1 // indirect + go.opentelemetry.io/otel/trace v1.23.1 // indirect + go.opentelemetry.io/proto/otlp v1.1.0 // indirect + golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect - golang.org/x/mod v0.10.0 // indirect - golang.org/x/net v0.17.0 // indirect - golang.org/x/oauth2 v0.11.0 // indirect - golang.org/x/sync v0.3.0 // indirect - golang.org/x/sys v0.14.0 // indirect - golang.org/x/term v0.13.0 // indirect - golang.org/x/text v0.13.0 // indirect - golang.org/x/time v0.3.0 // indirect - golang.org/x/tools v0.9.3 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect - google.golang.org/grpc v1.59.0 // indirect + golang.org/x/mod v0.15.0 // indirect + golang.org/x/net v0.21.0 // indirect + golang.org/x/oauth2 v0.17.0 // indirect + golang.org/x/sync v0.6.0 // indirect + golang.org/x/sys v0.17.0 // indirect + golang.org/x/term v0.17.0 // indirect + golang.org/x/text v0.14.0 // indirect + golang.org/x/time v0.5.0 // indirect + golang.org/x/tools v0.18.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto v0.0.0-20240221002015-b0ce06bbee7c // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c // indirect + google.golang.org/grpc v1.61.1 // indirect google.golang.org/protobuf v1.33.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/apiserver v0.28.4 // indirect - k8s.io/component-base v0.28.4 // indirect - k8s.io/klog/v2 v2.100.1 // indirect - k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect - k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect - sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 // indirect + k8s.io/apiserver v0.29.2 // indirect + k8s.io/component-base v0.29.2 // indirect + k8s.io/klog/v2 v2.120.1 // indirect + k8s.io/kube-openapi v0.0.0-20240221221325-2ac9dc51f3f1 // indirect + k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect + sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect - sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect ) diff --git a/go.sum b/go.sum index 72c80477d..0b9be7ebe 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,7 @@ github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df h1:7RFfzj4SSt6nnvCPbCqijJi1nWCd+TqAT3bYCStRC18= github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df/go.mod h1:pSwJ0fSY5KhvocuWSx4fz3BA8OrA1bQn+K1Eli3BRwM= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM= @@ -10,47 +10,47 @@ github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqy github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4= +github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec= +github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs= +github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= +github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g= -github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= -github.com/felixge/httpsnoop v1.0.3 h1:s/nj+GCswXYzN5v2DpNMuMQYe+0DDwt5WVCU6CWBdXk= -github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= +github.com/emicklei/go-restful/v3 v3.11.2 h1:1onLa9DcsMYO9P+CXaL0dStDqQ2EHHXLiz+BtnqkLAU= +github.com/emicklei/go-restful/v3 v3.11.2/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= +github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= +github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/go-bindata/go-bindata/v3 v3.1.3 h1:F0nVttLC3ws0ojc7p60veTurcOm//D4QBODNM7EGrCI= github.com/go-bindata/go-bindata/v3 v3.1.3/go.mod h1:1/zrpXsLD8YDIbhZRqXzm1Ghc7NhEvIN9+Z6R5/xH4I= -github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.3.0 h1:2y3SDp0ZXuc6/cjLSZ+Q3ir+QB9T/iG5yYRXqsagWSY= -github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= -github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= -github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= -github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= -github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= -github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= +github.com/go-openapi/jsonpointer v0.20.2 h1:mQc3nmndL8ZBzStEo3JYF8wzmeWffDH4VbXz58sAx6Q= +github.com/go-openapi/jsonpointer v0.20.2/go.mod h1:bHen+N0u1KEO3YlmqOjTT9Adn1RfD91Ar825/PuiRVs= +github.com/go-openapi/jsonreference v0.20.4 h1:bKlDxQxQJgwpUSgOENiMPzCTBVuc7vTdXSSgNeAhojU= +github.com/go-openapi/jsonreference v0.20.4/go.mod h1:5pZJyJP2MnYCpoeoMAql78cCHauHj0V9Lhc506VOpw4= +github.com/go-openapi/swag v0.22.9 h1:XX2DssF+mQKM2DHsbgZK74y/zj4mo9I99+89xUmuZCE= +github.com/go-openapi/swag v0.22.9/go.mod h1:3/OXnFfnMAwBD099SwYRk7GD3xOrr1iL7d/XNLXVVwE= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang/glog v1.1.2 h1:DVjP2PbBOzHyzA+dn3WhHIq4NdVu3Q+pvivFICf/7fo= -github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/google/cel-go v0.16.1 h1:3hZfSNiAU3KOiNtxuFXVp5WFy4hf/Ly3Sa4/7F8SXNo= -github.com/google/cel-go v0.16.1/go.mod h1:HXZKzB0LXqer5lHHgfWAnlYwJaQBDKMjxjulNQzhwhY= +github.com/google/cel-go v0.17.7 h1:6ebJFzu1xO2n7TLtN+UBqShGBhlD85bhvglh5DpcfqQ= +github.com/google/cel-go v0.17.7/go.mod h1:HXZKzB0LXqer5lHHgfWAnlYwJaQBDKMjxjulNQzhwhY= github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= @@ -58,12 +58,14 @@ github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= -github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 h1:YBftPWNWd4WwGqtY2yeZL2ef8rHAxPBD8KFhJpmcqms= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0/go.mod h1:YN5jB8ie0yfIUg6VvR9Kz84aCaG7AsGZnLjhHbUqwPg= -github.com/imdario/mergo v0.3.6 h1:xTNEAn+kxVO7dTZGu0CegyqKZmoWFI0rF8UxjlB2d28= -github.com/imdario/mergo v0.3.6/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 h1:/c3QmbOGMGTOumP2iT/rCwB7b0QDGLKzqOmktBjT+Is= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1/go.mod h1:5SN9VR2LTsRFsrEC6FHgRbTWrTHu6tqPeKxEQv15giM= +github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= +github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= @@ -74,17 +76,12 @@ github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQL github.com/kisielk/errcheck v1.5.0 h1:e8esj/e4R+SAOwFwN+n3zr0nYeCyeweozKfO23MvHzY= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= -github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= -github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -92,36 +89,35 @@ github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9G github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/onsi/ginkgo/v2 v2.11.0 h1:WgqUCUt/lT6yXoQ8Wef0fsNn5cAuMK7+KT9UFRz2tcU= -github.com/onsi/ginkgo/v2 v2.11.0/go.mod h1:ZhrRA5XmEE3x3rhlzamx/JJvujdZoJ2uvgI7kR0iZvM= -github.com/onsi/gomega v1.27.10 h1:naR28SdDFlqrG6kScpT8VWpu1xWY5nJRCF3XaYyBjhI= -github.com/onsi/gomega v1.27.10/go.mod h1:RsS8tutOdbdgzbPtzzATp12yT7kM5I5aElG3evPbQ0M= +github.com/onsi/ginkgo/v2 v2.14.0 h1:vSmGj2Z5YPb9JwCWT6z6ihcUvDhuXLc3sJiqd3jMKAY= +github.com/onsi/ginkgo/v2 v2.14.0/go.mod h1:JkUdW7JkN0V6rFvsHcJ478egV3XH9NxpD27Hal/PhZw= +github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8= +github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v1.16.0 h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8= -github.com/prometheus/client_golang v1.16.0/go.mod h1:Zsulrv/L9oM40tJ7T815tM89lFEugiJ9HzIqaAx4LKc= -github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= -github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= -github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY= -github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= -github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= -github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= -github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= -github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= +github.com/prometheus/client_golang v1.18.0 h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk= +github.com/prometheus/client_golang v1.18.0/go.mod h1:T+GXkCk5wSJyOqMIzVgvvjFDlkOQntgjkJWKrN5txjA= +github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= +github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/common v0.47.0 h1:p5Cz0FNHo7SnWOmWmoRozVcjEp0bIVU8cV7OShpjL1k= +github.com/prometheus/common v0.47.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= +github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= +github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= +github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= +github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sirupsen/logrus v1.9.2 h1:oxx1eChJGI6Uks2ZC4W1zpLlVgqB8ner4EuQwV4Ik1Y= github.com/sirupsen/logrus v1.9.2/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= -github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= +github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0= +github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/stoewer/go-strcase v1.2.0 h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU= -github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stoewer/go-strcase v1.3.0 h1:g0eASXYtp+yvN9fK8sH94oCIk0fau9uV1/ZdJ0AVEzs= +github.com/stoewer/go-strcase v1.3.0/go.mod h1:fAH5hQ5pehh+j3nZfvwdk2RgEgQjAoM8wodgtPmh1xo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= @@ -130,67 +126,90 @@ github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcU github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 h1:KfYpVmrjI7JuToy5k8XV3nkapjWx48k4E4JOtVstzQI= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0/go.mod h1:SeQhzAEccGVZVEy7aH87Nh0km+utSpo1pTv6eMMop48= -go.opentelemetry.io/otel v1.20.0 h1:vsb/ggIY+hUjD/zCAQHpzTmndPqv/ml2ArbsbfBYTAc= -go.opentelemetry.io/otel v1.20.0/go.mod h1:oUIGj3D77RwJdM6PPZImDpSZGDvkD9fhesHny69JFrs= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 h1:DeFD0VgTZ+Cj6hxravYYZE2W4GlneVH81iAOPjZkzk8= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0/go.mod h1:GijYcYmNpX1KazD5JmWGsi4P7dDTTTnfv1UbGn84MnU= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 h1:gvmNvqrPYovvyRmCSygkUDyL8lC5Tl845MLEwqpxhEU= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0/go.mod h1:vNUq47TGFioo+ffTSnKNdob241vePmtNZnAODKapKd0= -go.opentelemetry.io/otel/metric v1.20.0 h1:ZlrO8Hu9+GAhnepmRGhSU7/VkpjrNowxRN9GyKR4wzA= -go.opentelemetry.io/otel/metric v1.20.0/go.mod h1:90DRw3nfK4D7Sm/75yQ00gTJxtkBxX+wu6YaNymbpVM= -go.opentelemetry.io/otel/sdk v1.20.0 h1:5Jf6imeFZlZtKv9Qbo6qt2ZkmWtdWx/wzcCbNUlAWGM= -go.opentelemetry.io/otel/sdk v1.20.0/go.mod h1:rmkSx1cZCm/tn16iWDn1GQbLtsW/LvsdEEFzCSRM6V0= -go.opentelemetry.io/otel/trace v1.20.0 h1:+yxVAPZPbQhbC3OfAkeIVTky6iTFpcr4SiY9om7mXSQ= -go.opentelemetry.io/otel/trace v1.20.0/go.mod h1:HJSK7F/hA5RlzpZ0zKDCHCDHm556LCDtKaAo6JmBFUU= -go.opentelemetry.io/proto/otlp v1.0.0 h1:T0TX0tmXU8a3CbNXzEKGeU5mIVOdf0oykP+u2lIVU/I= -go.opentelemetry.io/proto/otlp v1.0.0/go.mod h1:Sy6pihPLfYHkr3NkUbEhGHFhINUSI/v80hjKIs5JXpM= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.etcd.io/etcd/api/v3 v3.5.12 h1:W4sw5ZoU2Juc9gBWuLk5U6fHfNVyY1WC5g9uiXZio/c= +go.etcd.io/etcd/api/v3 v3.5.12/go.mod h1:Ot+o0SWSyT6uHhA56al1oCED0JImsRiU9Dc26+C2a+4= +go.etcd.io/etcd/client/pkg/v3 v3.5.12 h1:EYDL6pWwyOsylrQyLp2w+HkQ46ATiOvoEdMarindU2A= +go.etcd.io/etcd/client/pkg/v3 v3.5.12/go.mod h1:seTzl2d9APP8R5Y2hFL3NVlD6qC/dOT+3kvrqPyTas4= +go.etcd.io/etcd/client/v3 v3.5.12 h1:v5lCPXn1pf1Uu3M4laUE2hp/geOTc5uPcYYsNe1lDxg= +go.etcd.io/etcd/client/v3 v3.5.12/go.mod h1:tSbBCakoWmmddL+BKVAJHa9km+O/E+bumDe9mSbPiqw= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 h1:P+/g8GpuJGYbOp2tAdKrIPUX9JO02q8Q0YNlHolpibA= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0/go.mod h1:tIKj3DbO8N9Y2xo52og3irLsPI4GW02DSMtrVgNMgxg= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 h1:doUP+ExOpH3spVTLS0FcWGLnQrPct/hD/bCPbDRUEAU= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0/go.mod h1:rdENBZMT2OE6Ne/KLwpiXudnAsbdrdBaqBvTN8M8BgA= +go.opentelemetry.io/otel v1.23.1 h1:Za4UzOqJYS+MUczKI320AtqZHZb7EqxO00jAHE0jmQY= +go.opentelemetry.io/otel v1.23.1/go.mod h1:Td0134eafDLcTS4y+zQ26GE8u3dEuRBiBCTUIRHaikA= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1 h1:o8iWeVFa1BcLtVEV0LzrCxV2/55tB3xLxADr6Kyoey4= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1/go.mod h1:SEVfdK4IoBnbT2FXNM/k8yC08MrfbhWk3U4ljM8B3HE= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.23.1 h1:p3A5+f5l9e/kuEBwLOrnpkIDHQFlHmbiVxMURWRK6gQ= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.23.1/go.mod h1:OClrnXUjBqQbInvjJFjYSnMxBSCXBF8r3b34WqjiIrQ= +go.opentelemetry.io/otel/metric v1.23.1 h1:PQJmqJ9u2QaJLBOELl1cxIdPcpbwzbkjfEyelTl2rlo= +go.opentelemetry.io/otel/metric v1.23.1/go.mod h1:mpG2QPlAfnK8yNhNJAxDZruU9Y1/HubbC+KyH8FaCWI= +go.opentelemetry.io/otel/sdk v1.23.1 h1:O7JmZw0h76if63LQdsBMKQDWNb5oEcOThG9IrxscV+E= +go.opentelemetry.io/otel/sdk v1.23.1/go.mod h1:LzdEVR5am1uKOOwfBWFef2DCi1nu3SA8XQxx2IerWFk= +go.opentelemetry.io/otel/trace v1.23.1 h1:4LrmmEd8AU2rFvU1zegmvqW7+kWarxtNOPyeL6HmYY8= +go.opentelemetry.io/otel/trace v1.23.1/go.mod h1:4IpnpJFwr1mo/6HL8XIPJaE9y0+u1KcVmuW7dwFSVrI= +go.opentelemetry.io/proto/otlp v1.1.0 h1:2Di21piLrCqJ3U3eXGCTPHE9R8Nh+0uglSnOyxikMeI= +go.opentelemetry.io/proto/otlp v1.1.0/go.mod h1:GpBHCBWiqvVLDqmHZsoMM3C5ySeKTC7ej/RNTae6MdY= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= +go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= +go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= +go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= +go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/exp v0.0.0-20240213143201-ec583247a57a h1:HinSgX1tJRX3KsL//Gxynpw5CTOAIPhgL4W8PNiIpVE= +golang.org/x/exp v0.0.0-20240213143201-ec583247a57a/go.mod h1:CxmFvTBINI24O/j8iY7H1xHzx2i4OsyguNBmN/uPtqc= golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/lint v0.0.0-20200302205851-738671d3881b h1:Wh+f8QHJXR411sJR8/vRBTZ7YapZaRvUcLFFJhusH0k= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk= -golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.15.0 h1:SernR4v+D55NyBH2QiEQrlBAnj1ECL6AGrA5+dPaMY8= +golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/oauth2 v0.11.0 h1:vPL4xzxBM4niKCW6g9whtaWVXTJf1U5e4aZxxFx/gbU= -golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk= -golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/oauth2 v0.17.0 h1:6m3ZPmLEFdVxKKWnKq4VqZ60gutO35zm+zrAHVmHyDQ= +golang.org/x/oauth2 v0.17.0/go.mod h1:OzPDGQiuQMguemayvdylqddI7qcD9lnSDb+1FiwQ5HA= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= -golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= -golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/term v0.13.0 h1:bb+I9cTfFazGW51MZqBVmZy7+JEJMouUHTUSKVQLBek= -golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk= +golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -198,22 +217,23 @@ golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.9.3 h1:Gn1I8+64MsuTb/HpH+LmQtNas23LhUVr3rYZ0eKuaMM= -golang.org/x/tools v0.9.3/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.18.0 h1:k8NLag8AGHnn+PHbl7g43CtqZAwG60vZkLqgyZgIHgQ= +golang.org/x/tools v0.18.0/go.mod h1:GL7B4CwcLLeo59yx/9UWWuNOW1n3VZ4f5axWfML7Lcg= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4 h1:W12Pwm4urIbRdGhMEg2NM9O3TWKjNcxQhs46V0ypf/k= -google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4/go.mod h1:5RBcpGRxr25RbDzY5w+dmaqpSEvl8Gwl1x2CICf60ic= -google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f h1:2yNACc1O40tTnrsbk9Cv6oxiW8pxI/pXj0wRtdlYmgY= -google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f/go.mod h1:Uy9bTZJqmfrw2rIBxgGLnamc78euZULUBrLZ9XTITKI= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f h1:ultW7fxlIvee4HYrtnaRPon9HpEgFk5zYpmfMgtKB5I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f/go.mod h1:L9KNLi232K1/xB6f7AlSX692koaRnKaWSR0stBki0Yc= -google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= -google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= +google.golang.org/genproto v0.0.0-20240221002015-b0ce06bbee7c h1:Zmyn5CV/jxzKnF+3d+xzbomACPwLQqVpLTpyXN5uTaQ= +google.golang.org/genproto v0.0.0-20240221002015-b0ce06bbee7c/go.mod h1:VUhTRKeHn9wwcdrk73nvdC9gF178Tzhmt/qyaFcPLSo= +google.golang.org/genproto/googleapis/api v0.0.0-20240213162025-012b6fc9bca9 h1:4++qSzdWBUy9/2x8L5KZgwZw+mjJZ2yDSCGMVM0YzRs= +google.golang.org/genproto/googleapis/api v0.0.0-20240213162025-012b6fc9bca9/go.mod h1:PVreiBMirk8ypES6aw9d4p6iiBNSIfZEBqr3UGoAi2E= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c h1:NUsgEN92SQQqzfA+YtqYNqYmB3DMMYLlIwUZAQFVFbo= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c/go.mod h1:H4O17MA/PE9BsGx3w+a+W2VOLLD1Qf7oJneAoU6WktY= +google.golang.org/grpc v1.61.1 h1:kLAiWrZs7YeDM6MumDe7m3y4aM6wacLzM1Y/wiLP9XY= +google.golang.org/grpc v1.61.1/go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= @@ -223,38 +243,37 @@ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntN gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/api v0.28.4 h1:8ZBrLjwosLl/NYgv1P7EQLqoO8MGQApnbgH8tu3BMzY= -k8s.io/api v0.28.4/go.mod h1:axWTGrY88s/5YE+JSt4uUi6NMM+gur1en2REMR7IRj0= -k8s.io/apiextensions-apiserver v0.28.4 h1:AZpKY/7wQ8n+ZYDtNHbAJBb+N4AXXJvyZx6ww6yAJvU= -k8s.io/apiextensions-apiserver v0.28.4/go.mod h1:pgQIZ1U8eJSMQcENew/0ShUTlePcSGFq6dxSxf2mwPM= -k8s.io/apimachinery v0.28.4 h1:zOSJe1mc+GxuMnFzD4Z/U1wst50X28ZNsn5bhgIIao8= -k8s.io/apimachinery v0.28.4/go.mod h1:wI37ncBvfAoswfq626yPTe6Bz1c22L7uaJ8dho83mgg= -k8s.io/apiserver v0.28.4 h1:BJXlaQbAU/RXYX2lRz+E1oPe3G3TKlozMMCZWu5GMgg= -k8s.io/apiserver v0.28.4/go.mod h1:Idq71oXugKZoVGUUL2wgBCTHbUR+FYTWa4rq9j4n23w= -k8s.io/client-go v0.28.4 h1:Np5ocjlZcTrkyRJ3+T3PkXDpe4UpatQxj85+xjaD2wY= -k8s.io/client-go v0.28.4/go.mod h1:0VDZFpgoZfelyP5Wqu0/r/TRYcLYuJ2U1KEeoaPa1N4= -k8s.io/component-base v0.28.4 h1:c/iQLWPdUgI90O+T9TeECg8o7N3YJTiuz2sKxILYcYo= -k8s.io/component-base v0.28.4/go.mod h1:m9hR0uvqXDybiGL2nf/3Lf0MerAfQXzkfWhUY58JUbU= -k8s.io/klog/v2 v2.100.1 h1:7WCHKK6K8fNhTqfBhISHQ97KrnJNFZMcQvKp7gP/tmg= -k8s.io/klog/v2 v2.100.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 h1:LyMgNKD2P8Wn1iAwQU5OhxCKlKJy0sHc+PcDwFB24dQ= -k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9/go.mod h1:wZK2AVp1uHCp4VamDVgBP2COHZjqD1T68Rf0CM3YjSM= -k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 h1:qY1Ad8PODbnymg2pRbkyMT/ylpTrCM8P2RJ0yroCyIk= -k8s.io/utils v0.0.0-20230406110748-d93618cff8a2/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 h1:trsWhjU5jZrx6UvFu4WzQDrN7Pga4a7Qg+zcfcj64PA= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2/go.mod h1:+qG7ISXqCDVVcyO8hLn12AKVYYUjM7ftlqsqmrhMZE0= -sigs.k8s.io/controller-runtime v0.16.3 h1:2TuvuokmfXvDUamSx1SuAOO3eTyye+47mJCigwG62c4= -sigs.k8s.io/controller-runtime v0.16.3/go.mod h1:j7bialYoSn142nv9sCOJmQgDXQXxnroFU4VnX/brVJ0= +k8s.io/api v0.29.2 h1:hBC7B9+MU+ptchxEqTNW2DkUosJpp1P+Wn6YncZ474A= +k8s.io/api v0.29.2/go.mod h1:sdIaaKuU7P44aoyyLlikSLayT6Vb7bvJNCX105xZXY0= +k8s.io/apiextensions-apiserver v0.29.2 h1:UK3xB5lOWSnhaCk0RFZ0LUacPZz9RY4wi/yt2Iu+btg= +k8s.io/apiextensions-apiserver v0.29.2/go.mod h1:aLfYjpA5p3OwtqNXQFkhJ56TB+spV8Gc4wfMhUA3/b8= +k8s.io/apimachinery v0.29.2 h1:EWGpfJ856oj11C52NRCHuU7rFDwxev48z+6DSlGNsV8= +k8s.io/apimachinery v0.29.2/go.mod h1:6HVkd1FwxIagpYrHSwJlQqZI3G9LfYWRPAkUvLnXTKU= +k8s.io/apiserver v0.29.2 h1:+Z9S0dSNr+CjnVXQePG8TcBWHr3Q7BmAr7NraHvsMiQ= +k8s.io/apiserver v0.29.2/go.mod h1:B0LieKVoyU7ykQvPFm7XSdIHaCHSzCzQWPFa5bqbeMQ= +k8s.io/client-go v0.29.2 h1:FEg85el1TeZp+/vYJM7hkDlSTFZ+c5nnK44DJ4FyoRg= +k8s.io/client-go v0.29.2/go.mod h1:knlvFZE58VpqbQpJNbCbctTVXcd35mMyAAwBdpt4jrA= +k8s.io/component-base v0.29.2 h1:lpiLyuvPA9yV1aQwGLENYyK7n/8t6l3nn3zAtFTJYe8= +k8s.io/component-base v0.29.2/go.mod h1:BfB3SLrefbZXiBfbM+2H1dlat21Uewg/5qtKOl8degM= +k8s.io/klog/v2 v2.120.1 h1:QXU6cPEOIslTGvZaXvFWiP9VKyeet3sawzTOvdXb4Vw= +k8s.io/klog/v2 v2.120.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= +k8s.io/kube-openapi v0.0.0-20240221221325-2ac9dc51f3f1 h1:rtdnaWfP40MTKv7izH81gkWpZB45pZrwIxyZdPSn1mI= +k8s.io/kube-openapi v0.0.0-20240221221325-2ac9dc51f3f1/go.mod h1:Pa1PvrP7ACSkuX6I7KYomY6cmMA0Tx86waBhDUgoKPw= +k8s.io/utils v0.0.0-20240102154912-e7106e64919e h1:eQ/4ljkx21sObifjzXwlPKpdGLrCfRziVtos3ofG/sQ= +k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 h1:/U5vjBbQn3RChhv7P11uhYvCSm5G2GaIi5AIGBS6r4c= +sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0/go.mod h1:z7+wmGM2dfIiLRfrC6jb5kV2Mq/sK1ZP303cxzkV5Y4= +sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= +sigs.k8s.io/controller-runtime v0.17.2/go.mod h1:+MngTvIQQQhfXtwfdGw/UOQ/aIaqsYywfCINOtwMO/s= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE= -sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E= -sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo= -sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= +sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4= +sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08= +sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E= +sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY= diff --git a/pkg/apis/scorecard/v1alpha3/zz_generated.deepcopy.go b/pkg/apis/scorecard/v1alpha3/zz_generated.deepcopy.go index ee3c5503c..cbecaf951 100644 --- a/pkg/apis/scorecard/v1alpha3/zz_generated.deepcopy.go +++ b/pkg/apis/scorecard/v1alpha3/zz_generated.deepcopy.go @@ -1,5 +1,4 @@ //go:build !ignore_autogenerated -// +build !ignore_autogenerated /* diff --git a/pkg/operators/v1/zz_generated.deepcopy.go b/pkg/operators/v1/zz_generated.deepcopy.go index 33ea16229..d6f89ba40 100644 --- a/pkg/operators/v1/zz_generated.deepcopy.go +++ b/pkg/operators/v1/zz_generated.deepcopy.go @@ -1,5 +1,4 @@ //go:build !ignore_autogenerated -// +build !ignore_autogenerated /* diff --git a/pkg/operators/v1alpha1/zz_generated.deepcopy.go b/pkg/operators/v1alpha1/zz_generated.deepcopy.go index 52f1a730a..684a7432a 100644 --- a/pkg/operators/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/operators/v1alpha1/zz_generated.deepcopy.go @@ -1,5 +1,4 @@ //go:build !ignore_autogenerated -// +build !ignore_autogenerated /* diff --git a/pkg/operators/v1alpha2/zz_generated.deepcopy.go b/pkg/operators/v1alpha2/zz_generated.deepcopy.go index 3d81e86ed..885643cb7 100644 --- a/pkg/operators/v1alpha2/zz_generated.deepcopy.go +++ b/pkg/operators/v1alpha2/zz_generated.deepcopy.go @@ -1,5 +1,4 @@ //go:build !ignore_autogenerated -// +build !ignore_autogenerated /* diff --git a/pkg/operators/v2/zz_generated.deepcopy.go b/pkg/operators/v2/zz_generated.deepcopy.go index 8f7498c35..92ecc812a 100644 --- a/pkg/operators/v2/zz_generated.deepcopy.go +++ b/pkg/operators/v2/zz_generated.deepcopy.go @@ -1,5 +1,4 @@ //go:build !ignore_autogenerated -// +build !ignore_autogenerated /*