diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index c9536b8e16..e430c9de34 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -225,6 +225,11 @@ message Chain { repeated string allowlist = 7; // Corresponds to a list of provider consensus addresses of validators that CANNOT validate the consumer chain. repeated string denylist = 8; + // Corresponds to the minimal amount of (provider chain) stake required to validate on the consumer chain. + uint64 min_stake = 9; + // Corresponds to whether inactive validators are allowed to validate the consumer chain. + bool allow_inactive_vals = 10; + } message QueryValidatorConsumerAddrRequest { diff --git a/tests/e2e/README.md b/tests/e2e/README.md index cc74e57834..eb8e660396 100644 --- a/tests/e2e/README.md +++ b/tests/e2e/README.md @@ -187,6 +187,63 @@ which is done in `getChainState`. Typically, this is ultimately done, like actions, by issuing commands to the chain binary inside the docker container. See how this is done e.g. for `getBalance`. +## Defining extra validators + +In `config.go`, you can define extra validators that are not part of the default test configuration, for example +for tests that need more than 3 validators. + +To create a configuration for a new validator, it suffices to add a new `ValidatorConfig`. For example, this is the validator config for alice: + +``` +ValidatorID("alice"): { + Mnemonic: "pave immune ethics wrap gain ceiling always holiday employ earth tumble real ice engage false unable carbon equal fresh sick tattoo nature pupil nuclear", + DelAddress: "cosmos19pe9pg5dv9k5fzgzmsrgnw9rl9asf7ddwhu7lm", + DelAddressOnConsumer: "consumer19pe9pg5dv9k5fzgzmsrgnw9rl9asf7ddtz33vu", + ValoperAddress: "cosmosvaloper19pe9pg5dv9k5fzgzmsrgnw9rl9asf7ddtrgtng", + ValoperAddressOnConsumer: "consumervaloper19pe9pg5dv9k5fzgzmsrgnw9rl9asf7ddy6jwzg", + ValconsAddress: "cosmosvalcons1qmq08eruchr5sf5s3rwz7djpr5a25f7xw4mceq", + ValconsAddressOnConsumer: "consumervalcons1qmq08eruchr5sf5s3rwz7djpr5a25f7xpvpagq", + PrivValidatorKey: `{"address":"06C0F3E47CC5C748269088DC2F36411D3AAA27C6","pub_key":{"type":"tendermint/PubKeyEd25519","value":"RrclQz9bIhkIy/gfL485g3PYMeiIku4qeo495787X10="},"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"uX+ZpDMg89a6gtqs/+MQpCTSqlkZ0nJQJOhLlCJvwvdGtyVDP1siGQjL+B8vjzmDc9gx6IiS7ip6jj3nvztfXQ=="}}`, + NodeKey: `{"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"fjw4/DAhyRPnwKgXns5SV7QfswRSXMWJpHS7TyULDmJ8ofUc5poQP8dgr8bZRbCV5RV8cPqDq3FPdqwpmUbmdA=="}}`, + IpSuffix: "4", + + // consumer chain assigned key + ConsumerMnemonic: "exile install vapor thing little toss immune notable lounge december final easy strike title end program interest quote cloth forget forward job october twenty", + ConsumerDelAddress: "consumer1eeeggku6dzk3mv7wph3zq035rhtd890sh9rl32", + ConsumerDelAddressOnProvider: "cosmos1eeeggku6dzk3mv7wph3zq035rhtd890sjswszd", + ConsumerValoperAddress: "consumervaloper1eeeggku6dzk3mv7wph3zq035rhtd890scaqql7", + ConsumerValoperAddressOnProvider: "cosmosvaloper1eeeggku6dzk3mv7wph3zq035rhtd890shy69w7", + ConsumerValconsAddress: "consumervalcons1muys5jyqk4xd27e208nym85kn0t4zjcfk9q5ce", + ConsumerValconsAddressOnProvider: "cosmosvalcons1muys5jyqk4xd27e208nym85kn0t4zjcfeu63fe", + ConsumerValPubKey: `{"@type":"/cosmos.crypto.ed25519.PubKey","key":"ujY14AgopV907IYgPAk/5x8c9267S4fQf89nyeCPTes="}`, + ConsumerPrivValidatorKey: `{"address":"DF090A4880B54CD57B2A79E64D9E969BD7514B09","pub_key":{"type":"tendermint/PubKeyEd25519","value":"ujY14AgopV907IYgPAk/5x8c9267S4fQf89nyeCPTes="},"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"TRJgf7lkTjs/sj43pyweEOanyV7H7fhnVivOi0A4yjW6NjXgCCilX3TshiA8CT/nHxz3brtLh9B/z2fJ4I9N6w=="}}`, + ConsumerNodeKey: `{"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"F966RL9pi20aXRzEBe4D0xRQJtZt696Xxz44XUON52cFc83FMn1WXJbP6arvA2JPyn2LA3DLKCFHSgALrCGXGA=="}}`, + UseConsumerKey: false, + }, +``` + +Here is a short guide for generating this config for a new validator: +``` +# Commands +interchain-security-pd init bob --home ./bob +cat ./bob/config/priv_validator_key.json # gets you the private key +interchain-security-pd tendermint show-address --home ./bob # returns valcons +interchain-security-pd keys add bob --keyring-backend test --home ./bob --output json # gives mnemonic, account address +interchain-security-pd keys show bob --keyring-backend test --bech=val --home ./bob --output json # returns valoper address +cat ./bob/config/node_key.json # returns the node key +``` + +Fill these values into the `ValidatorConfig` struct in `config.go`. +To get the values for the consumer chain, you can simply run the command in question using the +`interchain-security-cd` binary. +For example, +``` +interchain-security-cd tendermint show-address --home ./bob +``` +will return the validator consensus address on the consumer chain. + +One important note is that the `IPSuffix` field should be unique for each validator. + ## Traces It is possible to dump the test cases (in the form of actions+state checks) diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go index 1ba117b3cc..088ad19801 100644 --- a/tests/e2e/actions.go +++ b/tests/e2e/actions.go @@ -299,7 +299,9 @@ func (tr Chain) submitConsumerAdditionProposal( "validator_set_cap": %d, "allowlist": %s, "denylist": %s, - "authority": "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn" + "authority": "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn", + "allow_inactive_vals": %t, + "min_stake": "%d" } ], "metadata": "ipfs://CID", @@ -327,6 +329,8 @@ func (tr Chain) submitConsumerAdditionProposal( action.ValidatorSetCap, action.Allowlist, action.Denylist, + action.AllowInactiveVals, + action.MinStake, action.Deposit) //#nosec G204 -- bypass unsafe quoting warning (no production code) @@ -587,13 +591,14 @@ type SubmitConsumerModificationProposalAction struct { ValidatorSetCap uint32 Allowlist []string Denylist []string + AllowInactiveVals bool + MinStake uint64 } func (tr Chain) submitConsumerModificationProposal( action SubmitConsumerModificationProposalAction, verbose bool, ) { - template := ` { @@ -609,8 +614,8 @@ func (tr Chain) submitConsumerModificationProposal( "allowlist": %s, "denylist": %s, "authority": "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn", - "min_stake": "0", - "allow_inactive_vals": false + "min_stake": %d, + "allow_inactive_vals": %t } ], "metadata": "ipfs://CID", @@ -629,6 +634,8 @@ func (tr Chain) submitConsumerModificationProposal( action.Allowlist, action.Denylist, action.Deposit, + action.MinStake, + action.AllowInactiveVals, ) // #nosec G204 -- bypass unsafe quoting warning (no production code) diff --git a/tests/e2e/steps_multi_consumer_downtime.go b/tests/e2e/steps_multi_consumer_downtime.go index 7e73197b8f..02f070a612 100644 --- a/tests/e2e/steps_multi_consumer_downtime.go +++ b/tests/e2e/steps_multi_consumer_downtime.go @@ -1,6 +1,6 @@ package main -// stepsDowntime tests validator jailing and slashing. +// stepsMultiConsumerDowntimeFromConsumer tests validator jailing and slashing. // No slashing should occur for downtime slash initiated from the consumer chain // validators will simply be jailed in those cases // If an infraction is committed on the provider chain then the validator will be slashed diff --git a/tests/integration/expired_client.go b/tests/integration/expired_client.go index 259979e351..3d662382e1 100644 --- a/tests/integration/expired_client.go +++ b/tests/integration/expired_client.go @@ -17,7 +17,7 @@ import ( ccv "github.com/cosmos/interchain-security/v5/x/ccv/types" ) -// TestVSCPacketSendWithExpiredClient tests queueing of VSCPackets when the consumer client is expired. +// TestVSCPacketSendExpiredClient tests queueing of VSCPackets when the consumer client is expired. // While the consumer client is expired (or inactive for some reason) all packets will be queued and // and cleared once the consumer client is established. func (s *CCVTestSuite) TestVSCPacketSendExpiredClient() { @@ -203,7 +203,7 @@ func expireClient(s *CCVTestSuite, clientTo ChainType) { checkClientExpired(s, clientTo, true) } -// checkClientIsExpired checks whether the client to `clientTo` is expired +// checkClientExpired checks whether the client to `clientTo` is expired func checkClientExpired(s *CCVTestSuite, clientTo ChainType, expectedExpired bool) { var hostEndpoint *ibctesting.Endpoint var hostChain *ibctesting.TestChain diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index 5562bfc2da..e33b02b48d 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -95,6 +95,10 @@ func (k Keeper) GetConsumerChain(ctx sdk.Context, consumerId string) (types.Chai strDenylist[i] = addr.String() } + allowInactiveVals := k.AllowsInactiveValidators(ctx, chainID) + + minStake, _ := k.GetMinStake(ctx, chainID) + return types.Chain{ ChainId: consumerId, ClientId: clientID, @@ -104,6 +108,8 @@ func (k Keeper) GetConsumerChain(ctx sdk.Context, consumerId string) (types.Chai ValidatorsPowerCap: validatorsPowerCap, Allowlist: strAllowlist, Denylist: strDenylist, + AllowInactiveVals: allowInactiveVals, + MinStake: minStake, }, nil } diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index b44c025dd5..7ab11ad325 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -423,6 +423,15 @@ func TestGetConsumerChain(t *testing.T) { {}, } + allowInactiveVals := []bool{true, false, true, false} + + minStakes := []math.Int{ + math.NewInt(0), + math.NewInt(100), + math.NewInt(200), + math.NewInt(300), + } + expectedGetAllOrder := []types.Chain{} for i, chainID := range chainIDs { clientID := fmt.Sprintf("client-%d", len(chainIDs)-i) @@ -434,6 +443,8 @@ func TestGetConsumerChain(t *testing.T) { ValidatorsPowerCap: validatorPowerCaps[i], }) pk.SetMinimumPowerInTopN(ctx, chainID, expectedMinPowerInTopNs[i]) + pk.SetInactiveValidatorsAllowed(ctx, chainID, allowInactiveVals[i]) + pk.SetMinStake(ctx, chainID, minStakes[i].Uint64()) for _, addr := range allowlists[i] { pk.SetAllowlist(ctx, chainID, addr) } @@ -460,6 +471,8 @@ func TestGetConsumerChain(t *testing.T) { ValidatorsPowerCap: validatorPowerCaps[i], Allowlist: strAllowlist, Denylist: strDenylist, + AllowInactiveVals: allowInactiveVals[i], + MinStake: minStakes[i].Uint64(), }) } diff --git a/x/ccv/provider/keeper/hooks.go b/x/ccv/provider/keeper/hooks.go index a1576ff33d..68bcbbc399 100644 --- a/x/ccv/provider/keeper/hooks.go +++ b/x/ccv/provider/keeper/hooks.go @@ -205,6 +205,8 @@ func (h Hooks) GetConsumerAdditionFromProp( ValidatorSetCap: sdkMsg.ValidatorSetCap, Allowlist: sdkMsg.Allowlist, Denylist: sdkMsg.Denylist, + MinStake: sdkMsg.MinStake, + AllowInactiveVals: sdkMsg.AllowInactiveVals, } return proposal, true } diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index aee4e3d717..c20b135ffd 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -402,6 +402,10 @@ type Chain struct { Allowlist []string `protobuf:"bytes,7,rep,name=allowlist,proto3" json:"allowlist,omitempty"` // Corresponds to a list of provider consensus addresses of validators that CANNOT validate the consumer chain. Denylist []string `protobuf:"bytes,8,rep,name=denylist,proto3" json:"denylist,omitempty"` + // Corresponds to the minimal amount of (provider chain) stake required to validate on the consumer chain. + MinStake uint64 `protobuf:"varint,9,opt,name=min_stake,json=minStake,proto3" json:"min_stake,omitempty"` + // Corresponds to whether inactive validators are allowed to validate the consumer chain. + AllowInactiveVals bool `protobuf:"varint,10,opt,name=allow_inactive_vals,json=allowInactiveVals,proto3" json:"allow_inactive_vals,omitempty"` } func (m *Chain) Reset() { *m = Chain{} } @@ -493,6 +497,20 @@ func (m *Chain) GetDenylist() []string { return nil } +func (m *Chain) GetMinStake() uint64 { + if m != nil { + return m.MinStake + } + return 0 +} + +func (m *Chain) GetAllowInactiveVals() bool { + if m != nil { + return m.AllowInactiveVals + } + return false +} + type QueryValidatorConsumerAddrRequest struct { // [DEPRECATED] use `consumer_id` instead ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` // Deprecated: Do not use. @@ -2011,159 +2029,162 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2427 bytes of a gzipped FileDescriptorProto + // 2468 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1c, 0x49, - 0x15, 0x76, 0x8f, 0x7f, 0x62, 0x97, 0x37, 0xce, 0x6e, 0xc5, 0x89, 0x27, 0x63, 0xc7, 0xe3, 0x74, - 0x12, 0x98, 0x38, 0xc9, 0xb4, 0xed, 0xd5, 0xb2, 0x9b, 0x40, 0x36, 0xf1, 0x8c, 0xe3, 0x64, 0xe4, - 0x6c, 0xe2, 0x6d, 0x3b, 0x01, 0x79, 0x31, 0x9d, 0x76, 0x77, 0x31, 0x6e, 0xdc, 0xd3, 0xd5, 0xee, - 0xea, 0x99, 0x64, 0x14, 0xe5, 0xb0, 0x20, 0xa1, 0x5d, 0x0e, 0x28, 0x08, 0x21, 0x71, 0xdc, 0x0b, - 0x12, 0x07, 0x4e, 0x68, 0x05, 0xe2, 0xb6, 0xc7, 0xbd, 0xb1, 0xec, 0x5e, 0x10, 0x48, 0x01, 0x25, - 0x1c, 0x10, 0x12, 0x12, 0x5a, 0xb8, 0x22, 0xa1, 0xae, 0xae, 0xfe, 0x9d, 0x1e, 0x4f, 0xcf, 0x8c, - 0x0f, 0xdc, 0xdc, 0x55, 0xaf, 0xbe, 0x7a, 0xef, 0xd5, 0xab, 0x57, 0xef, 0x7d, 0x63, 0x20, 0x68, - 0x86, 0x8d, 0x2c, 0x65, 0x57, 0xd6, 0x0c, 0x89, 0x20, 0xa5, 0x6e, 0x69, 0x76, 0x53, 0x50, 0x94, - 0x86, 0x60, 0x5a, 0xb8, 0xa1, 0xa9, 0xc8, 0x12, 0x1a, 0x8b, 0xc2, 0x7e, 0x1d, 0x59, 0xcd, 0xa2, - 0x69, 0x61, 0x1b, 0xc3, 0xb3, 0x09, 0x0b, 0x8a, 0x8a, 0xd2, 0x28, 0x7a, 0x0b, 0x8a, 0x8d, 0xc5, - 0xdc, 0x4c, 0x15, 0xe3, 0xaa, 0x8e, 0x04, 0xd9, 0xd4, 0x04, 0xd9, 0x30, 0xb0, 0x2d, 0xdb, 0x1a, - 0x36, 0x88, 0x0b, 0x91, 0x9b, 0xac, 0xe2, 0x2a, 0xa6, 0x7f, 0x0a, 0xce, 0x5f, 0x6c, 0x34, 0xcf, - 0xd6, 0xd0, 0xaf, 0x9d, 0xfa, 0x77, 0x05, 0x5b, 0xab, 0x21, 0x62, 0xcb, 0x35, 0x93, 0x09, 0x2c, - 0xa5, 0x51, 0xd5, 0xd7, 0xc2, 0x5d, 0xb3, 0xd0, 0x6e, 0x4d, 0x63, 0x51, 0x20, 0xbb, 0xb2, 0x85, - 0x54, 0x49, 0xc1, 0x06, 0xa9, 0xd7, 0xfc, 0x15, 0xe7, 0x0f, 0x58, 0xf1, 0x48, 0xb3, 0x10, 0x13, - 0x9b, 0xb1, 0x91, 0xa1, 0x22, 0xab, 0xa6, 0x19, 0xb6, 0xa0, 0x58, 0x4d, 0xd3, 0xc6, 0xc2, 0x1e, - 0x6a, 0x7a, 0x16, 0x9e, 0x52, 0x30, 0xa9, 0x61, 0x22, 0xb9, 0x46, 0xba, 0x1f, 0x6c, 0xea, 0x9c, - 0xfb, 0x25, 0x10, 0x5b, 0xde, 0xd3, 0x8c, 0xaa, 0xd0, 0x58, 0xdc, 0x41, 0xb6, 0xbc, 0xe8, 0x7d, - 0xbb, 0x52, 0xfc, 0x36, 0x98, 0x7e, 0xd7, 0x71, 0x7a, 0x99, 0x29, 0x77, 0x0b, 0x19, 0x88, 0x68, - 0x44, 0x44, 0xfb, 0x75, 0x44, 0x6c, 0x78, 0x1a, 0x8c, 0xba, 0x1a, 0x6a, 0x6a, 0x96, 0x9b, 0xe3, - 0x0a, 0x63, 0xa5, 0x4c, 0x96, 0x13, 0x8f, 0xd0, 0xb1, 0x8a, 0x0a, 0xf3, 0x60, 0xdc, 0xb3, 0xca, - 0x91, 0xc8, 0x38, 0x12, 0x22, 0xf0, 0x86, 0x2a, 0x2a, 0xff, 0x04, 0xcc, 0x24, 0xc3, 0x13, 0x13, - 0x1b, 0x04, 0xc1, 0xf7, 0xc0, 0xd1, 0xaa, 0x3b, 0x24, 0x11, 0x5b, 0xb6, 0x11, 0xdd, 0x64, 0x7c, - 0x69, 0xa1, 0xd8, 0xee, 0xf0, 0x1b, 0x8b, 0xc5, 0x18, 0xd6, 0x86, 0xb3, 0xae, 0x34, 0xf4, 0xe9, - 0xf3, 0xfc, 0x80, 0xf8, 0x4a, 0x35, 0x34, 0xc6, 0xcf, 0x80, 0x5c, 0x64, 0xf3, 0xb2, 0x03, 0xe7, - 0x99, 0xc6, 0xcb, 0x31, 0xcb, 0xbd, 0x59, 0xa6, 0x59, 0x09, 0x8c, 0xd0, 0xed, 0x49, 0x96, 0x9b, - 0x1b, 0x2c, 0x8c, 0x2f, 0xcd, 0x17, 0x53, 0xc4, 0x63, 0x91, 0x82, 0x88, 0x6c, 0x25, 0x7f, 0x01, - 0x7c, 0xb5, 0x75, 0x8b, 0x0d, 0x5b, 0xb6, 0xec, 0x75, 0x0b, 0x9b, 0x98, 0xc8, 0xba, 0xaf, 0xcd, - 0x07, 0x1c, 0x28, 0x74, 0x96, 0x65, 0xba, 0x7d, 0x1b, 0x8c, 0x99, 0xde, 0x20, 0xf3, 0xd8, 0xdb, - 0xe9, 0xd4, 0x63, 0xe0, 0xcb, 0xaa, 0xaa, 0x39, 0x17, 0x25, 0x80, 0x0e, 0x00, 0xf9, 0x02, 0xf8, - 0x4a, 0x92, 0x26, 0xd8, 0x6c, 0x51, 0xfa, 0x87, 0x5c, 0xb2, 0x81, 0x11, 0x51, 0xff, 0xa4, 0x5b, - 0x74, 0xbe, 0xd6, 0x95, 0xce, 0x22, 0xaa, 0xe1, 0x86, 0xac, 0x27, 0xaa, 0xfc, 0xf3, 0x0c, 0x18, - 0xa6, 0x7b, 0xc3, 0x53, 0xf1, 0x80, 0x0d, 0x82, 0x75, 0x1a, 0x8c, 0x29, 0xba, 0x86, 0x0c, 0x3b, - 0x08, 0xd5, 0x51, 0x77, 0xa0, 0xa2, 0xc2, 0xe3, 0x60, 0xd8, 0xc6, 0xa6, 0x74, 0x37, 0x3b, 0x38, - 0xc7, 0x15, 0x8e, 0x8a, 0x43, 0x36, 0x36, 0xef, 0xc2, 0x79, 0x00, 0x6b, 0x9a, 0x21, 0x99, 0xf8, - 0x91, 0x13, 0xdf, 0x86, 0xe4, 0x4a, 0x0c, 0xcd, 0x71, 0x85, 0x41, 0x71, 0xa2, 0xa6, 0x19, 0xeb, - 0xce, 0x44, 0xc5, 0xd8, 0x74, 0x64, 0x17, 0xc0, 0x64, 0x43, 0xd6, 0x35, 0x55, 0xb6, 0xb1, 0x45, - 0xd8, 0x12, 0x45, 0x36, 0xb3, 0xc3, 0x14, 0x0f, 0x06, 0x73, 0x74, 0x51, 0x59, 0x36, 0xe1, 0x3c, - 0x78, 0xcd, 0x1f, 0x95, 0x08, 0xb2, 0xa9, 0xf8, 0x08, 0x15, 0x3f, 0xe6, 0x4f, 0x6c, 0x20, 0xdb, - 0x91, 0x9d, 0x01, 0x63, 0xb2, 0xae, 0xe3, 0x47, 0xba, 0x46, 0xec, 0xec, 0x91, 0xb9, 0xc1, 0xc2, - 0x98, 0x18, 0x0c, 0xc0, 0x1c, 0x18, 0x55, 0x91, 0xd1, 0xa4, 0x93, 0xa3, 0x74, 0xd2, 0xff, 0xe6, - 0x7f, 0xc5, 0x81, 0x33, 0xf4, 0x8c, 0x1e, 0x78, 0x90, 0xa1, 0x20, 0xb0, 0x52, 0xde, 0xf3, 0x6b, - 0xe0, 0x55, 0xef, 0x48, 0x24, 0x59, 0x55, 0x2d, 0x44, 0x88, 0xeb, 0xc1, 0x12, 0xfc, 0xf2, 0x79, - 0x7e, 0xa2, 0x29, 0xd7, 0xf4, 0xab, 0x3c, 0x9b, 0xe0, 0xc5, 0x63, 0x9e, 0xec, 0xb2, 0x3b, 0x12, - 0x4f, 0x13, 0x83, 0xf1, 0x34, 0x71, 0x75, 0xf4, 0x83, 0x8f, 0xf2, 0x03, 0x7f, 0xff, 0x28, 0x3f, - 0xc0, 0xdf, 0x03, 0xfc, 0x41, 0xda, 0xb2, 0x60, 0xba, 0x00, 0x5e, 0xf5, 0x01, 0x3d, 0x7d, 0xdc, - 0xd3, 0x3e, 0xa6, 0x84, 0xe4, 0x1d, 0x6d, 0x5a, 0xed, 0x5f, 0x0f, 0x69, 0x97, 0xde, 0xfe, 0x96, - 0xfd, 0x0e, 0xb0, 0x3f, 0xa6, 0x43, 0x5f, 0xf6, 0x47, 0xb5, 0x0d, 0xec, 0x6f, 0x39, 0x0f, 0x66, - 0x7f, 0xcc, 0xf7, 0xfc, 0x34, 0x38, 0x45, 0x01, 0x37, 0x77, 0x2d, 0x6c, 0xdb, 0x3a, 0xa2, 0xa9, - 0xd1, 0xbb, 0xc0, 0x7f, 0xe0, 0x58, 0x8a, 0x8c, 0xcd, 0xb2, 0x6d, 0xf2, 0x60, 0x9c, 0xe8, 0x32, - 0xd9, 0x95, 0x6a, 0xc8, 0x46, 0x16, 0xdd, 0x61, 0x50, 0x04, 0x74, 0xe8, 0x1d, 0x67, 0x04, 0x2e, - 0x81, 0x13, 0x21, 0x01, 0x89, 0x46, 0xa4, 0x6c, 0x28, 0x88, 0x3a, 0x67, 0x50, 0x3c, 0x1e, 0x88, - 0x2e, 0x7b, 0x53, 0xf0, 0x3b, 0x20, 0x6b, 0xa0, 0xc7, 0xb6, 0x64, 0x21, 0x53, 0x47, 0x86, 0x46, - 0x76, 0x25, 0x45, 0x36, 0x54, 0xc7, 0x58, 0x44, 0x3d, 0x33, 0xbe, 0x94, 0x2b, 0xba, 0x2f, 0x74, - 0xd1, 0x7b, 0xa1, 0x8b, 0x9b, 0xde, 0x0b, 0x5d, 0x1a, 0x75, 0xf2, 0xfc, 0xb3, 0xbf, 0xe4, 0x39, - 0xf1, 0xa4, 0x83, 0x22, 0x7a, 0x20, 0x65, 0x0f, 0x83, 0xbf, 0x04, 0xe6, 0xa9, 0x49, 0x22, 0xaa, - 0x6a, 0xc4, 0x46, 0x16, 0x52, 0x83, 0x0c, 0xf2, 0x48, 0xb6, 0xd4, 0x15, 0x64, 0xe0, 0x9a, 0x9f, - 0xc2, 0x6e, 0x82, 0x8b, 0xa9, 0xa4, 0x99, 0x47, 0x4e, 0x82, 0x11, 0x95, 0x8e, 0xd0, 0x57, 0x61, - 0x4c, 0x64, 0x5f, 0xfc, 0x2c, 0x7b, 0xe7, 0xdc, 0xec, 0x84, 0x54, 0x9a, 0x8c, 0x2a, 0x2b, 0xfe, - 0x36, 0xef, 0x73, 0xe0, 0x74, 0x1b, 0x01, 0x86, 0xfc, 0x10, 0x4c, 0x98, 0xe1, 0x39, 0xef, 0xdd, - 0x59, 0x4a, 0x95, 0x24, 0x23, 0xb0, 0xec, 0x31, 0x8c, 0xe1, 0xf1, 0x06, 0x38, 0x1a, 0x11, 0x83, - 0x33, 0x80, 0x05, 0xf8, 0x4a, 0x6b, 0xcc, 0xaf, 0xc0, 0x59, 0x00, 0xbc, 0x04, 0x5b, 0x59, 0xa1, - 0x07, 0x3a, 0x24, 0x86, 0x46, 0x3a, 0x06, 0x35, 0xbf, 0x0f, 0x04, 0x6a, 0xf2, 0xb2, 0xae, 0xaf, - 0xcb, 0x9a, 0x45, 0x1e, 0xc8, 0x7a, 0x19, 0x1b, 0x4e, 0x5c, 0x96, 0xa2, 0x0f, 0x46, 0x65, 0xe5, - 0xb0, 0xca, 0x8d, 0x5f, 0x70, 0x60, 0x21, 0xfd, 0x9e, 0xcc, 0xf3, 0xfb, 0xe0, 0x35, 0x53, 0xd6, - 0x2c, 0xa9, 0x21, 0xeb, 0x4e, 0x8d, 0x46, 0x2f, 0x14, 0x73, 0xfe, 0x6a, 0x3a, 0xe7, 0xcb, 0x9a, - 0x15, 0x6c, 0xe4, 0x5f, 0x58, 0x23, 0x08, 0xa5, 0x09, 0x33, 0x22, 0xc2, 0xff, 0x87, 0x03, 0x67, - 0x3a, 0xae, 0x82, 0xab, 0xed, 0x6e, 0x79, 0x69, 0xfa, 0xcb, 0xe7, 0xf9, 0x29, 0x37, 0xeb, 0xc4, - 0x25, 0x12, 0xd2, 0xef, 0x6a, 0xdb, 0xec, 0x15, 0xc2, 0x89, 0x4b, 0x24, 0xa4, 0xb1, 0xeb, 0xe0, - 0x15, 0x5f, 0x6a, 0x0f, 0x35, 0xd9, 0x6d, 0x9d, 0x29, 0x06, 0x15, 0x6a, 0xd1, 0xad, 0x50, 0x8b, - 0xeb, 0xf5, 0x1d, 0x5d, 0x53, 0xd6, 0x50, 0x53, 0xf4, 0x0f, 0x6c, 0x0d, 0x35, 0xf9, 0x49, 0x00, - 0xdd, 0x4b, 0x20, 0x5b, 0x72, 0x70, 0x05, 0x1f, 0x82, 0xe3, 0x91, 0x51, 0x76, 0x2c, 0x15, 0x30, - 0x62, 0xd2, 0x11, 0x56, 0x2d, 0x5c, 0x4c, 0x79, 0x16, 0xce, 0x12, 0x76, 0x03, 0x18, 0x00, 0xaf, - 0xb3, 0x94, 0x10, 0x89, 0x80, 0x7b, 0xa6, 0x8d, 0xd4, 0x8a, 0xe1, 0x27, 0xda, 0x43, 0xab, 0x79, - 0xf7, 0x59, 0x4a, 0xe9, 0xb4, 0x9b, 0x5f, 0x68, 0x9e, 0x0e, 0x17, 0x0e, 0xb1, 0xe3, 0x44, 0x5e, - 0xa6, 0x99, 0x0e, 0x55, 0x10, 0xd1, 0xf3, 0x45, 0x84, 0x7f, 0x08, 0x66, 0x23, 0x5b, 0x1e, 0xbe, - 0x51, 0x3f, 0x39, 0x02, 0xe6, 0xda, 0x6c, 0xe1, 0xff, 0x95, 0x58, 0x26, 0x70, 0xe9, 0xcb, 0x84, - 0x78, 0x7c, 0x65, 0xba, 0x8c, 0x2f, 0x98, 0x05, 0xc3, 0xb4, 0xf0, 0xa2, 0x91, 0x39, 0x48, 0x2d, - 0x74, 0x07, 0xe0, 0x15, 0x30, 0x64, 0x39, 0x0f, 0xcc, 0x10, 0xd5, 0xe6, 0xbc, 0x13, 0x1d, 0x7f, - 0x7a, 0x9e, 0x9f, 0x76, 0x5b, 0x24, 0xa2, 0xee, 0x15, 0x35, 0x2c, 0xd4, 0x64, 0x7b, 0xb7, 0x78, - 0x07, 0x55, 0x65, 0xa5, 0xb9, 0x82, 0x94, 0x2c, 0x27, 0xd2, 0x25, 0xf0, 0x3c, 0x98, 0xf0, 0xb5, - 0x72, 0xd1, 0x87, 0xe9, 0xe3, 0x76, 0xd4, 0x1b, 0xa5, 0x05, 0x1d, 0xdc, 0x06, 0x59, 0x5f, 0x4c, - 0xc1, 0xb5, 0x9a, 0x46, 0x88, 0x86, 0x0d, 0x89, 0xee, 0x3a, 0x42, 0x77, 0x3d, 0x9b, 0x62, 0x57, - 0xf1, 0xa4, 0x07, 0x52, 0xf6, 0x31, 0x44, 0x47, 0x8b, 0x6d, 0x90, 0xf5, 0x5d, 0x1b, 0x87, 0x3f, - 0xd2, 0x05, 0xbc, 0x07, 0x12, 0x83, 0x5f, 0x03, 0xe3, 0x2a, 0x22, 0x8a, 0xa5, 0x99, 0x4e, 0x5b, - 0x90, 0x1d, 0xa5, 0x9e, 0x3f, 0x5b, 0x64, 0x0d, 0xa5, 0xd7, 0x32, 0xb2, 0x16, 0xb2, 0xb8, 0x12, - 0x88, 0xb2, 0x9b, 0x16, 0x5e, 0x0d, 0xb7, 0xc1, 0x29, 0x5f, 0x57, 0x6c, 0x22, 0x8b, 0x16, 0xb8, - 0x5e, 0x3c, 0x8c, 0x51, 0x65, 0xcf, 0x7c, 0xfe, 0xf1, 0xe5, 0xd3, 0x0c, 0xdd, 0x8f, 0x1f, 0x16, - 0x07, 0x1b, 0xb6, 0xa5, 0x19, 0x55, 0x71, 0xca, 0xc3, 0xb8, 0xc7, 0x20, 0xbc, 0x30, 0x39, 0x09, - 0x46, 0xbe, 0x27, 0x6b, 0x3a, 0x52, 0xb3, 0x60, 0x8e, 0x2b, 0x8c, 0x8a, 0xec, 0x0b, 0x5e, 0x05, - 0x23, 0x4e, 0x0f, 0x59, 0x27, 0xd9, 0xf1, 0x39, 0xae, 0x30, 0xb1, 0xc4, 0xb7, 0x53, 0xbf, 0x84, - 0x0d, 0x75, 0x83, 0x4a, 0x8a, 0x6c, 0x05, 0xdc, 0x04, 0x7e, 0x34, 0x4a, 0x36, 0xde, 0x43, 0x06, - 0xc9, 0xbe, 0x42, 0x15, 0xbd, 0xc8, 0xbc, 0x7a, 0xa2, 0xd5, 0xab, 0x15, 0xc3, 0xfe, 0xfc, 0xe3, - 0xcb, 0x80, 0x6d, 0x52, 0x31, 0x6c, 0xfa, 0xe2, 0x52, 0x8c, 0x4d, 0x0a, 0xe1, 0x84, 0x8e, 0x8f, - 0xea, 0x86, 0xce, 0x51, 0x37, 0x74, 0xbc, 0x51, 0x37, 0x74, 0xbe, 0x06, 0xa6, 0xd8, 0xe5, 0x46, - 0x44, 0x52, 0xea, 0x96, 0xe5, 0xf4, 0x28, 0xc8, 0xc4, 0xca, 0x6e, 0x76, 0x82, 0x5a, 0x78, 0xc2, - 0x9f, 0x2e, 0xbb, 0xb3, 0x37, 0x9d, 0x49, 0xa7, 0x67, 0xcc, 0xb7, 0xbd, 0xf6, 0x2c, 0xbb, 0x20, - 0x00, 0x82, 0xc4, 0xc1, 0x5e, 0xb5, 0x9b, 0xa9, 0x32, 0x69, 0xa7, 0xdb, 0x2e, 0x86, 0x80, 0xf9, - 0x7d, 0xf6, 0xee, 0x46, 0x9b, 0x69, 0x5f, 0xf6, 0xb6, 0x4c, 0x36, 0x31, 0xfb, 0xf2, 0x8a, 0xcf, - 0x3e, 0xb3, 0x05, 0x2f, 0x83, 0xc5, 0x2e, 0xb6, 0x64, 0xee, 0xb8, 0x04, 0x60, 0x70, 0x4b, 0x59, - 0x3e, 0xf4, 0x32, 0xac, 0xff, 0x48, 0xba, 0x05, 0x82, 0x4a, 0x7b, 0x87, 0x8b, 0xc9, 0xdd, 0x48, - 0xf4, 0xfa, 0xfc, 0x7f, 0x74, 0x51, 0x7c, 0x15, 0x5c, 0x4a, 0xa7, 0x2d, 0x73, 0xc6, 0x9b, 0x2c, - 0x29, 0x72, 0xe9, 0xf3, 0x07, 0x5d, 0xc0, 0xf3, 0xec, 0x2d, 0x28, 0xe9, 0x58, 0xd9, 0x23, 0xf7, - 0x0d, 0x5b, 0xd3, 0xef, 0xa2, 0xc7, 0x6e, 0x54, 0x7a, 0xaf, 0xfa, 0x16, 0x6b, 0xbb, 0x92, 0x65, - 0x98, 0x06, 0x6f, 0x80, 0xa9, 0x1d, 0x3a, 0x2f, 0xd5, 0x1d, 0x01, 0x89, 0x36, 0x06, 0x6e, 0xe4, - 0x73, 0xb4, 0xe0, 0x9c, 0xdc, 0x49, 0x58, 0xce, 0x2f, 0xb3, 0x26, 0xa9, 0xec, 0xdb, 0xbe, 0x6a, - 0xe1, 0x5a, 0x99, 0xf5, 0xf2, 0xde, 0x69, 0x44, 0xfa, 0x7d, 0x2e, 0xda, 0xef, 0xf3, 0xab, 0xe0, - 0xec, 0x81, 0x10, 0x41, 0x07, 0x14, 0xf6, 0x39, 0x17, 0xf7, 0xf9, 0xd2, 0x87, 0xe7, 0xc0, 0x30, - 0x05, 0x82, 0xbf, 0xcc, 0x80, 0xc9, 0x24, 0xae, 0x0b, 0xde, 0xe8, 0xfe, 0xba, 0x45, 0x59, 0xb8, - 0xdc, 0x72, 0x1f, 0x08, 0xae, 0x21, 0xfc, 0x8f, 0xb8, 0xef, 0x7f, 0xf1, 0xb7, 0x9f, 0x66, 0x7e, - 0xc0, 0x6d, 0x95, 0xe0, 0x8d, 0xce, 0x5c, 0xac, 0x6f, 0x34, 0x23, 0xd4, 0x84, 0x27, 0x21, 0x37, - 0x3c, 0x85, 0xd7, 0x7a, 0x42, 0x60, 0x57, 0xe3, 0x29, 0xfc, 0x82, 0x63, 0x25, 0x5f, 0xf4, 0xee, - 0xc2, 0xeb, 0xdd, 0xdb, 0x19, 0xe1, 0xf4, 0x72, 0x37, 0x7a, 0x07, 0x60, 0x7e, 0xba, 0x42, 0xdd, - 0xf4, 0x3a, 0x5c, 0xec, 0xc2, 0x42, 0x97, 0xed, 0x83, 0xef, 0x67, 0x40, 0xb6, 0x0d, 0x85, 0x47, - 0xe0, 0x9d, 0x1e, 0x35, 0x4b, 0x64, 0x0b, 0x73, 0xef, 0x1c, 0x12, 0x1a, 0x33, 0xfa, 0x36, 0x35, - 0xba, 0xbb, 0xc0, 0x60, 0x42, 0x0e, 0xa0, 0xe4, 0x13, 0x71, 0xf0, 0xbf, 0x1c, 0x98, 0x4a, 0x66, - 0x04, 0x09, 0x5c, 0xeb, 0x59, 0xe9, 0x56, 0xea, 0x31, 0x77, 0xe7, 0x70, 0xc0, 0x98, 0x03, 0x6e, - 0x51, 0x07, 0x2c, 0xc3, 0xeb, 0x3d, 0x38, 0x00, 0x9b, 0x21, 0xfb, 0xff, 0xe5, 0x11, 0x2a, 0x89, - 0xfc, 0x15, 0x5c, 0x4d, 0xaf, 0xf5, 0x41, 0x74, 0x5d, 0xee, 0x56, 0xdf, 0x38, 0xcc, 0xf0, 0x65, - 0x6a, 0xf8, 0xd7, 0xe1, 0x95, 0x14, 0x3f, 0xcf, 0xf8, 0x5c, 0x65, 0xa4, 0x55, 0x4c, 0x30, 0x39, - 0xdc, 0x9f, 0xf4, 0x64, 0x72, 0x02, 0x43, 0xd7, 0x93, 0xc9, 0x49, 0xdc, 0x59, 0x6f, 0x26, 0x47, - 0xde, 0x6d, 0xf8, 0x7b, 0x8e, 0x35, 0xb2, 0x11, 0xda, 0x0c, 0xbe, 0x9d, 0x5e, 0xc5, 0x24, 0x36, - 0x2e, 0x77, 0xbd, 0xe7, 0xf5, 0xcc, 0xb4, 0xb7, 0xa8, 0x69, 0x4b, 0x70, 0xa1, 0xb3, 0x69, 0x36, - 0x03, 0x70, 0x7f, 0x76, 0x81, 0x3f, 0xcb, 0xb0, 0xf7, 0xf0, 0x60, 0x1e, 0x0c, 0xde, 0x4b, 0xaf, - 0x62, 0x2a, 0xfe, 0x2d, 0xb7, 0x7e, 0x78, 0x80, 0xcc, 0x09, 0x6b, 0xd4, 0x09, 0x37, 0x61, 0xb9, - 0xb3, 0x13, 0x2c, 0x1f, 0x31, 0x88, 0x69, 0x8b, 0x62, 0x4a, 0x2e, 0xaf, 0x07, 0xff, 0xd1, 0xc2, - 0xdb, 0x45, 0x49, 0x24, 0x02, 0xbb, 0x78, 0x9b, 0xdb, 0x90, 0x83, 0xb9, 0x52, 0x3f, 0x10, 0xcc, - 0xea, 0x12, 0xb5, 0xfa, 0x1b, 0xf0, 0x6a, 0x67, 0xab, 0x3d, 0x5a, 0x50, 0x8a, 0x3f, 0x60, 0x9f, - 0x64, 0xd8, 0x6f, 0x50, 0x29, 0xd8, 0x33, 0xb8, 0x99, 0x5e, 0xe9, 0xf4, 0x04, 0x60, 0xee, 0xfe, - 0x21, 0xa3, 0x32, 0xef, 0x54, 0xa9, 0x77, 0xe4, 0xad, 0x45, 0x28, 0x74, 0xf6, 0x4f, 0xb4, 0xd4, - 0xb9, 0x94, 0x66, 0x81, 0x5f, 0xd9, 0xfc, 0x9a, 0x03, 0xe3, 0x21, 0x32, 0x0b, 0xbe, 0xd9, 0xc5, - 0xd1, 0x86, 0x49, 0xb1, 0xdc, 0x5b, 0xdd, 0x2f, 0x64, 0xb6, 0x2e, 0x50, 0x5b, 0xe7, 0x61, 0x21, - 0x45, 0x24, 0xb8, 0x4a, 0xfe, 0x39, 0x13, 0x2b, 0x86, 0x93, 0x19, 0xab, 0x6e, 0x2e, 0x7f, 0x2a, - 0xa6, 0xad, 0x9b, 0xcb, 0x9f, 0x8e, 0x4c, 0xe3, 0x9f, 0xb9, 0x65, 0xee, 0x87, 0xdc, 0x56, 0xaa, - 0x04, 0x80, 0x1d, 0x20, 0x49, 0x33, 0xa4, 0xa0, 0x95, 0x8d, 0x1d, 0xff, 0x8d, 0x5e, 0x41, 0xfc, - 0x90, 0xf8, 0x4d, 0x06, 0x5c, 0x48, 0xdd, 0xa8, 0xc2, 0xfb, 0xbd, 0x56, 0xb0, 0x07, 0xf6, 0xda, - 0xb9, 0x07, 0x87, 0x0d, 0xcb, 0xfc, 0xbd, 0x45, 0xdd, 0xbd, 0x09, 0xc5, 0xae, 0xcb, 0x65, 0xc9, - 0x44, 0x56, 0xe0, 0x31, 0xe1, 0x49, 0xbc, 0x33, 0x7e, 0x0a, 0x7f, 0x3c, 0x08, 0xce, 0xa5, 0xe9, - 0x67, 0xe1, 0x7a, 0x1f, 0xd5, 0x50, 0x62, 0x23, 0x9f, 0x7b, 0xf7, 0x10, 0x11, 0x99, 0xa7, 0x3e, - 0x71, 0x23, 0xf3, 0x77, 0xdc, 0xd6, 0x36, 0x7c, 0xaf, 0x1b, 0x6f, 0x45, 0xc9, 0xbe, 0x68, 0x78, - 0x26, 0xb9, 0xed, 0x5b, 0x7d, 0x81, 0x7b, 0x61, 0x9b, 0x84, 0xfc, 0xdb, 0x4c, 0xac, 0xb8, 0x0f, - 0xe5, 0x86, 0x72, 0x3f, 0x9c, 0x92, 0xe7, 0xf6, 0x95, 0xfe, 0x40, 0x7a, 0xcb, 0x01, 0xbe, 0x33, - 0xfa, 0xc9, 0x01, 0xc9, 0x20, 0x7e, 0x0e, 0xf8, 0x27, 0xc7, 0x7e, 0x85, 0x4d, 0x62, 0x43, 0x60, - 0x17, 0x7c, 0xdc, 0x01, 0x8c, 0x4b, 0x6e, 0xb5, 0x5f, 0x98, 0xee, 0x0b, 0xe4, 0x36, 0xe4, 0x0d, - 0xfc, 0x37, 0x17, 0xfb, 0xe7, 0x9a, 0x28, 0xbd, 0x02, 0x6f, 0x75, 0x7f, 0xd0, 0x89, 0x1c, 0x4f, - 0xee, 0x76, 0xff, 0x40, 0xdd, 0x5b, 0x1d, 0x0a, 0x0e, 0xe1, 0x89, 0x4f, 0x31, 0x3d, 0x2d, 0x7d, - 0xf3, 0xd3, 0x17, 0xb3, 0xdc, 0x67, 0x2f, 0x66, 0xb9, 0xbf, 0xbe, 0x98, 0xe5, 0x9e, 0xbd, 0x9c, - 0x1d, 0xf8, 0xec, 0xe5, 0xec, 0xc0, 0x1f, 0x5f, 0xce, 0x0e, 0x6c, 0x5d, 0xab, 0x6a, 0xf6, 0x6e, - 0x7d, 0xa7, 0xa8, 0xe0, 0x1a, 0xfb, 0x27, 0xad, 0xd0, 0x2e, 0x97, 0xfd, 0x5d, 0x1a, 0x6f, 0x08, - 0x8f, 0x63, 0x65, 0x7a, 0xd3, 0x44, 0x64, 0x67, 0x84, 0xfe, 0x10, 0xfe, 0xfa, 0xff, 0x02, 0x00, - 0x00, 0xff, 0xff, 0x69, 0x3e, 0x82, 0x9f, 0x44, 0x27, 0x00, 0x00, + 0x15, 0x76, 0x8f, 0x7f, 0x62, 0x97, 0x13, 0x67, 0x53, 0xf9, 0x9b, 0x8c, 0x1d, 0x8f, 0xd3, 0x49, + 0x60, 0xf2, 0x37, 0x6d, 0x7b, 0xb5, 0xec, 0x26, 0x90, 0x4d, 0x3c, 0xe3, 0x38, 0x19, 0x25, 0x9b, + 0x78, 0x3b, 0x4e, 0x40, 0x5e, 0x4c, 0xa7, 0xdd, 0x5d, 0x8c, 0x1b, 0xf7, 0x74, 0xb7, 0xbb, 0xda, + 0x93, 0x8c, 0xa2, 0x1c, 0x16, 0x24, 0xb4, 0xcb, 0x01, 0x05, 0x21, 0xee, 0x7b, 0x41, 0xe2, 0xc0, + 0x09, 0xad, 0x40, 0xdc, 0xf6, 0xb8, 0x37, 0x96, 0xdd, 0x0b, 0x02, 0x29, 0xa0, 0x04, 0x24, 0x84, + 0x84, 0x84, 0x16, 0xae, 0x48, 0xa8, 0xab, 0x5f, 0xff, 0xba, 0xc7, 0xd3, 0x33, 0xe3, 0x03, 0x37, + 0x77, 0xd5, 0xab, 0xaf, 0xde, 0x7b, 0xf5, 0xea, 0xd5, 0x7b, 0xdf, 0x18, 0x09, 0x9a, 0xe1, 0x10, + 0x5b, 0xd9, 0x90, 0x35, 0x43, 0xa2, 0x44, 0xd9, 0xb6, 0x35, 0xa7, 0x25, 0x28, 0x4a, 0x53, 0xb0, + 0x6c, 0xb3, 0xa9, 0xa9, 0xc4, 0x16, 0x9a, 0x73, 0xc2, 0xd6, 0x36, 0xb1, 0x5b, 0x65, 0xcb, 0x36, + 0x1d, 0x13, 0x9f, 0x4e, 0x59, 0x50, 0x56, 0x94, 0x66, 0xd9, 0x5f, 0x50, 0x6e, 0xce, 0x15, 0xa6, + 0xea, 0xa6, 0x59, 0xd7, 0x89, 0x20, 0x5b, 0x9a, 0x20, 0x1b, 0x86, 0xe9, 0xc8, 0x8e, 0x66, 0x1a, + 0xd4, 0x83, 0x28, 0x1c, 0xa9, 0x9b, 0x75, 0x93, 0xfd, 0x29, 0xb8, 0x7f, 0xc1, 0x68, 0x11, 0xd6, + 0xb0, 0xaf, 0xf5, 0xed, 0xef, 0x0a, 0x8e, 0xd6, 0x20, 0xd4, 0x91, 0x1b, 0x16, 0x08, 0xcc, 0x67, + 0x51, 0x35, 0xd0, 0xc2, 0x5b, 0x33, 0xdb, 0x6e, 0x4d, 0x73, 0x4e, 0xa0, 0x1b, 0xb2, 0x4d, 0x54, + 0x49, 0x31, 0x0d, 0xba, 0xdd, 0x08, 0x56, 0x9c, 0xdd, 0x65, 0xc5, 0x63, 0xcd, 0x26, 0x20, 0x36, + 0xe5, 0x10, 0x43, 0x25, 0x76, 0x43, 0x33, 0x1c, 0x41, 0xb1, 0x5b, 0x96, 0x63, 0x0a, 0x9b, 0xa4, + 0xe5, 0x5b, 0x78, 0x42, 0x31, 0x69, 0xc3, 0xa4, 0x92, 0x67, 0xa4, 0xf7, 0x01, 0x53, 0x67, 0xbc, + 0x2f, 0x81, 0x3a, 0xf2, 0xa6, 0x66, 0xd4, 0x85, 0xe6, 0xdc, 0x3a, 0x71, 0xe4, 0x39, 0xff, 0xdb, + 0x93, 0xe2, 0xd7, 0xd0, 0xe4, 0xbb, 0xae, 0xd3, 0xab, 0xa0, 0xdc, 0x4d, 0x62, 0x10, 0xaa, 0x51, + 0x91, 0x6c, 0x6d, 0x13, 0xea, 0xe0, 0x93, 0x68, 0xd4, 0xd3, 0x50, 0x53, 0xf3, 0xdc, 0x0c, 0x57, + 0x1a, 0xab, 0xe4, 0xf2, 0x9c, 0xb8, 0x8f, 0x8d, 0xd5, 0x54, 0x5c, 0x44, 0xe3, 0xbe, 0x55, 0xae, + 0x44, 0xce, 0x95, 0x10, 0x91, 0x3f, 0x54, 0x53, 0xf9, 0xa7, 0x68, 0x2a, 0x1d, 0x9e, 0x5a, 0xa6, + 0x41, 0x09, 0x7e, 0x0f, 0x1d, 0xa8, 0x7b, 0x43, 0x12, 0x75, 0x64, 0x87, 0xb0, 0x4d, 0xc6, 0xe7, + 0x67, 0xcb, 0xed, 0x0e, 0xbf, 0x39, 0x57, 0x4e, 0x60, 0xdd, 0x77, 0xd7, 0x55, 0x86, 0x3e, 0x7d, + 0x51, 0x1c, 0x10, 0xf7, 0xd7, 0x23, 0x63, 0xfc, 0x14, 0x2a, 0xc4, 0x36, 0xaf, 0xba, 0x70, 0xbe, + 0x69, 0xbc, 0x9c, 0xb0, 0xdc, 0x9f, 0x05, 0xcd, 0x2a, 0x68, 0x84, 0x6d, 0x4f, 0xf3, 0xdc, 0xcc, + 0x60, 0x69, 0x7c, 0xfe, 0x7c, 0x39, 0x43, 0x3c, 0x96, 0x19, 0x88, 0x08, 0x2b, 0xf9, 0x73, 0xe8, + 0xab, 0x3b, 0xb7, 0xb8, 0xef, 0xc8, 0xb6, 0xb3, 0x6c, 0x9b, 0x96, 0x49, 0x65, 0x3d, 0xd0, 0xe6, + 0x03, 0x0e, 0x95, 0x3a, 0xcb, 0x82, 0x6e, 0xdf, 0x46, 0x63, 0x96, 0x3f, 0x08, 0x1e, 0x7b, 0x3b, + 0x9b, 0x7a, 0x00, 0xbe, 0xa0, 0xaa, 0x9a, 0x7b, 0x51, 0x42, 0xe8, 0x10, 0x90, 0x2f, 0xa1, 0xaf, + 0xa4, 0x69, 0x62, 0x5a, 0x3b, 0x94, 0xfe, 0x21, 0x97, 0x6e, 0x60, 0x4c, 0x34, 0x38, 0xe9, 0x1d, + 0x3a, 0x5f, 0xed, 0x4a, 0x67, 0x91, 0x34, 0xcc, 0xa6, 0xac, 0xa7, 0xaa, 0xfc, 0xb7, 0x1c, 0x1a, + 0x66, 0x7b, 0xe3, 0x13, 0xc9, 0x80, 0x0d, 0x83, 0x75, 0x12, 0x8d, 0x29, 0xba, 0x46, 0x0c, 0x27, + 0x0c, 0xd5, 0x51, 0x6f, 0xa0, 0xa6, 0xe2, 0xc3, 0x68, 0xd8, 0x31, 0x2d, 0xe9, 0x6e, 0x7e, 0x70, + 0x86, 0x2b, 0x1d, 0x10, 0x87, 0x1c, 0xd3, 0xba, 0x8b, 0xcf, 0x23, 0xdc, 0xd0, 0x0c, 0xc9, 0x32, + 0x1f, 0xbb, 0xf1, 0x6d, 0x48, 0x9e, 0xc4, 0xd0, 0x0c, 0x57, 0x1a, 0x14, 0x27, 0x1a, 0x9a, 0xb1, + 0xec, 0x4e, 0xd4, 0x8c, 0x15, 0x57, 0x76, 0x16, 0x1d, 0x69, 0xca, 0xba, 0xa6, 0xca, 0x8e, 0x69, + 0x53, 0x58, 0xa2, 0xc8, 0x56, 0x7e, 0x98, 0xe1, 0xe1, 0x70, 0x8e, 0x2d, 0xaa, 0xca, 0x16, 0x3e, + 0x8f, 0x0e, 0x05, 0xa3, 0x12, 0x25, 0x0e, 0x13, 0x1f, 0x61, 0xe2, 0x07, 0x83, 0x89, 0xfb, 0xc4, + 0x71, 0x65, 0xa7, 0xd0, 0x98, 0xac, 0xeb, 0xe6, 0x63, 0x5d, 0xa3, 0x4e, 0x7e, 0xdf, 0xcc, 0x60, + 0x69, 0x4c, 0x0c, 0x07, 0x70, 0x01, 0x8d, 0xaa, 0xc4, 0x68, 0xb1, 0xc9, 0x51, 0x36, 0x19, 0x7c, + 0xbb, 0x56, 0xbb, 0x36, 0xb8, 0xb7, 0x9e, 0xe4, 0xc7, 0x66, 0xb8, 0xd2, 0x90, 0x38, 0xda, 0x60, + 0x91, 0xb5, 0x49, 0x70, 0x19, 0x1d, 0x66, 0x28, 0x92, 0x66, 0xc8, 0x8a, 0xa3, 0x35, 0x89, 0xd4, + 0x74, 0x8f, 0x07, 0xcd, 0x70, 0xa5, 0x51, 0xf1, 0x10, 0x9b, 0xaa, 0xc1, 0xcc, 0x43, 0xd7, 0xcf, + 0xbf, 0xe4, 0xd0, 0x29, 0x76, 0xe0, 0x0f, 0x7d, 0xfd, 0x22, 0x11, 0x65, 0x67, 0x4c, 0x1a, 0x57, + 0xd1, 0x6b, 0xfe, 0xf9, 0x4a, 0xb2, 0xaa, 0xda, 0x84, 0x52, 0xef, 0x38, 0x2a, 0xf8, 0xcb, 0x17, + 0xc5, 0x89, 0x96, 0xdc, 0xd0, 0xaf, 0xf0, 0x30, 0xc1, 0x8b, 0x07, 0x7d, 0xd9, 0x05, 0x6f, 0x24, + 0x99, 0x73, 0x06, 0x93, 0x39, 0xe7, 0xca, 0xe8, 0x07, 0x1f, 0x15, 0x07, 0xfe, 0xfe, 0x51, 0x71, + 0x80, 0xbf, 0x87, 0xf8, 0xdd, 0xb4, 0x85, 0xc8, 0x3c, 0x87, 0x5e, 0x0b, 0x00, 0x7d, 0x7d, 0xbc, + 0xd0, 0x39, 0xa8, 0x44, 0xe4, 0x5d, 0x6d, 0x76, 0xda, 0xbf, 0x1c, 0xd1, 0x2e, 0xbb, 0xfd, 0x3b, + 0xf6, 0xdb, 0xc5, 0xfe, 0x84, 0x0e, 0x7d, 0xd9, 0x1f, 0xd7, 0x36, 0xb4, 0x7f, 0xc7, 0x79, 0x80, + 0xfd, 0x09, 0xdf, 0xf3, 0x93, 0xe8, 0x04, 0x03, 0x5c, 0xd9, 0xb0, 0x4d, 0xc7, 0xd1, 0x09, 0xcb, + 0xb3, 0x7e, 0x36, 0xf8, 0x3d, 0x07, 0xf9, 0x36, 0x31, 0x0b, 0xdb, 0x14, 0xd1, 0x38, 0xd5, 0x65, + 0xba, 0x21, 0x35, 0x88, 0x43, 0x6c, 0xb6, 0xc3, 0xa0, 0x88, 0xd8, 0xd0, 0x3b, 0xee, 0x08, 0x9e, + 0x47, 0x47, 0x23, 0x02, 0x12, 0x8b, 0x3e, 0xd9, 0x50, 0x08, 0x73, 0xce, 0xa0, 0x78, 0x38, 0x14, + 0x5d, 0xf0, 0xa7, 0xf0, 0x77, 0x50, 0xde, 0x20, 0x4f, 0x1c, 0xc9, 0x26, 0x96, 0x4e, 0x0c, 0x8d, + 0x6e, 0x48, 0x8a, 0x6c, 0xa8, 0xae, 0xb1, 0x84, 0x79, 0x66, 0x7c, 0xbe, 0x50, 0xf6, 0x9e, 0xfb, + 0xb2, 0xff, 0xdc, 0x97, 0x57, 0xfc, 0xe7, 0xbe, 0x32, 0xea, 0x3e, 0x1a, 0xcf, 0xff, 0x5c, 0xe4, + 0xc4, 0x63, 0x2e, 0x8a, 0xe8, 0x83, 0x54, 0x7d, 0x0c, 0xfe, 0x22, 0x3a, 0xcf, 0x4c, 0x12, 0x49, + 0x5d, 0xa3, 0x0e, 0xb1, 0x89, 0x1a, 0xa6, 0xa3, 0xc7, 0xb2, 0xad, 0x2e, 0x12, 0xc3, 0x6c, 0x04, + 0xf9, 0xf0, 0x06, 0xba, 0x90, 0x49, 0x1a, 0x3c, 0x72, 0x0c, 0x8d, 0xa8, 0x6c, 0x84, 0x3d, 0x31, + 0x63, 0x22, 0x7c, 0xf1, 0xd3, 0xf0, 0x68, 0x7a, 0xa9, 0x8e, 0xa8, 0x2c, 0xb3, 0xd5, 0x16, 0x83, + 0x6d, 0xde, 0xe7, 0xd0, 0xc9, 0x36, 0x02, 0x80, 0xfc, 0x08, 0x4d, 0x58, 0xd1, 0x39, 0xff, 0x11, + 0x9b, 0xcf, 0x94, 0x71, 0x63, 0xb0, 0xf0, 0xb2, 0x26, 0xf0, 0x78, 0x03, 0x1d, 0x88, 0x89, 0xe1, + 0x29, 0x04, 0x01, 0xbe, 0xb8, 0x33, 0xe6, 0x17, 0xf1, 0x34, 0x42, 0x7e, 0xb6, 0xae, 0x2d, 0xb2, + 0x03, 0x1d, 0x12, 0x23, 0x23, 0x1d, 0x83, 0x9a, 0xdf, 0x42, 0x02, 0x33, 0x79, 0x41, 0xd7, 0x97, + 0x65, 0xcd, 0xa6, 0x0f, 0x65, 0xbd, 0x6a, 0x1a, 0x6e, 0x5c, 0x56, 0xe2, 0xaf, 0x4f, 0x6d, 0x71, + 0xaf, 0x6a, 0x97, 0x9f, 0x73, 0x68, 0x36, 0xfb, 0x9e, 0xe0, 0xf9, 0x2d, 0x74, 0xc8, 0x92, 0x35, + 0xdb, 0xcd, 0xa3, 0x6e, 0xc1, 0xc7, 0x2e, 0x14, 0x38, 0x7f, 0x29, 0x9b, 0xf3, 0x65, 0xcd, 0x0e, + 0x37, 0x0a, 0x2e, 0xac, 0x11, 0x86, 0xd2, 0x84, 0x15, 0x13, 0xe1, 0xff, 0xc3, 0xa1, 0x53, 0x1d, + 0x57, 0xe1, 0xa5, 0x76, 0xb7, 0xbc, 0x32, 0xf9, 0xe5, 0x8b, 0xe2, 0x71, 0x2f, 0xeb, 0x24, 0x25, + 0x52, 0xd2, 0xef, 0x52, 0xdb, 0xec, 0x15, 0xc1, 0x49, 0x4a, 0xa4, 0xa4, 0xb1, 0x6b, 0x68, 0x7f, + 0x20, 0xb5, 0x49, 0x5a, 0x70, 0x5b, 0xa7, 0xca, 0x61, 0xb9, 0x5b, 0xf6, 0xca, 0xdd, 0xf2, 0xf2, + 0xf6, 0xba, 0xae, 0x29, 0xb7, 0x49, 0x4b, 0x0c, 0x0e, 0xec, 0x36, 0x69, 0xf1, 0x47, 0x10, 0xf6, + 0x2e, 0x81, 0x6c, 0xcb, 0xe1, 0x15, 0x7c, 0x84, 0x0e, 0xc7, 0x46, 0xe1, 0x58, 0x6a, 0x68, 0xc4, + 0x62, 0x23, 0x50, 0x7a, 0x5c, 0xc8, 0x78, 0x16, 0xee, 0x12, 0xb8, 0x01, 0x00, 0xc0, 0xeb, 0x90, + 0x12, 0x62, 0x11, 0x70, 0xcf, 0x72, 0x88, 0x5a, 0x33, 0x82, 0x44, 0xbb, 0x67, 0x05, 0xf4, 0x16, + 0xa4, 0x94, 0x4e, 0xbb, 0x05, 0x55, 0xeb, 0xc9, 0x68, 0x15, 0x92, 0x38, 0x4e, 0xe2, 0x67, 0x9a, + 0xc9, 0x48, 0x39, 0x12, 0x3f, 0x5f, 0x42, 0xf9, 0x47, 0x68, 0x3a, 0xb6, 0xe5, 0xde, 0x1b, 0xf5, + 0x93, 0x7d, 0x68, 0xa6, 0xcd, 0x16, 0xc1, 0x5f, 0xa9, 0x65, 0x02, 0x97, 0xbd, 0x4c, 0x48, 0xc6, + 0x57, 0xae, 0xcb, 0xf8, 0xc2, 0x79, 0x34, 0xcc, 0xaa, 0x38, 0x16, 0x99, 0x83, 0xcc, 0x42, 0x6f, + 0x00, 0x5f, 0x46, 0x43, 0xb6, 0xfb, 0xc0, 0x0c, 0x31, 0x6d, 0xce, 0xba, 0xd1, 0xf1, 0xc7, 0x17, + 0xc5, 0x49, 0xaf, 0xdf, 0xa2, 0xea, 0x66, 0x59, 0x33, 0x85, 0x86, 0xec, 0x6c, 0x94, 0xef, 0x90, + 0xba, 0xac, 0xb4, 0x16, 0x89, 0x92, 0xe7, 0x44, 0xb6, 0x04, 0x9f, 0x45, 0x13, 0x81, 0x56, 0x1e, + 0xfa, 0x30, 0x7b, 0xdc, 0x0e, 0xf8, 0xa3, 0xac, 0x3a, 0xc4, 0x6b, 0x28, 0x1f, 0x88, 0x29, 0x66, + 0xa3, 0xa1, 0x51, 0xaa, 0x99, 0x86, 0xc4, 0x76, 0x1d, 0x61, 0xbb, 0x9e, 0xce, 0xb0, 0xab, 0x78, + 0xcc, 0x07, 0xa9, 0x06, 0x18, 0xa2, 0xab, 0xc5, 0x1a, 0xca, 0x07, 0xae, 0x4d, 0xc2, 0xef, 0xeb, + 0x02, 0xde, 0x07, 0x49, 0xc0, 0xdf, 0x46, 0xe3, 0x2a, 0xa1, 0x8a, 0xad, 0x59, 0x6e, 0x8f, 0x91, + 0x1f, 0x65, 0x9e, 0x3f, 0x5d, 0x86, 0xee, 0xd4, 0xef, 0x3f, 0xa1, 0x1f, 0x2d, 0x2f, 0x86, 0xa2, + 0x70, 0xd3, 0xa2, 0xab, 0xf1, 0x1a, 0x3a, 0x11, 0xe8, 0x6a, 0x5a, 0xc4, 0x66, 0xd5, 0xb2, 0x1f, + 0x0f, 0x63, 0x4c, 0xd9, 0x53, 0x9f, 0x7f, 0x7c, 0xe9, 0x24, 0xa0, 0x07, 0xf1, 0x03, 0x71, 0x70, + 0xdf, 0xb1, 0x35, 0xa3, 0x2e, 0x1e, 0xf7, 0x31, 0xee, 0x01, 0x84, 0x1f, 0x26, 0xc7, 0xd0, 0xc8, + 0xf7, 0x64, 0x4d, 0x27, 0x2a, 0x14, 0xbd, 0xf0, 0x85, 0xaf, 0xa0, 0x11, 0xb7, 0x21, 0xdd, 0xa6, + 0xf9, 0xf1, 0x19, 0xae, 0x34, 0x31, 0xcf, 0xb7, 0x53, 0xbf, 0x62, 0x1a, 0xea, 0x7d, 0x26, 0x29, + 0xc2, 0x0a, 0xbc, 0x82, 0x82, 0x68, 0x94, 0x1c, 0x73, 0x93, 0x18, 0x34, 0xbf, 0x9f, 0x29, 0x7a, + 0x01, 0xbc, 0x7a, 0x74, 0xa7, 0x57, 0x6b, 0x86, 0xf3, 0xf9, 0xc7, 0x97, 0x10, 0x6c, 0x52, 0x33, + 0x1c, 0xf6, 0xe2, 0x32, 0x8c, 0x15, 0x06, 0xe1, 0x86, 0x4e, 0x80, 0xea, 0x85, 0xce, 0x01, 0x2f, + 0x74, 0xfc, 0x51, 0x2f, 0x74, 0xbe, 0x86, 0x8e, 0xc3, 0xe5, 0x26, 0x54, 0x52, 0xb6, 0x6d, 0xdb, + 0x6d, 0x78, 0x88, 0x65, 0x2a, 0x1b, 0xf9, 0x09, 0x66, 0xe1, 0xd1, 0x60, 0xba, 0xea, 0xcd, 0xde, + 0x70, 0x27, 0xdd, 0x06, 0xb4, 0xd8, 0xf6, 0xda, 0x43, 0x76, 0x21, 0x08, 0x85, 0x89, 0x03, 0x5e, + 0xb5, 0x1b, 0x99, 0x32, 0x69, 0xa7, 0xdb, 0x2e, 0x46, 0x80, 0xf9, 0x2d, 0x78, 0x77, 0xe3, 0x9d, + 0x79, 0x20, 0x7b, 0x4b, 0xa6, 0x2b, 0x26, 0x7c, 0xf9, 0xc5, 0x67, 0x9f, 0xd9, 0x82, 0x97, 0xd1, + 0x5c, 0x17, 0x5b, 0x82, 0x3b, 0x2e, 0x22, 0x1c, 0xde, 0x52, 0xc8, 0x87, 0x7e, 0x86, 0x0d, 0x1e, + 0x49, 0xaf, 0x40, 0x50, 0x59, 0xef, 0x70, 0x21, 0xbd, 0x1b, 0x89, 0x5f, 0x9f, 0xff, 0x8f, 0x2e, + 0x8a, 0xaf, 0xa3, 0x8b, 0xd9, 0xb4, 0x05, 0x67, 0xbc, 0x09, 0x49, 0x91, 0xcb, 0x9e, 0x3f, 0xd8, + 0x02, 0x9e, 0x87, 0xb7, 0xa0, 0xa2, 0x9b, 0xca, 0x26, 0x7d, 0x60, 0x38, 0x9a, 0x7e, 0x97, 0x3c, + 0xf1, 0xa2, 0xd2, 0x7f, 0xd5, 0x57, 0xa1, 0xed, 0x4a, 0x97, 0x01, 0x0d, 0xde, 0x40, 0xc7, 0xd7, + 0xd9, 0xbc, 0xb4, 0xed, 0x0a, 0x48, 0xac, 0x31, 0xf0, 0x22, 0x9f, 0x63, 0x05, 0xe7, 0x91, 0xf5, + 0x94, 0xe5, 0xfc, 0x02, 0x34, 0x49, 0xd5, 0xc0, 0xf6, 0x25, 0xdb, 0x6c, 0x54, 0x81, 0x18, 0xf0, + 0x4f, 0x23, 0x46, 0x1e, 0x70, 0x71, 0xf2, 0x80, 0x5f, 0x42, 0xa7, 0x77, 0x85, 0x08, 0x3b, 0xa0, + 0xa8, 0xcf, 0xb9, 0xa4, 0xcf, 0xe7, 0x3f, 0x3c, 0x83, 0x86, 0x19, 0x10, 0xfe, 0x45, 0x0e, 0x1d, + 0x49, 0x23, 0xce, 0xf0, 0xf5, 0xee, 0xaf, 0x5b, 0x9c, 0xd2, 0x2b, 0x2c, 0xf4, 0x81, 0xe0, 0x19, + 0xc2, 0xff, 0x88, 0xfb, 0xfe, 0x17, 0x7f, 0xfd, 0x69, 0xee, 0x07, 0xdc, 0x6a, 0x05, 0x5f, 0xef, + 0x4c, 0xec, 0x06, 0x46, 0x03, 0x3b, 0x27, 0x3c, 0x8d, 0xb8, 0xe1, 0x19, 0xbe, 0xda, 0x13, 0x02, + 0x5c, 0x8d, 0x67, 0xf8, 0x0b, 0x0e, 0x4a, 0xbe, 0xf8, 0xdd, 0xc5, 0xd7, 0xba, 0xb7, 0x33, 0x46, + 0x10, 0x16, 0xae, 0xf7, 0x0e, 0x00, 0x7e, 0xba, 0xcc, 0xdc, 0xf4, 0x3a, 0x9e, 0xeb, 0xc2, 0x42, + 0x8f, 0x3a, 0xc4, 0xef, 0xe7, 0x50, 0xbe, 0x0d, 0x1f, 0x48, 0xf1, 0x9d, 0x1e, 0x35, 0x4b, 0xa5, + 0x1e, 0x0b, 0xef, 0xec, 0x11, 0x1a, 0x18, 0x7d, 0x8b, 0x19, 0xdd, 0x5d, 0x60, 0x80, 0x90, 0x0b, + 0x28, 0x05, 0xac, 0x1e, 0xfe, 0x2f, 0x87, 0x8e, 0xa7, 0xd3, 0x8b, 0x14, 0xdf, 0xee, 0x59, 0xe9, + 0x9d, 0x3c, 0x66, 0xe1, 0xce, 0xde, 0x80, 0x81, 0x03, 0x6e, 0x32, 0x07, 0x2c, 0xe0, 0x6b, 0x3d, + 0x38, 0xc0, 0xb4, 0x22, 0xf6, 0xff, 0xcb, 0x27, 0x54, 0x52, 0xf9, 0x2b, 0xbc, 0x94, 0x5d, 0xeb, + 0xdd, 0xe8, 0xba, 0xc2, 0xcd, 0xbe, 0x71, 0xc0, 0xf0, 0x05, 0x66, 0xf8, 0xd7, 0xf1, 0xe5, 0x0c, + 0xbf, 0xf5, 0x04, 0xc4, 0x67, 0xac, 0x55, 0x4c, 0x31, 0x39, 0xda, 0x9f, 0xf4, 0x64, 0x72, 0x0a, + 0x43, 0xd7, 0x93, 0xc9, 0x69, 0xdc, 0x59, 0x6f, 0x26, 0xc7, 0xde, 0x6d, 0xfc, 0x3b, 0x0e, 0x1a, + 0xd9, 0x18, 0x6d, 0x86, 0xdf, 0xce, 0xae, 0x62, 0x1a, 0x1b, 0x57, 0xb8, 0xd6, 0xf3, 0x7a, 0x30, + 0xed, 0x2d, 0x66, 0xda, 0x3c, 0x9e, 0xed, 0x6c, 0x9a, 0x03, 0x00, 0xde, 0x6f, 0x38, 0xf8, 0x67, + 0x39, 0x78, 0x0f, 0x77, 0xe7, 0xc1, 0xf0, 0xbd, 0xec, 0x2a, 0x66, 0xe2, 0xdf, 0x0a, 0xcb, 0x7b, + 0x07, 0x08, 0x4e, 0xb8, 0xcd, 0x9c, 0x70, 0x03, 0x57, 0x3b, 0x3b, 0xc1, 0x0e, 0x10, 0xc3, 0x98, + 0xb6, 0x19, 0xa6, 0xe4, 0xf1, 0x7a, 0xf8, 0x1f, 0x3b, 0x78, 0xbb, 0x38, 0x89, 0x44, 0x71, 0x17, + 0x6f, 0x73, 0x1b, 0x72, 0xb0, 0x50, 0xe9, 0x07, 0x02, 0xac, 0xae, 0x30, 0xab, 0xbf, 0x81, 0xaf, + 0x74, 0xb6, 0xda, 0xa7, 0x05, 0xa5, 0xe4, 0x03, 0xf6, 0x49, 0x0e, 0x7e, 0xd0, 0xca, 0xc0, 0x9e, + 0xe1, 0x95, 0xec, 0x4a, 0x67, 0x27, 0x00, 0x0b, 0x0f, 0xf6, 0x18, 0x15, 0xbc, 0x53, 0x67, 0xde, + 0x91, 0x57, 0xe7, 0xb0, 0xd0, 0xd9, 0x3f, 0xf1, 0x52, 0xe7, 0x62, 0x96, 0x05, 0x41, 0x65, 0xf3, + 0x2b, 0x0e, 0x8d, 0x47, 0xc8, 0x2c, 0xfc, 0x66, 0x17, 0x47, 0x1b, 0x25, 0xc5, 0x0a, 0x6f, 0x75, + 0xbf, 0x10, 0x6c, 0x9d, 0x65, 0xb6, 0x9e, 0xc7, 0xa5, 0x0c, 0x91, 0xe0, 0x29, 0xf9, 0xa7, 0x5c, + 0xa2, 0x18, 0x4e, 0x67, 0xac, 0xba, 0xb9, 0xfc, 0x99, 0x98, 0xb6, 0x6e, 0x2e, 0x7f, 0x36, 0x32, + 0x8d, 0x7f, 0xee, 0x95, 0xb9, 0x1f, 0x72, 0xab, 0x99, 0x12, 0x80, 0xe9, 0x02, 0x49, 0x9a, 0x21, + 0x85, 0xad, 0x6c, 0xe2, 0xf8, 0xaf, 0xf7, 0x0a, 0x12, 0x84, 0xc4, 0xaf, 0x73, 0xe8, 0x5c, 0xe6, + 0x46, 0x15, 0x3f, 0xe8, 0xb5, 0x82, 0xdd, 0xb5, 0xd7, 0x2e, 0x3c, 0xdc, 0x6b, 0x58, 0xf0, 0xf7, + 0x2a, 0x73, 0xf7, 0x0a, 0x16, 0xbb, 0x2e, 0x97, 0x25, 0x8b, 0xd8, 0xa1, 0xc7, 0x84, 0xa7, 0xc9, + 0xce, 0xf8, 0x19, 0xfe, 0xf1, 0x20, 0x3a, 0x93, 0xa5, 0x9f, 0xc5, 0xcb, 0x7d, 0x54, 0x43, 0xa9, + 0x8d, 0x7c, 0xe1, 0xdd, 0x3d, 0x44, 0x04, 0x4f, 0x7d, 0xe2, 0x45, 0xe6, 0x6f, 0xb9, 0xd5, 0x35, + 0xfc, 0x5e, 0x37, 0xde, 0x8a, 0x93, 0x7d, 0xf1, 0xf0, 0x4c, 0x73, 0xdb, 0xb7, 0xfa, 0x02, 0xf7, + 0xc3, 0x36, 0x0d, 0xf9, 0x37, 0xb9, 0x44, 0x71, 0x1f, 0xc9, 0x0d, 0xd5, 0x7e, 0x38, 0x25, 0xdf, + 0xed, 0x8b, 0xfd, 0x81, 0xf4, 0x96, 0x03, 0x02, 0x67, 0xf4, 0x93, 0x03, 0xd2, 0x41, 0x82, 0x1c, + 0xf0, 0x4f, 0x0e, 0x7e, 0x85, 0x4d, 0x63, 0x43, 0x70, 0x17, 0x7c, 0xdc, 0x2e, 0x8c, 0x4b, 0x61, + 0xa9, 0x5f, 0x98, 0xee, 0x0b, 0xe4, 0x36, 0xe4, 0x0d, 0xfe, 0x37, 0x97, 0xf8, 0x4f, 0x9d, 0x38, + 0xbd, 0x82, 0x6f, 0x76, 0x7f, 0xd0, 0xa9, 0x1c, 0x4f, 0xe1, 0x56, 0xff, 0x40, 0xdd, 0x5b, 0x1d, + 0x09, 0x0e, 0xe1, 0x69, 0x40, 0x31, 0x3d, 0xab, 0x7c, 0xf3, 0xd3, 0x97, 0xd3, 0xdc, 0x67, 0x2f, + 0xa7, 0xb9, 0xbf, 0xbc, 0x9c, 0xe6, 0x9e, 0xbf, 0x9a, 0x1e, 0xf8, 0xec, 0xd5, 0xf4, 0xc0, 0x1f, + 0x5e, 0x4d, 0x0f, 0xac, 0x5e, 0xad, 0x6b, 0xce, 0xc6, 0xf6, 0x7a, 0x59, 0x31, 0x1b, 0xf0, 0x1f, + 0x5f, 0x91, 0x5d, 0x2e, 0x05, 0xbb, 0x34, 0xdf, 0x10, 0x9e, 0x24, 0xca, 0xf4, 0x96, 0x45, 0xe8, + 0xfa, 0x08, 0xfb, 0x21, 0xfc, 0xf5, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x42, 0x0b, 0xd3, 0xc7, + 0x91, 0x27, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3152,6 +3173,21 @@ func (m *Chain) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.AllowInactiveVals { + i-- + if m.AllowInactiveVals { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x50 + } + if m.MinStake != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.MinStake)) + i-- + dAtA[i] = 0x48 + } if len(m.Denylist) > 0 { for iNdEx := len(m.Denylist) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Denylist[iNdEx]) @@ -4432,6 +4468,12 @@ func (m *Chain) Size() (n int) { n += 1 + l + sovQuery(uint64(l)) } } + if m.MinStake != 0 { + n += 1 + sovQuery(uint64(m.MinStake)) + } + if m.AllowInactiveVals { + n += 2 + } return n } @@ -5732,6 +5774,45 @@ func (m *Chain) Unmarshal(dAtA []byte) error { } m.Denylist = append(m.Denylist, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MinStake", wireType) + } + m.MinStake = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MinStake |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AllowInactiveVals", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AllowInactiveVals = bool(v != 0) default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:])