feat: Scoped clusters (#7039)

feat: Scoped clusters (#7039)

Signed-off-by: pashavictorovich <pavel@codefresh.io>
This commit is contained in:
pasha-codefresh 2021-08-25 19:53:58 +03:00 committed by GitHub
parent 81155ccb0c
commit 49a854a738
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 737 additions and 504 deletions

View file

@ -3711,6 +3711,12 @@
"projectDetailedProjectsResponse": {
"type": "object",
"properties": {
"clusters": {
"type": "array",
"items": {
"$ref": "#/definitions/v1alpha1Cluster"
}
},
"globalProjects": {
"type": "array",
"items": {
@ -5184,6 +5190,10 @@
"type": "string"
}
},
"project": {
"type": "string",
"title": "Reference between project and cluster that allow you automatically to be added as item inside Destinations project entity"
},
"refreshRequestedAt": {
"$ref": "#/definitions/v1Time"
},

View file

@ -9,9 +9,12 @@ import (
"text/tabwriter"
"github.com/mattn/go-isatty"
"k8s.io/client-go/kubernetes"
"github.com/argoproj/argo-cd/v2/util/cli"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
cmdutil "github.com/argoproj/argo-cd/v2/cmd/util"
@ -19,7 +22,6 @@ import (
argocdclient "github.com/argoproj/argo-cd/v2/pkg/apiclient"
clusterpkg "github.com/argoproj/argo-cd/v2/pkg/apiclient/cluster"
argoappv1 "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1"
"github.com/argoproj/argo-cd/v2/util/cli"
"github.com/argoproj/argo-cd/v2/util/clusterauth"
"github.com/argoproj/argo-cd/v2/util/errors"
"github.com/argoproj/argo-cd/v2/util/io"
@ -135,6 +137,9 @@ func NewClusterAddCommand(clientOpts *argocdclient.ClientOptions, pathOpts *clie
if clusterOpts.Shard >= 0 {
clst.Shard = &clusterOpts.Shard
}
if clusterOpts.Project != "" {
clst.Project = clusterOpts.Project
}
clstCreateReq := clusterpkg.ClusterCreateRequest{
Cluster: clst,
Upsert: clusterOpts.Upsert,

View file

@ -111,6 +111,7 @@ type ClusterOptions struct {
Namespaces []string
ClusterResources bool
Name string
Project string
Shard int64
ExecProviderCommand string
ExecProviderArgs []string
@ -126,6 +127,7 @@ func AddClusterFlags(command *cobra.Command, opts *ClusterOptions) {
command.Flags().StringArrayVar(&opts.Namespaces, "namespace", nil, "List of namespaces which are allowed to manage")
command.Flags().BoolVar(&opts.ClusterResources, "cluster-resources", false, "Indicates if cluster level resources should be managed. The setting is used only if list of managed namespaces is not empty.")
command.Flags().StringVar(&opts.Name, "name", "", "Overwrite the cluster name")
command.Flags().StringVar(&opts.Project, "project", "", "project of the cluster")
command.Flags().Int64Var(&opts.Shard, "shard", -1, "Cluster shard number; inferred from hostname if not set")
command.Flags().StringVar(&opts.ExecProviderCommand, "exec-command", "", "Command to run to provide client credentials to the cluster. You may need to build a custom ArgoCD image to ensure the command is available at runtime.")
command.Flags().StringArrayVar(&opts.ExecProviderArgs, "exec-command-args", nil, "Arguments to supply to the --exec-command executable")

View file

@ -25,6 +25,7 @@ argocd admin cluster generate-spec CONTEXT [flags]
--name string Overwrite the cluster name
--namespace stringArray List of namespaces which are allowed to manage
-o, --output string Output format. One of: json|yaml (default "yaml")
--project string project of the cluster
--service-account string System namespace service account to use for kubernetes resource management. If not set then default "argocd-manager" SA will be used (default "argocd-manager")
--shard int Cluster shard number; inferred from hostname if not set (default -1)
--system-namespace string Use different system namespace (default "kube-system")

View file

@ -22,6 +22,7 @@ argocd cluster add CONTEXT [flags]
--kubeconfig string use a particular kubeconfig file
--name string Overwrite the cluster name
--namespace stringArray List of namespaces which are allowed to manage
--project string project of the cluster
--service-account string System namespace service account to use for kubernetes resource management. If not set then default "argocd-manager" SA will be created
--shard int Cluster shard number; inferred from hostname if not set (default -1)
--system-namespace string Use different system namespace (default "kube-system")

View file

@ -125,7 +125,7 @@ clean_swagger() {
}
echo "If additional types are added, the number of expected collisions may need to be increased"
EXPECTED_COLLISION_COUNT=57
EXPECTED_COLLISION_COUNT=64
collect_swagger server ${EXPECTED_COLLISION_COUNT}
clean_swagger server
clean_swagger reposerver

View file

@ -571,6 +571,7 @@ type DetailedProjectsResponse struct {
GlobalProjects []*v1alpha1.AppProject `protobuf:"bytes,1,rep,name=globalProjects,proto3" json:"globalProjects,omitempty"`
Project *v1alpha1.AppProject `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
Repositories []*v1alpha1.Repository `protobuf:"bytes,3,rep,name=repositories,proto3" json:"repositories,omitempty"`
Clusters []*v1alpha1.Cluster `protobuf:"bytes,4,rep,name=clusters,proto3" json:"clusters,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -630,6 +631,13 @@ func (m *DetailedProjectsResponse) GetRepositories() []*v1alpha1.Repository {
return nil
}
func (m *DetailedProjectsResponse) GetClusters() []*v1alpha1.Cluster {
if m != nil {
return m.Clusters
}
return nil
}
func init() {
proto.RegisterType((*ProjectCreateRequest)(nil), "project.ProjectCreateRequest")
proto.RegisterType((*ProjectTokenDeleteRequest)(nil), "project.ProjectTokenDeleteRequest")
@ -647,67 +655,69 @@ func init() {
func init() { proto.RegisterFile("server/project/project.proto", fileDescriptor_5f0a51496972c9e2) }
var fileDescriptor_5f0a51496972c9e2 = []byte{
// 952 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x96, 0xcf, 0x6f, 0xe3, 0x44,
0x14, 0xc7, 0xe5, 0xa4, 0xcd, 0xd2, 0xc9, 0x52, 0xca, 0x6c, 0xb7, 0xa4, 0xa1, 0xdb, 0x0d, 0x83,
0xa8, 0xa2, 0x42, 0xc7, 0x6a, 0xba, 0x48, 0x2b, 0x38, 0xb1, 0xec, 0x2a, 0x20, 0xf5, 0x00, 0x2e,
0x08, 0xc4, 0x01, 0x34, 0xb1, 0x9f, 0xdc, 0x69, 0x1c, 0xcf, 0x60, 0x4f, 0xdd, 0x86, 0xa8, 0x17,
0x24, 0x40, 0xe2, 0xc0, 0x01, 0x4e, 0xfc, 0x03, 0x9c, 0xf8, 0x43, 0x38, 0x22, 0x71, 0x47, 0xa8,
0xe2, 0x0f, 0x41, 0x33, 0xfe, 0x91, 0x38, 0xa9, 0x11, 0x88, 0xb0, 0x27, 0x8f, 0xc7, 0xcf, 0xef,
0xfb, 0x79, 0x6f, 0xe6, 0xbd, 0x19, 0xb4, 0x13, 0x43, 0x94, 0x40, 0x64, 0xcb, 0x48, 0x9c, 0x81,
0xab, 0xf2, 0x27, 0x95, 0x91, 0x50, 0x02, 0xdf, 0xca, 0x5e, 0xdb, 0x9b, 0xbe, 0xf0, 0x85, 0x99,
0xb3, 0xf5, 0x28, 0xfd, 0xdc, 0xde, 0xf1, 0x85, 0xf0, 0x03, 0xb0, 0x99, 0xe4, 0x36, 0x0b, 0x43,
0xa1, 0x98, 0xe2, 0x22, 0x8c, 0xb3, 0xaf, 0x64, 0xf8, 0x30, 0xa6, 0x5c, 0x98, 0xaf, 0xae, 0x88,
0xc0, 0x4e, 0x0e, 0x6d, 0x1f, 0x42, 0x88, 0x98, 0x02, 0x2f, 0xb3, 0x79, 0x30, 0xb5, 0x19, 0x31,
0xf7, 0x94, 0x87, 0x10, 0x8d, 0x6d, 0x39, 0xf4, 0xf5, 0x44, 0x6c, 0x8f, 0x40, 0xb1, 0x9b, 0xfe,
0x3a, 0xf6, 0xb9, 0x3a, 0x3d, 0x1f, 0x50, 0x57, 0x8c, 0x6c, 0x16, 0x19, 0xb0, 0x33, 0x33, 0x38,
0x70, 0x3d, 0x3b, 0xe9, 0x4d, 0x1d, 0x30, 0x29, 0x03, 0xee, 0x1a, 0x2a, 0x3b, 0x39, 0x64, 0x81,
0x3c, 0x65, 0x0b, 0xde, 0xc8, 0xf7, 0x16, 0xda, 0x7c, 0x2f, 0x8d, 0xf3, 0xed, 0x08, 0x98, 0x02,
0x07, 0x3e, 0x3f, 0x87, 0x58, 0xe1, 0x01, 0xca, 0xe3, 0x6f, 0x59, 0x1d, 0xab, 0xdb, 0xec, 0xbd,
0x43, 0xa7, 0xc2, 0x34, 0x17, 0x36, 0x83, 0xcf, 0x5c, 0x8f, 0x26, 0x3d, 0x2a, 0x87, 0x3e, 0xd5,
0xc2, 0x74, 0x46, 0x98, 0xe6, 0xc2, 0xf4, 0x2d, 0x29, 0x33, 0x1d, 0x27, 0x77, 0x8c, 0xb7, 0x50,
0xe3, 0x5c, 0xc6, 0x10, 0xa9, 0x56, 0xad, 0x63, 0x75, 0x9f, 0x71, 0xb2, 0x37, 0x32, 0x44, 0xdb,
0x99, 0xed, 0x07, 0x62, 0x08, 0xe1, 0x63, 0x08, 0x60, 0x0a, 0xd6, 0x2a, 0x83, 0xad, 0x4d, 0xdd,
0x61, 0xb4, 0x12, 0x89, 0x00, 0x8c, 0xb3, 0x35, 0xc7, 0x8c, 0xf1, 0x06, 0xaa, 0x73, 0xa6, 0x5a,
0xf5, 0x8e, 0xd5, 0xad, 0x3b, 0x7a, 0x88, 0xd7, 0x51, 0x8d, 0x7b, 0xad, 0x15, 0x63, 0x53, 0xe3,
0x1e, 0xf9, 0xd1, 0x2a, 0xab, 0x95, 0xd3, 0x50, 0xad, 0xd6, 0x41, 0x4d, 0x0f, 0x62, 0x37, 0xe2,
0x52, 0x07, 0x9a, 0x89, 0xce, 0x4e, 0x15, 0x3c, 0xf5, 0x19, 0x9e, 0x1d, 0xb4, 0x06, 0x97, 0x92,
0x47, 0x10, 0xbf, 0x1b, 0x1a, 0x88, 0xba, 0x33, 0x9d, 0xc8, 0xd8, 0x56, 0x0b, 0xb6, 0xd7, 0x8a,
0xc5, 0x31, 0x68, 0x0e, 0xc4, 0x52, 0x84, 0x31, 0xe0, 0x4d, 0xb4, 0xaa, 0xf4, 0x44, 0xc6, 0x94,
0xbe, 0x10, 0x82, 0x6e, 0x67, 0xd6, 0xef, 0x9f, 0x43, 0x34, 0xd6, 0xfa, 0x21, 0x1b, 0x41, 0x66,
0x64, 0xc6, 0xe4, 0x8b, 0xc2, 0xe3, 0x87, 0xd2, 0x7b, 0xba, 0xcb, 0x4d, 0x9e, 0x43, 0xcf, 0x3e,
0x19, 0x49, 0x35, 0xce, 0xc3, 0x20, 0x7b, 0x68, 0xe3, 0x64, 0x1c, 0xba, 0x1f, 0xf1, 0xd0, 0x13,
0x17, 0x71, 0x35, 0xf4, 0x18, 0xdd, 0x99, 0xb1, 0x2b, 0xb2, 0x30, 0x40, 0xb7, 0x2e, 0xd2, 0xa9,
0x96, 0xd5, 0xa9, 0xff, 0x77, 0xe6, 0xa9, 0x86, 0x93, 0x3b, 0x26, 0x97, 0x68, 0xab, 0x1f, 0x88,
0x01, 0x0b, 0xb2, 0x68, 0xa6, 0xea, 0x9f, 0xa2, 0x55, 0xae, 0x60, 0xb4, 0x24, 0xed, 0x99, 0x7c,
0xa5, 0x6e, 0xc9, 0xef, 0x35, 0xd4, 0x7a, 0x0c, 0x8a, 0xf1, 0x00, 0xbc, 0x05, 0x71, 0x89, 0xd6,
0xfd, 0x12, 0xd6, 0xd2, 0x29, 0xe6, 0xfc, 0xcf, 0x6e, 0x90, 0xda, 0xff, 0xd5, 0x0f, 0x02, 0x74,
0x3b, 0x02, 0x29, 0x62, 0xae, 0x44, 0xc4, 0x21, 0x6e, 0xd5, 0x97, 0x11, 0x93, 0x93, 0x7b, 0x1c,
0x3b, 0x25, 0xef, 0xbd, 0x9f, 0x9b, 0x68, 0x3d, 0x43, 0x38, 0x81, 0x28, 0xe1, 0x2e, 0xe0, 0x6f,
0x2d, 0xd4, 0x4c, 0xeb, 0xdf, 0xd4, 0x1b, 0x26, 0x34, 0x3f, 0x12, 0x2a, 0x3b, 0x44, 0xfb, 0xde,
0x8d, 0x36, 0xc5, 0x1e, 0x7f, 0xf8, 0xe5, 0x6f, 0x7f, 0xfe, 0x50, 0xeb, 0x91, 0x03, 0x73, 0x14,
0x24, 0x87, 0xf9, 0x21, 0x13, 0xdb, 0x93, 0x6c, 0x74, 0x65, 0xeb, 0xce, 0x10, 0xdb, 0x13, 0xfd,
0xb8, 0xb2, 0x4d, 0x2d, 0xbf, 0x61, 0xed, 0xe3, 0xaf, 0x2d, 0xd4, 0x4c, 0x5b, 0xdf, 0xdf, 0xc1,
0x94, 0x9a, 0x63, 0x7b, 0xab, 0xb0, 0x29, 0x57, 0xda, 0x9b, 0x86, 0xe2, 0xf5, 0xfd, 0xa3, 0x7f,
0x45, 0x61, 0x4f, 0x38, 0x53, 0x57, 0xf8, 0x3b, 0x0b, 0x35, 0xd2, 0x98, 0xf1, 0x42, 0xb0, 0xe5,
0x5c, 0x2c, 0x6d, 0x4f, 0x90, 0x17, 0x0d, 0xf0, 0x5d, 0xb2, 0x31, 0x0f, 0xac, 0x33, 0xf3, 0x95,
0x85, 0x56, 0x8e, 0x79, 0xac, 0xf0, 0xdd, 0x79, 0x1c, 0xd3, 0x43, 0xda, 0xc7, 0xcb, 0xc2, 0xd0,
0x22, 0xa4, 0x65, 0x50, 0x30, 0x5e, 0x40, 0xc1, 0x97, 0x08, 0xf7, 0x41, 0xcd, 0x15, 0x69, 0x15,
0xd4, 0x4b, 0xc5, 0x74, 0x55, 0x55, 0x93, 0xae, 0x51, 0x22, 0xb8, 0xb3, 0xb8, 0x4a, 0xba, 0x0f,
0x5e, 0xd9, 0x5e, 0xf6, 0x27, 0xfe, 0xc6, 0x42, 0xf5, 0x3e, 0x54, 0x6a, 0x2d, 0x6f, 0x1d, 0xee,
0x1b, 0xa4, 0x6d, 0xfc, 0x42, 0x05, 0x12, 0x9e, 0xa0, 0xe7, 0xfb, 0xa0, 0xca, 0x3d, 0xb2, 0x0a,
0xeb, 0x7e, 0x31, 0x7d, 0x73, 0x4f, 0x25, 0xd4, 0xa8, 0x75, 0xf1, 0x5e, 0x55, 0x02, 0xd2, 0xa6,
0x54, 0x2c, 0xc0, 0x4f, 0x16, 0x6a, 0xa4, 0xe7, 0xd8, 0xe2, 0xce, 0x2c, 0x9d, 0x6f, 0x4b, 0xcc,
0xc8, 0x91, 0x61, 0x3c, 0x68, 0x77, 0x2b, 0x4b, 0x89, 0xea, 0xab, 0x9b, 0xc7, 0x14, 0xa3, 0x06,
0x5a, 0xef, 0xd8, 0x8f, 0x51, 0x23, 0x2d, 0xd4, 0xaa, 0xd4, 0x54, 0x15, 0x6e, 0x96, 0xff, 0xfd,
0xca, 0xfc, 0x9f, 0x21, 0xa4, 0x77, 0xe9, 0x93, 0x04, 0xc2, 0xea, 0xc4, 0xdf, 0xa3, 0xe9, 0x55,
0x53, 0x47, 0x48, 0xf5, 0x75, 0x94, 0x26, 0x87, 0xd4, 0xfc, 0x62, 0x76, 0xf8, 0x9e, 0x11, 0xe9,
0xe0, 0xdd, 0xaa, 0xb4, 0x43, 0xea, 0x7d, 0x82, 0xee, 0xf4, 0x41, 0xcd, 0x1c, 0xc5, 0x27, 0x4a,
0xa7, 0x7e, 0xbb, 0x10, 0x9d, 0x3f, 0xcd, 0xdb, 0x3b, 0x37, 0x7d, 0x2a, 0x82, 0x7b, 0xd5, 0xe8,
0xbe, 0x82, 0x5f, 0xae, 0xd2, 0x8d, 0xc7, 0xa1, 0x9b, 0x9d, 0xc4, 0x8f, 0x1e, 0xfd, 0x72, 0xbd,
0x6b, 0xfd, 0x7a, 0xbd, 0x6b, 0xfd, 0x71, 0xbd, 0x6b, 0x7d, 0xf2, 0xe0, 0x9f, 0xdd, 0x82, 0xdd,
0x80, 0x43, 0x58, 0x5c, 0xec, 0x07, 0x0d, 0x73, 0xe9, 0x3d, 0xfa, 0x2b, 0x00, 0x00, 0xff, 0xff,
0xff, 0x44, 0x17, 0x08, 0xf9, 0x0b, 0x00, 0x00,
// 977 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x97, 0xcf, 0x6f, 0x23, 0x35,
0x14, 0xc7, 0x35, 0x49, 0x9b, 0xdd, 0x3a, 0x4b, 0x29, 0xde, 0x6e, 0x99, 0x86, 0x6e, 0x37, 0x18,
0x51, 0x45, 0x85, 0x7a, 0xd4, 0x74, 0x91, 0x56, 0x70, 0x62, 0x77, 0xab, 0x80, 0xd4, 0x03, 0x4c,
0x41, 0x20, 0x0e, 0x20, 0x67, 0xe6, 0x29, 0x75, 0x33, 0x19, 0x0f, 0x63, 0x27, 0xdb, 0x10, 0xf5,
0x82, 0x04, 0x48, 0x1c, 0x38, 0xc0, 0x89, 0x7f, 0x80, 0x13, 0xff, 0x04, 0x37, 0x8e, 0x48, 0xfc,
0x03, 0xa8, 0xe2, 0x0f, 0x41, 0xf6, 0xfc, 0x48, 0x26, 0xe9, 0x20, 0x50, 0x03, 0xa7, 0x78, 0xde,
0xbc, 0x79, 0xdf, 0xcf, 0x7b, 0xb6, 0x9f, 0x1d, 0xb4, 0x23, 0x21, 0x1e, 0x41, 0xec, 0x44, 0xb1,
0x38, 0x07, 0x4f, 0x65, 0xbf, 0x34, 0x8a, 0x85, 0x12, 0xf8, 0x56, 0xfa, 0xd8, 0xd8, 0xec, 0x89,
0x9e, 0x30, 0x36, 0x47, 0x8f, 0x92, 0xd7, 0x8d, 0x9d, 0x9e, 0x10, 0xbd, 0x00, 0x1c, 0x16, 0x71,
0x87, 0x85, 0xa1, 0x50, 0x4c, 0x71, 0x11, 0xca, 0xf4, 0x2d, 0xe9, 0x3f, 0x92, 0x94, 0x0b, 0xf3,
0xd6, 0x13, 0x31, 0x38, 0xa3, 0x43, 0xa7, 0x07, 0x21, 0xc4, 0x4c, 0x81, 0x9f, 0xfa, 0x3c, 0x9c,
0xfa, 0x0c, 0x98, 0x77, 0xc6, 0x43, 0x88, 0xc7, 0x4e, 0xd4, 0xef, 0x69, 0x83, 0x74, 0x06, 0xa0,
0xd8, 0x75, 0x5f, 0x9d, 0xf4, 0xb8, 0x3a, 0x1b, 0x76, 0xa9, 0x27, 0x06, 0x0e, 0x8b, 0x0d, 0xd8,
0xb9, 0x19, 0x1c, 0x78, 0xbe, 0x33, 0x6a, 0x4f, 0x03, 0xb0, 0x28, 0x0a, 0xb8, 0x67, 0xa8, 0x9c,
0xd1, 0x21, 0x0b, 0xa2, 0x33, 0xb6, 0x10, 0x8d, 0x7c, 0x6f, 0xa1, 0xcd, 0xf7, 0x92, 0x3c, 0x9f,
0xc4, 0xc0, 0x14, 0xb8, 0xf0, 0xf9, 0x10, 0xa4, 0xc2, 0x5d, 0x94, 0xe5, 0x6f, 0x5b, 0x4d, 0xab,
0x55, 0x6f, 0xbf, 0x43, 0xa7, 0xc2, 0x34, 0x13, 0x36, 0x83, 0xcf, 0x3c, 0x9f, 0x8e, 0xda, 0x34,
0xea, 0xf7, 0xa8, 0x16, 0xa6, 0x33, 0xc2, 0x34, 0x13, 0xa6, 0x6f, 0x47, 0x51, 0xaa, 0xe3, 0x66,
0x81, 0xf1, 0x16, 0xaa, 0x0d, 0x23, 0x09, 0xb1, 0xb2, 0x2b, 0x4d, 0xab, 0x75, 0xdb, 0x4d, 0x9f,
0x48, 0x1f, 0x6d, 0xa7, 0xbe, 0x1f, 0x88, 0x3e, 0x84, 0x4f, 0x21, 0x80, 0x29, 0x98, 0x5d, 0x04,
0x5b, 0x9b, 0x86, 0xc3, 0x68, 0x25, 0x16, 0x01, 0x98, 0x60, 0x6b, 0xae, 0x19, 0xe3, 0x0d, 0x54,
0xe5, 0x4c, 0xd9, 0xd5, 0xa6, 0xd5, 0xaa, 0xba, 0x7a, 0x88, 0xd7, 0x51, 0x85, 0xfb, 0xf6, 0x8a,
0xf1, 0xa9, 0x70, 0x9f, 0xfc, 0x68, 0x15, 0xd5, 0x8a, 0x65, 0x28, 0x57, 0x6b, 0xa2, 0xba, 0x0f,
0xd2, 0x8b, 0x79, 0xa4, 0x13, 0x4d, 0x45, 0x67, 0x4d, 0x39, 0x4f, 0x75, 0x86, 0x67, 0x07, 0xad,
0xc1, 0x45, 0xc4, 0x63, 0x90, 0xef, 0x86, 0x06, 0xa2, 0xea, 0x4e, 0x0d, 0x29, 0xdb, 0x6a, 0xce,
0xf6, 0x7a, 0x3e, 0x39, 0x06, 0xcd, 0x05, 0x19, 0x89, 0x50, 0x02, 0xde, 0x44, 0xab, 0x4a, 0x1b,
0x52, 0xa6, 0xe4, 0x81, 0x10, 0x74, 0x27, 0xf5, 0x7e, 0x7f, 0x08, 0xf1, 0x58, 0xeb, 0x87, 0x6c,
0x00, 0xa9, 0x93, 0x19, 0x93, 0x2f, 0xf2, 0x88, 0x1f, 0x46, 0xfe, 0xff, 0x3b, 0xdd, 0xe4, 0x79,
0xf4, 0xdc, 0xf1, 0x20, 0x52, 0xe3, 0x2c, 0x0d, 0xb2, 0x87, 0x36, 0x4e, 0xc7, 0xa1, 0xf7, 0x11,
0x0f, 0x7d, 0xf1, 0x4c, 0x96, 0x43, 0x8f, 0xd1, 0xdd, 0x19, 0xbf, 0xbc, 0x0a, 0x5d, 0x74, 0xeb,
0x59, 0x62, 0xb2, 0xad, 0x66, 0xf5, 0xe6, 0xcc, 0x53, 0x0d, 0x37, 0x0b, 0x4c, 0x2e, 0xd0, 0x56,
0x27, 0x10, 0x5d, 0x16, 0xa4, 0xd9, 0x4c, 0xd5, 0x3f, 0x45, 0xab, 0x5c, 0xc1, 0x60, 0x49, 0xda,
0x33, 0xf5, 0x4a, 0xc2, 0x92, 0x5f, 0xaa, 0xc8, 0x7e, 0x0a, 0x8a, 0xf1, 0x00, 0xfc, 0x05, 0xf1,
0x08, 0xad, 0xf7, 0x0a, 0x58, 0x4b, 0xa7, 0x98, 0x8b, 0x3f, 0xbb, 0x40, 0x2a, 0xff, 0x55, 0x3f,
0x08, 0xd0, 0x9d, 0x18, 0x22, 0x21, 0xb9, 0x12, 0x31, 0x07, 0x69, 0x57, 0x97, 0x91, 0x93, 0x9b,
0x45, 0x1c, 0xbb, 0x85, 0xe8, 0x98, 0xa1, 0xdb, 0x5e, 0x30, 0x94, 0x0a, 0x62, 0x69, 0xaf, 0x18,
0xa5, 0xe3, 0x9b, 0x29, 0x3d, 0x49, 0xa2, 0xb9, 0x79, 0xd8, 0xf6, 0xcf, 0x75, 0xb4, 0x9e, 0x66,
0x79, 0x0a, 0xf1, 0x88, 0x7b, 0x80, 0xbf, 0xb5, 0x50, 0x3d, 0x69, 0x31, 0x66, 0x4b, 0x63, 0x42,
0xb3, 0x53, 0xa7, 0xb4, 0x09, 0x35, 0xee, 0x5f, 0xeb, 0x93, 0x6f, 0xa3, 0x47, 0x5f, 0xfe, 0xfe,
0xe7, 0x0f, 0x95, 0x36, 0x39, 0x30, 0xa7, 0xcd, 0xe8, 0x30, 0x3b, 0xc7, 0xa4, 0x33, 0x49, 0x47,
0x97, 0x8e, 0x6e, 0x3e, 0xd2, 0x99, 0xe8, 0x9f, 0x4b, 0xc7, 0xb4, 0x8b, 0x37, 0xad, 0x7d, 0xfc,
0xb5, 0x85, 0xea, 0x49, 0x77, 0xfd, 0x3b, 0x98, 0x42, 0xff, 0x6d, 0x6c, 0xe5, 0x3e, 0xc5, 0xcd,
0xfc, 0x96, 0xa1, 0x78, 0x63, 0xff, 0xe8, 0x5f, 0x51, 0x38, 0x13, 0xce, 0xd4, 0x25, 0xfe, 0xce,
0x42, 0xb5, 0x24, 0x67, 0xbc, 0x90, 0x6c, 0xb1, 0x16, 0x4b, 0x5b, 0x76, 0xe4, 0x25, 0x03, 0x7c,
0x8f, 0x6c, 0xcc, 0x03, 0xeb, 0xca, 0x7c, 0x65, 0xa1, 0x95, 0x13, 0x2e, 0x15, 0xbe, 0x37, 0x8f,
0x63, 0xda, 0x54, 0xe3, 0x64, 0x59, 0x18, 0x5a, 0x84, 0xd8, 0x06, 0x05, 0xe3, 0x05, 0x14, 0x7c,
0x81, 0x70, 0x07, 0xd4, 0x5c, 0x1f, 0x28, 0x83, 0x7a, 0x39, 0x37, 0x97, 0x35, 0x0e, 0xd2, 0x32,
0x4a, 0x04, 0x37, 0x17, 0x67, 0x49, 0xb7, 0xda, 0x4b, 0xc7, 0x4f, 0xbf, 0xc4, 0xdf, 0x58, 0xa8,
0xda, 0x81, 0x52, 0xad, 0xe5, 0xcd, 0xc3, 0x03, 0x83, 0xb4, 0x8d, 0x5f, 0x2c, 0x41, 0xc2, 0x13,
0xf4, 0x42, 0x07, 0x54, 0xb1, 0x0d, 0x97, 0x61, 0x3d, 0xc8, 0xcd, 0xd7, 0xb7, 0x6d, 0x42, 0x8d,
0x5a, 0x0b, 0xef, 0x95, 0x15, 0x20, 0xe9, 0x7b, 0xf9, 0x04, 0xfc, 0x64, 0xa1, 0x5a, 0x72, 0x54,
0x2e, 0xae, 0xcc, 0xc2, 0x11, 0xba, 0xc4, 0x8a, 0x1c, 0x19, 0xc6, 0x83, 0x46, 0xab, 0x74, 0x2b,
0x51, 0x7d, 0x3b, 0xf4, 0x99, 0x62, 0xd4, 0x40, 0xeb, 0x15, 0xfb, 0x31, 0xaa, 0x25, 0x1b, 0xb5,
0xac, 0x34, 0x65, 0x1b, 0x37, 0xad, 0xff, 0x7e, 0x69, 0xfd, 0xcf, 0x11, 0xd2, 0xab, 0xf4, 0x78,
0x04, 0x61, 0x79, 0xe1, 0xef, 0xd3, 0xe4, 0x36, 0xab, 0x33, 0xa4, 0xfa, 0xc6, 0x4b, 0x47, 0x87,
0xd4, 0x7c, 0x62, 0x56, 0xf8, 0x9e, 0x11, 0x69, 0xe2, 0xdd, 0xb2, 0xb2, 0x43, 0x12, 0x7d, 0x82,
0xee, 0x76, 0x40, 0xcd, 0x9c, 0xf6, 0xa7, 0x4a, 0x97, 0x7e, 0x3b, 0x17, 0x9d, 0xbf, 0x30, 0x34,
0x76, 0xae, 0x7b, 0x95, 0x27, 0xf7, 0x9a, 0xd1, 0x7d, 0x15, 0xbf, 0x52, 0xa6, 0x2b, 0xc7, 0xa1,
0x97, 0x1e, 0xf6, 0x8f, 0x1f, 0xff, 0x7a, 0xb5, 0x6b, 0xfd, 0x76, 0xb5, 0x6b, 0xfd, 0x71, 0xb5,
0x6b, 0x7d, 0xf2, 0xf0, 0x9f, 0x5d, 0xb4, 0xbd, 0x80, 0x43, 0x98, 0xff, 0x77, 0xe8, 0xd6, 0xcc,
0xbd, 0xfa, 0xe8, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5b, 0x43, 0xdb, 0x65, 0x5c, 0x0c, 0x00,
0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -1608,6 +1618,20 @@ func (m *DetailedProjectsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
if len(m.Clusters) > 0 {
for iNdEx := len(m.Clusters) - 1; iNdEx >= 0; iNdEx-- {
{
size, err := m.Clusters[iNdEx].MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
i -= size
i = encodeVarintProject(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x22
}
}
if len(m.Repositories) > 0 {
for iNdEx := len(m.Repositories) - 1; iNdEx >= 0; iNdEx-- {
{
@ -1873,6 +1897,12 @@ func (m *DetailedProjectsResponse) Size() (n int) {
n += 1 + l + sovProject(uint64(l))
}
}
if len(m.Clusters) > 0 {
for _, e := range m.Clusters {
l = e.Size()
n += 1 + l + sovProject(uint64(l))
}
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@ -3046,6 +3076,40 @@ func (m *DetailedProjectsResponse) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Clusters", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProject
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthProject
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthProject
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Clusters = append(m.Clusters, &v1alpha1.Cluster{})
if err := m.Clusters[len(m.Clusters)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProject(dAtA[iNdEx:])

View file

@ -2631,423 +2631,423 @@ func init() {
}
var fileDescriptor_030104ce3b95bcac = []byte{
// 6652 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x6c, 0x24, 0xd9,
0x55, 0xf0, 0x56, 0xb7, 0x1f, 0xdd, 0xc7, 0x8f, 0x19, 0xdf, 0x79, 0xac, 0x33, 0xdf, 0x66, 0x3c,
0xaa, 0x55, 0x92, 0xfd, 0x48, 0x62, 0xb3, 0xc3, 0x12, 0x96, 0x6c, 0x48, 0x70, 0xdb, 0xf3, 0xf0,
0x8c, 0x67, 0xc6, 0x7b, 0xec, 0x99, 0x21, 0x0f, 0xc2, 0x96, 0xab, 0x6f, 0xb7, 0x6b, 0xdc, 0x5d,
0xd5, 0x5b, 0x55, 0xed, 0x71, 0x27, 0xe4, 0x85, 0x02, 0x59, 0x91, 0xc7, 0xae, 0x92, 0xfc, 0x48,
0x24, 0x04, 0xe1, 0x21, 0x24, 0x7e, 0x44, 0xc0, 0x2f, 0x40, 0x88, 0x3f, 0xf9, 0x15, 0x84, 0x04,
0x91, 0x40, 0x49, 0x20, 0xc2, 0x24, 0x43, 0x50, 0x00, 0x09, 0x10, 0x90, 0x3f, 0xcc, 0x2f, 0x74,
0xdf, 0xb7, 0xaa, 0xbb, 0xc7, 0xf6, 0xb8, 0x66, 0x12, 0x45, 0xfc, 0x73, 0x9f, 0x73, 0xea, 0x9c,
0x73, 0x5f, 0xe7, 0x9e, 0x7b, 0xce, 0xb9, 0xd7, 0xb0, 0xda, 0x0c, 0xd2, 0xad, 0xee, 0xe6, 0xbc,
0x1f, 0xb5, 0x17, 0xbc, 0xb8, 0x19, 0x75, 0xe2, 0xe8, 0x0e, 0xff, 0xe3, 0xad, 0x7e, 0x7d, 0x61,
0xe7, 0xfc, 0x42, 0x67, 0xbb, 0xb9, 0xe0, 0x75, 0x82, 0x64, 0xc1, 0xeb, 0x74, 0x5a, 0x81, 0xef,
0xa5, 0x41, 0x14, 0x2e, 0xec, 0x3c, 0xeb, 0xb5, 0x3a, 0x5b, 0xde, 0xb3, 0x0b, 0x4d, 0x1a, 0xd2,
0xd8, 0x4b, 0x69, 0x7d, 0xbe, 0x13, 0x47, 0x69, 0x44, 0xde, 0x61, 0xb8, 0xcd, 0x2b, 0x6e, 0xfc,
0x8f, 0x5f, 0xf0, 0xeb, 0xf3, 0x3b, 0xe7, 0xe7, 0x3b, 0xdb, 0xcd, 0x79, 0xc6, 0x6d, 0xde, 0xe2,
0x36, 0xaf, 0xb8, 0x9d, 0x79, 0xab, 0xa5, 0x4b, 0x33, 0x6a, 0x46, 0x0b, 0x9c, 0xe9, 0x66, 0xb7,
0xc1, 0x7f, 0xf1, 0x1f, 0xfc, 0x2f, 0x21, 0xec, 0x8c, 0xbb, 0xfd, 0x7c, 0x32, 0x1f, 0x44, 0x4c,
0xbd, 0x05, 0x3f, 0x8a, 0xe9, 0xc2, 0x4e, 0x9f, 0x42, 0x67, 0x9e, 0x33, 0x34, 0x6d, 0xcf, 0xdf,
0x0a, 0x42, 0x1a, 0xf7, 0x4c, 0x9b, 0xda, 0x34, 0xf5, 0x06, 0x7d, 0xb5, 0x30, 0xec, 0xab, 0xb8,
0x1b, 0xa6, 0x41, 0x9b, 0xf6, 0x7d, 0xf0, 0xb6, 0xfd, 0x3e, 0x48, 0xfc, 0x2d, 0xda, 0xf6, 0xf2,
0xdf, 0xb9, 0x2f, 0xc3, 0xd4, 0xe2, 0xed, 0xf5, 0xc5, 0x6e, 0xba, 0xb5, 0x14, 0x85, 0x8d, 0xa0,
0x49, 0x7e, 0x12, 0x26, 0xfc, 0x56, 0x37, 0x49, 0x69, 0x7c, 0xdd, 0x6b, 0xd3, 0x59, 0xe7, 0x9c,
0xf3, 0x4c, 0xb5, 0x76, 0xe2, 0xab, 0x7b, 0x73, 0x4f, 0xdc, 0xdb, 0x9b, 0x9b, 0x58, 0x32, 0x28,
0xb4, 0xe9, 0xc8, 0xff, 0x87, 0xf1, 0x38, 0x6a, 0xd1, 0x45, 0xbc, 0x3e, 0x5b, 0xe2, 0x9f, 0x1c,
0x93, 0x9f, 0x8c, 0xa3, 0x00, 0xa3, 0xc2, 0xbb, 0x5f, 0x2f, 0x01, 0x2c, 0x76, 0x3a, 0x6b, 0x71,
0x74, 0x87, 0xfa, 0x29, 0x79, 0x09, 0x2a, 0xac, 0x17, 0xea, 0x5e, 0xea, 0x71, 0x69, 0x13, 0xe7,
0x7f, 0x7c, 0x5e, 0x34, 0x66, 0xde, 0x6e, 0x8c, 0x19, 0x39, 0x46, 0x3d, 0xbf, 0xf3, 0xec, 0xfc,
0x8d, 0x4d, 0xf6, 0xfd, 0x35, 0x9a, 0x7a, 0x35, 0x22, 0x85, 0x81, 0x81, 0xa1, 0xe6, 0x4a, 0x42,
0x18, 0x49, 0x3a, 0xd4, 0xe7, 0x8a, 0x4d, 0x9c, 0x5f, 0x9d, 0x3f, 0xca, 0x14, 0x99, 0x37, 0x9a,
0xaf, 0x77, 0xa8, 0x5f, 0x9b, 0x94, 0x92, 0x47, 0xd8, 0x2f, 0xe4, 0x72, 0xc8, 0x0e, 0x8c, 0x25,
0xa9, 0x97, 0x76, 0x93, 0xd9, 0x32, 0x97, 0x78, 0xbd, 0x30, 0x89, 0x9c, 0x6b, 0x6d, 0x5a, 0xca,
0x1c, 0x13, 0xbf, 0x51, 0x4a, 0x73, 0xff, 0xde, 0x81, 0x69, 0x43, 0xbc, 0x1a, 0x24, 0x29, 0x79,
0x5f, 0x5f, 0xe7, 0xce, 0x1f, 0xac, 0x73, 0xd9, 0xd7, 0xbc, 0x6b, 0x8f, 0x4b, 0x61, 0x15, 0x05,
0xb1, 0x3a, 0xb6, 0x0d, 0xa3, 0x41, 0x4a, 0xdb, 0xc9, 0x6c, 0xe9, 0x5c, 0xf9, 0x99, 0x89, 0xf3,
0x97, 0x8b, 0x6a, 0x67, 0x6d, 0x4a, 0x0a, 0x1d, 0x5d, 0x61, 0xec, 0x51, 0x48, 0x71, 0xbf, 0x0f,
0x76, 0xfb, 0x58, 0x87, 0x93, 0x67, 0x61, 0x22, 0x89, 0xba, 0xb1, 0x4f, 0x91, 0x76, 0xa2, 0x64,
0xd6, 0x39, 0x57, 0x66, 0x53, 0x8f, 0xcd, 0xd4, 0x75, 0x03, 0x46, 0x9b, 0x86, 0x7c, 0xc6, 0x81,
0xc9, 0x3a, 0x4d, 0xd2, 0x20, 0xe4, 0xf2, 0x95, 0xf2, 0x1b, 0x47, 0x56, 0x5e, 0x01, 0x97, 0x0d,
0xf3, 0xda, 0x49, 0xd9, 0x90, 0x49, 0x0b, 0x98, 0x60, 0x46, 0x3e, 0x5b, 0x71, 0x75, 0x9a, 0xf8,
0x71, 0xd0, 0x61, 0xbf, 0xf9, 0x9c, 0xb1, 0x56, 0xdc, 0xb2, 0x41, 0xa1, 0x4d, 0x47, 0x42, 0x18,
0x65, 0x2b, 0x2a, 0x99, 0x1d, 0xe1, 0xfa, 0xaf, 0x1c, 0x4d, 0x7f, 0xd9, 0xa9, 0x6c, 0xb1, 0x9a,
0xde, 0x67, 0xbf, 0x12, 0x14, 0x62, 0xc8, 0xa7, 0x1d, 0x98, 0x95, 0x2b, 0x1e, 0xa9, 0xe8, 0xd0,
0xdb, 0x5b, 0x41, 0x4a, 0x5b, 0x41, 0x92, 0xce, 0x8e, 0x72, 0x1d, 0x16, 0x0e, 0x36, 0xb7, 0x2e,
0xc5, 0x51, 0xb7, 0x73, 0x35, 0x08, 0xeb, 0xb5, 0x73, 0x52, 0xd2, 0xec, 0xd2, 0x10, 0xc6, 0x38,
0x54, 0x24, 0xf9, 0x9c, 0x03, 0x67, 0x42, 0xaf, 0x4d, 0x93, 0x8e, 0xc7, 0x86, 0x56, 0xa0, 0x6b,
0x2d, 0xcf, 0xdf, 0xe6, 0x1a, 0x8d, 0x3d, 0x9c, 0x46, 0xae, 0xd4, 0xe8, 0xcc, 0xf5, 0xa1, 0xac,
0xf1, 0x01, 0x62, 0xc9, 0x6f, 0x3b, 0x30, 0x13, 0xc5, 0x9d, 0x2d, 0x2f, 0xa4, 0x75, 0x85, 0x4d,
0x66, 0xc7, 0xf9, 0xd2, 0x7b, 0xff, 0xd1, 0x86, 0xe8, 0x46, 0x9e, 0xed, 0xb5, 0x28, 0x0c, 0xd2,
0x28, 0x5e, 0xa7, 0x69, 0x1a, 0x84, 0xcd, 0xa4, 0x76, 0xea, 0xde, 0xde, 0xdc, 0x4c, 0x1f, 0x15,
0xf6, 0xeb, 0x43, 0x3e, 0x08, 0x13, 0x49, 0x2f, 0xf4, 0x6f, 0x07, 0x61, 0x3d, 0xba, 0x9b, 0xcc,
0x56, 0x8a, 0x58, 0xbe, 0xeb, 0x9a, 0xa1, 0x5c, 0x80, 0x46, 0x00, 0xda, 0xd2, 0x06, 0x0f, 0x9c,
0x99, 0x4a, 0xd5, 0xa2, 0x07, 0xce, 0x4c, 0xa6, 0x07, 0x88, 0x25, 0x9f, 0x70, 0x60, 0x2a, 0x09,
0x9a, 0xa1, 0x97, 0x76, 0x63, 0x7a, 0x95, 0xf6, 0x92, 0x59, 0xe0, 0x8a, 0x5c, 0x39, 0x62, 0xaf,
0x58, 0x2c, 0x6b, 0xa7, 0xa4, 0x8e, 0x53, 0x36, 0x34, 0xc1, 0xac, 0xdc, 0x41, 0x0b, 0xcd, 0x4c,
0xeb, 0x89, 0x62, 0x17, 0x9a, 0x99, 0xd4, 0x43, 0x45, 0xba, 0x7f, 0x5e, 0x82, 0xe3, 0xf9, 0x3d,
0x88, 0xfc, 0xae, 0x03, 0xc7, 0xee, 0xdc, 0x4d, 0x37, 0xa2, 0x6d, 0x1a, 0x26, 0xb5, 0x1e, 0xb3,
0x14, 0xdc, 0xfa, 0x4e, 0x9c, 0xf7, 0x8b, 0xdd, 0xed, 0xe6, 0xaf, 0x64, 0xa5, 0x5c, 0x08, 0xd3,
0xb8, 0x57, 0x7b, 0x52, 0xb6, 0xe7, 0xd8, 0x95, 0xdb, 0x1b, 0x36, 0x16, 0xf3, 0x4a, 0x9d, 0xf9,
0xa4, 0x03, 0x27, 0x07, 0xb1, 0x20, 0xc7, 0xa1, 0xbc, 0x4d, 0x7b, 0xc2, 0xc1, 0x41, 0xf6, 0x27,
0xf9, 0x79, 0x18, 0xdd, 0xf1, 0x5a, 0x5d, 0x2a, 0x1d, 0x85, 0x4b, 0x47, 0x6b, 0x88, 0xd6, 0x0c,
0x05, 0xd7, 0xb7, 0x97, 0x9e, 0x77, 0xdc, 0xbf, 0x2a, 0xc3, 0x84, 0xb5, 0x55, 0x3c, 0x06, 0xe7,
0x27, 0xca, 0x38, 0x3f, 0xd7, 0x0a, 0xdb, 0xe5, 0x86, 0x7a, 0x3f, 0x77, 0x73, 0xde, 0xcf, 0x8d,
0xe2, 0x44, 0x3e, 0xd0, 0xfd, 0x21, 0x29, 0x54, 0xa3, 0x0e, 0x73, 0x6e, 0xd9, 0x2e, 0x3a, 0x52,
0xc4, 0x10, 0xde, 0x50, 0xec, 0x6a, 0x53, 0xf7, 0xf6, 0xe6, 0xaa, 0xfa, 0x27, 0x1a, 0x41, 0xee,
0x37, 0x1c, 0x38, 0x69, 0xe9, 0xb8, 0x14, 0x85, 0xf5, 0x80, 0x0f, 0xed, 0x39, 0x18, 0x49, 0x7b,
0x1d, 0xe5, 0x41, 0xeb, 0x9e, 0xda, 0xe8, 0x75, 0x28, 0x72, 0x0c, 0xf3, 0x99, 0xdb, 0x34, 0x49,
0xbc, 0x26, 0xcd, 0xfb, 0xcc, 0xd7, 0x04, 0x18, 0x15, 0x9e, 0xc4, 0x40, 0x5a, 0x5e, 0x92, 0x6e,
0xc4, 0x5e, 0x98, 0x70, 0xf6, 0x1b, 0x41, 0x9b, 0xca, 0x0e, 0xfe, 0xb1, 0x83, 0xcd, 0x18, 0xf6,
0x45, 0xed, 0xf4, 0xbd, 0xbd, 0x39, 0xb2, 0xda, 0xc7, 0x09, 0x07, 0x70, 0x77, 0x3f, 0xe7, 0xc0,
0xe9, 0xc1, 0x6e, 0x0d, 0x79, 0x23, 0x8c, 0x25, 0x34, 0xde, 0xa1, 0xb1, 0x6c, 0x9d, 0x19, 0x12,
0x0e, 0x45, 0x89, 0x25, 0x0b, 0x50, 0xd5, 0x26, 0x57, 0xb6, 0x71, 0x46, 0x92, 0x56, 0x8d, 0x9d,
0x36, 0x34, 0xac, 0xd3, 0xd8, 0x0f, 0xe9, 0x04, 0xe9, 0x4e, 0xe3, 0xe7, 0x0d, 0x8e, 0x71, 0xff,
0xc1, 0x81, 0x63, 0x96, 0x56, 0x8f, 0xc1, 0xcb, 0x0d, 0xb3, 0x5e, 0xee, 0x4a, 0x61, 0xf3, 0x79,
0x88, 0x9b, 0xfb, 0x95, 0x31, 0x98, 0xb1, 0x67, 0x3d, 0x37, 0xc7, 0xfc, 0x80, 0x45, 0x3b, 0xd1,
0x4d, 0x5c, 0x95, 0x7d, 0x6e, 0x0e, 0x58, 0x02, 0x8c, 0x0a, 0xcf, 0x3a, 0xb1, 0xe3, 0xa5, 0x5b,
0xb2, 0xc3, 0x75, 0x27, 0xae, 0x79, 0xe9, 0x16, 0x72, 0x0c, 0x79, 0x27, 0x4c, 0xa7, 0x5e, 0xdc,
0xa4, 0x29, 0xd2, 0x9d, 0x20, 0x51, 0xeb, 0xa5, 0x5a, 0x3b, 0x2d, 0x69, 0xa7, 0x37, 0x32, 0x58,
0xcc, 0x51, 0x93, 0x97, 0x61, 0x64, 0x8b, 0xb6, 0xda, 0xd2, 0xaf, 0x59, 0x2f, 0x6e, 0x85, 0xf3,
0xb6, 0x5e, 0xa6, 0xad, 0x76, 0xad, 0xc2, 0x54, 0x66, 0x7f, 0x21, 0x17, 0x45, 0x7e, 0xd9, 0x81,
0xea, 0x76, 0x37, 0x49, 0xa3, 0x76, 0xf0, 0x01, 0x3a, 0x5b, 0xe1, 0x82, 0x7f, 0xae, 0x60, 0xc1,
0x57, 0x15, 0x7f, 0xb1, 0xde, 0xf5, 0x4f, 0x34, 0x92, 0xc9, 0x87, 0x60, 0x7c, 0x3b, 0x89, 0xc2,
0x90, 0x32, 0x4f, 0x85, 0x29, 0x71, 0xab, 0x68, 0x25, 0x04, 0xf7, 0xda, 0x04, 0x1b, 0x5b, 0xf9,
0x03, 0x95, 0x4c, 0xde, 0x0d, 0xf5, 0x20, 0xa6, 0x7e, 0x1a, 0xc5, 0xbd, 0x59, 0x78, 0x24, 0xdd,
0xb0, 0xac, 0xf8, 0x8b, 0x6e, 0xd0, 0x3f, 0xd1, 0x48, 0x26, 0x3d, 0x18, 0xeb, 0xb4, 0xba, 0xcd,
0x20, 0x9c, 0x9d, 0xe0, 0x3a, 0xdc, 0x2c, 0x58, 0x87, 0x35, 0xce, 0xbc, 0x06, 0xcc, 0xa8, 0x88,
0xbf, 0x51, 0x0a, 0x24, 0x4f, 0xc3, 0xa8, 0xbf, 0xe5, 0xc5, 0xe9, 0xec, 0x24, 0x9f, 0xb3, 0x7a,
0x11, 0x2d, 0x31, 0x20, 0x0a, 0x9c, 0xfb, 0x9b, 0x25, 0x38, 0x33, 0xbc, 0x61, 0x62, 0x35, 0xf9,
0xdd, 0x38, 0x11, 0xf6, 0xb9, 0x62, 0xaf, 0x26, 0x0e, 0x46, 0x85, 0x27, 0x1f, 0x73, 0x60, 0xfc,
0x8e, 0x1c, 0xf1, 0xd2, 0x23, 0x19, 0xf1, 0x2b, 0x72, 0xc4, 0xb5, 0x0e, 0x57, 0xd4, 0xa8, 0x4b,
0xb9, 0x4c, 0x5d, 0xba, 0xeb, 0xb7, 0xba, 0x75, 0x65, 0x19, 0x35, 0xe9, 0x05, 0x01, 0x46, 0x85,
0x67, 0xa4, 0x41, 0x28, 0x48, 0x47, 0xb2, 0xa4, 0x2b, 0xa1, 0x24, 0x95, 0x78, 0xf7, 0xbb, 0x65,
0x38, 0x35, 0x70, 0xf1, 0x91, 0x79, 0x00, 0xee, 0xb3, 0x5c, 0x0c, 0xd8, 0x01, 0x53, 0x9c, 0xaa,
0xa7, 0x99, 0x8b, 0x71, 0x4b, 0x43, 0xd1, 0xa2, 0x20, 0x1f, 0x01, 0xe8, 0x78, 0xb1, 0xd7, 0xa6,
0x29, 0x8d, 0x95, 0x9d, 0xbc, 0x7a, 0xb4, 0x5e, 0x62, 0x7a, 0xac, 0x29, 0x9e, 0xc6, 0xc7, 0xd1,
0xa0, 0x04, 0x2d, 0x91, 0xec, 0x0c, 0x1d, 0xd3, 0x16, 0xf5, 0x12, 0x7a, 0xdd, 0x6c, 0x1f, 0xfa,
0x0c, 0x8d, 0x06, 0x85, 0x36, 0x1d, 0xdb, 0xc7, 0x78, 0x2b, 0x12, 0xd9, 0x57, 0x7a, 0x1f, 0xe3,
0xed, 0x4c, 0x50, 0x62, 0xc9, 0xab, 0x0e, 0x4c, 0x37, 0x82, 0x16, 0x35, 0xd2, 0xe5, 0x89, 0xf7,
0xc6, 0xd1, 0x1b, 0x79, 0xd1, 0xe6, 0x6b, 0x2c, 0x70, 0x06, 0x9c, 0x60, 0x4e, 0x3c, 0x1b, 0xe6,
0x1d, 0x1a, 0x73, 0xd3, 0x3d, 0x96, 0x1d, 0xe6, 0x5b, 0x02, 0x8c, 0x0a, 0xef, 0x7e, 0xb1, 0x04,
0xb3, 0xc3, 0xe6, 0x1c, 0x49, 0xd8, 0xcc, 0x4a, 0x6f, 0x79, 0x71, 0x22, 0xdd, 0xf7, 0x23, 0x9e,
0x02, 0x25, 0xdf, 0x5b, 0x5e, 0x6c, 0xcf, 0x51, 0x2e, 0x00, 0x95, 0x24, 0x72, 0x07, 0x46, 0xd2,
0x96, 0x57, 0x50, 0xd8, 0xc8, 0x92, 0x68, 0x9c, 0xac, 0xd5, 0xc5, 0x04, 0xb9, 0x0c, 0xf2, 0x14,
0x8c, 0xb4, 0x82, 0x4d, 0xe6, 0x8c, 0xb2, 0x49, 0xcc, 0x77, 0x95, 0xd5, 0x60, 0x33, 0x41, 0x0e,
0x75, 0xbf, 0xee, 0x0c, 0xe8, 0x1b, 0x69, 0x74, 0xd9, 0xa4, 0xa2, 0xe1, 0x4e, 0x10, 0x47, 0x61,
0x9b, 0x86, 0x69, 0x3e, 0x14, 0x7a, 0xc1, 0xa0, 0xd0, 0xa6, 0x23, 0xbf, 0xe4, 0x0c, 0x58, 0x0d,
0x47, 0x8c, 0x01, 0x4a, 0x95, 0x0e, 0xbc, 0x20, 0xdc, 0xff, 0x18, 0x1b, 0x60, 0xff, 0xf4, 0x86,
0x46, 0xce, 0x03, 0x30, 0x6f, 0x6a, 0x2d, 0xa6, 0x8d, 0x60, 0x57, 0xb6, 0x4c, 0xb3, 0xbc, 0xae,
0x31, 0x68, 0x51, 0xa9, 0x6f, 0xd6, 0xbb, 0x0d, 0xf6, 0x4d, 0xa9, 0xff, 0x1b, 0x81, 0x41, 0x8b,
0x8a, 0x3c, 0x07, 0x63, 0x41, 0xdb, 0x6b, 0x52, 0xd5, 0xff, 0x4f, 0xb1, 0xc5, 0xb5, 0xc2, 0x21,
0xf7, 0xf7, 0xe6, 0xa6, 0xb5, 0x42, 0x1c, 0x84, 0x92, 0x96, 0xfc, 0x8e, 0x03, 0x93, 0x7e, 0xd4,
0x6e, 0x47, 0xe1, 0xaa, 0xb7, 0x49, 0x5b, 0x2a, 0xc4, 0x75, 0xe7, 0x51, 0x6d, 0xf7, 0xf3, 0x4b,
0x96, 0x30, 0x71, 0xc0, 0xd4, 0x81, 0x3b, 0x1b, 0x85, 0x19, 0xad, 0xec, 0x35, 0x38, 0xfa, 0xe0,
0x35, 0x48, 0xfe, 0xd8, 0x81, 0x19, 0xf1, 0xed, 0x62, 0x18, 0x46, 0xa9, 0x8c, 0x3c, 0x8a, 0x18,
0x55, 0xf4, 0x88, 0x9b, 0x65, 0x49, 0x14, 0x6d, 0x7b, 0x9d, 0x54, 0x73, 0xa6, 0x0f, 0x8f, 0xfd,
0x4a, 0x92, 0x4b, 0x30, 0xd3, 0x88, 0x62, 0x9f, 0xda, 0x1d, 0xc1, 0x1d, 0xbf, 0x8a, 0x61, 0x74,
0x31, 0x4f, 0x80, 0xfd, 0xdf, 0x90, 0x5b, 0x70, 0xda, 0x02, 0xda, 0xfd, 0x50, 0xe1, 0xdc, 0xce,
0x4a, 0x6e, 0xa7, 0x2f, 0x0e, 0xa4, 0xc2, 0x21, 0x5f, 0x9f, 0x79, 0x17, 0xcc, 0xf4, 0x8d, 0xdf,
0x80, 0xd3, 0xfd, 0x49, 0xfb, 0x74, 0x5f, 0xb5, 0x0e, 0xe5, 0x67, 0x96, 0xe1, 0xf4, 0xe0, 0x9e,
0x3a, 0x0c, 0x17, 0xf7, 0xd7, 0x1d, 0x78, 0x72, 0x88, 0x1b, 0xa3, 0x8f, 0x35, 0xce, 0xb0, 0x63,
0x0d, 0xf1, 0xa0, 0x4c, 0xc3, 0x1d, 0x69, 0x2c, 0x2e, 0x1e, 0x6d, 0x46, 0x5c, 0x08, 0x77, 0xc4,
0x40, 0x8f, 0xdf, 0xdb, 0x9b, 0x2b, 0x5f, 0x08, 0x77, 0x90, 0xf1, 0x76, 0x3f, 0x3f, 0x96, 0x39,
0x39, 0xad, 0xab, 0xc3, 0x3a, 0x57, 0x54, 0x9e, 0x9b, 0x6e, 0x14, 0x3c, 0x17, 0xad, 0x93, 0xa1,
0x08, 0xc1, 0x4b, 0x71, 0xe4, 0x93, 0x0e, 0x8f, 0x7a, 0xab, 0x13, 0xa5, 0xf4, 0xac, 0x1e, 0x4d,
0x10, 0xde, 0x8e, 0xa5, 0x2b, 0x20, 0xda, 0xd2, 0xd9, 0x4a, 0xee, 0x88, 0xa0, 0x53, 0xde, 0xbf,
0x52, 0x71, 0x71, 0x85, 0x27, 0xbb, 0x00, 0x49, 0x2f, 0xf4, 0xd7, 0xa2, 0x56, 0xe0, 0xf7, 0x64,
0x98, 0xa1, 0x80, 0xc8, 0xa9, 0xe0, 0x27, 0x9c, 0x2c, 0xf3, 0x1b, 0x2d, 0x59, 0xe4, 0x4b, 0x0e,
0xcc, 0x04, 0xcd, 0x30, 0x8a, 0xe9, 0x72, 0xd0, 0x68, 0xd0, 0x98, 0x86, 0x3e, 0x55, 0x7e, 0xc8,
0xed, 0xa3, 0x69, 0xa0, 0x82, 0x7e, 0x2b, 0x79, 0xf6, 0x66, 0x89, 0xf7, 0xa1, 0xb0, 0x5f, 0x19,
0x52, 0x87, 0x91, 0x20, 0x6c, 0x44, 0xd2, 0xb0, 0xd5, 0x8e, 0xa6, 0xd4, 0x4a, 0xd8, 0x88, 0xcc,
0x5a, 0x61, 0xbf, 0x90, 0x73, 0x27, 0xab, 0x70, 0x32, 0x96, 0x27, 0xd1, 0xcb, 0x41, 0xc2, 0xfc,
0xf9, 0xd5, 0xa0, 0x1d, 0xa4, 0xdc, 0x28, 0x95, 0x6b, 0xb3, 0xf7, 0xf6, 0xe6, 0x4e, 0xe2, 0x00,
0x3c, 0x0e, 0xfc, 0xca, 0x7d, 0xa5, 0x9a, 0x3d, 0x6e, 0x8b, 0x60, 0xd2, 0x87, 0xa0, 0x1a, 0xeb,
0xf0, 0xbd, 0xf0, 0x8c, 0x56, 0x8b, 0xe9, 0x63, 0x19, 0xc5, 0xd2, 0x71, 0x10, 0x13, 0xa8, 0x37,
0x12, 0x99, 0x87, 0xc4, 0x46, 0x5e, 0x2e, 0x8b, 0x02, 0xe6, 0x97, 0x94, 0x6a, 0x02, 0x76, 0xbd,
0xd0, 0x47, 0x2e, 0x83, 0xc4, 0x30, 0xb6, 0x45, 0xbd, 0x56, 0xba, 0x25, 0xe3, 0x49, 0x57, 0x8e,
0xea, 0xd3, 0x32, 0x5e, 0xf9, 0x58, 0x9d, 0x80, 0xa2, 0x94, 0x44, 0x76, 0x61, 0x7c, 0x4b, 0x0c,
0x82, 0xdc, 0xdb, 0xaf, 0x1d, 0xb5, 0x73, 0x33, 0x23, 0x6b, 0xd6, 0xaf, 0x04, 0xa0, 0x12, 0x47,
0x7e, 0xc5, 0x01, 0xf0, 0x55, 0x90, 0x4e, 0x2d, 0x1f, 0x2c, 0xcc, 0xee, 0xe8, 0xf8, 0x9f, 0x71,
0x8d, 0x34, 0x28, 0x41, 0x4b, 0x32, 0x79, 0x09, 0x26, 0x63, 0xea, 0x47, 0xa1, 0x1f, 0xb4, 0x68,
0x7d, 0x31, 0xe5, 0x6e, 0xfc, 0xe1, 0x82, 0x79, 0xc7, 0x99, 0x7f, 0x82, 0x16, 0x0f, 0xcc, 0x70,
0x24, 0xaf, 0x38, 0x30, 0xad, 0x03, 0x95, 0x6c, 0x40, 0xa8, 0x0c, 0xd8, 0xac, 0x16, 0x14, 0x16,
0xe5, 0x3c, 0x6b, 0x84, 0x1d, 0x57, 0xb2, 0x30, 0xcc, 0xc9, 0x25, 0xef, 0x01, 0x88, 0x36, 0x79,
0x50, 0x90, 0x35, 0xb5, 0x72, 0xe8, 0xa6, 0x4e, 0x8b, 0xf8, 0xb6, 0xe2, 0x80, 0x16, 0x37, 0x72,
0x15, 0x40, 0x2c, 0x9b, 0x8d, 0x5e, 0x87, 0xf2, 0xa0, 0x4c, 0xb5, 0xf6, 0x66, 0xd5, 0xf9, 0xeb,
0x1a, 0x73, 0x7f, 0x6f, 0xae, 0xff, 0xb4, 0xcb, 0xa3, 0xb1, 0xd6, 0xe7, 0xe4, 0x83, 0x30, 0x9e,
0x74, 0xdb, 0x6d, 0x4f, 0x07, 0x57, 0xd6, 0x8a, 0xdb, 0x11, 0x05, 0x5f, 0x33, 0x37, 0x25, 0x00,
0x95, 0x44, 0x37, 0x04, 0xd2, 0x4f, 0x4f, 0x9e, 0x83, 0x49, 0xba, 0x9b, 0xd2, 0x38, 0xf4, 0x5a,
0x37, 0x71, 0x55, 0x1d, 0xc7, 0xf9, 0xe0, 0x5f, 0xb0, 0xe0, 0x98, 0xa1, 0x22, 0xae, 0xf6, 0xbc,
0x4b, 0x9c, 0x1e, 0x8c, 0xe7, 0xad, 0xfc, 0x6c, 0xf7, 0x7f, 0x4a, 0x19, 0x8f, 0x60, 0x23, 0xa6,
0x94, 0x44, 0x30, 0x1a, 0x46, 0x75, 0x6d, 0xf4, 0xae, 0x14, 0x63, 0xf4, 0xae, 0x47, 0x75, 0x2b,
0xaf, 0xcc, 0x7e, 0x25, 0x28, 0xe4, 0xf0, 0xc4, 0x9b, 0xca, 0x50, 0x72, 0x84, 0x74, 0x82, 0x8a,
0x94, 0xac, 0x13, 0x6f, 0x37, 0x6c, 0x41, 0x98, 0x95, 0x4b, 0xb6, 0x61, 0x74, 0x2b, 0x4a, 0x52,
0x71, 0x56, 0x39, 0xb2, 0x17, 0x76, 0x39, 0x4a, 0x52, 0xbe, 0x85, 0xe9, 0x66, 0x33, 0x48, 0x82,
0x42, 0x86, 0xfb, 0x3d, 0x27, 0x13, 0x7c, 0xb9, 0xed, 0xa5, 0xfe, 0xd6, 0x85, 0x1d, 0x76, 0x7e,
0xbc, 0x9a, 0x49, 0x1c, 0xfc, 0x94, 0x9d, 0x38, 0xb8, 0xbf, 0x37, 0xf7, 0xa6, 0x61, 0x85, 0x3e,
0x77, 0x19, 0x87, 0x79, 0xce, 0xc2, 0xca, 0x31, 0x7c, 0xd4, 0x81, 0x09, 0x4b, 0x3d, 0xb9, 0xa1,
0x14, 0x18, 0xc3, 0xd6, 0xce, 0x95, 0x05, 0x44, 0x5b, 0xa4, 0xfb, 0x59, 0x07, 0xc6, 0x6b, 0x9e,
0xbf, 0x1d, 0x35, 0x1a, 0xe4, 0x2d, 0x50, 0xa9, 0x77, 0x65, 0x8a, 0x46, 0xb4, 0x4f, 0x47, 0xde,
0x97, 0x25, 0x1c, 0x35, 0x05, 0x9b, 0xc3, 0x0d, 0xcf, 0x4f, 0xa3, 0x98, 0xab, 0x5d, 0x16, 0x73,
0xf8, 0x22, 0x87, 0xa0, 0xc4, 0xb0, 0x43, 0x7a, 0xdb, 0xdb, 0x55, 0x1f, 0xe7, 0x23, 0x3f, 0xd7,
0x0c, 0x0a, 0x6d, 0x3a, 0xf7, 0xb5, 0x31, 0x18, 0x97, 0xb9, 0xd0, 0x03, 0x67, 0x33, 0x94, 0x17,
0x5f, 0x1a, 0xea, 0xc5, 0x27, 0x30, 0xe6, 0xf3, 0x32, 0x2a, 0xb9, 0x95, 0x1e, 0x31, 0x06, 0x26,
0x15, 0x14, 0x95, 0x59, 0x46, 0x2d, 0xf1, 0x1b, 0xa5, 0x28, 0xf2, 0x9a, 0x03, 0xc7, 0xfc, 0x28,
0x0c, 0xa9, 0x6f, 0xec, 0xfc, 0x48, 0x11, 0xd9, 0xbe, 0xa5, 0x2c, 0x53, 0x93, 0x74, 0xcd, 0x21,
0x30, 0x2f, 0x9e, 0xbc, 0x00, 0x53, 0xa2, 0xcf, 0x6e, 0x65, 0xce, 0xc7, 0x26, 0xff, 0x6d, 0x23,
0x31, 0x4b, 0x4b, 0xe6, 0x45, 0x9c, 0x81, 0x27, 0x84, 0xc4, 0x19, 0x59, 0x06, 0x1f, 0x75, 0xc6,
0x28, 0x41, 0x8b, 0x82, 0xc4, 0x40, 0x62, 0xda, 0x88, 0x69, 0xb2, 0x85, 0xf4, 0xe5, 0x2e, 0x4d,
0x52, 0xbe, 0xc7, 0x8c, 0x3f, 0x5c, 0x6e, 0x0c, 0xfb, 0x38, 0xe1, 0x00, 0xee, 0x64, 0x5b, 0x3a,
0xba, 0x95, 0x22, 0x96, 0x93, 0x1c, 0xe6, 0xa1, 0xfe, 0xee, 0x1c, 0x8c, 0x26, 0x5b, 0x5e, 0x5c,
0xe7, 0x7b, 0x5b, 0xb9, 0x56, 0x65, 0xb6, 0x64, 0x9d, 0x01, 0x50, 0xc0, 0xc9, 0x32, 0x1c, 0xcf,
0x65, 0xef, 0x13, 0xbe, 0x7b, 0x55, 0x6a, 0xb3, 0x92, 0xdd, 0xf1, 0x5c, 0xde, 0x3f, 0xc1, 0xbe,
0x2f, 0xdc, 0xef, 0x3b, 0xa0, 0xc8, 0x96, 0x3c, 0x7f, 0x8b, 0x32, 0x0d, 0xc8, 0x3b, 0x61, 0x5a,
0x7b, 0xa5, 0x4b, 0x51, 0x57, 0x86, 0xc1, 0xca, 0x26, 0x4e, 0x89, 0x19, 0x2c, 0xe6, 0xa8, 0xc9,
0x02, 0x54, 0x59, 0xc3, 0xc5, 0xa7, 0x62, 0x15, 0x6b, 0xcf, 0x77, 0x71, 0x6d, 0x45, 0x7e, 0x65,
0x68, 0x48, 0x04, 0x33, 0x2d, 0x2f, 0x49, 0xb9, 0x06, 0xcc, 0x49, 0x7d, 0xc8, 0x44, 0x27, 0xaf,
0x85, 0x59, 0xcd, 0x33, 0xc2, 0x7e, 0xde, 0xee, 0x37, 0x46, 0x60, 0x2a, 0xb3, 0xd0, 0x98, 0x91,
0xea, 0x26, 0x6c, 0x27, 0xd5, 0x27, 0x76, 0x6d, 0xa4, 0x6e, 0x4a, 0x38, 0x6a, 0x0a, 0x46, 0xdd,
0xf1, 0x92, 0xe4, 0x6e, 0x14, 0xd7, 0xa5, 0x65, 0xd0, 0xd4, 0x6b, 0x12, 0x8e, 0x9a, 0x82, 0x99,
0xab, 0x4d, 0xea, 0xc5, 0x34, 0xe6, 0xb5, 0x01, 0x79, 0x73, 0x55, 0x33, 0x28, 0xb4, 0xe9, 0xf8,
0x1a, 0x4f, 0x5b, 0xc9, 0x52, 0x2b, 0xa0, 0x61, 0x2a, 0xd4, 0x2c, 0x66, 0x8d, 0x6f, 0xac, 0xae,
0xdb, 0x4c, 0xcd, 0x1a, 0xcf, 0x21, 0x30, 0x2f, 0x9e, 0x7c, 0xdc, 0x81, 0x29, 0xef, 0x6e, 0x62,
0x4a, 0x47, 0xf9, 0x22, 0x3f, 0xb2, 0xcd, 0xcb, 0x54, 0xa3, 0xd6, 0x66, 0x98, 0xb5, 0xc8, 0x80,
0x30, 0x2b, 0x94, 0x7c, 0xc1, 0x01, 0x42, 0x77, 0xa9, 0xbf, 0x16, 0x47, 0x3b, 0x41, 0x5d, 0x8d,
0xa1, 0xf4, 0xa6, 0x8f, 0xe8, 0xbc, 0x5d, 0xe8, 0xe3, 0x2b, 0x8c, 0x44, 0x3f, 0x1c, 0x07, 0xe8,
0xe0, 0xfe, 0x5d, 0x19, 0x26, 0xac, 0xb5, 0x3d, 0xd0, 0x50, 0x3b, 0x3f, 0x64, 0x86, 0xba, 0x74,
0x08, 0x43, 0xfd, 0x11, 0xa8, 0xfa, 0xca, 0x50, 0x14, 0x53, 0xea, 0x9a, 0x37, 0x3f, 0xc6, 0x56,
0x68, 0x10, 0x1a, 0x99, 0xe4, 0x12, 0xcc, 0x58, 0x6c, 0xa4, 0x91, 0x19, 0xe1, 0x46, 0x46, 0xc7,
0x2d, 0x16, 0xf3, 0x04, 0xd8, 0xff, 0x0d, 0x79, 0x96, 0x39, 0x49, 0x81, 0x6c, 0x97, 0x38, 0x14,
0xca, 0x32, 0xd2, 0xc5, 0xb5, 0x15, 0x05, 0x46, 0x9b, 0xc6, 0xfd, 0x86, 0xa3, 0x07, 0xf7, 0x31,
0xd4, 0x20, 0xdc, 0xc9, 0xd6, 0x20, 0x5c, 0x28, 0xa4, 0x9b, 0x87, 0xd4, 0x1f, 0x5c, 0x87, 0xf1,
0xa5, 0xa8, 0xdd, 0xf6, 0xc2, 0x3a, 0x79, 0x03, 0x8c, 0xfb, 0xe2, 0x4f, 0x79, 0xea, 0xe0, 0x49,
0x69, 0x89, 0x45, 0x85, 0x23, 0x4f, 0xc1, 0x88, 0x17, 0x37, 0xd5, 0x49, 0x83, 0xe7, 0x58, 0x16,
0xe3, 0x66, 0x82, 0x1c, 0xea, 0x7e, 0xae, 0x04, 0xb0, 0x14, 0xb5, 0x3b, 0x5e, 0x4c, 0xeb, 0x1b,
0xd1, 0xff, 0x85, 0x1c, 0x85, 0x03, 0xfa, 0x29, 0x07, 0x08, 0xeb, 0x95, 0x28, 0xa4, 0xa1, 0xc9,
0xeb, 0xb0, 0xfd, 0xd2, 0x57, 0x50, 0xb9, 0xf9, 0x98, 0x35, 0xa0, 0x10, 0x68, 0x68, 0x0e, 0xe0,
0x94, 0x3e, 0xad, 0x42, 0xd6, 0xe5, 0x6c, 0xbe, 0x9c, 0xe7, 0x38, 0x65, 0x04, 0xdb, 0xfd, 0x7c,
0x09, 0x4e, 0x0b, 0xb3, 0x75, 0xcd, 0x0b, 0xbd, 0x26, 0x6d, 0x33, 0xad, 0x0e, 0x1a, 0xbc, 0xf6,
0x99, 0x37, 0x14, 0xa8, 0xf4, 0xf8, 0x51, 0x27, 0xa7, 0x98, 0x54, 0x62, 0x1a, 0xad, 0x84, 0x41,
0x8a, 0x9c, 0x39, 0x49, 0xa0, 0xa2, 0x2e, 0x2f, 0x48, 0x63, 0x53, 0x90, 0x20, 0xbd, 0xee, 0x2e,
0x49, 0xf6, 0xa8, 0x05, 0xb9, 0x5f, 0x71, 0x20, 0x6f, 0x44, 0xf9, 0x71, 0x41, 0x14, 0xb8, 0xe5,
0x8f, 0x0b, 0xd9, 0x7a, 0xb4, 0x43, 0x94, 0x77, 0xbd, 0x0f, 0x26, 0xbc, 0x34, 0xa5, 0xed, 0x8e,
0xf0, 0x5d, 0xcb, 0x0f, 0x17, 0x1f, 0xb9, 0x16, 0xd5, 0x83, 0x46, 0xc0, 0x7d, 0x56, 0x9b, 0x9d,
0xfb, 0x22, 0x54, 0x54, 0x4a, 0xe0, 0x00, 0x83, 0xf9, 0x74, 0x26, 0xc3, 0x31, 0x64, 0xba, 0xdc,
0x2f, 0xc1, 0x80, 0x5d, 0x90, 0x35, 0xd9, 0xd8, 0x8b, 0x4c, 0x93, 0x0f, 0x67, 0x33, 0xc8, 0xae,
0x48, 0x87, 0x88, 0x83, 0xf8, 0xbb, 0x8b, 0xde, 0xc5, 0x4d, 0x86, 0x64, 0x42, 0xea, 0xa7, 0xb3,
0x24, 0xe4, 0x3c, 0x80, 0x31, 0xf3, 0xb2, 0x2c, 0x40, 0x87, 0xf2, 0xcc, 0x6e, 0x80, 0x16, 0x15,
0x73, 0xea, 0x82, 0x30, 0x49, 0xbd, 0x56, 0xeb, 0x72, 0x10, 0xa6, 0xf2, 0xb0, 0xa3, 0x4d, 0xc0,
0x8a, 0x41, 0xa1, 0x4d, 0x77, 0xe6, 0x6d, 0xd6, 0xb8, 0x1c, 0x26, 0xd3, 0xf4, 0xa9, 0x12, 0x4c,
0x5f, 0x0a, 0xbb, 0x6b, 0x97, 0xd6, 0xba, 0x9b, 0xad, 0xc0, 0xbf, 0x4a, 0x7b, 0x6c, 0xd0, 0xb6,
0x69, 0x6f, 0x65, 0x59, 0x76, 0xbb, 0x1e, 0xb4, 0xab, 0x0c, 0x88, 0x02, 0xc7, 0xd4, 0x6c, 0x04,
0x61, 0x93, 0xc6, 0x9d, 0x38, 0x90, 0xde, 0xb8, 0xa5, 0xe6, 0x45, 0x83, 0x42, 0x9b, 0x8e, 0xf1,
0x8e, 0xee, 0x86, 0x34, 0xce, 0xdb, 0x8f, 0x1b, 0x0c, 0x88, 0x02, 0xc7, 0x88, 0xd2, 0xb8, 0x9b,
0xa4, 0xb2, 0xc7, 0x34, 0xd1, 0x06, 0x03, 0xa2, 0xc0, 0xb1, 0xe9, 0x91, 0x74, 0x37, 0x79, 0x98,
0x2e, 0x97, 0x30, 0x5d, 0x17, 0x60, 0x54, 0x78, 0x46, 0xba, 0x4d, 0x7b, 0xcb, 0x6c, 0x37, 0xcd,
0xd5, 0x37, 0x5c, 0x15, 0x60, 0x54, 0x78, 0xf7, 0x9f, 0x1c, 0x20, 0xd9, 0xee, 0x78, 0x0c, 0x1b,
0xf2, 0xcb, 0xd9, 0x0d, 0xf9, 0x88, 0x11, 0xd5, 0xac, 0xfa, 0x43, 0xf6, 0xe5, 0xdf, 0x72, 0x60,
0xd2, 0x0e, 0xae, 0x93, 0x66, 0xce, 0x10, 0xdd, 0xc8, 0x1a, 0xa2, 0xfb, 0x7b, 0x73, 0x3f, 0x33,
0xe8, 0x6e, 0x5d, 0x33, 0x48, 0xa3, 0x4e, 0xf2, 0x56, 0x1a, 0x36, 0x83, 0x90, 0xf2, 0xd0, 0x91,
0x08, 0xca, 0x67, 0x22, 0xf7, 0x4b, 0x51, 0x9d, 0x3e, 0x84, 0x25, 0x73, 0x6f, 0xc3, 0x4c, 0x5f,
0x51, 0xcb, 0x01, 0x8c, 0xce, 0xbe, 0x25, 0x8b, 0xee, 0xa7, 0x1d, 0x98, 0xca, 0xd4, 0x04, 0x15,
0x64, 0xca, 0xf8, 0xaa, 0x88, 0x78, 0x5e, 0x26, 0x0e, 0x42, 0x11, 0xb8, 0xa9, 0x58, 0xab, 0xc2,
0xa0, 0xd0, 0xa6, 0x73, 0x3f, 0x5b, 0x82, 0x8a, 0x0a, 0xf1, 0x1d, 0x40, 0x95, 0x4f, 0x3a, 0x30,
0xa5, 0x8f, 0xc6, 0xdc, 0x61, 0x2e, 0xa4, 0x2e, 0x84, 0x69, 0xa0, 0x93, 0x77, 0xcc, 0x61, 0xd6,
0x9e, 0x3b, 0xda, 0xc2, 0x30, 0x2b, 0x9b, 0xdc, 0x02, 0x48, 0x7a, 0x49, 0x4a, 0xdb, 0x96, 0xeb,
0xee, 0x5a, 0xab, 0x63, 0xde, 0x8f, 0x62, 0xca, 0xd6, 0xc2, 0xf5, 0xa8, 0x4e, 0xd7, 0x35, 0xa5,
0x31, 0x84, 0x06, 0x86, 0x16, 0x27, 0xf7, 0xf7, 0x4b, 0x70, 0x3c, 0xaf, 0x12, 0x79, 0x2f, 0x4c,
0x2a, 0xe9, 0xd6, 0x95, 0x42, 0x15, 0xd7, 0x9c, 0x44, 0x0b, 0x77, 0x7f, 0x6f, 0x6e, 0xae, 0xff,
0x4e, 0xe5, 0xbc, 0x4d, 0x82, 0x19, 0x66, 0x22, 0x3e, 0x21, 0xe3, 0x32, 0xb5, 0xde, 0x62, 0xa7,
0x23, 0x83, 0x0c, 0x56, 0x7c, 0xc2, 0xc6, 0x62, 0x8e, 0x9a, 0xac, 0xc1, 0x49, 0x0b, 0x72, 0x9d,
0x06, 0xcd, 0xad, 0xcd, 0x28, 0x16, 0xb5, 0xeb, 0xe5, 0xda, 0x53, 0x92, 0xcb, 0x49, 0x1c, 0x40,
0x83, 0x03, 0xbf, 0x24, 0x6f, 0x81, 0x8a, 0xef, 0x75, 0x3c, 0x3f, 0x48, 0x7b, 0xf2, 0x2c, 0xa2,
0xed, 0xc8, 0x92, 0x84, 0xa3, 0xa6, 0x70, 0xaf, 0xc1, 0xc8, 0x01, 0x67, 0xd0, 0x81, 0xf6, 0xe5,
0x17, 0xa1, 0xc2, 0xd8, 0x31, 0xbb, 0x51, 0x14, 0xcb, 0x08, 0x2a, 0xea, 0x2a, 0x03, 0x71, 0xa1,
0x1c, 0x78, 0x2a, 0x04, 0xa4, 0x9b, 0xb5, 0x92, 0x24, 0x5d, 0xee, 0x75, 0x30, 0x24, 0x79, 0x1a,
0xca, 0x74, 0xb7, 0x93, 0x8f, 0xf5, 0x5c, 0xd8, 0xed, 0x04, 0x31, 0x4d, 0x18, 0x11, 0xdd, 0xed,
0x90, 0x33, 0x50, 0x0a, 0xea, 0x72, 0x43, 0x01, 0x49, 0x53, 0x5a, 0x59, 0xc6, 0x52, 0x50, 0x77,
0x77, 0xa1, 0xaa, 0xef, 0x4e, 0x90, 0x6d, 0x65, 0x67, 0x9d, 0x22, 0x62, 0xf2, 0x8a, 0xef, 0x10,
0x0b, 0xdb, 0x05, 0x30, 0xd5, 0x64, 0x45, 0xd9, 0x97, 0x73, 0x30, 0xe2, 0x47, 0xb2, 0x70, 0xb3,
0x62, 0xd8, 0x70, 0x03, 0xcb, 0x31, 0xee, 0x6d, 0x98, 0xbe, 0x1a, 0x46, 0x77, 0x43, 0xb6, 0xf1,
0x5d, 0x0c, 0x68, 0xab, 0xce, 0x18, 0x37, 0xd8, 0x1f, 0xf9, 0xed, 0x9c, 0x63, 0x51, 0xe0, 0xf4,
0x05, 0x83, 0xd2, 0xb0, 0x0b, 0x06, 0xee, 0xaf, 0x3a, 0x70, 0x3c, 0x5f, 0x39, 0xf6, 0x03, 0x3b,
0x61, 0x7c, 0x94, 0x29, 0xa3, 0x4a, 0x93, 0x6e, 0x74, 0x44, 0x12, 0xf4, 0x79, 0x98, 0xdc, 0xec,
0x06, 0xad, 0xba, 0xfc, 0x2d, 0xf5, 0xd1, 0xc5, 0x57, 0x35, 0x0b, 0x87, 0x19, 0x4a, 0xe6, 0xa7,
0x6d, 0x06, 0xa1, 0x17, 0xf7, 0xd6, 0xcc, 0xbe, 0xa1, 0xcd, 0x53, 0x4d, 0x63, 0xd0, 0xa2, 0x72,
0xff, 0xa6, 0x0c, 0xe6, 0x12, 0x07, 0x09, 0x64, 0x8e, 0xdd, 0x29, 0x22, 0x6c, 0xb5, 0xde, 0x0b,
0x7d, 0x73, 0x5d, 0xa4, 0x92, 0x4b, 0xb1, 0x7f, 0xc2, 0x61, 0x1e, 0x62, 0x90, 0x06, 0x1e, 0x37,
0x16, 0xf2, 0xa0, 0xb4, 0x56, 0x50, 0x1a, 0x76, 0x45, 0x70, 0x8e, 0x62, 0xdb, 0xe7, 0xd4, 0xc2,
0xd0, 0x96, 0x4c, 0x5e, 0x92, 0x81, 0xeb, 0x72, 0x61, 0x15, 0x1a, 0x95, 0x5c, 0xb4, 0xba, 0x03,
0xa3, 0x31, 0x4d, 0x63, 0x55, 0x1b, 0x73, 0xf5, 0xa8, 0x69, 0xbc, 0x34, 0xee, 0xad, 0xa7, 0xec,
0x30, 0xd6, 0xb4, 0x1c, 0x23, 0x0e, 0x46, 0x21, 0xc8, 0x4d, 0x80, 0xf4, 0xf7, 0xc5, 0x21, 0xa3,
0xb8, 0x0b, 0x50, 0xf5, 0xba, 0x69, 0xd4, 0x66, 0xdd, 0xc4, 0x87, 0xa7, 0x62, 0xc5, 0xa9, 0x15,
0x02, 0x0d, 0x8d, 0xfb, 0xea, 0x28, 0xe4, 0x92, 0xde, 0x64, 0xd7, 0xbe, 0x80, 0xe4, 0x14, 0x7b,
0x01, 0x49, 0x2b, 0x33, 0xe8, 0x12, 0x12, 0x69, 0xc2, 0x68, 0x67, 0xcb, 0x4b, 0xd4, 0x1a, 0x7d,
0x51, 0x75, 0xd3, 0x1a, 0x03, 0xde, 0xdf, 0x9b, 0xfb, 0xd9, 0x83, 0xf9, 0x81, 0x6c, 0xae, 0x2e,
0x88, 0x0a, 0x40, 0x23, 0x9a, 0xf3, 0x40, 0xc1, 0xdf, 0xf6, 0x04, 0xcb, 0xfb, 0x9c, 0x69, 0x3f,
0xe6, 0x88, 0x4a, 0x29, 0xa4, 0x49, 0xb7, 0x95, 0xca, 0xd9, 0xf0, 0x62, 0x81, 0xab, 0x4c, 0x30,
0x36, 0x25, 0x53, 0xe2, 0x37, 0x5a, 0x42, 0xc9, 0x7b, 0xa1, 0x9a, 0xa4, 0x5e, 0x9c, 0x3e, 0x64,
0x81, 0x85, 0xee, 0xf4, 0x75, 0xc5, 0x04, 0x0d, 0x3f, 0xf2, 0x1e, 0x80, 0x46, 0x10, 0x06, 0xc9,
0xd6, 0x43, 0xe6, 0x9b, 0xb8, 0xe2, 0x17, 0x35, 0x07, 0xb4, 0xb8, 0x31, 0xeb, 0xc6, 0xe7, 0xb6,
0x08, 0x69, 0x56, 0xf8, 0x5e, 0xaa, 0xad, 0x1b, 0x6a, 0x0c, 0x5a, 0x54, 0xee, 0x87, 0xe1, 0x44,
0xfe, 0xf2, 0xaf, 0x3c, 0x1a, 0x36, 0xe3, 0xa8, 0xdb, 0xc9, 0xef, 0x25, 0xfc, 0x72, 0x28, 0x0a,
0x1c, 0xb3, 0xf1, 0xdb, 0x41, 0x58, 0xcf, 0xdb, 0xf8, 0xab, 0x41, 0x58, 0x47, 0x8e, 0x39, 0xc0,
0xcd, 0xac, 0x3f, 0x75, 0xe0, 0xdc, 0x7e, 0x77, 0x94, 0xd9, 0xb1, 0xff, 0xae, 0x17, 0x87, 0xf2,
0xd6, 0x05, 0xb7, 0x1d, 0xb7, 0xbd, 0x38, 0x44, 0x0e, 0x25, 0x3d, 0x18, 0x13, 0x45, 0x65, 0xd2,
0x3b, 0x7e, 0xb1, 0xd8, 0x1b, 0xd3, 0xec, 0x6c, 0xa5, 0xa3, 0x35, 0xa2, 0xa0, 0x0d, 0xa5, 0x40,
0xf7, 0x55, 0x07, 0xc8, 0x8d, 0x1d, 0x1a, 0xc7, 0x41, 0xdd, 0x2a, 0x83, 0x23, 0xcf, 0xc1, 0xe4,
0x9d, 0xf5, 0x1b, 0xd7, 0xd7, 0xa2, 0x20, 0xe4, 0xd5, 0xdc, 0x56, 0xf1, 0xc5, 0x15, 0x0b, 0x8e,
0x19, 0x2a, 0xb2, 0x04, 0x33, 0x77, 0x5e, 0x66, 0x5b, 0xce, 0x85, 0xdd, 0x4e, 0x4c, 0x93, 0x44,
0xbf, 0x33, 0x50, 0x15, 0x89, 0xa9, 0x2b, 0x2f, 0xe6, 0x90, 0xd8, 0x4f, 0xef, 0x7e, 0xb9, 0x04,
0x13, 0xd6, 0xb5, 0xfc, 0x03, 0xf8, 0x23, 0xb9, 0x97, 0x04, 0x4a, 0x07, 0x7c, 0x49, 0xe0, 0x19,
0xa8, 0x74, 0xa2, 0x56, 0xe0, 0x07, 0xba, 0x4c, 0x7b, 0x92, 0x67, 0xaf, 0x24, 0x0c, 0x35, 0x96,
0xdc, 0x85, 0xaa, 0xbe, 0x5f, 0x2b, 0x0b, 0xb7, 0x8a, 0xf2, 0xc8, 0xf4, 0x5a, 0x33, 0xf7, 0x66,
0x8d, 0x2c, 0xe2, 0xc2, 0x18, 0x9f, 0xa8, 0x2a, 0x36, 0xcf, 0x2b, 0x01, 0xf8, 0x0c, 0x4e, 0x50,
0x62, 0xdc, 0x7f, 0x1d, 0x85, 0x2a, 0xd2, 0x4e, 0xb4, 0x14, 0xd3, 0x7a, 0x42, 0x5e, 0x0f, 0xe5,
0x6e, 0xdc, 0x92, 0x9d, 0xa5, 0xc3, 0x3c, 0x37, 0x71, 0x15, 0x19, 0x3c, 0xb3, 0x3b, 0x94, 0x0e,
0x95, 0xe3, 0x2b, 0xef, 0x9b, 0xe3, 0x7b, 0x01, 0xa6, 0x92, 0x64, 0x6b, 0x2d, 0x0e, 0x76, 0xbc,
0x94, 0xcd, 0x39, 0x19, 0x13, 0x31, 0x49, 0x95, 0xf5, 0xcb, 0x06, 0x89, 0x59, 0x5a, 0x72, 0x09,
0x66, 0x4c, 0xa6, 0x8d, 0xc6, 0x29, 0x0f, 0x81, 0x88, 0x68, 0x89, 0xce, 0x69, 0x98, 0xdc, 0x9c,
0x24, 0xc0, 0xfe, 0x6f, 0xc8, 0x32, 0x1c, 0xcf, 0x00, 0x99, 0x22, 0x22, 0x94, 0xa2, 0x93, 0xc2,
0x19, 0x3e, 0x4c, 0x97, 0xbe, 0x2f, 0xc8, 0x35, 0x38, 0x21, 0xc6, 0x97, 0xdf, 0xcb, 0xd6, 0x2d,
0x1a, 0xe7, 0x8c, 0xfe, 0x9f, 0x64, 0x74, 0xe2, 0x52, 0x3f, 0x09, 0x0e, 0xfa, 0x8e, 0xcd, 0x50,
0x0d, 0x5e, 0x59, 0x96, 0x86, 0x4d, 0xcf, 0x50, 0xcd, 0x66, 0xa5, 0x8e, 0x36, 0x1d, 0x79, 0x37,
0x3c, 0x69, 0x7e, 0x8a, 0x08, 0x9a, 0xd8, 0xed, 0x97, 0x65, 0x4e, 0x7c, 0x4e, 0xb2, 0x78, 0xf2,
0xd2, 0x40, 0xb2, 0x3a, 0x0e, 0xfb, 0x9e, 0x6c, 0xc2, 0x19, 0x8d, 0xba, 0xc0, 0x56, 0x6f, 0x27,
0x0e, 0x12, 0x5a, 0xf3, 0x12, 0x7a, 0x33, 0x6e, 0xf1, 0x2c, 0x7a, 0xd5, 0xbc, 0x2d, 0x70, 0x29,
0x48, 0x2f, 0x0f, 0xa2, 0xc4, 0x55, 0x7c, 0x00, 0x17, 0xe6, 0x5c, 0xd0, 0xd0, 0xdb, 0x6c, 0xd1,
0x1b, 0x4b, 0x2b, 0xfc, 0xbe, 0x9c, 0xe5, 0x5c, 0x5c, 0x50, 0x08, 0x34, 0x34, 0xda, 0xb5, 0x9f,
0x1c, 0xea, 0xda, 0x7f, 0xcb, 0x81, 0x29, 0x3d, 0xd9, 0x1f, 0x43, 0xbc, 0xab, 0x95, 0x8d, 0x77,
0x5d, 0x3a, 0xaa, 0x57, 0x27, 0x35, 0x1f, 0x72, 0x10, 0xfb, 0x5e, 0x15, 0x80, 0xbf, 0xd6, 0x12,
0xf0, 0x9a, 0xcd, 0x73, 0x30, 0x12, 0xd3, 0x4e, 0x94, 0xb7, 0x7c, 0x8c, 0x02, 0x39, 0xe6, 0x87,
0x77, 0x39, 0x0f, 0xca, 0xf9, 0x8e, 0xfe, 0x60, 0x73, 0xbe, 0xeb, 0x70, 0x2a, 0x08, 0x13, 0xea,
0x77, 0x63, 0xb9, 0xd1, 0x5d, 0x8e, 0x12, 0x6d, 0x1d, 0x2a, 0xb5, 0xd7, 0x4b, 0x46, 0xa7, 0x56,
0x06, 0x11, 0xe1, 0xe0, 0x6f, 0x59, 0x97, 0x2a, 0x84, 0xbc, 0x1c, 0x62, 0xc2, 0x03, 0x12, 0x8e,
0x9a, 0xc2, 0x2c, 0x88, 0xd5, 0x86, 0xba, 0xfd, 0x91, 0x5b, 0x10, 0xab, 0x17, 0xd7, 0xd1, 0xd0,
0x0c, 0xb6, 0x8a, 0xd5, 0x82, 0xac, 0x22, 0x1c, 0xda, 0x2a, 0xaa, 0xf5, 0x39, 0x31, 0xf4, 0x6e,
0xbf, 0xda, 0xac, 0x27, 0x87, 0x6e, 0xd6, 0xef, 0x84, 0xe9, 0x20, 0xdc, 0xa2, 0x71, 0x90, 0xd2,
0x3a, 0x5f, 0x0b, 0xb3, 0x53, 0xbc, 0x23, 0x74, 0xe4, 0x6a, 0x25, 0x83, 0xc5, 0x1c, 0x75, 0xd6,
0xa8, 0x4c, 0x1f, 0xc0, 0xa8, 0x0c, 0x31, 0xe5, 0xc7, 0x8a, 0x31, 0xe5, 0xc7, 0x8f, 0x6e, 0xca,
0x67, 0x1e, 0xa9, 0x29, 0x27, 0x85, 0x98, 0xf2, 0xa7, 0x61, 0xb4, 0x13, 0x47, 0xbb, 0xbd, 0xd9,
0x13, 0x59, 0x6f, 0x7a, 0x8d, 0x01, 0x51, 0xe0, 0xec, 0xeb, 0x24, 0x27, 0x1f, 0x7c, 0x9d, 0xc4,
0x7d, 0xa5, 0x04, 0xa7, 0x8c, 0xa5, 0x63, 0xf3, 0x2b, 0x68, 0xb0, 0xb5, 0xce, 0xaf, 0xe8, 0x89,
0x72, 0x0b, 0x2b, 0x68, 0x6a, 0xe2, 0xaf, 0x1a, 0x83, 0x16, 0x15, 0x8f, 0x3d, 0xd2, 0x98, 0xd7,
0x7f, 0xe6, 0xcd, 0xe0, 0x92, 0x84, 0xa3, 0xa6, 0xe0, 0x4f, 0xbd, 0xd1, 0x38, 0x95, 0xb9, 0x97,
0x7c, 0x2d, 0xd2, 0x92, 0x41, 0xa1, 0x4d, 0xc7, 0xdc, 0x45, 0x5f, 0x2d, 0x41, 0x66, 0x0a, 0x27,
0x85, 0xbb, 0xa8, 0x57, 0x9d, 0xc6, 0x2a, 0x75, 0x78, 0x90, 0x79, 0xb4, 0x5f, 0x1d, 0x1e, 0x34,
0xd0, 0x14, 0xee, 0x7f, 0x3b, 0xf0, 0xba, 0x81, 0x5d, 0xf1, 0x18, 0xb6, 0xb7, 0xdd, 0xec, 0xf6,
0xb6, 0x7e, 0xf4, 0xed, 0xad, 0xaf, 0x15, 0x43, 0xb6, 0xba, 0xbf, 0x75, 0x60, 0xda, 0xd0, 0x3f,
0x86, 0xa6, 0x06, 0x85, 0x3e, 0xda, 0x66, 0x54, 0x17, 0x75, 0x89, 0x99, 0xb6, 0x7d, 0x8b, 0xb7,
0x4d, 0x9c, 0xbd, 0x16, 0x7d, 0xf5, 0x2a, 0xca, 0x3e, 0x87, 0x98, 0x1e, 0x8c, 0xf1, 0x7b, 0xac,
0x49, 0x31, 0x67, 0xc0, 0xac, 0x7c, 0x1e, 0x06, 0x35, 0x67, 0x40, 0xfe, 0x33, 0x41, 0x29, 0x90,
0x57, 0x27, 0x07, 0x09, 0xb3, 0x97, 0x75, 0x19, 0xae, 0x35, 0xd5, 0xc9, 0x12, 0x8e, 0x9a, 0xc2,
0x6d, 0xc3, 0x6c, 0x96, 0xf9, 0x32, 0x6d, 0xf0, 0x50, 0xdb, 0x81, 0x9a, 0xb9, 0x00, 0x55, 0x8f,
0x7f, 0xb5, 0xda, 0xf5, 0xf2, 0x4f, 0xa3, 0x2c, 0x2a, 0x04, 0x1a, 0x1a, 0xf7, 0xf7, 0x1c, 0x38,
0x31, 0xa0, 0x31, 0x05, 0x86, 0xa9, 0x53, 0x63, 0x05, 0x86, 0x3c, 0x57, 0x53, 0xa7, 0x0d, 0x4f,
0x05, 0x73, 0x2c, 0xab, 0xb6, 0x2c, 0xc0, 0xa8, 0xf0, 0xee, 0xbf, 0x39, 0x70, 0x2c, 0xab, 0x6b,
0x42, 0xae, 0x00, 0x11, 0x8d, 0x59, 0x0e, 0x12, 0x3f, 0xda, 0xa1, 0x71, 0x8f, 0xb5, 0x5c, 0x68,
0x7d, 0x46, 0x72, 0x22, 0x8b, 0x7d, 0x14, 0x38, 0xe0, 0x2b, 0xf2, 0x69, 0x5e, 0xca, 0xa3, 0x7a,
0x5b, 0xcd, 0x94, 0x5b, 0x45, 0xce, 0x14, 0x33, 0x98, 0xf6, 0x09, 0x5a, 0x8b, 0x44, 0x5b, 0xbe,
0xfb, 0xed, 0x11, 0xd0, 0x79, 0x2c, 0x1e, 0x36, 0x28, 0x28, 0xe8, 0x92, 0x79, 0x3f, 0xa7, 0x7c,
0x88, 0xf7, 0x73, 0x46, 0x1e, 0x14, 0x23, 0x10, 0x8f, 0xb9, 0x18, 0x5f, 0xd4, 0x32, 0xfa, 0x1b,
0x06, 0x85, 0x36, 0x1d, 0xd3, 0xa4, 0x15, 0xec, 0x50, 0xf1, 0xd1, 0x58, 0x56, 0x93, 0x55, 0x85,
0x40, 0x43, 0xc3, 0x34, 0xa9, 0x07, 0x8d, 0x86, 0x3c, 0x29, 0x6a, 0x4d, 0x58, 0xef, 0x20, 0xc7,
0x30, 0x8a, 0xad, 0x28, 0xda, 0x96, 0xfe, 0x9f, 0xa6, 0xb8, 0x1c, 0x45, 0xdb, 0xc8, 0x31, 0xcc,
0x63, 0x09, 0xa3, 0xb8, 0xed, 0xb5, 0x82, 0x0f, 0xd0, 0xba, 0x96, 0x22, 0xfd, 0x3e, 0xed, 0xb1,
0x5c, 0xef, 0x27, 0xc1, 0x41, 0xdf, 0xb1, 0x19, 0xd8, 0x89, 0x69, 0x3d, 0xf0, 0x53, 0x9b, 0x1b,
0x64, 0x67, 0xe0, 0x5a, 0x1f, 0x05, 0x0e, 0xf8, 0x8a, 0x2c, 0xc2, 0x31, 0x95, 0x87, 0x54, 0xb5,
0x22, 0xc2, 0x19, 0xd4, 0x7e, 0x38, 0x66, 0xd1, 0x98, 0xa7, 0x67, 0xd6, 0xa6, 0x2d, 0x2b, 0x76,
0xb8, 0x9b, 0x68, 0x59, 0x1b, 0x55, 0xc9, 0x83, 0x9a, 0xc2, 0xfd, 0x83, 0x12, 0xdb, 0x1d, 0x87,
0x5c, 0xd3, 0x7c, 0x6c, 0x41, 0xbe, 0xec, 0x8c, 0x1c, 0x39, 0xc0, 0x8c, 0x7c, 0x0e, 0x26, 0xef,
0x24, 0x51, 0xa8, 0x03, 0x68, 0xa3, 0x43, 0x03, 0x68, 0x16, 0xd5, 0xe0, 0x00, 0xda, 0xd8, 0x21,
0x03, 0x68, 0x7f, 0x31, 0x0a, 0xa7, 0x75, 0xea, 0x98, 0xa6, 0x77, 0xa3, 0x78, 0x3b, 0x08, 0x9b,
0x3c, 0xdd, 0xfa, 0x25, 0x07, 0x26, 0xc5, 0xf4, 0x96, 0x17, 0xda, 0x45, 0x7a, 0xb1, 0x51, 0xd0,
0x9d, 0xa3, 0x8c, 0xb0, 0xf9, 0x0d, 0x4b, 0x50, 0xee, 0x75, 0x01, 0x1b, 0x85, 0x19, 0x8d, 0xc8,
0x87, 0x00, 0xd4, 0xab, 0x4b, 0x8d, 0x82, 0xde, 0x9e, 0x52, 0xfa, 0x21, 0x6d, 0x18, 0x57, 0x72,
0x43, 0x0b, 0x41, 0x4b, 0x20, 0x79, 0xc5, 0x81, 0xb1, 0x96, 0xe8, 0x1b, 0x91, 0x2b, 0x7a, 0xe9,
0x91, 0xf4, 0x8d, 0xdd, 0x2b, 0x7a, 0x5b, 0x96, 0xfd, 0x21, 0xe5, 0x13, 0x84, 0xf1, 0x20, 0x6c,
0xb2, 0x61, 0x95, 0x31, 0xc7, 0x37, 0x0d, 0x2a, 0x55, 0x58, 0x8d, 0xbc, 0x7a, 0xcd, 0x6b, 0x79,
0xa1, 0x4f, 0xe3, 0x15, 0x41, 0x6e, 0xbf, 0x7d, 0xc3, 0x01, 0xa8, 0x18, 0xf5, 0x5d, 0xaa, 0x1b,
0x3d, 0xc8, 0xa5, 0xba, 0x33, 0xef, 0x82, 0x99, 0xbe, 0xc1, 0x3c, 0xd4, 0x53, 0x03, 0x3f, 0x0d,
0x13, 0x0f, 0xf9, 0xa9, 0xfb, 0x67, 0x63, 0x66, 0x8f, 0xb9, 0x1e, 0xd5, 0xc5, 0xd5, 0xae, 0xd8,
0x8c, 0xa8, 0x74, 0x15, 0x0b, 0x9c, 0x22, 0xd6, 0xfb, 0x39, 0x1a, 0x88, 0xb6, 0x48, 0x36, 0x47,
0x3b, 0x5e, 0x4c, 0xc3, 0x47, 0x3d, 0x47, 0xd7, 0xb4, 0x10, 0xb4, 0x04, 0x92, 0xad, 0x4c, 0x32,
0xf3, 0xe2, 0xd1, 0x93, 0x99, 0xcc, 0x7b, 0x1d, 0x78, 0x05, 0xe7, 0x35, 0x07, 0xa6, 0xc3, 0xcc,
0xcc, 0x95, 0x09, 0xad, 0x8d, 0x47, 0xb1, 0x2a, 0xc4, 0x95, 0xda, 0x2c, 0x0c, 0x73, 0xf2, 0x07,
0xed, 0x40, 0xa3, 0x87, 0xdc, 0x81, 0xcc, 0x1d, 0xd1, 0xb1, 0x61, 0x77, 0x44, 0x49, 0xa8, 0x6f,
0x87, 0x8f, 0x17, 0x7e, 0x3b, 0x1c, 0x06, 0xdc, 0x0c, 0xbf, 0x0d, 0x55, 0x3f, 0xa6, 0x5e, 0xfa,
0x90, 0x17, 0x85, 0xf9, 0x8b, 0x65, 0x4b, 0x8a, 0x01, 0x1a, 0x5e, 0xee, 0x5f, 0x97, 0xe1, 0xb8,
0xea, 0x11, 0x95, 0xe8, 0x61, 0xdb, 0x99, 0x90, 0x6b, 0x7c, 0x51, 0xbd, 0x9d, 0x5d, 0x56, 0x08,
0x34, 0x34, 0xcc, 0x7d, 0xea, 0x26, 0xf4, 0x46, 0x87, 0x86, 0xab, 0xc1, 0x66, 0xc2, 0x7b, 0xdc,
0xaa, 0x16, 0xbb, 0x69, 0x50, 0x68, 0xd3, 0x31, 0xdf, 0x59, 0xb8, 0xb1, 0x49, 0x3e, 0x6f, 0x2a,
0xdd, 0x63, 0x54, 0x78, 0xf2, 0xc5, 0x81, 0xcf, 0x3c, 0x14, 0x53, 0x31, 0xd0, 0x97, 0xdf, 0x3a,
0xe4, 0xfb, 0x0e, 0xaf, 0x3a, 0x70, 0x6c, 0x3b, 0x53, 0xaa, 0xa2, 0x4c, 0xf2, 0x11, 0x0b, 0x20,
0xb3, 0xf5, 0x2f, 0x66, 0x0a, 0x67, 0xe1, 0x09, 0xe6, 0xa5, 0xbb, 0xff, 0xe9, 0x80, 0x6d, 0x9e,
0x0e, 0xe6, 0x08, 0x59, 0x0f, 0xf7, 0x94, 0xf6, 0x79, 0xb8, 0x47, 0xf9, 0x4c, 0xe5, 0x83, 0xf9,
0xe8, 0x23, 0x87, 0xf0, 0xd1, 0x47, 0x87, 0x3a, 0x59, 0xaf, 0x87, 0x72, 0x37, 0xa8, 0x4b, 0x37,
0xdb, 0xe4, 0xae, 0x56, 0x96, 0x91, 0xc1, 0xdd, 0x3f, 0x19, 0x35, 0xc7, 0x6a, 0x99, 0xe8, 0xfe,
0x91, 0x68, 0x76, 0x43, 0xd7, 0xb3, 0x8a, 0x96, 0x5f, 0xef, 0xab, 0x67, 0x7d, 0xc7, 0xe1, 0xeb,
0x18, 0x44, 0x07, 0x0d, 0x2b, 0x67, 0x1d, 0xdf, 0xa7, 0x88, 0xe1, 0x0e, 0x54, 0xd8, 0x49, 0x84,
0xc7, 0xc7, 0x2a, 0x19, 0xa5, 0x2a, 0x97, 0x25, 0xfc, 0xfe, 0xde, 0xdc, 0xdb, 0x0f, 0xaf, 0x96,
0xfa, 0x1a, 0x35, 0x7f, 0x92, 0x40, 0x95, 0xfd, 0xcd, 0xeb, 0x2d, 0xe4, 0x19, 0xe7, 0xa6, 0xb6,
0x45, 0x0a, 0x51, 0x48, 0x31, 0x87, 0x91, 0x43, 0x42, 0xa8, 0xf2, 0x27, 0x66, 0xb8, 0x50, 0x71,
0x14, 0x5a, 0xd3, 0x55, 0x0f, 0x0a, 0x71, 0x7f, 0x6f, 0xee, 0x85, 0xc3, 0x0b, 0xd5, 0x9f, 0xa3,
0x11, 0xe1, 0x7e, 0xb7, 0x6c, 0xe6, 0xae, 0x2c, 0x63, 0xfe, 0x91, 0x98, 0xbb, 0xcf, 0xe7, 0xe6,
0xee, 0xb9, 0xbe, 0xb9, 0x3b, 0x6d, 0x9e, 0x61, 0xc9, 0xcc, 0xc6, 0xc7, 0xbd, 0xc1, 0xee, 0x7f,
0xec, 0xe6, 0x9e, 0xc5, 0xcb, 0xdd, 0x20, 0xa6, 0xc9, 0x5a, 0xdc, 0x0d, 0x83, 0xb0, 0xc9, 0xa7,
0x63, 0xc5, 0xf6, 0x2c, 0x32, 0x68, 0xcc, 0xd3, 0xbb, 0x5f, 0xe6, 0xe9, 0x49, 0xab, 0x74, 0x8b,
0x8d, 0x72, 0x8b, 0xbf, 0xd2, 0x23, 0x8a, 0x47, 0xf5, 0x28, 0x8b, 0xa7, 0x79, 0x04, 0x8e, 0xdc,
0x85, 0xf1, 0x4d, 0xf1, 0x52, 0x40, 0x31, 0x77, 0x89, 0xe4, 0xb3, 0x03, 0xfc, 0xd6, 0xa6, 0x7a,
0x83, 0xe0, 0xbe, 0xf9, 0x13, 0x95, 0x34, 0xf7, 0x37, 0xca, 0x70, 0x2c, 0xf7, 0x86, 0x0c, 0x3b,
0x9f, 0xab, 0x07, 0x83, 0xf2, 0xc1, 0x74, 0xfd, 0x30, 0xae, 0xa6, 0x20, 0xef, 0x07, 0xa8, 0xd3,
0x4e, 0x2b, 0xea, 0x71, 0xc7, 0x65, 0xe4, 0xd0, 0x8e, 0x8b, 0xf6, 0x75, 0x97, 0x35, 0x17, 0xb4,
0x38, 0xca, 0x8a, 0xd9, 0x51, 0xf1, 0x0e, 0x42, 0xb6, 0x62, 0xd6, 0xba, 0x52, 0x37, 0xf6, 0x78,
0xaf, 0xd4, 0x05, 0x70, 0x4c, 0xa8, 0xa8, 0x0b, 0xa4, 0x1e, 0xa2, 0x0e, 0xea, 0x04, 0x9b, 0x51,
0xcb, 0x59, 0x36, 0x98, 0xe7, 0xeb, 0x7e, 0xa6, 0xc4, 0xdc, 0x37, 0xd1, 0xd9, 0xd7, 0x54, 0x2c,
0xfb, 0x8d, 0x30, 0xe6, 0x75, 0xd3, 0xad, 0xa8, 0xef, 0xe5, 0x86, 0x45, 0x0e, 0x45, 0x89, 0x25,
0xab, 0x30, 0x52, 0xf7, 0x52, 0xf5, 0xb0, 0xfb, 0x61, 0x94, 0x33, 0x81, 0x2b, 0x2f, 0xa5, 0xc8,
0xb9, 0x90, 0xa7, 0x60, 0x24, 0xf5, 0x9a, 0x99, 0x27, 0x25, 0x37, 0xbc, 0x66, 0x82, 0x1c, 0x6a,
0xef, 0x2e, 0x23, 0xfb, 0xec, 0x2e, 0x2f, 0x58, 0xff, 0x72, 0xc0, 0x4a, 0x92, 0xf4, 0xff, 0x9b,
0x00, 0x51, 0xc3, 0x9f, 0xa1, 0x75, 0x7f, 0x02, 0x26, 0xed, 0x7f, 0x23, 0x70, 0xa0, 0x2b, 0x40,
0xee, 0xbf, 0x8c, 0xc0, 0x54, 0xa6, 0x88, 0x2e, 0x33, 0xcb, 0x9d, 0x7d, 0x67, 0x39, 0x4f, 0x7f,
0x75, 0x43, 0x2a, 0x4b, 0x24, 0xad, 0xf4, 0x57, 0x37, 0xa4, 0x28, 0x70, 0x6c, 0x54, 0xea, 0x71,
0x0f, 0xbb, 0xa1, 0x0c, 0xa2, 0xeb, 0x51, 0x59, 0xe6, 0x50, 0x94, 0x58, 0x76, 0x80, 0x9d, 0x4c,
0xb8, 0x51, 0x14, 0x36, 0x42, 0xae, 0x9a, 0x2b, 0x45, 0xbc, 0x76, 0x25, 0x0b, 0x46, 0xf9, 0x81,
0xde, 0x86, 0x60, 0x46, 0x22, 0xf9, 0xb8, 0x63, 0xbf, 0xf3, 0x35, 0x56, 0x44, 0xf2, 0x27, 0x5f,
0xa3, 0x28, 0x56, 0xd0, 0x83, 0x9f, 0xfb, 0x4a, 0xf4, 0x02, 0x1e, 0x7f, 0x34, 0x0b, 0x18, 0x06,
0x2c, 0xde, 0x37, 0x43, 0xb5, 0xed, 0x85, 0x41, 0x83, 0x26, 0xa9, 0xf8, 0x17, 0x20, 0x55, 0x71,
0x7a, 0xba, 0xa6, 0x80, 0x68, 0xf0, 0xfc, 0x1f, 0xed, 0xf0, 0x86, 0x89, 0x43, 0x4c, 0xd5, 0xfa,
0x47, 0x3b, 0x06, 0x8c, 0x36, 0x8d, 0xfb, 0x87, 0x0e, 0x9c, 0x1a, 0xd8, 0x19, 0x3f, 0xbc, 0xd1,
0x4a, 0xf7, 0x8f, 0x4a, 0x70, 0x62, 0x40, 0x91, 0x29, 0xe9, 0x3d, 0xb2, 0xe7, 0xe0, 0x64, 0x15,
0xeb, 0xd4, 0xd0, 0xb9, 0x71, 0xb8, 0x6d, 0xc8, 0x6c, 0x05, 0xe5, 0xc7, 0xba, 0x15, 0xb8, 0x5f,
0x2e, 0x81, 0xf5, 0x70, 0x21, 0xf9, 0xb0, 0x5d, 0x4f, 0xed, 0x14, 0x55, 0xfb, 0x2b, 0x98, 0xeb,
0x7a, 0x6c, 0xd1, 0x6b, 0x83, 0xca, 0xb3, 0xf3, 0xf3, 0xb5, 0xb4, 0xff, 0x7c, 0x25, 0x2d, 0x55,
0xb8, 0x5e, 0x2e, 0xbe, 0x70, 0xbd, 0xda, 0x57, 0xb4, 0xfe, 0x6b, 0x8e, 0x98, 0x69, 0xb9, 0x26,
0x19, 0x0b, 0xeb, 0x3c, 0xc0, 0xc2, 0xbe, 0x05, 0x2a, 0x09, 0x6d, 0x35, 0x98, 0x67, 0x27, 0x2d,
0xb1, 0x9e, 0x13, 0xeb, 0x12, 0x8e, 0x9a, 0x82, 0x5f, 0x69, 0x6d, 0xb5, 0xa2, 0xbb, 0x17, 0xda,
0x9d, 0xb4, 0x27, 0x6d, 0xb2, 0xb9, 0xd2, 0xaa, 0x31, 0x68, 0x51, 0xb9, 0xff, 0xe5, 0x88, 0xe1,
0x94, 0x3e, 0xfa, 0xf3, 0xb9, 0xab, 0x86, 0x07, 0x77, 0x6f, 0x7f, 0x11, 0xc0, 0xd7, 0x97, 0xff,
0x8b, 0x79, 0xcf, 0xd0, 0x3c, 0x26, 0x60, 0x3f, 0xb2, 0xa7, 0x60, 0x68, 0xc9, 0xcb, 0x2c, 0x9e,
0xf2, 0x7e, 0x8b, 0xc7, 0xfd, 0x77, 0x07, 0x32, 0x9b, 0x05, 0xe9, 0xc0, 0x28, 0xd3, 0xa0, 0x57,
0xcc, 0x53, 0x05, 0x36, 0x6b, 0xb6, 0xb0, 0xe4, 0xb4, 0xe0, 0x7f, 0xa2, 0x10, 0x44, 0x5a, 0xd2,
0x3b, 0x2f, 0x15, 0xf1, 0x9c, 0x86, 0x2d, 0x90, 0xf9, 0xf7, 0xf2, 0x9f, 0x2a, 0x68, 0x4f, 0xdf,
0x7d, 0x1e, 0x66, 0xfa, 0x94, 0xe2, 0x97, 0x8f, 0x22, 0xf5, 0x3e, 0x83, 0x35, 0x03, 0xf9, 0x55,
0x48, 0x14, 0x38, 0xe6, 0xe0, 0x1f, 0xcf, 0xb3, 0x27, 0x5f, 0x70, 0x60, 0x26, 0xc9, 0xf3, 0x7b,
0x54, 0x7d, 0xa7, 0x23, 0x57, 0x7d, 0x28, 0xec, 0x57, 0xc2, 0xfd, 0x4b, 0x69, 0x9e, 0xc4, 0x3f,
0xa1, 0xd2, 0x9b, 0x8b, 0x33, 0x74, 0x73, 0x61, 0x4b, 0xcc, 0xdf, 0xa2, 0xf5, 0x6e, 0xab, 0xaf,
0x94, 0x66, 0x5d, 0xc2, 0x51, 0x53, 0x64, 0xde, 0x35, 0x2b, 0xef, 0xfb, 0xae, 0xd9, 0x73, 0x30,
0x69, 0xbf, 0x41, 0xc2, 0x43, 0x68, 0x32, 0xf9, 0x60, 0x3f, 0x57, 0x82, 0x19, 0xaa, 0xdc, 0xbb,
0x58, 0xa3, 0xfb, 0xbe, 0x8b, 0xf5, 0x0c, 0x54, 0xe4, 0x1b, 0x4f, 0x2a, 0xbe, 0x2b, 0xea, 0x74,
0x24, 0x0c, 0x35, 0x96, 0x19, 0x88, 0xb6, 0x17, 0x76, 0xbd, 0x16, 0xeb, 0x21, 0x59, 0xbe, 0xa7,
0x57, 0xd6, 0x35, 0x8d, 0x41, 0x8b, 0xca, 0xfd, 0x67, 0x07, 0xf2, 0x6f, 0x04, 0x65, 0x8a, 0x00,
0x9d, 0x7d, 0x8b, 0x00, 0xb3, 0x05, 0x4e, 0xa5, 0x03, 0x15, 0x38, 0xd9, 0xb5, 0x47, 0xe5, 0x07,
0xd6, 0x1e, 0xbd, 0xc1, 0x5c, 0x20, 0x17, 0x45, 0x4a, 0x13, 0x83, 0x2e, 0x8f, 0x13, 0x17, 0xc6,
0x7c, 0x4f, 0xd7, 0x58, 0x4f, 0x0a, 0x47, 0x69, 0x69, 0x91, 0x13, 0x49, 0x4c, 0x6d, 0xfe, 0xab,
0xdf, 0x39, 0xfb, 0xc4, 0xd7, 0xbe, 0x73, 0xf6, 0x89, 0x6f, 0x7e, 0xe7, 0xec, 0x13, 0x1f, 0xbd,
0x77, 0xd6, 0xf9, 0xea, 0xbd, 0xb3, 0xce, 0xd7, 0xee, 0x9d, 0x75, 0xbe, 0x79, 0xef, 0xac, 0xf3,
0xed, 0x7b, 0x67, 0x9d, 0xd7, 0xfe, 0xf1, 0xec, 0x13, 0xef, 0xa9, 0xa8, 0xb9, 0xfa, 0xbf, 0x01,
0x00, 0x00, 0xff, 0xff, 0xda, 0x4a, 0x5a, 0x78, 0xd2, 0x74, 0x00, 0x00,
// 6655 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x6c, 0x24, 0xd9,
0x55, 0x5b, 0xdd, 0x7e, 0x74, 0x1f, 0x3f, 0x66, 0x7c, 0xe7, 0xb1, 0xce, 0xb0, 0x19, 0x8f, 0x6a,
0x95, 0x64, 0x21, 0x89, 0xcd, 0x0e, 0x4b, 0x58, 0xb2, 0x21, 0xc1, 0x6d, 0xcf, 0xc3, 0x33, 0x9e,
0x19, 0xef, 0xb1, 0x67, 0x86, 0x3c, 0x08, 0x5b, 0xae, 0xbe, 0xdd, 0xae, 0x71, 0x77, 0x55, 0x6f,
0x55, 0xb5, 0xc7, 0x9d, 0x90, 0x17, 0x0a, 0x64, 0x45, 0x1e, 0x1b, 0x25, 0xf9, 0x48, 0x24, 0x04,
0xe1, 0x21, 0x24, 0x3e, 0x22, 0xe0, 0x0b, 0x50, 0xc4, 0x4f, 0xbe, 0x82, 0x90, 0x20, 0x12, 0x28,
0x09, 0x44, 0x98, 0x64, 0x08, 0x0a, 0x20, 0x01, 0x02, 0xf2, 0xc3, 0x7c, 0xa1, 0xfb, 0xbe, 0x55,
0xdd, 0x3d, 0xb6, 0xc7, 0x35, 0x93, 0x28, 0xe2, 0xcf, 0x7d, 0xce, 0xa9, 0x73, 0xce, 0x7d, 0x9d,
0x7b, 0xee, 0x39, 0xe7, 0x5e, 0xc3, 0x6a, 0x33, 0x48, 0xb7, 0xba, 0x9b, 0xf3, 0x7e, 0xd4, 0x5e,
0xf0, 0xe2, 0x66, 0xd4, 0x89, 0xa3, 0x3b, 0xfc, 0x8f, 0x37, 0xfb, 0xf5, 0x85, 0x9d, 0xf3, 0x0b,
0x9d, 0xed, 0xe6, 0x82, 0xd7, 0x09, 0x92, 0x05, 0xaf, 0xd3, 0x69, 0x05, 0xbe, 0x97, 0x06, 0x51,
0xb8, 0xb0, 0xf3, 0xac, 0xd7, 0xea, 0x6c, 0x79, 0xcf, 0x2e, 0x34, 0x69, 0x48, 0x63, 0x2f, 0xa5,
0xf5, 0xf9, 0x4e, 0x1c, 0xa5, 0x11, 0x79, 0x9b, 0xe1, 0x36, 0xaf, 0xb8, 0xf1, 0x3f, 0x7e, 0xc9,
0xaf, 0xcf, 0xef, 0x9c, 0x9f, 0xef, 0x6c, 0x37, 0xe7, 0x19, 0xb7, 0x79, 0x8b, 0xdb, 0xbc, 0xe2,
0x76, 0xe6, 0xcd, 0x96, 0x2e, 0xcd, 0xa8, 0x19, 0x2d, 0x70, 0xa6, 0x9b, 0xdd, 0x06, 0xff, 0xc5,
0x7f, 0xf0, 0xbf, 0x84, 0xb0, 0x33, 0xee, 0xf6, 0xf3, 0xc9, 0x7c, 0x10, 0x31, 0xf5, 0x16, 0xfc,
0x28, 0xa6, 0x0b, 0x3b, 0x7d, 0x0a, 0x9d, 0x79, 0xce, 0xd0, 0xb4, 0x3d, 0x7f, 0x2b, 0x08, 0x69,
0xdc, 0x33, 0x6d, 0x6a, 0xd3, 0xd4, 0x1b, 0xf4, 0xd5, 0xc2, 0xb0, 0xaf, 0xe2, 0x6e, 0x98, 0x06,
0x6d, 0xda, 0xf7, 0xc1, 0x5b, 0xf6, 0xfb, 0x20, 0xf1, 0xb7, 0x68, 0xdb, 0xcb, 0x7f, 0xe7, 0xbe,
0x0c, 0x53, 0x8b, 0xb7, 0xd7, 0x17, 0xbb, 0xe9, 0xd6, 0x52, 0x14, 0x36, 0x82, 0x26, 0xf9, 0x69,
0x98, 0xf0, 0x5b, 0xdd, 0x24, 0xa5, 0xf1, 0x75, 0xaf, 0x4d, 0x67, 0x9d, 0x73, 0xce, 0x33, 0xd5,
0xda, 0x89, 0xaf, 0xee, 0xcd, 0x3d, 0x71, 0x6f, 0x6f, 0x6e, 0x62, 0xc9, 0xa0, 0xd0, 0xa6, 0x23,
0x3f, 0x0e, 0xe3, 0x71, 0xd4, 0xa2, 0x8b, 0x78, 0x7d, 0xb6, 0xc4, 0x3f, 0x39, 0x26, 0x3f, 0x19,
0x47, 0x01, 0x46, 0x85, 0x77, 0xbf, 0x5e, 0x02, 0x58, 0xec, 0x74, 0xd6, 0xe2, 0xe8, 0x0e, 0xf5,
0x53, 0xf2, 0x12, 0x54, 0x58, 0x2f, 0xd4, 0xbd, 0xd4, 0xe3, 0xd2, 0x26, 0xce, 0xff, 0xe4, 0xbc,
0x68, 0xcc, 0xbc, 0xdd, 0x18, 0x33, 0x72, 0x8c, 0x7a, 0x7e, 0xe7, 0xd9, 0xf9, 0x1b, 0x9b, 0xec,
0xfb, 0x6b, 0x34, 0xf5, 0x6a, 0x44, 0x0a, 0x03, 0x03, 0x43, 0xcd, 0x95, 0x84, 0x30, 0x92, 0x74,
0xa8, 0xcf, 0x15, 0x9b, 0x38, 0xbf, 0x3a, 0x7f, 0x94, 0x29, 0x32, 0x6f, 0x34, 0x5f, 0xef, 0x50,
0xbf, 0x36, 0x29, 0x25, 0x8f, 0xb0, 0x5f, 0xc8, 0xe5, 0x90, 0x1d, 0x18, 0x4b, 0x52, 0x2f, 0xed,
0x26, 0xb3, 0x65, 0x2e, 0xf1, 0x7a, 0x61, 0x12, 0x39, 0xd7, 0xda, 0xb4, 0x94, 0x39, 0x26, 0x7e,
0xa3, 0x94, 0xe6, 0xfe, 0x83, 0x03, 0xd3, 0x86, 0x78, 0x35, 0x48, 0x52, 0xf2, 0x9e, 0xbe, 0xce,
0x9d, 0x3f, 0x58, 0xe7, 0xb2, 0xaf, 0x79, 0xd7, 0x1e, 0x97, 0xc2, 0x2a, 0x0a, 0x62, 0x75, 0x6c,
0x1b, 0x46, 0x83, 0x94, 0xb6, 0x93, 0xd9, 0xd2, 0xb9, 0xf2, 0x33, 0x13, 0xe7, 0x2f, 0x17, 0xd5,
0xce, 0xda, 0x94, 0x14, 0x3a, 0xba, 0xc2, 0xd8, 0xa3, 0x90, 0xe2, 0x7e, 0x1f, 0xec, 0xf6, 0xb1,
0x0e, 0x27, 0xcf, 0xc2, 0x44, 0x12, 0x75, 0x63, 0x9f, 0x22, 0xed, 0x44, 0xc9, 0xac, 0x73, 0xae,
0xcc, 0xa6, 0x1e, 0x9b, 0xa9, 0xeb, 0x06, 0x8c, 0x36, 0x0d, 0xf9, 0x94, 0x03, 0x93, 0x75, 0x9a,
0xa4, 0x41, 0xc8, 0xe5, 0x2b, 0xe5, 0x37, 0x8e, 0xac, 0xbc, 0x02, 0x2e, 0x1b, 0xe6, 0xb5, 0x93,
0xb2, 0x21, 0x93, 0x16, 0x30, 0xc1, 0x8c, 0x7c, 0xb6, 0xe2, 0xea, 0x34, 0xf1, 0xe3, 0xa0, 0xc3,
0x7e, 0xf3, 0x39, 0x63, 0xad, 0xb8, 0x65, 0x83, 0x42, 0x9b, 0x8e, 0x84, 0x30, 0xca, 0x56, 0x54,
0x32, 0x3b, 0xc2, 0xf5, 0x5f, 0x39, 0x9a, 0xfe, 0xb2, 0x53, 0xd9, 0x62, 0x35, 0xbd, 0xcf, 0x7e,
0x25, 0x28, 0xc4, 0x90, 0x4f, 0x3a, 0x30, 0x2b, 0x57, 0x3c, 0x52, 0xd1, 0xa1, 0xb7, 0xb7, 0x82,
0x94, 0xb6, 0x82, 0x24, 0x9d, 0x1d, 0xe5, 0x3a, 0x2c, 0x1c, 0x6c, 0x6e, 0x5d, 0x8a, 0xa3, 0x6e,
0xe7, 0x6a, 0x10, 0xd6, 0x6b, 0xe7, 0xa4, 0xa4, 0xd9, 0xa5, 0x21, 0x8c, 0x71, 0xa8, 0x48, 0xf2,
0x59, 0x07, 0xce, 0x84, 0x5e, 0x9b, 0x26, 0x1d, 0x8f, 0x0d, 0xad, 0x40, 0xd7, 0x5a, 0x9e, 0xbf,
0xcd, 0x35, 0x1a, 0x7b, 0x38, 0x8d, 0x5c, 0xa9, 0xd1, 0x99, 0xeb, 0x43, 0x59, 0xe3, 0x03, 0xc4,
0x92, 0xdf, 0x75, 0x60, 0x26, 0x8a, 0x3b, 0x5b, 0x5e, 0x48, 0xeb, 0x0a, 0x9b, 0xcc, 0x8e, 0xf3,
0xa5, 0xf7, 0xde, 0xa3, 0x0d, 0xd1, 0x8d, 0x3c, 0xdb, 0x6b, 0x51, 0x18, 0xa4, 0x51, 0xbc, 0x4e,
0xd3, 0x34, 0x08, 0x9b, 0x49, 0xed, 0xd4, 0xbd, 0xbd, 0xb9, 0x99, 0x3e, 0x2a, 0xec, 0xd7, 0x87,
0xbc, 0x1f, 0x26, 0x92, 0x5e, 0xe8, 0xdf, 0x0e, 0xc2, 0x7a, 0x74, 0x37, 0x99, 0xad, 0x14, 0xb1,
0x7c, 0xd7, 0x35, 0x43, 0xb9, 0x00, 0x8d, 0x00, 0xb4, 0xa5, 0x0d, 0x1e, 0x38, 0x33, 0x95, 0xaa,
0x45, 0x0f, 0x9c, 0x99, 0x4c, 0x0f, 0x10, 0x4b, 0x3e, 0xe6, 0xc0, 0x54, 0x12, 0x34, 0x43, 0x2f,
0xed, 0xc6, 0xf4, 0x2a, 0xed, 0x25, 0xb3, 0xc0, 0x15, 0xb9, 0x72, 0xc4, 0x5e, 0xb1, 0x58, 0xd6,
0x4e, 0x49, 0x1d, 0xa7, 0x6c, 0x68, 0x82, 0x59, 0xb9, 0x83, 0x16, 0x9a, 0x99, 0xd6, 0x13, 0xc5,
0x2e, 0x34, 0x33, 0xa9, 0x87, 0x8a, 0x74, 0xff, 0xa2, 0x04, 0xc7, 0xf3, 0x7b, 0x10, 0xf9, 0x7d,
0x07, 0x8e, 0xdd, 0xb9, 0x9b, 0x6e, 0x44, 0xdb, 0x34, 0x4c, 0x6a, 0x3d, 0x66, 0x29, 0xb8, 0xf5,
0x9d, 0x38, 0xef, 0x17, 0xbb, 0xdb, 0xcd, 0x5f, 0xc9, 0x4a, 0xb9, 0x10, 0xa6, 0x71, 0xaf, 0xf6,
0xa4, 0x6c, 0xcf, 0xb1, 0x2b, 0xb7, 0x37, 0x6c, 0x2c, 0xe6, 0x95, 0x3a, 0xf3, 0x71, 0x07, 0x4e,
0x0e, 0x62, 0x41, 0x8e, 0x43, 0x79, 0x9b, 0xf6, 0x84, 0x83, 0x83, 0xec, 0x4f, 0xf2, 0x8b, 0x30,
0xba, 0xe3, 0xb5, 0xba, 0x54, 0x3a, 0x0a, 0x97, 0x8e, 0xd6, 0x10, 0xad, 0x19, 0x0a, 0xae, 0x6f,
0x2d, 0x3d, 0xef, 0xb8, 0x7f, 0x5d, 0x86, 0x09, 0x6b, 0xab, 0x78, 0x0c, 0xce, 0x4f, 0x94, 0x71,
0x7e, 0xae, 0x15, 0xb6, 0xcb, 0x0d, 0xf5, 0x7e, 0xee, 0xe6, 0xbc, 0x9f, 0x1b, 0xc5, 0x89, 0x7c,
0xa0, 0xfb, 0x43, 0x52, 0xa8, 0x46, 0x1d, 0xe6, 0xdc, 0xb2, 0x5d, 0x74, 0xa4, 0x88, 0x21, 0xbc,
0xa1, 0xd8, 0xd5, 0xa6, 0xee, 0xed, 0xcd, 0x55, 0xf5, 0x4f, 0x34, 0x82, 0xdc, 0x6f, 0x38, 0x70,
0xd2, 0xd2, 0x71, 0x29, 0x0a, 0xeb, 0x01, 0x1f, 0xda, 0x73, 0x30, 0x92, 0xf6, 0x3a, 0xca, 0x83,
0xd6, 0x3d, 0xb5, 0xd1, 0xeb, 0x50, 0xe4, 0x18, 0xe6, 0x33, 0xb7, 0x69, 0x92, 0x78, 0x4d, 0x9a,
0xf7, 0x99, 0xaf, 0x09, 0x30, 0x2a, 0x3c, 0x89, 0x81, 0xb4, 0xbc, 0x24, 0xdd, 0x88, 0xbd, 0x30,
0xe1, 0xec, 0x37, 0x82, 0x36, 0x95, 0x1d, 0xfc, 0x13, 0x07, 0x9b, 0x31, 0xec, 0x8b, 0xda, 0xe9,
0x7b, 0x7b, 0x73, 0x64, 0xb5, 0x8f, 0x13, 0x0e, 0xe0, 0xee, 0x7e, 0xd6, 0x81, 0xd3, 0x83, 0xdd,
0x1a, 0xf2, 0x7a, 0x18, 0x4b, 0x68, 0xbc, 0x43, 0x63, 0xd9, 0x3a, 0x33, 0x24, 0x1c, 0x8a, 0x12,
0x4b, 0x16, 0xa0, 0xaa, 0x4d, 0xae, 0x6c, 0xe3, 0x8c, 0x24, 0xad, 0x1a, 0x3b, 0x6d, 0x68, 0x58,
0xa7, 0xb1, 0x1f, 0xd2, 0x09, 0xd2, 0x9d, 0xc6, 0xcf, 0x1b, 0x1c, 0xe3, 0xfe, 0xa3, 0x03, 0xc7,
0x2c, 0xad, 0x1e, 0x83, 0x97, 0x1b, 0x66, 0xbd, 0xdc, 0x95, 0xc2, 0xe6, 0xf3, 0x10, 0x37, 0xf7,
0x2b, 0x63, 0x30, 0x63, 0xcf, 0x7a, 0x6e, 0x8e, 0xf9, 0x01, 0x8b, 0x76, 0xa2, 0x9b, 0xb8, 0x2a,
0xfb, 0xdc, 0x1c, 0xb0, 0x04, 0x18, 0x15, 0x9e, 0x75, 0x62, 0xc7, 0x4b, 0xb7, 0x64, 0x87, 0xeb,
0x4e, 0x5c, 0xf3, 0xd2, 0x2d, 0xe4, 0x18, 0xf2, 0x76, 0x98, 0x4e, 0xbd, 0xb8, 0x49, 0x53, 0xa4,
0x3b, 0x41, 0xa2, 0xd6, 0x4b, 0xb5, 0x76, 0x5a, 0xd2, 0x4e, 0x6f, 0x64, 0xb0, 0x98, 0xa3, 0x26,
0x2f, 0xc3, 0xc8, 0x16, 0x6d, 0xb5, 0xa5, 0x5f, 0xb3, 0x5e, 0xdc, 0x0a, 0xe7, 0x6d, 0xbd, 0x4c,
0x5b, 0xed, 0x5a, 0x85, 0xa9, 0xcc, 0xfe, 0x42, 0x2e, 0x8a, 0xfc, 0xaa, 0x03, 0xd5, 0xed, 0x6e,
0x92, 0x46, 0xed, 0xe0, 0x7d, 0x74, 0xb6, 0xc2, 0x05, 0xff, 0x42, 0xc1, 0x82, 0xaf, 0x2a, 0xfe,
0x62, 0xbd, 0xeb, 0x9f, 0x68, 0x24, 0x93, 0x0f, 0xc0, 0xf8, 0x76, 0x12, 0x85, 0x21, 0x65, 0x9e,
0x0a, 0x53, 0xe2, 0x56, 0xd1, 0x4a, 0x08, 0xee, 0xb5, 0x09, 0x36, 0xb6, 0xf2, 0x07, 0x2a, 0x99,
0xbc, 0x1b, 0xea, 0x41, 0x4c, 0xfd, 0x34, 0x8a, 0x7b, 0xb3, 0xf0, 0x48, 0xba, 0x61, 0x59, 0xf1,
0x17, 0xdd, 0xa0, 0x7f, 0xa2, 0x91, 0x4c, 0x7a, 0x30, 0xd6, 0x69, 0x75, 0x9b, 0x41, 0x38, 0x3b,
0xc1, 0x75, 0xb8, 0x59, 0xb0, 0x0e, 0x6b, 0x9c, 0x79, 0x0d, 0x98, 0x51, 0x11, 0x7f, 0xa3, 0x14,
0x48, 0x9e, 0x86, 0x51, 0x7f, 0xcb, 0x8b, 0xd3, 0xd9, 0x49, 0x3e, 0x67, 0xf5, 0x22, 0x5a, 0x62,
0x40, 0x14, 0x38, 0xf7, 0xb7, 0x4b, 0x70, 0x66, 0x78, 0xc3, 0xc4, 0x6a, 0xf2, 0xbb, 0x71, 0x22,
0xec, 0x73, 0xc5, 0x5e, 0x4d, 0x1c, 0x8c, 0x0a, 0x4f, 0x3e, 0xe2, 0xc0, 0xf8, 0x1d, 0x39, 0xe2,
0xa5, 0x47, 0x32, 0xe2, 0x57, 0xe4, 0x88, 0x6b, 0x1d, 0xae, 0xa8, 0x51, 0x97, 0x72, 0x99, 0xba,
0x74, 0xd7, 0x6f, 0x75, 0xeb, 0xca, 0x32, 0x6a, 0xd2, 0x0b, 0x02, 0x8c, 0x0a, 0xcf, 0x48, 0x83,
0x50, 0x90, 0x8e, 0x64, 0x49, 0x57, 0x42, 0x49, 0x2a, 0xf1, 0xee, 0x77, 0xcb, 0x70, 0x6a, 0xe0,
0xe2, 0x23, 0xf3, 0x00, 0xdc, 0x67, 0xb9, 0x18, 0xb0, 0x03, 0xa6, 0x38, 0x55, 0x4f, 0x33, 0x17,
0xe3, 0x96, 0x86, 0xa2, 0x45, 0x41, 0x3e, 0x04, 0xd0, 0xf1, 0x62, 0xaf, 0x4d, 0x53, 0x1a, 0x2b,
0x3b, 0x79, 0xf5, 0x68, 0xbd, 0xc4, 0xf4, 0x58, 0x53, 0x3c, 0x8d, 0x8f, 0xa3, 0x41, 0x09, 0x5a,
0x22, 0xd9, 0x19, 0x3a, 0xa6, 0x2d, 0xea, 0x25, 0xf4, 0xba, 0xd9, 0x3e, 0xf4, 0x19, 0x1a, 0x0d,
0x0a, 0x6d, 0x3a, 0xb6, 0x8f, 0xf1, 0x56, 0x24, 0xb2, 0xaf, 0xf4, 0x3e, 0xc6, 0xdb, 0x99, 0xa0,
0xc4, 0x92, 0x57, 0x1d, 0x98, 0x6e, 0x04, 0x2d, 0x6a, 0xa4, 0xcb, 0x13, 0xef, 0x8d, 0xa3, 0x37,
0xf2, 0xa2, 0xcd, 0xd7, 0x58, 0xe0, 0x0c, 0x38, 0xc1, 0x9c, 0x78, 0x36, 0xcc, 0x3b, 0x34, 0xe6,
0xa6, 0x7b, 0x2c, 0x3b, 0xcc, 0xb7, 0x04, 0x18, 0x15, 0xde, 0xfd, 0x42, 0x09, 0x66, 0x87, 0xcd,
0x39, 0x92, 0xb0, 0x99, 0x95, 0xde, 0xf2, 0xe2, 0x44, 0xba, 0xef, 0x47, 0x3c, 0x05, 0x4a, 0xbe,
0xb7, 0xbc, 0xd8, 0x9e, 0xa3, 0x5c, 0x00, 0x2a, 0x49, 0xe4, 0x0e, 0x8c, 0xa4, 0x2d, 0xaf, 0xa0,
0xb0, 0x91, 0x25, 0xd1, 0x38, 0x59, 0xab, 0x8b, 0x09, 0x72, 0x19, 0xe4, 0x29, 0x18, 0x69, 0x05,
0x9b, 0xcc, 0x19, 0x65, 0x93, 0x98, 0xef, 0x2a, 0xab, 0xc1, 0x66, 0x82, 0x1c, 0xea, 0x7e, 0xdd,
0x19, 0xd0, 0x37, 0xd2, 0xe8, 0xb2, 0x49, 0x45, 0xc3, 0x9d, 0x20, 0x8e, 0xc2, 0x36, 0x0d, 0xd3,
0x7c, 0x28, 0xf4, 0x82, 0x41, 0xa1, 0x4d, 0x47, 0x7e, 0xc5, 0x19, 0xb0, 0x1a, 0x8e, 0x18, 0x03,
0x94, 0x2a, 0x1d, 0x78, 0x41, 0xb8, 0xff, 0x39, 0x36, 0xc0, 0xfe, 0xe9, 0x0d, 0x8d, 0x9c, 0x07,
0x60, 0xde, 0xd4, 0x5a, 0x4c, 0x1b, 0xc1, 0xae, 0x6c, 0x99, 0x66, 0x79, 0x5d, 0x63, 0xd0, 0xa2,
0x52, 0xdf, 0xac, 0x77, 0x1b, 0xec, 0x9b, 0x52, 0xff, 0x37, 0x02, 0x83, 0x16, 0x15, 0x79, 0x0e,
0xc6, 0x82, 0xb6, 0xd7, 0xa4, 0xaa, 0xff, 0x9f, 0x62, 0x8b, 0x6b, 0x85, 0x43, 0xee, 0xef, 0xcd,
0x4d, 0x6b, 0x85, 0x38, 0x08, 0x25, 0x2d, 0xf9, 0x3d, 0x07, 0x26, 0xfd, 0xa8, 0xdd, 0x8e, 0xc2,
0x55, 0x6f, 0x93, 0xb6, 0x54, 0x88, 0xeb, 0xce, 0xa3, 0xda, 0xee, 0xe7, 0x97, 0x2c, 0x61, 0xe2,
0x80, 0xa9, 0x03, 0x77, 0x36, 0x0a, 0x33, 0x5a, 0xd9, 0x6b, 0x70, 0xf4, 0xc1, 0x6b, 0x90, 0xfc,
0xa9, 0x03, 0x33, 0xe2, 0xdb, 0xc5, 0x30, 0x8c, 0x52, 0x19, 0x79, 0x14, 0x31, 0xaa, 0xe8, 0x11,
0x37, 0xcb, 0x92, 0x28, 0xda, 0xf6, 0x1a, 0xa9, 0xe6, 0x4c, 0x1f, 0x1e, 0xfb, 0x95, 0x24, 0x97,
0x60, 0xa6, 0x11, 0xc5, 0x3e, 0xb5, 0x3b, 0x82, 0x3b, 0x7e, 0x15, 0xc3, 0xe8, 0x62, 0x9e, 0x00,
0xfb, 0xbf, 0x21, 0xb7, 0xe0, 0xb4, 0x05, 0xb4, 0xfb, 0xa1, 0xc2, 0xb9, 0x9d, 0x95, 0xdc, 0x4e,
0x5f, 0x1c, 0x48, 0x85, 0x43, 0xbe, 0x3e, 0xf3, 0x0e, 0x98, 0xe9, 0x1b, 0xbf, 0x01, 0xa7, 0xfb,
0x93, 0xf6, 0xe9, 0xbe, 0x6a, 0x1d, 0xca, 0xcf, 0x2c, 0xc3, 0xe9, 0xc1, 0x3d, 0x75, 0x18, 0x2e,
0xee, 0x6f, 0x3a, 0xf0, 0xe4, 0x10, 0x37, 0x46, 0x1f, 0x6b, 0x9c, 0x61, 0xc7, 0x1a, 0xe2, 0x41,
0x99, 0x86, 0x3b, 0xd2, 0x58, 0x5c, 0x3c, 0xda, 0x8c, 0xb8, 0x10, 0xee, 0x88, 0x81, 0x1e, 0xbf,
0xb7, 0x37, 0x57, 0xbe, 0x10, 0xee, 0x20, 0xe3, 0xed, 0x7e, 0x6e, 0x2c, 0x73, 0x72, 0x5a, 0x57,
0x87, 0x75, 0xae, 0xa8, 0x3c, 0x37, 0xdd, 0x28, 0x78, 0x2e, 0x5a, 0x27, 0x43, 0x11, 0x82, 0x97,
0xe2, 0xc8, 0xc7, 0x1d, 0x1e, 0xf5, 0x56, 0x27, 0x4a, 0xe9, 0x59, 0x3d, 0x9a, 0x20, 0xbc, 0x1d,
0x4b, 0x57, 0x40, 0xb4, 0xa5, 0xb3, 0x95, 0xdc, 0x11, 0x41, 0xa7, 0xbc, 0x7f, 0xa5, 0xe2, 0xe2,
0x0a, 0x4f, 0x76, 0x01, 0x92, 0x5e, 0xe8, 0xaf, 0x45, 0xad, 0xc0, 0xef, 0xc9, 0x30, 0x43, 0x01,
0x91, 0x53, 0xc1, 0x4f, 0x38, 0x59, 0xe6, 0x37, 0x5a, 0xb2, 0xc8, 0x17, 0x1d, 0x98, 0x09, 0x9a,
0x61, 0x14, 0xd3, 0xe5, 0xa0, 0xd1, 0xa0, 0x31, 0x0d, 0x7d, 0xaa, 0xfc, 0x90, 0xdb, 0x47, 0xd3,
0x40, 0x05, 0xfd, 0x56, 0xf2, 0xec, 0xcd, 0x12, 0xef, 0x43, 0x61, 0xbf, 0x32, 0xa4, 0x0e, 0x23,
0x41, 0xd8, 0x88, 0xa4, 0x61, 0xab, 0x1d, 0x4d, 0xa9, 0x95, 0xb0, 0x11, 0x99, 0xb5, 0xc2, 0x7e,
0x21, 0xe7, 0x4e, 0x56, 0xe1, 0x64, 0x2c, 0x4f, 0xa2, 0x97, 0x83, 0x84, 0xf9, 0xf3, 0xab, 0x41,
0x3b, 0x48, 0xb9, 0x51, 0x2a, 0xd7, 0x66, 0xef, 0xed, 0xcd, 0x9d, 0xc4, 0x01, 0x78, 0x1c, 0xf8,
0x95, 0xfb, 0x4a, 0x35, 0x7b, 0xdc, 0x16, 0xc1, 0xa4, 0x0f, 0x40, 0x35, 0xd6, 0xe1, 0x7b, 0xe1,
0x19, 0xad, 0x16, 0xd3, 0xc7, 0x32, 0x8a, 0xa5, 0xe3, 0x20, 0x26, 0x50, 0x6f, 0x24, 0x32, 0x0f,
0x89, 0x8d, 0xbc, 0x5c, 0x16, 0x05, 0xcc, 0x2f, 0x29, 0xd5, 0x04, 0xec, 0x7a, 0xa1, 0x8f, 0x5c,
0x06, 0x89, 0x61, 0x6c, 0x8b, 0x7a, 0xad, 0x74, 0x4b, 0xc6, 0x93, 0xae, 0x1c, 0xd5, 0xa7, 0x65,
0xbc, 0xf2, 0xb1, 0x3a, 0x01, 0x45, 0x29, 0x89, 0xec, 0xc2, 0xf8, 0x96, 0x18, 0x04, 0xb9, 0xb7,
0x5f, 0x3b, 0x6a, 0xe7, 0x66, 0x46, 0xd6, 0xac, 0x5f, 0x09, 0x40, 0x25, 0x8e, 0xfc, 0x9a, 0x03,
0xe0, 0xab, 0x20, 0x9d, 0x5a, 0x3e, 0x58, 0x98, 0xdd, 0xd1, 0xf1, 0x3f, 0xe3, 0x1a, 0x69, 0x50,
0x82, 0x96, 0x64, 0xf2, 0x12, 0x4c, 0xc6, 0xd4, 0x8f, 0x42, 0x3f, 0x68, 0xd1, 0xfa, 0x62, 0xca,
0xdd, 0xf8, 0xc3, 0x05, 0xf3, 0x8e, 0x33, 0xff, 0x04, 0x2d, 0x1e, 0x98, 0xe1, 0x48, 0x5e, 0x71,
0x60, 0x5a, 0x07, 0x2a, 0xd9, 0x80, 0x50, 0x19, 0xb0, 0x59, 0x2d, 0x28, 0x2c, 0xca, 0x79, 0xd6,
0x08, 0x3b, 0xae, 0x64, 0x61, 0x98, 0x93, 0x4b, 0xde, 0x05, 0x10, 0x6d, 0xf2, 0xa0, 0x20, 0x6b,
0x6a, 0xe5, 0xd0, 0x4d, 0x9d, 0x16, 0xf1, 0x6d, 0xc5, 0x01, 0x2d, 0x6e, 0xe4, 0x2a, 0x80, 0x58,
0x36, 0x1b, 0xbd, 0x0e, 0xe5, 0x41, 0x99, 0x6a, 0xed, 0x8d, 0xaa, 0xf3, 0xd7, 0x35, 0xe6, 0xfe,
0xde, 0x5c, 0xff, 0x69, 0x97, 0x47, 0x63, 0xad, 0xcf, 0xc9, 0xfb, 0x61, 0x3c, 0xe9, 0xb6, 0xdb,
0x9e, 0x0e, 0xae, 0xac, 0x15, 0xb7, 0x23, 0x0a, 0xbe, 0x66, 0x6e, 0x4a, 0x00, 0x2a, 0x89, 0x6e,
0x08, 0xa4, 0x9f, 0x9e, 0x3c, 0x07, 0x93, 0x74, 0x37, 0xa5, 0x71, 0xe8, 0xb5, 0x6e, 0xe2, 0xaa,
0x3a, 0x8e, 0xf3, 0xc1, 0xbf, 0x60, 0xc1, 0x31, 0x43, 0x45, 0x5c, 0xed, 0x79, 0x97, 0x38, 0x3d,
0x18, 0xcf, 0x5b, 0xf9, 0xd9, 0xee, 0xff, 0x96, 0x32, 0x1e, 0xc1, 0x46, 0x4c, 0x29, 0x89, 0x60,
0x34, 0x8c, 0xea, 0xda, 0xe8, 0x5d, 0x29, 0xc6, 0xe8, 0x5d, 0x8f, 0xea, 0x56, 0x5e, 0x99, 0xfd,
0x4a, 0x50, 0xc8, 0xe1, 0x89, 0x37, 0x95, 0xa1, 0xe4, 0x08, 0xe9, 0x04, 0x15, 0x29, 0x59, 0x27,
0xde, 0x6e, 0xd8, 0x82, 0x30, 0x2b, 0x97, 0x6c, 0xc3, 0xe8, 0x56, 0x94, 0xa4, 0xe2, 0xac, 0x72,
0x64, 0x2f, 0xec, 0x72, 0x94, 0xa4, 0x7c, 0x0b, 0xd3, 0xcd, 0x66, 0x90, 0x04, 0x85, 0x0c, 0xf7,
0x7b, 0x4e, 0x26, 0xf8, 0x72, 0xdb, 0x4b, 0xfd, 0xad, 0x0b, 0x3b, 0xec, 0xfc, 0x78, 0x35, 0x93,
0x38, 0xf8, 0x19, 0x3b, 0x71, 0x70, 0x7f, 0x6f, 0xee, 0x0d, 0xc3, 0x0a, 0x7d, 0xee, 0x32, 0x0e,
0xf3, 0x9c, 0x85, 0x95, 0x63, 0xf8, 0xb0, 0x03, 0x13, 0x96, 0x7a, 0x72, 0x43, 0x29, 0x30, 0x86,
0xad, 0x9d, 0x2b, 0x0b, 0x88, 0xb6, 0x48, 0xf7, 0x33, 0x0e, 0x8c, 0xd7, 0x3c, 0x7f, 0x3b, 0x6a,
0x34, 0xc8, 0x9b, 0xa0, 0x52, 0xef, 0xca, 0x14, 0x8d, 0x68, 0x9f, 0x8e, 0xbc, 0x2f, 0x4b, 0x38,
0x6a, 0x0a, 0x36, 0x87, 0x1b, 0x9e, 0x9f, 0x46, 0x31, 0x57, 0xbb, 0x2c, 0xe6, 0xf0, 0x45, 0x0e,
0x41, 0x89, 0x61, 0x87, 0xf4, 0xb6, 0xb7, 0xab, 0x3e, 0xce, 0x47, 0x7e, 0xae, 0x19, 0x14, 0xda,
0x74, 0xee, 0x97, 0xc7, 0x60, 0x5c, 0xe6, 0x42, 0x0f, 0x9c, 0xcd, 0x50, 0x5e, 0x7c, 0x69, 0xa8,
0x17, 0x9f, 0xc0, 0x98, 0xcf, 0xcb, 0xa8, 0xe4, 0x56, 0x7a, 0xc4, 0x18, 0x98, 0x54, 0x50, 0x54,
0x66, 0x19, 0xb5, 0xc4, 0x6f, 0x94, 0xa2, 0xc8, 0xa7, 0x1d, 0x38, 0xe6, 0x47, 0x61, 0x48, 0x7d,
0x63, 0xe7, 0x47, 0x8a, 0xc8, 0xf6, 0x2d, 0x65, 0x99, 0x9a, 0xa4, 0x6b, 0x0e, 0x81, 0x79, 0xf1,
0xe4, 0x05, 0x98, 0x12, 0x7d, 0x76, 0x2b, 0x73, 0x3e, 0x36, 0xf9, 0x6f, 0x1b, 0x89, 0x59, 0x5a,
0x32, 0x2f, 0xe2, 0x0c, 0x3c, 0x21, 0x24, 0xce, 0xc8, 0x32, 0xf8, 0xa8, 0x33, 0x46, 0x09, 0x5a,
0x14, 0x24, 0x06, 0x12, 0xd3, 0x46, 0x4c, 0x93, 0x2d, 0xa4, 0x2f, 0x77, 0x69, 0x92, 0xf2, 0x3d,
0x66, 0xfc, 0xe1, 0x72, 0x63, 0xd8, 0xc7, 0x09, 0x07, 0x70, 0x27, 0xdb, 0xd2, 0xd1, 0xad, 0x14,
0xb1, 0x9c, 0xe4, 0x30, 0x0f, 0xf5, 0x77, 0xe7, 0x60, 0x34, 0xd9, 0xf2, 0xe2, 0x3a, 0xdf, 0xdb,
0xca, 0xb5, 0x2a, 0xb3, 0x25, 0xeb, 0x0c, 0x80, 0x02, 0x4e, 0x96, 0xe1, 0x78, 0x2e, 0x7b, 0x9f,
0xf0, 0xdd, 0xab, 0x52, 0x9b, 0x95, 0xec, 0x8e, 0xe7, 0xf2, 0xfe, 0x09, 0xf6, 0x7d, 0x61, 0x1f,
0x82, 0x26, 0x1e, 0x7c, 0x08, 0x72, 0xbf, 0xef, 0x80, 0xe2, 0xb8, 0xe4, 0xf9, 0x5b, 0x94, 0x29,
0x4b, 0xde, 0x0e, 0xd3, 0xda, 0x81, 0x5d, 0x8a, 0xba, 0x32, 0x62, 0x56, 0x36, 0x21, 0x4d, 0xcc,
0x60, 0x31, 0x47, 0x4d, 0x16, 0xa0, 0xca, 0xfa, 0x48, 0x7c, 0x2a, 0x16, 0xbc, 0x76, 0x92, 0x17,
0xd7, 0x56, 0xe4, 0x57, 0x86, 0x86, 0x44, 0x30, 0xd3, 0xf2, 0x92, 0x94, 0x6b, 0xc0, 0xfc, 0xd9,
0x87, 0xcc, 0x89, 0xf2, 0xb2, 0x99, 0xd5, 0x3c, 0x23, 0xec, 0xe7, 0xed, 0x7e, 0x63, 0x04, 0xa6,
0x32, 0x6b, 0x92, 0xd9, 0xb3, 0x6e, 0xc2, 0x36, 0x5d, 0x7d, 0xb8, 0xd7, 0xf6, 0xec, 0xa6, 0x84,
0xa3, 0xa6, 0x60, 0xd4, 0x1d, 0x2f, 0x49, 0xee, 0x46, 0x71, 0x5d, 0x1a, 0x11, 0x4d, 0xbd, 0x26,
0xe1, 0xa8, 0x29, 0x98, 0x65, 0xdb, 0xa4, 0x5e, 0x4c, 0x63, 0x5e, 0x46, 0x90, 0xb7, 0x6c, 0x35,
0x83, 0x42, 0x9b, 0x8e, 0x9b, 0x83, 0xb4, 0x95, 0x2c, 0xb5, 0x02, 0x1a, 0xa6, 0x42, 0xcd, 0x62,
0xcc, 0xc1, 0xc6, 0xea, 0xba, 0xcd, 0xd4, 0x98, 0x83, 0x1c, 0x02, 0xf3, 0xe2, 0xc9, 0x47, 0x1d,
0x98, 0xf2, 0xee, 0x26, 0xa6, 0xca, 0x94, 0xdb, 0x83, 0x23, 0x9b, 0xc7, 0x4c, 0xe1, 0x6a, 0x6d,
0x86, 0x19, 0x96, 0x0c, 0x08, 0xb3, 0x42, 0xc9, 0xe7, 0x1d, 0x20, 0x74, 0x97, 0xfa, 0x6b, 0x71,
0xb4, 0x13, 0xd4, 0xd5, 0x18, 0x4a, 0xc7, 0xfb, 0x88, 0x7e, 0xde, 0x85, 0x3e, 0xbe, 0xc2, 0x9e,
0xf4, 0xc3, 0x71, 0x80, 0x0e, 0xee, 0xdf, 0x97, 0x61, 0xc2, 0x32, 0x03, 0x03, 0x6d, 0xba, 0xf3,
0x43, 0x66, 0xd3, 0x4b, 0x87, 0xb0, 0xe9, 0x1f, 0x82, 0xaa, 0xaf, 0x0c, 0x45, 0x31, 0x55, 0xb1,
0x79, 0xf3, 0x63, 0x6c, 0x85, 0x06, 0xa1, 0x91, 0x49, 0x2e, 0xc1, 0x8c, 0xc5, 0x46, 0x1a, 0x99,
0x11, 0x6e, 0x64, 0x74, 0x88, 0x63, 0x31, 0x4f, 0x80, 0xfd, 0xdf, 0x90, 0x67, 0x99, 0x3f, 0x15,
0xc8, 0x76, 0x89, 0xf3, 0xa3, 0xac, 0x38, 0x5d, 0x5c, 0x5b, 0x51, 0x60, 0xb4, 0x69, 0xdc, 0x6f,
0x38, 0x7a, 0x70, 0x1f, 0x43, 0xb9, 0xc2, 0x9d, 0x6c, 0xb9, 0xc2, 0x85, 0x42, 0xba, 0x79, 0x48,
0xa9, 0xc2, 0x75, 0x18, 0x5f, 0x8a, 0xda, 0x6d, 0x2f, 0xac, 0x93, 0xd7, 0xc1, 0xb8, 0x2f, 0xfe,
0x94, 0x07, 0x14, 0x9e, 0xbf, 0x96, 0x58, 0x54, 0x38, 0xf2, 0x14, 0x8c, 0x78, 0x71, 0x53, 0x1d,
0x4a, 0x78, 0x3a, 0x66, 0x31, 0x6e, 0x26, 0xc8, 0xa1, 0xee, 0x67, 0x4b, 0x00, 0x4b, 0x51, 0xbb,
0xe3, 0xc5, 0xb4, 0xbe, 0x11, 0xfd, 0x7f, 0x74, 0x52, 0xf8, 0xaa, 0x9f, 0x70, 0x80, 0xb0, 0x5e,
0x89, 0x42, 0x1a, 0x9a, 0x14, 0x10, 0xdb, 0x2f, 0x7d, 0x05, 0x95, 0x9b, 0x8f, 0x59, 0x03, 0x0a,
0x81, 0x86, 0xe6, 0x00, 0xfe, 0xeb, 0xd3, 0x2a, 0xba, 0x5d, 0xce, 0xa6, 0xd6, 0x79, 0x3a, 0x54,
0x06, 0xbb, 0xdd, 0xcf, 0x95, 0xe0, 0xb4, 0x30, 0x5b, 0xd7, 0xbc, 0xd0, 0x6b, 0xd2, 0x36, 0xd3,
0xea, 0xa0, 0x71, 0x6e, 0x9f, 0x39, 0x4e, 0x81, 0xca, 0xa4, 0x1f, 0x75, 0x72, 0x8a, 0x49, 0x25,
0xa6, 0xd1, 0x4a, 0x18, 0xa4, 0xc8, 0x99, 0x93, 0x04, 0x2a, 0xea, 0x9e, 0x83, 0x34, 0x36, 0x05,
0x09, 0xd2, 0xeb, 0xee, 0x92, 0x64, 0x8f, 0x5a, 0x90, 0xfb, 0x15, 0x07, 0xf2, 0x46, 0x94, 0x9f,
0x2c, 0x44, 0x2d, 0x5c, 0xfe, 0x64, 0x91, 0x2d, 0x5d, 0x3b, 0x44, 0x25, 0xd8, 0x7b, 0x60, 0xc2,
0x4b, 0x53, 0xda, 0xee, 0x08, 0x37, 0xb7, 0xfc, 0x70, 0xa1, 0x94, 0x6b, 0x51, 0x3d, 0x68, 0x04,
0xdc, 0xbd, 0xb5, 0xd9, 0xb9, 0x2f, 0x42, 0x45, 0x65, 0x0f, 0x0e, 0x30, 0x98, 0x4f, 0x67, 0x92,
0x21, 0x43, 0xa6, 0xcb, 0xfd, 0x12, 0x0c, 0xd8, 0x05, 0x59, 0x93, 0x8d, 0xbd, 0xc8, 0x34, 0xf9,
0x70, 0x36, 0x83, 0xec, 0x8a, 0xcc, 0x89, 0x38, 0xb3, 0xbf, 0xb3, 0xe8, 0x5d, 0xdc, 0x24, 0x53,
0x26, 0xa4, 0x7e, 0x3a, 0xa1, 0x42, 0xce, 0x03, 0x18, 0x33, 0x2f, 0x2b, 0x08, 0x74, 0xd4, 0xcf,
0xec, 0x06, 0x68, 0x51, 0x31, 0xa7, 0x2e, 0x08, 0x93, 0xd4, 0x6b, 0xb5, 0x2e, 0x07, 0x61, 0x2a,
0xcf, 0x45, 0xda, 0x04, 0xac, 0x18, 0x14, 0xda, 0x74, 0x67, 0xde, 0x62, 0x8d, 0xcb, 0x61, 0x92,
0x52, 0x9f, 0x28, 0xc1, 0xf4, 0xa5, 0xb0, 0xbb, 0x76, 0x69, 0xad, 0xbb, 0xd9, 0x0a, 0xfc, 0xab,
0xb4, 0xc7, 0x06, 0x6d, 0x9b, 0xf6, 0x56, 0x96, 0x65, 0xb7, 0xeb, 0x41, 0xbb, 0xca, 0x80, 0x28,
0x70, 0x4c, 0xcd, 0x46, 0x10, 0x36, 0x69, 0xdc, 0x89, 0x03, 0xe9, 0x8d, 0x5b, 0x6a, 0x5e, 0x34,
0x28, 0xb4, 0xe9, 0x18, 0xef, 0xe8, 0x6e, 0x48, 0xe3, 0xbc, 0xfd, 0xb8, 0xc1, 0x80, 0x28, 0x70,
0x8c, 0x28, 0x8d, 0xbb, 0x49, 0x2a, 0x7b, 0x4c, 0x13, 0x6d, 0x30, 0x20, 0x0a, 0x1c, 0x9b, 0x1e,
0x49, 0x77, 0x93, 0x47, 0xf4, 0x72, 0xb9, 0xd5, 0x75, 0x01, 0x46, 0x85, 0x67, 0xa4, 0xdb, 0xb4,
0xb7, 0xcc, 0x76, 0xd3, 0x5c, 0x29, 0xc4, 0x55, 0x01, 0x46, 0x85, 0x77, 0xff, 0xd9, 0x01, 0x92,
0xed, 0x8e, 0xc7, 0xb0, 0x21, 0xbf, 0x9c, 0xdd, 0x90, 0x8f, 0x18, 0x7c, 0xcd, 0xaa, 0x3f, 0x64,
0x5f, 0xfe, 0x1d, 0x07, 0x26, 0xed, 0x38, 0x3c, 0x69, 0xe6, 0x0c, 0xd1, 0x8d, 0xac, 0x21, 0xba,
0xbf, 0x37, 0xf7, 0x73, 0x83, 0xae, 0xe1, 0x35, 0x83, 0x34, 0xea, 0x24, 0x6f, 0xa6, 0x61, 0x33,
0x08, 0x29, 0x8f, 0x32, 0x89, 0xf8, 0x7d, 0x26, 0xc8, 0xbf, 0x14, 0xd5, 0xe9, 0x43, 0x58, 0x32,
0xf7, 0x36, 0xcc, 0xf4, 0xd5, 0xbf, 0x1c, 0xc0, 0xe8, 0xec, 0x5b, 0xdd, 0xe8, 0x7e, 0xd2, 0x81,
0xa9, 0x4c, 0xf9, 0x50, 0x41, 0xa6, 0x8c, 0xaf, 0x8a, 0x88, 0xa7, 0x70, 0xe2, 0x20, 0x14, 0x31,
0x9e, 0x8a, 0xb5, 0x2a, 0x0c, 0x0a, 0x6d, 0x3a, 0xf7, 0x33, 0x25, 0xa8, 0xa8, 0x68, 0xe0, 0x01,
0x54, 0xf9, 0xb8, 0x03, 0x53, 0xfa, 0x68, 0xcc, 0x1d, 0xe6, 0x42, 0x4a, 0x48, 0x98, 0x06, 0x3a,
0xcf, 0xc7, 0x1c, 0x66, 0xed, 0xb9, 0xa3, 0x2d, 0x0c, 0xb3, 0xb2, 0xc9, 0x2d, 0x80, 0xa4, 0x97,
0xa4, 0xb4, 0x6d, 0xb9, 0xee, 0xae, 0xb5, 0x3a, 0xe6, 0xfd, 0x28, 0xa6, 0x6c, 0x2d, 0x5c, 0x8f,
0xea, 0x74, 0x5d, 0x53, 0x1a, 0x43, 0x68, 0x60, 0x68, 0x71, 0x72, 0xff, 0xb0, 0x04, 0xc7, 0xf3,
0x2a, 0x91, 0x77, 0xc3, 0xa4, 0x92, 0x6e, 0xdd, 0x3e, 0x54, 0x21, 0xd0, 0x49, 0xb4, 0x70, 0xf7,
0xf7, 0xe6, 0xe6, 0xfa, 0xaf, 0x5f, 0xce, 0xdb, 0x24, 0x98, 0x61, 0x26, 0xe2, 0x13, 0x32, 0x84,
0x53, 0xeb, 0x2d, 0x76, 0x3a, 0x32, 0xc8, 0x60, 0xc5, 0x27, 0x6c, 0x2c, 0xe6, 0xa8, 0xc9, 0x1a,
0x9c, 0xb4, 0x20, 0xd7, 0x69, 0xd0, 0xdc, 0xda, 0x8c, 0x62, 0x51, 0xe6, 0x5e, 0xae, 0x3d, 0x25,
0xb9, 0x9c, 0xc4, 0x01, 0x34, 0x38, 0xf0, 0x4b, 0xf2, 0x26, 0xa8, 0xf8, 0x5e, 0xc7, 0xf3, 0x83,
0xb4, 0x27, 0xcf, 0x22, 0xda, 0x8e, 0x2c, 0x49, 0x38, 0x6a, 0x0a, 0xf7, 0x1a, 0x8c, 0x1c, 0x70,
0x06, 0x1d, 0x68, 0x5f, 0x7e, 0x11, 0x2a, 0x8c, 0x1d, 0xb3, 0x1b, 0x45, 0xb1, 0x8c, 0xa0, 0xa2,
0x6e, 0x3d, 0x10, 0x17, 0xca, 0x81, 0xa7, 0x42, 0x40, 0xba, 0x59, 0x2b, 0x49, 0xd2, 0xe5, 0x5e,
0x07, 0x43, 0x92, 0xa7, 0xa1, 0x4c, 0x77, 0x3b, 0xf9, 0x58, 0xcf, 0x85, 0xdd, 0x4e, 0x10, 0xd3,
0x84, 0x11, 0xd1, 0xdd, 0x0e, 0x39, 0x03, 0xa5, 0xa0, 0x2e, 0x37, 0x14, 0x90, 0x34, 0xa5, 0x95,
0x65, 0x2c, 0x05, 0x75, 0x77, 0x17, 0xaa, 0xfa, 0x9a, 0x05, 0xd9, 0x56, 0x76, 0xd6, 0x29, 0x22,
0x7c, 0xaf, 0xf8, 0x0e, 0xb1, 0xb0, 0x5d, 0x00, 0x53, 0x78, 0x56, 0x94, 0x7d, 0x39, 0x07, 0x23,
0x7e, 0x24, 0x6b, 0x3c, 0x2b, 0x86, 0x0d, 0x37, 0xb0, 0x1c, 0xe3, 0xde, 0x86, 0xe9, 0xab, 0x61,
0x74, 0x37, 0x64, 0x1b, 0xdf, 0xc5, 0x80, 0xb6, 0xea, 0x8c, 0x71, 0x83, 0xfd, 0x91, 0xdf, 0xce,
0x39, 0x16, 0x05, 0x4e, 0xdf, 0x45, 0x28, 0x0d, 0xbb, 0x8b, 0xe0, 0xfe, 0xba, 0x03, 0xc7, 0xf3,
0x45, 0x66, 0x3f, 0xb0, 0x13, 0xc6, 0x87, 0x99, 0x32, 0xaa, 0x8a, 0xe9, 0x46, 0x47, 0xe4, 0x4b,
0x9f, 0x87, 0xc9, 0xcd, 0x6e, 0xd0, 0xaa, 0xcb, 0xdf, 0x52, 0x1f, 0x5d, 0xa7, 0x55, 0xb3, 0x70,
0x98, 0xa1, 0x64, 0x7e, 0xda, 0x66, 0x10, 0x7a, 0x71, 0x6f, 0xcd, 0xec, 0x1b, 0xda, 0x3c, 0xd5,
0x34, 0x06, 0x2d, 0x2a, 0xf7, 0x6f, 0xcb, 0x60, 0xee, 0x7b, 0x90, 0x40, 0xa6, 0xe3, 0x9d, 0x22,
0xc2, 0x56, 0xeb, 0xbd, 0xd0, 0x37, 0x37, 0x4b, 0x2a, 0xb9, 0x6c, 0xfc, 0xc7, 0x1c, 0xe6, 0x21,
0x06, 0x69, 0xe0, 0x71, 0x63, 0x21, 0x0f, 0x4a, 0x6b, 0x05, 0x65, 0x6c, 0x57, 0x04, 0xe7, 0x28,
0xb6, 0x7d, 0x4e, 0x2d, 0x0c, 0x6d, 0xc9, 0xe4, 0x25, 0x19, 0xe3, 0x2e, 0x17, 0x56, 0xcc, 0x51,
0xc9, 0x05, 0xb6, 0x3b, 0x30, 0x1a, 0xd3, 0x34, 0x56, 0x65, 0x34, 0x57, 0x8f, 0x9a, 0xf1, 0x4b,
0xe3, 0xde, 0x7a, 0xca, 0x0e, 0x63, 0x4d, 0xcb, 0x31, 0xe2, 0x60, 0x14, 0x82, 0xdc, 0x04, 0x48,
0x7f, 0x5f, 0x1c, 0x32, 0x8a, 0xbb, 0x00, 0x55, 0xaf, 0x9b, 0x46, 0x6d, 0xd6, 0x4d, 0x7c, 0x78,
0x2a, 0x56, 0x9c, 0x5a, 0x21, 0xd0, 0xd0, 0xb8, 0xaf, 0x8e, 0x42, 0x2e, 0x3f, 0x4e, 0x76, 0xed,
0xbb, 0x4a, 0x4e, 0xb1, 0x77, 0x95, 0xb4, 0x32, 0x83, 0xee, 0x2b, 0x91, 0x26, 0x8c, 0x76, 0xb6,
0xbc, 0x44, 0xad, 0xd1, 0x17, 0x55, 0x37, 0xad, 0x31, 0xe0, 0xfd, 0xbd, 0xb9, 0x9f, 0x3f, 0x98,
0x1f, 0xc8, 0xe6, 0xea, 0x82, 0x28, 0x16, 0x34, 0xa2, 0x39, 0x0f, 0x14, 0xfc, 0x6d, 0x4f, 0xb0,
0xbc, 0xcf, 0x99, 0xf6, 0x23, 0x8e, 0x28, 0xaa, 0x42, 0x9a, 0x74, 0x5b, 0xa9, 0x9c, 0x0d, 0x2f,
0x16, 0xb8, 0xca, 0x04, 0x63, 0x53, 0x5d, 0x25, 0x7e, 0xa3, 0x25, 0x94, 0xbc, 0x1b, 0xaa, 0x49,
0xea, 0xc5, 0xe9, 0x43, 0xd6, 0x62, 0xe8, 0x4e, 0x5f, 0x57, 0x4c, 0xd0, 0xf0, 0x23, 0xef, 0x02,
0x68, 0x04, 0x61, 0x90, 0x6c, 0x3d, 0x64, 0x6a, 0x8a, 0x2b, 0x7e, 0x51, 0x73, 0x40, 0x8b, 0x1b,
0xb3, 0x6e, 0x7c, 0x6e, 0x8b, 0x90, 0x66, 0x85, 0xef, 0xa5, 0xda, 0xba, 0xa1, 0xc6, 0xa0, 0x45,
0xe5, 0x7e, 0x10, 0x4e, 0xe4, 0xef, 0x09, 0xcb, 0xa3, 0x61, 0x33, 0x8e, 0xba, 0x9d, 0xfc, 0x5e,
0xc2, 0xef, 0x91, 0xa2, 0xc0, 0x31, 0x1b, 0xbf, 0x1d, 0x84, 0xf5, 0xbc, 0x8d, 0xbf, 0x1a, 0x84,
0x75, 0xe4, 0x98, 0x03, 0x5c, 0xe2, 0xfa, 0xb2, 0x03, 0xe7, 0xf6, 0xbb, 0xce, 0xcc, 0x8e, 0xfd,
0x77, 0xbd, 0x38, 0x94, 0x17, 0x34, 0xb8, 0xed, 0xb8, 0xed, 0xc5, 0x21, 0x72, 0x28, 0xe9, 0xc1,
0x98, 0xa8, 0x3f, 0x93, 0xde, 0xf1, 0x8b, 0xc5, 0x5e, 0xae, 0x66, 0x67, 0x2b, 0x1d, 0xad, 0x11,
0xb5, 0x6f, 0x28, 0x05, 0xba, 0xaf, 0x3a, 0x40, 0x6e, 0xec, 0xd0, 0x38, 0x0e, 0xea, 0x56, 0xc5,
0x1c, 0x79, 0x0e, 0x26, 0xef, 0xac, 0xdf, 0xb8, 0xbe, 0x16, 0x05, 0x21, 0x2f, 0xfc, 0xb6, 0xea,
0x34, 0xae, 0x58, 0x70, 0xcc, 0x50, 0x91, 0x25, 0x98, 0xb9, 0xf3, 0x32, 0xdb, 0x72, 0x2e, 0xec,
0x76, 0x62, 0x9a, 0x24, 0xfa, 0x49, 0x82, 0xaa, 0x48, 0x4c, 0x5d, 0x79, 0x31, 0x87, 0xc4, 0x7e,
0x7a, 0xf7, 0x4b, 0x25, 0x98, 0xb0, 0x6e, 0xf0, 0x1f, 0xc0, 0x1f, 0xc9, 0x3d, 0x3a, 0x50, 0x3a,
0xe0, 0xa3, 0x03, 0xcf, 0x40, 0xa5, 0x13, 0xb5, 0x02, 0x3f, 0xd0, 0x15, 0xdd, 0x93, 0x3c, 0x7b,
0x25, 0x61, 0xa8, 0xb1, 0xe4, 0x2e, 0x54, 0xf5, 0x55, 0x5c, 0x59, 0xe3, 0x55, 0x94, 0x47, 0xa6,
0xd7, 0x9a, 0xb9, 0x62, 0x6b, 0x64, 0x11, 0x17, 0xc6, 0xf8, 0x44, 0x55, 0xb1, 0x79, 0x5e, 0x34,
0xc0, 0x67, 0x70, 0x82, 0x12, 0xe3, 0xfe, 0xdb, 0x28, 0x54, 0x91, 0x76, 0xa2, 0xa5, 0x98, 0xd6,
0x13, 0xf2, 0x5a, 0x28, 0x77, 0xe3, 0x96, 0xec, 0x2c, 0x1d, 0xe6, 0xb9, 0x89, 0xab, 0xc8, 0xe0,
0x99, 0xdd, 0xa1, 0x74, 0xa8, 0x1c, 0x5f, 0x79, 0xdf, 0x1c, 0xdf, 0x0b, 0x30, 0x95, 0x24, 0x5b,
0x6b, 0x71, 0xb0, 0xe3, 0xa5, 0x6c, 0xce, 0xc9, 0x98, 0x88, 0x49, 0xaa, 0xac, 0x5f, 0x36, 0x48,
0xcc, 0xd2, 0x92, 0x4b, 0x30, 0x63, 0x32, 0x6d, 0x34, 0x4e, 0x79, 0x08, 0x44, 0x44, 0x4b, 0x74,
0x4e, 0xc3, 0xe4, 0xe6, 0x24, 0x01, 0xf6, 0x7f, 0x43, 0x96, 0xe1, 0x78, 0x06, 0xc8, 0x14, 0x11,
0xa1, 0x14, 0x9d, 0x3f, 0xce, 0xf0, 0x61, 0xba, 0xf4, 0x7d, 0x41, 0xae, 0xc1, 0x09, 0x31, 0xbe,
0xfc, 0x0a, 0xb7, 0x6e, 0xd1, 0x38, 0x67, 0xf4, 0x63, 0x92, 0xd1, 0x89, 0x4b, 0xfd, 0x24, 0x38,
0xe8, 0x3b, 0x36, 0x43, 0x35, 0x78, 0x65, 0x59, 0x1a, 0x36, 0x3d, 0x43, 0x35, 0x9b, 0x95, 0x3a,
0xda, 0x74, 0xe4, 0x9d, 0xf0, 0xa4, 0xf9, 0x29, 0x22, 0x68, 0x62, 0xb7, 0x5f, 0x96, 0xe9, 0xf3,
0x39, 0xc9, 0xe2, 0xc9, 0x4b, 0x03, 0xc9, 0xea, 0x38, 0xec, 0x7b, 0xb2, 0x09, 0x67, 0x34, 0xea,
0x02, 0x5b, 0xbd, 0x9d, 0x38, 0x48, 0x68, 0xcd, 0x4b, 0xe8, 0xcd, 0xb8, 0xc5, 0x13, 0xee, 0x55,
0xf3, 0x0c, 0xc1, 0xa5, 0x20, 0xbd, 0x3c, 0x88, 0x12, 0x57, 0xf1, 0x01, 0x5c, 0x98, 0x73, 0x41,
0x43, 0x6f, 0xb3, 0x45, 0x6f, 0x2c, 0xad, 0xf0, 0x34, 0xbc, 0xe5, 0x5c, 0x5c, 0x50, 0x08, 0x34,
0x34, 0xda, 0xb5, 0x9f, 0x1c, 0xea, 0xda, 0x7f, 0xcb, 0x81, 0x29, 0x3d, 0xd9, 0x1f, 0x43, 0xbc,
0xab, 0x95, 0x8d, 0x77, 0x5d, 0x3a, 0xaa, 0x57, 0x27, 0x35, 0x1f, 0x72, 0x10, 0xfb, 0x5e, 0x15,
0x80, 0x3f, 0xec, 0x12, 0xf0, 0xf2, 0xce, 0x73, 0x30, 0x12, 0xd3, 0x4e, 0x94, 0xb7, 0x7c, 0x8c,
0x02, 0x39, 0xe6, 0x87, 0x77, 0x39, 0x0f, 0xca, 0xf9, 0x8e, 0xfe, 0x60, 0x73, 0xbe, 0xeb, 0x70,
0x2a, 0x08, 0x13, 0xea, 0x77, 0x63, 0xb9, 0xd1, 0x5d, 0x8e, 0x12, 0x6d, 0x1d, 0x2a, 0xb5, 0xd7,
0x4a, 0x46, 0xa7, 0x56, 0x06, 0x11, 0xe1, 0xe0, 0x6f, 0x59, 0x97, 0x2a, 0x84, 0xbc, 0x47, 0x62,
0xc2, 0x03, 0x12, 0x8e, 0x9a, 0xc2, 0x2c, 0x88, 0xd5, 0x86, 0xba, 0x28, 0x92, 0x5b, 0x10, 0xab,
0x17, 0xd7, 0xd1, 0xd0, 0x0c, 0xb6, 0x8a, 0xd5, 0x82, 0xac, 0x22, 0x1c, 0xda, 0x2a, 0xaa, 0xf5,
0x39, 0x31, 0xf4, 0x19, 0x00, 0xb5, 0x59, 0x4f, 0x0e, 0xdd, 0xac, 0xdf, 0x0e, 0xd3, 0x41, 0xb8,
0x45, 0xe3, 0x20, 0xa5, 0x75, 0xbe, 0x16, 0x66, 0xa7, 0x78, 0x47, 0xe8, 0xc8, 0xd5, 0x4a, 0x06,
0x8b, 0x39, 0xea, 0xac, 0x51, 0x99, 0x3e, 0x80, 0x51, 0x19, 0x62, 0xca, 0x8f, 0x15, 0x63, 0xca,
0x8f, 0x1f, 0xdd, 0x94, 0xcf, 0x3c, 0x52, 0x53, 0x4e, 0x0a, 0x31, 0xe5, 0x4f, 0xc3, 0x68, 0x27,
0x8e, 0x76, 0x7b, 0xb3, 0x27, 0xb2, 0xde, 0xf4, 0x1a, 0x03, 0xa2, 0xc0, 0xd9, 0x45, 0x57, 0x27,
0xf7, 0x29, 0xba, 0x7a, 0xa5, 0x04, 0xa7, 0x8c, 0xa5, 0x63, 0xf3, 0x2b, 0x68, 0xb0, 0xb5, 0xce,
0x6f, 0xf3, 0x89, 0x72, 0x0b, 0x2b, 0x68, 0x6a, 0xe2, 0xaf, 0x1a, 0x83, 0x16, 0x15, 0x8f, 0x3d,
0xd2, 0x98, 0x97, 0x8a, 0xe6, 0xcd, 0xe0, 0x92, 0x84, 0xa3, 0xa6, 0xe0, 0xaf, 0xc2, 0xd1, 0x38,
0x95, 0xb9, 0x97, 0x7c, 0x2d, 0xd2, 0x92, 0x41, 0xa1, 0x4d, 0xc7, 0xdc, 0x45, 0x5f, 0x2d, 0x41,
0x66, 0x0a, 0x27, 0x85, 0xbb, 0xa8, 0x57, 0x9d, 0xc6, 0x2a, 0x75, 0x78, 0x90, 0x79, 0xb4, 0x5f,
0x1d, 0x1e, 0x34, 0xd0, 0x14, 0xee, 0xff, 0x38, 0xf0, 0x9a, 0x81, 0x5d, 0xf1, 0x18, 0xb6, 0xb7,
0xdd, 0xec, 0xf6, 0xb6, 0x7e, 0xf4, 0xed, 0xad, 0xaf, 0x15, 0x43, 0xb6, 0xba, 0xbf, 0x73, 0x60,
0xda, 0xd0, 0x3f, 0x86, 0xa6, 0x06, 0x85, 0xbe, 0xef, 0x66, 0x54, 0x17, 0x25, 0x8c, 0x99, 0xb6,
0x7d, 0x8b, 0xb7, 0x4d, 0x9c, 0xbd, 0x16, 0x7d, 0xf5, 0x80, 0xca, 0x3e, 0x87, 0x98, 0x1e, 0x8c,
0xf1, 0x2b, 0xaf, 0x49, 0x31, 0x67, 0xc0, 0xac, 0x7c, 0x1e, 0x06, 0x35, 0x67, 0x40, 0xfe, 0x33,
0x41, 0x29, 0x90, 0x17, 0x32, 0x07, 0x09, 0xb3, 0x97, 0x75, 0x19, 0xae, 0x35, 0x85, 0xcc, 0x12,
0x8e, 0x9a, 0xc2, 0x6d, 0xc3, 0x6c, 0x96, 0xf9, 0x32, 0x6d, 0xf0, 0x50, 0xdb, 0x81, 0x9a, 0xb9,
0x00, 0x55, 0x8f, 0x7f, 0xb5, 0xda, 0xf5, 0xf2, 0xaf, 0xa8, 0x2c, 0x2a, 0x04, 0x1a, 0x1a, 0xf7,
0x0f, 0x1c, 0x38, 0x31, 0xa0, 0x31, 0x05, 0x86, 0xa9, 0x53, 0x63, 0x05, 0x86, 0xbc, 0x6c, 0x53,
0xa7, 0x0d, 0x4f, 0x05, 0x73, 0x2c, 0xab, 0xb6, 0x2c, 0xc0, 0xa8, 0xf0, 0xee, 0xbf, 0x3b, 0x70,
0x2c, 0xab, 0x6b, 0x42, 0xae, 0x00, 0x11, 0x8d, 0x59, 0x0e, 0x12, 0x3f, 0xda, 0xa1, 0x71, 0x8f,
0xb5, 0x5c, 0x68, 0x7d, 0x46, 0x72, 0x22, 0x8b, 0x7d, 0x14, 0x38, 0xe0, 0x2b, 0xf2, 0x49, 0x5e,
0xca, 0xa3, 0x7a, 0x5b, 0xcd, 0x94, 0x5b, 0x45, 0xce, 0x14, 0x33, 0x98, 0xf6, 0x09, 0x5a, 0x8b,
0x44, 0x5b, 0xbe, 0xfb, 0xed, 0x11, 0xd0, 0x79, 0x2c, 0x1e, 0x36, 0x28, 0x28, 0xe8, 0x92, 0x79,
0x6a, 0xa7, 0x7c, 0x88, 0xa7, 0x76, 0x46, 0x1e, 0x14, 0x23, 0x10, 0xef, 0xbe, 0x18, 0x5f, 0xd4,
0x32, 0xfa, 0x1b, 0x06, 0x85, 0x36, 0x1d, 0xd3, 0xa4, 0x15, 0xec, 0x50, 0xf1, 0xd1, 0x58, 0x56,
0x93, 0x55, 0x85, 0x40, 0x43, 0xc3, 0x34, 0xa9, 0x07, 0x8d, 0x86, 0x3c, 0x29, 0x6a, 0x4d, 0x58,
0xef, 0x20, 0xc7, 0x30, 0x8a, 0xad, 0x28, 0xda, 0x96, 0xfe, 0x9f, 0xa6, 0xb8, 0x1c, 0x45, 0xdb,
0xc8, 0x31, 0xcc, 0x63, 0x09, 0xa3, 0xb8, 0xed, 0xb5, 0x82, 0xf7, 0xd1, 0xba, 0x96, 0x22, 0xfd,
0x3e, 0xed, 0xb1, 0x5c, 0xef, 0x27, 0xc1, 0x41, 0xdf, 0xb1, 0x19, 0xd8, 0x89, 0x69, 0x3d, 0xf0,
0x53, 0x9b, 0x1b, 0x64, 0x67, 0xe0, 0x5a, 0x1f, 0x05, 0x0e, 0xf8, 0x8a, 0x2c, 0xc2, 0x31, 0x95,
0x87, 0x54, 0xb5, 0x22, 0xc2, 0x19, 0xd4, 0x7e, 0x38, 0x66, 0xd1, 0x98, 0xa7, 0x67, 0xd6, 0xa6,
0x2d, 0x2b, 0x76, 0xb8, 0x9b, 0x68, 0x59, 0x1b, 0x55, 0xc9, 0x83, 0x9a, 0xc2, 0xfd, 0xa3, 0x12,
0xdb, 0x1d, 0x87, 0xdc, 0xe8, 0x7c, 0x6c, 0x41, 0xbe, 0xec, 0x8c, 0x1c, 0x39, 0xc0, 0x8c, 0x7c,
0x0e, 0x26, 0xef, 0x24, 0x51, 0xa8, 0x03, 0x68, 0xa3, 0x43, 0x03, 0x68, 0x16, 0xd5, 0xe0, 0x00,
0xda, 0xd8, 0x21, 0x03, 0x68, 0x7f, 0x39, 0x0a, 0xa7, 0x75, 0xea, 0x98, 0xa6, 0x77, 0xa3, 0x78,
0x3b, 0x08, 0x9b, 0x3c, 0xdd, 0xfa, 0x45, 0x07, 0x26, 0xc5, 0xf4, 0x96, 0x77, 0xdf, 0x45, 0x7a,
0xb1, 0x51, 0xd0, 0xf5, 0xa4, 0x8c, 0xb0, 0xf9, 0x0d, 0x4b, 0x50, 0xee, 0x21, 0x02, 0x1b, 0x85,
0x19, 0x8d, 0xc8, 0x07, 0x00, 0xd4, 0x03, 0x4d, 0x8d, 0x82, 0x9e, 0xa9, 0x52, 0xfa, 0x21, 0x6d,
0x18, 0x57, 0x72, 0x43, 0x0b, 0x41, 0x4b, 0x20, 0x79, 0xc5, 0x81, 0xb1, 0x96, 0xe8, 0x1b, 0x91,
0x2b, 0x7a, 0xe9, 0x91, 0xf4, 0x8d, 0xdd, 0x2b, 0x7a, 0x5b, 0x96, 0xfd, 0x21, 0xe5, 0x13, 0x84,
0xf1, 0x20, 0x6c, 0xb2, 0x61, 0x95, 0x31, 0xc7, 0x37, 0x0c, 0x2a, 0x55, 0x58, 0x8d, 0xbc, 0x7a,
0xcd, 0x6b, 0x79, 0xa1, 0x4f, 0xe3, 0x15, 0x41, 0x6e, 0x3f, 0x93, 0xc3, 0x01, 0xa8, 0x18, 0xf5,
0xdd, 0xbf, 0x1b, 0x3d, 0xc8, 0xfd, 0xbb, 0x33, 0xef, 0x80, 0x99, 0xbe, 0xc1, 0x3c, 0xd4, 0xab,
0x04, 0x3f, 0x0b, 0x13, 0x0f, 0xf9, 0xa9, 0xfb, 0xe7, 0x63, 0x66, 0x8f, 0xb9, 0x1e, 0xd5, 0xc5,
0x2d, 0xb0, 0xd8, 0x8c, 0xa8, 0x74, 0x15, 0x0b, 0x9c, 0x22, 0xd6, 0x53, 0x3b, 0x1a, 0x88, 0xb6,
0x48, 0x36, 0x47, 0x3b, 0x5e, 0x4c, 0xc3, 0x47, 0x3d, 0x47, 0xd7, 0xb4, 0x10, 0xb4, 0x04, 0x92,
0xad, 0x4c, 0x32, 0xf3, 0xe2, 0xd1, 0x93, 0x99, 0xcc, 0x7b, 0x1d, 0x78, 0x5b, 0xe7, 0xd3, 0x0e,
0x4c, 0x87, 0x99, 0x99, 0x2b, 0x13, 0x5a, 0x1b, 0x8f, 0x62, 0x55, 0x88, 0xdb, 0xb7, 0x59, 0x18,
0xe6, 0xe4, 0x0f, 0xda, 0x81, 0x46, 0x0f, 0xb9, 0x03, 0x99, 0xeb, 0xa4, 0x63, 0xc3, 0xae, 0x93,
0x92, 0x50, 0x5f, 0x24, 0x1f, 0x2f, 0xfc, 0x22, 0x39, 0x0c, 0xb8, 0x44, 0x7e, 0x1b, 0xaa, 0x7e,
0x4c, 0xbd, 0xf4, 0x21, 0xef, 0x14, 0xf3, 0xc7, 0xcd, 0x96, 0x14, 0x03, 0x34, 0xbc, 0xdc, 0xbf,
0x29, 0xc3, 0x71, 0xd5, 0x23, 0x2a, 0xd1, 0xc3, 0xb6, 0x33, 0x21, 0xd7, 0xf8, 0xa2, 0x7a, 0x3b,
0xbb, 0xac, 0x10, 0x68, 0x68, 0x98, 0xfb, 0xd4, 0x4d, 0xe8, 0x8d, 0x0e, 0x0d, 0x57, 0x83, 0xcd,
0x84, 0xf7, 0xb8, 0x55, 0x2d, 0x76, 0xd3, 0xa0, 0xd0, 0xa6, 0x63, 0xbe, 0xb3, 0x70, 0x63, 0x93,
0x7c, 0xde, 0x54, 0xba, 0xc7, 0xa8, 0xf0, 0xe4, 0x0b, 0x03, 0x5f, 0x84, 0x28, 0xa6, 0x62, 0xa0,
0x2f, 0xbf, 0x75, 0xc8, 0xa7, 0x20, 0x5e, 0x75, 0xe0, 0xd8, 0x76, 0xa6, 0x54, 0x45, 0x99, 0xe4,
0x23, 0x16, 0x40, 0x66, 0xeb, 0x5f, 0xcc, 0x14, 0xce, 0xc2, 0x13, 0xcc, 0x4b, 0x77, 0xff, 0xcb,
0x01, 0xdb, 0x3c, 0x1d, 0xcc, 0x11, 0xb2, 0xde, 0xf8, 0x29, 0xed, 0xf3, 0xc6, 0x8f, 0xf2, 0x99,
0xca, 0x07, 0xf3, 0xd1, 0x47, 0x0e, 0xe1, 0xa3, 0x8f, 0x0e, 0x75, 0xb2, 0x5e, 0x0b, 0xe5, 0x6e,
0x50, 0x97, 0x6e, 0xb6, 0xc9, 0x5d, 0xad, 0x2c, 0x23, 0x83, 0xbb, 0x7f, 0x36, 0x6a, 0x8e, 0xd5,
0x32, 0xd1, 0xfd, 0x23, 0xd1, 0xec, 0x86, 0xae, 0x67, 0x15, 0x2d, 0xbf, 0xde, 0x57, 0xcf, 0xfa,
0xb6, 0xc3, 0xd7, 0x31, 0x88, 0x0e, 0x1a, 0x56, 0xce, 0x3a, 0xbe, 0x4f, 0x11, 0xc3, 0x1d, 0xa8,
0xb0, 0x93, 0x08, 0x8f, 0x8f, 0x55, 0x32, 0x4a, 0x55, 0x2e, 0x4b, 0xf8, 0xfd, 0xbd, 0xb9, 0xb7,
0x1e, 0x5e, 0x2d, 0xf5, 0x35, 0x6a, 0xfe, 0x24, 0x81, 0x2a, 0xfb, 0x9b, 0xd7, 0x5b, 0xc8, 0x33,
0xce, 0x4d, 0x6d, 0x8b, 0x14, 0xa2, 0x90, 0x62, 0x0e, 0x23, 0x87, 0x84, 0x50, 0xe5, 0xaf, 0xd1,
0x70, 0xa1, 0xe2, 0x28, 0xb4, 0xa6, 0xab, 0x1e, 0x14, 0xe2, 0xfe, 0xde, 0xdc, 0x0b, 0x87, 0x17,
0xaa, 0x3f, 0x47, 0x23, 0xc2, 0xfd, 0x6e, 0xd9, 0xcc, 0x5d, 0x59, 0xc6, 0xfc, 0x23, 0x31, 0x77,
0x9f, 0xcf, 0xcd, 0xdd, 0x73, 0x7d, 0x73, 0x77, 0xda, 0xbc, 0xd8, 0x92, 0x99, 0x8d, 0x8f, 0x7b,
0x83, 0xdd, 0xff, 0xd8, 0xcd, 0x3d, 0x8b, 0x97, 0xbb, 0x41, 0x4c, 0x93, 0xb5, 0xb8, 0x1b, 0x06,
0x61, 0x93, 0x4f, 0xc7, 0x8a, 0xed, 0x59, 0x64, 0xd0, 0x98, 0xa7, 0x77, 0xbf, 0xc4, 0xd3, 0x93,
0x56, 0xe9, 0x16, 0x1b, 0xe5, 0x16, 0x7f, 0xd0, 0x47, 0x14, 0x8f, 0xea, 0x51, 0x16, 0xaf, 0xf8,
0x08, 0x1c, 0xb9, 0x0b, 0xe3, 0x9b, 0xe2, 0x51, 0x81, 0x62, 0xee, 0x12, 0xc9, 0x17, 0x0a, 0xf8,
0xad, 0x4d, 0xf5, 0x5c, 0xc1, 0x7d, 0xf3, 0x27, 0x2a, 0x69, 0xee, 0x6f, 0x95, 0xe1, 0x58, 0xee,
0xb9, 0x19, 0x76, 0x3e, 0x57, 0x6f, 0x0b, 0xe5, 0x83, 0xe9, 0xfa, 0x0d, 0x5d, 0x4d, 0x41, 0xde,
0x0b, 0x50, 0xa7, 0x9d, 0x56, 0xd4, 0xe3, 0x8e, 0xcb, 0xc8, 0xa1, 0x1d, 0x17, 0xed, 0xeb, 0x2e,
0x6b, 0x2e, 0x68, 0x71, 0x94, 0x15, 0xb3, 0xa3, 0xe2, 0xc9, 0x84, 0x6c, 0xc5, 0xac, 0x75, 0xa5,
0x6e, 0xec, 0xf1, 0x5e, 0xa9, 0x0b, 0xe0, 0x98, 0x50, 0x51, 0x17, 0x48, 0x3d, 0x44, 0x1d, 0xd4,
0x09, 0x36, 0xa3, 0x96, 0xb3, 0x6c, 0x30, 0xcf, 0xd7, 0xfd, 0x54, 0x89, 0xb9, 0x6f, 0xa2, 0xb3,
0xaf, 0xa9, 0x58, 0xf6, 0xeb, 0x61, 0xcc, 0xeb, 0xa6, 0x5b, 0x51, 0xdf, 0x23, 0x0f, 0x8b, 0x1c,
0x8a, 0x12, 0x4b, 0x56, 0x61, 0xa4, 0xee, 0xa5, 0xea, 0x0d, 0xf8, 0xc3, 0x28, 0x67, 0x02, 0x57,
0x5e, 0x4a, 0x91, 0x73, 0x21, 0x4f, 0xc1, 0x48, 0xea, 0x35, 0x33, 0xaf, 0x4f, 0x6e, 0x78, 0xcd,
0x04, 0x39, 0xd4, 0xde, 0x5d, 0x46, 0xf6, 0xd9, 0x5d, 0x5e, 0xb0, 0xfe, 0x3b, 0x81, 0x95, 0x24,
0xe9, 0xff, 0x8f, 0x02, 0xa2, 0x86, 0x3f, 0x43, 0xeb, 0xfe, 0x14, 0x4c, 0xda, 0xff, 0x71, 0xe0,
0x40, 0x57, 0x80, 0xdc, 0x7f, 0x1d, 0x81, 0xa9, 0x4c, 0x11, 0x5d, 0x66, 0x96, 0x3b, 0xfb, 0xce,
0x72, 0x9e, 0xfe, 0xea, 0x86, 0x54, 0x96, 0x48, 0x5a, 0xe9, 0xaf, 0x6e, 0x48, 0x51, 0xe0, 0xd8,
0xa8, 0xd4, 0xe3, 0x1e, 0x76, 0x43, 0x19, 0x44, 0xd7, 0xa3, 0xb2, 0xcc, 0xa1, 0x28, 0xb1, 0xec,
0x00, 0x3b, 0x99, 0x70, 0xa3, 0x28, 0x6c, 0x84, 0x5c, 0x35, 0x57, 0x8a, 0x78, 0x18, 0x4b, 0x16,
0x8c, 0xf2, 0x03, 0xbd, 0x0d, 0xc1, 0x8c, 0x44, 0xf2, 0x51, 0xc7, 0x7e, 0x12, 0x6c, 0xac, 0x88,
0xe4, 0x4f, 0xbe, 0x46, 0x51, 0xac, 0xa0, 0x07, 0xbf, 0x0c, 0x96, 0xe8, 0x05, 0x3c, 0xfe, 0x68,
0x16, 0x30, 0x0c, 0x58, 0xbc, 0x6f, 0x84, 0x6a, 0xdb, 0x0b, 0x83, 0x06, 0x4d, 0x52, 0xf1, 0xdf,
0x42, 0xaa, 0xe2, 0xf4, 0x74, 0x4d, 0x01, 0xd1, 0xe0, 0xf9, 0xff, 0xe4, 0xe1, 0x0d, 0x13, 0x87,
0x98, 0xaa, 0xf5, 0x3f, 0x79, 0x0c, 0x18, 0x6d, 0x1a, 0xf7, 0x8f, 0x1d, 0x38, 0x35, 0xb0, 0x33,
0x7e, 0x78, 0xa3, 0x95, 0xee, 0x9f, 0x94, 0xe0, 0xc4, 0x80, 0x22, 0x53, 0xd2, 0x7b, 0x64, 0x2f,
0xc7, 0xc9, 0x2a, 0xd6, 0xa9, 0xa1, 0x73, 0xe3, 0x70, 0xdb, 0x90, 0xd9, 0x0a, 0xca, 0x8f, 0x75,
0x2b, 0x70, 0xbf, 0x54, 0x02, 0xeb, 0x8d, 0x43, 0xf2, 0x41, 0xbb, 0x9e, 0xda, 0x29, 0xaa, 0xf6,
0x57, 0x30, 0xd7, 0xf5, 0xd8, 0xa2, 0xd7, 0x06, 0x95, 0x67, 0xe7, 0xe7, 0x6b, 0x69, 0xff, 0xf9,
0x4a, 0x5a, 0xaa, 0x70, 0xbd, 0x5c, 0x7c, 0xe1, 0x7a, 0xb5, 0xaf, 0x68, 0xfd, 0x37, 0x1c, 0x31,
0xd3, 0x72, 0x4d, 0x32, 0x16, 0xd6, 0x79, 0x80, 0x85, 0x7d, 0x13, 0x54, 0x12, 0xda, 0x6a, 0x30,
0xcf, 0x4e, 0x5a, 0x62, 0x3d, 0x27, 0xd6, 0x25, 0x1c, 0x35, 0x05, 0xbf, 0xd2, 0xda, 0x6a, 0x45,
0x77, 0x2f, 0xb4, 0x3b, 0x69, 0x4f, 0xda, 0x64, 0x73, 0xa5, 0x55, 0x63, 0xd0, 0xa2, 0x72, 0xff,
0xdb, 0x11, 0xc3, 0x29, 0x7d, 0xf4, 0xe7, 0x73, 0x57, 0x0d, 0x0f, 0xee, 0xde, 0xfe, 0x32, 0x80,
0xaf, 0x2f, 0xff, 0x17, 0xf3, 0xf4, 0xa1, 0x79, 0x4c, 0xc0, 0x7e, 0x8f, 0x4f, 0xc1, 0xd0, 0x92,
0x97, 0x59, 0x3c, 0xe5, 0xfd, 0x16, 0x8f, 0xfb, 0x1f, 0x0e, 0x64, 0x36, 0x0b, 0xd2, 0x81, 0x51,
0xa6, 0x41, 0xaf, 0x98, 0xa7, 0x0a, 0x6c, 0xd6, 0x6c, 0x61, 0xc9, 0x69, 0xc1, 0xff, 0x44, 0x21,
0x88, 0xb4, 0xa4, 0x77, 0x5e, 0x2a, 0xe2, 0x39, 0x0d, 0x5b, 0x20, 0xf3, 0xef, 0xe5, 0xff, 0x5f,
0xd0, 0x9e, 0xbe, 0xfb, 0x3c, 0xcc, 0xf4, 0x29, 0xc5, 0x2f, 0x1f, 0x45, 0xea, 0x7d, 0x06, 0x6b,
0x06, 0xf2, 0xab, 0x90, 0x28, 0x70, 0xcc, 0xc1, 0x3f, 0x9e, 0x67, 0x4f, 0x3e, 0xef, 0xc0, 0x4c,
0x92, 0xe7, 0xf7, 0xa8, 0xfa, 0x4e, 0x47, 0xae, 0xfa, 0x50, 0xd8, 0xaf, 0x84, 0xfb, 0x57, 0xd2,
0x3c, 0x89, 0xff, 0x57, 0xa5, 0x37, 0x17, 0x67, 0xe8, 0xe6, 0xc2, 0x96, 0x98, 0xbf, 0x45, 0xeb,
0xdd, 0x56, 0x5f, 0x29, 0xcd, 0xba, 0x84, 0xa3, 0xa6, 0xc8, 0x3c, 0x81, 0x56, 0xde, 0xf7, 0x09,
0xb4, 0xe7, 0x60, 0xd2, 0x7e, 0x83, 0x84, 0x87, 0xd0, 0x64, 0xf2, 0xc1, 0x7e, 0xae, 0x04, 0x33,
0x54, 0xb9, 0x27, 0xb4, 0x46, 0xf7, 0x7d, 0x42, 0xeb, 0x19, 0xa8, 0xc8, 0xe7, 0xa0, 0x54, 0x7c,
0x57, 0xd4, 0xe9, 0x48, 0x18, 0x6a, 0x2c, 0x33, 0x10, 0x6d, 0x2f, 0xec, 0x7a, 0x2d, 0xd6, 0x43,
0xb2, 0x7c, 0x4f, 0xaf, 0xac, 0x6b, 0x1a, 0x83, 0x16, 0x95, 0xfb, 0x2f, 0x0e, 0xe4, 0xdf, 0x08,
0xca, 0x14, 0x01, 0x3a, 0xfb, 0x16, 0x01, 0x66, 0x0b, 0x9c, 0x4a, 0x07, 0x2a, 0x70, 0xb2, 0x6b,
0x8f, 0xca, 0x0f, 0xac, 0x3d, 0x7a, 0x9d, 0xb9, 0x40, 0x2e, 0x8a, 0x94, 0x26, 0x06, 0x5d, 0x1e,
0x27, 0x2e, 0x8c, 0xf9, 0x9e, 0xae, 0xb1, 0x9e, 0x14, 0x8e, 0xd2, 0xd2, 0x22, 0x27, 0x92, 0x98,
0xda, 0xfc, 0x57, 0xbf, 0x73, 0xf6, 0x89, 0xaf, 0x7d, 0xe7, 0xec, 0x13, 0xdf, 0xfc, 0xce, 0xd9,
0x27, 0x3e, 0x7c, 0xef, 0xac, 0xf3, 0xd5, 0x7b, 0x67, 0x9d, 0xaf, 0xdd, 0x3b, 0xeb, 0x7c, 0xf3,
0xde, 0x59, 0xe7, 0xdb, 0xf7, 0xce, 0x3a, 0x9f, 0xfe, 0xa7, 0xb3, 0x4f, 0xbc, 0xab, 0xa2, 0xe6,
0xea, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x3e, 0x13, 0x50, 0xfd, 0x74, 0x00, 0x00,
}
func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) {
@ -4506,6 +4506,11 @@ func (m *Cluster) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
i -= len(m.Project)
copy(dAtA[i:], m.Project)
i = encodeVarintGenerated(dAtA, i, uint64(len(m.Project)))
i--
dAtA[i] = 0x5a
i--
if m.ClusterResources {
dAtA[i] = 1
@ -8669,6 +8674,8 @@ func (m *Cluster) Size() (n int) {
n += 1 + sovGenerated(uint64(*m.Shard))
}
n += 2
l = len(m.Project)
n += 1 + l + sovGenerated(uint64(l))
return n
}
@ -10446,6 +10453,7 @@ func (this *Cluster) String() string {
`Info:` + strings.Replace(strings.Replace(this.Info.String(), "ClusterInfo", "ClusterInfo", 1), `&`, ``, 1) + `,`,
`Shard:` + valueToStringGenerated(this.Shard) + `,`,
`ClusterResources:` + fmt.Sprintf("%v", this.ClusterResources) + `,`,
`Project:` + fmt.Sprintf("%v", this.Project) + `,`,
`}`,
}, "")
return s
@ -16160,6 +16168,38 @@ func (m *Cluster) Unmarshal(dAtA []byte) error {
}
}
m.ClusterResources = bool(v != 0)
case 11:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Project", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowGenerated
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthGenerated
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthGenerated
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Project = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])

View file

@ -406,6 +406,9 @@ message Cluster {
// Indicates if cluster level resources should be managed. This setting is used only if cluster is connected in a namespaced mode.
optional bool clusterResources = 10;
// Reference between project and cluster that allow you automatically to be added as item inside Destinations project entity
optional string project = 11;
}
// ClusterCacheInfo contains information about the cluster cache

View file

@ -1440,6 +1440,13 @@ func schema_pkg_apis_application_v1alpha1_Cluster(ref common.ReferenceCallback)
Format: "",
},
},
"project": {
SchemaProps: spec.SchemaProps{
Description: "Reference between project and cluster that allow you automatically to be added as item inside Destinations project entity",
Type: []string{"string"},
Format: "",
},
},
},
Required: []string{"server", "name", "config"},
},

View file

@ -1273,6 +1273,8 @@ type Cluster struct {
Shard *int64 `json:"shard,omitempty" protobuf:"bytes,9,opt,name=shard"`
// Indicates if cluster level resources should be managed. This setting is used only if cluster is connected in a namespaced mode.
ClusterResources bool `json:"clusterResources,omitempty" protobuf:"bytes,10,opt,name=clusterResources"`
// Reference between project and cluster that allow you automatically to be added as item inside Destinations project entity
Project string `json:"project,omitempty" protobuf:"bytes,11,opt,name=project"`
}
// Equals returns true if two cluster objects are considered to be equal

View file

@ -38,6 +38,13 @@ func NewServer(db db.ArgoDB, enf *rbac.Enforcer, cache *servercache.Cache, kubec
}
}
func createRBACObject(project string, server string) string {
if project != "" {
return project + "/" + server
}
return server
}
// List returns list of clusters
func (s *Server) List(ctx context.Context, q *cluster.ClusterQuery) (*appv1.ClusterList, error) {
clusterList, err := s.db.ListClusters(ctx)
@ -47,7 +54,7 @@ func (s *Server) List(ctx context.Context, q *cluster.ClusterQuery) (*appv1.Clus
items := make([]appv1.Cluster, 0)
for _, clust := range clusterList.Items {
if s.enf.Enforce(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionGet, clust.Server) {
if s.enf.Enforce(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionGet, createRBACObject(clust.Project, clust.Server)) {
items = append(items, clust)
}
}
@ -64,7 +71,7 @@ func (s *Server) List(ctx context.Context, q *cluster.ClusterQuery) (*appv1.Clus
// Create creates a cluster
func (s *Server) Create(ctx context.Context, q *cluster.ClusterCreateRequest) (*appv1.Cluster, error) {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionCreate, q.Cluster.Server); err != nil {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionCreate, createRBACObject(q.Cluster.Project, q.Cluster.Server)); err != nil {
return nil, err
}
c := q.Cluster
@ -104,17 +111,26 @@ func (s *Server) Create(ctx context.Context, q *cluster.ClusterCreateRequest) (*
// Get returns a cluster from a query
func (s *Server) Get(ctx context.Context, q *cluster.ClusterQuery) (*appv1.Cluster, error) {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionGet, q.Server); err != nil {
return nil, err
}
c, err := s.getCluster(ctx, q)
c, err := s.getClusterWith403IfNotExist(ctx, q)
if err != nil {
return nil, err
}
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionGet, createRBACObject(c.Project, q.Server)); err != nil {
return nil, err
}
return s.toAPIResponse(c), nil
}
func (s *Server) getClusterWith403IfNotExist(ctx context.Context, q *cluster.ClusterQuery) (*appv1.Cluster, error) {
repo, err := s.getCluster(ctx, q)
if err != nil || repo == nil {
return nil, status.Error(codes.PermissionDenied, "permission denied")
}
return repo, nil
}
func (s *Server) getCluster(ctx context.Context, q *cluster.ClusterQuery) (*appv1.Cluster, error) {
if q.Server != "" {
@ -162,7 +178,20 @@ var clusterFieldsByPath = map[string]func(updated *appv1.Cluster, existing *appv
// Update updates a cluster
func (s *Server) Update(ctx context.Context, q *cluster.ClusterUpdateRequest) (*appv1.Cluster, error) {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, q.Cluster.Server); err != nil {
c, err := s.getClusterWith403IfNotExist(ctx, &cluster.ClusterQuery{
Server: q.Cluster.Server,
Name: q.Cluster.Name,
})
if err != nil {
return nil, err
}
// verify that user can do update inside project where cluster is located
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, createRBACObject(c.Project, q.Cluster.Server)); err != nil {
return nil, err
}
// verify that user can do update inside project where cluster will be located
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, createRBACObject(q.Cluster.Project, q.Cluster.Server)); err != nil {
return nil, err
}
@ -205,24 +234,28 @@ func (s *Server) Update(ctx context.Context, q *cluster.ClusterUpdateRequest) (*
// Delete deletes a cluster by name
func (s *Server) Delete(ctx context.Context, q *cluster.ClusterQuery) (*cluster.ClusterResponse, error) {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionDelete, q.Server); err != nil {
c, err := s.getClusterWith403IfNotExist(ctx, q)
if err != nil {
return nil, err
}
err := s.db.DeleteCluster(ctx, q.Server)
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionDelete, createRBACObject(c.Project, c.Server)); err != nil {
return nil, err
}
err = s.db.DeleteCluster(ctx, q.Server)
return &cluster.ClusterResponse{}, err
}
// RotateAuth rotates the bearer token used for a cluster
func (s *Server) RotateAuth(ctx context.Context, q *cluster.ClusterQuery) (*cluster.ClusterResponse, error) {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, q.Server); err != nil {
clust, err := s.getClusterWith403IfNotExist(ctx, q)
if err != nil {
return nil, err
}
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, createRBACObject(clust.Project, q.Server)); err != nil {
return nil, err
}
logCtx := log.WithField("cluster", q.Server)
logCtx.Info("Rotating auth")
clust, err := s.db.GetCluster(ctx, q.Server)
if err != nil {
return nil, err
}
restCfg := clust.RESTConfig()
if restCfg.BearerToken == "" {
return nil, status.Errorf(codes.InvalidArgument, "Cluster '%s' does not use bearer token authentication", q.Server)
@ -293,11 +326,11 @@ func (s *Server) toAPIResponse(clust *appv1.Cluster) *appv1.Cluster {
// InvalidateCache invalidates cluster cache
func (s *Server) InvalidateCache(ctx context.Context, q *cluster.ClusterQuery) (*appv1.Cluster, error) {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, q.Server); err != nil {
cls, err := s.getClusterWith403IfNotExist(ctx, q)
if err != nil {
return nil, err
}
cls, err := s.db.GetCluster(ctx, q.Server)
if err != nil {
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceClusters, rbacpolicy.ActionUpdate, createRBACObject(cls.Project, q.Server)); err != nil {
return nil, err
}
now := v1.Now()

View file

@ -5,6 +5,8 @@ import (
"testing"
"time"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/argoproj/gitops-engine/pkg/utils/kube/kubetest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
@ -44,6 +46,21 @@ func newNoopEnforcer() *rbac.Enforcer {
func TestUpdateCluster_NoFieldsPaths(t *testing.T) {
db := &dbmocks.ArgoDB{}
var updated *v1alpha1.Cluster
clusters := []v1alpha1.Cluster{
{
Name: "minikube",
Server: "https://127.0.0.1",
Namespaces: []string{"default", "kube-system"},
},
}
clusterList := v1alpha1.ClusterList{
ListMeta: v1.ListMeta{},
Items: clusters,
}
db.On("ListClusters", mock.Anything).Return(&clusterList, nil)
db.On("UpdateCluster", mock.Anything, mock.MatchedBy(func(c *v1alpha1.Cluster) bool {
updated = c
return true

View file

@ -243,7 +243,7 @@ func (s *Server) GetDetailedProject(ctx context.Context, q *project.ProjectQuery
if err := s.enf.EnforceErr(ctx.Value("claims"), rbacpolicy.ResourceProjects, rbacpolicy.ActionGet, q.Name); err != nil {
return nil, err
}
proj, repositories, err := argo.GetAppProjectWithScopedResources(q.Name, listersv1alpha1.NewAppProjectLister(s.projInformer.GetIndexer()), s.ns, s.settingsMgr, s.db, ctx)
proj, repositories, clusters, err := argo.GetAppProjectWithScopedResources(q.Name, listersv1alpha1.NewAppProjectLister(s.projInformer.GetIndexer()), s.ns, s.settingsMgr, s.db, ctx)
if err != nil {
return nil, err
}
@ -254,6 +254,7 @@ func (s *Server) GetDetailedProject(ctx context.Context, q *project.ProjectQuery
GlobalProjects: globalProjects,
Project: proj,
Repositories: repositories,
Clusters: clusters,
}, err
}

View file

@ -69,6 +69,7 @@ message DetailedProjectsResponse {
repeated github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.AppProject globalProjects = 1;
github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.AppProject project = 2;
repeated github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.Repository repositories = 3;
repeated github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.Cluster clusters = 4;
}
// ProjectService

View file

@ -708,6 +708,23 @@ export class ProjectDetails extends React.Component<RouteComponentProps<{name: s
items={[]}
/>
<EditablePanel
values={scopedProj}
title={<React.Fragment>SCOPED CLUSTERS{helpTip('Cluster and namespaces where applications are permitted to be deployed to')}</React.Fragment>}
view={
<React.Fragment>
{scopedProj.clusters && scopedProj.clusters.length
? scopedProj.clusters.map((cluster, i) => (
<div className='row white-box__details-row' key={i}>
<div className='columns small-12'>{cluster.server}</div>
</div>
))
: emptyMessage('destinations')}
</React.Fragment>
}
items={[]}
/>
<ResourceListsPanel proj={proj} saveProject={item => this.saveProject(item)} />
{globalProj.count > 0 && (
<ResourceListsPanel

View file

@ -698,6 +698,7 @@ export interface DetailedProjectsResponse {
project: Project;
globalProjects: Project[];
repositories: Repository[];
clusters: Cluster[];
}
export type ProjectList = ItemsList<Project>;

View file

@ -393,20 +393,34 @@ func retrieveScopedRepositories(name string, db db.ArgoDB, ctx context.Context)
return repositories
}
func retrieveScopedClusters(name string, db db.ArgoDB, ctx context.Context) []*argoappv1.Cluster {
var clusters []*argoappv1.Cluster
allClusters, err := db.ListClusters(ctx)
if err != nil {
return clusters
}
for i, cluster := range allClusters.Items {
if cluster.Project == name {
clusters = append(clusters, &allClusters.Items[i])
}
}
return clusters
}
//GetAppProject returns a project from an application
func GetAppProjectWithScopedResources(name string, projLister applicationsv1.AppProjectLister, ns string, settingsManager *settings.SettingsManager, db db.ArgoDB, ctx context.Context) (*argoappv1.AppProject, argoappv1.Repositories, error) {
func GetAppProjectWithScopedResources(name string, projLister applicationsv1.AppProjectLister, ns string, settingsManager *settings.SettingsManager, db db.ArgoDB, ctx context.Context) (*argoappv1.AppProject, argoappv1.Repositories, []*argoappv1.Cluster, error) {
projOrig, err := projLister.AppProjects(ns).Get(name)
if err != nil {
return nil, nil, err
return nil, nil, nil, err
}
project, err := GetAppVirtualProject(projOrig, projLister, settingsManager)
if err != nil {
return nil, nil, err
return nil, nil, nil, err
}
return project, retrieveScopedRepositories(name, db, ctx), nil
return project, retrieveScopedRepositories(name, db, ctx), retrieveScopedClusters(name, db, ctx), nil
}
@ -421,6 +435,16 @@ func GetAppProjectByName(name string, projLister applicationsv1.AppProjectLister
for _, repo := range repos {
project.Spec.SourceRepos = append(project.Spec.SourceRepos, repo.Repo)
}
clusters := retrieveScopedClusters(name, db, ctx)
for _, cluster := range clusters {
if len(cluster.Namespaces) == 0 {
project.Spec.Destinations = append(project.Spec.Destinations, argoappv1.ApplicationDestination{Server: cluster.Server, Namespace: "*"})
} else {
for _, ns := range cluster.Namespaces {
project.Spec.Destinations = append(project.Spec.Destinations, argoappv1.ApplicationDestination{Server: cluster.Server, Namespace: ns})
}
}
}
return GetAppVirtualProject(project, projLister, settingsManager)
}

View file

@ -264,6 +264,9 @@ func clusterToSecret(c *appv1.Cluster, secret *apiv1.Secret) error {
if c.ClusterResources {
data["clusterResources"] = []byte("true")
}
if c.Project != "" {
data["project"] = []byte(c.Project)
}
secret.Data = data
if secret.Annotations == nil {
@ -319,6 +322,7 @@ func secretToCluster(s *apiv1.Secret) (*appv1.Cluster, error) {
Config: config,
RefreshRequestedAt: refreshRequestedAt,
Shard: shard,
Project: string(s.Data["project"]),
}
return &cluster, nil
}