diff --git a/command.go b/command.go index 9332e8d..8531acb 100644 --- a/command.go +++ b/command.go @@ -77,6 +77,9 @@ func parseArgs(args []string) (Command, error) { case "add": return parseAddArgs(commandArgs[1:]) + case "console": + return parseConsoleArgs(commandArgs[1:]) + case "cp", "copy": return parseCopyArgs(commandArgs[1:]) @@ -185,6 +188,32 @@ func parseAddArgs(args []string) (Command, error) { return e, nil } +func parseConsoleArgs(args []string) (Command, error) { + flag := pflag.NewFlagSet("console", pflag.ContinueOnError) + flag.String("assume", "", "Role to assume") + flag.Usage = func() {} + err := flag.Parse(args) + if err != nil { + return nil, err + } + + vaultName := "" + assume, _ := flag.GetString("assume") + + if flag.NArg() > 1 { + return nil, ErrTooManyArguments + } + + if flag.NArg() == 1 { + vaultName = flag.Arg(0) + } + + c := &Console{} + c.VaultName = vaultName + c.Role = assume + return c, nil +} + func parseCopyArgs(args []string) (Command, error) { flag := pflag.NewFlagSet("copy", pflag.ContinueOnError) flag.Usage = func() {} diff --git a/command_test.go b/command_test.go index 8f4d030..2ec4b83 100644 --- a/command_test.go +++ b/command_test.go @@ -249,6 +249,10 @@ var ( Args: []string{"help", "upgrade"}, Command: &Help{Subcommand: "upgrade"}, }, + { + Args: []string{"help", "console"}, + Command: &Help{Subcommand: "console"}, + }, { Args: []string{"-h"}, Command: &Help{}, @@ -374,6 +378,30 @@ var ( Args: []string{"-V"}, Command: &Version{}, }, + // Console + { + Args: []string{"console", "one"}, + Command: &Console{ + VaultName: "one", + }, + }, + { + Args: []string{"console", "--assume", "arn:something:or:other"}, + Command: &Console{ + Role: "arn:something:or:other", + }, + }, + { + Args: []string{"console", "--assume", "arn:something:or:other", "one"}, + Command: &Console{ + VaultName: "one", + Role: "arn:something:or:other", + }, + }, + { + Args: []string{"console", "--help"}, + Command: &Help{Subcommand: "console"}, + }, } badParseCases = []parseCase{ @@ -473,6 +501,11 @@ var ( Args: []string{"upgrade", "one"}, }, + // Console + { + Args: []string{"Console", "one", "two"}, + }, + // Misc { Args: []string{}, diff --git a/console.go b/console.go new file mode 100644 index 0000000..38d30bb --- /dev/null +++ b/console.go @@ -0,0 +1,133 @@ +package main + +import ( + "errors" + "fmt" + "net/url" + "time" + + "github.com/aws/aws-sdk-go/aws/credentials" + "github.com/miquella/vaulted/lib" + "github.com/pkg/browser" +) + +var ( + ErrInvalidTemporaryCredentials = errors.New("Temporary session credentials found. Console cannot be opened with temporary credentials.\nIf the AWS Key is set in a vault, the permanent credentials can be used by specifying the vault name.") + ErrInvalidDuration = errors.New("Minimum console duration must be at least 15 minutes.") + ErrNoCredentialsFound = errors.New("No credentials found. Console cannot be opened.") +) + +const ( + CONSOLE_URL = "https://console.aws.amazon.com/console/home" + SIGNIN_URL = "https://signin.aws.amazon.com/federation" + + MinConsoleDuration = 15 * time.Minute + MaxConsoleDuration = 12 * time.Hour +) + +type Console struct { + VaultName string + Role string +} + +func (c *Console) Run(store vaulted.Store) error { + signinToken, err := c.getSigninToken(store) + if err != nil { + return err + } + + // console signin + signinUrl, _ := url.Parse(SIGNIN_URL) + loginQuery := make(url.Values) + loginQuery.Set("Action", "login") + loginQuery.Set("SigninToken", signinToken) + loginQuery.Set("Destination", CONSOLE_URL) + + signinUrl.RawQuery = loginQuery.Encode() + err = browser.OpenURL(signinUrl.String()) + if err != nil { + return err + } + + return nil +} + +func (c *Console) getSigninToken(store vaulted.Store) (string, error) { + // Setup default values (may be overwritten by values from vault) + duration := 1 * time.Hour + var awsKey vaulted.AWSKey + + // Override defaults with values from specified vault + if c.VaultName != "" { + v, _, err := store.OpenVault(c.VaultName) + if err != nil { + return "", err + } + + duration = v.Duration + + if v.AWSKey.Valid() { + awsKey = *v.AWSKey + if c.Role != "" { + awsKey.Role = c.Role + } + } + } + + return c.getSigninTokenFromCreds(store, awsKey, duration) +} + +func (c *Console) getSigninTokenFromCreds(store vaulted.Store, awsKey vaulted.AWSKey, duration time.Duration) (string, error) { + // Get creds from environment if no creds loaded from vault + creds, err := awsKey.AWSCredentials.WithLocalDefault() + if err != nil && err != credentials.ErrNoValidProvidersFoundInChain { + return "", err + } else if err == credentials.ErrNoValidProvidersFoundInChain || !creds.Valid() { + return "", ErrNoCredentialsFound + } + + if creds.ValidSession() { + return "", ErrInvalidTemporaryCredentials + } + + duration, err = capDuration(duration) + if err != nil { + return "", err + } + + // assume provided role or get a federation token + if awsKey.Role != "" { + if awsKey.MFA != "" { + tokenCode, tokenErr := store.Steward().GetMFAToken(c.VaultName) + if tokenErr != nil { + return "", tokenErr + } + creds, err = creds.AssumeRoleWithMFA(awsKey.MFA, tokenCode, awsKey.Role, 15*time.Minute) + } else { + creds, err = creds.AssumeRole(awsKey.Role, 15*time.Minute) + } + if err != nil { + return "", err + } + + return creds.GetSigninToken(&duration) + + } else { + creds, err = creds.GetFederationToken(duration) + if err != nil { + return "", err + } + return creds.GetSigninToken(nil) + } +} + +func capDuration(duration time.Duration) (time.Duration, error) { + if duration < MinConsoleDuration { + return time.Duration(0), ErrInvalidDuration + } + if duration > MaxConsoleDuration { + duration = MaxConsoleDuration + fmt.Println("Your vault duration is greater than the max console duration.\nCurrent console session duration set to 12 hours.") + } + return duration, nil +} diff --git a/console_test.go b/console_test.go new file mode 100644 index 0000000..13a2139 --- /dev/null +++ b/console_test.go @@ -0,0 +1,43 @@ +package main + +import ( + "testing" + + "github.com/miquella/vaulted/lib" +) + +func TestConsole(t *testing.T) { + var c Console = Console{ + VaultName: "one", + } + var err error + store := NewTestStore() + store.Vaults["one"] = &vaulted.Vault{ + AWSKey: &vaulted.AWSKey{}, + } + + err = c.Run(store) + if err != ErrNoCredentialsFound { + t.Error("No credentials provided, should have cause an ErrNoCredentialsFound") + } + + store.Vaults["one"].AWSKey.AWSCredentials = vaulted.AWSCredentials{ + ID: "id", + Secret: "secret", + } + err = c.Run(store) + if err != ErrInvalidDuration { + t.Error("Should have caused an invalid duration error") + } + + store.Vaults["one"].AWSKey.AWSCredentials = vaulted.AWSCredentials{ + ID: "id", + Secret: "secret", + Token: "token", + } + err = c.Run(store) + if err != ErrInvalidTemporaryCredentials { + t.Log(err) + t.Error("Temporary session credentials provided, should have cause an invalid temp credentials error") + } +} diff --git a/doc/README.md b/doc/README.md index 24a463f..5c8a92b 100644 --- a/doc/README.md +++ b/doc/README.md @@ -16,7 +16,7 @@ gem install md2man ``` ```sh -go get -u github.com/jteeuwen/go-bindata +go get -u github.com/jteeuwen/go-bindata/... ``` Generating Man Pages diff --git a/doc/man/vaulted-console.1 b/doc/man/vaulted-console.1 new file mode 100644 index 0000000..0a7f0e1 --- /dev/null +++ b/doc/man/vaulted-console.1 @@ -0,0 +1,30 @@ +.TH vaulted\-console 1 +.SH NAME +.PP +vaulted console \- Opens the AWS console in the default web browser +.SH SYNOPSIS +.PP +\fB\fCvaulted console\fR +\fB\fCvaulted console\fR \fIname\fP [\fIOPTIONS\fP] +.br +\fB\fCvaulted console \-\-assume\fR \fIarn\fP [\fIOPTIONS\fP] +.SH DESCRIPTION +.PP +Opens the AWS console in the default web browser. Uses either the credentials in the current environment or the credentials in the specified vault. Console sessions either use the provided vault's duration or defaults to 1 hour. +.PP +Durations must be at least 15 min and less than 12 hours. +.SH OPTIONS +.TP +\fB\fC\-\-assume\fR \fIarn\fP +Specifies the full ARN of the role to assume. See \fBASSUMING A ROLE\fP below +for details on how Vaulted assumes roles. +.IP +Role assumption may be performed without specifying a vault to spawn from. +When invoked this way, credentials are sourced from default locations (e.g. +environment, configuration files, instance profile, etc.). +.SH ASSUMING A ROLE +.PP +A role to assume can be specified either in a vault's configuration (via +\fB\fCvaulted edit\fR) or specified via the \fB\fC\-\-assume\fR option. +.PP +Vaulted first opens the specified vault to retrieve the appropriate credentials. If a role is specified in the vault's configuration it will use that unless a role is explicitly passed in through the \fB\fC\-\-assume\fR option. diff --git a/doc/vaulted-console.1.md b/doc/vaulted-console.1.md new file mode 100644 index 0000000..2ca2062 --- /dev/null +++ b/doc/vaulted-console.1.md @@ -0,0 +1,41 @@ +vaulted-console 1 +============= + +NAME +---- + +vaulted console - Opens the AWS console in the default web browser + +SYNOPSIS +-------- + +`vaulted console` +`vaulted console` *name* [*OPTIONS*] +`vaulted console --assume` *arn* [*OPTIONS*] + +DESCRIPTION +----------- + +Opens the AWS console in the default web browser. Uses either the credentials in the current environment or the credentials in the specified vault. Console sessions either use the provided vault's duration or defaults to 1 hour. + +Durations must be at least 15 min and less than 12 hours. + +OPTIONS +------- + +`--assume` *arn* + Specifies the full ARN of the role to assume. See **ASSUMING A ROLE** below + for details on how Vaulted assumes roles. + + Role assumption may be performed without specifying a vault to spawn from. + When invoked this way, credentials are sourced from default locations (e.g. + environment, configuration files, instance profile, etc.). + + +ASSUMING A ROLE +--------------- + +A role to assume can be specified either in a vault's configuration (via +`vaulted edit`) or specified via the `--assume` option. + +Vaulted first opens the specified vault to retrieve the appropriate credentials. If a role is specified in the vault's configuration it will use that unless a role is explicitly passed in through the `--assume` option. \ No newline at end of file diff --git a/help.go b/help.go index 8184146..2002823 100644 --- a/help.go +++ b/help.go @@ -20,6 +20,7 @@ var ( HelpAliases = map[string]string{ "add": "add", + "console": "console", "cp": "cp", "copy": "cp", "dump": "dump", diff --git a/lib/aws_credentials.go b/lib/aws_credentials.go index 81171ec..33ea73a 100644 --- a/lib/aws_credentials.go +++ b/lib/aws_credentials.go @@ -1,16 +1,35 @@ package vaulted import ( + "encoding/json" "fmt" + "net/http" + "net/url" "path" + "strconv" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/credentials" + "github.com/aws/aws-sdk-go/aws/defaults" "github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/service/sts" ) +const ( + SIGNIN_URL = "https://signin.aws.amazon.com/federation" + ALLOW_ALL_POLICY = `{ + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Action": "*", + "Resource": "*" + } + ] + }` +) + type AWSCredentials struct { ID string `json:"id"` Secret string `json:"secret"` @@ -33,6 +52,33 @@ func (c *AWSCredentials) ValidSession() bool { return c.Valid() && c.Token != "" } +func (c *AWSCredentials) GetFederationToken(duration time.Duration) (*AWSCredentials, error) { + stsClient, err := c.stsClient() + if err != nil { + return nil, err + } + + callerIdentity, err := stsClient.GetCallerIdentity(&sts.GetCallerIdentityInput{}) + if err != nil { + return nil, err + } + arn, err := ParseARN(*callerIdentity.Arn) + if err != nil { + return nil, err + } + + getFederationToken, err := stsClient.GetFederationToken(&sts.GetFederationTokenInput{ + DurationSeconds: aws.Int64(int64(duration.Seconds())), + Name: aws.String(path.Base(arn.Resource)), + Policy: aws.String(ALLOW_ALL_POLICY), + }) + if err != nil { + return nil, err + } + + return AWSCredentialsFromSTSCredentials(getFederationToken.Credentials), nil +} + func (c *AWSCredentials) GetSessionToken(duration time.Duration) (*AWSCredentials, error) { stsClient, err := c.stsClient() if err != nil { @@ -85,6 +131,119 @@ func (c *AWSCredentials) AssumeRole(arn string, duration time.Duration) (*AWSCre return AWSCredentialsFromSTSCredentials(assumeRole.Credentials), nil } +func (c *AWSCredentials) AssumeRoleWithMFA(serialNumber, token, arn string, duration time.Duration) (*AWSCredentials, error) { + stsClient, err := c.stsClient() + if err != nil { + return nil, err + } + + assumeRole, err := stsClient.AssumeRole(&sts.AssumeRoleInput{ + RoleArn: aws.String(arn), + RoleSessionName: aws.String(roleSessionName(stsClient)), + DurationSeconds: aws.Int64(int64(duration.Seconds())), + SerialNumber: aws.String(serialNumber), + TokenCode: aws.String(token), + }) + if err != nil { + return nil, err + } + + return AWSCredentialsFromSTSCredentials(assumeRole.Credentials), nil +} + +func (c *AWSCredentials) WithLocalDefault() (*AWSCredentials, error) { + if !c.Valid() { + awsCreds := credentials.NewCredentials(&credentials.ChainProvider{ + Providers: []credentials.Provider{ + &credentials.EnvProvider{}, + &credentials.SharedCredentialsProvider{}, + }, + }) + + creds, err := awsCreds.Get() + if err != nil { + return nil, err + } + + return &AWSCredentials{ + ID: creds.AccessKeyID, + Secret: creds.SecretAccessKey, + Token: creds.SessionToken, + }, nil + } + + return c, nil +} + +func (c *AWSCredentials) WithDefault() (*AWSCredentials, error) { + if !c.Valid() { + creds, err := defaults.Get().Config.Credentials.Get() + if err != nil { + return nil, err + } + + return &AWSCredentials{ + ID: creds.AccessKeyID, + Secret: creds.SecretAccessKey, + Token: creds.SessionToken, + }, nil + } + + return c, nil +} + +func (c *AWSCredentials) GetSigninToken(duration *time.Duration) (string, error) { + // Load default credentials, if necessary + var sess struct { + Id string `json:"sessionId"` + Key string `json:"sessionKey"` + Token string `json:"sessionToken"` + } + + c, err := c.WithDefault() + if err != nil { + return "", err + } + sess.Id = c.ID + sess.Key = c.Secret + sess.Token = c.Token + + // Get signin token + sessionJson, err := json.Marshal(sess) + if err != nil { + return "", err + } + + getTokenQuery := make(url.Values) + getTokenQuery.Set("Action", "getSigninToken") + if duration != nil { + getTokenQuery.Set("SessionDuration", strconv.Itoa(int(duration.Seconds()))) + } + getTokenQuery.Set("Session", string(sessionJson)) + + signinUrl, _ := url.Parse(SIGNIN_URL) + signinUrl.RawQuery = getTokenQuery.Encode() + resp, err := http.Get(signinUrl.String()) + if err != nil { + return "", err + } + defer resp.Body.Close() + + if resp.StatusCode != http.StatusOK { + return "", fmt.Errorf("Failed to retrieve federated signin token (status: %d)", resp.StatusCode) + } + + var signinResponse struct { + SigninToken string + } + err = json.NewDecoder(resp.Body).Decode(&signinResponse) + if err != nil { + return "", err + } + + return signinResponse.SigninToken, nil +} + func (c *AWSCredentials) stsClient() (*sts.STS, error) { // if c is nil, the default credential provider chain is used // (yes, I know this seems a little weird) diff --git a/main_test.go b/main_test.go index 4fb530d..ba78542 100644 --- a/main_test.go +++ b/main_test.go @@ -190,6 +190,7 @@ func cloneVault(vault *vaulted.Vault) *vaulted.Vault { AWSCredentials: vaulted.AWSCredentials{ ID: vault.AWSKey.ID, Secret: vault.AWSKey.Secret, + Token: vault.AWSKey.Token, }, MFA: vault.AWSKey.MFA, Role: vault.AWSKey.Role, @@ -204,5 +205,7 @@ func cloneVault(vault *vaulted.Vault) *vaulted.Vault { newVault.SSHKeys[key] = value } + newVault.Duration = vault.Duration + return newVault } diff --git a/man.go b/man.go index 2480152..e13efd4 100644 --- a/man.go +++ b/man.go @@ -1,6 +1,8 @@ // Code generated by go-bindata. // sources: +// doc/man/.DS_Store // doc/man/vaulted-add.1 +// doc/man/vaulted-console.1 // doc/man/vaulted-cp.1 // doc/man/vaulted-dump.1 // doc/man/vaulted-edit.1 @@ -78,7 +80,27 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _vaultedAdd1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x8e\x31\x4e\x03\x31\x10\x45\xfb\x3d\xc5\x3f\x00\xb1\xc4\x11\x20\x44\x8a\x0b\x36\x56\x1c\x0a\x24\x37\xa3\xf5\x18\x2c\x25\xe3\xb0\x9e\x38\xe2\xf6\x68\x4d\x40\x54\xd4\xff\xbd\x37\x63\x0e\x5b\x34\xba\x1c\x95\x63\x58\x51\x8c\xb8\x1f\x8c\xdf\x62\x7c\x78\xde\x0c\xc6\xb9\xe1\xb6\x61\x99\xc2\x0a\x59\x94\x67\x9a\x34\x37\x3e\x7e\x62\x9a\x99\x94\x2b\xf4\x9d\x31\x15\x51\x16\x45\x49\x20\x08\x5f\xbf\xab\x3d\xe6\x5f\xc7\x9d\xf3\xd6\xf7\x60\x48\x8f\x21\xad\xff\x64\x43\xda\x23\x24\x2b\x74\xe2\x90\x5c\x17\x9e\x36\x7e\xbd\xb7\xee\x60\x77\x63\x77\xfc\x99\xae\x52\x41\xf2\x7b\xbf\x31\x4e\x25\x32\x52\x99\xc1\x31\x6b\x96\xb7\x7f\xbe\x30\xbd\xf2\x72\x2e\x82\x8f\x4b\xd6\x85\xbe\xeb\xf8\x42\xfc\x28\xb9\xa2\x52\xe3\x08\x2d\x7d\xbb\x99\x5f\x01\x00\x00\xff\xff\x34\xb1\x7b\x0e\x21\x01\x00\x00") +var _Ds_store = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xd8\x31\x0a\x02\x31\x10\x85\xe1\x37\x31\x45\xc0\x26\xa5\x65\x1a\x0f\xe0\x0d\xc2\xb2\x9e\xc0\x0b\x58\x78\x05\xfb\x1c\x5d\x96\x79\x60\x60\xd5\x4e\x8c\xcb\xfb\x40\xfe\x05\x37\x2a\x16\x31\x23\x00\x9b\xee\xb7\x13\x90\x01\x24\x78\x71\xc4\x4b\x89\x8f\x95\xd0\x5d\x1b\x5f\x43\x44\x44\x44\xc6\x66\x9e\xb4\xff\xf5\x07\x11\x91\xe1\x2c\xfb\x43\x61\x2b\xdb\xbc\xc6\xe7\x03\x1b\xbb\x35\x99\x2d\x6c\x65\x9b\xd7\x78\x5f\x60\x23\x9b\xd8\xcc\x16\xb6\xb2\xcd\xcb\x4d\xcb\x38\x7c\x18\xdf\xd9\x38\xa1\x18\xa7\x10\x2b\x6c\xfd\xce\x77\x23\xf2\xef\x76\x9e\xbc\xfc\xfe\x9f\xdf\xcf\xff\x22\xb2\x61\x16\xe7\xcb\x3c\x3d\x07\x82\xf5\x0d\x00\xae\xdd\xf5\xa7\x43\x40\xf0\x3f\x0b\x0f\xdd\x5a\x1d\x04\x44\x06\xf3\x08\x00\x00\xff\xff\x6a\x00\x88\x6d\x04\x18\x00\x00") + +func Ds_storeBytes() ([]byte, error) { + return bindataRead( + _Ds_store, + ".DS_Store", + ) +} + +func Ds_store() (*asset, error) { + bytes, err := Ds_storeBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: ".DS_Store", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _vaultedAdd1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\x31\x4e\x03\x31\x10\x45\xfb\x3d\xc5\x3f\x00\xb1\xc4\x11\x20\x44\x8a\x0b\x36\x56\x1c\x0a\x24\x37\xa3\xf5\x18\x2c\x25\xe3\xb0\x9e\x38\xe2\xf6\x68\x4d\x40\x54\xd4\xff\xbd\x37\x63\x0e\x5b\x34\xba\x1c\x95\x63\x58\x51\x8c\xb8\x1f\x8c\xdf\x62\x7c\x78\xde\x0c\xc6\xb9\xe1\xb6\x61\x99\xc2\x0a\x59\x94\x67\x9a\x34\x37\x3e\x7e\x62\x9a\x99\x94\x2b\xf4\x9d\x31\x15\x51\x16\x45\x49\x20\x08\x5f\xbf\xab\x3d\xe6\x5f\xc7\x9d\xf3\xd6\xf7\x60\x48\x8f\x21\xad\xff\x64\x43\xda\x23\x24\x2b\x74\xe2\x90\x5c\x17\x9e\x36\x7e\xbd\xb7\xee\x60\x77\x63\x77\xfc\x99\xae\x52\x41\xf2\x7b\xbf\x31\x4e\x25\x32\x52\x99\xc1\x31\x6b\x96\xb7\x7f\xbe\x30\xbd\xf2\x72\x2e\x82\x8f\x4b\xd6\x85\xbe\xeb\xf8\x42\xfc\x28\xb9\xa2\x52\xe3\x08\x2d\x7d\xbb\x99\x5f\x01\x00\x00\xff\xff\x34\xb1\x7b\x0e\x21\x01\x00\x00") func vaultedAdd1Bytes() ([]byte, error) { return bindataRead( @@ -98,7 +120,27 @@ func vaultedAdd1() (*asset, error) { return a, nil } -var _vaultedCp1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xa4\x90\xc1\x6a\xeb\x30\x10\x45\xf7\xfe\x8a\x59\xbd\x55\x62\x78\x9f\x90\x26\x86\x18\x5a\x47\x44\x69\x43\x41\x50\xc6\xf6\x08\x0b\x1c\xc9\x95\x14\x9b\xfc\x7d\x91\xa2\xc4\xb4\xd0\x2e\xda\x9d\xb1\x2e\xf7\x9c\xb9\xf9\x61\x0b\x23\x9e\x7b\x4f\xad\x58\x36\x03\xfc\xcf\x72\xbe\x85\x6a\xf5\x54\x64\x39\x63\x59\x7a\x82\x66\x00\xb1\x84\xc6\x0c\x8a\x1c\xf8\x8e\xa0\x31\xda\x93\xf6\x60\x24\xe0\xb5\x00\x50\xb7\xe0\x70\x24\x07\xca\x03\x3a\x40\xd0\x34\xa5\xb7\x49\xf9\x2e\xfd\x18\xd0\xb9\xc9\xd8\x36\x82\xf8\x6b\xb5\x63\xbc\xe4\x11\x26\xe4\x83\x90\xeb\x19\x29\xe4\x1e\x84\x2c\x4d\xdf\x0a\xc9\xc2\x97\xa6\x49\x48\x96\xe5\xb5\xfd\x9a\x35\xc3\xe5\xdb\x34\xdf\xc2\xa6\xe0\xeb\x7d\xc9\x0e\xe5\xae\x8a\xa4\x75\xb2\x57\x3a\x1e\x73\x0f\x27\x5b\xe5\xa0\xb1\x84\xa1\xd9\x58\xb0\x34\xf4\xd8\x50\x0b\xf5\xe5\x7e\xb6\xb4\xe6\x34\xd3\xc4\xbf\x3c\xd6\x96\x32\xd5\x05\xb7\x97\xd5\xf3\xe3\xa1\xd8\xbc\xb1\x15\xe7\xc7\xdd\x7e\x13\xfc\x48\x8f\xca\x1a\x7d\x0a\x15\x23\x5a\x85\x75\x4f\x81\xe6\xc8\x2f\xc2\x6a\x93\xea\x7b\xa8\x09\xce\x8e\xda\x30\xa1\xef\x28\xbb\xed\x05\xd2\xd8\x19\xb9\x00\xe3\x3b\xb2\x93\x72\x14\x99\xf7\xd4\xad\xc2\xd2\xfb\x99\x5c\x38\x61\x54\x18\x23\xde\x5f\x7e\xd0\xac\x8a\xe3\x5f\x54\xb3\x4f\x12\x49\xf5\x3a\xea\x6f\x55\x3f\x02\x00\x00\xff\xff\xce\x4b\xec\x94\x9b\x02\x00\x00") +var _vaultedConsole1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\x77\x6b\x21\x11\x64\xb0\x07\x48\x7f\x58\x0d\x6b\x12\xe2\x76\x65\xcc\xbb\x50\xec\xa3\x58\xcc\x96\x8c\x8e\x1c\x2f\x6f\x3f\x24\xdb\x69\x1b\x52\xc6\xee\x6c\xe9\x9c\x4f\xe7\xfb\x39\xe2\xe9\x01\x07\xd9\xd5\x9e\xca\x7c\x5e\x58\xc3\xb6\x26\x2c\x12\x91\x3d\x60\xb5\x7c\xbc\x4f\xc4\x66\x93\x8c\xf7\x98\xae\xf3\x39\xd6\x2d\x19\x86\xaf\x08\xcb\x97\xec\x74\xa1\x4d\x3c\x2a\x49\x85\x0e\xf4\xb4\xc3\xce\xd9\x9e\xc9\x45\xc0\xec\xc7\x6a\xbd\xc9\xd2\x2c\x82\xe6\xea\x26\x57\xb7\x67\xd0\xb9\xda\x7e\x78\x81\x5c\xa5\x46\x36\x94\xab\x0d\x7e\xe6\x2a\x5d\x6f\x9e\xd2\xf5\x2a\xcb\xd5\xe6\x57\x22\x76\xee\x72\x1f\xf2\x79\x3e\x97\xcc\x5d\x33\x41\x48\x67\x2e\x22\x64\x0f\xb8\xbb\xcf\x6e\xb7\x69\x3c\x8c\x23\xfe\x2f\x49\x81\x67\x26\x06\x69\x5f\x91\x8b\x45\x85\xa3\x92\x8c\xd7\xb2\xe6\xa9\xaf\xe8\x9c\x23\xe3\x41\xe6\xa0\x9d\x35\x4d\xf8\xb6\x1f\x56\x73\x4b\x85\x56\x9a\xca\xc1\x24\x81\xdb\x71\x0a\x26\x66\x6d\xcd\xe9\xb5\x8e\x29\x36\xb4\xce\x1e\x74\x39\xd5\x7f\x62\x94\x9d\x93\x5e\x5b\x13\x1e\x19\x67\x66\x78\x8b\x05\x2a\xdb\x39\x11\x89\xde\x8d\x35\x8c\xa6\x63\x8f\x1d\x41\x7a\xd4\x24\xd9\x63\xf1\x05\x8d\x36\x90\xa6\x44\x4d\x1c\xd4\x90\x06\x8b\xcf\xb1\x99\x05\xa2\x6e\xa3\x8e\x89\x78\x9a\x6c\xfd\x40\xf5\x24\x1b\xe9\x0c\xaa\xaa\xae\xae\xb1\xdc\xae\x60\x55\xfc\x77\x81\x98\xb7\x18\x3a\x05\x32\x22\xe4\xea\x66\x99\x65\xcf\x8f\xe9\xea\x2b\x96\xd8\xae\xbf\xdd\x07\xf7\x76\x54\xdb\x3e\x51\x91\x92\x97\xba\x66\x58\x83\xca\xf6\xf8\x3e\xda\x3f\x40\x70\x84\x64\x91\x88\x74\x93\x6c\x03\x7a\x3c\x6f\xa3\x1e\x8d\x3c\x06\xa6\x2d\x39\x65\x5d\x43\x25\x7a\xed\x2b\xdb\xf9\x51\xf3\xa3\x36\x7b\xc8\x41\xc6\x30\x14\xb7\xb2\x37\x50\xce\x36\x22\x79\xa9\xc8\x40\x9b\x83\xfd\x4d\x25\x7c\xa5\x19\xbd\x3c\xce\xde\xf9\x27\x1d\x81\x6d\xe7\x0a\x2a\x63\xd3\x29\x2f\xb5\x2d\x46\xad\xaf\x48\xec\x45\xf2\x26\x07\xb3\x90\x31\xa5\xf7\x93\x63\x4a\xd7\xc4\x33\x68\xc3\x5e\x9a\x22\x7a\x1b\x8e\x66\x20\x5f\x88\x6b\x11\xb5\x3f\x13\x27\xda\xb9\x3c\x53\x12\x85\x34\x81\xea\x6b\x98\xc6\xd0\x04\x63\x4f\x41\x79\xff\xf6\xd5\x41\xcb\xb3\x95\xa2\x52\xfb\x5c\x6d\xaf\x43\x92\xde\xe4\x52\xcb\x68\xde\x25\xe3\x6d\x54\x7a\xc8\xd8\xe4\x8c\xd2\x8e\x3d\xec\x69\xb5\xce\x12\x1e\xa6\x76\xe4\x9d\xa6\xc3\x10\x68\xd9\xb6\xce\xb6\x4e\x4b\xff\x6e\x41\x04\x52\x05\x39\x10\xd5\xfc\x06\x65\x5c\x9c\xcb\xac\xb4\x47\xaf\xeb\x7a\xdc\x16\xe9\xd1\x99\x98\xea\x57\x20\xfa\xd3\xd6\xba\xd0\xbe\x3e\xa2\x95\xcc\x13\xa0\xb3\xdd\xbe\xfa\x17\x4f\x24\x7f\x03\x00\x00\xff\xff\x2f\x79\xfa\xb4\x4e\x05\x00\x00") + +func vaultedConsole1Bytes() ([]byte, error) { + return bindataRead( + _vaultedConsole1, + "vaulted-console.1", + ) +} + +func vaultedConsole1() (*asset, error) { + bytes, err := vaultedConsole1Bytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "vaulted-console.1", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _vaultedCp1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\xc1\x6a\xeb\x30\x10\x45\xf7\xfe\x8a\x59\xbd\x55\x62\x78\x9f\x90\x26\x86\x18\x5a\x47\x44\x69\x43\x41\x50\xc6\xf6\x08\x0b\x1c\xc9\x95\x14\x9b\xfc\x7d\x91\xa2\xc4\xb4\xd0\x2e\xda\x9d\xb1\x2e\xf7\x9c\xb9\xf9\x61\x0b\x23\x9e\x7b\x4f\xad\x58\x36\x03\xfc\xcf\x72\xbe\x85\x6a\xf5\x54\x64\x39\x63\x59\x7a\x82\x66\x00\xb1\x84\xc6\x0c\x8a\x1c\xf8\x8e\xa0\x31\xda\x93\xf6\x60\x24\xe0\xb5\x00\x50\xb7\xe0\x70\x24\x07\xca\x03\x3a\x40\xd0\x34\xa5\xb7\x49\xf9\x2e\xfd\x18\xd0\xb9\xc9\xd8\x36\x82\xf8\x6b\xb5\x63\xbc\xe4\x11\x26\xe4\x83\x90\xeb\x19\x29\xe4\x1e\x84\x2c\x4d\xdf\x0a\xc9\xc2\x97\xa6\x49\x48\x96\xe5\xb5\xfd\x9a\x35\xc3\xe5\xdb\x34\xdf\xc2\xa6\xe0\xeb\x7d\xc9\x0e\xe5\xae\x8a\xa4\x75\xb2\x57\x3a\x1e\x73\x0f\x27\x5b\xe5\xa0\xb1\x84\xa1\xd9\x58\xb0\x34\xf4\xd8\x50\x0b\xf5\xe5\x7e\xb6\xb4\xe6\x34\xd3\xc4\xbf\x3c\xd6\x96\x32\xd5\x05\xb7\x97\xd5\xf3\xe3\xa1\xd8\xbc\xb1\x15\xe7\xc7\xdd\x7e\x13\xfc\x48\x8f\xca\x1a\x7d\x0a\x15\x23\x5a\x85\x75\x4f\x81\xe6\xc8\x2f\xc2\x6a\x93\xea\x7b\xa8\x09\xce\x8e\xda\x30\xa1\xef\x28\xbb\xed\x05\xd2\xd8\x19\xb9\x00\xe3\x3b\xb2\x93\x72\x14\x99\xf7\xd4\xad\xc2\xd2\xfb\x99\x5c\x38\x61\x54\x18\x23\xde\x5f\x7e\xd0\xac\x8a\xe3\x5f\x54\xb3\x4f\x12\x49\xf5\x3a\xea\x6f\x55\x3f\x02\x00\x00\xff\xff\xce\x4b\xec\x94\x9b\x02\x00\x00") func vaultedCp1Bytes() ([]byte, error) { return bindataRead( @@ -118,7 +160,7 @@ func vaultedCp1() (*asset, error) { return a, nil } -var _vaultedDump1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x64\xcd\x41\x8a\x83\x30\x14\xc6\xf1\x7d\x4e\xf1\x5d\xc0\xc0\x1c\x61\x46\x05\x33\x30\x1a\x8c\x9b\x81\x6c\x42\xcd\xa3\x42\x93\x88\xbe\xb4\xd7\x2f\xa6\x5d\x94\x76\xf9\xf8\x78\xbf\xbf\x9c\x3a\x5c\x5d\xbe\xb0\x9f\x6d\x35\xe7\xb0\xe2\x4b\x48\xd3\xa1\xff\xfe\x6b\x85\xd4\x5a\x3c\x47\x94\xcd\x56\xb8\x6d\x0b\xfb\x1d\x7c\xf6\x38\xa5\xc8\x3e\x32\x12\xc1\x3d\x10\x70\xc2\xce\x73\xca\x0c\xb7\xe3\xd7\x0c\x7d\xc1\xcc\x7f\x3f\x68\xa3\x4c\x01\x2d\xfd\x58\xaa\x5f\x59\x4b\x23\x2c\xa9\xe8\x82\xb7\xa4\xcb\x47\xd3\x9a\x7a\x54\x7a\x52\x87\xa0\xb5\x68\x72\x58\x3f\xa2\xc7\xf9\x9e\x5d\x62\xc9\x82\xd2\x16\x1c\x4b\x71\x0f\x00\x00\xff\xff\xbe\x1d\xa8\x5d\xe0\x00\x00\x00") +var _vaultedDump1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcd\x41\x8a\x83\x30\x14\xc6\xf1\x7d\x4e\xf1\x5d\xc0\xc0\x1c\x61\x46\x05\x33\x30\x1a\x8c\x9b\x81\x6c\x42\xcd\xa3\x42\x93\x88\xbe\xb4\xd7\x2f\xa6\x5d\x94\x76\xf9\xf8\x78\xbf\xbf\x9c\x3a\x5c\x5d\xbe\xb0\x9f\x6d\x35\xe7\xb0\xe2\x4b\x48\xd3\xa1\xff\xfe\x6b\x85\xd4\x5a\x3c\x47\x94\xcd\x56\xb8\x6d\x0b\xfb\x1d\x7c\xf6\x38\xa5\xc8\x3e\x32\x12\xc1\x3d\x10\x70\xc2\xce\x73\xca\x0c\xb7\xe3\xd7\x0c\x7d\xc1\xcc\x7f\x3f\x68\xa3\x4c\x01\x2d\xfd\x58\xaa\x5f\x59\x4b\x23\x2c\xa9\xe8\x82\xb7\xa4\xcb\x47\xd3\x9a\x7a\x54\x7a\x52\x87\xa0\xb5\x68\x72\x58\x3f\xa2\xc7\xf9\x9e\x5d\x62\xc9\x82\xd2\x16\x1c\x4b\x71\x0f\x00\x00\xff\xff\xbe\x1d\xa8\x5d\xe0\x00\x00\x00") func vaultedDump1Bytes() ([]byte, error) { return bindataRead( @@ -138,7 +180,7 @@ func vaultedDump1() (*asset, error) { return a, nil } -var _vaultedEdit1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x54\x5d\x8f\xdb\x36\x10\x7c\xe7\xaf\xd8\xa7\xe6\x02\xf8\x54\xa4\xff\xc0\x8d\xef\x70\x42\xe0\x8b\x61\xb9\x08\x02\xe8\x65\x2d\xae\x2c\x36\xfc\x70\xf9\x61\xc5\xff\xbe\xd8\xb5\xe5\x93\xaf\x05\xf2\x4a\x72\x67\x67\x66\x87\x5b\xed\x5e\xe0\x84\xc5\x66\xd2\xed\x23\x69\x93\xe1\x93\xaa\x9a\x17\x78\x5d\xae\x9f\x54\xb5\xd9\xa8\xeb\x25\xc8\x5d\xfb\x08\xc6\x67\x8a\xd8\x65\x73\x22\x7b\x96\xd3\x04\x79\x20\xe8\x82\xcf\xe4\x33\x84\x1e\xd0\x03\xfd\x34\x29\x1b\x7f\xb8\x60\x0b\x62\xf3\xfd\xf5\xeb\xa6\xa9\x1b\x41\x6d\xfb\x3f\xdb\xfe\xf3\x1c\xbb\xed\xb7\xd0\xf6\xb5\x47\x47\x6d\xbf\x91\x8a\xd5\x53\xf3\x79\x5b\x6f\x76\xf5\xd7\x57\x29\x6a\x8e\x38\xfa\xc4\xf0\x13\x89\x13\x81\x0b\x9a\xa0\x0f\x51\x40\xb8\xe3\xaf\xc8\x54\x82\xf5\xd7\x31\x78\xf8\xa7\x98\xcc\x17\x0b\x29\xf2\x34\xde\x0a\x4d\x82\x84\x27\xd2\x90\x83\xdc\x4d\x95\xcd\x0b\x2c\xbf\x35\xf0\xe5\xe9\xbb\xaa\xb6\x8d\xaa\xea\x0d\xb4\x0f\xfb\x02\x7f\xa8\x1f\x6c\xce\x17\x3a\xab\x6a\x1f\xd5\x1a\x3d\x1e\x28\xc1\xb2\xeb\x28\x25\x3e\x86\x7a\x05\xe8\x35\x34\xd4\x45\xca\xf3\x8b\x2e\x92\x26\x9f\x0d\xda\x54\xcd\x01\x1d\x03\xae\x9f\x97\x77\x80\xeb\xe7\x25\x3c\xb8\x62\xb3\x69\x1f\x7b\xec\x72\x88\x80\x25\x0f\x5c\xdf\x61\x36\xc1\x7f\x84\xe5\xf6\x15\x42\x84\x44\xd1\xa0\x05\x5f\xdc\x9e\x62\x05\x75\x0f\xe4\x71\x6f\x49\x2f\x54\x49\x14\x61\x34\xd6\xc2\x9e\xe0\x18\x83\x3b\xe6\x8b\x52\x62\x5b\xa5\x47\xc7\xae\x8e\x03\x79\x40\x61\xfa\xe6\x9e\x5c\x73\xb1\x8a\xe4\xd0\xf0\x03\xce\x82\x8c\xe0\xe6\x14\xe8\x12\x85\x4e\x25\xec\xeb\x1e\xce\xa1\x00\x46\x82\x22\x50\xcd\xae\x99\xeb\x5e\xc0\x38\x98\x6e\x80\xd0\x75\x25\x26\xd8\x9f\x41\x53\x2f\x38\x0f\x89\x48\x60\x3f\xe4\x0f\x2a\x1c\x19\x12\xf6\x64\xc3\x28\xfd\x34\x65\x34\x36\x7d\x5c\x08\xbc\x2b\x29\xc3\x80\x27\x12\x8a\x57\xb5\x2c\xcb\xf8\x53\xf8\x41\x80\xfe\x0c\xf5\x72\x0d\x1d\xda\x77\x56\x47\xb6\x7a\x1b\x2c\x09\x5b\x31\xb0\x87\x18\x2c\x71\xf5\x9e\x00\x53\x2a\x8e\xf4\xff\x1b\xa2\xbe\xc9\x29\x3f\xe1\x43\x94\xc2\x4b\xa2\x1c\xfe\x34\xae\xb8\x9b\x1b\x80\xd6\x86\x91\x34\x2b\xe4\x18\x99\x04\x9f\x60\x08\xe5\x32\x9f\x73\x28\x51\xdd\x9e\x9a\x04\x87\x48\xc8\x03\xc9\x03\xfa\xeb\xc3\x0b\x85\x44\x12\xdb\xbb\x5e\xb7\xc2\xeb\x60\x15\xea\xbf\x4b\xba\x0e\xf6\xda\x65\xae\x59\x3e\x73\x53\xf6\x29\x9b\x5c\x32\xc1\x68\xf2\x00\x99\xdc\x31\x44\x8c\x77\xa9\x14\x53\x76\xe1\x70\xb0\x94\xb8\x7f\x1e\x28\x0a\x59\xd1\x30\x7b\x28\x03\x4e\x37\x48\x7d\xc1\x44\xa6\xcb\x86\xde\xc0\xd5\x3c\xf2\xf0\x1c\x22\xb8\x10\x69\x9a\x26\x04\x0f\x79\x30\x89\x93\xc9\x4e\x2f\x60\xca\x80\x0e\x5d\x71\xe4\xf3\x45\x67\x1f\xe2\xbb\x35\x92\x06\xb2\xb6\xed\xb7\xed\x6f\x77\x4a\x1b\x51\x3a\x84\xf1\xf7\x17\xa3\xe9\xf6\x47\xdf\x2b\xfa\xef\xcf\xac\x57\x3c\x05\x6d\xd2\xd1\xe2\x79\x1a\xff\xc9\xd0\xf8\xb6\xd8\x26\xce\xc6\x0b\x43\x59\x92\x8e\x7c\xa9\x60\xc7\x12\xa6\x41\x05\x6f\xcf\x80\x7d\x4f\xdd\xb4\x2d\x4b\x8c\xbc\x67\xae\x4b\x4b\x25\x8e\x14\x07\xc4\x6b\xee\x19\x89\x3d\xcb\x01\x06\xa3\x35\x79\x20\xec\x06\xc8\xc6\xd1\xec\x8b\xc9\xb3\x70\x24\x4f\x7a\xbe\xff\xee\xa4\xaf\x58\xfa\x8a\x2c\xe5\x4b\xb4\xb7\xe4\xc2\x89\x12\xe7\x50\x86\x37\xd1\x4f\x39\x44\xd2\x93\x8a\x69\xd9\x6d\x9f\xd4\xbf\x01\x00\x00\xff\xff\x41\xf4\xd7\x5c\x1f\x06\x00\x00") +var _vaultedEdit1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x5d\x8f\xdb\x36\x10\x7c\xe7\xaf\xd8\xa7\xe6\x02\xf8\x54\xa4\xff\xc0\x8d\xef\x70\x42\xe0\x8b\x61\xb9\x08\x02\xe8\x65\x2d\xae\x2c\x36\xfc\x70\xf9\x61\xc5\xff\xbe\xd8\xb5\xe5\x93\xaf\x05\xf2\x4a\x72\x67\x67\x66\x87\x5b\xed\x5e\xe0\x84\xc5\x66\xd2\xed\x23\x69\x93\xe1\x93\xaa\x9a\x17\x78\x5d\xae\x9f\x54\xb5\xd9\xa8\xeb\x25\xc8\x5d\xfb\x08\xc6\x67\x8a\xd8\x65\x73\x22\x7b\x96\xd3\x04\x79\x20\xe8\x82\xcf\xe4\x33\x84\x1e\xd0\x03\xfd\x34\x29\x1b\x7f\xb8\x60\x0b\x62\xf3\xfd\xf5\xeb\xa6\xa9\x1b\x41\x6d\xfb\x3f\xdb\xfe\xf3\x1c\xbb\xed\xb7\xd0\xf6\xb5\x47\x47\x6d\xbf\x91\x8a\xd5\x53\xf3\x79\x5b\x6f\x76\xf5\xd7\x57\x29\x6a\x8e\x38\xfa\xc4\xf0\x13\x89\x13\x81\x0b\x9a\xa0\x0f\x51\x40\xb8\xe3\xaf\xc8\x54\x82\xf5\xd7\x31\x78\xf8\xa7\x98\xcc\x17\x0b\x29\xf2\x34\xde\x0a\x4d\x82\x84\x27\xd2\x90\x83\xdc\x4d\x95\xcd\x0b\x2c\xbf\x35\xf0\xe5\xe9\xbb\xaa\xb6\x8d\xaa\xea\x0d\xb4\x0f\xfb\x02\x7f\xa8\x1f\x6c\xce\x17\x3a\xab\x6a\x1f\xd5\x1a\x3d\x1e\x28\xc1\xb2\xeb\x28\x25\x3e\x86\x7a\x05\xe8\x35\x34\xd4\x45\xca\xf3\x8b\x2e\x92\x26\x9f\x0d\xda\x54\xcd\x01\x1d\x03\xae\x9f\x97\x77\x80\xeb\xe7\x25\x3c\xb8\x62\xb3\x69\x1f\x7b\xec\x72\x88\x80\x25\x0f\x5c\xdf\x61\x36\xc1\x7f\x84\xe5\xf6\x15\x42\x84\x44\xd1\xa0\x05\x5f\xdc\x9e\x62\x05\x75\x0f\xe4\x71\x6f\x49\x2f\x54\x49\x14\x61\x34\xd6\xc2\x9e\xe0\x18\x83\x3b\xe6\x8b\x52\x62\x5b\xa5\x47\xc7\xae\x8e\x03\x79\x40\x61\xfa\xe6\x9e\x5c\x73\xb1\x8a\xe4\xd0\xf0\x03\xce\x82\x8c\xe0\xe6\x14\xe8\x12\x85\x4e\x25\xec\xeb\x1e\xce\xa1\x00\x46\x82\x22\x50\xcd\xae\x99\xeb\x5e\xc0\x38\x98\x6e\x80\xd0\x75\x25\x26\xd8\x9f\x41\x53\x2f\x38\x0f\x89\x48\x60\x3f\xe4\x0f\x2a\x1c\x19\x12\xf6\x64\xc3\x28\xfd\x34\x65\x34\x36\x7d\x5c\x08\xbc\x2b\x29\xc3\x80\x27\x12\x8a\x57\xb5\x2c\xcb\xf8\x53\xf8\x41\x80\xfe\x0c\xf5\x72\x0d\x1d\xda\x77\x56\x47\xb6\x7a\x1b\x2c\x09\x5b\x31\xb0\x87\x18\x2c\x71\xf5\x9e\x00\x53\x2a\x8e\xf4\xff\x1b\xa2\xbe\xc9\x29\x3f\xe1\x43\x94\xc2\x4b\xa2\x1c\xfe\x34\xae\xb8\x9b\x1b\x80\xd6\x86\x91\x34\x2b\xe4\x18\x99\x04\x9f\x60\x08\xe5\x32\x9f\x73\x28\x51\xdd\x9e\x9a\x04\x87\x48\xc8\x03\xc9\x03\xfa\xeb\xc3\x0b\x85\x44\x12\xdb\xbb\x5e\xb7\xc2\xeb\x60\x15\xea\xbf\x4b\xba\x0e\xf6\xda\x65\xae\x59\x3e\x73\x53\xf6\x29\x9b\x5c\x32\xc1\x68\xf2\x00\x99\xdc\x31\x44\x8c\x77\xa9\x14\x53\x76\xe1\x70\xb0\x94\xb8\x7f\x1e\x28\x0a\x59\xd1\x30\x7b\x28\x03\x4e\x37\x48\x7d\xc1\x44\xa6\xcb\x86\xde\xc0\xd5\x3c\xf2\xf0\x1c\x22\xb8\x10\x69\x9a\x26\x04\x0f\x79\x30\x89\x93\xc9\x4e\x2f\x60\xca\x80\x0e\x5d\x71\xe4\xf3\x45\x67\x1f\xe2\xbb\x35\x92\x06\xb2\xb6\xed\xb7\xed\x6f\x77\x4a\x1b\x51\x3a\x84\xf1\xf7\x17\xa3\xe9\xf6\x47\xdf\x2b\xfa\xef\xcf\xac\x57\x3c\x05\x6d\xd2\xd1\xe2\x79\x1a\xff\xc9\xd0\xf8\xb6\xd8\x26\xce\xc6\x0b\x43\x59\x92\x8e\x7c\xa9\x60\xc7\x12\xa6\x41\x05\x6f\xcf\x80\x7d\x4f\xdd\xb4\x2d\x4b\x8c\xbc\x67\xae\x4b\x4b\x25\x8e\x14\x07\xc4\x6b\xee\x19\x89\x3d\xcb\x01\x06\xa3\x35\x79\x20\xec\x06\xc8\xc6\xd1\xec\x8b\xc9\xb3\x70\x24\x4f\x7a\xbe\xff\xee\xa4\xaf\x58\xfa\x8a\x2c\xe5\x4b\xb4\xb7\xe4\xc2\x89\x12\xe7\x50\x86\x37\xd1\x4f\x39\x44\xd2\x93\x8a\x69\xd9\x6d\x9f\xd4\xbf\x01\x00\x00\xff\xff\x41\xf4\xd7\x5c\x1f\x06\x00\x00") func vaultedEdit1Bytes() ([]byte, error) { return bindataRead( @@ -158,7 +200,7 @@ func vaultedEdit1() (*asset, error) { return a, nil } -var _vaultedEnv1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x58\x6f\x6f\xdb\x38\xf2\x7e\x1d\x7e\x8a\x79\xd7\x04\x70\x54\xa4\xbb\xaf\xf2\xfb\xf5\x00\x5f\xe2\x6d\x7c\x6d\x1d\xc3\x72\x5a\x14\xf5\x22\xa0\xa4\x91\xcd\x0d\x45\x6a\x49\xca\xae\x51\xf4\xbb\x1f\x66\x28\xc9\x72\xea\xf6\x0a\x1c\x0e\x28\x0a\x44\xd2\xfc\xe1\x33\xcf\x3c\x33\x74\xb2\xbc\x83\xad\x6c\x74\xc0\x62\x75\x89\x66\x0b\x57\x22\x49\xef\x60\x36\x7e\x3f\x11\xc9\x7c\x2e\xda\x77\x40\xaf\x56\x97\x60\x9b\x50\x37\xc1\x83\xdf\xa0\xd6\x90\xdb\xaa\x92\xa6\xf0\x10\x36\x32\x80\xb6\xb2\x00\x8f\xb9\xc3\xe0\xa1\xb4\x0e\x64\xf4\x0c\xca\x04\x0b\x61\x83\xd1\x8a\xfd\xa7\x9f\x66\xf7\xf3\x74\x9a\x72\x8c\x55\xf9\xcf\x55\x79\x33\x88\xb4\x2a\x17\xb0\x2a\xa7\x46\x56\xb8\x2a\xe7\xf0\x79\x55\x4e\xef\xe7\xcb\xe9\xfd\x2c\x5d\x95\xf3\x3f\x45\x92\xb9\xef\x6d\x60\x75\xb9\xba\x94\xde\x37\x64\xc3\xe6\xd2\x99\x93\xd6\xe9\x1d\xdc\x4e\xd2\x9b\xc5\x94\x1f\x72\x06\x37\x0e\x65\x40\x0f\x12\x3c\x7a\xaf\xac\x81\xc6\x2b\xb3\x86\xad\x74\x4a\x66\x9a\xde\x98\x82\x8f\x30\xfe\x98\xc2\x13\xee\xc1\x07\xeb\xb0\x00\x65\xf8\x29\xe7\x91\xc0\x72\x83\xc2\xa1\x6f\x74\x20\x63\x34\x5b\xe5\xac\xa9\xd0\x84\xa1\x23\x87\xd0\x78\x2c\x20\x58\x58\xa3\x41\x27\x03\x9e\x84\x73\xa7\xb4\x16\x8c\x29\x43\xd7\xe2\xca\x58\xca\x68\x90\x70\xee\xcb\x0e\x58\x50\x1e\x64\x13\x6c\x81\x01\x73\x42\xa5\x74\xb6\x62\xe3\x08\x56\x7a\x37\x79\xf7\x8e\xb0\x39\x95\xd8\x08\x54\x39\xa8\x91\xf2\xd0\x98\x27\x63\x77\x06\xac\x83\xc6\xf8\x1a\x73\x55\x2a\x2c\x46\xad\x33\xbf\x21\x4f\xb9\xad\x6a\x19\x54\xa6\xf1\x90\x3c\x1d\x10\x2b\x15\x02\x16\x49\x5b\xde\xe9\xcc\x06\xbc\xa6\x62\xa4\xe9\x1d\xc1\x17\xbf\x52\x6b\xc3\x20\xee\x36\x68\x3a\x2c\x08\xb8\xb6\x06\x84\x83\xf2\xb0\x93\x7b\x42\x56\x79\x3a\x5f\xd1\x20\x04\x2b\x28\x51\x65\x64\xa6\xb4\x0a\x7b\x42\x32\x38\x99\x3f\x71\xfe\x5a\x95\x18\x54\x85\x60\xdb\xf3\x44\x67\x23\xd8\x6d\x54\xbe\x81\x0a\x25\x3b\x46\x4e\x45\xae\xd1\x04\xb1\xb3\x8d\x2e\x00\xbf\x28\x4f\x5c\x2d\xb0\x54\x46\x05\xd4\xfb\x84\xb9\xd2\x72\x47\x24\xcb\x8e\xa9\x3f\x60\x9a\x48\x5b\x90\xa2\xff\xb2\xd1\x1a\xc6\x8b\x59\x97\x88\xb3\x9a\x72\x87\x68\x99\x40\x8a\x5c\x98\x71\x9a\x3e\xbc\x9f\xce\xde\xc0\x18\x16\xf7\xef\x26\x04\x52\x86\xda\xee\x04\x75\x50\x81\x41\x2a\xed\xc1\x1a\xd8\xd8\x1d\x7c\x68\xe9\x1e\x5d\x78\x76\xe9\x13\x91\x4c\xe7\x62\x41\xde\xf9\x79\x1d\x88\xbf\x95\xdc\x43\x86\x50\xa3\x2b\xad\xab\x08\x64\x15\x36\xb6\x09\x10\x2b\xb9\x27\x9c\xbb\xfe\x0c\x16\x7c\x2d\x77\x86\x09\x93\x88\x8f\x54\x0e\x65\xb6\xf6\x89\x58\xda\x96\x60\x04\xb9\xc3\x02\x4d\x50\x52\xc7\xea\x79\xdb\xb8\xbc\x63\x59\x81\x25\xbb\xd2\x36\x97\x81\x6b\x77\x8e\xc9\x3a\x11\x03\xaa\x8d\x20\xb7\xa6\x54\xeb\xc6\xf1\x17\x50\x2a\x8d\x7e\x04\xca\xf8\x20\x4d\x8e\x50\x3b\x4b\x8f\x46\x80\x21\x4f\x2e\x92\x67\x78\xd3\x29\x64\x20\xbc\xff\x9f\x19\x3a\x2a\x95\xdf\x8c\xfc\x66\xf4\x97\xb7\x66\xb4\x2a\xa7\x79\xe3\x83\xad\x56\xe5\xfc\x1f\x6d\x1d\xf6\xb0\xa3\x36\x8a\x86\x74\xc6\xc6\xe3\xa8\x4b\xd4\xd3\x83\x8e\xc9\xa8\x35\x39\x8e\x04\xa1\xb6\x1b\xb4\x51\x7c\x2a\x62\x83\x1d\x7c\x11\xc1\x23\xf0\xd1\x09\x65\xb3\x2a\x17\x23\xd6\x89\x61\x87\xb0\x3b\xfa\xba\x95\x4e\xf0\x8d\x0a\xd4\x70\xac\x90\xb8\x95\xba\x89\x70\x1c\x44\xb2\x6b\xb5\x18\x34\x69\xdd\xd1\x39\x8f\x1d\xd2\xc7\x95\xac\x89\x5f\xe4\x06\xf9\x4c\x19\x31\x9e\x68\x0c\xb2\x4b\xb7\xf1\x58\x36\x1a\x94\x11\x36\x6c\xd0\x11\xd0\x6b\x27\xab\xea\x99\x46\xf9\x51\x5b\x6c\x0a\x60\x2c\xf9\xc8\x75\x53\x20\xc7\x91\xce\xc9\x7d\x8c\xd4\x0a\x99\x88\xc1\x1c\x56\x76\xcb\x9d\x3e\x9d\x8b\x69\x64\x7a\x1b\xd7\x07\xc7\xdd\xdc\xd4\xb5\x56\x58\x40\x61\xd1\xb3\xe3\x4a\x86\x7c\x03\xd6\xf4\x3d\x5a\x3b\x5c\x5d\x72\xdf\x11\x9f\xd8\xda\x0b\x15\x25\x90\x82\x28\x13\xd0\xd5\x0e\x23\xf7\x41\x42\xc0\x2f\x01\x02\x56\xb5\x26\xf5\x8c\x5a\xbd\xb6\x5a\x9a\xf5\x0b\x0f\x59\xa3\x74\x58\x5d\x2a\xd3\xd6\x86\x3e\x7e\xd9\x7d\x4c\x10\xd6\x32\x7f\x92\x6b\x64\xbd\x26\x74\xdc\xc1\x55\x17\xb1\x4f\x5a\xd2\x31\x1a\xe2\x81\x0a\x1b\x4a\x56\x94\x0a\x75\xe1\xa9\x9c\x9a\xf3\xe5\x6e\x4d\x60\xac\xbd\x05\xb9\x95\x4a\x73\x75\xa9\x43\x64\x5b\x3a\x87\xb5\x96\x39\x87\x2e\x1b\x93\x47\xf6\x5b\x07\x6b\xdf\x64\xa0\xd5\x13\x8a\x0c\x37\x72\xab\x68\x64\x9a\xa2\x37\xeb\x2a\xde\xdb\x44\x82\xca\x3c\xc7\x3a\x78\xee\x5e\xdd\x20\x9b\x10\x1f\xe8\x09\x61\x14\xf6\xa2\x76\x84\x58\x01\xff\x4a\xef\x67\x6d\x19\x62\x81\xc6\x34\xc8\x00\xbf\xc8\xaa\xa6\x4e\x0b\xb6\x63\xe5\x5f\x8d\x0f\xfd\x7c\x1b\x76\x3a\x13\x89\xfd\xc4\xba\x8c\x08\x30\xc6\x21\x36\x5c\x0f\xdd\x35\x3c\x6f\x56\x78\xf1\xf5\x2b\xd0\x21\x20\x19\x7f\x4c\x6f\x1c\x16\x1e\xbe\x7d\x7b\xb1\x2a\x17\x22\x59\xa6\x42\x6a\x9d\xd9\x2f\xff\x27\xf2\x0c\xf8\x9f\xd0\xa0\x41\xff\xd2\xff\x89\xf8\x83\x8a\x00\x33\x59\xe1\xd9\x72\x5f\xe3\x19\x0d\x18\x2f\x6e\xe2\x0c\x3a\x8b\x47\x3e\x5b\x76\x2a\xdc\xce\x26\xa0\x82\xf5\xc3\x37\x2a\x5c\xb7\xfc\xb4\x6c\x27\x22\x59\x56\x50\x2f\xba\xa4\xcf\x22\x03\xd8\x1d\xc1\x43\x05\xf0\x9e\xb7\x00\xaa\x62\x3b\x64\x94\x35\xbd\x45\x32\xbd\xed\x72\x98\xde\xf6\x1f\x1d\xdb\x1e\x3e\x4e\x79\xb4\x77\x06\xf1\xaf\xff\x68\xb4\xb4\x4f\x68\x0e\x36\x71\x69\x09\xf4\xf0\x07\xa6\x70\xce\x07\x8f\x34\xc6\xaa\xb6\x4e\xba\xfd\xb0\xd4\x17\x22\xc5\x70\x56\xc9\xfa\x73\xf4\xfa\x67\xeb\x7c\xdc\x89\xcc\xe9\x7d\xe6\xa0\x39\x52\x5b\xb3\xee\xfb\x44\xb9\x56\x95\xc4\x83\xf1\x18\xce\x3e\x1f\xfc\x79\xad\x72\x3c\x12\x13\x38\x12\x93\xc3\xe2\x32\x0c\x99\x61\x69\x1d\x47\xe2\x25\xc1\xe0\xae\x0b\x90\x2c\x27\x3c\xa9\xe9\xc0\x6f\x27\x9f\x78\xe9\xe8\x46\x65\xe3\xd1\xd3\x14\xac\xa4\x21\x27\x43\x6a\x9f\x58\xe1\x8e\x96\xb2\x1e\x25\x31\xb4\x8a\x62\x43\xa1\xd2\x65\x1a\x25\xe4\xb0\xf2\x3d\x9f\x91\xdd\xc4\x8b\x8c\xd3\xd2\x73\x61\x79\x7d\x29\xba\x39\xd8\x6a\x60\x8c\xdf\xad\x9f\xe7\x03\xcb\xad\xea\x14\xa1\x5f\x77\x0b\x45\xa3\xf0\xa2\x5d\x00\x4f\x55\x13\x2a\xea\xe8\xac\xa5\xbb\xa2\x35\xae\x20\xa1\xeb\xf6\x0f\x90\xbc\x3d\x7c\xbf\xa1\x65\x98\x4b\x6a\xf1\x0e\xc0\xe1\xc0\xf4\x4d\xe6\x83\x0a\x0d\x9f\xf5\x34\xa8\x54\x7e\x71\x92\x5f\x23\x3e\xe6\xf0\xdb\xbd\x6d\x68\x18\x6d\x55\xc1\x8b\x51\x17\x91\x56\x97\x7e\x4c\x88\xb0\xb1\x1e\xa3\x0c\xf1\x92\x82\x45\x07\x52\xf2\x7d\xa1\xa9\x2c\xb4\x4e\x14\xd2\x15\x3f\xe0\x2b\x75\xc7\x20\x89\x6b\x91\x2c\x52\xd2\x46\x58\x9d\x67\x0d\xbc\x6a\x67\xc6\xf8\x63\xfa\x38\xbe\xb9\x99\xa4\xe9\xe3\xdb\xc9\xa7\xc7\xe9\x2d\xab\x56\xe6\xc4\xd8\x80\x62\xdb\x52\xa1\xeb\x5b\xed\xd0\x66\x09\x3c\x18\xf5\x37\x6f\xa9\x80\x32\xdf\x70\x67\xd8\x72\x80\x16\xd5\xff\x14\x3e\xc9\xe9\x2c\xd2\xc9\xcd\x62\xb2\x1c\x24\xd3\x65\xb2\xec\x6f\x05\xbd\xa4\x79\xb5\x36\xe0\xf0\xef\x06\x7d\xf0\xff\x83\x4c\xd2\x74\x7a\x3f\x7b\x5c\xde\xbf\x9d\xcc\x68\x30\xbd\x84\xa3\x34\x1f\x16\xd3\xe5\xa7\xfe\x2d\xe7\x38\x8f\xd5\x6d\x57\xfc\xd8\x3a\xa7\x43\xfe\xcc\x15\x2d\xfe\x2d\x4f\x0a\xc1\x34\xac\x6b\xeb\x02\x68\x5c\xcb\x7c\x0f\xe9\xed\x5b\x4a\x79\xd1\x8a\xc0\xf1\x3e\xcd\x1c\x19\x3f\x5b\xbe\x21\x97\x86\x55\xab\x5b\xb5\x00\x15\xaf\x46\x4c\x33\xee\xb2\x17\xfe\xd9\xba\x7a\xbe\x55\xf2\xf9\xad\xb3\x6d\x43\xba\x22\x1d\x5c\x51\xbb\x1e\x2e\x5d\xc7\x77\x85\x38\x5a\x8e\x89\x5b\x2a\xe7\x43\xaf\x3a\xf1\xa6\x99\xcb\x7c\x73\x74\x1d\xed\x88\x16\x55\xe2\x9c\x3d\x0e\x56\x78\x31\xb8\x2d\xef\xa4\x3f\x64\x73\xc1\xee\xb8\x37\xc2\x91\x52\xf9\x7e\x64\x74\x77\x84\x48\xe4\x88\x0f\xc1\x25\x72\x49\xdb\x27\xdf\xbc\xa4\xd6\x76\xe7\x87\xf7\xa9\x56\xb1\x39\xd1\xa2\xbd\xed\x93\xfe\xa3\x3b\x28\x5b\xd8\x48\x33\xf0\x2a\x9c\xa5\x59\x2c\xb5\x6e\x97\x6c\x72\x0a\xe7\x95\xfc\xa2\xaa\xa6\x22\x6a\x5e\xc1\xc6\x36\xee\xa2\x0f\xea\x6d\x7f\x5f\x93\xe1\x64\x7e\x4c\x8d\xfe\x8e\xc3\x34\xe7\xcb\x9f\xe4\xf9\x30\x54\x00\xe5\x7b\xfd\xe8\xc7\xcb\x91\x90\xf0\xb5\x67\x00\x2c\xc5\x18\xb5\x4b\x76\xcc\xf0\xb9\x64\x9f\xd6\x7d\xe5\xe1\x4a\xd0\x39\x46\xe0\x70\x2d\x5d\xa1\x49\x1a\x5a\x93\xde\xc5\x81\x2f\xc3\xf9\xf3\x9c\x75\x31\xb3\xa9\x01\x59\x14\x2a\xb4\xb0\xc7\xaf\x3b\x3d\x3b\x38\x92\x99\xdd\xe2\xa8\x97\xd1\xb6\x63\x7c\x6f\x2b\xb5\x38\x2d\x89\x3c\xb2\x95\x89\x5b\x1b\x05\x91\x19\xdd\x14\xbb\x4b\xeb\x0f\x24\xf2\xc3\xf8\xe1\xdd\x72\x72\xfb\x38\x99\x7d\x78\xa4\x4e\x7b\x1c\x2f\x66\x43\x6d\x3a\x79\xff\x8d\xf5\x2b\x4e\x28\xcc\xf7\xee\x6e\x6e\xee\x1f\x66\xcb\x81\xf6\x2e\xa3\xd2\xda\xc6\x04\x98\xde\x0e\x4e\x9e\xed\x0f\x11\xc6\x8b\xd9\xaf\x78\x9f\x8d\xdf\x4f\x86\x7e\xa9\x7b\x8e\x32\xfd\xaf\xbc\xcf\xc7\xcb\xbb\xa1\xf7\x5a\x86\xcd\x2f\x7b\x5f\x44\xd1\xfa\x83\xee\x87\x71\x53\xbf\xe6\x07\x5c\x05\x53\xf6\x3f\xc9\xc5\x3b\xe9\x41\x60\x40\x3a\x73\x2d\x77\xfe\x5a\xc9\xea\xfa\xfa\xea\xea\xea\xd5\xab\x57\xbf\xfd\xf6\xdb\xef\xbf\xff\x7e\x4d\xde\x5f\xa6\x4d\x8d\x6e\x41\x9d\x93\x94\xaa\x0f\x13\x7f\xfc\x88\x54\xee\xb8\x58\x5a\x6a\xcd\xe3\x1f\xc0\x32\xe4\xb6\xe8\x2f\x38\xca\xc0\xd7\xaf\x49\x8a\xe1\xdb\xb7\xe3\xf4\x4e\xf1\xe2\xf5\x2f\xa7\xf6\x13\x1a\xbc\x1e\xda\x7d\xff\x21\x55\xf4\xf5\x4f\x1c\x51\x4d\x5e\xbf\x3c\x9c\x3d\xbd\x83\x37\x0f\x53\x98\x4b\xef\x77\xd6\x15\x30\x77\xb6\xaa\x83\xe7\xb3\xbc\x79\x98\xae\x2e\x33\x49\x63\xb5\xee\xde\xd7\xf1\x7d\x37\x3b\x78\xe6\x66\xfb\x7e\x1f\x3d\x48\x7e\x17\x79\x9c\xbe\x9d\x8f\xd3\x94\x78\xd0\xc1\xd8\xff\xea\x73\x98\x22\xe7\x57\x17\x7c\xc9\xb3\x0e\x2a\xda\x6f\xdb\x9f\x7c\x12\xf1\xef\x00\x00\x00\xff\xff\x5b\x48\xf9\xe8\x9a\x15\x00\x00") +var _vaultedEnv1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x6f\x6f\xdb\x38\xf2\x7e\x1d\x7e\x8a\x79\xd7\x04\x70\x54\xa4\xbb\xaf\xf2\xfb\xf5\x00\x5f\xe2\x6d\x7c\x6d\x1d\xc3\x72\x5a\x14\xf5\x22\xa0\xa4\x91\xcd\x0d\x45\x6a\x49\xca\xae\x51\xf4\xbb\x1f\x66\x28\xc9\x72\xea\xf6\x0a\x1c\x0e\x28\x0a\x44\xd2\xfc\xe1\x33\xcf\x3c\x33\x74\xb2\xbc\x83\xad\x6c\x74\xc0\x62\x75\x89\x66\x0b\x57\x22\x49\xef\x60\x36\x7e\x3f\x11\xc9\x7c\x2e\xda\x77\x40\xaf\x56\x97\x60\x9b\x50\x37\xc1\x83\xdf\xa0\xd6\x90\xdb\xaa\x92\xa6\xf0\x10\x36\x32\x80\xb6\xb2\x00\x8f\xb9\xc3\xe0\xa1\xb4\x0e\x64\xf4\x0c\xca\x04\x0b\x61\x83\xd1\x8a\xfd\xa7\x9f\x66\xf7\xf3\x74\x9a\x72\x8c\x55\xf9\xcf\x55\x79\x33\x88\xb4\x2a\x17\xb0\x2a\xa7\x46\x56\xb8\x2a\xe7\xf0\x79\x55\x4e\xef\xe7\xcb\xe9\xfd\x2c\x5d\x95\xf3\x3f\x45\x92\xb9\xef\x6d\x60\x75\xb9\xba\x94\xde\x37\x64\xc3\xe6\xd2\x99\x93\xd6\xe9\x1d\xdc\x4e\xd2\x9b\xc5\x94\x1f\x72\x06\x37\x0e\x65\x40\x0f\x12\x3c\x7a\xaf\xac\x81\xc6\x2b\xb3\x86\xad\x74\x4a\x66\x9a\xde\x98\x82\x8f\x30\xfe\x98\xc2\x13\xee\xc1\x07\xeb\xb0\x00\x65\xf8\x29\xe7\x91\xc0\x72\x83\xc2\xa1\x6f\x74\x20\x63\x34\x5b\xe5\xac\xa9\xd0\x84\xa1\x23\x87\xd0\x78\x2c\x20\x58\x58\xa3\x41\x27\x03\x9e\x84\x73\xa7\xb4\x16\x8c\x29\x43\xd7\xe2\xca\x58\xca\x68\x90\x70\xee\xcb\x0e\x58\x50\x1e\x64\x13\x6c\x81\x01\x73\x42\xa5\x74\xb6\x62\xe3\x08\x56\x7a\x37\x79\xf7\x8e\xb0\x39\x95\xd8\x08\x54\x39\xa8\x91\xf2\xd0\x98\x27\x63\x77\x06\xac\x83\xc6\xf8\x1a\x73\x55\x2a\x2c\x46\xad\x33\xbf\x21\x4f\xb9\xad\x6a\x19\x54\xa6\xf1\x90\x3c\x1d\x10\x2b\x15\x02\x16\x49\x5b\xde\xe9\xcc\x06\xbc\xa6\x62\xa4\xe9\x1d\xc1\x17\xbf\x52\x6b\xc3\x20\xee\x36\x68\x3a\x2c\x08\xb8\xb6\x06\x84\x83\xf2\xb0\x93\x7b\x42\x56\x79\x3a\x5f\xd1\x20\x04\x2b\x28\x51\x65\x64\xa6\xb4\x0a\x7b\x42\x32\x38\x99\x3f\x71\xfe\x5a\x95\x18\x54\x85\x60\xdb\xf3\x44\x67\x23\xd8\x6d\x54\xbe\x81\x0a\x25\x3b\x46\x4e\x45\xae\xd1\x04\xb1\xb3\x8d\x2e\x00\xbf\x28\x4f\x5c\x2d\xb0\x54\x46\x05\xd4\xfb\x84\xb9\xd2\x72\x47\x24\xcb\x8e\xa9\x3f\x60\x9a\x48\x5b\x90\xa2\xff\xb2\xd1\x1a\xc6\x8b\x59\x97\x88\xb3\x9a\x72\x87\x68\x99\x40\x8a\x5c\x98\x71\x9a\x3e\xbc\x9f\xce\xde\xc0\x18\x16\xf7\xef\x26\x04\x52\x86\xda\xee\x04\x75\x50\x81\x41\x2a\xed\xc1\x1a\xd8\xd8\x1d\x7c\x68\xe9\x1e\x5d\x78\x76\xe9\x13\x91\x4c\xe7\x62\x41\xde\xf9\x79\x1d\x88\xbf\x95\xdc\x43\x86\x50\xa3\x2b\xad\xab\x08\x64\x15\x36\xb6\x09\x10\x2b\xb9\x27\x9c\xbb\xfe\x0c\x16\x7c\x2d\x77\x86\x09\x93\x88\x8f\x54\x0e\x65\xb6\xf6\x89\x58\xda\x96\x60\x04\xb9\xc3\x02\x4d\x50\x52\xc7\xea\x79\xdb\xb8\xbc\x63\x59\x81\x25\xbb\xd2\x36\x97\x81\x6b\x77\x8e\xc9\x3a\x11\x03\xaa\x8d\x20\xb7\xa6\x54\xeb\xc6\xf1\x17\x50\x2a\x8d\x7e\x04\xca\xf8\x20\x4d\x8e\x50\x3b\x4b\x8f\x46\x80\x21\x4f\x2e\x92\x67\x78\xd3\x29\x64\x20\xbc\xff\x9f\x19\x3a\x2a\x95\xdf\x8c\xfc\x66\xf4\x97\xb7\x66\xb4\x2a\xa7\x79\xe3\x83\xad\x56\xe5\xfc\x1f\x6d\x1d\xf6\xb0\xa3\x36\x8a\x86\x74\xc6\xc6\xe3\xa8\x4b\xd4\xd3\x83\x8e\xc9\xa8\x35\x39\x8e\x04\xa1\xb6\x1b\xb4\x51\x7c\x2a\x62\x83\x1d\x7c\x11\xc1\x23\xf0\xd1\x09\x65\xb3\x2a\x17\x23\xd6\x89\x61\x87\xb0\x3b\xfa\xba\x95\x4e\xf0\x8d\x0a\xd4\x70\xac\x90\xb8\x95\xba\x89\x70\x1c\x44\xb2\x6b\xb5\x18\x34\x69\xdd\xd1\x39\x8f\x1d\xd2\xc7\x95\xac\x89\x5f\xe4\x06\xf9\x4c\x19\x31\x9e\x68\x0c\xb2\x4b\xb7\xf1\x58\x36\x1a\x94\x11\x36\x6c\xd0\x11\xd0\x6b\x27\xab\xea\x99\x46\xf9\x51\x5b\x6c\x0a\x60\x2c\xf9\xc8\x75\x53\x20\xc7\x91\xce\xc9\x7d\x8c\xd4\x0a\x99\x88\xc1\x1c\x56\x76\xcb\x9d\x3e\x9d\x8b\x69\x64\x7a\x1b\xd7\x07\xc7\xdd\xdc\xd4\xb5\x56\x58\x40\x61\xd1\xb3\xe3\x4a\x86\x7c\x03\xd6\xf4\x3d\x5a\x3b\x5c\x5d\x72\xdf\x11\x9f\xd8\xda\x0b\x15\x25\x90\x82\x28\x13\xd0\xd5\x0e\x23\xf7\x41\x42\xc0\x2f\x01\x02\x56\xb5\x26\xf5\x8c\x5a\xbd\xb6\x5a\x9a\xf5\x0b\x0f\x59\xa3\x74\x58\x5d\x2a\xd3\xd6\x86\x3e\x7e\xd9\x7d\x4c\x10\xd6\x32\x7f\x92\x6b\x64\xbd\x26\x74\xdc\xc1\x55\x17\xb1\x4f\x5a\xd2\x31\x1a\xe2\x81\x0a\x1b\x4a\x56\x94\x0a\x75\xe1\xa9\x9c\x9a\xf3\xe5\x6e\x4d\x60\xac\xbd\x05\xb9\x95\x4a\x73\x75\xa9\x43\x64\x5b\x3a\x87\xb5\x96\x39\x87\x2e\x1b\x93\x47\xf6\x5b\x07\x6b\xdf\x64\xa0\xd5\x13\x8a\x0c\x37\x72\xab\x68\x64\x9a\xa2\x37\xeb\x2a\xde\xdb\x44\x82\xca\x3c\xc7\x3a\x78\xee\x5e\xdd\x20\x9b\x10\x1f\xe8\x09\x61\x14\xf6\xa2\x76\x84\x58\x01\xff\x4a\xef\x67\x6d\x19\x62\x81\xc6\x34\xc8\x00\xbf\xc8\xaa\xa6\x4e\x0b\xb6\x63\xe5\x5f\x8d\x0f\xfd\x7c\x1b\x76\x3a\x13\x89\xfd\xc4\xba\x8c\x08\x30\xc6\x21\x36\x5c\x0f\xdd\x35\x3c\x6f\x56\x78\xf1\xf5\x2b\xd0\x21\x20\x19\x7f\x4c\x6f\x1c\x16\x1e\xbe\x7d\x7b\xb1\x2a\x17\x22\x59\xa6\x42\x6a\x9d\xd9\x2f\xff\x27\xf2\x0c\xf8\x9f\xd0\xa0\x41\xff\xd2\xff\x89\xf8\x83\x8a\x00\x33\x59\xe1\xd9\x72\x5f\xe3\x19\x0d\x18\x2f\x6e\xe2\x0c\x3a\x8b\x47\x3e\x5b\x76\x2a\xdc\xce\x26\xa0\x82\xf5\xc3\x37\x2a\x5c\xb7\xfc\xb4\x6c\x27\x22\x59\x56\x50\x2f\xba\xa4\xcf\x22\x03\xd8\x1d\xc1\x43\x05\xf0\x9e\xb7\x00\xaa\x62\x3b\x64\x94\x35\xbd\x45\x32\xbd\xed\x72\x98\xde\xf6\x1f\x1d\xdb\x1e\x3e\x4e\x79\xb4\x77\x06\xf1\xaf\xff\x68\xb4\xb4\x4f\x68\x0e\x36\x71\x69\x09\xf4\xf0\x07\xa6\x70\xce\x07\x8f\x34\xc6\xaa\xb6\x4e\xba\xfd\xb0\xd4\x17\x22\xc5\x70\x56\xc9\xfa\x73\xf4\xfa\x67\xeb\x7c\xdc\x89\xcc\xe9\x7d\xe6\xa0\x39\x52\x5b\xb3\xee\xfb\x44\xb9\x56\x95\xc4\x83\xf1\x18\xce\x3e\x1f\xfc\x79\xad\x72\x3c\x12\x13\x38\x12\x93\xc3\xe2\x32\x0c\x99\x61\x69\x1d\x47\xe2\x25\xc1\xe0\xae\x0b\x90\x2c\x27\x3c\xa9\xe9\xc0\x6f\x27\x9f\x78\xe9\xe8\x46\x65\xe3\xd1\xd3\x14\xac\xa4\x21\x27\x43\x6a\x9f\x58\xe1\x8e\x96\xb2\x1e\x25\x31\xb4\x8a\x62\x43\xa1\xd2\x65\x1a\x25\xe4\xb0\xf2\x3d\x9f\x91\xdd\xc4\x8b\x8c\xd3\xd2\x73\x61\x79\x7d\x29\xba\x39\xd8\x6a\x60\x8c\xdf\xad\x9f\xe7\x03\xcb\xad\xea\x14\xa1\x5f\x77\x0b\x45\xa3\xf0\xa2\x5d\x00\x4f\x55\x13\x2a\xea\xe8\xac\xa5\xbb\xa2\x35\xae\x20\xa1\xeb\xf6\x0f\x90\xbc\x3d\x7c\xbf\xa1\x65\x98\x4b\x6a\xf1\x0e\xc0\xe1\xc0\xf4\x4d\xe6\x83\x0a\x0d\x9f\xf5\x34\xa8\x54\x7e\x71\x92\x5f\x23\x3e\xe6\xf0\xdb\xbd\x6d\x68\x18\x6d\x55\xc1\x8b\x51\x17\x91\x56\x97\x7e\x4c\x88\xb0\xb1\x1e\xa3\x0c\xf1\x92\x82\x45\x07\x52\xf2\x7d\xa1\xa9\x2c\xb4\x4e\x14\xd2\x15\x3f\xe0\x2b\x75\xc7\x20\x89\x6b\x91\x2c\x52\xd2\x46\x58\x9d\x67\x0d\xbc\x6a\x67\xc6\xf8\x63\xfa\x38\xbe\xb9\x99\xa4\xe9\xe3\xdb\xc9\xa7\xc7\xe9\x2d\xab\x56\xe6\xc4\xd8\x80\x62\xdb\x52\xa1\xeb\x5b\xed\xd0\x66\x09\x3c\x18\xf5\x37\x6f\xa9\x80\x32\xdf\x70\x67\xd8\x72\x80\x16\xd5\xff\x14\x3e\xc9\xe9\x2c\xd2\xc9\xcd\x62\xb2\x1c\x24\xd3\x65\xb2\xec\x6f\x05\xbd\xa4\x79\xb5\x36\xe0\xf0\xef\x06\x7d\xf0\xff\x83\x4c\xd2\x74\x7a\x3f\x7b\x5c\xde\xbf\x9d\xcc\x68\x30\xbd\x84\xa3\x34\x1f\x16\xd3\xe5\xa7\xfe\x2d\xe7\x38\x8f\xd5\x6d\x57\xfc\xd8\x3a\xa7\x43\xfe\xcc\x15\x2d\xfe\x2d\x4f\x0a\xc1\x34\xac\x6b\xeb\x02\x68\x5c\xcb\x7c\x0f\xe9\xed\x5b\x4a\x79\xd1\x8a\xc0\xf1\x3e\xcd\x1c\x19\x3f\x5b\xbe\x21\x97\x86\x55\xab\x5b\xb5\x00\x15\xaf\x46\x4c\x33\xee\xb2\x17\xfe\xd9\xba\x7a\xbe\x55\xf2\xf9\xad\xb3\x6d\x43\xba\x22\x1d\x5c\x51\xbb\x1e\x2e\x5d\xc7\x77\x85\x38\x5a\x8e\x89\x5b\x2a\xe7\x43\xaf\x3a\xf1\xa6\x99\xcb\x7c\x73\x74\x1d\xed\x88\x16\x55\xe2\x9c\x3d\x0e\x56\x78\x31\xb8\x2d\xef\xa4\x3f\x64\x73\xc1\xee\xb8\x37\xc2\x91\x52\xf9\x7e\x64\x74\x77\x84\x48\xe4\x88\x0f\xc1\x25\x72\x49\xdb\x27\xdf\xbc\xa4\xd6\x76\xe7\x87\xf7\xa9\x56\xb1\x39\xd1\xa2\xbd\xed\x93\xfe\xa3\x3b\x28\x5b\xd8\x48\x33\xf0\x2a\x9c\xa5\x59\x2c\xb5\x6e\x97\x6c\x72\x0a\xe7\x95\xfc\xa2\xaa\xa6\x22\x6a\x5e\xc1\xc6\x36\xee\xa2\x0f\xea\x6d\x7f\x5f\x93\xe1\x64\x7e\x4c\x8d\xfe\x8e\xc3\x34\xe7\xcb\x9f\xe4\xf9\x30\x54\x00\xe5\x7b\xfd\xe8\xc7\xcb\x91\x90\xf0\xb5\x67\x00\x2c\xc5\x18\xb5\x4b\x76\xcc\xf0\xb9\x64\x9f\xd6\x7d\xe5\xe1\x4a\xd0\x39\x46\xe0\x70\x2d\x5d\xa1\x49\x1a\x5a\x93\xde\xc5\x81\x2f\xc3\xf9\xf3\x9c\x75\x31\xb3\xa9\x01\x59\x14\x2a\xb4\xb0\xc7\xaf\x3b\x3d\x3b\x38\x92\x99\xdd\xe2\xa8\x97\xd1\xb6\x63\x7c\x6f\x2b\xb5\x38\x2d\x89\x3c\xb2\x95\x89\x5b\x1b\x05\x91\x19\xdd\x14\xbb\x4b\xeb\x0f\x24\xf2\xc3\xf8\xe1\xdd\x72\x72\xfb\x38\x99\x7d\x78\xa4\x4e\x7b\x1c\x2f\x66\x43\x6d\x3a\x79\xff\x8d\xf5\x2b\x4e\x28\xcc\xf7\xee\x6e\x6e\xee\x1f\x66\xcb\x81\xf6\x2e\xa3\xd2\xda\xc6\x04\x98\xde\x0e\x4e\x9e\xed\x0f\x11\xc6\x8b\xd9\xaf\x78\x9f\x8d\xdf\x4f\x86\x7e\xa9\x7b\x8e\x32\xfd\xaf\xbc\xcf\xc7\xcb\xbb\xa1\xf7\x5a\x86\xcd\x2f\x7b\x5f\x44\xd1\xfa\x83\xee\x87\x71\x53\xbf\xe6\x07\x5c\x05\x53\xf6\x3f\xc9\xc5\x3b\xe9\x41\x60\x40\x3a\x73\x2d\x77\xfe\x5a\xc9\xea\xfa\xfa\xea\xea\xea\xd5\xab\x57\xbf\xfd\xf6\xdb\xef\xbf\xff\x7e\x4d\xde\x5f\xa6\x4d\x8d\x6e\x41\x9d\x93\x94\xaa\x0f\x13\x7f\xfc\x88\x54\xee\xb8\x58\x5a\x6a\xcd\xe3\x1f\xc0\x32\xe4\xb6\xe8\x2f\x38\xca\xc0\xd7\xaf\x49\x8a\xe1\xdb\xb7\xe3\xf4\x4e\xf1\xe2\xf5\x2f\xa7\xf6\x13\x1a\xbc\x1e\xda\x7d\xff\x21\x55\xf4\xf5\x4f\x1c\x51\x4d\x5e\xbf\x3c\x9c\x3d\xbd\x83\x37\x0f\x53\x98\x4b\xef\x77\xd6\x15\x30\x77\xb6\xaa\x83\xe7\xb3\xbc\x79\x98\xae\x2e\x33\x49\x63\xb5\xee\xde\xd7\xf1\x7d\x37\x3b\x78\xe6\x66\xfb\x7e\x1f\x3d\x48\x7e\x17\x79\x9c\xbe\x9d\x8f\xd3\x94\x78\xd0\xc1\xd8\xff\xea\x73\x98\x22\xe7\x57\x17\x7c\xc9\xb3\x0e\x2a\xda\x6f\xdb\x9f\x7c\x12\xf1\xef\x00\x00\x00\xff\xff\x5b\x48\xf9\xe8\x9a\x15\x00\x00") func vaultedEnv1Bytes() ([]byte, error) { return bindataRead( @@ -178,7 +220,7 @@ func vaultedEnv1() (*asset, error) { return a, nil } -var _vaultedLoad1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x5c\xce\x5f\x6a\x03\x21\x18\x04\xf0\x77\x4f\x31\x17\x88\xd0\x23\xb4\x69\x20\x16\xea\xca\x9a\x97\x82\x2f\xb2\x7e\x12\x61\xab\x41\xbf\xdd\x5e\xbf\x54\xfb\x8f\xbc\x0d\x0c\xc3\x6f\xe4\xe5\x8c\xdd\x6f\x2b\x53\x70\x87\xb5\xf8\x80\x07\x21\xed\x19\xfa\xf1\xf5\x24\xa4\x31\xe2\xbb\x44\xef\xdc\x01\x5b\xa3\x86\x17\x3b\x69\xdc\x6a\xd9\x53\xa0\x00\x2e\x68\x1c\x52\xfe\x0a\x4b\x25\xcf\x84\x52\x51\xe9\xb6\xfa\x85\xc0\x57\xc2\x52\x32\x53\x66\x94\x08\x3f\xb8\x8e\xd8\x37\x3d\x19\xab\x6c\x87\x5c\x7c\x72\xf1\xf8\x9f\x73\x71\x86\x8b\x2a\xfb\x77\x72\xd1\xf4\xc5\xf3\xc9\x1e\x67\x65\x2e\x6a\xd2\x7d\x34\x0f\xa4\xdd\x2b\x7f\x33\x7c\x24\xbe\x8e\xc3\x3f\xfd\xef\xf1\x3d\xf9\xf1\x5c\x8a\xcf\x00\x00\x00\xff\xff\x29\xac\xab\x44\x08\x01\x00\x00") +var _vaultedLoad1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\x5f\x6a\x03\x21\x18\x04\xf0\x77\x4f\x31\x17\x88\xd0\x23\xb4\x69\x20\x16\xea\xca\x9a\x97\x82\x2f\xb2\x7e\x12\x61\xab\x41\xbf\xdd\x5e\xbf\x54\xfb\x8f\xbc\x0d\x0c\xc3\x6f\xe4\xe5\x8c\xdd\x6f\x2b\x53\x70\x87\xb5\xf8\x80\x07\x21\xed\x19\xfa\xf1\xf5\x24\xa4\x31\xe2\xbb\x44\xef\xdc\x01\x5b\xa3\x86\x17\x3b\x69\xdc\x6a\xd9\x53\xa0\x00\x2e\x68\x1c\x52\xfe\x0a\x4b\x25\xcf\x84\x52\x51\xe9\xb6\xfa\x85\xc0\x57\xc2\x52\x32\x53\x66\x94\x08\x3f\xb8\x8e\xd8\x37\x3d\x19\xab\x6c\x87\x5c\x7c\x72\xf1\xf8\x9f\x73\x71\x86\x8b\x2a\xfb\x77\x72\xd1\xf4\xc5\xf3\xc9\x1e\x67\x65\x2e\x6a\xd2\x7d\x34\x0f\xa4\xdd\x2b\x7f\x33\x7c\x24\xbe\x8e\xc3\x3f\xfd\xef\xf1\x3d\xf9\xf1\x5c\x8a\xcf\x00\x00\x00\xff\xff\x29\xac\xab\x44\x08\x01\x00\x00") func vaultedLoad1Bytes() ([]byte, error) { return bindataRead( @@ -198,7 +240,7 @@ func vaultedLoad1() (*asset, error) { return a, nil } -var _vaultedLs1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x5c\x8d\x41\x0a\x83\x30\x10\x45\xf7\x39\xc5\x3f\x80\x06\x7a\x84\xd6\x0a\x0a\xad\x06\xc7\x4d\x21\x1b\x8b\x11\x02\x83\x29\xce\xd8\xf3\x17\xd2\x42\xc1\xed\xbc\xf7\xe6\xdb\xb1\xc1\x7b\xda\x59\xc3\xec\x4b\x16\x9c\x8c\xa5\x06\xdd\xf9\x5e\x1b\xeb\x9c\xf9\x21\xb0\xc0\x97\xe0\x28\x2a\x98\x98\xbf\x89\x64\x97\x1e\x5d\xef\xa8\xa5\xec\xfb\xe5\xe2\x97\xea\x5f\xf9\x65\x30\xf6\xb9\x1d\xef\x51\x34\x13\x6a\x70\xad\xa9\x1a\x5a\x37\xb6\x7d\x97\x3f\xdc\x0e\x1b\x05\xd2\x1a\xf0\x0a\x1b\x38\xae\xa1\x80\x26\x88\xce\x69\x57\x6b\x3e\x01\x00\x00\xff\xff\x32\x37\x94\xc4\xbc\x00\x00\x00") +var _vaultedLs1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x41\x0a\x83\x30\x10\x45\xf7\x39\xc5\x3f\x80\x06\x7a\x84\xd6\x0a\x0a\xad\x06\xc7\x4d\x21\x1b\x8b\x11\x02\x83\x29\xce\xd8\xf3\x17\xd2\x42\xc1\xed\xbc\xf7\xe6\xdb\xb1\xc1\x7b\xda\x59\xc3\xec\x4b\x16\x9c\x8c\xa5\x06\xdd\xf9\x5e\x1b\xeb\x9c\xf9\x21\xb0\xc0\x97\xe0\x28\x2a\x98\x98\xbf\x89\x64\x97\x1e\x5d\xef\xa8\xa5\xec\xfb\xe5\xe2\x97\xea\x5f\xf9\x65\x30\xf6\xb9\x1d\xef\x51\x34\x13\x6a\x70\xad\xa9\x1a\x5a\x37\xb6\x7d\x97\x3f\xdc\x0e\x1b\x05\xd2\x1a\xf0\x0a\x1b\x38\xae\xa1\x80\x26\x88\xce\x69\x57\x6b\x3e\x01\x00\x00\xff\xff\x32\x37\x94\xc4\xbc\x00\x00\x00") func vaultedLs1Bytes() ([]byte, error) { return bindataRead( @@ -218,7 +260,7 @@ func vaultedLs1() (*asset, error) { return a, nil } -var _vaultedRm1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3e\xc5\x5b\x65\xd5\x08\x7a\x84\x36\x0d\xc4\x8b\x26\xc2\xf6\xa6\x30\x1b\xd9\x1a\xd5\x02\x5b\x4a\xf5\x13\x9a\xdb\x17\x2b\x82\xb6\xbb\x81\x79\xdf\xfb\x66\xc4\x70\xc2\x4d\xe5\x25\xb1\xa6\x7d\x58\xf1\xdc\x88\xfe\x84\xf3\xcb\xfb\xb1\x11\x52\x36\x75\x85\xb0\x82\xf6\x08\xbc\xfa\x1b\x47\xf0\xb7\x8d\xc9\xba\xcf\x07\x19\x0b\xd2\x7f\x9c\x2f\xb2\x6f\xfb\x82\x91\x79\x25\x73\xf8\x85\xc9\x74\x20\xd3\x3a\xb5\x32\x19\xb9\x8d\xb4\x13\x42\x90\x91\x85\x7d\x3b\xf6\x87\xae\x95\x43\x7b\x39\x17\xbc\xab\x9e\x34\x73\x55\x20\x5e\x79\xb2\xc6\xb2\xc6\x78\xff\x53\x45\x3b\x81\x61\xe6\xed\xa2\x84\xc9\x6b\x86\x8d\xe0\xaf\xac\x16\x24\x5f\x78\x97\xd7\x91\x03\xbc\x69\x6a\x53\x9a\xd5\x16\xcd\x8b\x86\xf3\x09\x23\xd7\xb7\xb4\x28\xee\xd6\x40\x3d\xa4\x98\x94\xfb\x9f\x78\x2a\x8d\x1c\x82\x0f\x9b\x47\xdb\x78\x5d\xd4\x9d\x35\xbc\x43\x4c\xda\xe7\x24\x9a\x9f\x00\x00\x00\xff\xff\x85\x0f\x9d\xfc\x51\x01\x00\x00") +var _vaultedRm1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3e\xc5\x5b\x65\xd5\x08\x7a\x84\x36\x0d\xc4\x8b\x26\xc2\xf6\xa6\x30\x1b\xd9\x1a\xd5\x02\x5b\x4a\xf5\x13\x9a\xdb\x17\x2b\x82\xb6\xbb\x81\x79\xdf\xfb\x66\xc4\x70\xc2\x4d\xe5\x25\xb1\xa6\x7d\x58\xf1\xdc\x88\xfe\x84\xf3\xcb\xfb\xb1\x11\x52\x36\x75\x85\xb0\x82\xf6\x08\xbc\xfa\x1b\x47\xf0\xb7\x8d\xc9\xba\xcf\x07\x19\x0b\xd2\x7f\x9c\x2f\xb2\x6f\xfb\x82\x91\x79\x25\x73\xf8\x85\xc9\x74\x20\xd3\x3a\xb5\x32\x19\xb9\x8d\xb4\x13\x42\x90\x91\x85\x7d\x3b\xf6\x87\xae\x95\x43\x7b\x39\x17\xbc\xab\x9e\x34\x73\x55\x20\x5e\x79\xb2\xc6\xb2\xc6\x78\xff\x53\x45\x3b\x81\x61\xe6\xed\xa2\x84\xc9\x6b\x86\x8d\xe0\xaf\xac\x16\x24\x5f\x78\x97\xd7\x91\x03\xbc\x69\x6a\x53\x9a\xd5\x16\xcd\x8b\x86\xf3\x09\x23\xd7\xb7\xb4\x28\xee\xd6\x40\x3d\xa4\x98\x94\xfb\x9f\x78\x2a\x8d\x1c\x82\x0f\x9b\x47\xdb\x78\x5d\xd4\x9d\x35\xbc\x43\x4c\xda\xe7\x24\x9a\x9f\x00\x00\x00\xff\xff\x85\x0f\x9d\xfc\x51\x01\x00\x00") func vaultedRm1Bytes() ([]byte, error) { return bindataRead( @@ -238,7 +280,7 @@ func vaultedRm1() (*asset, error) { return a, nil } -var _vaultedShell1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x56\x51\x6f\xdb\xba\x0e\x7e\xf7\xaf\xe0\xdb\x4d\x81\xd4\x45\xbb\x3d\xf5\xa2\x0f\xbe\x6d\xee\x6a\xb4\x4b\x8d\x28\xdd\x50\x5c\x5f\x14\x8a\x4d\xc7\xc2\x6c\xc9\x93\xe4\x64\xf9\xf7\x07\x94\x6c\xc7\x69\xbd\x62\xc0\xc1\x79\x4b\x2c\x91\xfc\x48\x7e\xfc\xa8\x70\x7d\x0f\x3b\xde\x56\x16\xf3\xf4\xdc\x94\x58\x55\x70\x19\x84\xec\x1e\x96\xd1\xd7\x45\x10\x26\x49\xd0\x9d\x82\x3f\x4c\xcf\xc1\x58\xae\xad\x01\x2e\x41\x48\x8b\x9a\x67\x56\xec\xb0\x3b\xde\x0b\x5b\x82\x2d\x11\x0c\x66\x1a\xad\x81\x42\x69\xf7\xdf\x79\x81\x4a\xf1\x1c\x73\xb2\x53\xfe\x16\x19\xb9\x70\xec\x65\xf9\x94\xb0\x98\xb9\x90\x69\xf1\x9f\xb4\xb8\x3d\x09\x9c\x16\x2b\x48\x8b\x58\xf2\x1a\xd3\x22\x81\xff\xa5\x45\xfc\x94\xac\xe3\xa7\x25\x4b\x8b\xe4\xff\x41\xb8\xd1\x53\x56\x90\x9e\xa7\xe7\xdc\x98\x96\xac\x9c\x03\xae\xe5\xa4\x3d\xbb\x87\xbb\x05\xbb\x5d\xc5\xee\xa3\x43\xc1\x3e\xc8\x73\xd6\x1a\x34\x2e\x05\x1f\x95\xdd\x2f\x1e\x1f\x29\x04\xca\x9d\xd0\x4a\xd6\x28\x2d\xec\xb8\x16\x7c\x53\xe1\x1c\x44\x01\x06\xed\xbf\x03\x65\x4b\xd4\x7b\x61\x10\x72\x2c\x08\xa8\x01\xab\x3a\x17\x17\x1b\x21\x2f\x4c\x99\x16\xab\xb3\xd0\xe1\xe9\xf0\x05\xe1\xba\xaf\xc8\x6f\xb2\x09\x58\x83\x99\x28\x44\x87\xa8\x68\xab\x0a\xa2\xd5\x12\x54\xe1\xfe\x6b\x55\x21\x85\xf1\x96\x21\x30\x74\xa8\x23\xc6\x9e\xbf\xc6\xcb\x2f\x10\xc1\xea\xe9\x71\x41\x55\xd9\x60\xa5\xf6\x01\xb5\x2c\x47\xcb\x45\x65\x40\x49\x28\xd5\x1e\xbe\x75\x45\xf5\x2e\x8c\x73\x69\xc2\x20\x8c\x93\x60\x45\xde\xdd\xf7\xc6\x0a\x25\xa1\xe6\x07\xd8\x20\x34\xa8\x0b\xa5\x6b\xcc\x1d\x25\x54\x6b\xc1\x38\x90\x07\x21\xb7\xc0\x3b\x3a\x58\x05\xa6\xe1\x7b\x09\x85\x56\x75\x18\x7c\x2f\x91\x6a\xbd\x53\x3f\x30\x07\x5b\x0a\x03\x7b\x7e\x98\x43\xa6\x31\x47\x69\x05\xaf\x0c\x70\x8d\x60\x54\xab\x33\xcc\x9d\x51\x5f\x47\xa8\x54\xc6\x29\xbe\x81\x19\x86\xdb\x30\x18\xf5\x61\x0e\x99\x92\x85\xd8\xb6\xda\xdd\x80\x42\x54\x68\xe6\x20\xa4\xb1\x5c\x66\x08\x8d\x56\xf4\x69\x0e\x68\xb3\xb0\xab\x7d\xf4\x9d\xc1\xc3\xe2\xc5\xf1\xa0\x4f\xde\xb5\xbc\x41\x5d\x73\x49\xdd\x1d\xc3\x32\x56\x69\xc7\xeb\x11\xd7\xad\x82\x2d\x4a\xd4\xdc\x22\x58\xac\x1b\xa5\xb9\x3e\x04\x63\xab\xd6\x50\x31\x28\x14\x5b\xb3\x10\xd6\xd4\x2b\x34\x6d\x65\xe9\xf3\xdb\xac\xfb\x1c\xa8\x34\x0a\x2a\x6e\x2c\xcd\x56\x40\xf1\xf2\x3e\xb3\xae\xe1\x3e\xbe\x41\x63\xe8\xe3\x6c\x64\xb9\x13\x1c\x4e\xc7\x04\x73\x61\x3b\xca\x25\x49\xb0\xee\x71\x9e\x84\xaf\x5b\x63\xa9\xa7\xad\xf1\x39\x2a\x9d\xa3\x3e\x32\x0a\xb8\xe3\x43\xd8\x8d\x6e\xbc\x54\x16\xaf\x3d\x9d\x32\xde\x1a\x1c\xd8\x33\xe6\xbc\x69\x37\xc6\x0a\xdb\xba\x5c\xa7\x8b\x4a\xc4\x09\xec\x14\xa2\xb9\x4b\x73\x7c\xf7\xa0\x5a\xea\xe3\x4e\xe4\x8e\xea\x7d\x44\x22\xa3\x54\x16\x6a\x6e\xb3\x32\xb0\xa5\x32\x48\x09\x70\x4f\x3b\x52\x09\x5f\xa4\xf0\x7d\xa3\xa9\x2d\x44\x90\x9c\xeb\x7c\x72\xaa\xbd\xb6\x8d\x40\x5c\x07\xe1\x8a\xd1\x4c\x40\x3a\xdb\xb4\x70\xd5\x0d\x6d\xf4\x9d\xbd\x46\xb7\xb7\x0b\xc6\x5e\x1f\x16\x2f\xaf\xf1\x5d\x5a\xac\x9c\x5e\x45\x12\x84\xb3\x2d\x04\xea\x41\x28\x79\x96\xa1\x31\xf0\x03\x0f\x21\x3c\x4b\xf1\xb3\x75\x09\x21\xcf\x4a\x92\x10\x6a\xf1\xb1\x5a\xd4\xff\xa9\xfa\x84\xd3\x28\xd8\xe2\x76\xb5\x58\x8f\xc0\xf4\x48\xd6\x83\x60\xfb\x1e\x53\x7f\xc4\x56\x82\xc6\x9f\x2d\x1a\x6b\xfe\x01\x24\x8c\xc5\x4f\xcb\xd7\xf5\xd3\xc3\x62\x49\x5a\x76\x01\x27\x30\x9f\x57\xf1\xfa\x65\x38\x75\x18\x13\xdf\xdd\x1c\xf6\xa4\x12\x7e\x74\xa6\x43\x7e\xe4\x0a\x84\xe9\x79\x92\x07\x8e\x86\x4d\xa3\xb4\x85\x0a\xb7\x3c\x3b\x00\xbb\x7b\x20\xc8\xab\x85\x17\x81\x53\x85\x74\x1c\x89\xde\xc8\x29\x64\x5c\xd2\x6c\x98\x4e\x82\x73\x40\x41\x22\xef\x69\xe6\xa6\xec\x5f\xe6\x8d\x00\xcd\x76\x82\x07\xd3\x63\x08\x4a\x8f\x5c\xd1\xb8\x1e\x77\xcc\xa9\xfa\x2b\x27\xb7\xa7\xc4\x2d\x84\x36\x76\x50\x1d\x5a\x5d\x39\x64\x3c\x2b\xe9\xe7\xa0\x07\xa7\x1b\x79\xe6\x3c\x8e\x44\x39\x18\x6d\xd9\x3d\x37\x47\x34\x67\xce\xdd\xb0\xf7\x8e\x4a\xd5\x3b\xb6\xaa\x57\x7d\x4f\x64\x5f\x1f\x2a\x57\x90\xf1\xaa\x22\x81\x13\x06\x78\x55\xa9\xbd\xe9\xde\x08\x83\xe1\x06\x3d\xd0\xdc\xc1\xe3\x50\x29\xb9\x45\x7d\x54\x36\x5b\x72\x39\xf2\x1a\x68\x55\x55\x40\x5e\x61\x2f\xaa\xca\x3b\x85\x59\xcd\x7f\x89\xba\xad\x89\x9a\x97\x50\xaa\x56\x9f\x0d\x41\x8d\x82\x1a\xb9\xa4\xc0\xdc\x4e\xe2\x73\xd4\x18\xb6\x96\xa3\xb9\x15\x4e\xdd\x24\xee\x4f\x14\x40\x98\x41\x3f\xdc\x0e\x1a\xe5\xe2\xfb\xe1\x16\xd9\xa8\xb0\x14\xc3\x6b\x56\x8f\xf0\xad\x64\x4f\xeb\xbe\x30\x70\x19\x50\x1e\x73\xd0\xb8\xe5\x3a\xaf\x48\x1a\x3a\x93\xc1\xc5\x91\x2f\xe3\xfd\xf3\x96\x75\x1e\x59\x2c\x81\xe7\xb9\xb0\x5d\xd9\xfd\xed\x5e\xcf\x8e\x8e\xf8\x46\xed\x70\x3e\xc8\x68\x37\x31\x66\xb0\xe5\x55\x30\x2d\x89\xee\xfd\x27\x24\x15\xd1\x83\xe3\x1b\xda\xfd\xfd\x33\xe4\x37\x12\xf9\x2d\x7a\x7e\x5c\x2f\xee\x5e\x17\xcb\x6f\xaf\x34\x69\xaf\xd1\x6a\x39\xd6\xa6\xc9\x17\x8d\xef\x5f\x3e\xa1\x30\xef\xdd\xdd\xde\x3e\x3d\x2f\xd7\x23\xed\x5d\x7b\xa5\x55\xad\xb4\x10\xdf\x8d\x32\xdf\x1c\x8e\x11\xa2\xd5\xf2\x4f\xbc\xd3\x4b\x79\xec\x97\xa6\xe7\x04\xe9\xdf\xf2\x9e\x44\xeb\xfb\xb1\xf7\x86\xdb\xf2\x8f\xbd\xaf\xbc\x68\xfd\x57\x69\xc0\x5f\xbc\x6e\x5c\x07\x92\xc4\x77\x41\x16\xef\xde\xf6\xbd\xc0\x00\xd7\xf2\x9a\xef\xcd\xb5\xe0\xf5\xf5\xf5\xe5\xe5\xe5\xd5\xd5\xd5\xa7\x4f\x9f\x3e\x7f\xfe\x7c\x4d\xde\x2f\x58\xdb\xa0\xa6\x97\x5f\x10\x16\x62\x08\xb3\x57\x6d\x95\x77\x54\xee\xb9\x58\x28\x1a\x4d\x22\xf6\x91\x24\x1b\xf4\xb2\x61\x4f\xc1\x4c\xb1\xe0\xe6\x8f\x81\x7c\xd0\xf4\x9b\xb1\xdd\xfb\x8b\xd4\xbf\x9b\x0f\x1c\x51\x07\x6e\x2e\x8e\x99\xb2\x7b\xf8\xf2\x1c\x43\xc2\x8d\xd9\x2b\x9d\x43\xa2\x55\xdd\x58\xe3\x72\xf9\xf2\x1c\xa7\xe7\x1b\x4e\x4b\xb4\xe9\xcf\x1b\x7f\xde\x6f\x0a\xb7\x61\x37\x07\xca\xdf\x0d\xfc\x51\xe0\xfb\xc8\x11\x7b\x48\x22\xc6\xa8\xeb\x7d\xd1\x86\x57\xfb\x71\x67\xcc\x2e\xcf\x68\x0f\x90\x5e\xd6\x4a\x63\xff\x64\x0f\x83\xbf\x02\x00\x00\xff\xff\x1c\x3b\x8c\x44\xd3\x0d\x00\x00") +var _vaultedShell1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x51\x6f\xdb\xba\x0e\x7e\xf7\xaf\xe0\xdb\x4d\x81\xd4\x45\xbb\x3d\xf5\xa2\x0f\xbe\x6d\xee\x6a\xb4\x4b\x8d\x28\xdd\x50\x5c\x5f\x14\x8a\x4d\xc7\xc2\x6c\xc9\x93\xe4\x64\xf9\xf7\x07\x94\x6c\xc7\x69\xbd\x62\xc0\xc1\x79\x4b\x2c\x91\xfc\x48\x7e\xfc\xa8\x70\x7d\x0f\x3b\xde\x56\x16\xf3\xf4\xdc\x94\x58\x55\x70\x19\x84\xec\x1e\x96\xd1\xd7\x45\x10\x26\x49\xd0\x9d\x82\x3f\x4c\xcf\xc1\x58\xae\xad\x01\x2e\x41\x48\x8b\x9a\x67\x56\xec\xb0\x3b\xde\x0b\x5b\x82\x2d\x11\x0c\x66\x1a\xad\x81\x42\x69\xf7\xdf\x79\x81\x4a\xf1\x1c\x73\xb2\x53\xfe\x16\x19\xb9\x70\xec\x65\xf9\x94\xb0\x98\xb9\x90\x69\xf1\x9f\xb4\xb8\x3d\x09\x9c\x16\x2b\x48\x8b\x58\xf2\x1a\xd3\x22\x81\xff\xa5\x45\xfc\x94\xac\xe3\xa7\x25\x4b\x8b\xe4\xff\x41\xb8\xd1\x53\x56\x90\x9e\xa7\xe7\xdc\x98\x96\xac\x9c\x03\xae\xe5\xa4\x3d\xbb\x87\xbb\x05\xbb\x5d\xc5\xee\xa3\x43\xc1\x3e\xc8\x73\xd6\x1a\x34\x2e\x05\x1f\x95\xdd\x2f\x1e\x1f\x29\x04\xca\x9d\xd0\x4a\xd6\x28\x2d\xec\xb8\x16\x7c\x53\xe1\x1c\x44\x01\x06\xed\xbf\x03\x65\x4b\xd4\x7b\x61\x10\x72\x2c\x08\xa8\x01\xab\x3a\x17\x17\x1b\x21\x2f\x4c\x99\x16\xab\xb3\xd0\xe1\xe9\xf0\x05\xe1\xba\xaf\xc8\x6f\xb2\x09\x58\x83\x99\x28\x44\x87\xa8\x68\xab\x0a\xa2\xd5\x12\x54\xe1\xfe\x6b\x55\x21\x85\xf1\x96\x21\x30\x74\xa8\x23\xc6\x9e\xbf\xc6\xcb\x2f\x10\xc1\xea\xe9\x71\x41\x55\xd9\x60\xa5\xf6\x01\xb5\x2c\x47\xcb\x45\x65\x40\x49\x28\xd5\x1e\xbe\x75\x45\xf5\x2e\x8c\x73\x69\xc2\x20\x8c\x93\x60\x45\xde\xdd\xf7\xc6\x0a\x25\xa1\xe6\x07\xd8\x20\x34\xa8\x0b\xa5\x6b\xcc\x1d\x25\x54\x6b\xc1\x38\x90\x07\x21\xb7\xc0\x3b\x3a\x58\x05\xa6\xe1\x7b\x09\x85\x56\x75\x18\x7c\x2f\x91\x6a\xbd\x53\x3f\x30\x07\x5b\x0a\x03\x7b\x7e\x98\x43\xa6\x31\x47\x69\x05\xaf\x0c\x70\x8d\x60\x54\xab\x33\xcc\x9d\x51\x5f\x47\xa8\x54\xc6\x29\xbe\x81\x19\x86\xdb\x30\x18\xf5\x61\x0e\x99\x92\x85\xd8\xb6\xda\xdd\x80\x42\x54\x68\xe6\x20\xa4\xb1\x5c\x66\x08\x8d\x56\xf4\x69\x0e\x68\xb3\xb0\xab\x7d\xf4\x9d\xc1\xc3\xe2\xc5\xf1\xa0\x4f\xde\xb5\xbc\x41\x5d\x73\x49\xdd\x1d\xc3\x32\x56\x69\xc7\xeb\x11\xd7\xad\x82\x2d\x4a\xd4\xdc\x22\x58\xac\x1b\xa5\xb9\x3e\x04\x63\xab\xd6\x50\x31\x28\x14\x5b\xb3\x10\xd6\xd4\x2b\x34\x6d\x65\xe9\xf3\xdb\xac\xfb\x1c\xa8\x34\x0a\x2a\x6e\x2c\xcd\x56\x40\xf1\xf2\x3e\xb3\xae\xe1\x3e\xbe\x41\x63\xe8\xe3\x6c\x64\xb9\x13\x1c\x4e\xc7\x04\x73\x61\x3b\xca\x25\x49\xb0\xee\x71\x9e\x84\xaf\x5b\x63\xa9\xa7\xad\xf1\x39\x2a\x9d\xa3\x3e\x32\x0a\xb8\xe3\x43\xd8\x8d\x6e\xbc\x54\x16\xaf\x3d\x9d\x32\xde\x1a\x1c\xd8\x33\xe6\xbc\x69\x37\xc6\x0a\xdb\xba\x5c\xa7\x8b\x4a\xc4\x09\xec\x14\xa2\xb9\x4b\x73\x7c\xf7\xa0\x5a\xea\xe3\x4e\xe4\x8e\xea\x7d\x44\x22\xa3\x54\x16\x6a\x6e\xb3\x32\xb0\xa5\x32\x48\x09\x70\x4f\x3b\x52\x09\x5f\xa4\xf0\x7d\xa3\xa9\x2d\x44\x90\x9c\xeb\x7c\x72\xaa\xbd\xb6\x8d\x40\x5c\x07\xe1\x8a\xd1\x4c\x40\x3a\xdb\xb4\x70\xd5\x0d\x6d\xf4\x9d\xbd\x46\xb7\xb7\x0b\xc6\x5e\x1f\x16\x2f\xaf\xf1\x5d\x5a\xac\x9c\x5e\x45\x12\x84\xb3\x2d\x04\xea\x41\x28\x79\x96\xa1\x31\xf0\x03\x0f\x21\x3c\x4b\xf1\xb3\x75\x09\x21\xcf\x4a\x92\x10\x6a\xf1\xb1\x5a\xd4\xff\xa9\xfa\x84\xd3\x28\xd8\xe2\x76\xb5\x58\x8f\xc0\xf4\x48\xd6\x83\x60\xfb\x1e\x53\x7f\xc4\x56\x82\xc6\x9f\x2d\x1a\x6b\xfe\x01\x24\x8c\xc5\x4f\xcb\xd7\xf5\xd3\xc3\x62\x49\x5a\x76\x01\x27\x30\x9f\x57\xf1\xfa\x65\x38\x75\x18\x13\xdf\xdd\x1c\xf6\xa4\x12\x7e\x74\xa6\x43\x7e\xe4\x0a\x84\xe9\x79\x92\x07\x8e\x86\x4d\xa3\xb4\x85\x0a\xb7\x3c\x3b\x00\xbb\x7b\x20\xc8\xab\x85\x17\x81\x53\x85\x74\x1c\x89\xde\xc8\x29\x64\x5c\xd2\x6c\x98\x4e\x82\x73\x40\x41\x22\xef\x69\xe6\xa6\xec\x5f\xe6\x8d\x00\xcd\x76\x82\x07\xd3\x63\x08\x4a\x8f\x5c\xd1\xb8\x1e\x77\xcc\xa9\xfa\x2b\x27\xb7\xa7\xc4\x2d\x84\x36\x76\x50\x1d\x5a\x5d\x39\x64\x3c\x2b\xe9\xe7\xa0\x07\xa7\x1b\x79\xe6\x3c\x8e\x44\x39\x18\x6d\xd9\x3d\x37\x47\x34\x67\xce\xdd\xb0\xf7\x8e\x4a\xd5\x3b\xb6\xaa\x57\x7d\x4f\x64\x5f\x1f\x2a\x57\x90\xf1\xaa\x22\x81\x13\x06\x78\x55\xa9\xbd\xe9\xde\x08\x83\xe1\x06\x3d\xd0\xdc\xc1\xe3\x50\x29\xb9\x45\x7d\x54\x36\x5b\x72\x39\xf2\x1a\x68\x55\x55\x40\x5e\x61\x2f\xaa\xca\x3b\x85\x59\xcd\x7f\x89\xba\xad\x89\x9a\x97\x50\xaa\x56\x9f\x0d\x41\x8d\x82\x1a\xb9\xa4\xc0\xdc\x4e\xe2\x73\xd4\x18\xb6\x96\xa3\xb9\x15\x4e\xdd\x24\xee\x4f\x14\x40\x98\x41\x3f\xdc\x0e\x1a\xe5\xe2\xfb\xe1\x16\xd9\xa8\xb0\x14\xc3\x6b\x56\x8f\xf0\xad\x64\x4f\xeb\xbe\x30\x70\x19\x50\x1e\x73\xd0\xb8\xe5\x3a\xaf\x48\x1a\x3a\x93\xc1\xc5\x91\x2f\xe3\xfd\xf3\x96\x75\x1e\x59\x2c\x81\xe7\xb9\xb0\x5d\xd9\xfd\xed\x5e\xcf\x8e\x8e\xf8\x46\xed\x70\x3e\xc8\x68\x37\x31\x66\xb0\xe5\x55\x30\x2d\x89\xee\xfd\x27\x24\x15\xd1\x83\xe3\x1b\xda\xfd\xfd\x33\xe4\x37\x12\xf9\x2d\x7a\x7e\x5c\x2f\xee\x5e\x17\xcb\x6f\xaf\x34\x69\xaf\xd1\x6a\x39\xd6\xa6\xc9\x17\x8d\xef\x5f\x3e\xa1\x30\xef\xdd\xdd\xde\x3e\x3d\x2f\xd7\x23\xed\x5d\x7b\xa5\x55\xad\xb4\x10\xdf\x8d\x32\xdf\x1c\x8e\x11\xa2\xd5\xf2\x4f\xbc\xd3\x4b\x79\xec\x97\xa6\xe7\x04\xe9\xdf\xf2\x9e\x44\xeb\xfb\xb1\xf7\x86\xdb\xf2\x8f\xbd\xaf\xbc\x68\xfd\x57\x69\xc0\x5f\xbc\x6e\x5c\x07\x92\xc4\x77\x41\x16\xef\xde\xf6\xbd\xc0\x00\xd7\xf2\x9a\xef\xcd\xb5\xe0\xf5\xf5\xf5\xe5\xe5\xe5\xd5\xd5\xd5\xa7\x4f\x9f\x3e\x7f\xfe\x7c\x4d\xde\x2f\x58\xdb\xa0\xa6\x97\x5f\x10\x16\x62\x08\xb3\x57\x6d\x95\x77\x54\xee\xb9\x58\x28\x1a\x4d\x22\xf6\x91\x24\x1b\xf4\xb2\x61\x4f\xc1\x4c\xb1\xe0\xe6\x8f\x81\x7c\xd0\xf4\x9b\xb1\xdd\xfb\x8b\xd4\xbf\x9b\x0f\x1c\x51\x07\x6e\x2e\x8e\x99\xb2\x7b\xf8\xf2\x1c\x43\xc2\x8d\xd9\x2b\x9d\x43\xa2\x55\xdd\x58\xe3\x72\xf9\xf2\x1c\xa7\xe7\x1b\x4e\x4b\xb4\xe9\xcf\x1b\x7f\xde\x6f\x0a\xb7\x61\x37\x07\xca\xdf\x0d\xfc\x51\xe0\xfb\xc8\x11\x7b\x48\x22\xc6\xa8\xeb\x7d\xd1\x86\x57\xfb\x71\x67\xcc\x2e\xcf\x68\x0f\x90\x5e\xd6\x4a\x63\xff\x64\x0f\x83\xbf\x02\x00\x00\xff\xff\x1c\x3b\x8c\x44\xd3\x0d\x00\x00") func vaultedShell1Bytes() ([]byte, error) { return bindataRead( @@ -258,7 +300,7 @@ func vaultedShell1() (*asset, error) { return a, nil } -var _vaultedUpgrade1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x90\x4d\x6e\xc3\x20\x10\x85\xf7\x9c\x62\x2e\x10\xa4\x1e\xa1\x4d\x23\xc5\x8b\x3a\x96\xf1\xa6\x12\x9b\x89\x67\x88\x23\xd9\x90\xf2\x93\xb6\xb7\xaf\xc0\xa1\x0b\x2f\xb2\x43\xbc\xf7\xbe\x4f\x20\x87\x23\xdc\x31\xcd\x91\x49\xef\xd2\xed\xe2\x91\x18\x5e\x84\x54\x47\x68\x5f\x3f\x0e\x42\x76\x9d\x78\xe4\x50\x63\xbd\xab\xc7\x00\x33\x5f\x70\xfc\x5d\x11\x01\xa2\x83\x38\x31\x8c\xc9\x7b\xb6\x71\xbd\x05\xe3\xfc\x82\xb1\x20\xd5\x67\x7b\xea\x54\xa3\x0a\x56\x9b\x37\x6d\xf6\x1b\xb8\x36\x7d\x69\xbe\x1f\xd4\xbe\x6f\xba\xa1\x39\xb5\xa5\xdc\x33\xd2\xd6\x86\x96\x60\x74\xf6\xce\x3e\xab\x27\x5e\x9e\xf9\x25\x0c\x13\x43\xc0\x85\xc5\x0d\x43\xf8\x76\x9e\xe0\x1a\x20\x05\xa6\xdc\x58\x77\x2b\x8c\xe9\x61\x90\x45\x9d\x77\xfc\x73\x8d\x30\x3a\xe2\xbc\xe1\xaf\x84\x73\x75\xd9\xb4\x9c\xd9\x83\x33\xff\x7f\x30\x61\xae\xa6\x99\xc0\xba\x08\x67\xae\x4f\x23\x29\xfe\x02\x00\x00\xff\xff\x93\xa5\x62\x52\x6e\x01\x00\x00") +var _vaultedUpgrade1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4d\x6e\xc3\x20\x10\x85\xf7\x9c\x62\x2e\x10\xa4\x1e\xa1\x4d\x23\xc5\x8b\x3a\x96\xf1\xa6\x12\x9b\x89\x67\x88\x23\xd9\x90\xf2\x93\xb6\xb7\xaf\xc0\xa1\x0b\x2f\xb2\x43\xbc\xf7\xbe\x4f\x20\x87\x23\xdc\x31\xcd\x91\x49\xef\xd2\xed\xe2\x91\x18\x5e\x84\x54\x47\x68\x5f\x3f\x0e\x42\x76\x9d\x78\xe4\x50\x63\xbd\xab\xc7\x00\x33\x5f\x70\xfc\x5d\x11\x01\xa2\x83\x38\x31\x8c\xc9\x7b\xb6\x71\xbd\x05\xe3\xfc\x82\xb1\x20\xd5\x67\x7b\xea\x54\xa3\x0a\x56\x9b\x37\x6d\xf6\x1b\xb8\x36\x7d\x69\xbe\x1f\xd4\xbe\x6f\xba\xa1\x39\xb5\xa5\xdc\x33\xd2\xd6\x86\x96\x60\x74\xf6\xce\x3e\xab\x27\x5e\x9e\xf9\x25\x0c\x13\x43\xc0\x85\xc5\x0d\x43\xf8\x76\x9e\xe0\x1a\x20\x05\xa6\xdc\x58\x77\x2b\x8c\xe9\x61\x90\x45\x9d\x77\xfc\x73\x8d\x30\x3a\xe2\xbc\xe1\xaf\x84\x73\x75\xd9\xb4\x9c\xd9\x83\x33\xff\x7f\x30\x61\xae\xa6\x99\xc0\xba\x08\x67\xae\x4f\x23\x29\xfe\x02\x00\x00\xff\xff\x93\xa5\x62\x52\x6e\x01\x00\x00") func vaultedUpgrade1Bytes() ([]byte, error) { return bindataRead( @@ -278,7 +320,7 @@ func vaultedUpgrade1() (*asset, error) { return a, nil } -var _vaulted1 = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x56\x61\x6f\xdb\x36\x10\xfd\x1c\xfe\x8a\x5b\x06\xac\x31\x90\x28\x29\xb0\x75\x58\x07\x0c\x48\x13\x6f\xf5\xd6\xc4\x82\xe5\x76\x1b\xa6\xa2\xa0\xa5\x93\x4c\x94\x22\x05\x1e\x65\xc7\xff\x7e\x38\x52\x52\x1c\xc7\xc1\x80\x05\x08\x60\x91\xbc\x77\xf7\x1e\x1f\x8f\x4c\x96\xef\x61\x23\x3b\xed\xb1\x84\xd7\x22\xc9\xde\xc3\xfd\xf5\xdd\x54\x24\x69\x2a\x86\xe1\xfc\x02\xa8\x95\x5b\x03\x84\x44\xca\x1a\x82\xca\xd9\x06\x08\x8b\xce\xa1\xde\x01\x79\xeb\xb0\xe4\x6f\x87\x9e\x02\x46\xf6\xf7\xfd\x3c\xcd\x66\x59\xc0\xc9\xab\x77\x79\x75\xd3\xa3\xe5\xd5\x02\xe2\x40\x7e\x61\xe2\xc7\xcc\xc8\x06\xf3\x2a\x85\x7f\x86\x09\x95\x57\x8b\xcf\x22\x59\xb9\xff\x11\x9b\x5f\x70\x30\x4f\xdd\xdc\xdd\xe6\x55\xfa\x52\x09\xb3\x9b\xf9\xdd\xdd\xf5\xfd\x6d\x1f\x3c\x93\xae\xa6\x24\x49\xf2\x2a\xfd\x1c\x28\xdc\x4e\xb3\x9b\xc5\x2c\x5d\xce\xe6\xf7\x01\x62\x56\x81\xb1\x07\x71\x8a\xa0\x75\x76\xa3\x4a\x2c\xcf\xe1\x59\x0e\x54\x7e\x8d\x2e\x6a\x47\x8f\x05\xc1\x99\xaa\xc6\xb0\x09\x58\x27\xfa\x15\xd2\x80\x32\x1e\x9d\x2c\xbc\xda\x20\xd0\x1a\xb5\x4e\xf6\xca\xef\xb9\x41\x23\x77\xb0\x42\xe8\x08\x4b\xf0\x16\x4a\x55\x55\xe8\xd0\x78\x25\x3d\x82\x5f\xe3\x5e\xaa\xb0\x51\x87\x85\xe5\xdf\xbd\x22\xb0\x5b\x03\xd2\xd5\x5d\x83\xc6\x53\x12\x18\xf7\xc4\x32\x91\x2c\x87\x94\xb2\xe4\x00\x31\x7b\x2c\x4b\xef\xa0\x70\x28\x3d\x52\x48\x55\x58\xe3\xd1\x78\xb0\x15\x48\x30\xb8\x8d\x5e\x4a\x20\x43\x04\x91\xbc\x5b\x0c\xde\xba\x90\x65\x09\x67\xaf\x27\xc9\x1e\x78\xd1\x32\x9b\xcb\xbe\xbe\xc2\xb6\x3b\xce\x75\x63\x5b\x75\x0c\x3c\x00\x81\x34\x25\x90\xdc\x20\x81\xf2\x20\x69\x3f\x29\x6c\x95\x5f\xf7\x03\xad\x24\xda\x5a\x57\x1e\x29\xa4\x68\x0f\xeb\x28\xbb\x86\x2b\x11\x7f\x3a\x75\x94\x56\x44\xf7\x16\xc8\x97\xb6\x0b\x69\x7f\xcf\xe6\xf7\x47\xb0\x19\xe9\x10\x1d\x4b\xe5\x9f\x6b\xc8\xa3\xcf\x53\x19\xc0\x07\x45\x5e\x99\xfa\x45\x1d\x39\xf0\x59\x0a\xb3\xe1\x0c\xf3\xce\xb7\x9d\xa7\x68\x1c\x28\x6c\xd3\x48\x53\x72\x12\xe9\x41\x5b\x39\x9e\x50\xa8\xac\x1b\x69\x29\xe3\x6d\xa8\x23\xda\xed\x48\x42\xb3\x39\xcc\xc7\x60\x9c\xf0\x23\x61\x94\x62\xb4\x73\xaf\x92\x32\xfc\x23\xfa\x04\xac\x03\x87\xad\x96\x05\xbe\x20\xed\x91\xa4\xa1\xdc\xc3\xac\xb4\x6f\x17\xad\x28\xc8\xfa\x41\x91\x27\x90\x5a\xc7\x58\x3a\x06\x46\x87\x50\xae\xe1\xd0\x05\x36\x96\x9d\xf4\x54\xf3\x63\x08\xae\x39\x44\x08\x6a\x31\x48\xe6\xa5\xf3\xc7\xcf\x6e\x34\x64\xd0\x76\x4f\x78\xfe\x8e\xd2\x33\x49\x2c\xff\x7b\x07\x22\xd8\x41\x01\x5d\x5b\x3b\x59\x62\xd8\x86\xf8\x93\x40\x63\x2d\x8b\x5d\x4f\x03\x7a\xd4\xa2\x73\xdc\x1c\xfa\x9c\x95\x75\x8d\x3c\xa6\x78\x8f\xd7\xa7\xc9\xde\xc3\xf4\xaf\xd9\x12\x6e\xe6\xb7\x53\xee\x07\x99\x90\x5a\xaf\xec\xc3\xcf\xa2\x58\x41\xb1\x12\x05\xe8\x27\xff\x89\x98\x3e\x28\x0f\x85\x2d\xf1\xe4\x0e\xa5\x51\xa6\x16\x57\x27\x59\x57\x14\x48\x94\x88\x37\xdf\x9f\xcc\xcc\x46\x6a\x55\xc2\xcd\x87\x19\x74\x24\x6b\x84\x33\x42\x84\x06\x29\x7c\xb0\x32\x8d\x75\x08\x25\x7a\xa9\x34\x4d\x12\xf1\xe6\x87\x93\xe5\x1a\x1d\xc2\x56\x06\x7d\x3b\xe3\xb0\xb0\x1b\x74\x72\xa5\x91\x1d\xb7\xd2\xd8\x3c\x6a\xdc\xf3\x53\x1a\x13\xf1\xe3\x4f\x63\xbe\xa1\x13\x00\x75\x6d\xab\x15\x96\x2c\xe2\x34\x30\xfc\xed\xe3\x0c\xd2\x61\x3a\x75\xb6\x69\xf9\xf6\x4a\x53\x71\xad\xfd\xda\x76\xf5\x1a\x3e\xf5\x37\xa0\x77\xa1\x25\x59\x68\xe4\x57\x04\xea\x1c\xc2\xce\x76\x50\x48\x03\x0e\x4b\xe5\xb0\xf0\xbd\x2d\x83\xf9\xd9\xa7\xdc\xa8\x2a\xa7\xd0\x94\x74\x2e\xc8\x36\xe8\x55\x13\xbb\x96\x22\x20\xaf\xb4\x86\xd6\x61\xd5\xb3\xf1\x96\xdb\x39\x48\xae\x29\xbf\x58\x49\x6e\xed\x63\xe5\x6d\x28\x2d\x81\x5f\x83\x7b\x14\x09\x87\x92\xac\x39\x1f\xcb\xe3\x3a\x56\xe1\x64\x55\xaa\xee\x5c\x3c\x86\x01\xcf\x80\xa4\xaf\x0c\x04\xaa\x69\x35\x72\xb3\x97\x5e\x59\x93\x0c\xb1\xaf\x48\x8c\x2b\x8c\xc7\xda\x85\x69\xae\xd1\x3b\x55\xd7\xc8\x60\xdb\x35\x9a\xfe\x5e\x61\x8a\x9f\xae\x3f\x7e\x58\x4e\x6f\xbf\x5c\x67\x7f\xa4\xd7\x59\xc6\x64\x37\xd2\xa9\xc0\x83\xb9\xa1\x8f\x97\x56\x6a\x95\x09\xc7\xea\xc5\x30\x6f\x63\xcb\xc3\xa2\xf3\x21\x9c\x77\x2f\xf6\xab\xb1\x5c\x1a\x19\x6c\x95\xd6\xa2\x90\xcc\x6b\xdc\x97\x48\x33\x22\xc4\xf6\x12\x20\xa8\xc5\x42\x55\x2a\xae\x88\xf2\x85\xc9\x8e\xd0\xb1\xd5\xc4\xa0\x2d\x25\xb0\x0c\x41\x8e\x3c\xb4\xd2\xc9\x06\x3d\xba\x27\xed\x8c\xe3\xf6\x4a\x8c\x57\x7e\x00\xc4\x07\x2f\x58\x34\xd3\xaf\x5c\xf1\x11\xe6\x7b\xb5\x8f\xe2\x6c\x11\xff\xf8\x26\xf0\x22\x03\xdb\xf1\xd6\x19\xab\x62\x80\xd1\x4e\xb6\xf3\x83\x9f\x1c\xfa\xce\xf1\x43\x01\x28\x9e\xac\x70\xe0\xe0\xec\x6a\x92\xc0\x8c\xdb\x69\x25\x95\x66\x73\xc6\x61\x63\x4d\x7e\x71\x35\x11\x8a\xfa\x48\x7e\xa5\x70\x61\x63\x1e\x65\xda\x2e\x18\x52\xae\xac\xf3\xe1\x6c\xa4\xa9\x18\xd4\x55\xd1\x13\x03\xbd\xc1\x1f\xdc\xce\x64\xa3\x91\x48\xef\xe2\xf1\x1b\x1b\x68\xcf\x53\x3c\xe5\x49\x70\x86\x49\x9d\x0c\x94\x68\x9d\x5f\xf4\x0b\xf3\x6a\x31\x89\x39\xe7\x06\x1a\x59\xcc\xb3\x73\x26\x17\xc2\xe1\xba\x6d\x35\x66\x85\x53\xad\x7f\x49\xc0\xde\xf8\xfc\x12\x7a\x1b\x60\x92\x45\x26\x12\x53\x89\x6f\xbf\xb9\xec\xc8\x5d\xae\x94\xb9\xe4\xfb\xcb\x92\xa4\x00\x24\x84\x35\xe0\xba\xf0\xf4\xd9\x08\x00\x00\x55\x81\x46\x53\xfb\x75\xb8\x90\x5c\xbd\x81\x5f\xe0\x2a\xec\x4c\x98\xe6\x3f\x42\x3f\xf6\x29\xd6\xc1\x63\x03\xaf\x87\xe5\x61\x15\x6a\xc2\x97\x96\x9f\x0e\x2d\xe6\xed\x69\x5c\x6b\x4a\x50\x95\x10\xc3\xd2\xca\x59\xe3\x1b\x4b\xfe\x8b\xe4\x06\x55\xf4\xd6\xb0\xc0\x2f\x5b\xce\x72\xa6\x4c\x65\x43\x83\x3c\x6b\x25\x37\x3b\xfb\x18\x03\x7b\x31\x93\x49\xc0\xf4\x7c\x59\xec\x43\x1d\x4d\x30\x56\x5b\x2a\x6a\xb5\xdc\x41\xa9\xa4\xb6\xf5\x58\x78\x6c\xab\xca\x6b\x84\xd3\xde\x0f\xa7\x71\x50\x15\x41\xf8\x2e\x60\x87\x91\xb5\x2a\x4b\x34\x20\x0d\x6d\xd1\x41\x89\x55\xff\x52\x0b\x9f\xa7\xa7\x62\xcc\xc5\x27\x66\xb4\x22\x53\x73\x48\x9d\xf6\xa3\x2c\x5c\xba\xe0\x1f\xae\x33\x22\xa9\x94\x48\x16\x53\xf1\x6f\x00\x00\x00\xff\xff\xe7\xa3\xb9\x6d\xa1\x0c\x00\x00") +var _vaulted1 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x61\x6f\xdb\x36\x10\xfd\x1c\xfe\x8a\x5b\x06\xac\x31\x90\x28\x29\xb0\x75\x58\x07\x0c\x48\x13\x6f\xf5\xd6\xc4\x82\xe5\x76\x1b\xa6\xa2\xa0\xa5\x93\x4c\x94\x22\x05\x1e\x65\xc7\xff\x7e\x38\x52\x52\x1c\xc7\xc1\x80\x05\x08\x60\x91\xbc\x77\xf7\x1e\x1f\x8f\x4c\x96\xef\x61\x23\x3b\xed\xb1\x84\xd7\x22\xc9\xde\xc3\xfd\xf5\xdd\x54\x24\x69\x2a\x86\xe1\xfc\x02\xa8\x95\x5b\x03\x84\x44\xca\x1a\x82\xca\xd9\x06\x08\x8b\xce\xa1\xde\x01\x79\xeb\xb0\xe4\x6f\x87\x9e\x02\x46\xf6\xf7\xfd\x3c\xcd\x66\x59\xc0\xc9\xab\x77\x79\x75\xd3\xa3\xe5\xd5\x02\xe2\x40\x7e\x61\xe2\xc7\xcc\xc8\x06\xf3\x2a\x85\x7f\x86\x09\x95\x57\x8b\xcf\x22\x59\xb9\xff\x11\x9b\x5f\x70\x30\x4f\xdd\xdc\xdd\xe6\x55\xfa\x52\x09\xb3\x9b\xf9\xdd\xdd\xf5\xfd\x6d\x1f\x3c\x93\xae\xa6\x24\x49\xf2\x2a\xfd\x1c\x28\xdc\x4e\xb3\x9b\xc5\x2c\x5d\xce\xe6\xf7\x01\x62\x56\x81\xb1\x07\x71\x8a\xa0\x75\x76\xa3\x4a\x2c\xcf\xe1\x59\x0e\x54\x7e\x8d\x2e\x6a\x47\x8f\x05\xc1\x99\xaa\xc6\xb0\x09\x58\x27\xfa\x15\xd2\x80\x32\x1e\x9d\x2c\xbc\xda\x20\xd0\x1a\xb5\x4e\xf6\xca\xef\xb9\x41\x23\x77\xb0\x42\xe8\x08\x4b\xf0\x16\x4a\x55\x55\xe8\xd0\x78\x25\x3d\x82\x5f\xe3\x5e\xaa\xb0\x51\x87\x85\xe5\xdf\xbd\x22\xb0\x5b\x03\xd2\xd5\x5d\x83\xc6\x53\x12\x18\xf7\xc4\x32\x91\x2c\x87\x94\xb2\xe4\x00\x31\x7b\x2c\x4b\xef\xa0\x70\x28\x3d\x52\x48\x55\x58\xe3\xd1\x78\xb0\x15\x48\x30\xb8\x8d\x5e\x4a\x20\x43\x04\x91\xbc\x5b\x0c\xde\xba\x90\x65\x09\x67\xaf\x27\xc9\x1e\x78\xd1\x32\x9b\xcb\xbe\xbe\xc2\xb6\x3b\xce\x75\x63\x5b\x75\x0c\x3c\x00\x81\x34\x25\x90\xdc\x20\x81\xf2\x20\x69\x3f\x29\x6c\x95\x5f\xf7\x03\xad\x24\xda\x5a\x57\x1e\x29\xa4\x68\x0f\xeb\x28\xbb\x86\x2b\x11\x7f\x3a\x75\x94\x56\x44\xf7\x16\xc8\x97\xb6\x0b\x69\x7f\xcf\xe6\xf7\x47\xb0\x19\xe9\x10\x1d\x4b\xe5\x9f\x6b\xc8\xa3\xcf\x53\x19\xc0\x07\x45\x5e\x99\xfa\x45\x1d\x39\xf0\x59\x0a\xb3\xe1\x0c\xf3\xce\xb7\x9d\xa7\x68\x1c\x28\x6c\xd3\x48\x53\x72\x12\xe9\x41\x5b\x39\x9e\x50\xa8\xac\x1b\x69\x29\xe3\x6d\xa8\x23\xda\xed\x48\x42\xb3\x39\xcc\xc7\x60\x9c\xf0\x23\x61\x94\x62\xb4\x73\xaf\x92\x32\xfc\x23\xfa\x04\xac\x03\x87\xad\x96\x05\xbe\x20\xed\x91\xa4\xa1\xdc\xc3\xac\xb4\x6f\x17\xad\x28\xc8\xfa\x41\x91\x27\x90\x5a\xc7\x58\x3a\x06\x46\x87\x50\xae\xe1\xd0\x05\x36\x96\x9d\xf4\x54\xf3\x63\x08\xae\x39\x44\x08\x6a\x31\x48\xe6\xa5\xf3\xc7\xcf\x6e\x34\x64\xd0\x76\x4f\x78\xfe\x8e\xd2\x33\x49\x2c\xff\x7b\x07\x22\xd8\x41\x01\x5d\x5b\x3b\x59\x62\xd8\x86\xf8\x93\x40\x63\x2d\x8b\x5d\x4f\x03\x7a\xd4\xa2\x73\xdc\x1c\xfa\x9c\x95\x75\x8d\x3c\xa6\x78\x8f\xd7\xa7\xc9\xde\xc3\xf4\xaf\xd9\x12\x6e\xe6\xb7\x53\xee\x07\x99\x90\x5a\xaf\xec\xc3\xcf\xa2\x58\x41\xb1\x12\x05\xe8\x27\xff\x89\x98\x3e\x28\x0f\x85\x2d\xf1\xe4\x0e\xa5\x51\xa6\x16\x57\x27\x59\x57\x14\x48\x94\x88\x37\xdf\x9f\xcc\xcc\x46\x6a\x55\xc2\xcd\x87\x19\x74\x24\x6b\x84\x33\x42\x84\x06\x29\x7c\xb0\x32\x8d\x75\x08\x25\x7a\xa9\x34\x4d\x12\xf1\xe6\x87\x93\xe5\x1a\x1d\xc2\x56\x06\x7d\x3b\xe3\xb0\xb0\x1b\x74\x72\xa5\x91\x1d\xb7\xd2\xd8\x3c\x6a\xdc\xf3\x53\x1a\x13\xf1\xe3\x4f\x63\xbe\xa1\x13\x00\x75\x6d\xab\x15\x96\x2c\xe2\x34\x30\xfc\xed\xe3\x0c\xd2\x61\x3a\x75\xb6\x69\xf9\xf6\x4a\x53\x71\xad\xfd\xda\x76\xf5\x1a\x3e\xf5\x37\xa0\x77\xa1\x25\x59\x68\xe4\x57\x04\xea\x1c\xc2\xce\x76\x50\x48\x03\x0e\x4b\xe5\xb0\xf0\xbd\x2d\x83\xf9\xd9\xa7\xdc\xa8\x2a\xa7\xd0\x94\x74\x2e\xc8\x36\xe8\x55\x13\xbb\x96\x22\x20\xaf\xb4\x86\xd6\x61\xd5\xb3\xf1\x96\xdb\x39\x48\xae\x29\xbf\x58\x49\x6e\xed\x63\xe5\x6d\x28\x2d\x81\x5f\x83\x7b\x14\x09\x87\x92\xac\x39\x1f\xcb\xe3\x3a\x56\xe1\x64\x55\xaa\xee\x5c\x3c\x86\x01\xcf\x80\xa4\xaf\x0c\x04\xaa\x69\x35\x72\xb3\x97\x5e\x59\x93\x0c\xb1\xaf\x48\x8c\x2b\x8c\xc7\xda\x85\x69\xae\xd1\x3b\x55\xd7\xc8\x60\xdb\x35\x9a\xfe\x5e\x61\x8a\x9f\xae\x3f\x7e\x58\x4e\x6f\xbf\x5c\x67\x7f\xa4\xd7\x59\xc6\x64\x37\xd2\xa9\xc0\x83\xb9\xa1\x8f\x97\x56\x6a\x95\x09\xc7\xea\xc5\x30\x6f\x63\xcb\xc3\xa2\xf3\x21\x9c\x77\x2f\xf6\xab\xb1\x5c\x1a\x19\x6c\x95\xd6\xa2\x90\xcc\x6b\xdc\x97\x48\x33\x22\xc4\xf6\x12\x20\xa8\xc5\x42\x55\x2a\xae\x88\xf2\x85\xc9\x8e\xd0\xb1\xd5\xc4\xa0\x2d\x25\xb0\x0c\x41\x8e\x3c\xb4\xd2\xc9\x06\x3d\xba\x27\xed\x8c\xe3\xf6\x4a\x8c\x57\x7e\x00\xc4\x07\x2f\x58\x34\xd3\xaf\x5c\xf1\x11\xe6\x7b\xb5\x8f\xe2\x6c\x11\xff\xf8\x26\xf0\x22\x03\xdb\xf1\xd6\x19\xab\x62\x80\xd1\x4e\xb6\xf3\x83\x9f\x1c\xfa\xce\xf1\x43\x01\x28\x9e\xac\x70\xe0\xe0\xec\x6a\x92\xc0\x8c\xdb\x69\x25\x95\x66\x73\xc6\x61\x63\x4d\x7e\x71\x35\x11\x8a\xfa\x48\x7e\xa5\x70\x61\x63\x1e\x65\xda\x2e\x18\x52\xae\xac\xf3\xe1\x6c\xa4\xa9\x18\xd4\x55\xd1\x13\x03\xbd\xc1\x1f\xdc\xce\x64\xa3\x91\x48\xef\xe2\xf1\x1b\x1b\x68\xcf\x53\x3c\xe5\x49\x70\x86\x49\x9d\x0c\x94\x68\x9d\x5f\xf4\x0b\xf3\x6a\x31\x89\x39\xe7\x06\x1a\x59\xcc\xb3\x73\x26\x17\xc2\xe1\xba\x6d\x35\x66\x85\x53\xad\x7f\x49\xc0\xde\xf8\xfc\x12\x7a\x1b\x60\x92\x45\x26\x12\x53\x89\x6f\xbf\xb9\xec\xc8\x5d\xae\x94\xb9\xe4\xfb\xcb\x92\xa4\x00\x24\x84\x35\xe0\xba\xf0\xf4\xd9\x08\x00\x00\x55\x81\x46\x53\xfb\x75\xb8\x90\x5c\xbd\x81\x5f\xe0\x2a\xec\x4c\x98\xe6\x3f\x42\x3f\xf6\x29\xd6\xc1\x63\x03\xaf\x87\xe5\x61\x15\x6a\xc2\x97\x96\x9f\x0e\x2d\xe6\xed\x69\x5c\x6b\x4a\x50\x95\x10\xc3\xd2\xca\x59\xe3\x1b\x4b\xfe\x8b\xe4\x06\x55\xf4\xd6\xb0\xc0\x2f\x5b\xce\x72\xa6\x4c\x65\x43\x83\x3c\x6b\x25\x37\x3b\xfb\x18\x03\x7b\x31\x93\x49\xc0\xf4\x7c\x59\xec\x43\x1d\x4d\x30\x56\x5b\x2a\x6a\xb5\xdc\x41\xa9\xa4\xb6\xf5\x58\x78\x6c\xab\xca\x6b\x84\xd3\xde\x0f\xa7\x71\x50\x15\x41\xf8\x2e\x60\x87\x91\xb5\x2a\x4b\x34\x20\x0d\x6d\xd1\x41\x89\x55\xff\x52\x0b\x9f\xa7\xa7\x62\xcc\xc5\x27\x66\xb4\x22\x53\x73\x48\x9d\xf6\xa3\x2c\x5c\xba\xe0\x1f\xae\x33\x22\xa9\x94\x48\x16\x53\xf1\x6f\x00\x00\x00\xff\xff\xe7\xa3\xb9\x6d\xa1\x0c\x00\x00") func vaulted1Bytes() ([]byte, error) { return bindataRead( @@ -350,7 +392,9 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ + ".DS_Store": Ds_store, "vaulted-add.1": vaultedAdd1, + "vaulted-console.1": vaultedConsole1, "vaulted-cp.1": vaultedCp1, "vaulted-dump.1": vaultedDump1, "vaulted-edit.1": vaultedEdit1, @@ -404,7 +448,9 @@ type bintree struct { } var _bintree = &bintree{nil, map[string]*bintree{ + ".DS_Store": &bintree{Ds_store, map[string]*bintree{}}, "vaulted-add.1": &bintree{vaultedAdd1, map[string]*bintree{}}, + "vaulted-console.1": &bintree{vaultedConsole1, map[string]*bintree{}}, "vaulted-cp.1": &bintree{vaultedCp1, map[string]*bintree{}}, "vaulted-dump.1": &bintree{vaultedDump1, map[string]*bintree{}}, "vaulted-edit.1": &bintree{vaultedEdit1, map[string]*bintree{}},