From aca9d7cb5a593f10e964fad8fd47c20486634c7c Mon Sep 17 00:00:00 2001 From: Hansol Lee <38912532+hansol-medi@users.noreply.github.com> Date: Thu, 23 Jun 2022 15:37:06 +0900 Subject: [PATCH] feat: cosmos-sdk v0.45.3 upgrade ver (#72) --- Makefile | 6 +- docs/core/proto-docs.md | 12 +- proto/cosmos/bank/v1beta1/query.proto | 10 +- .../base/snapshots/v1beta1/snapshot.proto | 6 +- .../base/tendermint/v1beta1/query.proto | 16 +- proto/cosmos/gov/v1beta1/gov.proto | 2 +- proto/cosmos/staking/v1beta1/staking.proto | 6 + proto/cosmos/tx/signing/v1beta1/signing.proto | 2 +- proto/cosmos/tx/v1beta1/service.proto | 6 +- types/tx/signing/signing.pb.go | 82 +- x/authz/authz.pb.go | 2 + x/authz/query.pb.go | 8 +- x/staking/client/testutil/suite.go | 3 +- x/staking/keeper/msg_server.go | 5 + x/staking/keeper/msg_server_test.go | 40 + x/staking/keeper/params.go | 7 + x/staking/keeper/validator.go | 4 + x/staking/keeper/validator_test.go | 5 + x/staking/legacy/v040/migrate.go | 51 +- x/staking/legacy/v040/migrate_test.go | 1 + x/staking/simulation/genesis.go | 12 +- x/staking/types/errors.go | 1 + x/staking/types/params.go | 32 +- x/staking/types/staking.pb.go | 1471 +++++++++-------- 24 files changed, 984 insertions(+), 806 deletions(-) create mode 100644 x/staking/keeper/msg_server_test.go diff --git a/Makefile b/Makefile index 049773edb69d..d5d5b76b4069 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,9 @@ BINDIR ?= $(GOPATH)/bin BUILDDIR ?= $(CURDIR)/build SIMAPP = ./simapp MOCKS_DIR = $(CURDIR)/tests/mocks -HTTPS_GIT := https://github.com/cosmos/cosmos-sdk.git +HTTPS_GIT := https://github.com/medibloc/cosmos-sdk.git DOCKER := $(shell which docker) -DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf +DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf:0.56.0 export GO111MODULE = on @@ -396,7 +396,7 @@ proto-lint: @$(DOCKER_BUF) lint --error-format=json proto-check-breaking: - @$(DOCKER_BUF) breaking --against $(HTTPS_GIT)#branch=master + @$(DOCKER_BUF) breaking --against $(HTTPS_GIT)#branch=v0.45.3-panacea TM_URL = https://raw.githubusercontent.com/tendermint/tendermint/v0.34.0-rc6/proto/tendermint diff --git a/docs/core/proto-docs.md b/docs/core/proto-docs.md index 05da452d7223..653c3bf406c0 100644 --- a/docs/core/proto-docs.md +++ b/docs/core/proto-docs.md @@ -932,6 +932,8 @@ the provide method with expiration time. GrantAuthorization extends a grant with both the addresses of the grantee and granter. It is used in genesis.proto and query.proto +Since: cosmos-sdk 0.45.2 + | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | @@ -1156,10 +1158,10 @@ Query defines the gRPC querier service. | `Grants` | [QueryGrantsRequest](#cosmos.authz.v1beta1.QueryGrantsRequest) | [QueryGrantsResponse](#cosmos.authz.v1beta1.QueryGrantsResponse) | Returns list of `Authorization`, granted to the grantee by the granter. | GET|/cosmos/authz/v1beta1/grants| | `GranterGrants` | [QueryGranterGrantsRequest](#cosmos.authz.v1beta1.QueryGranterGrantsRequest) | [QueryGranterGrantsResponse](#cosmos.authz.v1beta1.QueryGranterGrantsResponse) | GranterGrants returns list of `GrantAuthorization`, granted by granter. -Since: cosmos-sdk 0.46 | GET|/cosmos/authz/v1beta1/grants/granter/{granter}| +Since: cosmos-sdk 0.45.2 | GET|/cosmos/authz/v1beta1/grants/granter/{granter}| | `GranteeGrants` | [QueryGranteeGrantsRequest](#cosmos.authz.v1beta1.QueryGranteeGrantsRequest) | [QueryGranteeGrantsResponse](#cosmos.authz.v1beta1.QueryGranteeGrantsResponse) | GranteeGrants returns a list of `GrantAuthorization` by grantee. -Since: cosmos-sdk 0.46 | GET|/cosmos/authz/v1beta1/grants/grantee/{grantee}| +Since: cosmos-sdk 0.45.2 | GET|/cosmos/authz/v1beta1/grants/grantee/{grantee}| @@ -6562,6 +6564,7 @@ Params defines the parameters for the staking module. | `max_entries` | [uint32](#uint32) | | max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). | | `historical_entries` | [uint32](#uint32) | | historical_entries is the number of historical entries to persist. | | `bond_denom` | [string](#string) | | bond_denom defines the bondable coin denomination. | +| `min_commission_rate` | [string](#string) | | min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators | @@ -7595,6 +7598,11 @@ SignMode represents a signing mode with its own security guarantees. | SIGN_MODE_DIRECT | 1 | SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is verified with raw bytes from Tx | | SIGN_MODE_TEXTUAL | 2 | SIGN_MODE_TEXTUAL is a future signing mode that will verify some human-readable textual representation on top of the binary representation from SIGN_MODE_DIRECT | | SIGN_MODE_LEGACY_AMINO_JSON | 127 | SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses Amino JSON and will be removed in the future | +| SIGN_MODE_EIP_191 | 191 | SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 + +Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, but is not implemented on the SDK by default. To enable EIP-191, you need to pass a custom `TxConfig` that has an implementation of `SignModeHandler` for EIP-191. The SDK may decide to fully support EIP-191 in the future. + +Since: cosmos-sdk 0.45.2 | diff --git a/proto/cosmos/bank/v1beta1/query.proto b/proto/cosmos/bank/v1beta1/query.proto index 67cebd5fdd53..a567e073f381 100644 --- a/proto/cosmos/bank/v1beta1/query.proto +++ b/proto/cosmos/bank/v1beta1/query.proto @@ -55,7 +55,7 @@ service Query { // QueryBalanceRequest is the request type for the Query/Balance RPC method. message QueryBalanceRequest { - option (gogoproto.equal) = false; + option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // address is the address to query balances for. @@ -73,7 +73,7 @@ message QueryBalanceResponse { // QueryBalanceRequest is the request type for the Query/AllBalances RPC method. message QueryAllBalancesRequest { - option (gogoproto.equal) = false; + option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // address is the address to query balances for. @@ -88,7 +88,7 @@ message QueryAllBalancesRequest { message QueryAllBalancesResponse { // balances is the balances of all the coins. repeated cosmos.base.v1beta1.Coin balances = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; // pagination defines the pagination in the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; @@ -121,7 +121,7 @@ message QuerySpendableBalancesResponse { // QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC // method. message QueryTotalSupplyRequest { - option (gogoproto.equal) = false; + option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // pagination defines an optional pagination for the request. @@ -135,7 +135,7 @@ message QueryTotalSupplyRequest { message QueryTotalSupplyResponse { // supply is the supply of the coins repeated cosmos.base.v1beta1.Coin supply = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; // pagination defines the pagination in the response. // diff --git a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto index 1d2365bef652..6dcc4a933aa9 100644 --- a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto +++ b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto @@ -37,12 +37,12 @@ message SnapshotStoreItem { // SnapshotIAVLItem is an exported IAVL node. message SnapshotIAVLItem { - bytes key = 1; - bytes value = 2; + bytes key = 1; + bytes value = 2; // version is block height int64 version = 3; // height is depth of the tree. - int32 height = 4; + int32 height = 4; } // SnapshotExtensionMeta contains metadata about an external snapshotter. diff --git a/proto/cosmos/base/tendermint/v1beta1/query.proto b/proto/cosmos/base/tendermint/v1beta1/query.proto index 3c31877aa0ce..98542d23db16 100644 --- a/proto/cosmos/base/tendermint/v1beta1/query.proto +++ b/proto/cosmos/base/tendermint/v1beta1/query.proto @@ -116,15 +116,15 @@ message GetNodeInfoResponse { // VersionInfo is the type for the GetNodeInfoResponse message. message VersionInfo { - string name = 1; - string app_name = 2; - string version = 3; - string git_commit = 4; - string build_tags = 5; - string go_version = 6; - repeated Module build_deps = 7; + string name = 1; + string app_name = 2; + string version = 3; + string git_commit = 4; + string build_tags = 5; + string go_version = 6; + repeated Module build_deps = 7; // Since: cosmos-sdk 0.43 - string cosmos_sdk_version = 8; + string cosmos_sdk_version = 8; } // Module is the type for VersionInfo diff --git a/proto/cosmos/gov/v1beta1/gov.proto b/proto/cosmos/gov/v1beta1/gov.proto index 344b5ada19a5..01aebf950cf3 100644 --- a/proto/cosmos/gov/v1beta1/gov.proto +++ b/proto/cosmos/gov/v1beta1/gov.proto @@ -136,7 +136,7 @@ message Vote { // Deprecated: Prefer to use `options` instead. This field is set in queries // if and only if `len(options) == 1` and that option has weight 1. In all // other cases, this field will default to VOTE_OPTION_UNSPECIFIED. - VoteOption option = 3 [deprecated = true]; + VoteOption option = 3 [deprecated = true]; // Since: cosmos-sdk 0.43 repeated WeightedVoteOption options = 4 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index 76e9599e2d35..6d3c8308ed17 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -282,6 +282,12 @@ message Params { uint32 historical_entries = 4 [(gogoproto.moretags) = "yaml:\"historical_entries\""]; // bond_denom defines the bondable coin denomination. string bond_denom = 5 [(gogoproto.moretags) = "yaml:\"bond_denom\""]; + // min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators + string min_commission_rate = 6 [ + (gogoproto.moretags) = "yaml:\"min_commission_rate\"", + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", + (gogoproto.nullable) = false + ]; } // DelegationResponse is equivalent to Delegation except that it contains a diff --git a/proto/cosmos/tx/signing/v1beta1/signing.proto b/proto/cosmos/tx/signing/v1beta1/signing.proto index c76c231ad73f..50de89c8fc18 100644 --- a/proto/cosmos/tx/signing/v1beta1/signing.proto +++ b/proto/cosmos/tx/signing/v1beta1/signing.proto @@ -27,7 +27,7 @@ enum SignMode { // SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos // SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 - // + // // Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, // but is not implemented on the SDK by default. To enable EIP-191, you need // to pass a custom `TxConfig` that has an implementation of diff --git a/proto/cosmos/tx/v1beta1/service.proto b/proto/cosmos/tx/v1beta1/service.proto index 7a014f4b9f7d..d9f828f76327 100644 --- a/proto/cosmos/tx/v1beta1/service.proto +++ b/proto/cosmos/tx/v1beta1/service.proto @@ -157,9 +157,9 @@ message GetBlockWithTxsRequest { // Since: cosmos-sdk 0.45.2 message GetBlockWithTxsResponse { // txs are the transactions in the block. - repeated cosmos.tx.v1beta1.Tx txs = 1; - .tendermint.types.BlockID block_id = 2; - .tendermint.types.Block block = 3; + repeated cosmos.tx.v1beta1.Tx txs = 1; + .tendermint.types.BlockID block_id = 2; + .tendermint.types.Block block = 3; // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 4; } \ No newline at end of file diff --git a/types/tx/signing/signing.pb.go b/types/tx/signing/signing.pb.go index dbf86219f6d3..346198195edc 100644 --- a/types/tx/signing/signing.pb.go +++ b/types/tx/signing/signing.pb.go @@ -44,7 +44,13 @@ const ( // SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos // SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 // - // Since: cosmos-sdk 0.45 + // Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, + // but is not implemented on the SDK by default. To enable EIP-191, you need + // to pass a custom `TxConfig` that has an implementation of + // `SignModeHandler` for EIP-191. The SDK may decide to fully support + // EIP-191 in the future. + // + // Since: cosmos-sdk 0.45.2 SignMode_SIGN_MODE_EIP_191 SignMode = 191 ) @@ -398,43 +404,43 @@ func init() { } var fileDescriptor_9a54958ff3d0b1b9 = []byte{ - // 573 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xc1, 0x6e, 0xd3, 0x4c, - 0x10, 0xc7, 0xed, 0x26, 0xad, 0xda, 0xe9, 0xa7, 0x4f, 0x66, 0x49, 0x51, 0x6a, 0x90, 0xa9, 0xca, - 0x81, 0x0a, 0xa9, 0x6b, 0xa5, 0x3d, 0xa0, 0x72, 0x73, 0x13, 0x93, 0x9a, 0x36, 0x69, 0xb1, 0x53, - 0xa9, 0x70, 0xb1, 0x6c, 0x67, 0x6b, 0xac, 0xc6, 0x5e, 0xe3, 0x5d, 0xa3, 0xfa, 0xc4, 0x2b, 0xf0, - 0x12, 0x1c, 0x78, 0x0a, 0x0e, 0x5c, 0x38, 0xf6, 0xc8, 0x11, 0x25, 0xcf, 0xc0, 0x1d, 0xc5, 0x8e, - 0x93, 0x80, 0x8a, 0x10, 0x39, 0x59, 0x33, 0xf3, 0xdf, 0xdf, 0xfc, 0x57, 0x33, 0x6b, 0x78, 0xec, - 0x51, 0x16, 0x52, 0xa6, 0xf2, 0x6b, 0x95, 0x05, 0x7e, 0x14, 0x44, 0xbe, 0xfa, 0xae, 0xe1, 0x12, - 0xee, 0x34, 0xca, 0x18, 0xc7, 0x09, 0xe5, 0x14, 0x6d, 0x16, 0x42, 0xcc, 0xaf, 0x71, 0x59, 0x98, - 0x08, 0xe5, 0xdd, 0x09, 0xc3, 0x4b, 0xb2, 0x98, 0x53, 0x35, 0x4c, 0x07, 0x3c, 0x60, 0xc1, 0x0c, - 0x54, 0x26, 0x0a, 0x92, 0xbc, 0xe9, 0x53, 0xea, 0x0f, 0x88, 0x9a, 0x47, 0x6e, 0x7a, 0xa9, 0x3a, - 0x51, 0x56, 0x94, 0xb6, 0x2f, 0xa1, 0x66, 0x05, 0x7e, 0xe4, 0xf0, 0x34, 0x21, 0x2d, 0xc2, 0xbc, - 0x24, 0x88, 0x39, 0x4d, 0x18, 0xea, 0x02, 0xb0, 0x32, 0xcf, 0xea, 0xe2, 0x56, 0x65, 0x67, 0x7d, - 0x0f, 0xe3, 0x3f, 0x3a, 0xc2, 0xb7, 0x40, 0xcc, 0x39, 0xc2, 0xf6, 0x8f, 0x2a, 0xdc, 0xbd, 0x45, - 0x83, 0xf6, 0x01, 0xe2, 0xd4, 0x1d, 0x04, 0x9e, 0x7d, 0x45, 0xb2, 0xba, 0xb8, 0x25, 0xee, 0xac, - 0xef, 0xd5, 0x70, 0xe1, 0x17, 0x97, 0x7e, 0xb1, 0x16, 0x65, 0xe6, 0x5a, 0xa1, 0x3b, 0x26, 0x19, - 0x6a, 0x43, 0xb5, 0xef, 0x70, 0xa7, 0xbe, 0x94, 0xcb, 0xf7, 0xff, 0xcd, 0x16, 0x6e, 0x39, 0xdc, - 0x31, 0x73, 0x00, 0x92, 0x61, 0x95, 0x91, 0xb7, 0x29, 0x89, 0x3c, 0x52, 0xaf, 0x6c, 0x89, 0x3b, - 0x55, 0x73, 0x1a, 0xcb, 0x5f, 0x2a, 0x50, 0x1d, 0x4b, 0x51, 0x0f, 0x56, 0x58, 0x10, 0xf9, 0x03, - 0x32, 0xb1, 0xf7, 0x6c, 0x81, 0x7e, 0xd8, 0xca, 0x09, 0x47, 0x82, 0x39, 0x61, 0xa1, 0x97, 0xb0, - 0x9c, 0x4f, 0x69, 0x72, 0x89, 0x83, 0x45, 0xa0, 0x9d, 0x31, 0xe0, 0x48, 0x30, 0x0b, 0x92, 0x6c, - 0xc3, 0x4a, 0xd1, 0x06, 0x3d, 0x85, 0x6a, 0x48, 0xfb, 0x85, 0xe1, 0xff, 0xf7, 0x1e, 0xfd, 0x85, - 0xdd, 0xa1, 0x7d, 0x62, 0xe6, 0x07, 0xd0, 0x03, 0x58, 0x9b, 0x0e, 0x2d, 0x77, 0xf6, 0x9f, 0x39, - 0x4b, 0xc8, 0x9f, 0x44, 0x58, 0xce, 0x7b, 0xa2, 0x63, 0x58, 0x75, 0x03, 0xee, 0x24, 0x89, 0x53, - 0x0e, 0x4d, 0x2d, 0x9b, 0x14, 0x3b, 0x89, 0xa7, 0x2b, 0x58, 0x76, 0x6a, 0xd2, 0x30, 0x76, 0x3c, - 0x7e, 0x18, 0x70, 0x6d, 0x7c, 0xcc, 0x9c, 0x02, 0x90, 0xf5, 0xcb, 0xae, 0x2d, 0xe5, 0xbb, 0xb6, - 0xd0, 0x50, 0xe7, 0x30, 0x87, 0xcb, 0x50, 0x61, 0x69, 0xf8, 0xe4, 0xa3, 0x08, 0xab, 0xe5, 0x1d, - 0xd1, 0x26, 0x6c, 0x58, 0x46, 0xbb, 0x6b, 0x77, 0x4e, 0x5b, 0xba, 0x7d, 0xde, 0xb5, 0xce, 0xf4, - 0xa6, 0xf1, 0xdc, 0xd0, 0x5b, 0x92, 0x80, 0x6a, 0x20, 0xcd, 0x4a, 0x2d, 0xc3, 0xd4, 0x9b, 0x3d, - 0x49, 0x44, 0x1b, 0x70, 0x67, 0x96, 0xed, 0xe9, 0x17, 0xbd, 0x73, 0xed, 0x44, 0x5a, 0x42, 0x75, - 0xa8, 0xfd, 0x2e, 0xb6, 0xb5, 0xf3, 0x0b, 0xa9, 0x82, 0x1e, 0xc2, 0xfd, 0x59, 0xe5, 0x44, 0x6f, - 0x6b, 0xcd, 0x57, 0xb6, 0xd6, 0x31, 0xba, 0xa7, 0xf6, 0x0b, 0xeb, 0xb4, 0x2b, 0xbd, 0x47, 0xf7, - 0xe6, 0x89, 0xba, 0x71, 0x66, 0x37, 0x0e, 0x1a, 0xd2, 0x67, 0xf1, 0xb0, 0xfd, 0x75, 0xa8, 0x88, - 0x37, 0x43, 0x45, 0xfc, 0x3e, 0x54, 0xc4, 0x0f, 0x23, 0x45, 0xb8, 0x19, 0x29, 0xc2, 0xb7, 0x91, - 0x22, 0xbc, 0xde, 0xf5, 0x03, 0xfe, 0x26, 0x75, 0xb1, 0x47, 0x43, 0xb5, 0x7c, 0xf6, 0xf9, 0x67, - 0x97, 0xf5, 0xaf, 0x54, 0x9e, 0xc5, 0x64, 0xfe, 0x5f, 0xe2, 0xae, 0xe4, 0x8f, 0x66, 0xff, 0x67, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x3d, 0xad, 0x03, 0x67, 0x04, 0x00, 0x00, + // 562 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcd, 0x6e, 0xd3, 0x4c, + 0x14, 0x86, 0xed, 0xe6, 0x47, 0xe9, 0xf4, 0xd3, 0x27, 0x33, 0xa4, 0x28, 0x31, 0xc8, 0x44, 0x65, + 0x41, 0x84, 0x94, 0xb1, 0x92, 0x2c, 0x50, 0xd9, 0xe5, 0xc7, 0xa4, 0xa6, 0x4d, 0x52, 0xec, 0x54, + 0x02, 0x36, 0x96, 0xed, 0x4c, 0x8d, 0xd5, 0xd8, 0x63, 0x3c, 0x63, 0x54, 0xaf, 0xb8, 0x00, 0x36, + 0xdc, 0x06, 0x57, 0xc1, 0x82, 0x0d, 0xcb, 0x2e, 0x59, 0xa2, 0xe4, 0x1a, 0xd8, 0xa3, 0xd8, 0x71, + 0x12, 0xa4, 0x22, 0x44, 0x56, 0xd6, 0x9c, 0xf3, 0x9e, 0xe7, 0xbc, 0xa3, 0x73, 0xc6, 0xe0, 0xb1, + 0x4d, 0xa8, 0x47, 0xa8, 0xcc, 0xae, 0x65, 0xea, 0x3a, 0xbe, 0xeb, 0x3b, 0xf2, 0xfb, 0xa6, 0x85, + 0x99, 0xd9, 0xcc, 0xce, 0x28, 0x08, 0x09, 0x23, 0xb0, 0x9a, 0x0a, 0x11, 0xbb, 0x46, 0x59, 0x62, + 0x25, 0x14, 0x1b, 0x2b, 0x86, 0x1d, 0xc6, 0x01, 0x23, 0xb2, 0x17, 0xcd, 0x98, 0x4b, 0xdd, 0x0d, + 0x28, 0x0b, 0xa4, 0x24, 0xb1, 0xea, 0x10, 0xe2, 0xcc, 0xb0, 0x9c, 0x9c, 0xac, 0xe8, 0x52, 0x36, + 0xfd, 0x38, 0x4d, 0x1d, 0x5d, 0x82, 0xb2, 0xee, 0x3a, 0xbe, 0xc9, 0xa2, 0x10, 0xf7, 0x31, 0xb5, + 0x43, 0x37, 0x60, 0x24, 0xa4, 0x70, 0x04, 0x00, 0xcd, 0xe2, 0xb4, 0xc2, 0xd7, 0x72, 0xf5, 0x83, + 0x16, 0x42, 0x7f, 0x74, 0x84, 0x6e, 0x81, 0x68, 0x5b, 0x84, 0xa3, 0x9f, 0x79, 0x70, 0xf7, 0x16, + 0x0d, 0x6c, 0x03, 0x10, 0x44, 0xd6, 0xcc, 0xb5, 0x8d, 0x2b, 0x1c, 0x57, 0xf8, 0x1a, 0x5f, 0x3f, + 0x68, 0x95, 0x51, 0xea, 0x17, 0x65, 0x7e, 0x51, 0xc7, 0x8f, 0xb5, 0xfd, 0x54, 0x77, 0x8a, 0x63, + 0x38, 0x00, 0xf9, 0xa9, 0xc9, 0xcc, 0xca, 0x5e, 0x22, 0x6f, 0xff, 0x9b, 0x2d, 0xd4, 0x37, 0x99, + 0xa9, 0x25, 0x00, 0x28, 0x82, 0x12, 0xc5, 0xef, 0x22, 0xec, 0xdb, 0xb8, 0x92, 0xab, 0xf1, 0xf5, + 0xbc, 0xb6, 0x3e, 0x8b, 0x5f, 0x73, 0x20, 0xbf, 0x94, 0xc2, 0x09, 0x28, 0x52, 0xd7, 0x77, 0x66, + 0x78, 0x65, 0xef, 0xd9, 0x0e, 0xfd, 0x90, 0x9e, 0x10, 0x4e, 0x38, 0x6d, 0xc5, 0x82, 0x2f, 0x41, + 0x21, 0x99, 0xd2, 0xea, 0x12, 0xc7, 0xbb, 0x40, 0x87, 0x4b, 0xc0, 0x09, 0xa7, 0xa5, 0x24, 0xd1, + 0x00, 0xc5, 0xb4, 0x0d, 0x7c, 0x0a, 0xf2, 0x1e, 0x99, 0xa6, 0x86, 0xff, 0x6f, 0x3d, 0xfa, 0x0b, + 0x7b, 0x48, 0xa6, 0x58, 0x4b, 0x0a, 0xe0, 0x03, 0xb0, 0xbf, 0x1e, 0x5a, 0xe2, 0xec, 0x3f, 0x6d, + 0x13, 0x10, 0x3f, 0xf3, 0xa0, 0x90, 0xf4, 0x84, 0xa7, 0xa0, 0x64, 0xb9, 0xcc, 0x0c, 0x43, 0x33, + 0x1b, 0x9a, 0x9c, 0x35, 0x49, 0x77, 0x12, 0xad, 0x57, 0x30, 0xeb, 0xd4, 0x23, 0x5e, 0x60, 0xda, + 0xac, 0xeb, 0xb2, 0xce, 0xb2, 0x4c, 0x5b, 0x03, 0xa0, 0xfe, 0xdb, 0xae, 0xed, 0x25, 0xbb, 0xb6, + 0xd3, 0x50, 0xb7, 0x30, 0xdd, 0x02, 0xc8, 0xd1, 0xc8, 0x7b, 0xf2, 0x91, 0x07, 0xa5, 0xec, 0x8e, + 0xb0, 0x0a, 0x0e, 0x75, 0x75, 0x30, 0x32, 0x86, 0xe3, 0xbe, 0x62, 0x5c, 0x8c, 0xf4, 0x73, 0xa5, + 0xa7, 0x3e, 0x57, 0x95, 0xbe, 0xc0, 0xc1, 0x32, 0x10, 0x36, 0xa9, 0xbe, 0xaa, 0x29, 0xbd, 0x89, + 0xc0, 0xc3, 0x43, 0x70, 0x67, 0x13, 0x9d, 0x28, 0xaf, 0x26, 0x17, 0x9d, 0x33, 0x61, 0x0f, 0x3e, + 0x04, 0xf7, 0x37, 0xe1, 0x33, 0x65, 0xd0, 0xe9, 0xbd, 0x36, 0x3a, 0x43, 0x75, 0x34, 0x36, 0x5e, + 0xe8, 0xe3, 0x91, 0xf0, 0x01, 0xde, 0xdb, 0xae, 0x53, 0xd4, 0x73, 0xa3, 0x79, 0xdc, 0x14, 0xbe, + 0xf0, 0xdd, 0xc1, 0xb7, 0xb9, 0xc4, 0xdf, 0xcc, 0x25, 0xfe, 0xc7, 0x5c, 0xe2, 0x3f, 0x2d, 0x24, + 0xee, 0x66, 0x21, 0x71, 0xdf, 0x17, 0x12, 0xf7, 0xa6, 0xe1, 0xb8, 0xec, 0x6d, 0x64, 0x21, 0x9b, + 0x78, 0x72, 0xf6, 0xb8, 0x93, 0x4f, 0x83, 0x4e, 0xaf, 0x64, 0x16, 0x07, 0x78, 0xfb, 0x8f, 0x61, + 0x15, 0x93, 0xa7, 0xd1, 0xfe, 0x15, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x72, 0xd3, 0x58, 0x4d, 0x04, + 0x00, 0x00, } func (m *SignatureDescriptors) Marshal() (dAtA []byte, err error) { diff --git a/x/authz/authz.pb.go b/x/authz/authz.pb.go index 772152fe565f..9c8aea91272f 100644 --- a/x/authz/authz.pb.go +++ b/x/authz/authz.pb.go @@ -111,6 +111,8 @@ var xxx_messageInfo_Grant proto.InternalMessageInfo // GrantAuthorization extends a grant with both the addresses of the grantee and granter. // It is used in genesis.proto and query.proto +// +// Since: cosmos-sdk 0.45.2 type GrantAuthorization struct { Granter string `protobuf:"bytes,1,opt,name=granter,proto3" json:"granter,omitempty"` Grantee string `protobuf:"bytes,2,opt,name=grantee,proto3" json:"grantee,omitempty"` diff --git a/x/authz/query.pb.go b/x/authz/query.pb.go index e7b570453896..504c1fcd19bc 100644 --- a/x/authz/query.pb.go +++ b/x/authz/query.pb.go @@ -435,11 +435,11 @@ type QueryClient interface { Grants(ctx context.Context, in *QueryGrantsRequest, opts ...grpc.CallOption) (*QueryGrantsResponse, error) // GranterGrants returns list of `GrantAuthorization`, granted by granter. // - // Since: cosmos-sdk 0.46 + // Since: cosmos-sdk 0.45.2 GranterGrants(ctx context.Context, in *QueryGranterGrantsRequest, opts ...grpc.CallOption) (*QueryGranterGrantsResponse, error) // GranteeGrants returns a list of `GrantAuthorization` by grantee. // - // Since: cosmos-sdk 0.46 + // Since: cosmos-sdk 0.45.2 GranteeGrants(ctx context.Context, in *QueryGranteeGrantsRequest, opts ...grpc.CallOption) (*QueryGranteeGrantsResponse, error) } @@ -484,11 +484,11 @@ type QueryServer interface { Grants(context.Context, *QueryGrantsRequest) (*QueryGrantsResponse, error) // GranterGrants returns list of `GrantAuthorization`, granted by granter. // - // Since: cosmos-sdk 0.46 + // Since: cosmos-sdk 0.45.2 GranterGrants(context.Context, *QueryGranterGrantsRequest) (*QueryGranterGrantsResponse, error) // GranteeGrants returns a list of `GrantAuthorization` by grantee. // - // Since: cosmos-sdk 0.46 + // Since: cosmos-sdk 0.45.2 GranteeGrants(context.Context, *QueryGranteeGrantsRequest) (*QueryGranteeGrantsResponse, error) } diff --git a/x/staking/client/testutil/suite.go b/x/staking/client/testutil/suite.go index 807e2b6e7667..1dfc2d66977f 100644 --- a/x/staking/client/testutil/suite.go +++ b/x/staking/client/testutil/suite.go @@ -876,12 +876,13 @@ func (s *IntegrationTestSuite) TestGetCmdQueryParams() { historical_entries: 10000 max_entries: 7 max_validators: 100 +min_commission_rate: "0.000000000000000000" unbonding_time: 1814400s`, }, { "with json output", []string{fmt.Sprintf("--%s=json", tmcli.OutputFlag)}, - `{"unbonding_time":"1814400s","max_validators":100,"max_entries":7,"historical_entries":10000,"bond_denom":"stake"}`, + `{"unbonding_time":"1814400s","max_validators":100,"max_entries":7,"historical_entries":10000,"bond_denom":"stake","min_commission_rate":"0.000000000000000000"}`, }, } for _, tc := range testCases { diff --git a/x/staking/keeper/msg_server.go b/x/staking/keeper/msg_server.go index 3642cef1e5a4..c9175f4c263e 100644 --- a/x/staking/keeper/msg_server.go +++ b/x/staking/keeper/msg_server.go @@ -74,6 +74,11 @@ func (k msgServer) CreateValidator(goCtx context.Context, msg *types.MsgCreateVa if err != nil { return nil, err } + + if msg.Commission.Rate.LT(k.MinCommissionRate(ctx)) { + return nil, sdkerrors.Wrapf(types.ErrCommissionLTMinRate, "cannot set validator commission to less than minimum rate of %s", k.MinCommissionRate(ctx)) + } + commission := types.NewCommissionWithTime( msg.Commission.Rate, msg.Commission.MaxRate, msg.Commission.MaxChangeRate, ctx.BlockHeader().Time, diff --git a/x/staking/keeper/msg_server_test.go b/x/staking/keeper/msg_server_test.go new file mode 100644 index 000000000000..a8653f18af1e --- /dev/null +++ b/x/staking/keeper/msg_server_test.go @@ -0,0 +1,40 @@ +package keeper_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + tmproto "github.com/tendermint/tendermint/proto/tendermint/types" + + "github.com/cosmos/cosmos-sdk/simapp" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/x/staking" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" +) + +func TestCreateValidatorWithLessThanMinCommission(t *testing.T) { + PKS := simapp.CreateTestPubKeys(1) + valConsPk1 := PKS[0] + + app := simapp.Setup(false) + ctx := app.BaseApp.NewContext(false, tmproto.Header{}) + addrs := simapp.AddTestAddrs(app, ctx, 3, sdk.NewInt(1234)) + // set min commission rate to non-zero + params := app.StakingKeeper.GetParams(ctx) + params.MinCommissionRate = sdk.NewDecWithPrec(1, 2) + app.StakingKeeper.SetParams(ctx, params) + + // create validator with 0% commission + msg, err := stakingtypes.NewMsgCreateValidator( + sdk.ValAddress(addrs[0]), + valConsPk1, + sdk.NewInt64Coin(sdk.DefaultBondDenom, 100), + stakingtypes.Description{}, + stakingtypes.NewCommissionRates(sdk.NewDec(0), sdk.NewDecWithPrec(5, 1), sdk.NewDec(0)), + sdk.OneInt()) + require.NoError(t, err) + + sh := staking.NewHandler(app.StakingKeeper) + _, err = sh(ctx, msg) + require.Error(t, err) +} diff --git a/x/staking/keeper/params.go b/x/staking/keeper/params.go index 10a8b7e8f03a..5d2caf874b5b 100644 --- a/x/staking/keeper/params.go +++ b/x/staking/keeper/params.go @@ -39,6 +39,12 @@ func (k Keeper) BondDenom(ctx sdk.Context) (res string) { return } +// MinCommissionRate - Minimum validator commission rate +func (k Keeper) MinCommissionRate(ctx sdk.Context) (res sdk.Dec) { + k.paramstore.Get(ctx, types.KeyMinCommissionRate, &res) + return +} + // PowerReduction - is the amount of staking tokens required for 1 unit of consensus-engine power. // Currently, this returns a global variable that the app developer can tweak. // TODO: we might turn this into an on-chain param: @@ -55,6 +61,7 @@ func (k Keeper) GetParams(ctx sdk.Context) types.Params { k.MaxEntries(ctx), k.HistoricalEntries(ctx), k.BondDenom(ctx), + k.MinCommissionRate(ctx), ) } diff --git a/x/staking/keeper/validator.go b/x/staking/keeper/validator.go index ca6830697438..8539cbe0ec8a 100644 --- a/x/staking/keeper/validator.go +++ b/x/staking/keeper/validator.go @@ -138,6 +138,10 @@ func (k Keeper) UpdateValidatorCommission(ctx sdk.Context, return commission, err } + if newRate.LT(k.MinCommissionRate(ctx)) { + return commission, fmt.Errorf("cannot set validator commission to less than minimum rate of %s", k.MinCommissionRate(ctx)) + } + commission.Rate = newRate commission.UpdateTime = blockTime diff --git a/x/staking/keeper/validator_test.go b/x/staking/keeper/validator_test.go index 31da70eab6a8..f079bbef881a 100644 --- a/x/staking/keeper/validator_test.go +++ b/x/staking/keeper/validator_test.go @@ -1041,6 +1041,10 @@ func TestUpdateValidatorCommission(t *testing.T) { app, ctx, _, addrVals := bootstrapValidatorTest(t, 1000, 20) ctx = ctx.WithBlockHeader(tmproto.Header{Time: time.Now().UTC()}) + params := app.StakingKeeper.GetParams(ctx) + params.MinCommissionRate = sdk.MustNewDecFromStr("0.05") + app.StakingKeeper.SetParams(ctx, params) + commission1 := types.NewCommissionWithTime( sdk.NewDecWithPrec(1, 1), sdk.NewDecWithPrec(3, 1), sdk.NewDecWithPrec(1, 1), time.Now().UTC().Add(time.Duration(-1)*time.Hour), @@ -1065,6 +1069,7 @@ func TestUpdateValidatorCommission(t *testing.T) { {val2, sdk.NewDecWithPrec(-1, 1), true}, {val2, sdk.NewDecWithPrec(4, 1), true}, {val2, sdk.NewDecWithPrec(3, 1), true}, + {val2, sdk.NewDecWithPrec(1, 2), true}, // Commission rate below minimum {val2, sdk.NewDecWithPrec(2, 1), false}, } diff --git a/x/staking/legacy/v040/migrate.go b/x/staking/legacy/v040/migrate.go index a0d9b4c90378..faa892ecb014 100644 --- a/x/staking/legacy/v040/migrate.go +++ b/x/staking/legacy/v040/migrate.go @@ -2,22 +2,22 @@ package v040 import ( "fmt" - codectypes "github.com/cosmos/cosmos-sdk/codec/types" v034staking "github.com/cosmos/cosmos-sdk/x/staking/legacy/v034" v038staking "github.com/cosmos/cosmos-sdk/x/staking/legacy/v038" + v040staking "github.com/cosmos/cosmos-sdk/x/staking/types" ) -func migrateBondStatus(oldStatus v034staking.BondStatus) BondStatus { +func migrateBondStatus(oldStatus v034staking.BondStatus) v040staking.BondStatus { switch oldStatus { case v034staking.Unbonded: - return Unbonded + return v040staking.Unbonded case v034staking.Unbonding: - return Unbonding + return v040staking.Unbonding case v034staking.Bonded: - return Bonded + return v040staking.Bonded default: panic(fmt.Errorf("invalid bond status %d", oldStatus)) @@ -30,29 +30,29 @@ func migrateBondStatus(oldStatus v034staking.BondStatus) BondStatus { // - Convert addresses from bytes to bech32 strings. // - Update BondStatus staking constants. // - Re-encode in v0.40 GenesisState. -func Migrate(stakingState v038staking.GenesisState) *GenesisState { - newLastValidatorPowers := make([]LastValidatorPower, len(stakingState.LastValidatorPowers)) +func Migrate(stakingState v038staking.GenesisState) *v040staking.GenesisState { + newLastValidatorPowers := make([]v040staking.LastValidatorPower, len(stakingState.LastValidatorPowers)) for i, oldLastValidatorPower := range stakingState.LastValidatorPowers { - newLastValidatorPowers[i] = LastValidatorPower{ + newLastValidatorPowers[i] = v040staking.LastValidatorPower{ Address: oldLastValidatorPower.Address.String(), Power: oldLastValidatorPower.Power, } } - newValidators := make([]Validator, len(stakingState.Validators)) + newValidators := make([]v040staking.Validator, len(stakingState.Validators)) for i, oldValidator := range stakingState.Validators { pkAny, err := codectypes.NewAnyWithValue(oldValidator.ConsPubKey) if err != nil { panic(fmt.Sprintf("Can't pack validator consensus PK as Any: %s", err)) } - newValidators[i] = Validator{ + newValidators[i] = v040staking.Validator{ OperatorAddress: oldValidator.OperatorAddress.String(), ConsensusPubkey: pkAny, Jailed: oldValidator.Jailed, Status: migrateBondStatus(oldValidator.Status), Tokens: oldValidator.Tokens, DelegatorShares: oldValidator.DelegatorShares, - Description: Description{ + Description: v040staking.Description{ Moniker: oldValidator.Description.Moniker, Identity: oldValidator.Description.Identity, Website: oldValidator.Description.Website, @@ -61,8 +61,8 @@ func Migrate(stakingState v038staking.GenesisState) *GenesisState { }, UnbondingHeight: oldValidator.UnbondingHeight, UnbondingTime: oldValidator.UnbondingCompletionTime, - Commission: Commission{ - CommissionRates: CommissionRates{ + Commission: v040staking.Commission{ + CommissionRates: v040staking.CommissionRates{ Rate: oldValidator.Commission.Rate, MaxRate: oldValidator.Commission.MaxRate, MaxChangeRate: oldValidator.Commission.MaxChangeRate, @@ -73,20 +73,20 @@ func Migrate(stakingState v038staking.GenesisState) *GenesisState { } } - newDelegations := make([]Delegation, len(stakingState.Delegations)) + newDelegations := make([]v040staking.Delegation, len(stakingState.Delegations)) for i, oldDelegation := range stakingState.Delegations { - newDelegations[i] = Delegation{ + newDelegations[i] = v040staking.Delegation{ DelegatorAddress: oldDelegation.DelegatorAddress.String(), ValidatorAddress: oldDelegation.ValidatorAddress.String(), Shares: oldDelegation.Shares, } } - newUnbondingDelegations := make([]UnbondingDelegation, len(stakingState.UnbondingDelegations)) + newUnbondingDelegations := make([]v040staking.UnbondingDelegation, len(stakingState.UnbondingDelegations)) for i, oldUnbondingDelegation := range stakingState.UnbondingDelegations { - newEntries := make([]UnbondingDelegationEntry, len(oldUnbondingDelegation.Entries)) + newEntries := make([]v040staking.UnbondingDelegationEntry, len(oldUnbondingDelegation.Entries)) for j, oldEntry := range oldUnbondingDelegation.Entries { - newEntries[j] = UnbondingDelegationEntry{ + newEntries[j] = v040staking.UnbondingDelegationEntry{ CreationHeight: oldEntry.CreationHeight, CompletionTime: oldEntry.CompletionTime, InitialBalance: oldEntry.InitialBalance, @@ -94,18 +94,18 @@ func Migrate(stakingState v038staking.GenesisState) *GenesisState { } } - newUnbondingDelegations[i] = UnbondingDelegation{ + newUnbondingDelegations[i] = v040staking.UnbondingDelegation{ DelegatorAddress: oldUnbondingDelegation.DelegatorAddress.String(), ValidatorAddress: oldUnbondingDelegation.ValidatorAddress.String(), Entries: newEntries, } } - newRedelegations := make([]Redelegation, len(stakingState.Redelegations)) + newRedelegations := make([]v040staking.Redelegation, len(stakingState.Redelegations)) for i, oldRedelegation := range stakingState.Redelegations { - newEntries := make([]RedelegationEntry, len(oldRedelegation.Entries)) + newEntries := make([]v040staking.RedelegationEntry, len(oldRedelegation.Entries)) for j, oldEntry := range oldRedelegation.Entries { - newEntries[j] = RedelegationEntry{ + newEntries[j] = v040staking.RedelegationEntry{ CreationHeight: oldEntry.CreationHeight, CompletionTime: oldEntry.CompletionTime, InitialBalance: oldEntry.InitialBalance, @@ -113,7 +113,7 @@ func Migrate(stakingState v038staking.GenesisState) *GenesisState { } } - newRedelegations[i] = Redelegation{ + newRedelegations[i] = v040staking.Redelegation{ DelegatorAddress: oldRedelegation.DelegatorAddress.String(), ValidatorSrcAddress: oldRedelegation.ValidatorSrcAddress.String(), ValidatorDstAddress: oldRedelegation.ValidatorDstAddress.String(), @@ -121,13 +121,14 @@ func Migrate(stakingState v038staking.GenesisState) *GenesisState { } } - return &GenesisState{ - Params: Params{ + return &v040staking.GenesisState{ + Params: v040staking.Params{ UnbondingTime: stakingState.Params.UnbondingTime, MaxValidators: uint32(stakingState.Params.MaxValidators), MaxEntries: uint32(stakingState.Params.MaxEntries), HistoricalEntries: uint32(stakingState.Params.HistoricalEntries), BondDenom: stakingState.Params.BondDenom, + MinCommissionRate: v040staking.DefaultMinCommissionRate, }, LastTotalPower: stakingState.LastTotalPower, LastValidatorPowers: newLastValidatorPowers, diff --git a/x/staking/legacy/v040/migrate_test.go b/x/staking/legacy/v040/migrate_test.go index af409dde26b8..71da1a1ad55d 100644 --- a/x/staking/legacy/v040/migrate_test.go +++ b/x/staking/legacy/v040/migrate_test.go @@ -55,6 +55,7 @@ func TestMigrate(t *testing.T) { "historical_entries": 0, "max_entries": 0, "max_validators": 0, + "min_commission_rate": "0.000000000000000000", "unbonding_time": "0s" }, "redelegations": [], diff --git a/x/staking/simulation/genesis.go b/x/staking/simulation/genesis.go index cf4e8e50c44d..ee94d5e343cd 100644 --- a/x/staking/simulation/genesis.go +++ b/x/staking/simulation/genesis.go @@ -19,6 +19,7 @@ const ( unbondingTime = "unbonding_time" maxValidators = "max_validators" historicalEntries = "historical_entries" + minCommissionRate = "min_commission_rate" ) // genUnbondingTime returns randomized UnbondingTime @@ -43,6 +44,7 @@ func RandomizedGenState(simState *module.SimulationState) { unbondTime time.Duration maxVals uint32 histEntries uint32 + minComRate sdk.Dec ) simState.AppParams.GetOrGenerate( @@ -60,10 +62,15 @@ func RandomizedGenState(simState *module.SimulationState) { func(r *rand.Rand) { histEntries = getHistEntries(r) }, ) + simState.AppParams.GetOrGenerate( + simState.Cdc, minCommissionRate, &minComRate, simState.Rand, + func(r *rand.Rand) { minComRate = sdk.NewDec(0) }, + ) + // NOTE: the slashing module need to be defined after the staking module on the // NewSimulationManager constructor for this to work simState.UnbondTime = unbondTime - params := types.NewParams(simState.UnbondTime, maxVals, 7, histEntries, sdk.DefaultBondDenom) + params := types.NewParams(simState.UnbondTime, maxVals, 7, histEntries, sdk.DefaultBondDenom, minComRate) // validators & delegations var ( @@ -78,8 +85,9 @@ func RandomizedGenState(simState *module.SimulationState) { valAddrs[i] = valAddr maxCommission := sdk.NewDecWithPrec(int64(simulation.RandIntBetween(simState.Rand, 1, 100)), 2) + curCommissionRate := simulation.RandomDecAmount(simState.Rand, maxCommission.Sub(minComRate)).Add(minComRate) commission := types.NewCommission( - simulation.RandomDecAmount(simState.Rand, maxCommission), + curCommissionRate, maxCommission, simulation.RandomDecAmount(simState.Rand, maxCommission), ) diff --git a/x/staking/types/errors.go b/x/staking/types/errors.go index 777941e53cfe..a9a6e43e35b6 100644 --- a/x/staking/types/errors.go +++ b/x/staking/types/errors.go @@ -49,4 +49,5 @@ var ( ErrInvalidHistoricalInfo = sdkerrors.Register(ModuleName, 37, "invalid historical info") ErrNoHistoricalInfo = sdkerrors.Register(ModuleName, 38, "no historical info found") ErrEmptyValidatorPubKey = sdkerrors.Register(ModuleName, 39, "empty validator public key") + ErrCommissionLTMinRate = sdkerrors.Register(ModuleName, 40, "commission cannot be less than min rate") ) diff --git a/x/staking/types/params.go b/x/staking/types/params.go index 8ccae6b56500..2cec85929733 100644 --- a/x/staking/types/params.go +++ b/x/staking/types/params.go @@ -39,6 +39,12 @@ var ( KeyBondDenom = []byte("BondDenom") KeyHistoricalEntries = []byte("HistoricalEntries") KeyPowerReduction = []byte("PowerReduction") + KeyMinCommissionRate = []byte("MinCommissionRate") +) + +var ( + // DefaultMinCommissionRate is set to 0% + DefaultMinCommissionRate = sdk.ZeroDec() ) var _ paramtypes.ParamSet = (*Params)(nil) @@ -49,13 +55,14 @@ func ParamKeyTable() paramtypes.KeyTable { } // NewParams creates a new Params instance -func NewParams(unbondingTime time.Duration, maxValidators, maxEntries, historicalEntries uint32, bondDenom string) Params { +func NewParams(unbondingTime time.Duration, maxValidators, maxEntries, historicalEntries uint32, bondDenom string, minCommissionRate sdk.Dec) Params { return Params{ UnbondingTime: unbondingTime, MaxValidators: maxValidators, MaxEntries: maxEntries, HistoricalEntries: historicalEntries, BondDenom: bondDenom, + MinCommissionRate: minCommissionRate, } } @@ -67,6 +74,7 @@ func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs { paramtypes.NewParamSetPair(KeyMaxEntries, &p.MaxEntries, validateMaxEntries), paramtypes.NewParamSetPair(KeyHistoricalEntries, &p.HistoricalEntries, validateHistoricalEntries), paramtypes.NewParamSetPair(KeyBondDenom, &p.BondDenom, validateBondDenom), + paramtypes.NewParamSetPair(KeyMinCommissionRate, &p.MinCommissionRate, validateMinCommissionRate), } } @@ -78,6 +86,7 @@ func DefaultParams() Params { DefaultMaxEntries, DefaultHistoricalEntries, sdk.DefaultBondDenom, + DefaultMinCommissionRate, ) } @@ -125,6 +134,10 @@ func (p Params) Validate() error { return err } + if err := validateMinCommissionRate(p.MinCommissionRate); err != nil { + return err + } + return nil } @@ -205,3 +218,20 @@ func ValidatePowerReduction(i interface{}) error { return nil } + +func validateMinCommissionRate(i interface{}) error { + v, ok := i.(sdk.Dec) + if !ok { + return fmt.Errorf("invalid parameter type: %T", i) + } + + if v.IsNegative() { + return fmt.Errorf("minimum commission rate cannot be negative: %s", v) + } + + if v.GT(sdk.OneDec()) { + return fmt.Errorf("minimum commission rate cannot be greater than 100%%: %s", v) + } + + return nil +} diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 618599edba36..5467eb65b229 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -844,6 +844,8 @@ type Params struct { HistoricalEntries uint32 `protobuf:"varint,4,opt,name=historical_entries,json=historicalEntries,proto3" json:"historical_entries,omitempty" yaml:"historical_entries"` // bond_denom defines the bondable coin denomination. BondDenom string `protobuf:"bytes,5,opt,name=bond_denom,json=bondDenom,proto3" json:"bond_denom,omitempty" yaml:"bond_denom"` + // min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators + MinCommissionRate github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,6,opt,name=min_commission_rate,json=minCommissionRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"min_commission_rate" yaml:"min_commission_rate"` } func (m *Params) Reset() { *m = Params{} } @@ -1138,16 +1140,16 @@ func init() { } var fileDescriptor_64c30c6cf92913c9 = []byte{ - // 1796 bytes of a gzipped FileDescriptorProto + // 1820 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4d, 0x6c, 0x23, 0x49, - 0x15, 0x76, 0x3b, 0x5e, 0xc7, 0x7e, 0x4e, 0xe2, 0xa4, 0x26, 0x33, 0xeb, 0x98, 0xc1, 0xed, 0x6d, - 0x56, 0x4b, 0x40, 0xbb, 0x0e, 0x93, 0x45, 0x8b, 0xc8, 0x05, 0xc6, 0x71, 0x86, 0x58, 0xbb, 0x0c, + 0x15, 0x76, 0xc7, 0x5e, 0xc7, 0x7e, 0x4e, 0xe2, 0xa4, 0x26, 0x33, 0xeb, 0x98, 0xc1, 0xed, 0x6d, + 0x56, 0x4b, 0x40, 0xbb, 0x0e, 0x93, 0x45, 0x8b, 0xc8, 0x05, 0xc6, 0x71, 0x86, 0x58, 0x3b, 0x0c, 0xa1, 0x93, 0x09, 0x12, 0xac, 0xb0, 0xca, 0xdd, 0x15, 0xa7, 0x89, 0xbb, 0xdb, 0x74, 0x95, 0x87, 0x58, 0xda, 0x03, 0xc7, 0x65, 0x10, 0x62, 0xb9, 0xed, 0x65, 0xa4, 0x91, 0xf6, 0xba, 0x12, 0x17, - 0xc4, 0x95, 0xeb, 0x02, 0x97, 0xe1, 0x86, 0x10, 0x32, 0x68, 0xe6, 0x82, 0x38, 0x21, 0x1f, 0x10, - 0x37, 0x50, 0xfd, 0xf4, 0x4f, 0xda, 0xf1, 0xcc, 0x78, 0xb4, 0x87, 0x91, 0xd8, 0x4b, 0xe2, 0x7a, + 0xc4, 0x95, 0xeb, 0x02, 0x97, 0xe1, 0x86, 0x10, 0x32, 0x68, 0xe6, 0x82, 0x38, 0x21, 0x8b, 0x03, + 0x37, 0x50, 0xfd, 0xf4, 0x4f, 0xda, 0xf1, 0xcc, 0x78, 0xb4, 0x87, 0x95, 0xd8, 0x4b, 0xe2, 0x7a, 0xf5, 0xde, 0xf7, 0xea, 0xfd, 0xd6, 0xab, 0x86, 0x57, 0x2d, 0x9f, 0xba, 0x3e, 0xdd, 0xa2, 0x0c, - 0x9f, 0x39, 0x5e, 0x6f, 0xeb, 0xee, 0x8d, 0x2e, 0x61, 0xf8, 0x46, 0xb8, 0x6e, 0x0c, 0x02, 0x9f, + 0x9f, 0x39, 0x5e, 0x6f, 0xeb, 0xde, 0x8d, 0x2e, 0x61, 0xf8, 0x46, 0xb8, 0x6e, 0x0c, 0x02, 0x9f, 0xf9, 0xe8, 0x9a, 0xe4, 0x6a, 0x84, 0x54, 0xc5, 0x55, 0x5d, 0xef, 0xf9, 0x3d, 0x5f, 0xb0, 0x6c, 0xf1, 0x5f, 0x92, 0xbb, 0xba, 0xd1, 0xf3, 0xfd, 0x5e, 0x9f, 0x6c, 0x89, 0x55, 0x77, 0x78, 0xb2, 0x85, 0xbd, 0x91, 0xda, 0xaa, 0xa5, 0xb7, 0xec, 0x61, 0x80, 0x99, 0xe3, 0x7b, 0x6a, 0x5f, 0x4f, @@ -1156,102 +1158,103 @@ var fileDescriptor_64c30c6cf92913c9 = []byte{ 0x24, 0x70, 0x1d, 0x8f, 0x6d, 0xb1, 0xd1, 0x80, 0x50, 0xf9, 0x57, 0xee, 0x1a, 0x3f, 0xd3, 0x60, 0x65, 0xdf, 0xa1, 0xcc, 0x0f, 0x1c, 0x0b, 0xf7, 0xdb, 0xde, 0x89, 0x8f, 0xde, 0x82, 0xfc, 0x29, 0xc1, 0x36, 0x09, 0x2a, 0x5a, 0x5d, 0xdb, 0x2c, 0x6d, 0x57, 0x1a, 0x31, 0x42, 0x43, 0xca, 0xee, - 0x8b, 0xfd, 0x66, 0xee, 0x93, 0xb1, 0x9e, 0x31, 0x15, 0x37, 0xfa, 0x06, 0xe4, 0xef, 0xe2, 0x3e, - 0x25, 0xac, 0x92, 0xad, 0x2f, 0x6c, 0x96, 0xb6, 0x5f, 0x69, 0x5c, 0xee, 0xbe, 0xc6, 0x31, 0xee, - 0x3b, 0x36, 0x66, 0x7e, 0x04, 0x20, 0xc5, 0x8c, 0x5f, 0x67, 0xa1, 0xbc, 0xeb, 0xbb, 0xae, 0x43, - 0xa9, 0xe3, 0x7b, 0x26, 0x66, 0x84, 0xa2, 0x26, 0xe4, 0x02, 0xcc, 0x88, 0x38, 0x4a, 0xb1, 0xd9, - 0xe0, 0xfc, 0x7f, 0x19, 0xeb, 0xaf, 0xf5, 0x1c, 0x76, 0x3a, 0xec, 0x36, 0x2c, 0xdf, 0x55, 0xce, - 0x50, 0xff, 0xde, 0xa0, 0xf6, 0x99, 0xb2, 0xaf, 0x45, 0x2c, 0x53, 0xc8, 0xa2, 0x77, 0xa1, 0xe0, - 0xe2, 0xf3, 0x8e, 0xc0, 0xc9, 0x0a, 0x9c, 0x9b, 0xf3, 0xe1, 0x4c, 0xc6, 0x7a, 0x79, 0x84, 0xdd, - 0xfe, 0x8e, 0x11, 0xe2, 0x18, 0xe6, 0xa2, 0x8b, 0xcf, 0xf9, 0x11, 0xd1, 0x00, 0xca, 0x9c, 0x6a, - 0x9d, 0x62, 0xaf, 0x47, 0xa4, 0x92, 0x05, 0xa1, 0x64, 0x7f, 0x6e, 0x25, 0xd7, 0x62, 0x25, 0x09, - 0x38, 0xc3, 0x5c, 0x76, 0xf1, 0xf9, 0xae, 0x20, 0x70, 0x8d, 0x3b, 0x85, 0x0f, 0x1f, 0xe8, 0x99, - 0x7f, 0x3c, 0xd0, 0x35, 0xe3, 0x4f, 0x1a, 0x40, 0xec, 0x31, 0xf4, 0x2e, 0xac, 0x5a, 0xd1, 0x4a, - 0xc8, 0x52, 0x15, 0xc3, 0x2f, 0xce, 0x8a, 0x45, 0xca, 0xdf, 0xcd, 0x02, 0x3f, 0xf4, 0xc3, 0xb1, - 0xae, 0x99, 0x65, 0x2b, 0x15, 0x8a, 0x1f, 0x40, 0x69, 0x38, 0xb0, 0x31, 0x23, 0x1d, 0x9e, 0x9d, - 0xc2, 0x93, 0xa5, 0xed, 0x6a, 0x43, 0xa6, 0x6e, 0x23, 0x4c, 0xdd, 0xc6, 0x51, 0x98, 0xba, 0xcd, - 0x1a, 0xc7, 0x9a, 0x8c, 0x75, 0x24, 0xcd, 0x4a, 0x08, 0x1b, 0x1f, 0xfc, 0x4d, 0xd7, 0x4c, 0x90, - 0x14, 0x2e, 0x90, 0xb0, 0xe9, 0xf7, 0x1a, 0x94, 0x5a, 0x84, 0x5a, 0x81, 0x33, 0xe0, 0x15, 0x82, - 0x2a, 0xb0, 0xe8, 0xfa, 0x9e, 0x73, 0xa6, 0xf2, 0xb1, 0x68, 0x86, 0x4b, 0x54, 0x85, 0x82, 0x63, - 0x13, 0x8f, 0x39, 0x6c, 0x24, 0xe3, 0x6a, 0x46, 0x6b, 0x2e, 0xf5, 0x13, 0xd2, 0xa5, 0x4e, 0x18, - 0x0d, 0x33, 0x5c, 0xa2, 0x5b, 0xb0, 0x4a, 0x89, 0x35, 0x0c, 0x1c, 0x36, 0xea, 0x58, 0xbe, 0xc7, - 0xb0, 0xc5, 0x2a, 0x39, 0x11, 0xb0, 0xcf, 0x4d, 0xc6, 0xfa, 0xcb, 0xf2, 0xac, 0x69, 0x0e, 0xc3, - 0x2c, 0x87, 0xa4, 0x5d, 0x49, 0xe1, 0x1a, 0x6c, 0xc2, 0xb0, 0xd3, 0xa7, 0x95, 0x97, 0xa4, 0x06, - 0xb5, 0x4c, 0xd8, 0xf2, 0xf1, 0x22, 0x14, 0xa3, 0x6c, 0xe7, 0x9a, 0xfd, 0x01, 0x09, 0xf8, 0xef, - 0x0e, 0xb6, 0xed, 0x80, 0x50, 0xaa, 0xf2, 0x3a, 0xa1, 0x39, 0xcd, 0x61, 0x98, 0xe5, 0x90, 0x74, - 0x53, 0x52, 0x10, 0xe3, 0x61, 0xf6, 0x28, 0xf1, 0xe8, 0x90, 0x76, 0x06, 0xc3, 0xee, 0x19, 0x19, - 0xa9, 0x68, 0xac, 0x4f, 0x45, 0xe3, 0xa6, 0x37, 0x6a, 0xbe, 0x19, 0xa3, 0xa7, 0xe5, 0x8c, 0x3f, - 0xfc, 0xe6, 0x8d, 0x75, 0x95, 0x1a, 0x56, 0x30, 0x1a, 0x30, 0xbf, 0x71, 0x30, 0xec, 0xbe, 0x4d, - 0x46, 0x3c, 0xfc, 0x8a, 0xf5, 0x40, 0x70, 0xa2, 0x6b, 0x90, 0xff, 0x11, 0x76, 0xfa, 0xc4, 0x16, - 0x0e, 0x2d, 0x98, 0x6a, 0x85, 0x76, 0x20, 0x4f, 0x19, 0x66, 0x43, 0x2a, 0xbc, 0xb8, 0xb2, 0x6d, - 0xcc, 0x4a, 0xb5, 0xa6, 0xef, 0xd9, 0x87, 0x82, 0xd3, 0x54, 0x12, 0xe8, 0x16, 0xe4, 0x99, 0x7f, - 0x46, 0x3c, 0xe5, 0xc2, 0xb9, 0xea, 0xbb, 0xed, 0x31, 0x53, 0x49, 0x73, 0x8f, 0xd8, 0xa4, 0x4f, - 0x7a, 0xc2, 0x71, 0xf4, 0x14, 0x07, 0x84, 0x56, 0xf2, 0x02, 0xb1, 0x3d, 0x77, 0x11, 0x2a, 0x4f, - 0xa5, 0xf1, 0x0c, 0xb3, 0x1c, 0x91, 0x0e, 0x05, 0x05, 0xbd, 0x0d, 0x25, 0x3b, 0x4e, 0xd4, 0xca, - 0xa2, 0x08, 0xc1, 0x17, 0x66, 0x99, 0x9f, 0xc8, 0x69, 0xd5, 0xf7, 0x92, 0xd2, 0x3c, 0x39, 0x86, - 0x5e, 0xd7, 0xf7, 0x6c, 0xc7, 0xeb, 0x75, 0x4e, 0x89, 0xd3, 0x3b, 0x65, 0x95, 0x42, 0x5d, 0xdb, - 0x5c, 0x48, 0x26, 0x47, 0x9a, 0xc3, 0x30, 0xcb, 0x11, 0x69, 0x5f, 0x50, 0x90, 0x0d, 0x2b, 0x31, - 0x97, 0x28, 0xd4, 0xe2, 0x53, 0x0b, 0xf5, 0x15, 0x55, 0xa8, 0x57, 0xd3, 0x5a, 0xe2, 0x5a, 0x5d, - 0x8e, 0x88, 0x5c, 0x0c, 0xed, 0x03, 0xc4, 0xed, 0xa1, 0x02, 0x42, 0x83, 0xf1, 0xf4, 0x1e, 0xa3, - 0x0c, 0x4f, 0xc8, 0xa2, 0xf7, 0xe0, 0x8a, 0xeb, 0x78, 0x1d, 0x4a, 0xfa, 0x27, 0x1d, 0xe5, 0x60, - 0x0e, 0x59, 0x12, 0xd1, 0x7b, 0x67, 0xbe, 0x7c, 0x98, 0x8c, 0xf5, 0xaa, 0x6a, 0xa1, 0xd3, 0x90, - 0x86, 0xb9, 0xe6, 0x3a, 0xde, 0x21, 0xe9, 0x9f, 0xb4, 0x22, 0xda, 0xce, 0xd2, 0xfb, 0x0f, 0xf4, - 0x8c, 0x2a, 0xd7, 0x8c, 0xf1, 0x16, 0x2c, 0x1d, 0xe3, 0xbe, 0x2a, 0x33, 0x42, 0xd1, 0x75, 0x28, - 0xe2, 0x70, 0x51, 0xd1, 0xea, 0x0b, 0x9b, 0x45, 0x33, 0x26, 0xc8, 0x32, 0xff, 0xe9, 0x5f, 0xeb, - 0x9a, 0xf1, 0xb1, 0x06, 0xf9, 0xd6, 0xf1, 0x01, 0x76, 0x02, 0xd4, 0x86, 0xb5, 0x38, 0x73, 0x2e, - 0x16, 0xf9, 0xf5, 0xc9, 0x58, 0xaf, 0xa4, 0x93, 0x2b, 0xaa, 0xf2, 0x38, 0x81, 0xc3, 0x32, 0x6f, - 0xc3, 0xda, 0xdd, 0xb0, 0x77, 0x44, 0x50, 0xd9, 0x34, 0xd4, 0x14, 0x8b, 0x61, 0xae, 0x46, 0x34, - 0x05, 0x95, 0x32, 0x73, 0x0f, 0x16, 0xe5, 0x69, 0x29, 0xda, 0x81, 0x97, 0x06, 0xfc, 0x87, 0xb0, - 0xae, 0xb4, 0x5d, 0x9b, 0x99, 0xbc, 0x82, 0x5f, 0x85, 0x4f, 0x8a, 0x18, 0xbf, 0xca, 0x02, 0xb4, - 0x8e, 0x8f, 0x8f, 0x02, 0x67, 0xd0, 0x27, 0xec, 0xd3, 0xb4, 0xfc, 0x08, 0xae, 0xc6, 0x66, 0xd1, + 0x8b, 0xfd, 0x66, 0xee, 0xe3, 0xb1, 0x9e, 0x31, 0x15, 0x37, 0xfa, 0x06, 0xe4, 0xef, 0xe1, 0x3e, + 0x25, 0xac, 0xb2, 0x50, 0xcf, 0x6e, 0x96, 0xb6, 0x5f, 0x69, 0x5c, 0xee, 0xbe, 0xc6, 0x31, 0xee, + 0x3b, 0x36, 0x66, 0x7e, 0x04, 0x20, 0xc5, 0x8c, 0x5f, 0x2f, 0x40, 0x79, 0xd7, 0x77, 0x5d, 0x87, + 0x52, 0xc7, 0xf7, 0x4c, 0xcc, 0x08, 0x45, 0x4d, 0xc8, 0x05, 0x98, 0x11, 0x71, 0x94, 0x62, 0xb3, + 0xc1, 0xf9, 0xff, 0x32, 0xd6, 0x5f, 0xeb, 0x39, 0xec, 0x74, 0xd8, 0x6d, 0x58, 0xbe, 0xab, 0x9c, + 0xa1, 0xfe, 0xbd, 0x41, 0xed, 0x33, 0x65, 0x5f, 0x8b, 0x58, 0xa6, 0x90, 0x45, 0xef, 0x40, 0xc1, + 0xc5, 0xe7, 0x1d, 0x81, 0xb3, 0x20, 0x70, 0x6e, 0xce, 0x87, 0x33, 0x19, 0xeb, 0xe5, 0x11, 0x76, + 0xfb, 0x3b, 0x46, 0x88, 0x63, 0x98, 0x8b, 0x2e, 0x3e, 0xe7, 0x47, 0x44, 0x03, 0x28, 0x73, 0xaa, + 0x75, 0x8a, 0xbd, 0x1e, 0x91, 0x4a, 0xb2, 0x42, 0xc9, 0xfe, 0xdc, 0x4a, 0xae, 0xc5, 0x4a, 0x12, + 0x70, 0x86, 0xb9, 0xec, 0xe2, 0xf3, 0x5d, 0x41, 0xe0, 0x1a, 0x77, 0x0a, 0x1f, 0x3c, 0xd4, 0x33, + 0xff, 0x78, 0xa8, 0x6b, 0xc6, 0x9f, 0x34, 0x80, 0xd8, 0x63, 0xe8, 0x1d, 0x58, 0xb5, 0xa2, 0x95, + 0x90, 0xa5, 0x2a, 0x86, 0x5f, 0x9c, 0x15, 0x8b, 0x94, 0xbf, 0x9b, 0x05, 0x7e, 0xe8, 0x47, 0x63, + 0x5d, 0x33, 0xcb, 0x56, 0x2a, 0x14, 0x3f, 0x80, 0xd2, 0x70, 0x60, 0x63, 0x46, 0x3a, 0x3c, 0x3b, + 0x85, 0x27, 0x4b, 0xdb, 0xd5, 0x86, 0x4c, 0xdd, 0x46, 0x98, 0xba, 0x8d, 0xa3, 0x30, 0x75, 0x9b, + 0x35, 0x8e, 0x35, 0x19, 0xeb, 0x48, 0x9a, 0x95, 0x10, 0x36, 0xde, 0xff, 0x9b, 0xae, 0x99, 0x20, + 0x29, 0x5c, 0x20, 0x61, 0xd3, 0xef, 0x35, 0x28, 0xb5, 0x08, 0xb5, 0x02, 0x67, 0xc0, 0x2b, 0x04, + 0x55, 0x60, 0xd1, 0xf5, 0x3d, 0xe7, 0x4c, 0xe5, 0x63, 0xd1, 0x0c, 0x97, 0xa8, 0x0a, 0x05, 0xc7, + 0x26, 0x1e, 0x73, 0xd8, 0x48, 0xc6, 0xd5, 0x8c, 0xd6, 0x5c, 0xea, 0x27, 0xa4, 0x4b, 0x9d, 0x30, + 0x1a, 0x66, 0xb8, 0x44, 0xb7, 0x60, 0x95, 0x12, 0x6b, 0x18, 0x38, 0x6c, 0xd4, 0xb1, 0x7c, 0x8f, + 0x61, 0x8b, 0x55, 0x72, 0x22, 0x60, 0x9f, 0x9b, 0x8c, 0xf5, 0x97, 0xe5, 0x59, 0xd3, 0x1c, 0x86, + 0x59, 0x0e, 0x49, 0xbb, 0x92, 0xc2, 0x35, 0xd8, 0x84, 0x61, 0xa7, 0x4f, 0x2b, 0x2f, 0x49, 0x0d, + 0x6a, 0x99, 0xb0, 0xe5, 0xa3, 0x45, 0x28, 0x46, 0xd9, 0xce, 0x35, 0xfb, 0x03, 0x12, 0xf0, 0xdf, + 0x1d, 0x6c, 0xdb, 0x01, 0xa1, 0x54, 0xe5, 0x75, 0x42, 0x73, 0x9a, 0xc3, 0x30, 0xcb, 0x21, 0xe9, + 0xa6, 0xa4, 0x20, 0xc6, 0xc3, 0xec, 0x51, 0xe2, 0xd1, 0x21, 0xed, 0x0c, 0x86, 0xdd, 0x33, 0x32, + 0x52, 0xd1, 0x58, 0x9f, 0x8a, 0xc6, 0x4d, 0x6f, 0xd4, 0x7c, 0x33, 0x46, 0x4f, 0xcb, 0x19, 0x7f, + 0xf8, 0xcd, 0x1b, 0xeb, 0x2a, 0x35, 0xac, 0x60, 0x34, 0x60, 0x7e, 0xe3, 0x60, 0xd8, 0x7d, 0x9b, + 0x8c, 0x78, 0xf8, 0x15, 0xeb, 0x81, 0xe0, 0x44, 0xd7, 0x20, 0xff, 0x23, 0xec, 0xf4, 0x89, 0x2d, + 0x1c, 0x5a, 0x30, 0xd5, 0x0a, 0xed, 0x40, 0x9e, 0x32, 0xcc, 0x86, 0x54, 0x78, 0x71, 0x65, 0xdb, + 0x98, 0x95, 0x6a, 0x4d, 0xdf, 0xb3, 0x0f, 0x05, 0xa7, 0xa9, 0x24, 0xd0, 0x2d, 0xc8, 0x33, 0xff, + 0x8c, 0x78, 0xca, 0x85, 0x73, 0xd5, 0x77, 0xdb, 0x63, 0xa6, 0x92, 0xe6, 0x1e, 0xb1, 0x49, 0x9f, + 0xf4, 0x84, 0xe3, 0xe8, 0x29, 0x0e, 0x08, 0xad, 0xe4, 0x05, 0x62, 0x7b, 0xee, 0x22, 0x54, 0x9e, + 0x4a, 0xe3, 0x19, 0x66, 0x39, 0x22, 0x1d, 0x0a, 0x0a, 0x7a, 0x1b, 0x4a, 0x76, 0x9c, 0xa8, 0x95, + 0x45, 0x11, 0x82, 0x2f, 0xcc, 0x32, 0x3f, 0x91, 0xd3, 0xaa, 0xef, 0x25, 0xa5, 0x79, 0x72, 0x0c, + 0xbd, 0xae, 0xef, 0xd9, 0x8e, 0xd7, 0xeb, 0x9c, 0x12, 0xa7, 0x77, 0xca, 0x2a, 0x85, 0xba, 0xb6, + 0x99, 0x4d, 0x26, 0x47, 0x9a, 0xc3, 0x30, 0xcb, 0x11, 0x69, 0x5f, 0x50, 0x90, 0x0d, 0x2b, 0x31, + 0x97, 0x28, 0xd4, 0xe2, 0x33, 0x0b, 0xf5, 0x15, 0x55, 0xa8, 0x57, 0xd3, 0x5a, 0xe2, 0x5a, 0x5d, + 0x8e, 0x88, 0x5c, 0x0c, 0xed, 0x03, 0xc4, 0xed, 0xa1, 0x02, 0x42, 0x83, 0xf1, 0xec, 0x1e, 0xa3, + 0x0c, 0x4f, 0xc8, 0xa2, 0x77, 0xe1, 0x8a, 0xeb, 0x78, 0x1d, 0x4a, 0xfa, 0x27, 0x1d, 0xe5, 0x60, + 0x0e, 0x59, 0x12, 0xd1, 0xbb, 0x3d, 0x5f, 0x3e, 0x4c, 0xc6, 0x7a, 0x55, 0xb5, 0xd0, 0x69, 0x48, + 0xc3, 0x5c, 0x73, 0x1d, 0xef, 0x90, 0xf4, 0x4f, 0x5a, 0x11, 0x6d, 0x67, 0xe9, 0xbd, 0x87, 0x7a, + 0x46, 0x95, 0x6b, 0xc6, 0x78, 0x0b, 0x96, 0x8e, 0x71, 0x5f, 0x95, 0x19, 0xa1, 0xe8, 0x3a, 0x14, + 0x71, 0xb8, 0xa8, 0x68, 0xf5, 0xec, 0x66, 0xd1, 0x8c, 0x09, 0xb2, 0xcc, 0x7f, 0xfa, 0xd7, 0xba, + 0x66, 0x7c, 0xa4, 0x41, 0xbe, 0x75, 0x7c, 0x80, 0x9d, 0x00, 0xb5, 0x61, 0x2d, 0xce, 0x9c, 0x8b, + 0x45, 0x7e, 0x7d, 0x32, 0xd6, 0x2b, 0xe9, 0xe4, 0x8a, 0xaa, 0x3c, 0x4e, 0xe0, 0xb0, 0xcc, 0xdb, + 0xb0, 0x76, 0x2f, 0xec, 0x1d, 0x11, 0xd4, 0x42, 0x1a, 0x6a, 0x8a, 0xc5, 0x30, 0x57, 0x23, 0x9a, + 0x82, 0x4a, 0x99, 0xb9, 0x07, 0x8b, 0xf2, 0xb4, 0x14, 0xed, 0xc0, 0x4b, 0x03, 0xfe, 0x43, 0x58, + 0x57, 0xda, 0xae, 0xcd, 0x4c, 0x5e, 0xc1, 0xaf, 0xc2, 0x27, 0x45, 0x8c, 0x5f, 0x2d, 0x00, 0xb4, + 0x8e, 0x8f, 0x8f, 0x02, 0x67, 0xd0, 0x27, 0xec, 0x93, 0xb4, 0xfc, 0x08, 0xae, 0xc6, 0x66, 0xd1, 0xc0, 0x4a, 0x59, 0x5f, 0x9f, 0x8c, 0xf5, 0xeb, 0x69, 0xeb, 0x13, 0x6c, 0x86, 0x79, 0x25, 0xa2, - 0x1f, 0x06, 0xd6, 0xa5, 0xa8, 0x36, 0x65, 0x11, 0xea, 0xc2, 0x6c, 0xd4, 0x04, 0x5b, 0x12, 0xb5, - 0x45, 0xd9, 0xe5, 0xae, 0x3d, 0x84, 0x52, 0xec, 0x12, 0x8a, 0x5a, 0x50, 0x60, 0xea, 0xb7, 0xf2, - 0xb0, 0x31, 0xdb, 0xc3, 0xa1, 0x98, 0xf2, 0x72, 0x24, 0x69, 0xfc, 0x47, 0x03, 0x88, 0x73, 0xf6, - 0xc5, 0x4c, 0x31, 0xde, 0xca, 0x55, 0xe3, 0x5d, 0x78, 0xae, 0x51, 0x4d, 0x49, 0xa7, 0xfc, 0xf9, - 0xf3, 0x2c, 0x5c, 0xb9, 0x13, 0x76, 0x9e, 0x17, 0xde, 0x07, 0x07, 0xb0, 0x48, 0x3c, 0x16, 0x38, - 0xc2, 0x09, 0x3c, 0xda, 0x5f, 0x99, 0x15, 0xed, 0x4b, 0x6c, 0xda, 0xf3, 0x58, 0x30, 0x52, 0xb1, - 0x0f, 0x61, 0x52, 0xde, 0xf8, 0xe5, 0x02, 0x54, 0x66, 0x49, 0xa2, 0x5d, 0x28, 0x5b, 0x01, 0x11, + 0x1f, 0x06, 0xd6, 0xa5, 0xa8, 0x36, 0x65, 0x11, 0x6a, 0x76, 0x36, 0x6a, 0x82, 0x2d, 0x89, 0xda, + 0xa2, 0xec, 0x72, 0xd7, 0x1e, 0x42, 0x29, 0x76, 0x09, 0x45, 0x2d, 0x28, 0x30, 0xf5, 0x5b, 0x79, + 0xd8, 0x98, 0xed, 0xe1, 0x50, 0x4c, 0x79, 0x39, 0x92, 0x34, 0xfe, 0xa3, 0x01, 0xc4, 0x39, 0xfb, + 0xe9, 0x4c, 0x31, 0xde, 0xca, 0x55, 0xe3, 0xcd, 0xbe, 0xd0, 0xa8, 0xa6, 0xa4, 0x53, 0xfe, 0xfc, + 0xf9, 0x02, 0x5c, 0xb9, 0x1b, 0x76, 0x9e, 0x4f, 0xbd, 0x0f, 0x0e, 0x60, 0x91, 0x78, 0x2c, 0x70, + 0x84, 0x13, 0x78, 0xb4, 0xbf, 0x32, 0x2b, 0xda, 0x97, 0xd8, 0xb4, 0xe7, 0xb1, 0x60, 0xa4, 0x62, + 0x1f, 0xc2, 0xa4, 0xbc, 0xf1, 0xcb, 0x2c, 0x54, 0x66, 0x49, 0xa2, 0x5d, 0x28, 0x5b, 0x01, 0x11, 0x84, 0xf0, 0xfe, 0xd0, 0xc4, 0xfd, 0x51, 0x8d, 0x27, 0xcb, 0x14, 0x83, 0x61, 0xae, 0x84, 0x14, - 0x75, 0x7b, 0xf4, 0x80, 0x8f, 0x7d, 0x3c, 0xed, 0x38, 0xd7, 0x33, 0xce, 0x79, 0x86, 0xba, 0x3e, + 0x75, 0x7b, 0xf4, 0x80, 0x8f, 0x7d, 0x3c, 0xed, 0x38, 0xd7, 0x73, 0xce, 0x79, 0x86, 0xba, 0x3e, 0x42, 0x25, 0x17, 0x01, 0xe4, 0xfd, 0xb1, 0x12, 0x53, 0xc5, 0x05, 0xf2, 0x63, 0x28, 0x3b, 0x9e, - 0xc3, 0x1c, 0xdc, 0xef, 0x74, 0x71, 0x1f, 0x7b, 0xd6, 0xf3, 0x4c, 0xcd, 0xb2, 0xe5, 0x2b, 0xb5, - 0x29, 0x38, 0xc3, 0x5c, 0x51, 0x94, 0xa6, 0x24, 0xa0, 0x7d, 0x58, 0x0c, 0x55, 0xe5, 0x9e, 0x6b, - 0xda, 0x08, 0xc5, 0x13, 0x03, 0xde, 0x2f, 0x16, 0x60, 0xcd, 0x24, 0xf6, 0x67, 0xa1, 0x98, 0x2f, - 0x14, 0xdf, 0x06, 0x90, 0xe5, 0xce, 0x1b, 0xec, 0x73, 0x44, 0x83, 0x37, 0x8c, 0xa2, 0x44, 0x68, - 0x51, 0x96, 0x88, 0xc7, 0x38, 0x0b, 0x4b, 0xc9, 0x78, 0xfc, 0x9f, 0xde, 0x4a, 0xa8, 0x1d, 0x77, - 0xa2, 0x9c, 0xe8, 0x44, 0x5f, 0x9a, 0xd5, 0x89, 0xa6, 0xb2, 0xf7, 0xc9, 0x2d, 0xe8, 0xdf, 0x59, + 0xc3, 0x1c, 0xdc, 0xef, 0x74, 0x71, 0x1f, 0x7b, 0xd6, 0x8b, 0x4c, 0xcd, 0xb2, 0xe5, 0x2b, 0xb5, + 0x29, 0x38, 0xc3, 0x5c, 0x51, 0x94, 0xa6, 0x24, 0xa0, 0x7d, 0x58, 0x0c, 0x55, 0xe5, 0x5e, 0x68, + 0xda, 0x08, 0xc5, 0x13, 0x03, 0xde, 0x2f, 0xb2, 0xb0, 0x66, 0x12, 0xfb, 0xb3, 0x50, 0xcc, 0x17, + 0x8a, 0x6f, 0x03, 0xc8, 0x72, 0xe7, 0x0d, 0xf6, 0x05, 0xa2, 0xc1, 0x1b, 0x46, 0x51, 0x22, 0xb4, + 0x28, 0x4b, 0xc4, 0x63, 0xbc, 0x00, 0x4b, 0xc9, 0x78, 0xfc, 0x9f, 0xde, 0x4a, 0xa8, 0x1d, 0x77, + 0xa2, 0x9c, 0xe8, 0x44, 0x5f, 0x9a, 0xd5, 0x89, 0xa6, 0xb2, 0xf7, 0xe9, 0x2d, 0xe8, 0xdf, 0x59, 0xc8, 0x1f, 0xe0, 0x00, 0xbb, 0x14, 0x59, 0x53, 0x93, 0xa6, 0x7c, 0x6b, 0x6e, 0x4c, 0xe5, 0x67, - 0x4b, 0x7d, 0xed, 0x78, 0xca, 0xa0, 0xf9, 0xe1, 0x25, 0x83, 0xe6, 0x37, 0x61, 0x85, 0x3f, 0x87, + 0x4b, 0x7d, 0xed, 0x78, 0xc6, 0xa0, 0xf9, 0xc1, 0x25, 0x83, 0xe6, 0x37, 0x61, 0x85, 0x3f, 0x87, 0x23, 0x1b, 0xa5, 0xb7, 0x97, 0x9b, 0x1b, 0x31, 0xca, 0xc5, 0x7d, 0xf9, 0x5a, 0x8e, 0x1e, 0x5d, 0x14, 0x7d, 0x0d, 0x4a, 0x9c, 0x23, 0x6e, 0xcc, 0x5c, 0xfc, 0x5a, 0xfc, 0x2c, 0x4d, 0x6c, 0x1a, - 0x26, 0xb8, 0xf8, 0x7c, 0x4f, 0x2e, 0xd0, 0x3b, 0x80, 0x4e, 0xa3, 0x2f, 0x23, 0x9d, 0xd8, 0x9d, - 0x5c, 0xfe, 0xf3, 0x93, 0xb1, 0xbe, 0x21, 0xe5, 0xa7, 0x79, 0x0c, 0x73, 0x2d, 0x26, 0x86, 0x68, - 0x5f, 0x05, 0xe0, 0x76, 0x75, 0x6c, 0xe2, 0xf9, 0xae, 0x7a, 0xee, 0x5c, 0x9d, 0x8c, 0xf5, 0x35, - 0x89, 0x12, 0xef, 0x19, 0x66, 0x91, 0x2f, 0x5a, 0xfc, 0x77, 0x22, 0xb3, 0x3f, 0xd2, 0x00, 0xc5, - 0x2d, 0xdf, 0x24, 0x74, 0xc0, 0xdf, 0x67, 0x7c, 0x10, 0x4f, 0x4c, 0xcd, 0xda, 0x93, 0x07, 0xf1, - 0x58, 0x3e, 0x1c, 0xc4, 0x13, 0x95, 0xf2, 0xf5, 0xb8, 0x3d, 0x66, 0x55, 0x1c, 0x15, 0x4c, 0x17, - 0x53, 0x92, 0x18, 0xe6, 0x9d, 0x50, 0x7a, 0xaa, 0x1f, 0x66, 0x8c, 0x3f, 0x6a, 0xb0, 0x31, 0x95, - 0x51, 0xd1, 0x61, 0x7f, 0x08, 0x28, 0x48, 0x6c, 0x0a, 0x7f, 0x8d, 0xd4, 0xa1, 0xe7, 0x4e, 0xd0, - 0xb5, 0x60, 0xaa, 0xef, 0x7e, 0x7a, 0x1d, 0x3e, 0x27, 0x7c, 0xfe, 0x3b, 0x0d, 0xd6, 0x93, 0xea, - 0x23, 0x43, 0x6e, 0xc3, 0x52, 0x52, 0xbb, 0x32, 0xe1, 0xd5, 0x67, 0x31, 0x41, 0x9d, 0xfe, 0x82, - 0x3c, 0xfa, 0x6e, 0x5c, 0xae, 0xf2, 0xdb, 0xd9, 0x8d, 0x67, 0xf6, 0x46, 0x78, 0xa6, 0x74, 0xd9, - 0xe6, 0x44, 0x3c, 0xfe, 0xab, 0x41, 0xee, 0xc0, 0xf7, 0xfb, 0xc8, 0x87, 0x35, 0xcf, 0x67, 0x1d, - 0x9e, 0x59, 0xc4, 0xee, 0xa8, 0x47, 0xb7, 0xec, 0x83, 0xbb, 0xf3, 0x39, 0xe9, 0x9f, 0x63, 0x7d, - 0x1a, 0xca, 0x2c, 0x7b, 0x3e, 0x6b, 0x0a, 0xca, 0x91, 0x7c, 0x92, 0xbf, 0x07, 0xcb, 0x17, 0x95, - 0xc9, 0x2e, 0xf9, 0xbd, 0xb9, 0x95, 0x5d, 0x84, 0x99, 0x8c, 0xf5, 0xf5, 0xb8, 0x62, 0x22, 0xb2, - 0x61, 0x2e, 0x75, 0x13, 0xda, 0x77, 0x0a, 0x3c, 0x7e, 0xff, 0x7a, 0xa0, 0x6b, 0x5f, 0xfe, 0xad, - 0x06, 0x10, 0x7f, 0x79, 0x40, 0xaf, 0xc3, 0xcb, 0xcd, 0xef, 0xdc, 0x6e, 0x75, 0x0e, 0x8f, 0x6e, - 0x1e, 0xdd, 0x39, 0xec, 0xdc, 0xb9, 0x7d, 0x78, 0xb0, 0xb7, 0xdb, 0xbe, 0xd5, 0xde, 0x6b, 0xad, - 0x66, 0xaa, 0xe5, 0x7b, 0xf7, 0xeb, 0xa5, 0x3b, 0x1e, 0x1d, 0x10, 0xcb, 0x39, 0x71, 0x88, 0x8d, - 0x5e, 0x83, 0xf5, 0x8b, 0xdc, 0x7c, 0xb5, 0xd7, 0x5a, 0xd5, 0xaa, 0x4b, 0xf7, 0xee, 0xd7, 0x0b, - 0x72, 0x16, 0x23, 0x36, 0xda, 0x84, 0xab, 0xd3, 0x7c, 0xed, 0xdb, 0xdf, 0x5a, 0xcd, 0x56, 0x97, - 0xef, 0xdd, 0xaf, 0x17, 0xa3, 0xa1, 0x0d, 0x19, 0x80, 0x92, 0x9c, 0x0a, 0x6f, 0xa1, 0x0a, 0xf7, - 0xee, 0xd7, 0xf3, 0xd2, 0x81, 0xd5, 0xdc, 0xfb, 0x1f, 0xd5, 0x32, 0xcd, 0x5b, 0x9f, 0x3c, 0xaa, - 0x69, 0x0f, 0x1f, 0xd5, 0xb4, 0xbf, 0x3f, 0xaa, 0x69, 0x1f, 0x3c, 0xae, 0x65, 0x1e, 0x3e, 0xae, - 0x65, 0xfe, 0xfc, 0xb8, 0x96, 0xf9, 0xfe, 0xeb, 0x4f, 0xf4, 0xdd, 0x79, 0xf4, 0x51, 0x5b, 0x78, - 0xb1, 0x9b, 0x17, 0x6d, 0xf8, 0xcd, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xc2, 0x48, 0x4c, 0x86, - 0xf3, 0x16, 0x00, 0x00, + 0x26, 0xb8, 0xf8, 0x7c, 0x4f, 0x2e, 0xd0, 0x6d, 0x40, 0xa7, 0xd1, 0x97, 0x91, 0x4e, 0xec, 0x4e, + 0x2e, 0xff, 0xf9, 0xc9, 0x58, 0xdf, 0x90, 0xf2, 0xd3, 0x3c, 0x86, 0xb9, 0x16, 0x13, 0x43, 0xb4, + 0xaf, 0x02, 0x70, 0xbb, 0x3a, 0x36, 0xf1, 0x7c, 0x57, 0x3d, 0x77, 0xae, 0x4e, 0xc6, 0xfa, 0x9a, + 0x44, 0x89, 0xf7, 0x0c, 0xb3, 0xc8, 0x17, 0x2d, 0xfe, 0x3b, 0x9c, 0x8e, 0x53, 0xaf, 0x7a, 0xf5, + 0xb6, 0xb9, 0x3d, 0xf7, 0xdb, 0x26, 0x31, 0x1d, 0xa7, 0x20, 0xe5, 0x74, 0x7c, 0xf1, 0x6b, 0x40, + 0xa2, 0xae, 0x3e, 0xd4, 0x00, 0xc5, 0x17, 0x8e, 0x49, 0xe8, 0x80, 0xbf, 0x0e, 0xf9, 0x33, 0x20, + 0x31, 0xb3, 0x6b, 0x4f, 0x7f, 0x06, 0xc4, 0xf2, 0xe1, 0x33, 0x20, 0x51, 0xa7, 0x5f, 0x8f, 0x9b, + 0xf3, 0x82, 0xca, 0x22, 0x05, 0xd3, 0xc5, 0x94, 0x24, 0x9e, 0x12, 0x4e, 0x28, 0x3d, 0xd5, 0x8d, + 0x33, 0xc6, 0x1f, 0x35, 0xd8, 0x98, 0xca, 0xe7, 0xe8, 0xb0, 0x3f, 0x04, 0x14, 0x24, 0x36, 0x45, + 0xb4, 0x46, 0xea, 0xd0, 0x73, 0x97, 0xc7, 0x5a, 0x30, 0xd5, 0xf5, 0x3f, 0xb9, 0xfb, 0x25, 0x27, + 0x7c, 0xfe, 0x3b, 0x0d, 0xd6, 0x93, 0xea, 0x23, 0x43, 0xee, 0xc0, 0x52, 0x52, 0xbb, 0x32, 0xe1, + 0xd5, 0xe7, 0x31, 0x41, 0x9d, 0xfe, 0x82, 0x3c, 0xfa, 0x6e, 0xdc, 0x2c, 0xe4, 0x97, 0xbb, 0x1b, + 0xcf, 0xed, 0x8d, 0xf0, 0x4c, 0xe9, 0xa6, 0x91, 0x13, 0xf1, 0xf8, 0xaf, 0x06, 0xb9, 0x03, 0xdf, + 0xef, 0x23, 0x1f, 0xd6, 0x3c, 0x9f, 0x75, 0x78, 0x5e, 0x13, 0xbb, 0xa3, 0x9e, 0xfc, 0xb2, 0x0b, + 0xef, 0xce, 0xe7, 0xa4, 0x7f, 0x8e, 0xf5, 0x69, 0x28, 0xb3, 0xec, 0xf9, 0xac, 0x29, 0x28, 0x47, + 0xf2, 0x83, 0xc0, 0xbb, 0xb0, 0x7c, 0x51, 0x99, 0xec, 0xd1, 0xdf, 0x9b, 0x5b, 0xd9, 0x45, 0x98, + 0xc9, 0x58, 0x5f, 0x8f, 0xeb, 0x35, 0x22, 0x1b, 0xe6, 0x52, 0x37, 0xa1, 0x7d, 0xa7, 0xc0, 0xe3, + 0xf7, 0xaf, 0x87, 0xba, 0xf6, 0xe5, 0xdf, 0x6a, 0x00, 0xf1, 0x77, 0x0f, 0xf4, 0x3a, 0xbc, 0xdc, + 0xfc, 0xce, 0x9d, 0x56, 0xe7, 0xf0, 0xe8, 0xe6, 0xd1, 0xdd, 0xc3, 0xce, 0xdd, 0x3b, 0x87, 0x07, + 0x7b, 0xbb, 0xed, 0x5b, 0xed, 0xbd, 0xd6, 0x6a, 0xa6, 0x5a, 0xbe, 0xff, 0xa0, 0x5e, 0xba, 0xeb, + 0xd1, 0x01, 0xb1, 0x9c, 0x13, 0x87, 0xd8, 0xe8, 0x35, 0x58, 0xbf, 0xc8, 0xcd, 0x57, 0x7b, 0xad, + 0x55, 0xad, 0xba, 0x74, 0xff, 0x41, 0xbd, 0x20, 0x27, 0x41, 0x62, 0xa3, 0x4d, 0xb8, 0x3a, 0xcd, + 0xd7, 0xbe, 0xf3, 0xad, 0xd5, 0x85, 0xea, 0xf2, 0xfd, 0x07, 0xf5, 0x62, 0x34, 0x32, 0x22, 0x03, + 0x50, 0x92, 0x53, 0xe1, 0x65, 0xab, 0x70, 0xff, 0x41, 0x3d, 0x2f, 0x1d, 0x58, 0xcd, 0xbd, 0xf7, + 0x61, 0x2d, 0xd3, 0xbc, 0xf5, 0xf1, 0xe3, 0x9a, 0xf6, 0xe8, 0x71, 0x4d, 0xfb, 0xfb, 0xe3, 0x9a, + 0xf6, 0xfe, 0x93, 0x5a, 0xe6, 0xd1, 0x93, 0x5a, 0xe6, 0xcf, 0x4f, 0x6a, 0x99, 0xef, 0xbf, 0xfe, + 0x54, 0xdf, 0x9d, 0x47, 0x9f, 0xd4, 0x85, 0x17, 0xbb, 0x79, 0x71, 0x09, 0xbc, 0xf9, 0xbf, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x45, 0x84, 0x47, 0xa8, 0x71, 0x17, 0x00, 0x00, } func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { @@ -1260,622 +1263,623 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9834 bytes of a gzipped FileDescriptorSet + // 9856 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x5c, 0xd7, 0x75, 0x18, 0xde, 0x7e, 0x00, 0xbb, 0x07, 0x0b, 0x60, 0x71, 0x01, 0x92, 0xcb, 0x25, 0x09, 0x40, - 0x4f, 0x5f, 0x14, 0x25, 0x81, 0x12, 0x25, 0x52, 0xd2, 0x32, 0xb6, 0xbc, 0x8b, 0x5d, 0x82, 0x10, - 0xf1, 0xa5, 0x07, 0x80, 0x92, 0x65, 0xa7, 0x3b, 0x0f, 0xbb, 0x17, 0x8b, 0x27, 0xec, 0xbe, 0xf7, - 0xf4, 0xde, 0x5b, 0x12, 0xa0, 0xed, 0x8e, 0xfc, 0x51, 0xd7, 0x66, 0x26, 0x8d, 0x5d, 0x77, 0x1a, - 0x5b, 0x36, 0x5d, 0x39, 0x4e, 0xeb, 0xd4, 0x71, 0x1b, 0x3b, 0x76, 0xdd, 0xa6, 0xed, 0x4c, 0xed, - 0xce, 0xa4, 0xb1, 0xdd, 0x26, 0x63, 0xb7, 0x99, 0x36, 0xcd, 0xa4, 0x74, 0x2a, 0x7b, 0x52, 0xd5, - 0x75, 0x1b, 0x87, 0x71, 0xdb, 0x74, 0x3c, 0x9d, 0x76, 0xee, 0xd7, 0xfb, 0xda, 0x4f, 0x40, 0xa4, - 0xed, 0x34, 0xfd, 0x85, 0xbd, 0xe7, 0x9e, 0x73, 0xee, 0x39, 0xe7, 0x9e, 0x7b, 0xee, 0xb9, 0x5f, - 0x0f, 0xf0, 0x85, 0xf3, 0x30, 0x53, 0x33, 0x8c, 0x5a, 0x1d, 0x9f, 0x36, 0x2d, 0xc3, 0x31, 0x36, - 0x9b, 0x5b, 0xa7, 0xab, 0xd8, 0xae, 0x58, 0x9a, 0xe9, 0x18, 0xd6, 0x2c, 0x85, 0xa1, 0x31, 0x86, - 0x31, 0x2b, 0x30, 0xe4, 0x25, 0x18, 0xbf, 0xa0, 0xd5, 0x71, 0xd1, 0x45, 0x5c, 0xc3, 0x0e, 0x7a, - 0x12, 0x62, 0x5b, 0x5a, 0x1d, 0x67, 0xa4, 0x99, 0xe8, 0xc9, 0xe1, 0x33, 0xf7, 0xcc, 0x86, 0x88, - 0x66, 0x83, 0x14, 0xab, 0x04, 0xac, 0x50, 0x0a, 0xf9, 0xbb, 0x31, 0x98, 0x68, 0x53, 0x8b, 0x10, - 0xc4, 0x74, 0xb5, 0x41, 0x38, 0x4a, 0x27, 0x93, 0x0a, 0xfd, 0x8d, 0x32, 0x30, 0x64, 0xaa, 0x95, - 0x1d, 0xb5, 0x86, 0x33, 0x11, 0x0a, 0x16, 0x45, 0x34, 0x05, 0x50, 0xc5, 0x26, 0xd6, 0xab, 0x58, - 0xaf, 0xec, 0x65, 0xa2, 0x33, 0xd1, 0x93, 0x49, 0xc5, 0x07, 0x41, 0x0f, 0xc2, 0xb8, 0xd9, 0xdc, - 0xac, 0x6b, 0x95, 0xb2, 0x0f, 0x0d, 0x66, 0xa2, 0x27, 0xe3, 0x4a, 0x9a, 0x55, 0x14, 0x3d, 0xe4, - 0xfb, 0x61, 0xec, 0x2a, 0x56, 0x77, 0xfc, 0xa8, 0xc3, 0x14, 0x75, 0x94, 0x80, 0x7d, 0x88, 0x73, - 0x90, 0x6a, 0x60, 0xdb, 0x56, 0x6b, 0xb8, 0xec, 0xec, 0x99, 0x38, 0x13, 0xa3, 0xda, 0xcf, 0xb4, - 0x68, 0x1f, 0xd6, 0x7c, 0x98, 0x53, 0xad, 0xef, 0x99, 0x18, 0xe5, 0x21, 0x89, 0xf5, 0x66, 0x83, - 0x71, 0x88, 0x77, 0xb0, 0x5f, 0x49, 0x6f, 0x36, 0xc2, 0x5c, 0x12, 0x84, 0x8c, 0xb3, 0x18, 0xb2, - 0xb1, 0x75, 0x45, 0xab, 0xe0, 0xcc, 0x20, 0x65, 0x70, 0x7f, 0x0b, 0x83, 0x35, 0x56, 0x1f, 0xe6, - 0x21, 0xe8, 0xd0, 0x1c, 0x24, 0xf1, 0xae, 0x83, 0x75, 0x5b, 0x33, 0xf4, 0xcc, 0x10, 0x65, 0x72, - 0x6f, 0x9b, 0x5e, 0xc4, 0xf5, 0x6a, 0x98, 0x85, 0x47, 0x87, 0xce, 0xc1, 0x90, 0x61, 0x3a, 0x9a, - 0xa1, 0xdb, 0x99, 0xc4, 0x8c, 0x74, 0x72, 0xf8, 0xcc, 0xf1, 0xb6, 0x8e, 0xb0, 0xc2, 0x70, 0x14, - 0x81, 0x8c, 0x16, 0x20, 0x6d, 0x1b, 0x4d, 0xab, 0x82, 0xcb, 0x15, 0xa3, 0x8a, 0xcb, 0x9a, 0xbe, - 0x65, 0x64, 0x92, 0x94, 0xc1, 0x74, 0xab, 0x22, 0x14, 0x71, 0xce, 0xa8, 0xe2, 0x05, 0x7d, 0xcb, - 0x50, 0x46, 0xed, 0x40, 0x19, 0x1d, 0x86, 0x41, 0x7b, 0x4f, 0x77, 0xd4, 0xdd, 0x4c, 0x8a, 0x7a, - 0x08, 0x2f, 0xc9, 0xbf, 0x31, 0x08, 0x63, 0xfd, 0xb8, 0xd8, 0x79, 0x88, 0x6f, 0x11, 0x2d, 0x33, - 0x91, 0xfd, 0xd8, 0x80, 0xd1, 0x04, 0x8d, 0x38, 0x78, 0x40, 0x23, 0xe6, 0x61, 0x58, 0xc7, 0xb6, - 0x83, 0xab, 0xcc, 0x23, 0xa2, 0x7d, 0xfa, 0x14, 0x30, 0xa2, 0x56, 0x97, 0x8a, 0x1d, 0xc8, 0xa5, - 0x9e, 0x87, 0x31, 0x57, 0xa4, 0xb2, 0xa5, 0xea, 0x35, 0xe1, 0x9b, 0xa7, 0x7b, 0x49, 0x32, 0x5b, - 0x12, 0x74, 0x0a, 0x21, 0x53, 0x46, 0x71, 0xa0, 0x8c, 0x8a, 0x00, 0x86, 0x8e, 0x8d, 0xad, 0x72, - 0x15, 0x57, 0xea, 0x99, 0x44, 0x07, 0x2b, 0xad, 0x10, 0x94, 0x16, 0x2b, 0x19, 0x0c, 0x5a, 0xa9, - 0xa3, 0xa7, 0x3c, 0x57, 0x1b, 0xea, 0xe0, 0x29, 0x4b, 0x6c, 0x90, 0xb5, 0x78, 0xdb, 0x06, 0x8c, - 0x5a, 0x98, 0xf8, 0x3d, 0xae, 0x72, 0xcd, 0x92, 0x54, 0x88, 0xd9, 0x9e, 0x9a, 0x29, 0x9c, 0x8c, - 0x29, 0x36, 0x62, 0xf9, 0x8b, 0xe8, 0x6e, 0x70, 0x01, 0x65, 0xea, 0x56, 0x40, 0xa3, 0x50, 0x4a, - 0x00, 0x97, 0xd5, 0x06, 0xce, 0x5e, 0x83, 0xd1, 0xa0, 0x79, 0xd0, 0x24, 0xc4, 0x6d, 0x47, 0xb5, - 0x1c, 0xea, 0x85, 0x71, 0x85, 0x15, 0x50, 0x1a, 0xa2, 0x58, 0xaf, 0xd2, 0x28, 0x17, 0x57, 0xc8, - 0x4f, 0xf4, 0x16, 0x4f, 0xe1, 0x28, 0x55, 0xf8, 0xbe, 0xd6, 0x1e, 0x0d, 0x70, 0x0e, 0xeb, 0x9d, - 0x7d, 0x02, 0x46, 0x02, 0x0a, 0xf4, 0xdb, 0xb4, 0xfc, 0x4e, 0x38, 0xd4, 0x96, 0x35, 0x7a, 0x1e, - 0x26, 0x9b, 0xba, 0xa6, 0x3b, 0xd8, 0x32, 0x2d, 0x4c, 0x3c, 0x96, 0x35, 0x95, 0xf9, 0x4f, 0x43, - 0x1d, 0x7c, 0x6e, 0xc3, 0x8f, 0xcd, 0xb8, 0x28, 0x13, 0xcd, 0x56, 0xe0, 0xa9, 0x64, 0xe2, 0xf5, - 0xa1, 0xf4, 0xcb, 0x2f, 0xbf, 0xfc, 0x72, 0x44, 0xfe, 0xea, 0x20, 0x4c, 0xb6, 0x1b, 0x33, 0x6d, - 0x87, 0xef, 0x61, 0x18, 0xd4, 0x9b, 0x8d, 0x4d, 0x6c, 0x51, 0x23, 0xc5, 0x15, 0x5e, 0x42, 0x79, - 0x88, 0xd7, 0xd5, 0x4d, 0x5c, 0xcf, 0xc4, 0x66, 0xa4, 0x93, 0xa3, 0x67, 0x1e, 0xec, 0x6b, 0x54, - 0xce, 0x2e, 0x12, 0x12, 0x85, 0x51, 0xa2, 0x37, 0x43, 0x8c, 0x87, 0x68, 0xc2, 0xe1, 0x54, 0x7f, + 0x4f, 0x5f, 0x14, 0x25, 0x81, 0x12, 0x25, 0x52, 0xd2, 0x32, 0xb6, 0x8c, 0xc5, 0x2e, 0x41, 0x88, + 0xf8, 0xd2, 0x03, 0x40, 0xc9, 0xb2, 0xd3, 0x9d, 0x87, 0xdd, 0x8b, 0xc5, 0x13, 0x76, 0xdf, 0x7b, + 0x7a, 0xef, 0x2d, 0x09, 0xc8, 0x76, 0x47, 0xfe, 0xa8, 0x6b, 0x33, 0x93, 0xc6, 0xae, 0x3b, 0x8d, + 0x2d, 0x9b, 0xae, 0x1c, 0xa7, 0x75, 0xea, 0xb8, 0x8d, 0x1d, 0xbb, 0x6e, 0xd3, 0x76, 0xa6, 0x76, + 0x67, 0xd2, 0xd8, 0x6e, 0x93, 0xb1, 0xdb, 0x4c, 0x9b, 0x66, 0x52, 0x3a, 0x95, 0x3d, 0xa9, 0xea, + 0xba, 0x8d, 0xcd, 0xaa, 0xd3, 0x74, 0x3c, 0x9d, 0x76, 0xee, 0xd7, 0xfb, 0xda, 0x6f, 0x88, 0xb4, + 0x9c, 0xa6, 0xbf, 0xb0, 0xf7, 0xdc, 0x73, 0xce, 0x3d, 0xe7, 0xdc, 0x73, 0xcf, 0x3d, 0xf7, 0xeb, + 0x01, 0xbe, 0x74, 0x1e, 0x66, 0xaa, 0x86, 0x51, 0xad, 0xe1, 0xd3, 0xa6, 0x65, 0x38, 0xc6, 0x56, + 0x63, 0xfb, 0x74, 0x05, 0xdb, 0x65, 0x4b, 0x33, 0x1d, 0xc3, 0x9a, 0xa5, 0x30, 0x34, 0xc6, 0x30, + 0x66, 0x05, 0x86, 0xbc, 0x0c, 0xe3, 0x17, 0xb4, 0x1a, 0x2e, 0xb8, 0x88, 0xeb, 0xd8, 0x41, 0x8f, + 0x43, 0x6c, 0x5b, 0xab, 0xe1, 0x8c, 0x34, 0x13, 0x3d, 0x39, 0x7c, 0xe6, 0xae, 0xd9, 0x10, 0xd1, + 0x6c, 0x90, 0x62, 0x8d, 0x80, 0x15, 0x4a, 0x21, 0x7f, 0x3f, 0x06, 0x13, 0x2d, 0x6a, 0x11, 0x82, + 0x98, 0xae, 0xd6, 0x09, 0x47, 0xe9, 0x64, 0x52, 0xa1, 0xbf, 0x51, 0x06, 0x86, 0x4c, 0xb5, 0xbc, + 0xab, 0x56, 0x71, 0x26, 0x42, 0xc1, 0xa2, 0x88, 0xa6, 0x00, 0x2a, 0xd8, 0xc4, 0x7a, 0x05, 0xeb, + 0xe5, 0xfd, 0x4c, 0x74, 0x26, 0x7a, 0x32, 0xa9, 0xf8, 0x20, 0xe8, 0x7e, 0x18, 0x37, 0x1b, 0x5b, + 0x35, 0xad, 0x5c, 0xf2, 0xa1, 0xc1, 0x4c, 0xf4, 0x64, 0x5c, 0x49, 0xb3, 0x8a, 0x82, 0x87, 0x7c, + 0x2f, 0x8c, 0x5d, 0xc5, 0xea, 0xae, 0x1f, 0x75, 0x98, 0xa2, 0x8e, 0x12, 0xb0, 0x0f, 0x71, 0x1e, + 0x52, 0x75, 0x6c, 0xdb, 0x6a, 0x15, 0x97, 0x9c, 0x7d, 0x13, 0x67, 0x62, 0x54, 0xfb, 0x99, 0x26, + 0xed, 0xc3, 0x9a, 0x0f, 0x73, 0xaa, 0x8d, 0x7d, 0x13, 0xa3, 0x39, 0x48, 0x62, 0xbd, 0x51, 0x67, + 0x1c, 0xe2, 0x6d, 0xec, 0x57, 0xd4, 0x1b, 0xf5, 0x30, 0x97, 0x04, 0x21, 0xe3, 0x2c, 0x86, 0x6c, + 0x6c, 0x5d, 0xd1, 0xca, 0x38, 0x33, 0x48, 0x19, 0xdc, 0xdb, 0xc4, 0x60, 0x9d, 0xd5, 0x87, 0x79, + 0x08, 0x3a, 0x34, 0x0f, 0x49, 0xbc, 0xe7, 0x60, 0xdd, 0xd6, 0x0c, 0x3d, 0x33, 0x44, 0x99, 0xdc, + 0xdd, 0xa2, 0x17, 0x71, 0xad, 0x12, 0x66, 0xe1, 0xd1, 0xa1, 0x73, 0x30, 0x64, 0x98, 0x8e, 0x66, + 0xe8, 0x76, 0x26, 0x31, 0x23, 0x9d, 0x1c, 0x3e, 0x73, 0xbc, 0xa5, 0x23, 0xac, 0x32, 0x1c, 0x45, + 0x20, 0xa3, 0x45, 0x48, 0xdb, 0x46, 0xc3, 0x2a, 0xe3, 0x52, 0xd9, 0xa8, 0xe0, 0x92, 0xa6, 0x6f, + 0x1b, 0x99, 0x24, 0x65, 0x30, 0xdd, 0xac, 0x08, 0x45, 0x9c, 0x37, 0x2a, 0x78, 0x51, 0xdf, 0x36, + 0x94, 0x51, 0x3b, 0x50, 0x46, 0x87, 0x61, 0xd0, 0xde, 0xd7, 0x1d, 0x75, 0x2f, 0x93, 0xa2, 0x1e, + 0xc2, 0x4b, 0xf2, 0x6f, 0x0d, 0xc2, 0x58, 0x2f, 0x2e, 0x76, 0x1e, 0xe2, 0xdb, 0x44, 0xcb, 0x4c, + 0xa4, 0x1f, 0x1b, 0x30, 0x9a, 0xa0, 0x11, 0x07, 0x0f, 0x68, 0xc4, 0x39, 0x18, 0xd6, 0xb1, 0xed, + 0xe0, 0x0a, 0xf3, 0x88, 0x68, 0x8f, 0x3e, 0x05, 0x8c, 0xa8, 0xd9, 0xa5, 0x62, 0x07, 0x72, 0xa9, + 0x67, 0x61, 0xcc, 0x15, 0xa9, 0x64, 0xa9, 0x7a, 0x55, 0xf8, 0xe6, 0xe9, 0x6e, 0x92, 0xcc, 0x16, + 0x05, 0x9d, 0x42, 0xc8, 0x94, 0x51, 0x1c, 0x28, 0xa3, 0x02, 0x80, 0xa1, 0x63, 0x63, 0xbb, 0x54, + 0xc1, 0xe5, 0x5a, 0x26, 0xd1, 0xc6, 0x4a, 0xab, 0x04, 0xa5, 0xc9, 0x4a, 0x06, 0x83, 0x96, 0x6b, + 0xe8, 0x09, 0xcf, 0xd5, 0x86, 0xda, 0x78, 0xca, 0x32, 0x1b, 0x64, 0x4d, 0xde, 0xb6, 0x09, 0xa3, + 0x16, 0x26, 0x7e, 0x8f, 0x2b, 0x5c, 0xb3, 0x24, 0x15, 0x62, 0xb6, 0xab, 0x66, 0x0a, 0x27, 0x63, + 0x8a, 0x8d, 0x58, 0xfe, 0x22, 0xba, 0x13, 0x5c, 0x40, 0x89, 0xba, 0x15, 0xd0, 0x28, 0x94, 0x12, + 0xc0, 0x15, 0xb5, 0x8e, 0xb3, 0x2f, 0xc2, 0x68, 0xd0, 0x3c, 0x68, 0x12, 0xe2, 0xb6, 0xa3, 0x5a, + 0x0e, 0xf5, 0xc2, 0xb8, 0xc2, 0x0a, 0x28, 0x0d, 0x51, 0xac, 0x57, 0x68, 0x94, 0x8b, 0x2b, 0xe4, + 0x27, 0x7a, 0x9b, 0xa7, 0x70, 0x94, 0x2a, 0x7c, 0x4f, 0x73, 0x8f, 0x06, 0x38, 0x87, 0xf5, 0xce, + 0x3e, 0x06, 0x23, 0x01, 0x05, 0x7a, 0x6d, 0x5a, 0x7e, 0x37, 0x1c, 0x6a, 0xc9, 0x1a, 0x3d, 0x0b, + 0x93, 0x0d, 0x5d, 0xd3, 0x1d, 0x6c, 0x99, 0x16, 0x26, 0x1e, 0xcb, 0x9a, 0xca, 0xfc, 0xa7, 0xa1, + 0x36, 0x3e, 0xb7, 0xe9, 0xc7, 0x66, 0x5c, 0x94, 0x89, 0x46, 0x33, 0xf0, 0x54, 0x32, 0xf1, 0xda, + 0x50, 0xfa, 0xa5, 0x97, 0x5e, 0x7a, 0x29, 0x22, 0x7f, 0x7d, 0x10, 0x26, 0x5b, 0x8d, 0x99, 0x96, + 0xc3, 0xf7, 0x30, 0x0c, 0xea, 0x8d, 0xfa, 0x16, 0xb6, 0xa8, 0x91, 0xe2, 0x0a, 0x2f, 0xa1, 0x39, + 0x88, 0xd7, 0xd4, 0x2d, 0x5c, 0xcb, 0xc4, 0x66, 0xa4, 0x93, 0xa3, 0x67, 0xee, 0xef, 0x69, 0x54, + 0xce, 0x2e, 0x11, 0x12, 0x85, 0x51, 0xa2, 0xb7, 0x42, 0x8c, 0x87, 0x68, 0xc2, 0xe1, 0x54, 0x6f, 0x1c, 0xc8, 0x58, 0x52, 0x28, 0x1d, 0x3a, 0x06, 0x49, 0xf2, 0x97, 0xf9, 0xc6, 0x20, 0x95, 0x39, - 0x41, 0x00, 0xc4, 0x2f, 0x50, 0x16, 0x12, 0x74, 0x98, 0x54, 0xb1, 0x98, 0xda, 0xdc, 0x32, 0x71, - 0xac, 0x2a, 0xde, 0x52, 0x9b, 0x75, 0xa7, 0x7c, 0x45, 0xad, 0x37, 0x31, 0x75, 0xf8, 0xa4, 0x92, - 0xe2, 0xc0, 0xcb, 0x04, 0x86, 0xa6, 0x61, 0x98, 0x8d, 0x2a, 0x4d, 0xaf, 0xe2, 0x5d, 0x1a, 0x3d, - 0xe3, 0x0a, 0x1b, 0x68, 0x0b, 0x04, 0x42, 0x9a, 0x7f, 0xd1, 0x36, 0x74, 0xe1, 0x9a, 0xb4, 0x09, - 0x02, 0xa0, 0xcd, 0x3f, 0x11, 0x0e, 0xdc, 0x27, 0xda, 0xab, 0xd7, 0x32, 0x96, 0xee, 0x87, 0x31, - 0x8a, 0xf1, 0x18, 0xef, 0x7a, 0xb5, 0x9e, 0x19, 0x9f, 0x91, 0x4e, 0x26, 0x94, 0x51, 0x06, 0x5e, - 0xe1, 0x50, 0xf9, 0xcb, 0x11, 0x88, 0xd1, 0xc0, 0x32, 0x06, 0xc3, 0xeb, 0x6f, 0x5d, 0x2d, 0x95, - 0x8b, 0x2b, 0x1b, 0x85, 0xc5, 0x52, 0x5a, 0x42, 0xa3, 0x00, 0x14, 0x70, 0x61, 0x71, 0x25, 0xbf, - 0x9e, 0x8e, 0xb8, 0xe5, 0x85, 0xe5, 0xf5, 0x73, 0x8f, 0xa7, 0xa3, 0x2e, 0xc1, 0x06, 0x03, 0xc4, - 0xfc, 0x08, 0x8f, 0x9d, 0x49, 0xc7, 0x51, 0x1a, 0x52, 0x8c, 0xc1, 0xc2, 0xf3, 0xa5, 0xe2, 0xb9, - 0xc7, 0xd3, 0x83, 0x41, 0xc8, 0x63, 0x67, 0xd2, 0x43, 0x68, 0x04, 0x92, 0x14, 0x52, 0x58, 0x59, - 0x59, 0x4c, 0x27, 0x5c, 0x9e, 0x6b, 0xeb, 0xca, 0xc2, 0xf2, 0x7c, 0x3a, 0xe9, 0xf2, 0x9c, 0x57, - 0x56, 0x36, 0x56, 0xd3, 0xe0, 0x72, 0x58, 0x2a, 0xad, 0xad, 0xe5, 0xe7, 0x4b, 0xe9, 0x61, 0x17, - 0xa3, 0xf0, 0xd6, 0xf5, 0xd2, 0x5a, 0x3a, 0x15, 0x10, 0xeb, 0xb1, 0x33, 0xe9, 0x11, 0xb7, 0x89, - 0xd2, 0xf2, 0xc6, 0x52, 0x7a, 0x14, 0x8d, 0xc3, 0x08, 0x6b, 0x42, 0x08, 0x31, 0x16, 0x02, 0x9d, - 0x7b, 0x3c, 0x9d, 0xf6, 0x04, 0x61, 0x5c, 0xc6, 0x03, 0x80, 0x73, 0x8f, 0xa7, 0x91, 0x3c, 0x07, - 0x71, 0xea, 0x86, 0x08, 0xc1, 0xe8, 0x62, 0xbe, 0x50, 0x5a, 0x2c, 0xaf, 0xac, 0xae, 0x2f, 0xac, - 0x2c, 0xe7, 0x17, 0xd3, 0x92, 0x07, 0x53, 0x4a, 0xcf, 0x6e, 0x2c, 0x28, 0xa5, 0x62, 0x3a, 0xe2, - 0x87, 0xad, 0x96, 0xf2, 0xeb, 0xa5, 0x62, 0x3a, 0x2a, 0x57, 0x60, 0xb2, 0x5d, 0x40, 0x6d, 0x3b, - 0x84, 0x7c, 0xbe, 0x10, 0xe9, 0xe0, 0x0b, 0x94, 0x57, 0xd8, 0x17, 0xe4, 0xef, 0x44, 0x60, 0xa2, - 0xcd, 0xa4, 0xd2, 0xb6, 0x91, 0xa7, 0x21, 0xce, 0x7c, 0x99, 0x4d, 0xb3, 0x0f, 0xb4, 0x9d, 0x9d, - 0xa8, 0x67, 0xb7, 0x4c, 0xb5, 0x94, 0xce, 0x9f, 0x6a, 0x44, 0x3b, 0xa4, 0x1a, 0x84, 0x45, 0x8b, - 0xc3, 0xfe, 0x6c, 0x4b, 0xf0, 0x67, 0xf3, 0xe3, 0xb9, 0x7e, 0xe6, 0x47, 0x0a, 0xdb, 0xdf, 0x24, - 0x10, 0x6f, 0x33, 0x09, 0x9c, 0x87, 0xf1, 0x16, 0x46, 0x7d, 0x07, 0xe3, 0xf7, 0x4a, 0x90, 0xe9, - 0x64, 0x9c, 0x1e, 0x21, 0x31, 0x12, 0x08, 0x89, 0xe7, 0xc3, 0x16, 0xbc, 0xab, 0x73, 0x27, 0xb4, - 0xf4, 0xf5, 0x67, 0x24, 0x38, 0xdc, 0x3e, 0xa5, 0x6c, 0x2b, 0xc3, 0x9b, 0x61, 0xb0, 0x81, 0x9d, - 0x6d, 0x43, 0xa4, 0x55, 0xf7, 0xb5, 0x99, 0xac, 0x49, 0x75, 0xb8, 0xb3, 0x39, 0x95, 0x7f, 0xb6, - 0x8f, 0x76, 0xca, 0x0b, 0x99, 0x34, 0x2d, 0x92, 0x7e, 0x30, 0x02, 0x87, 0xda, 0x32, 0x6f, 0x2b, - 0xe8, 0x09, 0x00, 0x4d, 0x37, 0x9b, 0x0e, 0x4b, 0x9d, 0x58, 0x24, 0x4e, 0x52, 0x08, 0x0d, 0x5e, - 0x24, 0xca, 0x36, 0x1d, 0xb7, 0x3e, 0x4a, 0xeb, 0x81, 0x81, 0x28, 0xc2, 0x93, 0x9e, 0xa0, 0x31, - 0x2a, 0xe8, 0x54, 0x07, 0x4d, 0x5b, 0x1c, 0xf3, 0x11, 0x48, 0x57, 0xea, 0x1a, 0xd6, 0x9d, 0xb2, - 0xed, 0x58, 0x58, 0x6d, 0x68, 0x7a, 0x8d, 0x4e, 0x35, 0x89, 0x5c, 0x7c, 0x4b, 0xad, 0xdb, 0x58, - 0x19, 0x63, 0xd5, 0x6b, 0xa2, 0x96, 0x50, 0x50, 0x07, 0xb2, 0x7c, 0x14, 0x83, 0x01, 0x0a, 0x56, - 0xed, 0x52, 0xc8, 0x1f, 0x4e, 0xc2, 0xb0, 0x2f, 0x01, 0x47, 0x77, 0x41, 0xea, 0x45, 0xf5, 0x8a, - 0x5a, 0x16, 0x8b, 0x2a, 0x66, 0x89, 0x61, 0x02, 0x5b, 0xe5, 0x0b, 0xab, 0x47, 0x60, 0x92, 0xa2, - 0x18, 0x4d, 0x07, 0x5b, 0xe5, 0x4a, 0x5d, 0xb5, 0x6d, 0x6a, 0xb4, 0x04, 0x45, 0x45, 0xa4, 0x6e, - 0x85, 0x54, 0xcd, 0x89, 0x1a, 0x74, 0x16, 0x26, 0x28, 0x45, 0xa3, 0x59, 0x77, 0x34, 0xb3, 0x8e, - 0xcb, 0x64, 0x99, 0x67, 0xd3, 0x29, 0xc7, 0x95, 0x6c, 0x9c, 0x60, 0x2c, 0x71, 0x04, 0x22, 0x91, - 0x8d, 0x8a, 0x70, 0x82, 0x92, 0xd5, 0xb0, 0x8e, 0x2d, 0xd5, 0xc1, 0x65, 0xfc, 0x52, 0x53, 0xad, - 0xdb, 0x65, 0x55, 0xaf, 0x96, 0xb7, 0x55, 0x7b, 0x3b, 0x33, 0x49, 0x18, 0x14, 0x22, 0x19, 0x49, - 0x39, 0x4a, 0x10, 0xe7, 0x39, 0x5e, 0x89, 0xa2, 0xe5, 0xf5, 0xea, 0x45, 0xd5, 0xde, 0x46, 0x39, - 0x38, 0x4c, 0xb9, 0xd8, 0x8e, 0xa5, 0xe9, 0xb5, 0x72, 0x65, 0x1b, 0x57, 0x76, 0xca, 0x4d, 0x67, - 0xeb, 0xc9, 0xcc, 0x31, 0x7f, 0xfb, 0x54, 0xc2, 0x35, 0x8a, 0x33, 0x47, 0x50, 0x36, 0x9c, 0xad, - 0x27, 0xd1, 0x1a, 0xa4, 0x48, 0x67, 0x34, 0xb4, 0x6b, 0xb8, 0xbc, 0x65, 0x58, 0x74, 0x0e, 0x1d, - 0x6d, 0x13, 0x9a, 0x7c, 0x16, 0x9c, 0x5d, 0xe1, 0x04, 0x4b, 0x46, 0x15, 0xe7, 0xe2, 0x6b, 0xab, - 0xa5, 0x52, 0x51, 0x19, 0x16, 0x5c, 0x2e, 0x18, 0x16, 0x71, 0xa8, 0x9a, 0xe1, 0x1a, 0x78, 0x98, - 0x39, 0x54, 0xcd, 0x10, 0xe6, 0x3d, 0x0b, 0x13, 0x95, 0x0a, 0xd3, 0x59, 0xab, 0x94, 0xf9, 0x62, - 0xcc, 0xce, 0xa4, 0x03, 0xc6, 0xaa, 0x54, 0xe6, 0x19, 0x02, 0xf7, 0x71, 0x1b, 0x3d, 0x05, 0x87, - 0x3c, 0x63, 0xf9, 0x09, 0xc7, 0x5b, 0xb4, 0x0c, 0x93, 0x9e, 0x85, 0x09, 0x73, 0xaf, 0x95, 0x10, - 0x05, 0x5a, 0x34, 0xf7, 0xc2, 0x64, 0x4f, 0xc0, 0xa4, 0xb9, 0x6d, 0xb6, 0xd2, 0x9d, 0xf2, 0xd3, - 0x21, 0x73, 0xdb, 0x0c, 0x13, 0xde, 0x4b, 0x57, 0xe6, 0x16, 0xae, 0xa8, 0x0e, 0xae, 0x66, 0x8e, - 0xf8, 0xd1, 0x7d, 0x15, 0x68, 0x16, 0xd2, 0x95, 0x4a, 0x19, 0xeb, 0xea, 0x66, 0x1d, 0x97, 0x55, - 0x0b, 0xeb, 0xaa, 0x9d, 0x99, 0xa6, 0xc8, 0x31, 0xc7, 0x6a, 0x62, 0x65, 0xb4, 0x52, 0x29, 0xd1, - 0xca, 0x3c, 0xad, 0x43, 0xa7, 0x60, 0xdc, 0xd8, 0x7c, 0xb1, 0xc2, 0x3c, 0xb2, 0x6c, 0x5a, 0x78, - 0x4b, 0xdb, 0xcd, 0xdc, 0x43, 0xcd, 0x3b, 0x46, 0x2a, 0xa8, 0x3f, 0xae, 0x52, 0x30, 0x7a, 0x00, - 0xd2, 0x15, 0x7b, 0x5b, 0xb5, 0x4c, 0x1a, 0x92, 0x6d, 0x53, 0xad, 0xe0, 0xcc, 0xbd, 0x0c, 0x95, - 0xc1, 0x97, 0x05, 0x98, 0x8c, 0x08, 0xfb, 0xaa, 0xb6, 0xe5, 0x08, 0x8e, 0xf7, 0xb3, 0x11, 0x41, - 0x61, 0x9c, 0xdb, 0x49, 0x48, 0x13, 0x4b, 0x04, 0x1a, 0x3e, 0x49, 0xd1, 0x46, 0xcd, 0x6d, 0xd3, - 0xdf, 0xee, 0xdd, 0x30, 0x42, 0x30, 0xbd, 0x46, 0x1f, 0x60, 0x89, 0x9b, 0xb9, 0xed, 0x6b, 0xf1, - 0x71, 0x38, 0x4c, 0x90, 0x1a, 0xd8, 0x51, 0xab, 0xaa, 0xa3, 0xfa, 0xb0, 0x1f, 0xa2, 0xd8, 0xc4, - 0xec, 0x4b, 0xbc, 0x32, 0x20, 0xa7, 0xd5, 0xdc, 0xdc, 0x73, 0x1d, 0xeb, 0x61, 0x26, 0x27, 0x81, - 0x09, 0xd7, 0xba, 0x63, 0xc9, 0xb9, 0x9c, 0x83, 0x94, 0xdf, 0xef, 0x51, 0x12, 0x98, 0xe7, 0xa7, - 0x25, 0x92, 0x04, 0xcd, 0xad, 0x14, 0x49, 0xfa, 0xf2, 0x42, 0x29, 0x1d, 0x21, 0x69, 0xd4, 0xe2, - 0xc2, 0x7a, 0xa9, 0xac, 0x6c, 0x2c, 0xaf, 0x2f, 0x2c, 0x95, 0xd2, 0x51, 0x5f, 0x62, 0xff, 0x4c, - 0x2c, 0x71, 0x5f, 0xfa, 0x7e, 0xf9, 0x5b, 0x11, 0x18, 0x0d, 0xae, 0xd4, 0xd0, 0xcf, 0xc0, 0x11, - 0xb1, 0xad, 0x62, 0x63, 0xa7, 0x7c, 0x55, 0xb3, 0xe8, 0x80, 0x6c, 0xa8, 0x6c, 0x72, 0x74, 0xfd, - 0x67, 0x92, 0x63, 0xad, 0x61, 0xe7, 0x39, 0xcd, 0x22, 0xc3, 0xad, 0xa1, 0x3a, 0x68, 0x11, 0xa6, - 0x75, 0xa3, 0x6c, 0x3b, 0xaa, 0x5e, 0x55, 0xad, 0x6a, 0xd9, 0xdb, 0xd0, 0x2a, 0xab, 0x95, 0x0a, - 0xb6, 0x6d, 0x83, 0x4d, 0x84, 0x2e, 0x97, 0xe3, 0xba, 0xb1, 0xc6, 0x91, 0xbd, 0x19, 0x22, 0xcf, - 0x51, 0x43, 0xee, 0x1b, 0xed, 0xe4, 0xbe, 0xc7, 0x20, 0xd9, 0x50, 0xcd, 0x32, 0xd6, 0x1d, 0x6b, - 0x8f, 0xe6, 0xe7, 0x09, 0x25, 0xd1, 0x50, 0xcd, 0x12, 0x29, 0xff, 0x58, 0x96, 0x49, 0xcf, 0xc4, - 0x12, 0x89, 0x74, 0xf2, 0x99, 0x58, 0x22, 0x99, 0x06, 0xf9, 0xb5, 0x28, 0xa4, 0xfc, 0xf9, 0x3a, - 0x59, 0xfe, 0x54, 0xe8, 0x8c, 0x25, 0xd1, 0x98, 0x76, 0x77, 0xd7, 0xec, 0x7e, 0x76, 0x8e, 0x4c, - 0x65, 0xb9, 0x41, 0x96, 0x1c, 0x2b, 0x8c, 0x92, 0xa4, 0x11, 0xc4, 0xd9, 0x30, 0x4b, 0x46, 0x12, - 0x0a, 0x2f, 0xa1, 0x79, 0x18, 0x7c, 0xd1, 0xa6, 0xbc, 0x07, 0x29, 0xef, 0x7b, 0xba, 0xf3, 0x7e, - 0x66, 0x8d, 0x32, 0x4f, 0x3e, 0xb3, 0x56, 0x5e, 0x5e, 0x51, 0x96, 0xf2, 0x8b, 0x0a, 0x27, 0x47, - 0x47, 0x21, 0x56, 0x57, 0xaf, 0xed, 0x05, 0x27, 0x3d, 0x0a, 0xea, 0xb7, 0x13, 0x8e, 0x42, 0xec, - 0x2a, 0x56, 0x77, 0x82, 0x53, 0x0d, 0x05, 0xdd, 0xc1, 0xc1, 0x70, 0x1a, 0xe2, 0xd4, 0x5e, 0x08, - 0x80, 0x5b, 0x2c, 0x3d, 0x80, 0x12, 0x10, 0x9b, 0x5b, 0x51, 0xc8, 0x80, 0x48, 0x43, 0x8a, 0x41, - 0xcb, 0xab, 0x0b, 0xa5, 0xb9, 0x52, 0x3a, 0x22, 0x9f, 0x85, 0x41, 0x66, 0x04, 0x32, 0x58, 0x5c, - 0x33, 0xa4, 0x07, 0x78, 0x91, 0xf3, 0x90, 0x44, 0xed, 0xc6, 0x52, 0xa1, 0xa4, 0xa4, 0x23, 0xc1, - 0xae, 0x8e, 0xa5, 0xe3, 0xb2, 0x0d, 0x29, 0x7f, 0x1e, 0xfe, 0xe3, 0x59, 0x8c, 0x7f, 0x45, 0x82, - 0x61, 0x5f, 0x5e, 0x4d, 0x12, 0x22, 0xb5, 0x5e, 0x37, 0xae, 0x96, 0xd5, 0xba, 0xa6, 0xda, 0xdc, - 0x35, 0x80, 0x82, 0xf2, 0x04, 0xd2, 0x6f, 0xd7, 0xfd, 0x98, 0x86, 0x48, 0x3c, 0x3d, 0x28, 0x7f, - 0x52, 0x82, 0x74, 0x38, 0xb1, 0x0d, 0x89, 0x29, 0xfd, 0x24, 0xc5, 0x94, 0x3f, 0x21, 0xc1, 0x68, - 0x30, 0x9b, 0x0d, 0x89, 0x77, 0xd7, 0x4f, 0x54, 0xbc, 0x3f, 0x8c, 0xc0, 0x48, 0x20, 0x87, 0xed, - 0x57, 0xba, 0x97, 0x60, 0x5c, 0xab, 0xe2, 0x86, 0x69, 0x38, 0x58, 0xaf, 0xec, 0x95, 0xeb, 0xf8, - 0x0a, 0xae, 0x67, 0x64, 0x1a, 0x34, 0x4e, 0x77, 0xcf, 0x92, 0x67, 0x17, 0x3c, 0xba, 0x45, 0x42, - 0x96, 0x9b, 0x58, 0x28, 0x96, 0x96, 0x56, 0x57, 0xd6, 0x4b, 0xcb, 0x73, 0x6f, 0x2d, 0x6f, 0x2c, - 0x5f, 0x5a, 0x5e, 0x79, 0x6e, 0x59, 0x49, 0x6b, 0x21, 0xb4, 0x3b, 0x38, 0xec, 0x57, 0x21, 0x1d, - 0x16, 0x0a, 0x1d, 0x81, 0x76, 0x62, 0xa5, 0x07, 0xd0, 0x04, 0x8c, 0x2d, 0xaf, 0x94, 0xd7, 0x16, - 0x8a, 0xa5, 0x72, 0xe9, 0xc2, 0x85, 0xd2, 0xdc, 0xfa, 0x1a, 0xdb, 0xf7, 0x70, 0xb1, 0xd7, 0x03, - 0x03, 0x5c, 0x7e, 0x25, 0x0a, 0x13, 0x6d, 0x24, 0x41, 0x79, 0xbe, 0x62, 0x61, 0x8b, 0xa8, 0x87, - 0xfb, 0x91, 0x7e, 0x96, 0xe4, 0x0c, 0xab, 0xaa, 0xe5, 0xf0, 0x05, 0xce, 0x03, 0x40, 0xac, 0xa4, - 0x3b, 0xda, 0x96, 0x86, 0x2d, 0xbe, 0x9f, 0xc4, 0x96, 0x31, 0x63, 0x1e, 0x9c, 0x6d, 0x29, 0x3d, - 0x04, 0xc8, 0x34, 0x6c, 0xcd, 0xd1, 0xae, 0xe0, 0xb2, 0xa6, 0x8b, 0xcd, 0x27, 0xb2, 0xac, 0x89, - 0x29, 0x69, 0x51, 0xb3, 0xa0, 0x3b, 0x2e, 0xb6, 0x8e, 0x6b, 0x6a, 0x08, 0x9b, 0x04, 0xf3, 0xa8, - 0x92, 0x16, 0x35, 0x2e, 0xf6, 0x5d, 0x90, 0xaa, 0x1a, 0x4d, 0x92, 0xeb, 0x31, 0x3c, 0x32, 0x77, - 0x48, 0xca, 0x30, 0x83, 0xb9, 0x28, 0x3c, 0x8b, 0xf7, 0x76, 0xbd, 0x52, 0xca, 0x30, 0x83, 0x31, - 0x94, 0xfb, 0x61, 0x4c, 0xad, 0xd5, 0x2c, 0xc2, 0x5c, 0x30, 0x62, 0xeb, 0x92, 0x51, 0x17, 0x4c, - 0x11, 0xb3, 0xcf, 0x40, 0x42, 0xd8, 0x81, 0x4c, 0xd5, 0xc4, 0x12, 0x65, 0x93, 0x2d, 0xb6, 0x23, - 0x27, 0x93, 0x4a, 0x42, 0x17, 0x95, 0x77, 0x41, 0x4a, 0xb3, 0xcb, 0xde, 0x26, 0x7e, 0x64, 0x26, - 0x72, 0x32, 0xa1, 0x0c, 0x6b, 0xb6, 0xbb, 0x01, 0x2a, 0x7f, 0x26, 0x02, 0xa3, 0xc1, 0x43, 0x08, - 0x54, 0x84, 0x44, 0xdd, 0xa8, 0xa8, 0xd4, 0xb5, 0xd8, 0x09, 0xd8, 0xc9, 0x1e, 0xe7, 0x16, 0xb3, - 0x8b, 0x1c, 0x5f, 0x71, 0x29, 0xb3, 0xbf, 0x23, 0x41, 0x42, 0x80, 0xd1, 0x61, 0x88, 0x99, 0xaa, - 0xb3, 0x4d, 0xd9, 0xc5, 0x0b, 0x91, 0xb4, 0xa4, 0xd0, 0x32, 0x81, 0xdb, 0xa6, 0xaa, 0x53, 0x17, - 0xe0, 0x70, 0x52, 0x26, 0xfd, 0x5a, 0xc7, 0x6a, 0x95, 0x2e, 0x7a, 0x8c, 0x46, 0x03, 0xeb, 0x8e, - 0x2d, 0xfa, 0x95, 0xc3, 0xe7, 0x38, 0x18, 0x3d, 0x08, 0xe3, 0x8e, 0xa5, 0x6a, 0xf5, 0x00, 0x6e, - 0x8c, 0xe2, 0xa6, 0x45, 0x85, 0x8b, 0x9c, 0x83, 0xa3, 0x82, 0x6f, 0x15, 0x3b, 0x6a, 0x65, 0x1b, - 0x57, 0x3d, 0xa2, 0x41, 0xba, 0xb9, 0x71, 0x84, 0x23, 0x14, 0x79, 0xbd, 0xa0, 0x95, 0xbf, 0x25, - 0xc1, 0xb8, 0x58, 0xa6, 0x55, 0x5d, 0x63, 0x2d, 0x01, 0xa8, 0xba, 0x6e, 0x38, 0x7e, 0x73, 0xb5, - 0xba, 0x72, 0x0b, 0xdd, 0x6c, 0xde, 0x25, 0x52, 0x7c, 0x0c, 0xb2, 0x0d, 0x00, 0xaf, 0xa6, 0xa3, - 0xd9, 0xa6, 0x61, 0x98, 0x9f, 0x30, 0xd1, 0x63, 0x4a, 0xb6, 0xb0, 0x07, 0x06, 0x22, 0xeb, 0x39, - 0x34, 0x09, 0xf1, 0x4d, 0x5c, 0xd3, 0x74, 0xbe, 0x6f, 0xcc, 0x0a, 0x62, 0xfb, 0x25, 0xe6, 0x6e, - 0xbf, 0x14, 0xfe, 0x32, 0x4c, 0x54, 0x8c, 0x46, 0x58, 0xdc, 0x42, 0x3a, 0xb4, 0xb9, 0x60, 0x5f, - 0x94, 0x5e, 0x78, 0x98, 0x23, 0xd5, 0x8c, 0xba, 0xaa, 0xd7, 0x66, 0x0d, 0xab, 0xe6, 0x1d, 0xb3, - 0x92, 0x8c, 0xc7, 0xf6, 0x1d, 0xb6, 0x9a, 0x9b, 0x7f, 0x26, 0x49, 0xbf, 0x14, 0x89, 0xce, 0xaf, - 0x16, 0x3e, 0x1b, 0xc9, 0xce, 0x33, 0xc2, 0x55, 0x61, 0x0c, 0x05, 0x6f, 0xd5, 0x71, 0x85, 0x28, - 0x08, 0xdf, 0x7b, 0x10, 0x26, 0x6b, 0x46, 0xcd, 0xa0, 0x9c, 0x4e, 0x93, 0x5f, 0xfc, 0x9c, 0x36, - 0xe9, 0x42, 0xb3, 0x3d, 0x0f, 0x75, 0x73, 0xcb, 0x30, 0xc1, 0x91, 0xcb, 0xf4, 0xa0, 0x88, 0x2d, - 0x63, 0x50, 0xd7, 0x3d, 0xb4, 0xcc, 0x17, 0xbe, 0x4b, 0xa7, 0x6f, 0x65, 0x9c, 0x93, 0x92, 0x3a, - 0xb6, 0xd2, 0xc9, 0x29, 0x70, 0x28, 0xc0, 0x8f, 0x0d, 0x52, 0x6c, 0xf5, 0xe0, 0xf8, 0x9b, 0x9c, - 0xe3, 0x84, 0x8f, 0xe3, 0x1a, 0x27, 0xcd, 0xcd, 0xc1, 0xc8, 0x7e, 0x78, 0xfd, 0x0b, 0xce, 0x2b, - 0x85, 0xfd, 0x4c, 0xe6, 0x61, 0x8c, 0x32, 0xa9, 0x34, 0x6d, 0xc7, 0x68, 0xd0, 0x08, 0xd8, 0x9d, - 0xcd, 0x6f, 0x7d, 0x97, 0x8d, 0x9a, 0x51, 0x42, 0x36, 0xe7, 0x52, 0xe5, 0x72, 0x40, 0xcf, 0xc6, - 0xaa, 0xb8, 0x52, 0xef, 0xc1, 0xe1, 0x6b, 0x5c, 0x10, 0x17, 0x3f, 0x77, 0x19, 0x26, 0xc9, 0x6f, - 0x1a, 0xa0, 0xfc, 0x92, 0xf4, 0xde, 0x70, 0xcb, 0x7c, 0xeb, 0xbd, 0x6c, 0x60, 0x4e, 0xb8, 0x0c, - 0x7c, 0x32, 0xf9, 0x7a, 0xb1, 0x86, 0x1d, 0x07, 0x5b, 0x76, 0x59, 0xad, 0xb7, 0x13, 0xcf, 0xb7, - 0x63, 0x91, 0xf9, 0xd8, 0xf7, 0x83, 0xbd, 0x38, 0xcf, 0x28, 0xf3, 0xf5, 0x7a, 0x6e, 0x03, 0x8e, - 0xb4, 0xf1, 0x8a, 0x3e, 0x78, 0xbe, 0xc2, 0x79, 0x4e, 0xb6, 0x78, 0x06, 0x61, 0xbb, 0x0a, 0x02, - 0xee, 0xf6, 0x65, 0x1f, 0x3c, 0x3f, 0xce, 0x79, 0x22, 0x4e, 0x2b, 0xba, 0x94, 0x70, 0x7c, 0x06, - 0xc6, 0xaf, 0x60, 0x6b, 0xd3, 0xb0, 0xf9, 0x2e, 0x51, 0x1f, 0xec, 0x3e, 0xc1, 0xd9, 0x8d, 0x71, - 0x42, 0xba, 0x6d, 0x44, 0x78, 0x3d, 0x05, 0x89, 0x2d, 0xb5, 0x82, 0xfb, 0x60, 0x71, 0x83, 0xb3, - 0x18, 0x22, 0xf8, 0x84, 0x34, 0x0f, 0xa9, 0x9a, 0xc1, 0xe7, 0xa8, 0xde, 0xe4, 0x9f, 0xe4, 0xe4, - 0xc3, 0x82, 0x86, 0xb3, 0x30, 0x0d, 0xb3, 0x59, 0x27, 0x13, 0x58, 0x6f, 0x16, 0x7f, 0x4b, 0xb0, - 0x10, 0x34, 0x9c, 0xc5, 0x3e, 0xcc, 0xfa, 0xaa, 0x60, 0x61, 0xfb, 0xec, 0xf9, 0x34, 0x0c, 0x1b, - 0x7a, 0x7d, 0xcf, 0xd0, 0xfb, 0x11, 0xe2, 0x53, 0x9c, 0x03, 0x70, 0x12, 0xc2, 0xe0, 0x3c, 0x24, - 0xfb, 0xed, 0x88, 0xbf, 0xfd, 0x7d, 0x31, 0x3c, 0x44, 0x0f, 0xcc, 0xc3, 0x98, 0x08, 0x50, 0x9a, - 0xa1, 0xf7, 0xc1, 0xe2, 0xef, 0x70, 0x16, 0xa3, 0x3e, 0x32, 0xae, 0x86, 0x83, 0x6d, 0xa7, 0x86, - 0xfb, 0x61, 0xf2, 0x19, 0xa1, 0x06, 0x27, 0xe1, 0xa6, 0xdc, 0xc4, 0x7a, 0x65, 0xbb, 0x3f, 0x0e, - 0xbf, 0x22, 0x4c, 0x29, 0x68, 0x08, 0x8b, 0x39, 0x18, 0x69, 0xa8, 0x96, 0xbd, 0xad, 0xd6, 0xfb, - 0xea, 0x8e, 0xbf, 0xcb, 0x79, 0xa4, 0x5c, 0x22, 0x6e, 0x91, 0xa6, 0xbe, 0x1f, 0x36, 0x9f, 0x15, - 0x16, 0xf1, 0x91, 0xf1, 0xa1, 0x67, 0x3b, 0x74, 0x4b, 0x6d, 0x3f, 0xdc, 0x7e, 0x55, 0x0c, 0x3d, - 0x46, 0xbb, 0xe4, 0xe7, 0x78, 0x1e, 0x92, 0xb6, 0x76, 0xad, 0x2f, 0x36, 0x9f, 0x13, 0x3d, 0x4d, - 0x09, 0x08, 0xf1, 0x5b, 0xe1, 0x68, 0xdb, 0x69, 0xa2, 0x0f, 0x66, 0x7f, 0x8f, 0x33, 0x3b, 0xdc, - 0x66, 0xaa, 0xe0, 0x21, 0x61, 0xbf, 0x2c, 0xff, 0xbe, 0x08, 0x09, 0x38, 0xc4, 0x6b, 0x95, 0xac, - 0x1a, 0x6c, 0x75, 0x6b, 0x7f, 0x56, 0xfb, 0x35, 0x61, 0x35, 0x46, 0x1b, 0xb0, 0xda, 0x3a, 0x1c, - 0xe6, 0x1c, 0xf7, 0xd7, 0xaf, 0x9f, 0x17, 0x81, 0x95, 0x51, 0x6f, 0x04, 0x7b, 0xf7, 0x6d, 0x90, - 0x75, 0xcd, 0x29, 0xd2, 0x53, 0xbb, 0xdc, 0x50, 0xcd, 0x3e, 0x38, 0x7f, 0x81, 0x73, 0x16, 0x11, - 0xdf, 0xcd, 0x6f, 0xed, 0x25, 0xd5, 0x24, 0xcc, 0x9f, 0x87, 0x8c, 0x60, 0xde, 0xd4, 0x2d, 0x5c, - 0x31, 0x6a, 0xba, 0x76, 0x0d, 0x57, 0xfb, 0x60, 0xfd, 0xeb, 0xa1, 0xae, 0xda, 0xf0, 0x91, 0x13, - 0xce, 0x0b, 0x90, 0x76, 0x73, 0x95, 0xb2, 0xd6, 0x30, 0x0d, 0xcb, 0xe9, 0xc1, 0xf1, 0x8b, 0xa2, - 0xa7, 0x5c, 0xba, 0x05, 0x4a, 0x96, 0x2b, 0x01, 0x3b, 0x67, 0xee, 0xd7, 0x25, 0xbf, 0xc4, 0x19, - 0x8d, 0x78, 0x54, 0x3c, 0x70, 0x54, 0x8c, 0x86, 0xa9, 0x5a, 0xfd, 0xc4, 0xbf, 0x7f, 0x20, 0x02, - 0x07, 0x27, 0xe1, 0x81, 0x83, 0x64, 0x74, 0x64, 0xb6, 0xef, 0x83, 0xc3, 0x97, 0x45, 0xe0, 0x10, - 0x34, 0x9c, 0x85, 0x48, 0x18, 0xfa, 0x60, 0xf1, 0x0f, 0x05, 0x0b, 0x41, 0x43, 0x58, 0x3c, 0xeb, - 0x4d, 0xb4, 0x16, 0xae, 0x69, 0xb6, 0x63, 0xb1, 0xa4, 0xb8, 0x3b, 0xab, 0x7f, 0xf4, 0xfd, 0x60, - 0x12, 0xa6, 0xf8, 0x48, 0x49, 0x24, 0xe2, 0x9b, 0xac, 0x74, 0xcd, 0xd4, 0x5b, 0xb0, 0xdf, 0x10, - 0x91, 0xc8, 0x47, 0x46, 0x64, 0xf3, 0x65, 0x88, 0xc4, 0xec, 0x15, 0xb2, 0x52, 0xe8, 0x83, 0xdd, - 0x3f, 0x0e, 0x09, 0xb7, 0x26, 0x68, 0x09, 0x4f, 0x5f, 0xfe, 0xd3, 0xd4, 0x77, 0xf0, 0x5e, 0x5f, - 0xde, 0xf9, 0x4f, 0x42, 0xf9, 0xcf, 0x06, 0xa3, 0x64, 0x31, 0x64, 0x2c, 0x94, 0x4f, 0xa1, 0x5e, - 0xb7, 0x8a, 0x32, 0xef, 0xfe, 0x21, 0xd7, 0x37, 0x98, 0x4e, 0xe5, 0x16, 0x89, 0x93, 0x07, 0x93, - 0x9e, 0xde, 0xcc, 0xde, 0xfb, 0x43, 0xd7, 0xcf, 0x03, 0x39, 0x4f, 0xee, 0x02, 0x8c, 0x04, 0x12, - 0x9e, 0xde, 0xac, 0xde, 0xc7, 0x59, 0xa5, 0xfc, 0xf9, 0x4e, 0xee, 0x2c, 0xc4, 0x48, 0xf2, 0xd2, - 0x9b, 0xfc, 0xaf, 0x70, 0x72, 0x8a, 0x9e, 0x7b, 0x13, 0x24, 0x44, 0xd2, 0xd2, 0x9b, 0xf4, 0xfd, - 0x9c, 0xd4, 0x25, 0x21, 0xe4, 0x22, 0x61, 0xe9, 0x4d, 0xfe, 0x57, 0x05, 0xb9, 0x20, 0x21, 0xe4, - 0xfd, 0x9b, 0xf0, 0x2b, 0x3f, 0x17, 0xe3, 0x93, 0x8e, 0xb0, 0xdd, 0x79, 0x18, 0xe2, 0x99, 0x4a, - 0x6f, 0xea, 0x0f, 0xf2, 0xc6, 0x05, 0x45, 0xee, 0x09, 0x88, 0xf7, 0x69, 0xf0, 0x9f, 0xe7, 0xa4, - 0x0c, 0x3f, 0x37, 0x07, 0xc3, 0xbe, 0xec, 0xa4, 0x37, 0xf9, 0x5f, 0xe3, 0xe4, 0x7e, 0x2a, 0x22, - 0x3a, 0xcf, 0x4e, 0x7a, 0x33, 0xf8, 0x05, 0x21, 0x3a, 0xa7, 0x20, 0x66, 0x13, 0x89, 0x49, 0x6f, - 0xea, 0x0f, 0x09, 0xab, 0x0b, 0x92, 0xdc, 0xd3, 0x90, 0x74, 0x27, 0x9b, 0xde, 0xf4, 0x1f, 0xe6, - 0xf4, 0x1e, 0x0d, 0xb1, 0x80, 0x6f, 0xb2, 0xeb, 0xcd, 0xe2, 0xaf, 0x0b, 0x0b, 0xf8, 0xa8, 0xc8, - 0x30, 0x0a, 0x27, 0x30, 0xbd, 0x39, 0x7d, 0x44, 0x0c, 0xa3, 0x50, 0xfe, 0x42, 0x7a, 0x93, 0xc6, - 0xfc, 0xde, 0x2c, 0xfe, 0x86, 0xe8, 0x4d, 0x8a, 0x4f, 0xc4, 0x08, 0x67, 0x04, 0xbd, 0x79, 0xfc, - 0xa2, 0x10, 0x23, 0x94, 0x10, 0xe4, 0x56, 0x01, 0xb5, 0x66, 0x03, 0xbd, 0xf9, 0x7d, 0x94, 0xf3, - 0x1b, 0x6f, 0x49, 0x06, 0x72, 0xcf, 0xc1, 0xe1, 0xf6, 0x99, 0x40, 0x6f, 0xae, 0x1f, 0xfb, 0x61, - 0x68, 0xed, 0xe6, 0x4f, 0x04, 0x72, 0xeb, 0xde, 0x94, 0xe2, 0xcf, 0x02, 0x7a, 0xb3, 0x7d, 0xe5, - 0x87, 0xc1, 0xc0, 0xed, 0x4f, 0x02, 0x72, 0x79, 0x00, 0x6f, 0x02, 0xee, 0xcd, 0xeb, 0x13, 0x9c, - 0x97, 0x8f, 0x88, 0x0c, 0x0d, 0x3e, 0xff, 0xf6, 0xa6, 0xbf, 0x21, 0x86, 0x06, 0xa7, 0x20, 0x43, - 0x43, 0x4c, 0xbd, 0xbd, 0xa9, 0x3f, 0x29, 0x86, 0x86, 0x20, 0x21, 0x9e, 0xed, 0x9b, 0xdd, 0x7a, - 0x73, 0xf8, 0x94, 0xf0, 0x6c, 0x1f, 0x55, 0x6e, 0x19, 0xc6, 0x5b, 0x26, 0xc4, 0xde, 0xac, 0x7e, - 0x89, 0xb3, 0x4a, 0x87, 0xe7, 0x43, 0xff, 0xe4, 0xc5, 0x27, 0xc3, 0xde, 0xdc, 0x3e, 0x1d, 0x9a, - 0xbc, 0xf8, 0x5c, 0x98, 0x3b, 0x0f, 0x09, 0xbd, 0x59, 0xaf, 0x93, 0xc1, 0x83, 0xba, 0xdf, 0x04, - 0xcc, 0xfc, 0xe7, 0x1f, 0x71, 0xeb, 0x08, 0x82, 0xdc, 0x59, 0x88, 0xe3, 0xc6, 0x26, 0xae, 0xf6, - 0xa2, 0xfc, 0xde, 0x8f, 0x44, 0xc0, 0x24, 0xd8, 0xb9, 0xa7, 0x01, 0xd8, 0xd6, 0x08, 0x3d, 0x0c, - 0xec, 0x41, 0xfb, 0x5f, 0x7e, 0xc4, 0xaf, 0xde, 0x78, 0x24, 0x1e, 0x03, 0x76, 0x91, 0xa7, 0x3b, - 0x83, 0xef, 0x07, 0x19, 0xd0, 0x1e, 0x79, 0x0a, 0x86, 0x5e, 0xb4, 0x0d, 0xdd, 0x51, 0x6b, 0xbd, - 0xa8, 0xff, 0x2b, 0xa7, 0x16, 0xf8, 0xc4, 0x60, 0x0d, 0xc3, 0xc2, 0x8e, 0x5a, 0xb3, 0x7b, 0xd1, - 0xfe, 0x37, 0x4e, 0xeb, 0x12, 0x10, 0xe2, 0x8a, 0x6a, 0x3b, 0xfd, 0xe8, 0xfd, 0xc7, 0x82, 0x58, - 0x10, 0x10, 0xa1, 0xc9, 0xef, 0x1d, 0xbc, 0xd7, 0x8b, 0xf6, 0x07, 0x42, 0x68, 0x8e, 0x9f, 0x7b, - 0x13, 0x24, 0xc9, 0x4f, 0x76, 0x9f, 0xae, 0x07, 0xf1, 0x9f, 0x70, 0x62, 0x8f, 0x82, 0xb4, 0x6c, - 0x3b, 0x55, 0x47, 0xeb, 0x6d, 0xec, 0x5b, 0xbc, 0xa7, 0x05, 0x7e, 0x2e, 0x0f, 0xc3, 0xb6, 0x53, - 0xad, 0x36, 0x79, 0x7e, 0xda, 0x83, 0xfc, 0x4f, 0x7f, 0xe4, 0x6e, 0x59, 0xb8, 0x34, 0xa4, 0xb7, - 0xaf, 0xee, 0x38, 0xa6, 0x41, 0x0f, 0x3c, 0x7a, 0x71, 0xf8, 0x21, 0xe7, 0xe0, 0x23, 0xc9, 0xcd, - 0x41, 0x8a, 0xe8, 0x62, 0x61, 0x13, 0xd3, 0xd3, 0xa9, 0x1e, 0x2c, 0xfe, 0x3b, 0x37, 0x40, 0x80, - 0xa8, 0xf0, 0xb3, 0x5f, 0x7b, 0x6d, 0x4a, 0xfa, 0xe6, 0x6b, 0x53, 0xd2, 0x1f, 0xbe, 0x36, 0x25, - 0x7d, 0xe8, 0x3b, 0x53, 0x03, 0xdf, 0xfc, 0xce, 0xd4, 0xc0, 0xef, 0x7d, 0x67, 0x6a, 0xa0, 0xfd, - 0x2e, 0x31, 0xcc, 0x1b, 0xf3, 0x06, 0xdb, 0x1f, 0x7e, 0x41, 0xae, 0x69, 0xce, 0x76, 0x73, 0x73, - 0xb6, 0x62, 0x34, 0xe8, 0x36, 0xae, 0xb7, 0x5b, 0xeb, 0x2e, 0x72, 0xe0, 0x3d, 0x51, 0x38, 0x5a, - 0x31, 0xec, 0x86, 0x61, 0x97, 0xd9, 0x7e, 0x2f, 0x2b, 0xf0, 0x1d, 0xdf, 0x94, 0xbf, 0xaa, 0x8f, - 0x4d, 0xdf, 0x8b, 0x30, 0x4a, 0x55, 0xa7, 0xdb, 0x5d, 0xd4, 0xdb, 0x7a, 0x06, 0x88, 0xaf, 0xff, - 0xdb, 0x38, 0xd5, 0x7a, 0xc4, 0x25, 0xa4, 0xa7, 0xf7, 0xeb, 0x30, 0xa9, 0x35, 0xcc, 0x3a, 0xa6, - 0xdb, 0xfc, 0x65, 0xb7, 0xae, 0x37, 0xbf, 0x6f, 0x70, 0x7e, 0x13, 0x1e, 0xf9, 0x82, 0xa0, 0xce, - 0x2d, 0xc2, 0xb8, 0x5a, 0xa9, 0x60, 0x33, 0xc0, 0xb2, 0x47, 0xb7, 0x08, 0x01, 0xd3, 0x9c, 0xd2, - 0xe5, 0x56, 0x78, 0xba, 0x53, 0xd7, 0xbc, 0x70, 0xaf, 0xcf, 0xf2, 0x16, 0xae, 0x61, 0xfd, 0x61, - 0x1d, 0x3b, 0x57, 0x0d, 0x6b, 0x87, 0x9b, 0xf7, 0x61, 0xd6, 0xd4, 0x20, 0xbb, 0xc1, 0x0c, 0xef, - 0x8b, 0xc2, 0x14, 0xab, 0x38, 0xbd, 0xa9, 0xda, 0xf8, 0xf4, 0x95, 0x47, 0x37, 0xb1, 0xa3, 0x3e, - 0x7a, 0xba, 0x62, 0x68, 0x3a, 0xef, 0x89, 0x09, 0xde, 0x2f, 0xa4, 0x7e, 0x96, 0xd7, 0x67, 0xdb, - 0x6e, 0xd3, 0xcb, 0xf3, 0x10, 0x9b, 0x33, 0x34, 0x1d, 0x4d, 0x42, 0xbc, 0x8a, 0x75, 0xa3, 0xc1, - 0xef, 0xdc, 0xb1, 0x02, 0xba, 0x1b, 0x06, 0xd5, 0x86, 0xd1, 0xd4, 0x1d, 0x76, 0x42, 0x51, 0x18, - 0xfe, 0xda, 0xcd, 0xe9, 0x81, 0xdf, 0xbf, 0x39, 0x1d, 0x5d, 0xd0, 0x1d, 0x85, 0x57, 0xe5, 0x62, - 0xaf, 0xbf, 0x3a, 0x2d, 0xc9, 0xcf, 0xc0, 0x50, 0x11, 0x57, 0x0e, 0xc2, 0xab, 0x88, 0x2b, 0x21, - 0x5e, 0x0f, 0x40, 0x62, 0x41, 0x77, 0xd8, 0xad, 0xc8, 0x13, 0x10, 0xd5, 0x74, 0x76, 0xd1, 0x26, - 0xd4, 0x3e, 0x81, 0x13, 0xd4, 0x22, 0xae, 0xb8, 0xa8, 0x55, 0x5c, 0x09, 0xa3, 0x12, 0xf6, 0x04, - 0x5e, 0x28, 0xfe, 0xde, 0x7f, 0x9c, 0x1a, 0x78, 0xf9, 0xb5, 0xa9, 0x81, 0x8e, 0x3d, 0xe1, 0x1f, - 0x03, 0xdc, 0xc4, 0xbc, 0x0b, 0xec, 0xea, 0x0e, 0x3b, 0x23, 0x71, 0xbb, 0xe1, 0xb7, 0x07, 0x41, - 0xe6, 0x38, 0xb6, 0xa3, 0xee, 0x68, 0x7a, 0xcd, 0xed, 0x09, 0xb5, 0xe9, 0x6c, 0x5f, 0xe3, 0x5d, - 0x71, 0x98, 0x77, 0x05, 0xc7, 0xe9, 0xde, 0x1b, 0xd9, 0xce, 0xa3, 0x2b, 0xdb, 0xa3, 0xcf, 0xe5, - 0x7f, 0x15, 0x05, 0xb4, 0xe6, 0xa8, 0x3b, 0x38, 0xdf, 0x74, 0xb6, 0x0d, 0x4b, 0xbb, 0xc6, 0x62, - 0x19, 0x06, 0x68, 0xa8, 0xbb, 0x65, 0xc7, 0xd8, 0xc1, 0xba, 0x4d, 0x4d, 0x33, 0x7c, 0xe6, 0xe8, - 0x6c, 0x1b, 0xff, 0x98, 0x25, 0x5d, 0x57, 0x78, 0xf0, 0xb3, 0xdf, 0x9e, 0xbe, 0xbf, 0xb7, 0x15, - 0x28, 0x32, 0x49, 0xae, 0x77, 0xd7, 0x29, 0x63, 0x74, 0x19, 0xd8, 0x25, 0x8b, 0x72, 0x5d, 0xb3, - 0x1d, 0x7e, 0x4f, 0xfb, 0xec, 0x6c, 0x7b, 0xdd, 0x67, 0x5b, 0xc5, 0x9c, 0xbd, 0xac, 0xd6, 0xb5, - 0xaa, 0xea, 0x18, 0x96, 0x7d, 0x71, 0x40, 0x49, 0x52, 0x56, 0x8b, 0x9a, 0xed, 0xa0, 0x75, 0x48, - 0x56, 0xb1, 0xbe, 0xc7, 0xd8, 0x46, 0xdf, 0x18, 0xdb, 0x04, 0xe1, 0x44, 0xb9, 0x3e, 0x0f, 0x48, - 0xf5, 0xe3, 0x89, 0x87, 0x49, 0xec, 0x7e, 0x65, 0x07, 0xf6, 0x01, 0xce, 0xf4, 0x1d, 0xc5, 0xb8, - 0x1a, 0x06, 0x65, 0xef, 0x03, 0xf0, 0xda, 0x44, 0x19, 0x18, 0x52, 0xab, 0x55, 0x0b, 0xdb, 0x36, - 0x3d, 0x00, 0x4c, 0x2a, 0xa2, 0x98, 0x1b, 0xff, 0xd7, 0x5f, 0x7a, 0x78, 0x24, 0xc0, 0xb1, 0x90, - 0x02, 0xb8, 0xe2, 0x92, 0x9e, 0xfa, 0xa4, 0x04, 0xe3, 0x2d, 0x2d, 0x22, 0x19, 0xa6, 0xf2, 0x1b, - 0xeb, 0x17, 0x57, 0x94, 0x85, 0x17, 0xf2, 0xeb, 0x0b, 0x2b, 0xcb, 0x65, 0x76, 0xe5, 0x7f, 0x79, - 0x6d, 0xb5, 0x34, 0xb7, 0x70, 0x61, 0xa1, 0x54, 0x4c, 0x0f, 0xa0, 0x69, 0x38, 0xd6, 0x06, 0xa7, - 0x58, 0x5a, 0x2c, 0xcd, 0xe7, 0xd7, 0x4b, 0x69, 0x09, 0xdd, 0x05, 0x27, 0xda, 0x32, 0x71, 0x51, - 0x22, 0x1d, 0x50, 0x94, 0x92, 0x8b, 0x12, 0x2d, 0x5c, 0xe8, 0x38, 0x8a, 0x1e, 0xea, 0xea, 0x3f, - 0xbb, 0xee, 0x70, 0x09, 0x8e, 0xa7, 0x77, 0x47, 0xe0, 0x68, 0x78, 0xca, 0x50, 0xf5, 0xbd, 0x0e, - 0xaf, 0x3e, 0x3b, 0x44, 0xb3, 0x8b, 0x10, 0xcd, 0xeb, 0x7b, 0xe8, 0x28, 0xcb, 0xa7, 0xcb, 0x4d, - 0xab, 0xce, 0x63, 0xd0, 0x10, 0x29, 0x6f, 0x58, 0x75, 0x12, 0x9b, 0xc4, 0x45, 0x7f, 0xe9, 0x64, - 0x8a, 0xdf, 0xde, 0xcf, 0xa5, 0x3f, 0xfa, 0xea, 0xf4, 0xc0, 0xe7, 0x5f, 0x9d, 0x1e, 0xf8, 0xc1, - 0xa7, 0xa6, 0x07, 0x5e, 0xfe, 0x83, 0x99, 0x81, 0xc2, 0x4e, 0x58, 0xbd, 0xaf, 0xf4, 0x9c, 0x4d, - 0x13, 0x79, 0x7d, 0x8f, 0x06, 0xa2, 0x55, 0xe9, 0x85, 0x38, 0x55, 0x4e, 0x1c, 0xa0, 0x4e, 0x85, - 0x0f, 0x50, 0x9f, 0xc3, 0xf5, 0xfa, 0x25, 0xdd, 0xb8, 0x4a, 0x7b, 0xd5, 0xb3, 0xc1, 0x47, 0x22, - 0x30, 0xd5, 0x32, 0x6d, 0xf2, 0x0c, 0xa3, 0xd3, 0xf3, 0xd7, 0x1c, 0x24, 0x8a, 0x22, 0x71, 0xc9, - 0xc0, 0x90, 0x8d, 0x2b, 0x86, 0x5e, 0x65, 0x23, 0x3d, 0xaa, 0x88, 0x22, 0x51, 0x5b, 0x57, 0x75, - 0xc3, 0xe6, 0x77, 0xee, 0x59, 0xa1, 0xf0, 0x71, 0x69, 0x7f, 0xf9, 0xc2, 0x88, 0x68, 0x49, 0xa8, - 0xf9, 0x68, 0xcf, 0x23, 0xe5, 0x1d, 0xa2, 0xa5, 0xab, 0x44, 0xe0, 0x58, 0xb9, 0x5f, 0xab, 0xfc, - 0x62, 0x04, 0xa6, 0xc3, 0x56, 0x21, 0x69, 0x9b, 0xed, 0xa8, 0x0d, 0xb3, 0x93, 0x59, 0xce, 0x43, - 0x72, 0x5d, 0xe0, 0xec, 0xdb, 0x2e, 0x37, 0xf6, 0x69, 0x97, 0x51, 0xb7, 0x29, 0x61, 0x98, 0x33, - 0x7d, 0x1a, 0xc6, 0xd5, 0xe3, 0x40, 0x96, 0xf9, 0x6c, 0x0c, 0x4e, 0xd0, 0x47, 0x59, 0x56, 0x43, - 0xd3, 0x9d, 0xd3, 0x15, 0x6b, 0xcf, 0x74, 0x68, 0xe2, 0x66, 0x6c, 0x71, 0xbb, 0x8c, 0x7b, 0xd5, - 0xb3, 0xac, 0xba, 0xc3, 0xc8, 0xd9, 0x82, 0xf8, 0x2a, 0xa1, 0x23, 0x16, 0x71, 0x0c, 0x47, 0xad, - 0x73, 0x4b, 0xb1, 0x02, 0x81, 0xb2, 0x87, 0x5c, 0x11, 0x06, 0xd5, 0xc4, 0x1b, 0xae, 0x3a, 0x56, - 0xb7, 0xd8, 0x7d, 0xf8, 0x28, 0x1d, 0x50, 0x09, 0x02, 0xa0, 0x57, 0xdf, 0x27, 0x21, 0xae, 0x36, - 0xd9, 0x55, 0x8e, 0x28, 0x19, 0x69, 0xb4, 0x20, 0x5f, 0x82, 0x21, 0x7e, 0xa0, 0x8c, 0xd2, 0x10, - 0xdd, 0xc1, 0x7b, 0xb4, 0x9d, 0x94, 0x42, 0x7e, 0xa2, 0x59, 0x88, 0x53, 0xe1, 0xf9, 0x04, 0x92, - 0x99, 0x6d, 0x91, 0x7e, 0x96, 0x0a, 0xa9, 0x30, 0x34, 0xf9, 0x19, 0x48, 0x14, 0x8d, 0x86, 0xa6, - 0x1b, 0x41, 0x6e, 0x49, 0xc6, 0x8d, 0xca, 0x6c, 0x36, 0x79, 0xbe, 0xa1, 0xb0, 0x02, 0x3a, 0x0c, - 0x83, 0xec, 0x7d, 0x04, 0xbf, 0x8e, 0xc2, 0x4b, 0xf2, 0x1c, 0x0c, 0x51, 0xde, 0x2b, 0x26, 0x42, - 0xfc, 0x65, 0x1d, 0x7f, 0x88, 0x41, 0x53, 0x53, 0xce, 0x3e, 0xe2, 0x09, 0x8b, 0x20, 0x56, 0x55, - 0x1d, 0x95, 0xeb, 0x4d, 0x7f, 0xcb, 0x6f, 0x86, 0x04, 0x67, 0x62, 0xa3, 0x33, 0x10, 0x35, 0x4c, - 0x9b, 0x5f, 0x28, 0xc9, 0x76, 0x52, 0x65, 0xc5, 0x2c, 0xc4, 0x48, 0xa6, 0xa2, 0x10, 0xe4, 0x82, - 0xd2, 0x31, 0xa8, 0x3e, 0xe9, 0x0b, 0xaa, 0xbe, 0x2e, 0xf7, 0xfd, 0x64, 0x5d, 0xda, 0xe2, 0x0e, - 0xae, 0xb3, 0x7c, 0x2a, 0x02, 0x53, 0xbe, 0xda, 0x2b, 0xd8, 0xb2, 0x35, 0x43, 0xe7, 0xf3, 0x39, - 0xf3, 0x16, 0xe4, 0x13, 0x92, 0xd7, 0x77, 0x70, 0x97, 0x37, 0x41, 0x34, 0x6f, 0x9a, 0x28, 0x0b, - 0x09, 0x5a, 0xae, 0x18, 0xcc, 0x5f, 0x62, 0x8a, 0x5b, 0x26, 0x75, 0xb6, 0xb1, 0xe5, 0x5c, 0x55, - 0x2d, 0xf7, 0x09, 0xa1, 0x28, 0xcb, 0x4f, 0x41, 0x72, 0xce, 0xd0, 0x6d, 0xac, 0xdb, 0x4d, 0x3a, - 0x06, 0x37, 0xeb, 0x46, 0x65, 0x87, 0x73, 0x60, 0x05, 0x62, 0x70, 0xd5, 0x34, 0x29, 0x65, 0x4c, - 0x21, 0x3f, 0x59, 0x6e, 0x58, 0x58, 0xeb, 0x68, 0xa2, 0xa7, 0xf6, 0x6f, 0x22, 0xae, 0xa4, 0x6b, - 0xa3, 0xff, 0x2d, 0xc1, 0xf1, 0xd6, 0x01, 0xb5, 0x83, 0xf7, 0xec, 0xfd, 0x8e, 0xa7, 0xe7, 0x21, - 0xb9, 0x4a, 0xdf, 0xf1, 0x5f, 0xc2, 0x7b, 0x28, 0x0b, 0x43, 0xb8, 0x7a, 0xe6, 0xec, 0xd9, 0x47, - 0x9f, 0x62, 0xde, 0x7e, 0x71, 0x40, 0x11, 0x00, 0x34, 0x05, 0x49, 0x1b, 0x57, 0xcc, 0x33, 0x67, - 0xcf, 0xed, 0x3c, 0xca, 0xdc, 0x8b, 0x64, 0x40, 0x2e, 0x28, 0x97, 0x20, 0x5a, 0xbf, 0xfe, 0xa9, - 0x69, 0xa9, 0x10, 0x87, 0xa8, 0xdd, 0x6c, 0xdc, 0x51, 0x1f, 0x79, 0x25, 0x0e, 0x33, 0x7e, 0x4a, - 0x1a, 0xa9, 0xdc, 0xac, 0x84, 0xdb, 0x20, 0xed, 0xb3, 0x01, 0xc5, 0xe8, 0x90, 0xcc, 0x76, 0xb5, - 0xa4, 0xfc, 0xeb, 0x12, 0xa4, 0xdc, 0x54, 0x69, 0x0d, 0x3b, 0xe8, 0xbc, 0x3f, 0xff, 0xe1, 0xc3, - 0xe6, 0xd8, 0x6c, 0xb8, 0x2d, 0x2f, 0xa5, 0x53, 0x7c, 0xe8, 0xe8, 0x09, 0xea, 0x88, 0xa6, 0x61, - 0xf3, 0x67, 0x65, 0x3d, 0x48, 0x5d, 0x64, 0xf4, 0x10, 0x20, 0x1a, 0xe1, 0xca, 0x57, 0x0c, 0x47, - 0xd3, 0x6b, 0x65, 0xd3, 0xb8, 0xca, 0x1f, 0xeb, 0x46, 0x95, 0x34, 0xad, 0xb9, 0x4c, 0x2b, 0x56, - 0x09, 0x9c, 0x08, 0x9d, 0x74, 0xb9, 0x04, 0xd3, 0x3b, 0x12, 0x04, 0x44, 0x11, 0x9d, 0x87, 0x21, - 0xb3, 0xb9, 0x59, 0x16, 0x11, 0x63, 0xf8, 0xcc, 0xf1, 0x76, 0xe3, 0x5f, 0xf8, 0x07, 0x8f, 0x00, - 0x83, 0x66, 0x73, 0x93, 0x78, 0xcb, 0x5d, 0x90, 0x6a, 0x23, 0xcc, 0xf0, 0x15, 0x4f, 0x0e, 0xfa, - 0xf9, 0x08, 0xae, 0x41, 0xd9, 0xb4, 0x34, 0xc3, 0xd2, 0x9c, 0x3d, 0x9a, 0xbf, 0x46, 0x95, 0xb4, - 0xa8, 0x58, 0xe5, 0x70, 0x79, 0x07, 0xc6, 0xd6, 0xe8, 0xfa, 0xd6, 0x93, 0xfc, 0xac, 0x27, 0x9f, - 0xd4, 0x5b, 0xbe, 0x8e, 0x92, 0x45, 0x5a, 0x24, 0x2b, 0x3c, 0xdb, 0xd1, 0x3b, 0x9f, 0xd8, 0xbf, - 0x77, 0x06, 0x33, 0xc4, 0x3f, 0x3e, 0x1a, 0x18, 0x9c, 0xcc, 0x39, 0xfd, 0xe1, 0xab, 0x5f, 0xc7, - 0xec, 0x95, 0x4d, 0x64, 0xbb, 0x4f, 0xaa, 0xd9, 0x1e, 0x61, 0x34, 0xdb, 0x73, 0x08, 0xc9, 0x4f, - 0xc1, 0xc8, 0xaa, 0x6a, 0x39, 0x6b, 0xd8, 0xb9, 0x88, 0xd5, 0x2a, 0xb6, 0x82, 0xb3, 0xee, 0x88, - 0x98, 0x75, 0x11, 0xc4, 0xe8, 0xd4, 0xca, 0x66, 0x1d, 0xfa, 0x5b, 0xde, 0x86, 0x18, 0xbd, 0x19, - 0xea, 0xce, 0xc8, 0x9c, 0x82, 0xcd, 0xc8, 0x24, 0x96, 0xee, 0x39, 0xd8, 0x16, 0xe9, 0x2d, 0x2d, - 0xa0, 0xc7, 0xc5, 0xbc, 0x1a, 0xed, 0x3e, 0xaf, 0x72, 0x47, 0xe4, 0xb3, 0x6b, 0x1d, 0x86, 0x0a, - 0x24, 0x14, 0x2f, 0x14, 0x5d, 0x41, 0x24, 0x4f, 0x10, 0xb4, 0x04, 0x63, 0xa6, 0x6a, 0x39, 0xf4, - 0x49, 0xcc, 0x36, 0xd5, 0x82, 0xfb, 0xfa, 0x74, 0xeb, 0xc8, 0x0b, 0x28, 0xcb, 0x5b, 0x19, 0x31, - 0xfd, 0x40, 0xf9, 0x8f, 0x62, 0x30, 0xc8, 0x8d, 0xf1, 0x26, 0x18, 0xe2, 0x66, 0xe5, 0xde, 0x79, - 0x62, 0xb6, 0x75, 0x62, 0x9a, 0x75, 0x27, 0x10, 0xce, 0x4f, 0xd0, 0xa0, 0xfb, 0x20, 0x51, 0xd9, - 0x56, 0x35, 0xbd, 0xac, 0x55, 0xc5, 0x56, 0xc3, 0x6b, 0x37, 0xa7, 0x87, 0xe6, 0x08, 0x6c, 0xa1, - 0xa8, 0x0c, 0xd1, 0xca, 0x85, 0x2a, 0xc9, 0x04, 0xb6, 0xb1, 0x56, 0xdb, 0x76, 0xf8, 0x08, 0xe3, - 0x25, 0xf4, 0x24, 0xc4, 0x88, 0x43, 0xf0, 0x07, 0x93, 0xd9, 0x96, 0x0d, 0x1f, 0x37, 0xd9, 0x2b, - 0x24, 0x48, 0xc3, 0x1f, 0xfa, 0xf6, 0xb4, 0xa4, 0x50, 0x0a, 0x34, 0x07, 0x23, 0x75, 0xd5, 0x76, - 0xca, 0x74, 0x06, 0x23, 0xcd, 0xc7, 0xf9, 0x7a, 0xbb, 0xc5, 0x20, 0xdc, 0xb0, 0x5c, 0xf4, 0x61, - 0x42, 0xc5, 0x40, 0x55, 0x74, 0x12, 0xd2, 0x94, 0x49, 0xc5, 0x68, 0x34, 0x34, 0x87, 0xe5, 0x56, - 0x83, 0xd4, 0xee, 0xa3, 0x04, 0x3e, 0x47, 0xc1, 0x34, 0xc3, 0x3a, 0x06, 0x49, 0xfa, 0x44, 0x8b, - 0xa2, 0xb0, 0xeb, 0xc8, 0x09, 0x02, 0xa0, 0x95, 0xf7, 0xc3, 0x98, 0x17, 0x1f, 0x19, 0x4a, 0x82, - 0x71, 0xf1, 0xc0, 0x14, 0xf1, 0x11, 0x98, 0xd4, 0xf1, 0x2e, 0xbd, 0x20, 0x1d, 0xc0, 0x4e, 0x52, - 0x6c, 0x44, 0xea, 0x2e, 0x07, 0x29, 0xee, 0x85, 0xd1, 0x8a, 0x30, 0x3e, 0xc3, 0x05, 0x8a, 0x3b, - 0xe2, 0x42, 0x29, 0xda, 0x51, 0x48, 0xa8, 0xa6, 0xc9, 0x10, 0x86, 0x79, 0x7c, 0x34, 0x4d, 0x5a, - 0x75, 0x0a, 0xc6, 0xa9, 0x8e, 0x16, 0xb6, 0x9b, 0x75, 0x87, 0x33, 0x49, 0x51, 0x9c, 0x31, 0x52, - 0xa1, 0x30, 0x38, 0xc5, 0xbd, 0x1b, 0x46, 0xf0, 0x15, 0xad, 0x8a, 0xf5, 0x0a, 0x66, 0x78, 0x23, - 0x14, 0x2f, 0x25, 0x80, 0x14, 0xe9, 0x01, 0x70, 0xe3, 0x5e, 0x59, 0xc4, 0xe4, 0x51, 0xc6, 0x4f, - 0xc0, 0xf3, 0x0c, 0x2c, 0x67, 0x20, 0x56, 0x54, 0x1d, 0x95, 0x24, 0x18, 0xce, 0x2e, 0x9b, 0x68, - 0x52, 0x0a, 0xf9, 0x29, 0xbf, 0x1e, 0x81, 0xd8, 0x65, 0xc3, 0xc1, 0xe8, 0x31, 0x5f, 0x02, 0x38, - 0xda, 0xce, 0x9f, 0xd7, 0xb4, 0x9a, 0x8e, 0xab, 0x4b, 0x76, 0xcd, 0xf7, 0x3d, 0x05, 0xcf, 0x9d, - 0x22, 0x01, 0x77, 0x9a, 0x84, 0xb8, 0x65, 0x34, 0xf5, 0xaa, 0xb8, 0xc9, 0x4b, 0x0b, 0xa8, 0x04, - 0x09, 0xd7, 0x4b, 0x62, 0xbd, 0xbc, 0x64, 0x8c, 0x78, 0x09, 0xf1, 0x61, 0x0e, 0x50, 0x86, 0x36, - 0xb9, 0xb3, 0x14, 0x20, 0xe9, 0x06, 0x2f, 0xee, 0x6d, 0xfd, 0x39, 0xac, 0x47, 0x46, 0x26, 0x13, - 0xb7, 0xef, 0x5d, 0xe3, 0x31, 0x8f, 0x4b, 0xbb, 0x15, 0xdc, 0x7a, 0x01, 0xb7, 0xe2, 0xdf, 0x76, - 0x18, 0xa2, 0x7a, 0x79, 0x6e, 0xc5, 0xbe, 0xef, 0x70, 0x1c, 0x92, 0xb6, 0x56, 0xd3, 0x55, 0xa7, - 0x69, 0x61, 0xee, 0x79, 0x1e, 0x40, 0xfe, 0x8a, 0x04, 0x83, 0xcc, 0x93, 0x7d, 0x76, 0x93, 0xda, - 0xdb, 0x2d, 0xd2, 0xc9, 0x6e, 0xd1, 0x83, 0xdb, 0x2d, 0x0f, 0xe0, 0x0a, 0x63, 0xf3, 0x27, 0xf7, - 0x6d, 0x32, 0x06, 0x26, 0xe2, 0x9a, 0x56, 0xe3, 0x03, 0xd5, 0x47, 0x24, 0xff, 0x07, 0x89, 0x24, - 0xb1, 0xbc, 0x1e, 0xe5, 0x61, 0x44, 0xc8, 0x55, 0xde, 0xaa, 0xab, 0x35, 0xee, 0x3b, 0x27, 0x3a, - 0x0a, 0x77, 0xa1, 0xae, 0xd6, 0x94, 0x61, 0x2e, 0x0f, 0x29, 0xb4, 0xef, 0x87, 0x48, 0x87, 0x7e, - 0x08, 0x74, 0x7c, 0xf4, 0x60, 0x1d, 0x1f, 0xe8, 0xa2, 0x58, 0xb8, 0x8b, 0xbe, 0x18, 0xa1, 0x8b, - 0x19, 0xd3, 0xb0, 0xd5, 0xfa, 0x8f, 0x63, 0x44, 0x1c, 0x83, 0xa4, 0x69, 0xd4, 0xcb, 0xac, 0x86, - 0xdd, 0x70, 0x4f, 0x98, 0x46, 0x5d, 0x69, 0xe9, 0xf6, 0xf8, 0x6d, 0x1a, 0x2e, 0x83, 0xb7, 0xc1, - 0x6a, 0x43, 0x61, 0xab, 0x59, 0x90, 0x62, 0xa6, 0xe0, 0x73, 0xd9, 0x23, 0xc4, 0x06, 0x74, 0x72, - 0x94, 0x5a, 0xe7, 0x5e, 0x26, 0x36, 0xc3, 0x54, 0x38, 0x1e, 0xa1, 0x60, 0xa1, 0xbf, 0xdd, 0x2a, - 0xd8, 0xef, 0x96, 0x0a, 0xc7, 0x93, 0xff, 0xa6, 0x04, 0xb0, 0x48, 0x2c, 0x4b, 0xf5, 0x25, 0xb3, - 0x90, 0x4d, 0x45, 0x28, 0x07, 0x5a, 0x9e, 0xea, 0xd4, 0x69, 0xbc, 0xfd, 0x94, 0xed, 0x97, 0x7b, - 0x0e, 0x46, 0x3c, 0x67, 0xb4, 0xb1, 0x10, 0x66, 0xaa, 0x4b, 0x56, 0xbd, 0x86, 0x1d, 0x25, 0x75, - 0xc5, 0x57, 0x92, 0xff, 0xb9, 0x04, 0x49, 0x2a, 0xd3, 0x12, 0x76, 0xd4, 0x40, 0x1f, 0x4a, 0x07, - 0xef, 0xc3, 0x13, 0x00, 0x8c, 0x8d, 0xad, 0x5d, 0xc3, 0xdc, 0xb3, 0x92, 0x14, 0xb2, 0xa6, 0x5d, - 0xc3, 0xe8, 0x9c, 0x6b, 0xf0, 0x68, 0x77, 0x83, 0x8b, 0xac, 0x9b, 0x9b, 0xfd, 0x08, 0x0c, 0xd1, - 0x4f, 0x54, 0xed, 0xda, 0x3c, 0x91, 0x1e, 0xd4, 0x9b, 0x8d, 0xf5, 0x5d, 0x5b, 0x7e, 0x11, 0x86, - 0xd6, 0x77, 0xd9, 0xde, 0xc8, 0x31, 0x48, 0x5a, 0x86, 0xc1, 0xe7, 0x64, 0x96, 0x0b, 0x25, 0x08, - 0x80, 0x4e, 0x41, 0x62, 0x3f, 0x20, 0xe2, 0xed, 0x07, 0x78, 0x1b, 0x1a, 0xd1, 0xbe, 0x36, 0x34, - 0x4e, 0xfd, 0x3b, 0x09, 0x86, 0x7d, 0xf1, 0x01, 0x3d, 0x0a, 0x87, 0x0a, 0x8b, 0x2b, 0x73, 0x97, - 0xca, 0x0b, 0xc5, 0xf2, 0x85, 0xc5, 0xfc, 0xbc, 0xf7, 0x86, 0x2b, 0x7b, 0xf8, 0xfa, 0x8d, 0x19, - 0xe4, 0xc3, 0xdd, 0xd0, 0xe9, 0x8e, 0x12, 0x3a, 0x0d, 0x93, 0x41, 0x92, 0x7c, 0x61, 0xad, 0xb4, - 0xbc, 0x9e, 0x96, 0xb2, 0x87, 0xae, 0xdf, 0x98, 0x19, 0xf7, 0x51, 0xe4, 0x37, 0x6d, 0xac, 0x3b, - 0xad, 0x04, 0x73, 0x2b, 0x4b, 0x4b, 0x0b, 0xeb, 0xe9, 0x48, 0x0b, 0x01, 0x0f, 0xd8, 0x0f, 0xc0, - 0x78, 0x90, 0x60, 0x79, 0x61, 0x31, 0x1d, 0xcd, 0xa2, 0xeb, 0x37, 0x66, 0x46, 0x7d, 0xd8, 0xcb, - 0x5a, 0x3d, 0x9b, 0xf8, 0xc0, 0xa7, 0xa7, 0x06, 0x7e, 0xe5, 0x97, 0xa7, 0x24, 0xa2, 0xd9, 0x48, - 0x20, 0x46, 0xa0, 0x87, 0xe0, 0xc8, 0xda, 0xc2, 0xfc, 0x72, 0xa9, 0x58, 0x5e, 0x5a, 0x9b, 0x17, - 0x7b, 0xd0, 0x42, 0xbb, 0xb1, 0xeb, 0x37, 0x66, 0x86, 0xb9, 0x4a, 0x9d, 0xb0, 0x57, 0x95, 0xd2, - 0xe5, 0x95, 0xf5, 0x52, 0x5a, 0x62, 0xd8, 0xab, 0x16, 0xbe, 0x62, 0x38, 0xec, 0x1b, 0x76, 0x8f, - 0xc0, 0xd1, 0x36, 0xd8, 0xae, 0x62, 0xe3, 0xd7, 0x6f, 0xcc, 0x8c, 0xac, 0x5a, 0x98, 0x8d, 0x1f, - 0x4a, 0x31, 0x0b, 0x99, 0x56, 0x8a, 0x95, 0xd5, 0x95, 0xb5, 0xfc, 0x62, 0x7a, 0x26, 0x9b, 0xbe, - 0x7e, 0x63, 0x26, 0x25, 0x82, 0x21, 0xdd, 0xe8, 0x77, 0x35, 0xbb, 0x93, 0x2b, 0x9e, 0x3f, 0x7d, - 0x18, 0xee, 0xe9, 0x70, 0xc6, 0x24, 0x4e, 0x27, 0x0e, 0x74, 0xca, 0xd4, 0x71, 0x9f, 0x3d, 0xdb, - 0x63, 0xfb, 0xb9, 0xf7, 0xd2, 0xe9, 0xe0, 0x27, 0x58, 0xd9, 0xae, 0x8b, 0x3b, 0xf9, 0x83, 0x12, - 0x8c, 0x5e, 0xd4, 0x6c, 0xc7, 0xb0, 0xb4, 0x8a, 0x5a, 0xa7, 0x2f, 0xb7, 0xce, 0xf5, 0x1b, 0x5b, - 0x43, 0x43, 0xfd, 0x69, 0x18, 0xbc, 0xa2, 0xd6, 0x59, 0x50, 0x8b, 0xd2, 0x0f, 0xcd, 0x74, 0x38, - 0xf2, 0x71, 0x43, 0x9b, 0x60, 0xc0, 0xc8, 0xe4, 0x5f, 0x8b, 0xc0, 0x18, 0x1d, 0x0c, 0x36, 0xfb, - 0x04, 0x19, 0x59, 0x63, 0x15, 0x20, 0x66, 0xa9, 0x0e, 0xdf, 0x34, 0x2c, 0xcc, 0xf2, 0xd3, 0xc7, - 0xfb, 0xfa, 0x38, 0x4b, 0x2b, 0xe2, 0x8a, 0x42, 0x69, 0xd1, 0xdb, 0x21, 0xd1, 0x50, 0x77, 0xcb, - 0x94, 0x0f, 0x5b, 0xb9, 0xe4, 0xf7, 0xc7, 0xe7, 0xd6, 0xcd, 0xe9, 0xb1, 0x3d, 0xb5, 0x51, 0xcf, - 0xc9, 0x82, 0x8f, 0xac, 0x0c, 0x35, 0xd4, 0x5d, 0x22, 0x22, 0x32, 0x61, 0x8c, 0x40, 0x2b, 0xdb, - 0xaa, 0x5e, 0xc3, 0xac, 0x11, 0xba, 0x05, 0x5a, 0xb8, 0xb8, 0xef, 0x46, 0x0e, 0x7b, 0x8d, 0xf8, - 0xd8, 0xc9, 0xca, 0x48, 0x43, 0xdd, 0x9d, 0xa3, 0x00, 0xd2, 0x62, 0x2e, 0xf1, 0xd1, 0x57, 0xa7, - 0x07, 0xe8, 0x89, 0xee, 0xb7, 0x24, 0x00, 0xcf, 0x62, 0xe8, 0xed, 0x90, 0xae, 0xb8, 0x25, 0x4a, - 0x2b, 0xce, 0x26, 0xef, 0xef, 0xd4, 0x17, 0x21, 0x7b, 0xb3, 0xb9, 0xf9, 0x9b, 0x37, 0xa7, 0x25, - 0x65, 0xac, 0x12, 0xea, 0x8a, 0xb7, 0xc1, 0x70, 0xd3, 0xac, 0xaa, 0x0e, 0x2e, 0xd3, 0x75, 0x5c, - 0xa4, 0xe7, 0x3c, 0x3f, 0x45, 0x78, 0xdd, 0xba, 0x39, 0x8d, 0x98, 0x5a, 0x3e, 0x62, 0x99, 0xce, - 0xfe, 0xc0, 0x20, 0x84, 0xc0, 0xa7, 0xd3, 0xd7, 0x25, 0x18, 0x2e, 0xfa, 0xee, 0x54, 0x66, 0x60, - 0xa8, 0x61, 0xe8, 0xda, 0x0e, 0xf7, 0xc7, 0xa4, 0x22, 0x8a, 0x28, 0x0b, 0x09, 0xf6, 0x98, 0xd5, - 0xd9, 0x13, 0x5b, 0xa1, 0xa2, 0x4c, 0xa8, 0xae, 0xe2, 0x4d, 0x5b, 0x13, 0xbd, 0xa1, 0x88, 0x22, - 0xba, 0x00, 0x69, 0x1b, 0x57, 0x9a, 0x96, 0xe6, 0xec, 0x95, 0x2b, 0x86, 0xee, 0xa8, 0x15, 0x87, - 0x3d, 0x8b, 0x2c, 0x1c, 0xbb, 0x75, 0x73, 0xfa, 0x08, 0x93, 0x35, 0x8c, 0x21, 0x2b, 0x63, 0x02, - 0x34, 0xc7, 0x20, 0xa4, 0x85, 0x2a, 0x76, 0x54, 0xad, 0x6e, 0x67, 0xd8, 0xe5, 0x04, 0x51, 0xf4, - 0xe9, 0xf2, 0xb9, 0x21, 0xff, 0xc6, 0xd6, 0x05, 0x48, 0x1b, 0x26, 0xb6, 0x02, 0x89, 0xa8, 0x14, - 0x6e, 0x39, 0x8c, 0x21, 0x2b, 0x63, 0x02, 0x24, 0x92, 0x54, 0x87, 0x74, 0xb3, 0x58, 0x28, 0x9a, - 0xcd, 0x4d, 0x6f, 0x3f, 0x6c, 0xb2, 0xa5, 0x37, 0xf2, 0xfa, 0x5e, 0xe1, 0x31, 0x8f, 0x7b, 0x98, - 0x4e, 0xfe, 0xc6, 0x97, 0x1e, 0x9e, 0xe4, 0xae, 0xe1, 0xed, 0x4f, 0x5d, 0xc2, 0x7b, 0xa4, 0xfb, - 0x39, 0xea, 0x2a, 0xc5, 0x24, 0x69, 0xe7, 0x8b, 0xaa, 0x56, 0x17, 0xcf, 0xfb, 0x15, 0x5e, 0x42, - 0x39, 0x18, 0xb4, 0x1d, 0xd5, 0x69, 0xda, 0xfc, 0xa4, 0x57, 0xee, 0xe4, 0x6a, 0x05, 0x43, 0xaf, - 0xae, 0x51, 0x4c, 0x85, 0x53, 0xa0, 0x0b, 0x30, 0xc8, 0x8f, 0xd0, 0xe3, 0xfb, 0x1e, 0xdf, 0xf4, - 0xae, 0x04, 0xa3, 0x26, 0x16, 0xa9, 0xe2, 0x3a, 0xae, 0xb1, 0xb4, 0x6a, 0x5b, 0x25, 0xab, 0x0f, - 0xfa, 0xed, 0xbd, 0xc2, 0xc2, 0xbe, 0x07, 0x21, 0xb7, 0x54, 0x98, 0x9f, 0xac, 0x8c, 0xb9, 0xa0, - 0x35, 0x0a, 0x41, 0x97, 0x02, 0x97, 0x7f, 0xf9, 0x07, 0x2a, 0xef, 0xee, 0xa4, 0xbe, 0xcf, 0xa7, - 0xc5, 0xfe, 0x84, 0xff, 0xea, 0xf0, 0x05, 0x48, 0x37, 0xf5, 0x4d, 0x43, 0xa7, 0x6f, 0x70, 0x79, - 0x7e, 0x4f, 0xd6, 0x77, 0x51, 0xbf, 0x73, 0x84, 0x31, 0x64, 0x65, 0xcc, 0x05, 0x5d, 0x64, 0xab, - 0x80, 0x2a, 0x8c, 0x7a, 0x58, 0x74, 0xa0, 0x26, 0x7b, 0x0e, 0xd4, 0xbb, 0xf8, 0x40, 0x3d, 0x14, - 0x6e, 0xc5, 0x1b, 0xab, 0x23, 0x2e, 0x90, 0x90, 0xa1, 0x8b, 0x00, 0x5e, 0x78, 0xa0, 0xfb, 0x14, - 0xc3, 0x9d, 0x3b, 0xde, 0x8b, 0x31, 0x62, 0xbd, 0xe7, 0xd1, 0xa2, 0x77, 0xc2, 0x44, 0x43, 0xd3, - 0xcb, 0x36, 0xae, 0x6f, 0x95, 0xb9, 0x81, 0x09, 0x4b, 0xfa, 0x09, 0xa5, 0xc2, 0xe2, 0xfe, 0xfc, - 0xe1, 0xd6, 0xcd, 0xe9, 0x2c, 0x0f, 0xa1, 0xad, 0x2c, 0x65, 0x65, 0xbc, 0xa1, 0xe9, 0x6b, 0xb8, - 0xbe, 0x55, 0x74, 0x61, 0xb9, 0xd4, 0x07, 0x5e, 0x9d, 0x1e, 0xe0, 0xc3, 0x75, 0x40, 0x3e, 0x47, - 0xf7, 0xce, 0xf9, 0x30, 0xc3, 0x36, 0x59, 0x93, 0xa8, 0xa2, 0xc0, 0xaf, 0x1a, 0x78, 0x00, 0x36, - 0xcc, 0x5f, 0xfe, 0x83, 0x19, 0x49, 0xfe, 0x9c, 0x04, 0x83, 0xc5, 0xcb, 0xab, 0xaa, 0x66, 0xa1, - 0x05, 0x18, 0xf7, 0x3c, 0x27, 0x38, 0xc8, 0x8f, 0xdf, 0xba, 0x39, 0x9d, 0x09, 0x3b, 0x97, 0x3b, - 0xca, 0x3d, 0x07, 0x16, 0xc3, 0x7c, 0xa1, 0xd3, 0xc2, 0x35, 0xc0, 0xaa, 0x05, 0x45, 0x6e, 0x5d, - 0xd6, 0x86, 0xd4, 0x2c, 0xc1, 0x10, 0x93, 0xd6, 0x46, 0x39, 0x88, 0x9b, 0xe4, 0x07, 0x3f, 0x18, - 0x98, 0xea, 0xe8, 0xbc, 0x14, 0xdf, 0xdd, 0xc8, 0x24, 0x24, 0xf2, 0x87, 0x23, 0x00, 0xc5, 0xcb, - 0x97, 0xd7, 0x2d, 0xcd, 0xac, 0x63, 0xe7, 0x76, 0x6a, 0xbe, 0x0e, 0x87, 0x7c, 0xab, 0x24, 0xab, - 0x12, 0xd2, 0x7e, 0xe6, 0xd6, 0xcd, 0xe9, 0xe3, 0x61, 0xed, 0x7d, 0x68, 0xb2, 0x32, 0xe1, 0xad, - 0x97, 0xac, 0x4a, 0x5b, 0xae, 0x55, 0xdb, 0x71, 0xb9, 0x46, 0x3b, 0x73, 0xf5, 0xa1, 0xf9, 0xb9, - 0x16, 0x6d, 0xa7, 0xbd, 0x69, 0xd7, 0x60, 0xd8, 0x33, 0x89, 0x8d, 0x8a, 0x90, 0x70, 0xf8, 0x6f, - 0x6e, 0x61, 0xb9, 0xb3, 0x85, 0x05, 0x19, 0xb7, 0xb2, 0x4b, 0x29, 0xff, 0x99, 0x04, 0xe0, 0xf9, - 0xec, 0x4f, 0xa7, 0x8b, 0x91, 0x50, 0xce, 0x03, 0x6f, 0xf4, 0x40, 0xa9, 0x1a, 0xa7, 0x0e, 0xd9, - 0xf3, 0xe7, 0x22, 0x30, 0xb1, 0x21, 0x22, 0xcf, 0x4f, 0xbd, 0x0d, 0x56, 0x61, 0x08, 0xeb, 0x8e, - 0xa5, 0x51, 0x23, 0x90, 0xde, 0x7e, 0xa4, 0x53, 0x6f, 0xb7, 0xd1, 0x89, 0x7e, 0x44, 0x4a, 0x6c, - 0xba, 0x73, 0x36, 0x21, 0x6b, 0xfc, 0x42, 0x14, 0x32, 0x9d, 0x28, 0xd1, 0x1c, 0x8c, 0x55, 0x2c, - 0xcc, 0x2e, 0x5e, 0xf9, 0x77, 0xfe, 0x0a, 0x59, 0x2f, 0xb3, 0x0c, 0x21, 0xc8, 0xca, 0xa8, 0x80, - 0xf0, 0xd9, 0xa3, 0x06, 0x24, 0xed, 0x23, 0x6e, 0x47, 0xef, 0x6f, 0xf5, 0x97, 0xe7, 0xc9, 0x7c, - 0xfa, 0x10, 0x8d, 0x04, 0x19, 0xb0, 0xf9, 0x63, 0xd4, 0x83, 0xd2, 0x09, 0xe4, 0x25, 0x18, 0xd3, - 0x74, 0xcd, 0xd1, 0xd4, 0x7a, 0x79, 0x53, 0xad, 0xab, 0x7a, 0xe5, 0x20, 0x59, 0x33, 0x0b, 0xf9, - 0xbc, 0xd9, 0x10, 0x3b, 0x59, 0x19, 0xe5, 0x90, 0x02, 0x03, 0xa0, 0x8b, 0x30, 0x24, 0x9a, 0x8a, - 0x1d, 0x28, 0xdb, 0x10, 0xe4, 0xbe, 0x04, 0xef, 0xe7, 0xa3, 0x30, 0xae, 0xe0, 0xea, 0xff, 0xef, - 0x8a, 0xfd, 0x75, 0xc5, 0x12, 0x00, 0x1b, 0xee, 0x24, 0xc0, 0x1e, 0xa0, 0x37, 0x48, 0xc0, 0x48, - 0x32, 0x0e, 0x45, 0xdb, 0xf1, 0xf5, 0xc7, 0xcd, 0x08, 0xa4, 0xfc, 0xfd, 0xf1, 0x17, 0x74, 0x56, - 0x42, 0x0b, 0x5e, 0x24, 0x8a, 0xf1, 0x4f, 0xef, 0x76, 0x88, 0x44, 0x2d, 0xde, 0xdb, 0x3d, 0x04, - 0xfd, 0x8f, 0x08, 0x0c, 0xae, 0xaa, 0x96, 0xda, 0xb0, 0x51, 0xa5, 0x25, 0xd3, 0x14, 0xdb, 0x8f, - 0x2d, 0x1f, 0x58, 0xe7, 0xbb, 0x1d, 0x3d, 0x12, 0xcd, 0x8f, 0xb6, 0x49, 0x34, 0xdf, 0x02, 0xa3, - 0x64, 0x39, 0xec, 0xbb, 0xc2, 0x40, 0xac, 0x3d, 0x52, 0x38, 0xea, 0x71, 0x09, 0xd6, 0xb3, 0xd5, - 0xf2, 0x65, 0xff, 0x1d, 0x86, 0x61, 0x82, 0xe1, 0x05, 0x66, 0x42, 0x7e, 0xd8, 0x5b, 0x96, 0xfa, - 0x2a, 0x65, 0x05, 0x1a, 0xea, 0x6e, 0x89, 0x15, 0xd0, 0x22, 0xa0, 0x6d, 0x77, 0x67, 0xa4, 0xec, - 0x99, 0x93, 0xd0, 0x9f, 0xb8, 0x75, 0x73, 0xfa, 0x28, 0xa3, 0x6f, 0xc5, 0x91, 0x95, 0x71, 0x0f, - 0x28, 0xb8, 0x3d, 0x0e, 0x40, 0xf4, 0x2a, 0xb3, 0x2b, 0xdc, 0x6c, 0xb9, 0x73, 0xe8, 0xd6, 0xcd, - 0xe9, 0x71, 0xc6, 0xc5, 0xab, 0x93, 0x95, 0x24, 0x29, 0x14, 0xc9, 0x6f, 0x9f, 0x67, 0x7f, 0x5a, - 0x02, 0xe4, 0x85, 0x7c, 0x05, 0xdb, 0x26, 0x59, 0x9f, 0x91, 0x44, 0xdc, 0x97, 0x35, 0x4b, 0xdd, - 0x13, 0x71, 0x8f, 0x5e, 0x24, 0xe2, 0xbe, 0x91, 0xf2, 0x94, 0x17, 0x1e, 0x23, 0xbd, 0xee, 0x33, - 0x73, 0x17, 0x09, 0xc7, 0xc3, 0x01, 0xf9, 0x5f, 0x4a, 0x70, 0xb4, 0xc5, 0xa3, 0x5c, 0x61, 0xff, - 0x12, 0x20, 0xcb, 0x57, 0xc9, 0xbf, 0xa3, 0xc8, 0x84, 0xde, 0xb7, 0x83, 0x8e, 0x5b, 0x2d, 0x71, - 0xf7, 0xf6, 0x45, 0x78, 0x76, 0x61, 0xfe, 0x9f, 0x49, 0x30, 0xe9, 0x6f, 0xde, 0x55, 0x64, 0x19, - 0x52, 0xfe, 0xd6, 0xb9, 0x0a, 0xf7, 0xf4, 0xa3, 0x02, 0x97, 0x3e, 0x40, 0x8f, 0x9e, 0xf5, 0x86, - 0x2b, 0xdb, 0x3b, 0x7b, 0xb4, 0x6f, 0x6b, 0x08, 0x99, 0xc2, 0xc3, 0x36, 0x46, 0xfb, 0xe3, 0xff, - 0x48, 0x10, 0x5b, 0x35, 0x8c, 0x3a, 0x32, 0x60, 0x5c, 0x37, 0x9c, 0x32, 0xf1, 0x2c, 0x5c, 0xf5, - 0xdf, 0x5b, 0x4f, 0x16, 0xe6, 0xf6, 0x67, 0xa4, 0xef, 0xdd, 0x9c, 0x6e, 0x65, 0xa5, 0x8c, 0xe9, - 0x86, 0x53, 0xa0, 0x10, 0x7e, 0x75, 0xfd, 0x9d, 0x30, 0x12, 0x6c, 0x8c, 0x45, 0xc9, 0xe7, 0xf6, - 0xdd, 0x58, 0x90, 0xcd, 0xad, 0x9b, 0xd3, 0x93, 0xde, 0x88, 0x71, 0xc1, 0xb2, 0x92, 0xda, 0xf4, - 0xb5, 0xce, 0xae, 0x77, 0xfd, 0xe0, 0xd5, 0x69, 0xe9, 0xd4, 0x97, 0x25, 0x00, 0x6f, 0xe7, 0x01, - 0x3d, 0x04, 0x47, 0x0a, 0x2b, 0xcb, 0xc5, 0xf2, 0xda, 0x7a, 0x7e, 0x7d, 0x63, 0x2d, 0x78, 0xc7, - 0x5b, 0x6c, 0x8f, 0xdb, 0x26, 0xae, 0x68, 0x5b, 0x1a, 0xae, 0xa2, 0xfb, 0x60, 0x32, 0x88, 0x4d, - 0x4a, 0xa5, 0x62, 0x5a, 0xca, 0xa6, 0xae, 0xdf, 0x98, 0x49, 0xb0, 0x5c, 0x0c, 0x57, 0xd1, 0x49, - 0x38, 0xd4, 0x8a, 0xb7, 0xb0, 0x3c, 0x9f, 0x8e, 0x64, 0x47, 0xae, 0xdf, 0x98, 0x49, 0xba, 0x49, - 0x1b, 0x92, 0x01, 0xf9, 0x31, 0x39, 0xbf, 0x68, 0x16, 0xae, 0xdf, 0x98, 0x19, 0x64, 0x06, 0xcc, - 0xc6, 0x3e, 0xf0, 0xe9, 0xa9, 0x81, 0xdb, 0x7e, 0x13, 0xfc, 0x4f, 0x86, 0x3a, 0xee, 0x7a, 0xd7, - 0xb0, 0x8e, 0x6d, 0xcd, 0x3e, 0xd0, 0xae, 0x77, 0x5f, 0x3b, 0xe9, 0xf2, 0xef, 0xc6, 0x21, 0x35, - 0xcf, 0x5a, 0x21, 0x1d, 0x81, 0xd1, 0xcf, 0xc0, 0xa0, 0x49, 0xa7, 0x11, 0xf7, 0x18, 0xad, 0x83, - 0xc3, 0xb3, 0xc9, 0xc6, 0xbd, 0xcb, 0xc5, 0xa6, 0x1e, 0x9b, 0x5f, 0xe6, 0x60, 0x77, 0xcc, 0xbc, - 0x5b, 0x53, 0xa9, 0x7d, 0xed, 0xf7, 0xb0, 0x9c, 0x85, 0x6f, 0xad, 0x84, 0xf9, 0xc9, 0xec, 0x5e, - 0xc8, 0x3a, 0x81, 0xb0, 0xdb, 0x61, 0xef, 0x93, 0xe0, 0x10, 0xc5, 0xf2, 0x26, 0x62, 0x8a, 0x29, - 0x92, 0xfd, 0x53, 0x9d, 0x54, 0x58, 0x54, 0x6d, 0xef, 0xae, 0x07, 0xbb, 0xcf, 0x75, 0x0f, 0x9f, - 0x08, 0x8f, 0xfb, 0x1a, 0x0f, 0xb3, 0x95, 0x95, 0x89, 0x7a, 0x0b, 0xa5, 0x8d, 0xe6, 0x03, 0x17, - 0xfa, 0x62, 0xfb, 0xdb, 0x6a, 0xf7, 0x5f, 0xee, 0x7b, 0x06, 0x86, 0xbd, 0x58, 0x62, 0xf3, 0xff, - 0xfb, 0xd2, 0xff, 0xdc, 0xe1, 0x27, 0x46, 0xef, 0x97, 0xe0, 0x90, 0x37, 0x9b, 0xfb, 0xd9, 0xb2, - 0xff, 0x8f, 0xf3, 0xe0, 0x3e, 0x16, 0x42, 0x61, 0xe3, 0xb4, 0xe5, 0x2b, 0x2b, 0x93, 0xcd, 0x56, - 0x52, 0xb2, 0x04, 0x1b, 0xf1, 0x47, 0x56, 0x3b, 0x23, 0x3e, 0x01, 0xd9, 0x7f, 0x68, 0x0e, 0x32, - 0x60, 0xff, 0xb3, 0xc3, 0x34, 0x2c, 0x07, 0x57, 0xe9, 0x86, 0x5c, 0x42, 0x71, 0xcb, 0xf2, 0x32, - 0xa0, 0xd6, 0xce, 0x0d, 0x5f, 0x60, 0xf4, 0xde, 0xa7, 0xa0, 0x49, 0x88, 0xfb, 0xaf, 0xf8, 0xb1, - 0x42, 0x2e, 0xf1, 0x01, 0x3e, 0x7d, 0xde, 0xf6, 0x31, 0xff, 0xed, 0x08, 0x9c, 0xf2, 0x1f, 0x0f, - 0xbd, 0xd4, 0xc4, 0xd6, 0x9e, 0x3b, 0x44, 0x4d, 0xb5, 0xa6, 0xe9, 0xfe, 0x57, 0x10, 0x47, 0xfd, - 0x13, 0x3e, 0xc5, 0x15, 0x76, 0x92, 0x3f, 0x20, 0xc1, 0xf0, 0xaa, 0x5a, 0xc3, 0x0a, 0x7e, 0xa9, - 0x89, 0x6d, 0xa7, 0xcd, 0x2d, 0xf3, 0xc3, 0x30, 0x68, 0x6c, 0x6d, 0x89, 0x33, 0xed, 0x98, 0xc2, - 0x4b, 0x44, 0xe7, 0xba, 0xd6, 0xd0, 0xd8, 0x75, 0xb0, 0x98, 0xc2, 0x0a, 0x68, 0x1a, 0x86, 0x2b, - 0x46, 0x53, 0xe7, 0x43, 0x2e, 0x13, 0x13, 0xdf, 0x5a, 0x69, 0xea, 0x6c, 0xc8, 0x11, 0x23, 0x5a, - 0xf8, 0x0a, 0xb6, 0x6c, 0xf6, 0x75, 0xc9, 0x84, 0x22, 0x8a, 0xf2, 0xd3, 0x90, 0x62, 0x92, 0xf0, - 0xc9, 0xf8, 0x28, 0x24, 0xe8, 0x4d, 0x2b, 0x4f, 0x9e, 0x21, 0x52, 0xbe, 0xc4, 0xee, 0xaa, 0x33, - 0xfe, 0x4c, 0x24, 0x56, 0x28, 0x14, 0x3a, 0x5a, 0xf9, 0x64, 0xef, 0xa8, 0xc1, 0x6c, 0xe8, 0x5a, - 0xf8, 0x37, 0xe3, 0x70, 0x88, 0x1f, 0xde, 0xa9, 0xa6, 0x76, 0x7a, 0xdb, 0x71, 0xc4, 0xdb, 0x09, - 0xe0, 0x59, 0xb0, 0x6a, 0x6a, 0xf2, 0x1e, 0xc4, 0x2e, 0x3a, 0x8e, 0x89, 0x4e, 0x41, 0xdc, 0x6a, - 0xd6, 0xb1, 0xd8, 0x0c, 0x72, 0xb7, 0xeb, 0x55, 0x53, 0x9b, 0x25, 0x08, 0x4a, 0xb3, 0x8e, 0x15, - 0x86, 0x82, 0x4a, 0x30, 0xbd, 0xd5, 0xac, 0xd7, 0xf7, 0xca, 0x55, 0x4c, 0xff, 0x5d, 0x96, 0xfb, - 0x0f, 0x27, 0xf0, 0xae, 0xa9, 0x8a, 0xcf, 0x56, 0x12, 0xc3, 0x1c, 0xa7, 0x68, 0x45, 0x8a, 0x25, - 0xfe, 0xd9, 0x44, 0x49, 0xe0, 0xc8, 0xbf, 0x1f, 0x81, 0x84, 0x60, 0x4d, 0x2f, 0x8f, 0xe3, 0x3a, - 0xae, 0x38, 0x86, 0x38, 0x4c, 0x71, 0xcb, 0x08, 0x41, 0xb4, 0xc6, 0x3b, 0x2f, 0x79, 0x71, 0x40, - 0x21, 0x05, 0x02, 0x73, 0xaf, 0xf4, 0x13, 0x98, 0xd9, 0x24, 0xfd, 0x19, 0x33, 0x0d, 0xb1, 0x6a, - 0xbb, 0x38, 0xa0, 0xd0, 0x12, 0xca, 0xc0, 0x20, 0x19, 0x34, 0x0e, 0xeb, 0x2d, 0x02, 0xe7, 0x65, - 0x74, 0x18, 0xe2, 0xa6, 0xea, 0x54, 0xd8, 0x6d, 0x3b, 0x52, 0xc1, 0x8a, 0xe8, 0x09, 0x18, 0x64, - 0xaf, 0xb2, 0xc3, 0xff, 0x8b, 0x86, 0x18, 0x83, 0x7d, 0xfe, 0x8e, 0xc8, 0xbd, 0xaa, 0x3a, 0x0e, - 0xb6, 0x74, 0xc2, 0x90, 0xa1, 0x23, 0x04, 0xb1, 0x4d, 0xa3, 0xba, 0xc7, 0xff, 0x3f, 0x0e, 0xfd, - 0xcd, 0xff, 0x21, 0x07, 0xf5, 0x87, 0x32, 0xad, 0x64, 0xff, 0x16, 0x2c, 0x25, 0x80, 0x05, 0x82, - 0x54, 0x82, 0x09, 0xb5, 0x5a, 0xd5, 0xd8, 0xbf, 0xaa, 0x29, 0x6f, 0x6a, 0x34, 0x78, 0xd8, 0xf4, - 0x9f, 0xbe, 0x75, 0xea, 0x0b, 0xe4, 0x11, 0x14, 0x38, 0x7e, 0x21, 0x09, 0x43, 0x26, 0x13, 0x4a, - 0x3e, 0x0f, 0xe3, 0x2d, 0x92, 0x12, 0xf9, 0x76, 0x34, 0xbd, 0x2a, 0xde, 0x39, 0x90, 0xdf, 0x04, - 0x46, 0x3f, 0x58, 0xc9, 0x8e, 0xa9, 0xe8, 0xef, 0xc2, 0x7b, 0x3a, 0x3f, 0x87, 0x19, 0xf5, 0x3d, - 0x87, 0x51, 0x4d, 0xad, 0x90, 0xa4, 0xfc, 0xf9, 0x23, 0x98, 0x7c, 0xeb, 0x23, 0x98, 0x1a, 0xd6, - 0xc5, 0xc4, 0x4c, 0xaa, 0x54, 0x53, 0xb3, 0xa9, 0x3b, 0x7a, 0x1f, 0xd0, 0xb4, 0xcf, 0xfb, 0x7e, - 0xd3, 0x37, 0x31, 0xb1, 0xf9, 0xfc, 0xea, 0x82, 0xeb, 0xc7, 0x5f, 0x8d, 0xc0, 0x71, 0x9f, 0x1f, - 0xfb, 0x90, 0x5b, 0xdd, 0x39, 0xdb, 0xde, 0xe3, 0xfb, 0x78, 0x9b, 0x7c, 0x09, 0x62, 0x04, 0x1f, - 0xf5, 0xf8, 0x77, 0x19, 0x99, 0xcf, 0x7f, 0xe3, 0x9f, 0xca, 0xc1, 0x03, 0xad, 0x40, 0xaf, 0x50, - 0x26, 0x85, 0xf7, 0xf7, 0x6f, 0xbf, 0xb4, 0xf7, 0xed, 0x50, 0xfb, 0xf6, 0x99, 0x31, 0x6c, 0xc3, - 0xef, 0x9e, 0xed, 0xf8, 0x76, 0x95, 0x05, 0xd3, 0xee, 0xf9, 0xd5, 0x3e, 0x22, 0x75, 0xa7, 0xa7, - 0x01, 0xdd, 0x7a, 0xb0, 0xcf, 0x4c, 0x6d, 0x17, 0x0e, 0x3f, 0x4b, 0xda, 0xf6, 0x56, 0xd0, 0x22, - 0xe4, 0x1f, 0x76, 0x0f, 0xfa, 0x24, 0xfe, 0x3f, 0xf7, 0xc4, 0x21, 0x1e, 0x78, 0xf2, 0xf1, 0xb5, - 0xe3, 0x7d, 0xb3, 0x1d, 0xa7, 0x92, 0x59, 0xdf, 0x34, 0xa2, 0xf8, 0x28, 0xe5, 0x5f, 0x95, 0xe0, - 0x48, 0x4b, 0xd3, 0x3c, 0xc6, 0xcf, 0xb7, 0x79, 0xc5, 0x70, 0xa0, 0xa4, 0x67, 0xbe, 0x8d, 0xb0, - 0xf7, 0xf7, 0x14, 0x96, 0x49, 0x11, 0x90, 0xf6, 0xcd, 0x70, 0x28, 0x28, 0xac, 0x30, 0xd3, 0xbd, - 0x30, 0x1a, 0xdc, 0x2c, 0xe6, 0xe6, 0x1a, 0x09, 0x6c, 0x17, 0xcb, 0xe5, 0xb0, 0x9d, 0x5d, 0x5d, - 0x4b, 0x90, 0x74, 0x51, 0x79, 0x76, 0xdc, 0xb7, 0xaa, 0x1e, 0xa5, 0xfc, 0x61, 0x09, 0x66, 0x82, - 0x2d, 0xf8, 0xf2, 0xa4, 0xfd, 0x09, 0x7b, 0xdb, 0xba, 0xf8, 0x75, 0x09, 0xee, 0xea, 0x22, 0x13, - 0x37, 0xc0, 0x35, 0x98, 0xf4, 0x6d, 0x12, 0x88, 0x10, 0x2e, 0xba, 0xfd, 0x54, 0xef, 0x0c, 0xd5, - 0x5d, 0x13, 0x1f, 0x23, 0x46, 0xf9, 0xec, 0xb7, 0xa7, 0x27, 0x5a, 0xeb, 0x6c, 0x65, 0xa2, 0x75, - 0x61, 0x7f, 0x1b, 0xfd, 0xe3, 0x15, 0x09, 0x1e, 0x08, 0xaa, 0xda, 0x26, 0xd5, 0xfd, 0x49, 0xf5, - 0xc3, 0xbf, 0x97, 0xe0, 0x54, 0x3f, 0xc2, 0xf1, 0x0e, 0xd9, 0x84, 0x09, 0x2f, 0x09, 0x0f, 0xf7, - 0xc7, 0xbe, 0x52, 0x7b, 0xe6, 0xa5, 0xc8, 0xe5, 0x76, 0x07, 0x0c, 0x6f, 0xf2, 0x81, 0xe5, 0xef, - 0x72, 0xd7, 0xc8, 0xc1, 0x8d, 0x5e, 0x61, 0xe4, 0xc0, 0x56, 0x6f, 0x9b, 0xbe, 0x88, 0xb4, 0xe9, - 0x0b, 0x2f, 0x6b, 0x97, 0xaf, 0xf0, 0xb8, 0xd5, 0x66, 0x7b, 0xee, 0x6d, 0x30, 0xd1, 0xc6, 0x95, - 0xf9, 0xa8, 0xde, 0x87, 0x27, 0x2b, 0xa8, 0xd5, 0x59, 0xe5, 0x3d, 0x98, 0xa6, 0xed, 0xb6, 0x31, - 0xf4, 0x9d, 0x56, 0xb9, 0xc1, 0x63, 0x4b, 0xdb, 0xa6, 0xb9, 0xee, 0x0b, 0x30, 0xc8, 0xfa, 0x99, - 0xab, 0x7b, 0x00, 0x47, 0xe1, 0x0c, 0xe4, 0x8f, 0x8b, 0x58, 0x56, 0x14, 0x62, 0xb7, 0x1f, 0x43, - 0xfd, 0xe8, 0x7a, 0x9b, 0xc6, 0x90, 0xcf, 0x18, 0xdf, 0x12, 0x51, 0xad, 0xbd, 0x74, 0xdc, 0x1c, - 0x95, 0xdb, 0x16, 0xd5, 0x98, 0x6d, 0xee, 0x6c, 0xf8, 0xfa, 0x65, 0x11, 0xbe, 0x5c, 0x9d, 0x7a, - 0x84, 0xaf, 0x9f, 0x8c, 0xe9, 0xdd, 0x40, 0xd6, 0x43, 0xcc, 0x3f, 0x8f, 0x81, 0xec, 0x07, 0x12, - 0x1c, 0xa5, 0xba, 0xf9, 0xf7, 0x28, 0xf6, 0x6b, 0xf2, 0x87, 0x00, 0xd9, 0x56, 0xa5, 0xdc, 0x76, - 0x74, 0xa7, 0x6d, 0xab, 0x72, 0x39, 0x30, 0xbf, 0x3c, 0x04, 0xa8, 0x1a, 0xd8, 0x89, 0xa2, 0xd8, - 0xec, 0x02, 0x5d, 0xba, 0xea, 0xdb, 0xe8, 0x68, 0xd3, 0x9d, 0xb1, 0xdb, 0xd0, 0x9d, 0xdf, 0x94, - 0x20, 0xdb, 0x4e, 0x65, 0xde, 0x7d, 0x1a, 0x1c, 0x0e, 0x9c, 0x1f, 0x84, 0x7b, 0xf0, 0xa1, 0x7e, - 0x76, 0x79, 0x42, 0xc3, 0xe8, 0x90, 0x85, 0xef, 0x74, 0x1e, 0x30, 0x1d, 0xf4, 0xd0, 0xd6, 0xcc, - 0xfa, 0x27, 0x36, 0x7c, 0xbe, 0xd4, 0x12, 0x57, 0xff, 0x5c, 0xe4, 0xde, 0xbb, 0x30, 0xd5, 0x41, - 0xea, 0x3b, 0x3d, 0xef, 0x6d, 0x77, 0xec, 0xcc, 0xdb, 0x9d, 0xbe, 0x3f, 0xce, 0x47, 0x42, 0xf0, - 0x72, 0xb6, 0x6f, 0x2d, 0xd6, 0xee, 0x75, 0x97, 0xfc, 0x56, 0x38, 0xd6, 0x96, 0x8a, 0xcb, 0x96, - 0x83, 0xd8, 0xb6, 0x66, 0x3b, 0x5c, 0xac, 0xfb, 0x3a, 0x89, 0x15, 0xa2, 0xa6, 0x34, 0x32, 0x82, - 0x34, 0x65, 0xbd, 0x6a, 0x18, 0x75, 0x2e, 0x86, 0x7c, 0x09, 0xc6, 0x7d, 0x30, 0xde, 0xc8, 0x39, - 0x88, 0x99, 0x06, 0xff, 0x72, 0xc1, 0xf0, 0x99, 0xe3, 0x1d, 0x37, 0xf6, 0x0d, 0xa3, 0xce, 0xd5, - 0xa6, 0xf8, 0xf2, 0x24, 0x20, 0xc6, 0x8c, 0xee, 0xf1, 0x8b, 0x26, 0xd6, 0x60, 0x22, 0x00, 0xe5, - 0x8d, 0xbc, 0xa1, 0xf3, 0x83, 0x33, 0xdf, 0x3b, 0x04, 0x71, 0xca, 0x15, 0x7d, 0x4c, 0x0a, 0x7c, - 0x5a, 0x68, 0xb6, 0x13, 0x9b, 0xf6, 0x6b, 0xe2, 0xec, 0xe9, 0xbe, 0xf1, 0x79, 0xce, 0x76, 0xea, - 0x3d, 0xff, 0xe6, 0xbb, 0x1f, 0x89, 0xdc, 0x83, 0xe4, 0xd3, 0x1d, 0x56, 0xe3, 0xbe, 0xf1, 0xf2, - 0x99, 0xc0, 0xb3, 0xf8, 0x87, 0xfb, 0x6b, 0x4a, 0x48, 0x36, 0xdb, 0x2f, 0x3a, 0x17, 0xec, 0x3c, - 0x15, 0xec, 0x2c, 0x7a, 0xac, 0xb7, 0x60, 0xa7, 0xdf, 0x11, 0x1c, 0x34, 0xef, 0x42, 0xbf, 0x2b, - 0xc1, 0x64, 0xbb, 0x25, 0x1d, 0x7a, 0xb2, 0x3f, 0x29, 0x5a, 0x53, 0x8a, 0xec, 0x53, 0x07, 0xa0, - 0xe4, 0xaa, 0xcc, 0x53, 0x55, 0xf2, 0xe8, 0xe9, 0x03, 0xa8, 0x72, 0xda, 0xbf, 0xf5, 0xff, 0xbf, - 0x24, 0x38, 0xd1, 0x75, 0x85, 0x84, 0xf2, 0xfd, 0x49, 0xd9, 0x25, 0x77, 0xca, 0x16, 0xde, 0x08, - 0x0b, 0xae, 0xf1, 0xb3, 0x54, 0xe3, 0x4b, 0x68, 0xe1, 0x20, 0x1a, 0xb7, 0x3d, 0x5f, 0x41, 0xbf, - 0x15, 0xbc, 0x74, 0xd8, 0xdd, 0x9d, 0x5a, 0x16, 0x1e, 0x3d, 0x06, 0x46, 0x6b, 0x52, 0x2b, 0x3f, - 0x4f, 0x55, 0x50, 0xd0, 0xea, 0x1b, 0xec, 0xb4, 0xd3, 0xef, 0x08, 0x06, 0xfe, 0x77, 0xa1, 0xff, - 0x29, 0xb5, 0xbf, 0x43, 0xf8, 0x44, 0x57, 0x11, 0x3b, 0x2f, 0xaa, 0xb2, 0x4f, 0xee, 0x9f, 0x90, - 0x2b, 0xd9, 0xa0, 0x4a, 0xd6, 0x10, 0xbe, 0xdd, 0x4a, 0xb6, 0xed, 0x44, 0xf4, 0x75, 0x09, 0x26, - 0xdb, 0xad, 0x49, 0x7a, 0x0c, 0xcb, 0x2e, 0x8b, 0xac, 0x1e, 0xc3, 0xb2, 0xdb, 0x02, 0x48, 0xfe, - 0x19, 0xaa, 0xfc, 0x39, 0xf4, 0x78, 0x27, 0xe5, 0xbb, 0xf6, 0x22, 0x19, 0x8b, 0x5d, 0x93, 0xfc, - 0x1e, 0x63, 0xb1, 0x9f, 0x75, 0x4c, 0x8f, 0xb1, 0xd8, 0xd7, 0x1a, 0xa3, 0xf7, 0x58, 0x74, 0x35, - 0xeb, 0xb3, 0x1b, 0x6d, 0xf4, 0x55, 0x09, 0x46, 0x02, 0x19, 0x31, 0x7a, 0xb4, 0xab, 0xa0, 0xed, - 0x16, 0x0c, 0xd9, 0x33, 0xfb, 0x21, 0xe1, 0xba, 0x2c, 0x50, 0x5d, 0xe6, 0x50, 0xfe, 0x20, 0xba, - 0x04, 0x8f, 0x51, 0xbf, 0x29, 0xc1, 0x44, 0x9b, 0x2c, 0xb3, 0xc7, 0x28, 0xec, 0x9c, 0x34, 0x67, - 0x9f, 0xdc, 0x3f, 0x21, 0xd7, 0xea, 0x02, 0xd5, 0xea, 0x2d, 0xe8, 0xcd, 0x07, 0xd1, 0xca, 0x37, - 0x3f, 0xdf, 0xf4, 0xae, 0x64, 0xf9, 0xda, 0x41, 0xe7, 0xf6, 0x29, 0x98, 0x50, 0xe8, 0x89, 0x7d, - 0xd3, 0x71, 0x7d, 0x9e, 0xa3, 0xfa, 0x3c, 0x8b, 0x56, 0xde, 0x98, 0x3e, 0xad, 0xd3, 0xfa, 0x17, - 0x5b, 0x1f, 0x07, 0x76, 0xf7, 0xa2, 0xb6, 0xc9, 0x6a, 0xf6, 0xb1, 0x7d, 0xd1, 0x70, 0xa5, 0x9e, - 0xa4, 0x4a, 0x9d, 0x41, 0x8f, 0x74, 0x52, 0xca, 0x77, 0xef, 0x4e, 0xd3, 0xb7, 0x8c, 0xd3, 0xef, - 0x60, 0x29, 0xf0, 0xbb, 0xd0, 0xbb, 0xc5, 0x9d, 0xa7, 0x93, 0x5d, 0xdb, 0xf5, 0xe5, 0xb1, 0xd9, - 0x07, 0xfa, 0xc0, 0xe4, 0x72, 0xdd, 0x43, 0xe5, 0x9a, 0x42, 0xc7, 0x3b, 0xc9, 0x45, 0x72, 0x59, - 0xf4, 0x41, 0xc9, 0xbd, 0x26, 0x79, 0xaa, 0x3b, 0x6f, 0x7f, 0xb2, 0x9b, 0x7d, 0xb0, 0x2f, 0x5c, - 0x2e, 0xc9, 0x7d, 0x54, 0x92, 0x19, 0x34, 0xd5, 0x51, 0x12, 0x96, 0xfa, 0xde, 0xee, 0x4b, 0x05, - 0xd7, 0x8f, 0xc0, 0x74, 0x87, 0x16, 0x9d, 0xdd, 0x1e, 0x67, 0x5c, 0x5d, 0xde, 0xc8, 0xf6, 0x7c, - 0x03, 0x7b, 0xbb, 0xbf, 0xed, 0xda, 0xe7, 0x81, 0xd8, 0x6f, 0xc7, 0x00, 0x2d, 0xd9, 0xb5, 0x39, - 0x0b, 0xb3, 0xff, 0x33, 0xc9, 0x47, 0x79, 0xe8, 0xf1, 0x97, 0xf4, 0x86, 0x1e, 0x7f, 0x2d, 0x05, - 0x9e, 0x53, 0x45, 0xf6, 0xf7, 0x64, 0xb3, 0xef, 0x37, 0x55, 0xd1, 0x1f, 0xcb, 0x9b, 0xaa, 0xf6, - 0x57, 0xae, 0x63, 0xb7, 0xef, 0x6d, 0x46, 0xfc, 0xa0, 0xef, 0x53, 0xf8, 0x53, 0xc9, 0xc1, 0x2e, - 0x4f, 0x25, 0x33, 0x1d, 0xdf, 0x43, 0x72, 0x6a, 0x74, 0x56, 0x7c, 0xe9, 0x74, 0xa8, 0xbf, 0x4b, - 0xb2, 0xfc, 0x53, 0xa8, 0xde, 0x16, 0xc2, 0x71, 0xc8, 0xb6, 0xba, 0x93, 0x3b, 0xa8, 0x3f, 0x12, - 0x85, 0xf4, 0x92, 0x5d, 0x2b, 0x55, 0x35, 0xe7, 0x0e, 0xf9, 0xda, 0xd3, 0x9d, 0xdf, 0xbb, 0xa0, - 0x5b, 0x37, 0xa7, 0x47, 0x99, 0x4d, 0xbb, 0x58, 0xb2, 0x01, 0x63, 0xa1, 0x57, 0xc6, 0xdc, 0xb3, - 0x8a, 0x07, 0x79, 0xec, 0x1c, 0x62, 0x25, 0xd3, 0xe7, 0x09, 0x3e, 0xff, 0x46, 0xbb, 0xed, 0x9d, - 0x99, 0x39, 0xd4, 0xc5, 0x3b, 0xf9, 0x38, 0xd0, 0xeb, 0xb3, 0x2c, 0x64, 0xc2, 0x9d, 0xe2, 0xf6, - 0xd8, 0x1f, 0x49, 0x30, 0xbc, 0x64, 0x8b, 0x54, 0x10, 0xff, 0x94, 0x3e, 0x4d, 0x7a, 0xc2, 0xfd, - 0x4c, 0x78, 0xb4, 0x3f, 0xbf, 0x15, 0x9f, 0x0e, 0xf7, 0x8c, 0x70, 0x08, 0x26, 0x7c, 0x7a, 0xba, - 0xfa, 0xff, 0x4e, 0x84, 0xc6, 0xc7, 0x02, 0xae, 0x69, 0xba, 0x9b, 0x45, 0xe2, 0xbf, 0xa8, 0x0f, - 0x2f, 0x3c, 0x3b, 0xc7, 0x0e, 0x6a, 0xe7, 0x1d, 0x1a, 0x20, 0x42, 0xf6, 0x74, 0x37, 0xbe, 0x96, - 0x5a, 0x9f, 0x05, 0x49, 0xfb, 0xf8, 0xe2, 0x4e, 0xe8, 0xf1, 0x8f, 0xfc, 0xba, 0x04, 0x23, 0x4b, - 0x76, 0x6d, 0x43, 0xaf, 0xfe, 0x3f, 0xef, 0xbf, 0x5b, 0x70, 0x28, 0xa0, 0xe9, 0x1d, 0x32, 0xe9, - 0x99, 0x57, 0x62, 0x10, 0x5d, 0xb2, 0x6b, 0xe8, 0x25, 0x18, 0x0b, 0x27, 0x0d, 0x1d, 0x73, 0xc1, - 0xd6, 0x19, 0xa1, 0xf3, 0x7a, 0xad, 0xf3, 0xec, 0x81, 0x76, 0x60, 0x24, 0x38, 0x73, 0x9c, 0xec, - 0xc2, 0x24, 0x80, 0x99, 0x7d, 0xa4, 0x5f, 0x4c, 0xb7, 0xb1, 0xb7, 0x43, 0xc2, 0x0d, 0x7a, 0x77, - 0x77, 0xa1, 0x16, 0x48, 0x9d, 0xb3, 0xdb, 0x36, 0x61, 0x85, 0x58, 0x2f, 0x1c, 0x52, 0xba, 0x59, - 0x2f, 0x84, 0xdb, 0xd5, 0x7a, 0x9d, 0x86, 0xd6, 0x26, 0x80, 0x6f, 0x1c, 0xdc, 0xdb, 0x85, 0x83, - 0x87, 0x96, 0x7d, 0xb8, 0x2f, 0x34, 0xf7, 0xd0, 0xe9, 0x36, 0x27, 0xe3, 0xff, 0x37, 0x00, 0x00, - 0xff, 0xff, 0xb1, 0x48, 0x2a, 0x05, 0xdd, 0x97, 0x00, 0x00, + 0x41, 0x00, 0xc4, 0x2f, 0x50, 0x16, 0x12, 0x74, 0x98, 0x54, 0xb0, 0x98, 0xda, 0xdc, 0x32, 0x71, + 0xac, 0x0a, 0xde, 0x56, 0x1b, 0x35, 0xa7, 0x74, 0x45, 0xad, 0x35, 0x30, 0x75, 0xf8, 0xa4, 0x92, + 0xe2, 0xc0, 0xcb, 0x04, 0x86, 0xa6, 0x61, 0x98, 0x8d, 0x2a, 0x4d, 0xaf, 0xe0, 0x3d, 0x1a, 0x3d, + 0xe3, 0x0a, 0x1b, 0x68, 0x8b, 0x04, 0x42, 0x9a, 0x7f, 0xde, 0x36, 0x74, 0xe1, 0x9a, 0xb4, 0x09, + 0x02, 0xa0, 0xcd, 0x3f, 0x16, 0x0e, 0xdc, 0x27, 0x5a, 0xab, 0xd7, 0x34, 0x96, 0xee, 0x85, 0x31, + 0x8a, 0xf1, 0x08, 0xef, 0x7a, 0xb5, 0x96, 0x19, 0x9f, 0x91, 0x4e, 0x26, 0x94, 0x51, 0x06, 0x5e, + 0xe5, 0x50, 0xf9, 0xab, 0x11, 0x88, 0xd1, 0xc0, 0x32, 0x06, 0xc3, 0x1b, 0x6f, 0x5f, 0x2b, 0x96, + 0x0a, 0xab, 0x9b, 0xf9, 0xa5, 0x62, 0x5a, 0x42, 0xa3, 0x00, 0x14, 0x70, 0x61, 0x69, 0x75, 0x6e, + 0x23, 0x1d, 0x71, 0xcb, 0x8b, 0x2b, 0x1b, 0xe7, 0x1e, 0x4d, 0x47, 0x5d, 0x82, 0x4d, 0x06, 0x88, + 0xf9, 0x11, 0x1e, 0x39, 0x93, 0x8e, 0xa3, 0x34, 0xa4, 0x18, 0x83, 0xc5, 0x67, 0x8b, 0x85, 0x73, + 0x8f, 0xa6, 0x07, 0x83, 0x90, 0x47, 0xce, 0xa4, 0x87, 0xd0, 0x08, 0x24, 0x29, 0x24, 0xbf, 0xba, + 0xba, 0x94, 0x4e, 0xb8, 0x3c, 0xd7, 0x37, 0x94, 0xc5, 0x95, 0x85, 0x74, 0xd2, 0xe5, 0xb9, 0xa0, + 0xac, 0x6e, 0xae, 0xa5, 0xc1, 0xe5, 0xb0, 0x5c, 0x5c, 0x5f, 0x9f, 0x5b, 0x28, 0xa6, 0x87, 0x5d, + 0x8c, 0xfc, 0xdb, 0x37, 0x8a, 0xeb, 0xe9, 0x54, 0x40, 0xac, 0x47, 0xce, 0xa4, 0x47, 0xdc, 0x26, + 0x8a, 0x2b, 0x9b, 0xcb, 0xe9, 0x51, 0x34, 0x0e, 0x23, 0xac, 0x09, 0x21, 0xc4, 0x58, 0x08, 0x74, + 0xee, 0xd1, 0x74, 0xda, 0x13, 0x84, 0x71, 0x19, 0x0f, 0x00, 0xce, 0x3d, 0x9a, 0x46, 0xf2, 0x3c, + 0xc4, 0xa9, 0x1b, 0x22, 0x04, 0xa3, 0x4b, 0x73, 0xf9, 0xe2, 0x52, 0x69, 0x75, 0x6d, 0x63, 0x71, + 0x75, 0x65, 0x6e, 0x29, 0x2d, 0x79, 0x30, 0xa5, 0xf8, 0xf4, 0xe6, 0xa2, 0x52, 0x2c, 0xa4, 0x23, + 0x7e, 0xd8, 0x5a, 0x71, 0x6e, 0xa3, 0x58, 0x48, 0x47, 0xe5, 0x32, 0x4c, 0xb6, 0x0a, 0xa8, 0x2d, + 0x87, 0x90, 0xcf, 0x17, 0x22, 0x6d, 0x7c, 0x81, 0xf2, 0x0a, 0xfb, 0x82, 0xfc, 0xbd, 0x08, 0x4c, + 0xb4, 0x98, 0x54, 0x5a, 0x36, 0xf2, 0x24, 0xc4, 0x99, 0x2f, 0xb3, 0x69, 0xf6, 0xbe, 0x96, 0xb3, + 0x13, 0xf5, 0xec, 0xa6, 0xa9, 0x96, 0xd2, 0xf9, 0x53, 0x8d, 0x68, 0x9b, 0x54, 0x83, 0xb0, 0x68, + 0x72, 0xd8, 0x9f, 0x6f, 0x0a, 0xfe, 0x6c, 0x7e, 0x3c, 0xd7, 0xcb, 0xfc, 0x48, 0x61, 0xfd, 0x4d, + 0x02, 0xf1, 0x16, 0x93, 0xc0, 0x79, 0x18, 0x6f, 0x62, 0xd4, 0x73, 0x30, 0x7e, 0xbf, 0x04, 0x99, + 0x76, 0xc6, 0xe9, 0x12, 0x12, 0x23, 0x81, 0x90, 0x78, 0x3e, 0x6c, 0xc1, 0x3b, 0xda, 0x77, 0x42, + 0x53, 0x5f, 0x7f, 0x4e, 0x82, 0xc3, 0xad, 0x53, 0xca, 0x96, 0x32, 0xbc, 0x15, 0x06, 0xeb, 0xd8, + 0xd9, 0x31, 0x44, 0x5a, 0x75, 0x4f, 0x8b, 0xc9, 0x9a, 0x54, 0x87, 0x3b, 0x9b, 0x53, 0xf9, 0x67, + 0xfb, 0x68, 0xbb, 0xbc, 0x90, 0x49, 0xd3, 0x24, 0xe9, 0x87, 0x23, 0x70, 0xa8, 0x25, 0xf3, 0x96, + 0x82, 0x9e, 0x00, 0xd0, 0x74, 0xb3, 0xe1, 0xb0, 0xd4, 0x89, 0x45, 0xe2, 0x24, 0x85, 0xd0, 0xe0, + 0x45, 0xa2, 0x6c, 0xc3, 0x71, 0xeb, 0xa3, 0xb4, 0x1e, 0x18, 0x88, 0x22, 0x3c, 0xee, 0x09, 0x1a, + 0xa3, 0x82, 0x4e, 0xb5, 0xd1, 0xb4, 0xc9, 0x31, 0x1f, 0x82, 0x74, 0xb9, 0xa6, 0x61, 0xdd, 0x29, + 0xd9, 0x8e, 0x85, 0xd5, 0xba, 0xa6, 0x57, 0xe9, 0x54, 0x93, 0xc8, 0xc5, 0xb7, 0xd5, 0x9a, 0x8d, + 0x95, 0x31, 0x56, 0xbd, 0x2e, 0x6a, 0x09, 0x05, 0x75, 0x20, 0xcb, 0x47, 0x31, 0x18, 0xa0, 0x60, + 0xd5, 0x2e, 0x85, 0xfc, 0xd1, 0x24, 0x0c, 0xfb, 0x12, 0x70, 0x74, 0x07, 0xa4, 0x9e, 0x57, 0xaf, + 0xa8, 0x25, 0xb1, 0xa8, 0x62, 0x96, 0x18, 0x26, 0xb0, 0x35, 0xbe, 0xb0, 0x7a, 0x08, 0x26, 0x29, + 0x8a, 0xd1, 0x70, 0xb0, 0x55, 0x2a, 0xd7, 0x54, 0xdb, 0xa6, 0x46, 0x4b, 0x50, 0x54, 0x44, 0xea, + 0x56, 0x49, 0xd5, 0xbc, 0xa8, 0x41, 0x67, 0x61, 0x82, 0x52, 0xd4, 0x1b, 0x35, 0x47, 0x33, 0x6b, + 0xb8, 0x44, 0x96, 0x79, 0x36, 0x9d, 0x72, 0x5c, 0xc9, 0xc6, 0x09, 0xc6, 0x32, 0x47, 0x20, 0x12, + 0xd9, 0xa8, 0x00, 0x27, 0x28, 0x59, 0x15, 0xeb, 0xd8, 0x52, 0x1d, 0x5c, 0xc2, 0x2f, 0x34, 0xd4, + 0x9a, 0x5d, 0x52, 0xf5, 0x4a, 0x69, 0x47, 0xb5, 0x77, 0x32, 0x93, 0x84, 0x41, 0x3e, 0x92, 0x91, + 0x94, 0xa3, 0x04, 0x71, 0x81, 0xe3, 0x15, 0x29, 0xda, 0x9c, 0x5e, 0xb9, 0xa8, 0xda, 0x3b, 0x28, + 0x07, 0x87, 0x29, 0x17, 0xdb, 0xb1, 0x34, 0xbd, 0x5a, 0x2a, 0xef, 0xe0, 0xf2, 0x6e, 0xa9, 0xe1, + 0x6c, 0x3f, 0x9e, 0x39, 0xe6, 0x6f, 0x9f, 0x4a, 0xb8, 0x4e, 0x71, 0xe6, 0x09, 0xca, 0xa6, 0xb3, + 0xfd, 0x38, 0x5a, 0x87, 0x14, 0xe9, 0x8c, 0xba, 0xf6, 0x22, 0x2e, 0x6d, 0x1b, 0x16, 0x9d, 0x43, + 0x47, 0x5b, 0x84, 0x26, 0x9f, 0x05, 0x67, 0x57, 0x39, 0xc1, 0xb2, 0x51, 0xc1, 0xb9, 0xf8, 0xfa, + 0x5a, 0xb1, 0x58, 0x50, 0x86, 0x05, 0x97, 0x0b, 0x86, 0x45, 0x1c, 0xaa, 0x6a, 0xb8, 0x06, 0x1e, + 0x66, 0x0e, 0x55, 0x35, 0x84, 0x79, 0xcf, 0xc2, 0x44, 0xb9, 0xcc, 0x74, 0xd6, 0xca, 0x25, 0xbe, + 0x18, 0xb3, 0x33, 0xe9, 0x80, 0xb1, 0xca, 0xe5, 0x05, 0x86, 0xc0, 0x7d, 0xdc, 0x46, 0x4f, 0xc0, + 0x21, 0xcf, 0x58, 0x7e, 0xc2, 0xf1, 0x26, 0x2d, 0xc3, 0xa4, 0x67, 0x61, 0xc2, 0xdc, 0x6f, 0x26, + 0x44, 0x81, 0x16, 0xcd, 0xfd, 0x30, 0xd9, 0x63, 0x30, 0x69, 0xee, 0x98, 0xcd, 0x74, 0xa7, 0xfc, + 0x74, 0xc8, 0xdc, 0x31, 0xc3, 0x84, 0x77, 0xd3, 0x95, 0xb9, 0x85, 0xcb, 0xaa, 0x83, 0x2b, 0x99, + 0x23, 0x7e, 0x74, 0x5f, 0x05, 0x9a, 0x85, 0x74, 0xb9, 0x5c, 0xc2, 0xba, 0xba, 0x55, 0xc3, 0x25, + 0xd5, 0xc2, 0xba, 0x6a, 0x67, 0xa6, 0x29, 0x72, 0xcc, 0xb1, 0x1a, 0x58, 0x19, 0x2d, 0x97, 0x8b, + 0xb4, 0x72, 0x8e, 0xd6, 0xa1, 0x53, 0x30, 0x6e, 0x6c, 0x3d, 0x5f, 0x66, 0x1e, 0x59, 0x32, 0x2d, + 0xbc, 0xad, 0xed, 0x65, 0xee, 0xa2, 0xe6, 0x1d, 0x23, 0x15, 0xd4, 0x1f, 0xd7, 0x28, 0x18, 0xdd, + 0x07, 0xe9, 0xb2, 0xbd, 0xa3, 0x5a, 0x26, 0x0d, 0xc9, 0xb6, 0xa9, 0x96, 0x71, 0xe6, 0x6e, 0x86, + 0xca, 0xe0, 0x2b, 0x02, 0x4c, 0x46, 0x84, 0x7d, 0x55, 0xdb, 0x76, 0x04, 0xc7, 0x7b, 0xd9, 0x88, + 0xa0, 0x30, 0xce, 0xed, 0x24, 0xa4, 0x89, 0x25, 0x02, 0x0d, 0x9f, 0xa4, 0x68, 0xa3, 0xe6, 0x8e, + 0xe9, 0x6f, 0xf7, 0x4e, 0x18, 0x21, 0x98, 0x5e, 0xa3, 0xf7, 0xb1, 0xc4, 0xcd, 0xdc, 0xf1, 0xb5, + 0xf8, 0x28, 0x1c, 0x26, 0x48, 0x75, 0xec, 0xa8, 0x15, 0xd5, 0x51, 0x7d, 0xd8, 0x0f, 0x50, 0x6c, + 0x62, 0xf6, 0x65, 0x5e, 0x19, 0x90, 0xd3, 0x6a, 0x6c, 0xed, 0xbb, 0x8e, 0xf5, 0x20, 0x93, 0x93, + 0xc0, 0x84, 0x6b, 0xdd, 0xb6, 0xe4, 0x5c, 0xce, 0x41, 0xca, 0xef, 0xf7, 0x28, 0x09, 0xcc, 0xf3, + 0xd3, 0x12, 0x49, 0x82, 0xe6, 0x57, 0x0b, 0x24, 0x7d, 0x79, 0xae, 0x98, 0x8e, 0x90, 0x34, 0x6a, + 0x69, 0x71, 0xa3, 0x58, 0x52, 0x36, 0x57, 0x36, 0x16, 0x97, 0x8b, 0xe9, 0xa8, 0x2f, 0xb1, 0x7f, + 0x2a, 0x96, 0xb8, 0x27, 0x7d, 0xaf, 0xfc, 0x9d, 0x08, 0x8c, 0x06, 0x57, 0x6a, 0xe8, 0xe7, 0xe0, + 0x88, 0xd8, 0x56, 0xb1, 0xb1, 0x53, 0xba, 0xaa, 0x59, 0x74, 0x40, 0xd6, 0x55, 0x36, 0x39, 0xba, + 0xfe, 0x33, 0xc9, 0xb1, 0xd6, 0xb1, 0xf3, 0x8c, 0x66, 0x91, 0xe1, 0x56, 0x57, 0x1d, 0xb4, 0x04, + 0xd3, 0xba, 0x51, 0xb2, 0x1d, 0x55, 0xaf, 0xa8, 0x56, 0xa5, 0xe4, 0x6d, 0x68, 0x95, 0xd4, 0x72, + 0x19, 0xdb, 0xb6, 0xc1, 0x26, 0x42, 0x97, 0xcb, 0x71, 0xdd, 0x58, 0xe7, 0xc8, 0xde, 0x0c, 0x31, + 0xc7, 0x51, 0x43, 0xee, 0x1b, 0x6d, 0xe7, 0xbe, 0xc7, 0x20, 0x59, 0x57, 0xcd, 0x12, 0xd6, 0x1d, + 0x6b, 0x9f, 0xe6, 0xe7, 0x09, 0x25, 0x51, 0x57, 0xcd, 0x22, 0x29, 0xff, 0x54, 0x96, 0x49, 0x4f, + 0xc5, 0x12, 0x89, 0x74, 0xf2, 0xa9, 0x58, 0x22, 0x99, 0x06, 0xf9, 0xd5, 0x28, 0xa4, 0xfc, 0xf9, + 0x3a, 0x59, 0xfe, 0x94, 0xe9, 0x8c, 0x25, 0xd1, 0x98, 0x76, 0x67, 0xc7, 0xec, 0x7e, 0x76, 0x9e, + 0x4c, 0x65, 0xb9, 0x41, 0x96, 0x1c, 0x2b, 0x8c, 0x92, 0xa4, 0x11, 0xc4, 0xd9, 0x30, 0x4b, 0x46, + 0x12, 0x0a, 0x2f, 0xa1, 0x05, 0x18, 0x7c, 0xde, 0xa6, 0xbc, 0x07, 0x29, 0xef, 0xbb, 0x3a, 0xf3, + 0x7e, 0x6a, 0x9d, 0x32, 0x4f, 0x3e, 0xb5, 0x5e, 0x5a, 0x59, 0x55, 0x96, 0xe7, 0x96, 0x14, 0x4e, + 0x8e, 0x8e, 0x42, 0xac, 0xa6, 0xbe, 0xb8, 0x1f, 0x9c, 0xf4, 0x28, 0xa8, 0xd7, 0x4e, 0x38, 0x0a, + 0xb1, 0xab, 0x58, 0xdd, 0x0d, 0x4e, 0x35, 0x14, 0x74, 0x1b, 0x07, 0xc3, 0x69, 0x88, 0x53, 0x7b, + 0x21, 0x00, 0x6e, 0xb1, 0xf4, 0x00, 0x4a, 0x40, 0x6c, 0x7e, 0x55, 0x21, 0x03, 0x22, 0x0d, 0x29, + 0x06, 0x2d, 0xad, 0x2d, 0x16, 0xe7, 0x8b, 0xe9, 0x88, 0x7c, 0x16, 0x06, 0x99, 0x11, 0xc8, 0x60, + 0x71, 0xcd, 0x90, 0x1e, 0xe0, 0x45, 0xce, 0x43, 0x12, 0xb5, 0x9b, 0xcb, 0xf9, 0xa2, 0x92, 0x8e, + 0x04, 0xbb, 0x3a, 0x96, 0x8e, 0xcb, 0x36, 0xa4, 0xfc, 0x79, 0xf8, 0x4f, 0x67, 0x31, 0xfe, 0x35, + 0x09, 0x86, 0x7d, 0x79, 0x35, 0x49, 0x88, 0xd4, 0x5a, 0xcd, 0xb8, 0x5a, 0x52, 0x6b, 0x9a, 0x6a, + 0x73, 0xd7, 0x00, 0x0a, 0x9a, 0x23, 0x90, 0x5e, 0xbb, 0xee, 0xa7, 0x34, 0x44, 0xe2, 0xe9, 0x41, + 0xf9, 0xd3, 0x12, 0xa4, 0xc3, 0x89, 0x6d, 0x48, 0x4c, 0xe9, 0xcd, 0x14, 0x53, 0xfe, 0x94, 0x04, + 0xa3, 0xc1, 0x6c, 0x36, 0x24, 0xde, 0x1d, 0x6f, 0xaa, 0x78, 0x7f, 0x1c, 0x81, 0x91, 0x40, 0x0e, + 0xdb, 0xab, 0x74, 0x2f, 0xc0, 0xb8, 0x56, 0xc1, 0x75, 0xd3, 0x70, 0xb0, 0x5e, 0xde, 0x2f, 0xd5, + 0xf0, 0x15, 0x5c, 0xcb, 0xc8, 0x34, 0x68, 0x9c, 0xee, 0x9c, 0x25, 0xcf, 0x2e, 0x7a, 0x74, 0x4b, + 0x84, 0x2c, 0x37, 0xb1, 0x58, 0x28, 0x2e, 0xaf, 0xad, 0x6e, 0x14, 0x57, 0xe6, 0xdf, 0x5e, 0xda, + 0x5c, 0xb9, 0xb4, 0xb2, 0xfa, 0xcc, 0x8a, 0x92, 0xd6, 0x42, 0x68, 0xb7, 0x71, 0xd8, 0xaf, 0x41, + 0x3a, 0x2c, 0x14, 0x3a, 0x02, 0xad, 0xc4, 0x4a, 0x0f, 0xa0, 0x09, 0x18, 0x5b, 0x59, 0x2d, 0xad, + 0x2f, 0x16, 0x8a, 0xa5, 0xe2, 0x85, 0x0b, 0xc5, 0xf9, 0x8d, 0x75, 0xb6, 0xef, 0xe1, 0x62, 0x6f, + 0x04, 0x06, 0xb8, 0xfc, 0x72, 0x14, 0x26, 0x5a, 0x48, 0x82, 0xe6, 0xf8, 0x8a, 0x85, 0x2d, 0xa2, + 0x1e, 0xec, 0x45, 0xfa, 0x59, 0x92, 0x33, 0xac, 0xa9, 0x96, 0xc3, 0x17, 0x38, 0xf7, 0x01, 0xb1, + 0x92, 0xee, 0x68, 0xdb, 0x1a, 0xb6, 0xf8, 0x7e, 0x12, 0x5b, 0xc6, 0x8c, 0x79, 0x70, 0xb6, 0xa5, + 0xf4, 0x00, 0x20, 0xd3, 0xb0, 0x35, 0x47, 0xbb, 0x82, 0x4b, 0x9a, 0x2e, 0x36, 0x9f, 0xc8, 0xb2, + 0x26, 0xa6, 0xa4, 0x45, 0xcd, 0xa2, 0xee, 0xb8, 0xd8, 0x3a, 0xae, 0xaa, 0x21, 0x6c, 0x12, 0xcc, + 0xa3, 0x4a, 0x5a, 0xd4, 0xb8, 0xd8, 0x77, 0x40, 0xaa, 0x62, 0x34, 0x48, 0xae, 0xc7, 0xf0, 0xc8, + 0xdc, 0x21, 0x29, 0xc3, 0x0c, 0xe6, 0xa2, 0xf0, 0x2c, 0xde, 0xdb, 0xf5, 0x4a, 0x29, 0xc3, 0x0c, + 0xc6, 0x50, 0xee, 0x85, 0x31, 0xb5, 0x5a, 0xb5, 0x08, 0x73, 0xc1, 0x88, 0xad, 0x4b, 0x46, 0x5d, + 0x30, 0x45, 0xcc, 0x3e, 0x05, 0x09, 0x61, 0x07, 0x32, 0x55, 0x13, 0x4b, 0x94, 0x4c, 0xb6, 0xd8, + 0x8e, 0x9c, 0x4c, 0x2a, 0x09, 0x5d, 0x54, 0xde, 0x01, 0x29, 0xcd, 0x2e, 0x79, 0x9b, 0xf8, 0x91, + 0x99, 0xc8, 0xc9, 0x84, 0x32, 0xac, 0xd9, 0xee, 0x06, 0xa8, 0xfc, 0xb9, 0x08, 0x8c, 0x06, 0x0f, + 0x21, 0x50, 0x01, 0x12, 0x35, 0xa3, 0xac, 0x52, 0xd7, 0x62, 0x27, 0x60, 0x27, 0xbb, 0x9c, 0x5b, + 0xcc, 0x2e, 0x71, 0x7c, 0xc5, 0xa5, 0xcc, 0xfe, 0x9e, 0x04, 0x09, 0x01, 0x46, 0x87, 0x21, 0x66, + 0xaa, 0xce, 0x0e, 0x65, 0x17, 0xcf, 0x47, 0xd2, 0x92, 0x42, 0xcb, 0x04, 0x6e, 0x9b, 0xaa, 0x4e, + 0x5d, 0x80, 0xc3, 0x49, 0x99, 0xf4, 0x6b, 0x0d, 0xab, 0x15, 0xba, 0xe8, 0x31, 0xea, 0x75, 0xac, + 0x3b, 0xb6, 0xe8, 0x57, 0x0e, 0x9f, 0xe7, 0x60, 0x74, 0x3f, 0x8c, 0x3b, 0x96, 0xaa, 0xd5, 0x02, + 0xb8, 0x31, 0x8a, 0x9b, 0x16, 0x15, 0x2e, 0x72, 0x0e, 0x8e, 0x0a, 0xbe, 0x15, 0xec, 0xa8, 0xe5, + 0x1d, 0x5c, 0xf1, 0x88, 0x06, 0xe9, 0xe6, 0xc6, 0x11, 0x8e, 0x50, 0xe0, 0xf5, 0x82, 0x56, 0xfe, + 0x8e, 0x04, 0xe3, 0x62, 0x99, 0x56, 0x71, 0x8d, 0xb5, 0x0c, 0xa0, 0xea, 0xba, 0xe1, 0xf8, 0xcd, + 0xd5, 0xec, 0xca, 0x4d, 0x74, 0xb3, 0x73, 0x2e, 0x91, 0xe2, 0x63, 0x90, 0xad, 0x03, 0x78, 0x35, + 0x6d, 0xcd, 0x36, 0x0d, 0xc3, 0xfc, 0x84, 0x89, 0x1e, 0x53, 0xb2, 0x85, 0x3d, 0x30, 0x10, 0x59, + 0xcf, 0xa1, 0x49, 0x88, 0x6f, 0xe1, 0xaa, 0xa6, 0xf3, 0x7d, 0x63, 0x56, 0x10, 0xdb, 0x2f, 0x31, + 0x77, 0xfb, 0x25, 0xff, 0x97, 0x61, 0xa2, 0x6c, 0xd4, 0xc3, 0xe2, 0xe6, 0xd3, 0xa1, 0xcd, 0x05, + 0xfb, 0xa2, 0xf4, 0xdc, 0x83, 0x1c, 0xa9, 0x6a, 0xd4, 0x54, 0xbd, 0x3a, 0x6b, 0x58, 0x55, 0xef, + 0x98, 0x95, 0x64, 0x3c, 0xb6, 0xef, 0xb0, 0xd5, 0xdc, 0xfa, 0x33, 0x49, 0xfa, 0x95, 0x48, 0x74, + 0x61, 0x2d, 0xff, 0xf9, 0x48, 0x76, 0x81, 0x11, 0xae, 0x09, 0x63, 0x28, 0x78, 0xbb, 0x86, 0xcb, + 0x44, 0x41, 0xf8, 0xc1, 0xfd, 0x30, 0x59, 0x35, 0xaa, 0x06, 0xe5, 0x74, 0x9a, 0xfc, 0xe2, 0xe7, + 0xb4, 0x49, 0x17, 0x9a, 0xed, 0x7a, 0xa8, 0x9b, 0x5b, 0x81, 0x09, 0x8e, 0x5c, 0xa2, 0x07, 0x45, + 0x6c, 0x19, 0x83, 0x3a, 0xee, 0xa1, 0x65, 0xbe, 0xf4, 0x7d, 0x3a, 0x7d, 0x2b, 0xe3, 0x9c, 0x94, + 0xd4, 0xb1, 0x95, 0x4e, 0x4e, 0x81, 0x43, 0x01, 0x7e, 0x6c, 0x90, 0x62, 0xab, 0x0b, 0xc7, 0xdf, + 0xe6, 0x1c, 0x27, 0x7c, 0x1c, 0xd7, 0x39, 0x69, 0x6e, 0x1e, 0x46, 0xfa, 0xe1, 0xf5, 0x2f, 0x38, + 0xaf, 0x14, 0xf6, 0x33, 0x59, 0x80, 0x31, 0xca, 0xa4, 0xdc, 0xb0, 0x1d, 0xa3, 0x4e, 0x23, 0x60, + 0x67, 0x36, 0xbf, 0xf3, 0x7d, 0x36, 0x6a, 0x46, 0x09, 0xd9, 0xbc, 0x4b, 0x95, 0xcb, 0x01, 0x3d, + 0x1b, 0xab, 0xe0, 0x72, 0xad, 0x0b, 0x87, 0x6f, 0x70, 0x41, 0x5c, 0xfc, 0xdc, 0x65, 0x98, 0x24, + 0xbf, 0x69, 0x80, 0xf2, 0x4b, 0xd2, 0x7d, 0xc3, 0x2d, 0xf3, 0x9d, 0xf7, 0xb3, 0x81, 0x39, 0xe1, + 0x32, 0xf0, 0xc9, 0xe4, 0xeb, 0xc5, 0x2a, 0x76, 0x1c, 0x6c, 0xd9, 0x25, 0xb5, 0xd6, 0x4a, 0x3c, + 0xdf, 0x8e, 0x45, 0xe6, 0x13, 0x3f, 0x0c, 0xf6, 0xe2, 0x02, 0xa3, 0x9c, 0xab, 0xd5, 0x72, 0x9b, + 0x70, 0xa4, 0x85, 0x57, 0xf4, 0xc0, 0xf3, 0x65, 0xce, 0x73, 0xb2, 0xc9, 0x33, 0x08, 0xdb, 0x35, + 0x10, 0x70, 0xb7, 0x2f, 0x7b, 0xe0, 0xf9, 0x49, 0xce, 0x13, 0x71, 0x5a, 0xd1, 0xa5, 0x84, 0xe3, + 0x53, 0x30, 0x7e, 0x05, 0x5b, 0x5b, 0x86, 0xcd, 0x77, 0x89, 0x7a, 0x60, 0xf7, 0x29, 0xce, 0x6e, + 0x8c, 0x13, 0xd2, 0x6d, 0x23, 0xc2, 0xeb, 0x09, 0x48, 0x6c, 0xab, 0x65, 0xdc, 0x03, 0x8b, 0xeb, + 0x9c, 0xc5, 0x10, 0xc1, 0x27, 0xa4, 0x73, 0x90, 0xaa, 0x1a, 0x7c, 0x8e, 0xea, 0x4e, 0xfe, 0x69, + 0x4e, 0x3e, 0x2c, 0x68, 0x38, 0x0b, 0xd3, 0x30, 0x1b, 0x35, 0x32, 0x81, 0x75, 0x67, 0xf1, 0xb7, + 0x04, 0x0b, 0x41, 0xc3, 0x59, 0xf4, 0x61, 0xd6, 0x57, 0x04, 0x0b, 0xdb, 0x67, 0xcf, 0x27, 0x61, + 0xd8, 0xd0, 0x6b, 0xfb, 0x86, 0xde, 0x8b, 0x10, 0x9f, 0xe1, 0x1c, 0x80, 0x93, 0x10, 0x06, 0xe7, + 0x21, 0xd9, 0x6b, 0x47, 0xfc, 0xed, 0x1f, 0x8a, 0xe1, 0x21, 0x7a, 0x60, 0x01, 0xc6, 0x44, 0x80, + 0xd2, 0x0c, 0xbd, 0x07, 0x16, 0x7f, 0x87, 0xb3, 0x18, 0xf5, 0x91, 0x71, 0x35, 0x1c, 0x6c, 0x3b, + 0x55, 0xdc, 0x0b, 0x93, 0xcf, 0x09, 0x35, 0x38, 0x09, 0x37, 0xe5, 0x16, 0xd6, 0xcb, 0x3b, 0xbd, + 0x71, 0xf8, 0x35, 0x61, 0x4a, 0x41, 0x43, 0x58, 0xcc, 0xc3, 0x48, 0x5d, 0xb5, 0xec, 0x1d, 0xb5, + 0xd6, 0x53, 0x77, 0xfc, 0x5d, 0xce, 0x23, 0xe5, 0x12, 0x71, 0x8b, 0x34, 0xf4, 0x7e, 0xd8, 0x7c, + 0x5e, 0x58, 0xc4, 0x47, 0xc6, 0x87, 0x9e, 0xed, 0xd0, 0x2d, 0xb5, 0x7e, 0xb8, 0xfd, 0xba, 0x18, + 0x7a, 0x8c, 0x76, 0xd9, 0xcf, 0xf1, 0x3c, 0x24, 0x6d, 0xed, 0xc5, 0x9e, 0xd8, 0x7c, 0x41, 0xf4, + 0x34, 0x25, 0x20, 0xc4, 0x6f, 0x87, 0xa3, 0x2d, 0xa7, 0x89, 0x1e, 0x98, 0xfd, 0x3d, 0xce, 0xec, + 0x70, 0x8b, 0xa9, 0x82, 0x87, 0x84, 0x7e, 0x59, 0xfe, 0x7d, 0x11, 0x12, 0x70, 0x88, 0xd7, 0x1a, + 0x59, 0x35, 0xd8, 0xea, 0x76, 0x7f, 0x56, 0xfb, 0x0d, 0x61, 0x35, 0x46, 0x1b, 0xb0, 0xda, 0x06, + 0x1c, 0xe6, 0x1c, 0xfb, 0xeb, 0xd7, 0x2f, 0x8a, 0xc0, 0xca, 0xa8, 0x37, 0x83, 0xbd, 0xfb, 0x0e, + 0xc8, 0xba, 0xe6, 0x14, 0xe9, 0xa9, 0x5d, 0xaa, 0xab, 0x66, 0x0f, 0x9c, 0xbf, 0xc4, 0x39, 0x8b, + 0x88, 0xef, 0xe6, 0xb7, 0xf6, 0xb2, 0x6a, 0x12, 0xe6, 0xcf, 0x42, 0x46, 0x30, 0x6f, 0xe8, 0x16, + 0x2e, 0x1b, 0x55, 0x5d, 0x7b, 0x11, 0x57, 0x7a, 0x60, 0xfd, 0x9b, 0xa1, 0xae, 0xda, 0xf4, 0x91, + 0x13, 0xce, 0x8b, 0x90, 0x76, 0x73, 0x95, 0x92, 0x56, 0x37, 0x0d, 0xcb, 0xe9, 0xc2, 0xf1, 0xcb, + 0xa2, 0xa7, 0x5c, 0xba, 0x45, 0x4a, 0x96, 0x2b, 0x02, 0x3b, 0x67, 0xee, 0xd5, 0x25, 0xbf, 0xc2, + 0x19, 0x8d, 0x78, 0x54, 0x3c, 0x70, 0x94, 0x8d, 0xba, 0xa9, 0x5a, 0xbd, 0xc4, 0xbf, 0x7f, 0x20, + 0x02, 0x07, 0x27, 0xe1, 0x81, 0x83, 0x64, 0x74, 0x64, 0xb6, 0xef, 0x81, 0xc3, 0x57, 0x45, 0xe0, + 0x10, 0x34, 0x9c, 0x85, 0x48, 0x18, 0x7a, 0x60, 0xf1, 0x0f, 0x05, 0x0b, 0x41, 0x43, 0x58, 0x3c, + 0xed, 0x4d, 0xb4, 0x16, 0xae, 0x6a, 0xb6, 0x63, 0xb1, 0xa4, 0xb8, 0x33, 0xab, 0x7f, 0xf4, 0xc3, + 0x60, 0x12, 0xa6, 0xf8, 0x48, 0x49, 0x24, 0xe2, 0x9b, 0xac, 0x74, 0xcd, 0xd4, 0x5d, 0xb0, 0xdf, + 0x12, 0x91, 0xc8, 0x47, 0x46, 0x64, 0xf3, 0x65, 0x88, 0xc4, 0xec, 0x65, 0xb2, 0x52, 0xe8, 0x81, + 0xdd, 0x3f, 0x0e, 0x09, 0xb7, 0x2e, 0x68, 0x09, 0x4f, 0x5f, 0xfe, 0xd3, 0xd0, 0x77, 0xf1, 0x7e, + 0x4f, 0xde, 0xf9, 0x4f, 0x42, 0xf9, 0xcf, 0x26, 0xa3, 0x64, 0x31, 0x64, 0x2c, 0x94, 0x4f, 0xa1, + 0x6e, 0xb7, 0x8a, 0x32, 0xef, 0x7d, 0x9d, 0xeb, 0x1b, 0x4c, 0xa7, 0x72, 0x4b, 0xc4, 0xc9, 0x83, + 0x49, 0x4f, 0x77, 0x66, 0xef, 0x7f, 0xdd, 0xf5, 0xf3, 0x40, 0xce, 0x93, 0xbb, 0x00, 0x23, 0x81, + 0x84, 0xa7, 0x3b, 0xab, 0x0f, 0x70, 0x56, 0x29, 0x7f, 0xbe, 0x93, 0x3b, 0x0b, 0x31, 0x92, 0xbc, + 0x74, 0x27, 0xff, 0x2b, 0x9c, 0x9c, 0xa2, 0xe7, 0xde, 0x02, 0x09, 0x91, 0xb4, 0x74, 0x27, 0xfd, + 0x20, 0x27, 0x75, 0x49, 0x08, 0xb9, 0x48, 0x58, 0xba, 0x93, 0xff, 0x55, 0x41, 0x2e, 0x48, 0x08, + 0x79, 0xef, 0x26, 0xfc, 0xda, 0x2f, 0xc4, 0xf8, 0xa4, 0x23, 0x6c, 0x77, 0x1e, 0x86, 0x78, 0xa6, + 0xd2, 0x9d, 0xfa, 0xc3, 0xbc, 0x71, 0x41, 0x91, 0x7b, 0x0c, 0xe2, 0x3d, 0x1a, 0xfc, 0x17, 0x39, + 0x29, 0xc3, 0xcf, 0xcd, 0xc3, 0xb0, 0x2f, 0x3b, 0xe9, 0x4e, 0xfe, 0xd7, 0x38, 0xb9, 0x9f, 0x8a, + 0x88, 0xce, 0xb3, 0x93, 0xee, 0x0c, 0x7e, 0x49, 0x88, 0xce, 0x29, 0x88, 0xd9, 0x44, 0x62, 0xd2, + 0x9d, 0xfa, 0x23, 0xc2, 0xea, 0x82, 0x24, 0xf7, 0x24, 0x24, 0xdd, 0xc9, 0xa6, 0x3b, 0xfd, 0x47, + 0x39, 0xbd, 0x47, 0x43, 0x2c, 0xe0, 0x9b, 0xec, 0xba, 0xb3, 0xf8, 0xeb, 0xc2, 0x02, 0x3e, 0x2a, + 0x32, 0x8c, 0xc2, 0x09, 0x4c, 0x77, 0x4e, 0x1f, 0x13, 0xc3, 0x28, 0x94, 0xbf, 0x90, 0xde, 0xa4, + 0x31, 0xbf, 0x3b, 0x8b, 0xbf, 0x21, 0x7a, 0x93, 0xe2, 0x13, 0x31, 0xc2, 0x19, 0x41, 0x77, 0x1e, + 0xbf, 0x2c, 0xc4, 0x08, 0x25, 0x04, 0xb9, 0x35, 0x40, 0xcd, 0xd9, 0x40, 0x77, 0x7e, 0x1f, 0xe7, + 0xfc, 0xc6, 0x9b, 0x92, 0x81, 0xdc, 0x33, 0x70, 0xb8, 0x75, 0x26, 0xd0, 0x9d, 0xeb, 0x27, 0x5e, + 0x0f, 0xad, 0xdd, 0xfc, 0x89, 0x40, 0x6e, 0xc3, 0x9b, 0x52, 0xfc, 0x59, 0x40, 0x77, 0xb6, 0x2f, + 0xbf, 0x1e, 0x0c, 0xdc, 0xfe, 0x24, 0x20, 0x37, 0x07, 0xe0, 0x4d, 0xc0, 0xdd, 0x79, 0x7d, 0x8a, + 0xf3, 0xf2, 0x11, 0x91, 0xa1, 0xc1, 0xe7, 0xdf, 0xee, 0xf4, 0xd7, 0xc5, 0xd0, 0xe0, 0x14, 0x64, + 0x68, 0x88, 0xa9, 0xb7, 0x3b, 0xf5, 0xa7, 0xc5, 0xd0, 0x10, 0x24, 0xc4, 0xb3, 0x7d, 0xb3, 0x5b, + 0x77, 0x0e, 0x9f, 0x11, 0x9e, 0xed, 0xa3, 0xca, 0xad, 0xc0, 0x78, 0xd3, 0x84, 0xd8, 0x9d, 0xd5, + 0xaf, 0x70, 0x56, 0xe9, 0xf0, 0x7c, 0xe8, 0x9f, 0xbc, 0xf8, 0x64, 0xd8, 0x9d, 0xdb, 0x67, 0x43, + 0x93, 0x17, 0x9f, 0x0b, 0x73, 0xe7, 0x21, 0xa1, 0x37, 0x6a, 0x35, 0x32, 0x78, 0x50, 0xe7, 0x9b, + 0x80, 0x99, 0xff, 0xfc, 0x13, 0x6e, 0x1d, 0x41, 0x90, 0x3b, 0x0b, 0x71, 0x5c, 0xdf, 0xc2, 0x95, + 0x6e, 0x94, 0x3f, 0xf8, 0x89, 0x08, 0x98, 0x04, 0x3b, 0xf7, 0x24, 0x00, 0xdb, 0x1a, 0xa1, 0x87, + 0x81, 0x5d, 0x68, 0xff, 0xcb, 0x4f, 0xf8, 0xd5, 0x1b, 0x8f, 0xc4, 0x63, 0xc0, 0x2e, 0xf2, 0x74, + 0x66, 0xf0, 0xc3, 0x20, 0x03, 0xda, 0x23, 0x4f, 0xc0, 0xd0, 0xf3, 0xb6, 0xa1, 0x3b, 0x6a, 0xb5, + 0x1b, 0xf5, 0x7f, 0xe5, 0xd4, 0x02, 0x9f, 0x18, 0xac, 0x6e, 0x58, 0xd8, 0x51, 0xab, 0x76, 0x37, + 0xda, 0xff, 0xc6, 0x69, 0x5d, 0x02, 0x42, 0x5c, 0x56, 0x6d, 0xa7, 0x17, 0xbd, 0xff, 0x54, 0x10, + 0x0b, 0x02, 0x22, 0x34, 0xf9, 0xbd, 0x8b, 0xf7, 0xbb, 0xd1, 0xfe, 0x48, 0x08, 0xcd, 0xf1, 0x73, + 0x6f, 0x81, 0x24, 0xf9, 0xc9, 0xee, 0xd3, 0x75, 0x21, 0xfe, 0x31, 0x27, 0xf6, 0x28, 0x48, 0xcb, + 0xb6, 0x53, 0x71, 0xb4, 0xee, 0xc6, 0xbe, 0xc9, 0x7b, 0x5a, 0xe0, 0xe7, 0xe6, 0x60, 0xd8, 0x76, + 0x2a, 0x95, 0x06, 0xcf, 0x4f, 0xbb, 0x90, 0xff, 0xf7, 0x9f, 0xb8, 0x5b, 0x16, 0x2e, 0x0d, 0xe9, + 0xed, 0xab, 0xbb, 0x8e, 0x69, 0xd0, 0x03, 0x8f, 0x6e, 0x1c, 0x5e, 0xe7, 0x1c, 0x7c, 0x24, 0xb9, + 0x79, 0x48, 0x11, 0x5d, 0x2c, 0x6c, 0x62, 0x7a, 0x3a, 0xd5, 0x85, 0xc5, 0xff, 0xe0, 0x06, 0x08, + 0x10, 0xe5, 0x7f, 0xfe, 0x1b, 0xaf, 0x4e, 0x49, 0xdf, 0x7e, 0x75, 0x4a, 0xfa, 0xe3, 0x57, 0xa7, + 0xa4, 0x8f, 0x7c, 0x6f, 0x6a, 0xe0, 0xdb, 0xdf, 0x9b, 0x1a, 0xf8, 0x83, 0xef, 0x4d, 0x0d, 0xb4, + 0xde, 0x25, 0x86, 0x05, 0x63, 0xc1, 0x60, 0xfb, 0xc3, 0xcf, 0xc9, 0x55, 0xcd, 0xd9, 0x69, 0x6c, + 0xcd, 0x96, 0x8d, 0x3a, 0xdd, 0xc6, 0xf5, 0x76, 0x6b, 0xdd, 0x45, 0x0e, 0xbc, 0x2f, 0x0a, 0x47, + 0xcb, 0x86, 0x5d, 0x37, 0xec, 0x12, 0xdb, 0xef, 0x65, 0x05, 0xbe, 0xe3, 0x9b, 0xf2, 0x57, 0xf5, + 0xb0, 0xe9, 0x7b, 0x11, 0x46, 0xa9, 0xea, 0x74, 0xbb, 0x8b, 0x7a, 0x5b, 0xd7, 0x00, 0xf1, 0xcd, + 0x7f, 0x1b, 0xa7, 0x5a, 0x8f, 0xb8, 0x84, 0xf4, 0xf4, 0x7e, 0x03, 0x26, 0xb5, 0xba, 0x59, 0xc3, + 0x74, 0x9b, 0xbf, 0xe4, 0xd6, 0x75, 0xe7, 0xf7, 0x2d, 0xce, 0x6f, 0xc2, 0x23, 0x5f, 0x14, 0xd4, + 0xb9, 0x25, 0x18, 0x57, 0xcb, 0x65, 0x6c, 0x06, 0x58, 0x76, 0xe9, 0x16, 0x21, 0x60, 0x9a, 0x53, + 0xba, 0xdc, 0xf2, 0x4f, 0xb6, 0xeb, 0x9a, 0xe7, 0xee, 0xf6, 0x59, 0xde, 0xc2, 0x55, 0xac, 0x3f, + 0xa8, 0x63, 0xe7, 0xaa, 0x61, 0xed, 0x72, 0xf3, 0x3e, 0xc8, 0x9a, 0x1a, 0x64, 0x37, 0x98, 0xe1, + 0x03, 0x51, 0x98, 0x62, 0x15, 0xa7, 0xb7, 0x54, 0x1b, 0x9f, 0xbe, 0xf2, 0xf0, 0x16, 0x76, 0xd4, + 0x87, 0x4f, 0x97, 0x0d, 0x4d, 0xe7, 0x3d, 0x31, 0xc1, 0xfb, 0x85, 0xd4, 0xcf, 0xf2, 0xfa, 0x6c, + 0xcb, 0x6d, 0x7a, 0x79, 0x01, 0x62, 0xf3, 0x86, 0xa6, 0xa3, 0x49, 0x88, 0x57, 0xb0, 0x6e, 0xd4, + 0xf9, 0x9d, 0x3b, 0x56, 0x40, 0x77, 0xc2, 0xa0, 0x5a, 0x37, 0x1a, 0xba, 0xc3, 0x4e, 0x28, 0xf2, + 0xc3, 0xdf, 0xb8, 0x31, 0x3d, 0xf0, 0x87, 0x37, 0xa6, 0xa3, 0x8b, 0xba, 0xa3, 0xf0, 0xaa, 0x5c, + 0xec, 0xb5, 0x57, 0xa6, 0x25, 0xf9, 0x29, 0x18, 0x2a, 0xe0, 0xf2, 0x41, 0x78, 0x15, 0x70, 0x39, + 0xc4, 0xeb, 0x3e, 0x48, 0x2c, 0xea, 0x0e, 0xbb, 0x15, 0x79, 0x02, 0xa2, 0x9a, 0xce, 0x2e, 0xda, + 0x84, 0xda, 0x27, 0x70, 0x82, 0x5a, 0xc0, 0x65, 0x17, 0xb5, 0x82, 0xcb, 0x61, 0x54, 0xc2, 0x9e, + 0xc0, 0xf3, 0x85, 0x3f, 0xf8, 0x8f, 0x53, 0x03, 0x2f, 0xbd, 0x3a, 0x35, 0xd0, 0xb6, 0x27, 0xfc, + 0x63, 0x80, 0x9b, 0x98, 0x77, 0x81, 0x5d, 0xd9, 0x65, 0x67, 0x24, 0x6e, 0x37, 0xfc, 0xee, 0x20, + 0xc8, 0x1c, 0xc7, 0x76, 0xd4, 0x5d, 0x4d, 0xaf, 0xba, 0x3d, 0xa1, 0x36, 0x9c, 0x9d, 0x17, 0x79, + 0x57, 0x1c, 0xe6, 0x5d, 0xc1, 0x71, 0x3a, 0xf7, 0x46, 0xb6, 0xfd, 0xe8, 0xca, 0x76, 0xe9, 0x73, + 0xf9, 0x5f, 0x45, 0x01, 0xad, 0x3b, 0xea, 0x2e, 0x9e, 0x6b, 0x38, 0x3b, 0x86, 0xa5, 0xbd, 0xc8, + 0x62, 0x19, 0x06, 0xa8, 0xab, 0x7b, 0x25, 0xc7, 0xd8, 0xc5, 0xba, 0x4d, 0x4d, 0x33, 0x7c, 0xe6, + 0xe8, 0x6c, 0x0b, 0xff, 0x98, 0x25, 0x5d, 0x97, 0xbf, 0xff, 0xf3, 0xdf, 0x9d, 0xbe, 0xb7, 0xbb, + 0x15, 0x28, 0x32, 0x49, 0xae, 0xf7, 0x36, 0x28, 0x63, 0x74, 0x19, 0xd8, 0x25, 0x8b, 0x52, 0x4d, + 0xb3, 0x1d, 0x7e, 0x4f, 0xfb, 0xec, 0x6c, 0x6b, 0xdd, 0x67, 0x9b, 0xc5, 0x9c, 0xbd, 0xac, 0xd6, + 0xb4, 0x8a, 0xea, 0x18, 0x96, 0x7d, 0x71, 0x40, 0x49, 0x52, 0x56, 0x4b, 0x9a, 0xed, 0xa0, 0x0d, + 0x48, 0x56, 0xb0, 0xbe, 0xcf, 0xd8, 0x46, 0xdf, 0x18, 0xdb, 0x04, 0xe1, 0x44, 0xb9, 0x3e, 0x0b, + 0x48, 0xf5, 0xe3, 0x89, 0x87, 0x49, 0xec, 0x7e, 0x65, 0x1b, 0xf6, 0x01, 0xce, 0xf4, 0x1d, 0xc5, + 0xb8, 0x1a, 0x06, 0x65, 0xef, 0x01, 0xf0, 0xda, 0x44, 0x19, 0x18, 0x52, 0x2b, 0x15, 0x0b, 0xdb, + 0x36, 0x3d, 0x00, 0x4c, 0x2a, 0xa2, 0x98, 0x1b, 0xff, 0xd7, 0x5f, 0x79, 0x70, 0x24, 0xc0, 0x31, + 0x9f, 0x02, 0xb8, 0xe2, 0x92, 0x9e, 0xfa, 0xb4, 0x04, 0xe3, 0x4d, 0x2d, 0x22, 0x19, 0xa6, 0xe6, + 0x36, 0x37, 0x2e, 0xae, 0x2a, 0x8b, 0xcf, 0xcd, 0x6d, 0x2c, 0xae, 0xae, 0x94, 0xd8, 0x95, 0xff, + 0x95, 0xf5, 0xb5, 0xe2, 0xfc, 0xe2, 0x85, 0xc5, 0x62, 0x21, 0x3d, 0x80, 0xa6, 0xe1, 0x58, 0x0b, + 0x9c, 0x42, 0x71, 0xa9, 0xb8, 0x30, 0xb7, 0x51, 0x4c, 0x4b, 0xe8, 0x0e, 0x38, 0xd1, 0x92, 0x89, + 0x8b, 0x12, 0x69, 0x83, 0xa2, 0x14, 0x5d, 0x94, 0x68, 0xfe, 0x42, 0xdb, 0x51, 0xf4, 0x40, 0x47, + 0xff, 0xd9, 0x73, 0x87, 0x4b, 0x70, 0x3c, 0xbd, 0x37, 0x02, 0x47, 0xc3, 0x53, 0x86, 0xaa, 0xef, + 0xb7, 0x79, 0xf5, 0xd9, 0x26, 0x9a, 0x5d, 0x84, 0xe8, 0x9c, 0xbe, 0x8f, 0x8e, 0xb2, 0x7c, 0xba, + 0xd4, 0xb0, 0x6a, 0x3c, 0x06, 0x0d, 0x91, 0xf2, 0xa6, 0x55, 0x23, 0xb1, 0x49, 0x5c, 0xf4, 0x97, + 0x4e, 0xa6, 0xf8, 0xed, 0xfd, 0x5c, 0xfa, 0xe3, 0xaf, 0x4c, 0x0f, 0x7c, 0xf1, 0x95, 0xe9, 0x81, + 0x1f, 0x7d, 0x66, 0x7a, 0xe0, 0xa5, 0x3f, 0x9a, 0x19, 0xc8, 0xef, 0x86, 0xd5, 0xfb, 0x5a, 0xd7, + 0xd9, 0x34, 0x31, 0xa7, 0xef, 0xd3, 0x40, 0xb4, 0x26, 0x3d, 0x17, 0xa7, 0xca, 0x89, 0x03, 0xd4, + 0xa9, 0xf0, 0x01, 0xea, 0x33, 0xb8, 0x56, 0xbb, 0xa4, 0x1b, 0x57, 0x69, 0xaf, 0x7a, 0x36, 0xf8, + 0x58, 0x04, 0xa6, 0x9a, 0xa6, 0x4d, 0x9e, 0x61, 0xb4, 0x7b, 0xfe, 0x9a, 0x83, 0x44, 0x41, 0x24, + 0x2e, 0x19, 0x18, 0xb2, 0x71, 0xd9, 0xd0, 0x2b, 0x6c, 0xa4, 0x47, 0x15, 0x51, 0x24, 0x6a, 0xeb, + 0xaa, 0x6e, 0xd8, 0xfc, 0xce, 0x3d, 0x2b, 0xe4, 0x3f, 0x29, 0xf5, 0x97, 0x2f, 0x8c, 0x88, 0x96, + 0x84, 0x9a, 0x0f, 0x77, 0x3d, 0x52, 0xde, 0x25, 0x5a, 0xba, 0x4a, 0x04, 0x8e, 0x95, 0x7b, 0xb5, + 0xca, 0x2f, 0x47, 0x60, 0x3a, 0x6c, 0x15, 0x92, 0xb6, 0xd9, 0x8e, 0x5a, 0x37, 0xdb, 0x99, 0xe5, + 0x3c, 0x24, 0x37, 0x04, 0x4e, 0xdf, 0x76, 0xb9, 0xde, 0xa7, 0x5d, 0x46, 0xdd, 0xa6, 0x84, 0x61, + 0xce, 0xf4, 0x68, 0x18, 0x57, 0x8f, 0x03, 0x59, 0xe6, 0xf3, 0x31, 0x38, 0x41, 0x1f, 0x65, 0x59, + 0x75, 0x4d, 0x77, 0x4e, 0x97, 0xad, 0x7d, 0xd3, 0xa1, 0x89, 0x9b, 0xb1, 0xcd, 0xed, 0x32, 0xee, + 0x55, 0xcf, 0xb2, 0xea, 0x36, 0x23, 0x67, 0x1b, 0xe2, 0x6b, 0x84, 0x8e, 0x58, 0xc4, 0x31, 0x1c, + 0xb5, 0xc6, 0x2d, 0xc5, 0x0a, 0x04, 0xca, 0x1e, 0x72, 0x45, 0x18, 0x54, 0x13, 0x6f, 0xb8, 0x6a, + 0x58, 0xdd, 0x66, 0xf7, 0xe1, 0xa3, 0x74, 0x40, 0x25, 0x08, 0x80, 0x5e, 0x7d, 0x9f, 0x84, 0xb8, + 0xda, 0x60, 0x57, 0x39, 0xa2, 0x64, 0xa4, 0xd1, 0x82, 0x7c, 0x09, 0x86, 0xf8, 0x81, 0x32, 0x4a, + 0x43, 0x74, 0x17, 0xef, 0xd3, 0x76, 0x52, 0x0a, 0xf9, 0x89, 0x66, 0x21, 0x4e, 0x85, 0xe7, 0x13, + 0x48, 0x66, 0xb6, 0x49, 0xfa, 0x59, 0x2a, 0xa4, 0xc2, 0xd0, 0xe4, 0xa7, 0x20, 0x51, 0x30, 0xea, + 0x9a, 0x6e, 0x04, 0xb9, 0x25, 0x19, 0x37, 0x2a, 0xb3, 0xd9, 0xe0, 0xf9, 0x86, 0xc2, 0x0a, 0xe8, + 0x30, 0x0c, 0xb2, 0xf7, 0x11, 0xfc, 0x3a, 0x0a, 0x2f, 0xc9, 0xf3, 0x30, 0x44, 0x79, 0xaf, 0x9a, + 0x08, 0xf1, 0x97, 0x75, 0xfc, 0x21, 0x06, 0x4d, 0x4d, 0x39, 0xfb, 0x88, 0x27, 0x2c, 0x82, 0x58, + 0x45, 0x75, 0x54, 0xae, 0x37, 0xfd, 0x2d, 0xbf, 0x15, 0x12, 0x9c, 0x89, 0x8d, 0xce, 0x40, 0xd4, + 0x30, 0x6d, 0x7e, 0xa1, 0x24, 0xdb, 0x4e, 0x95, 0x55, 0x33, 0x1f, 0x23, 0x99, 0x8a, 0x42, 0x90, + 0xf3, 0x4a, 0xdb, 0xa0, 0xfa, 0xb8, 0x2f, 0xa8, 0xfa, 0xba, 0xdc, 0xf7, 0x93, 0x75, 0x69, 0x93, + 0x3b, 0xb8, 0xce, 0xf2, 0x99, 0x08, 0x4c, 0xf9, 0x6a, 0xaf, 0x60, 0xcb, 0xd6, 0x0c, 0x9d, 0xcf, + 0xe7, 0xcc, 0x5b, 0x90, 0x4f, 0x48, 0x5e, 0xdf, 0xc6, 0x5d, 0xde, 0x02, 0xd1, 0x39, 0xd3, 0x44, + 0x59, 0x48, 0xd0, 0x72, 0xd9, 0x60, 0xfe, 0x12, 0x53, 0xdc, 0x32, 0xa9, 0xb3, 0x8d, 0x6d, 0xe7, + 0xaa, 0x6a, 0xb9, 0x4f, 0x08, 0x45, 0x59, 0x7e, 0x02, 0x92, 0xf3, 0x86, 0x6e, 0x63, 0xdd, 0x6e, + 0xd0, 0x31, 0xb8, 0x55, 0x33, 0xca, 0xbb, 0x9c, 0x03, 0x2b, 0x10, 0x83, 0xab, 0xa6, 0x49, 0x29, + 0x63, 0x0a, 0xf9, 0xc9, 0x72, 0xc3, 0xfc, 0x7a, 0x5b, 0x13, 0x3d, 0xd1, 0xbf, 0x89, 0xb8, 0x92, + 0xae, 0x8d, 0xfe, 0xb7, 0x04, 0xc7, 0x9b, 0x07, 0xd4, 0x2e, 0xde, 0xb7, 0xfb, 0x1d, 0x4f, 0xcf, + 0x42, 0x72, 0x8d, 0xbe, 0xe3, 0xbf, 0x84, 0xf7, 0x51, 0x16, 0x86, 0x70, 0xe5, 0xcc, 0xd9, 0xb3, + 0x0f, 0x3f, 0xc1, 0xbc, 0xfd, 0xe2, 0x80, 0x22, 0x00, 0x68, 0x0a, 0x92, 0x36, 0x2e, 0x9b, 0x67, + 0xce, 0x9e, 0xdb, 0x7d, 0x98, 0xb9, 0x17, 0xc9, 0x80, 0x5c, 0x50, 0x2e, 0x41, 0xb4, 0x7e, 0xed, + 0x33, 0xd3, 0x52, 0x3e, 0x0e, 0x51, 0xbb, 0x51, 0xbf, 0xad, 0x3e, 0xf2, 0x72, 0x1c, 0x66, 0xfc, + 0x94, 0x34, 0x52, 0xb9, 0x59, 0x09, 0xb7, 0x41, 0xda, 0x67, 0x03, 0x8a, 0xd1, 0x26, 0x99, 0xed, + 0x68, 0x49, 0xf9, 0x37, 0x25, 0x48, 0xb9, 0xa9, 0xd2, 0x3a, 0x76, 0xd0, 0x79, 0x7f, 0xfe, 0xc3, + 0x87, 0xcd, 0xb1, 0xd9, 0x70, 0x5b, 0x5e, 0x4a, 0xa7, 0xf8, 0xd0, 0xd1, 0x63, 0xd4, 0x11, 0x4d, + 0xc3, 0xe6, 0xcf, 0xca, 0xba, 0x90, 0xba, 0xc8, 0xe8, 0x01, 0x40, 0x34, 0xc2, 0x95, 0xae, 0x18, + 0x8e, 0xa6, 0x57, 0x4b, 0xa6, 0x71, 0x95, 0x3f, 0xd6, 0x8d, 0x2a, 0x69, 0x5a, 0x73, 0x99, 0x56, + 0xac, 0x11, 0x38, 0x11, 0x3a, 0xe9, 0x72, 0x09, 0xa6, 0x77, 0x24, 0x08, 0x88, 0x22, 0x3a, 0x0f, + 0x43, 0x66, 0x63, 0xab, 0x24, 0x22, 0xc6, 0xf0, 0x99, 0xe3, 0xad, 0xc6, 0xbf, 0xf0, 0x0f, 0x1e, + 0x01, 0x06, 0xcd, 0xc6, 0x16, 0xf1, 0x96, 0x3b, 0x20, 0xd5, 0x42, 0x98, 0xe1, 0x2b, 0x9e, 0x1c, + 0xf4, 0xf3, 0x11, 0x5c, 0x83, 0x92, 0x69, 0x69, 0x86, 0xa5, 0x39, 0xfb, 0x34, 0x7f, 0x8d, 0x2a, + 0x69, 0x51, 0xb1, 0xc6, 0xe1, 0xf2, 0x2e, 0x8c, 0xad, 0xd3, 0xf5, 0xad, 0x27, 0xf9, 0x59, 0x4f, + 0x3e, 0xa9, 0xbb, 0x7c, 0x6d, 0x25, 0x8b, 0x34, 0x49, 0x96, 0x7f, 0xba, 0xad, 0x77, 0x3e, 0xd6, + 0xbf, 0x77, 0x06, 0x33, 0xc4, 0x3f, 0x3d, 0x1a, 0x18, 0x9c, 0xcc, 0x39, 0xfd, 0xe1, 0xab, 0x57, + 0xc7, 0xec, 0x96, 0x4d, 0x64, 0x3b, 0x4f, 0xaa, 0xd9, 0x2e, 0x61, 0x34, 0xdb, 0x75, 0x08, 0xc9, + 0x4f, 0xc0, 0xc8, 0x9a, 0x6a, 0x39, 0xeb, 0xd8, 0xb9, 0x88, 0xd5, 0x0a, 0xb6, 0x82, 0xb3, 0xee, + 0x88, 0x98, 0x75, 0x11, 0xc4, 0xe8, 0xd4, 0xca, 0x66, 0x1d, 0xfa, 0x5b, 0xde, 0x81, 0x18, 0xbd, + 0x19, 0xea, 0xce, 0xc8, 0x9c, 0x82, 0xcd, 0xc8, 0x24, 0x96, 0xee, 0x3b, 0xd8, 0x16, 0xe9, 0x2d, + 0x2d, 0xa0, 0x47, 0xc5, 0xbc, 0x1a, 0xed, 0x3c, 0xaf, 0x72, 0x47, 0xe4, 0xb3, 0x6b, 0x0d, 0x86, + 0xf2, 0x24, 0x14, 0x2f, 0x16, 0x5c, 0x41, 0x24, 0x4f, 0x10, 0xb4, 0x0c, 0x63, 0xa6, 0x6a, 0x39, + 0xf4, 0x49, 0xcc, 0x0e, 0xd5, 0x82, 0xfb, 0xfa, 0x74, 0xf3, 0xc8, 0x0b, 0x28, 0xcb, 0x5b, 0x19, + 0x31, 0xfd, 0x40, 0xf9, 0x4f, 0x62, 0x30, 0xc8, 0x8d, 0xf1, 0x16, 0x18, 0xe2, 0x66, 0xe5, 0xde, + 0x79, 0x62, 0xb6, 0x79, 0x62, 0x9a, 0x75, 0x27, 0x10, 0xce, 0x4f, 0xd0, 0xa0, 0x7b, 0x20, 0x51, + 0xde, 0x51, 0x35, 0xbd, 0xa4, 0x55, 0xc4, 0x56, 0xc3, 0xab, 0x37, 0xa6, 0x87, 0xe6, 0x09, 0x6c, + 0xb1, 0xa0, 0x0c, 0xd1, 0xca, 0xc5, 0x0a, 0xc9, 0x04, 0x76, 0xb0, 0x56, 0xdd, 0x71, 0xf8, 0x08, + 0xe3, 0x25, 0xf4, 0x38, 0xc4, 0x88, 0x43, 0xf0, 0x07, 0x93, 0xd9, 0xa6, 0x0d, 0x1f, 0x37, 0xd9, + 0xcb, 0x27, 0x48, 0xc3, 0x1f, 0xf9, 0xee, 0xb4, 0xa4, 0x50, 0x0a, 0x34, 0x0f, 0x23, 0x35, 0xd5, + 0x76, 0x4a, 0x74, 0x06, 0x23, 0xcd, 0xc7, 0xf9, 0x7a, 0xbb, 0xc9, 0x20, 0xdc, 0xb0, 0x5c, 0xf4, + 0x61, 0x42, 0xc5, 0x40, 0x15, 0x74, 0x12, 0xd2, 0x94, 0x49, 0xd9, 0xa8, 0xd7, 0x35, 0x87, 0xe5, + 0x56, 0x83, 0xd4, 0xee, 0xa3, 0x04, 0x3e, 0x4f, 0xc1, 0x34, 0xc3, 0x3a, 0x06, 0x49, 0xfa, 0x44, + 0x8b, 0xa2, 0xb0, 0xeb, 0xc8, 0x09, 0x02, 0xa0, 0x95, 0xf7, 0xc2, 0x98, 0x17, 0x1f, 0x19, 0x4a, + 0x82, 0x71, 0xf1, 0xc0, 0x14, 0xf1, 0x21, 0x98, 0xd4, 0xf1, 0x1e, 0xbd, 0x20, 0x1d, 0xc0, 0x4e, + 0x52, 0x6c, 0x44, 0xea, 0x2e, 0x07, 0x29, 0xee, 0x86, 0xd1, 0xb2, 0x30, 0x3e, 0xc3, 0x05, 0x8a, + 0x3b, 0xe2, 0x42, 0x29, 0xda, 0x51, 0x48, 0xa8, 0xa6, 0xc9, 0x10, 0x86, 0x79, 0x7c, 0x34, 0x4d, + 0x5a, 0x75, 0x0a, 0xc6, 0xa9, 0x8e, 0x16, 0xb6, 0x1b, 0x35, 0x87, 0x33, 0x49, 0x51, 0x9c, 0x31, + 0x52, 0xa1, 0x30, 0x38, 0xc5, 0xbd, 0x13, 0x46, 0xf0, 0x15, 0xad, 0x82, 0xf5, 0x32, 0x66, 0x78, + 0x23, 0x14, 0x2f, 0x25, 0x80, 0x14, 0xe9, 0x3e, 0x70, 0xe3, 0x5e, 0x49, 0xc4, 0xe4, 0x51, 0xc6, + 0x4f, 0xc0, 0xe7, 0x18, 0x58, 0xce, 0x40, 0xac, 0xa0, 0x3a, 0x2a, 0x49, 0x30, 0x9c, 0x3d, 0x36, + 0xd1, 0xa4, 0x14, 0xf2, 0x53, 0x7e, 0x2d, 0x02, 0xb1, 0xcb, 0x86, 0x83, 0xd1, 0x23, 0xbe, 0x04, + 0x70, 0xb4, 0x95, 0x3f, 0xaf, 0x6b, 0x55, 0x1d, 0x57, 0x96, 0xed, 0xaa, 0xef, 0x7b, 0x0a, 0x9e, + 0x3b, 0x45, 0x02, 0xee, 0x34, 0x09, 0x71, 0xcb, 0x68, 0xe8, 0x15, 0x71, 0x93, 0x97, 0x16, 0x50, + 0x11, 0x12, 0xae, 0x97, 0xc4, 0xba, 0x79, 0xc9, 0x18, 0xf1, 0x12, 0xe2, 0xc3, 0x1c, 0xa0, 0x0c, + 0x6d, 0x71, 0x67, 0xc9, 0x43, 0xd2, 0x0d, 0x5e, 0xdc, 0xdb, 0x7a, 0x73, 0x58, 0x8f, 0x8c, 0x4c, + 0x26, 0x6e, 0xdf, 0xbb, 0xc6, 0x63, 0x1e, 0x97, 0x76, 0x2b, 0xb8, 0xf5, 0x02, 0x6e, 0xc5, 0xbf, + 0xed, 0x30, 0x44, 0xf5, 0xf2, 0xdc, 0x8a, 0x7d, 0xdf, 0xe1, 0x38, 0x24, 0x6d, 0xad, 0xaa, 0xab, + 0x4e, 0xc3, 0xc2, 0xdc, 0xf3, 0x3c, 0x80, 0xfc, 0x35, 0x09, 0x06, 0x99, 0x27, 0xfb, 0xec, 0x26, + 0xb5, 0xb6, 0x5b, 0xa4, 0x9d, 0xdd, 0xa2, 0x07, 0xb7, 0xdb, 0x1c, 0x80, 0x2b, 0x8c, 0xcd, 0x9f, + 0xdc, 0xb7, 0xc8, 0x18, 0x98, 0x88, 0xeb, 0x5a, 0x95, 0x0f, 0x54, 0x1f, 0x91, 0xfc, 0x1f, 0x24, + 0x92, 0xc4, 0xf2, 0x7a, 0x34, 0x07, 0x23, 0x42, 0xae, 0xd2, 0x76, 0x4d, 0xad, 0x72, 0xdf, 0x39, + 0xd1, 0x56, 0xb8, 0x0b, 0x35, 0xb5, 0xaa, 0x0c, 0x73, 0x79, 0x48, 0xa1, 0x75, 0x3f, 0x44, 0xda, + 0xf4, 0x43, 0xa0, 0xe3, 0xa3, 0x07, 0xeb, 0xf8, 0x40, 0x17, 0xc5, 0xc2, 0x5d, 0xf4, 0xe5, 0x08, + 0x5d, 0xcc, 0x98, 0x86, 0xad, 0xd6, 0x7e, 0x1a, 0x23, 0xe2, 0x18, 0x24, 0x4d, 0xa3, 0x56, 0x62, + 0x35, 0xec, 0x86, 0x7b, 0xc2, 0x34, 0x6a, 0x4a, 0x53, 0xb7, 0xc7, 0x6f, 0xd1, 0x70, 0x19, 0xbc, + 0x05, 0x56, 0x1b, 0x0a, 0x5b, 0xcd, 0x82, 0x14, 0x33, 0x05, 0x9f, 0xcb, 0x1e, 0x22, 0x36, 0xa0, + 0x93, 0xa3, 0xd4, 0x3c, 0xf7, 0x32, 0xb1, 0x19, 0xa6, 0xc2, 0xf1, 0x08, 0x05, 0x0b, 0xfd, 0xad, + 0x56, 0xc1, 0x7e, 0xb7, 0x54, 0x38, 0x9e, 0xfc, 0x37, 0x25, 0x80, 0x25, 0x62, 0x59, 0xaa, 0x2f, + 0x99, 0x85, 0x6c, 0x2a, 0x42, 0x29, 0xd0, 0xf2, 0x54, 0xbb, 0x4e, 0xe3, 0xed, 0xa7, 0x6c, 0xbf, + 0xdc, 0xf3, 0x30, 0xe2, 0x39, 0xa3, 0x8d, 0x85, 0x30, 0x53, 0x1d, 0xb2, 0xea, 0x75, 0xec, 0x28, + 0xa9, 0x2b, 0xbe, 0x92, 0xfc, 0xcf, 0x25, 0x48, 0x52, 0x99, 0x96, 0xb1, 0xa3, 0x06, 0xfa, 0x50, + 0x3a, 0x78, 0x1f, 0x9e, 0x00, 0x60, 0x6c, 0x6c, 0xed, 0x45, 0xcc, 0x3d, 0x2b, 0x49, 0x21, 0xeb, + 0xda, 0x8b, 0x18, 0x9d, 0x73, 0x0d, 0x1e, 0xed, 0x6c, 0x70, 0x91, 0x75, 0x73, 0xb3, 0x1f, 0x81, + 0x21, 0xfa, 0x89, 0xaa, 0x3d, 0x9b, 0x27, 0xd2, 0x83, 0x7a, 0xa3, 0xbe, 0xb1, 0x67, 0xcb, 0xcf, + 0xc3, 0xd0, 0xc6, 0x1e, 0xdb, 0x1b, 0x39, 0x06, 0x49, 0xcb, 0x30, 0xf8, 0x9c, 0xcc, 0x72, 0xa1, + 0x04, 0x01, 0xd0, 0x29, 0x48, 0xec, 0x07, 0x44, 0xbc, 0xfd, 0x00, 0x6f, 0x43, 0x23, 0xda, 0xd3, + 0x86, 0xc6, 0xa9, 0x7f, 0x27, 0xc1, 0xb0, 0x2f, 0x3e, 0xa0, 0x87, 0xe1, 0x50, 0x7e, 0x69, 0x75, + 0xfe, 0x52, 0x69, 0xb1, 0x50, 0xba, 0xb0, 0x34, 0xb7, 0xe0, 0xbd, 0xe1, 0xca, 0x1e, 0xbe, 0x76, + 0x7d, 0x06, 0xf9, 0x70, 0x37, 0x75, 0xba, 0xa3, 0x84, 0x4e, 0xc3, 0x64, 0x90, 0x64, 0x2e, 0xbf, + 0x5e, 0x5c, 0xd9, 0x48, 0x4b, 0xd9, 0x43, 0xd7, 0xae, 0xcf, 0x8c, 0xfb, 0x28, 0xe6, 0xb6, 0x6c, + 0xac, 0x3b, 0xcd, 0x04, 0xf3, 0xab, 0xcb, 0xcb, 0x8b, 0x1b, 0xe9, 0x48, 0x13, 0x01, 0x0f, 0xd8, + 0xf7, 0xc1, 0x78, 0x90, 0x60, 0x65, 0x71, 0x29, 0x1d, 0xcd, 0xa2, 0x6b, 0xd7, 0x67, 0x46, 0x7d, + 0xd8, 0x2b, 0x5a, 0x2d, 0x9b, 0xf8, 0xd0, 0x67, 0xa7, 0x06, 0x7e, 0xed, 0x57, 0xa7, 0x24, 0xa2, + 0xd9, 0x48, 0x20, 0x46, 0xa0, 0x07, 0xe0, 0xc8, 0xfa, 0xe2, 0xc2, 0x4a, 0xb1, 0x50, 0x5a, 0x5e, + 0x5f, 0x10, 0x7b, 0xd0, 0x42, 0xbb, 0xb1, 0x6b, 0xd7, 0x67, 0x86, 0xb9, 0x4a, 0xed, 0xb0, 0xd7, + 0x94, 0xe2, 0xe5, 0xd5, 0x8d, 0x62, 0x5a, 0x62, 0xd8, 0x6b, 0x16, 0xbe, 0x62, 0x38, 0xec, 0x1b, + 0x76, 0x0f, 0xc1, 0xd1, 0x16, 0xd8, 0xae, 0x62, 0xe3, 0xd7, 0xae, 0xcf, 0x8c, 0xac, 0x59, 0x98, + 0x8d, 0x1f, 0x4a, 0x31, 0x0b, 0x99, 0x66, 0x8a, 0xd5, 0xb5, 0xd5, 0xf5, 0xb9, 0xa5, 0xf4, 0x4c, + 0x36, 0x7d, 0xed, 0xfa, 0x4c, 0x4a, 0x04, 0x43, 0xba, 0xd1, 0xef, 0x6a, 0x76, 0x3b, 0x57, 0x3c, + 0x3f, 0x9e, 0x85, 0xbb, 0xda, 0x9c, 0x31, 0x89, 0xd3, 0x89, 0x03, 0x9d, 0x32, 0xb5, 0xdd, 0x67, + 0xcf, 0x76, 0xd9, 0x7e, 0xee, 0xbe, 0x74, 0x3a, 0xf8, 0x09, 0x56, 0xb6, 0xe3, 0xe2, 0x4e, 0xfe, + 0xb0, 0x04, 0xa3, 0x17, 0x35, 0xdb, 0x31, 0x2c, 0xad, 0xac, 0xd6, 0xe8, 0xcb, 0xad, 0x73, 0xbd, + 0xc6, 0xd6, 0xd0, 0x50, 0x7f, 0x12, 0x06, 0xaf, 0xa8, 0x35, 0x16, 0xd4, 0xa2, 0xf4, 0x43, 0x33, + 0x6d, 0x8e, 0x7c, 0xdc, 0xd0, 0x26, 0x18, 0x30, 0x32, 0xf9, 0x37, 0x22, 0x30, 0x46, 0x07, 0x83, + 0xcd, 0x3e, 0x41, 0x46, 0xd6, 0x58, 0x79, 0x88, 0x59, 0xaa, 0xc3, 0x37, 0x0d, 0xf3, 0xb3, 0xfc, + 0xf4, 0xf1, 0x9e, 0x1e, 0xce, 0xd2, 0x0a, 0xb8, 0xac, 0x50, 0x5a, 0xf4, 0x4e, 0x48, 0xd4, 0xd5, + 0xbd, 0x12, 0xe5, 0xc3, 0x56, 0x2e, 0x73, 0xfd, 0xf1, 0xb9, 0x79, 0x63, 0x7a, 0x6c, 0x5f, 0xad, + 0xd7, 0x72, 0xb2, 0xe0, 0x23, 0x2b, 0x43, 0x75, 0x75, 0x8f, 0x88, 0x88, 0x4c, 0x18, 0x23, 0xd0, + 0xf2, 0x8e, 0xaa, 0x57, 0x31, 0x6b, 0x84, 0x6e, 0x81, 0xe6, 0x2f, 0xf6, 0xdd, 0xc8, 0x61, 0xaf, + 0x11, 0x1f, 0x3b, 0x59, 0x19, 0xa9, 0xab, 0x7b, 0xf3, 0x14, 0x40, 0x5a, 0xcc, 0x25, 0x3e, 0xfe, + 0xca, 0xf4, 0x00, 0x3d, 0xd1, 0xfd, 0x8e, 0x04, 0xe0, 0x59, 0x0c, 0xbd, 0x13, 0xd2, 0x65, 0xb7, + 0x44, 0x69, 0xc5, 0xd9, 0xe4, 0xbd, 0xed, 0xfa, 0x22, 0x64, 0x6f, 0x36, 0x37, 0x7f, 0xfb, 0xc6, + 0xb4, 0xa4, 0x8c, 0x95, 0x43, 0x5d, 0xf1, 0x0e, 0x18, 0x6e, 0x98, 0x15, 0xd5, 0xc1, 0x25, 0xba, + 0x8e, 0x8b, 0x74, 0x9d, 0xe7, 0xa7, 0x08, 0xaf, 0x9b, 0x37, 0xa6, 0x11, 0x53, 0xcb, 0x47, 0x2c, + 0xd3, 0xd9, 0x1f, 0x18, 0x84, 0x10, 0xf8, 0x74, 0xfa, 0xa6, 0x04, 0xc3, 0x05, 0xdf, 0x9d, 0xca, + 0x0c, 0x0c, 0xd5, 0x0d, 0x5d, 0xdb, 0xe5, 0xfe, 0x98, 0x54, 0x44, 0x11, 0x65, 0x21, 0xc1, 0x1e, + 0xb3, 0x3a, 0xfb, 0x62, 0x2b, 0x54, 0x94, 0x09, 0xd5, 0x55, 0xbc, 0x65, 0x6b, 0xa2, 0x37, 0x14, + 0x51, 0x44, 0x17, 0x20, 0x6d, 0xe3, 0x72, 0xc3, 0xd2, 0x9c, 0xfd, 0x52, 0xd9, 0xd0, 0x1d, 0xb5, + 0xec, 0xb0, 0x67, 0x91, 0xf9, 0x63, 0x37, 0x6f, 0x4c, 0x1f, 0x61, 0xb2, 0x86, 0x31, 0x64, 0x65, + 0x4c, 0x80, 0xe6, 0x19, 0x84, 0xb4, 0x50, 0xc1, 0x8e, 0xaa, 0xd5, 0xec, 0x0c, 0xbb, 0x9c, 0x20, + 0x8a, 0x3e, 0x5d, 0xbe, 0x30, 0xe4, 0xdf, 0xd8, 0xba, 0x00, 0x69, 0xc3, 0xc4, 0x56, 0x20, 0x11, + 0x95, 0xc2, 0x2d, 0x87, 0x31, 0x64, 0x65, 0x4c, 0x80, 0x44, 0x92, 0xea, 0x90, 0x6e, 0x16, 0x0b, + 0x45, 0xb3, 0xb1, 0xe5, 0xed, 0x87, 0x4d, 0x36, 0xf5, 0xc6, 0x9c, 0xbe, 0x9f, 0x7f, 0xc4, 0xe3, + 0x1e, 0xa6, 0x93, 0xbf, 0xf5, 0x95, 0x07, 0x27, 0xb9, 0x6b, 0x78, 0xfb, 0x53, 0x97, 0xf0, 0x3e, + 0xe9, 0x7e, 0x8e, 0xba, 0x46, 0x31, 0x49, 0xda, 0xf9, 0xbc, 0xaa, 0xd5, 0xc4, 0xf3, 0x7e, 0x85, + 0x97, 0x50, 0x0e, 0x06, 0x6d, 0x47, 0x75, 0x1a, 0x36, 0x3f, 0xe9, 0x95, 0xdb, 0xb9, 0x5a, 0xde, + 0xd0, 0x2b, 0xeb, 0x14, 0x53, 0xe1, 0x14, 0xe8, 0x02, 0x0c, 0xf2, 0x23, 0xf4, 0x78, 0xdf, 0xe3, + 0x9b, 0xde, 0x95, 0x60, 0xd4, 0xc4, 0x22, 0x15, 0x5c, 0xc3, 0x55, 0x96, 0x56, 0xed, 0xa8, 0x64, + 0xf5, 0x41, 0xbf, 0xbd, 0x97, 0x5f, 0xec, 0x7b, 0x10, 0x72, 0x4b, 0x85, 0xf9, 0xc9, 0xca, 0x98, + 0x0b, 0x5a, 0xa7, 0x10, 0x74, 0x29, 0x70, 0xf9, 0x97, 0x7f, 0xa0, 0xf2, 0xce, 0x76, 0xea, 0xfb, + 0x7c, 0x5a, 0xec, 0x4f, 0xf8, 0xaf, 0x0e, 0x5f, 0x80, 0x74, 0x43, 0xdf, 0x32, 0x74, 0xfa, 0x06, + 0x97, 0xe7, 0xf7, 0x64, 0x7d, 0x17, 0xf5, 0x3b, 0x47, 0x18, 0x43, 0x56, 0xc6, 0x5c, 0xd0, 0x45, + 0xb6, 0x0a, 0xa8, 0xc0, 0xa8, 0x87, 0x45, 0x07, 0x6a, 0xb2, 0xeb, 0x40, 0xbd, 0x83, 0x0f, 0xd4, + 0x43, 0xe1, 0x56, 0xbc, 0xb1, 0x3a, 0xe2, 0x02, 0x09, 0x19, 0xba, 0x08, 0xe0, 0x85, 0x07, 0xba, + 0x4f, 0x31, 0xdc, 0xbe, 0xe3, 0xbd, 0x18, 0x23, 0xd6, 0x7b, 0x1e, 0x2d, 0x7a, 0x37, 0x4c, 0xd4, + 0x35, 0xbd, 0x64, 0xe3, 0xda, 0x76, 0x89, 0x1b, 0x98, 0xb0, 0xa4, 0x9f, 0x50, 0xca, 0x2f, 0xf5, + 0xe7, 0x0f, 0x37, 0x6f, 0x4c, 0x67, 0x79, 0x08, 0x6d, 0x66, 0x29, 0x2b, 0xe3, 0x75, 0x4d, 0x5f, + 0xc7, 0xb5, 0xed, 0x82, 0x0b, 0xcb, 0xa5, 0x3e, 0xf4, 0xca, 0xf4, 0x00, 0x1f, 0xae, 0x03, 0xf2, + 0x39, 0xba, 0x77, 0xce, 0x87, 0x19, 0xb6, 0xc9, 0x9a, 0x44, 0x15, 0x05, 0x7e, 0xd5, 0xc0, 0x03, + 0xb0, 0x61, 0xfe, 0xd2, 0x1f, 0xcd, 0x48, 0xf2, 0x17, 0x24, 0x18, 0x2c, 0x5c, 0x5e, 0x53, 0x35, + 0x0b, 0x2d, 0xc2, 0xb8, 0xe7, 0x39, 0xc1, 0x41, 0x7e, 0xfc, 0xe6, 0x8d, 0xe9, 0x4c, 0xd8, 0xb9, + 0xdc, 0x51, 0xee, 0x39, 0xb0, 0x18, 0xe6, 0x8b, 0xed, 0x16, 0xae, 0x01, 0x56, 0x4d, 0x28, 0x72, + 0xf3, 0xb2, 0x36, 0xa4, 0x66, 0x11, 0x86, 0x98, 0xb4, 0x36, 0xca, 0x41, 0xdc, 0x24, 0x3f, 0xf8, + 0xc1, 0xc0, 0x54, 0x5b, 0xe7, 0xa5, 0xf8, 0xee, 0x46, 0x26, 0x21, 0x91, 0x3f, 0x1a, 0x01, 0x28, + 0x5c, 0xbe, 0xbc, 0x61, 0x69, 0x66, 0x0d, 0x3b, 0xb7, 0x52, 0xf3, 0x0d, 0x38, 0xe4, 0x5b, 0x25, + 0x59, 0xe5, 0x90, 0xf6, 0x33, 0x37, 0x6f, 0x4c, 0x1f, 0x0f, 0x6b, 0xef, 0x43, 0x93, 0x95, 0x09, + 0x6f, 0xbd, 0x64, 0x95, 0x5b, 0x72, 0xad, 0xd8, 0x8e, 0xcb, 0x35, 0xda, 0x9e, 0xab, 0x0f, 0xcd, + 0xcf, 0xb5, 0x60, 0x3b, 0xad, 0x4d, 0xbb, 0x0e, 0xc3, 0x9e, 0x49, 0x6c, 0x54, 0x80, 0x84, 0xc3, + 0x7f, 0x73, 0x0b, 0xcb, 0xed, 0x2d, 0x2c, 0xc8, 0xb8, 0x95, 0x5d, 0x4a, 0xf9, 0xcf, 0x24, 0x00, + 0xcf, 0x67, 0x7f, 0x36, 0x5d, 0x8c, 0x84, 0x72, 0x1e, 0x78, 0xa3, 0x07, 0x4a, 0xd5, 0x38, 0x75, + 0xc8, 0x9e, 0xbf, 0x10, 0x81, 0x89, 0x4d, 0x11, 0x79, 0x7e, 0xe6, 0x6d, 0xb0, 0x06, 0x43, 0x58, + 0x77, 0x2c, 0x8d, 0x1a, 0x81, 0xf4, 0xf6, 0x43, 0xed, 0x7a, 0xbb, 0x85, 0x4e, 0xf4, 0x23, 0x52, + 0x62, 0xd3, 0x9d, 0xb3, 0x09, 0x59, 0xe3, 0x97, 0xa2, 0x90, 0x69, 0x47, 0x89, 0xe6, 0x61, 0xac, + 0x6c, 0x61, 0x76, 0xf1, 0xca, 0xbf, 0xf3, 0x97, 0xcf, 0x7a, 0x99, 0x65, 0x08, 0x41, 0x56, 0x46, + 0x05, 0x84, 0xcf, 0x1e, 0x55, 0x20, 0x69, 0x1f, 0x71, 0x3b, 0x7a, 0x7f, 0xab, 0xb7, 0x3c, 0x4f, + 0xe6, 0xd3, 0x87, 0x68, 0x24, 0xc8, 0x80, 0xcd, 0x1f, 0xa3, 0x1e, 0x94, 0x4e, 0x20, 0x2f, 0xc0, + 0x98, 0xa6, 0x6b, 0x8e, 0xa6, 0xd6, 0x4a, 0x5b, 0x6a, 0x4d, 0xd5, 0xcb, 0x07, 0xc9, 0x9a, 0x59, + 0xc8, 0xe7, 0xcd, 0x86, 0xd8, 0xc9, 0xca, 0x28, 0x87, 0xe4, 0x19, 0x00, 0x5d, 0x84, 0x21, 0xd1, + 0x54, 0xec, 0x40, 0xd9, 0x86, 0x20, 0xf7, 0x25, 0x78, 0xbf, 0x18, 0x85, 0x71, 0x05, 0x57, 0xfe, + 0x7f, 0x57, 0xf4, 0xd7, 0x15, 0xcb, 0x00, 0x6c, 0xb8, 0x93, 0x00, 0x7b, 0x80, 0xde, 0x20, 0x01, + 0x23, 0xc9, 0x38, 0x14, 0x6c, 0xc7, 0xd7, 0x1f, 0x37, 0x22, 0x90, 0xf2, 0xf7, 0xc7, 0x5f, 0xd0, + 0x59, 0x09, 0x2d, 0x7a, 0x91, 0x28, 0xc6, 0x3f, 0xbd, 0xdb, 0x26, 0x12, 0x35, 0x79, 0x6f, 0xe7, + 0x10, 0xf4, 0x7a, 0x14, 0x06, 0xd7, 0x54, 0x4b, 0xad, 0xdb, 0xa8, 0xdc, 0x94, 0x69, 0x8a, 0xed, + 0xc7, 0xa6, 0x0f, 0xac, 0xf3, 0xdd, 0x8e, 0x2e, 0x89, 0xe6, 0xc7, 0x5b, 0x24, 0x9a, 0x6f, 0x83, + 0x51, 0xb2, 0x1c, 0xf6, 0x5d, 0x61, 0x20, 0xd6, 0x1e, 0xc9, 0x1f, 0xf5, 0xb8, 0x04, 0xeb, 0xd9, + 0x6a, 0xf9, 0xb2, 0xff, 0x0e, 0xc3, 0x30, 0xc1, 0xf0, 0x02, 0x33, 0x21, 0x3f, 0xec, 0x2d, 0x4b, + 0x7d, 0x95, 0xb2, 0x02, 0x75, 0x75, 0xaf, 0xc8, 0x0a, 0x68, 0x09, 0xd0, 0x8e, 0xbb, 0x33, 0x52, + 0xf2, 0xcc, 0x49, 0xe8, 0x4f, 0xdc, 0xbc, 0x31, 0x7d, 0x94, 0xd1, 0x37, 0xe3, 0xc8, 0xca, 0xb8, + 0x07, 0x14, 0xdc, 0x1e, 0x05, 0x20, 0x7a, 0x95, 0xd8, 0x15, 0x6e, 0xb6, 0xdc, 0x39, 0x74, 0xf3, + 0xc6, 0xf4, 0x38, 0xe3, 0xe2, 0xd5, 0xc9, 0x4a, 0x92, 0x14, 0x0a, 0xf4, 0x76, 0x37, 0xcf, 0x8e, + 0x43, 0xab, 0x7a, 0xbe, 0xb6, 0x59, 0xea, 0x7b, 0x6d, 0xe3, 0xcb, 0x8e, 0x43, 0x2c, 0x59, 0x76, + 0x1c, 0xdc, 0x0d, 0xf0, 0x8d, 0xab, 0xcf, 0x4a, 0x80, 0xbc, 0x09, 0x47, 0xc1, 0xb6, 0x49, 0x56, + 0x87, 0x64, 0x19, 0xe0, 0xcb, 0xd9, 0xa5, 0xce, 0xcb, 0x00, 0x8f, 0x5e, 0x2c, 0x03, 0x7c, 0xe3, + 0xf4, 0x09, 0x2f, 0x38, 0x47, 0xba, 0xdd, 0xa6, 0xe6, 0x0e, 0x1a, 0x8e, 0xc6, 0x03, 0xf2, 0xbf, + 0x94, 0xe0, 0x68, 0x93, 0x3f, 0xbb, 0xc2, 0xfe, 0x25, 0x40, 0x96, 0xaf, 0x92, 0x7f, 0xc5, 0x91, + 0x09, 0xdd, 0xf7, 0xf0, 0x18, 0xb7, 0x9a, 0xa2, 0xfe, 0xad, 0x9b, 0x5f, 0xd8, 0x75, 0xfd, 0x7f, + 0x26, 0xc1, 0xa4, 0xbf, 0x79, 0x57, 0x91, 0x15, 0x48, 0xf9, 0x5b, 0xe7, 0x2a, 0xdc, 0xd5, 0x8b, + 0x0a, 0x5c, 0xfa, 0x00, 0x3d, 0x7a, 0xda, 0x0b, 0x16, 0x6c, 0xe7, 0xee, 0xe1, 0x9e, 0xad, 0x21, + 0x64, 0x0a, 0x07, 0x8d, 0x18, 0xed, 0x8f, 0xff, 0x23, 0x41, 0x6c, 0xcd, 0x30, 0x6a, 0xc8, 0x80, + 0x71, 0xdd, 0x70, 0x4a, 0xc4, 0xaf, 0x71, 0xc5, 0x7f, 0x6b, 0x3e, 0x99, 0x9f, 0xef, 0xcf, 0x48, + 0x3f, 0xb8, 0x31, 0xdd, 0xcc, 0x4a, 0x19, 0xd3, 0x0d, 0x27, 0x4f, 0x21, 0xfc, 0xe2, 0xfc, 0xbb, + 0x61, 0x24, 0xd8, 0x18, 0x8b, 0xd1, 0xcf, 0xf4, 0xdd, 0x58, 0x90, 0xcd, 0xcd, 0x1b, 0xd3, 0x93, + 0xde, 0x78, 0x75, 0xc1, 0xb2, 0x92, 0xda, 0xf2, 0xb5, 0xce, 0x2e, 0x97, 0xfd, 0xe8, 0x95, 0x69, + 0xe9, 0xd4, 0x57, 0x25, 0x00, 0x6f, 0xdf, 0x03, 0x3d, 0x00, 0x47, 0xf2, 0xab, 0x2b, 0x85, 0xd2, + 0xfa, 0xc6, 0xdc, 0xc6, 0xe6, 0x7a, 0xf0, 0x86, 0xb9, 0xd8, 0x9c, 0xb7, 0x4d, 0x5c, 0xd6, 0xb6, + 0x35, 0x5c, 0x41, 0xf7, 0xc0, 0x64, 0x10, 0x9b, 0x94, 0x8a, 0x85, 0xb4, 0x94, 0x4d, 0x5d, 0xbb, + 0x3e, 0x93, 0x60, 0x99, 0x20, 0xae, 0xa0, 0x93, 0x70, 0xa8, 0x19, 0x6f, 0x71, 0x65, 0x21, 0x1d, + 0xc9, 0x8e, 0x5c, 0xbb, 0x3e, 0x93, 0x74, 0x53, 0x46, 0x24, 0x03, 0xf2, 0x63, 0x72, 0x7e, 0xd1, + 0x2c, 0x5c, 0xbb, 0x3e, 0x33, 0xc8, 0x0c, 0x98, 0x8d, 0x7d, 0xe8, 0xb3, 0x53, 0x03, 0xb7, 0xfc, + 0x1e, 0xfa, 0x8f, 0x87, 0xda, 0xee, 0xb9, 0x57, 0xb1, 0x8e, 0x6d, 0xcd, 0x3e, 0xd0, 0x9e, 0x7b, + 0x4f, 0xfb, 0xf8, 0xf2, 0xef, 0xc7, 0x21, 0xb5, 0xc0, 0x5a, 0x21, 0x1d, 0x81, 0xd1, 0xcf, 0xc1, + 0xa0, 0x49, 0x27, 0x31, 0xf7, 0x10, 0xaf, 0x8d, 0xc3, 0xb3, 0xa9, 0xce, 0xbd, 0x49, 0xc6, 0x26, + 0x3e, 0x9b, 0x5f, 0x25, 0x61, 0x37, 0xdc, 0xbc, 0x3b, 0x5b, 0xa9, 0xbe, 0x76, 0x9b, 0x58, 0xc6, + 0xc4, 0x37, 0x76, 0xc2, 0xfc, 0x64, 0x76, 0x2b, 0x65, 0x83, 0x40, 0xd8, 0xdd, 0xb4, 0x0f, 0x48, + 0x70, 0x88, 0x62, 0x79, 0x69, 0x00, 0xc5, 0x14, 0x4b, 0x8d, 0x53, 0xed, 0x54, 0x58, 0x52, 0x6d, + 0xef, 0xa6, 0x09, 0xbb, 0x4d, 0x76, 0x17, 0x9f, 0x86, 0x8f, 0xfb, 0x1a, 0x0f, 0xb3, 0x95, 0x95, + 0x89, 0x5a, 0x13, 0xa5, 0x8d, 0x16, 0x02, 0xd7, 0x09, 0x63, 0xfd, 0x6d, 0xf4, 0xfb, 0xaf, 0x16, + 0x3e, 0x05, 0xc3, 0x5e, 0x2c, 0xb1, 0xf9, 0x7f, 0x9d, 0xe9, 0x7d, 0xee, 0xf0, 0x13, 0xa3, 0x0f, + 0x4a, 0x70, 0xc8, 0xcb, 0x25, 0xfc, 0x6c, 0xd9, 0x7f, 0xe7, 0xb9, 0xbf, 0x8f, 0x65, 0x58, 0xd8, + 0x38, 0x2d, 0xf9, 0xca, 0xca, 0x64, 0xa3, 0x99, 0x94, 0x2c, 0x00, 0x47, 0xfc, 0x91, 0xd5, 0xce, + 0x88, 0x0f, 0x50, 0xf6, 0x1e, 0x9a, 0x83, 0x0c, 0xd8, 0x7f, 0x0c, 0x31, 0x0d, 0xcb, 0xc1, 0x15, + 0xba, 0x1d, 0x98, 0x50, 0xdc, 0xb2, 0xbc, 0x02, 0xa8, 0xb9, 0x73, 0xc3, 0xd7, 0x27, 0xbd, 0xd7, + 0x31, 0x68, 0x12, 0xe2, 0xfe, 0x0b, 0x86, 0xac, 0x90, 0x4b, 0x7c, 0x88, 0x4f, 0x9f, 0xb7, 0x7c, + 0xcc, 0x7f, 0x37, 0x02, 0xa7, 0xfc, 0x87, 0x53, 0x2f, 0x34, 0xb0, 0xb5, 0xef, 0x0e, 0x51, 0x53, + 0xad, 0x6a, 0xba, 0xff, 0x0d, 0xc6, 0x51, 0xff, 0x84, 0x4f, 0x71, 0x85, 0x9d, 0xe4, 0x0f, 0x49, + 0x30, 0xbc, 0xa6, 0x56, 0xb1, 0x82, 0x5f, 0x68, 0x60, 0xdb, 0x69, 0x71, 0xc7, 0xfd, 0x30, 0x0c, + 0x1a, 0xdb, 0xdb, 0xe2, 0x44, 0x3d, 0xa6, 0xf0, 0x12, 0xd1, 0xb9, 0xa6, 0xd5, 0x35, 0x76, 0x19, + 0x2d, 0xa6, 0xb0, 0x02, 0x9a, 0x86, 0xe1, 0xb2, 0xd1, 0xd0, 0xf9, 0x90, 0xcb, 0xc4, 0xc4, 0x97, + 0x5e, 0x1a, 0x3a, 0x1b, 0x72, 0xc4, 0x88, 0x16, 0xbe, 0x82, 0x2d, 0x9b, 0x7d, 0xdb, 0x32, 0xa1, + 0x88, 0xa2, 0xfc, 0x24, 0xa4, 0x98, 0x24, 0x7c, 0x32, 0x3e, 0x0a, 0x09, 0x7a, 0xcf, 0xcb, 0x93, + 0x67, 0x88, 0x94, 0x2f, 0xb1, 0x9b, 0xf2, 0x8c, 0x3f, 0x13, 0x89, 0x15, 0xf2, 0xf9, 0xb6, 0x56, + 0x3e, 0xd9, 0x3d, 0x6a, 0x30, 0x1b, 0xba, 0x16, 0xfe, 0xed, 0x38, 0x1c, 0xe2, 0x47, 0x87, 0xaa, + 0xa9, 0x9d, 0xde, 0x71, 0x1c, 0xf1, 0x72, 0x03, 0x78, 0x0e, 0xae, 0x9a, 0x9a, 0xbc, 0x0f, 0xb1, + 0x8b, 0x8e, 0x63, 0xa2, 0x53, 0x10, 0xb7, 0x1a, 0x35, 0x2c, 0xb6, 0xa2, 0xdc, 0xc3, 0x02, 0xd5, + 0xd4, 0x66, 0x09, 0x82, 0xd2, 0xa8, 0x61, 0x85, 0xa1, 0xa0, 0x22, 0x4c, 0x6f, 0x37, 0x6a, 0xb5, + 0xfd, 0x52, 0x05, 0xd3, 0x7f, 0xd6, 0xe5, 0xfe, 0xbb, 0x0b, 0xbc, 0x67, 0xaa, 0xe2, 0xa3, 0x99, + 0xc4, 0x30, 0xc7, 0x29, 0x5a, 0x81, 0x62, 0x89, 0x7f, 0x75, 0x51, 0x14, 0x38, 0xf2, 0x1f, 0x46, + 0x20, 0x21, 0x58, 0xd3, 0xab, 0xeb, 0xb8, 0x86, 0xcb, 0x8e, 0x21, 0x8e, 0x72, 0xdc, 0x32, 0x42, + 0x10, 0xad, 0xf2, 0xce, 0x4b, 0x5e, 0x1c, 0x50, 0x48, 0x81, 0xc0, 0xdc, 0x07, 0x05, 0x04, 0x66, + 0x36, 0x48, 0x7f, 0xc6, 0x4c, 0x43, 0xac, 0x19, 0x2f, 0x0e, 0x28, 0xb4, 0x84, 0x32, 0x30, 0x48, + 0x06, 0x8d, 0xc3, 0x7a, 0x8b, 0xc0, 0x79, 0x19, 0x1d, 0x86, 0xb8, 0xa9, 0x3a, 0x65, 0x76, 0xd7, + 0x8f, 0x54, 0xb0, 0x22, 0x7a, 0x0c, 0x06, 0xd9, 0x9b, 0xf0, 0xf0, 0x7f, 0xc2, 0x21, 0xc6, 0x60, + 0x1f, 0xdf, 0x23, 0x72, 0xaf, 0xa9, 0x8e, 0x83, 0x2d, 0x9d, 0x30, 0x64, 0xe8, 0x08, 0x41, 0x6c, + 0xcb, 0xa8, 0xec, 0xf3, 0xff, 0xce, 0x43, 0x7f, 0xf3, 0x7f, 0x07, 0x42, 0xfd, 0xa1, 0x44, 0x2b, + 0xd9, 0x3f, 0x25, 0x4b, 0x09, 0x60, 0x9e, 0x20, 0x15, 0x61, 0x42, 0xad, 0x54, 0x34, 0xf6, 0x8f, + 0x72, 0x4a, 0x5b, 0x1a, 0x0d, 0x1e, 0x36, 0xfd, 0x97, 0x73, 0xed, 0xfa, 0x02, 0x79, 0x04, 0x79, + 0x8e, 0x9f, 0x4f, 0xc2, 0x90, 0xc9, 0x84, 0x92, 0xcf, 0xc3, 0x78, 0x93, 0xa4, 0x44, 0xbe, 0x5d, + 0x4d, 0xaf, 0x88, 0x57, 0x16, 0xe4, 0x37, 0x81, 0xd1, 0xcf, 0x65, 0xb2, 0x43, 0x32, 0xfa, 0x3b, + 0xff, 0xbe, 0xf6, 0x8f, 0x71, 0x46, 0x7d, 0x8f, 0x71, 0x54, 0x53, 0xcb, 0x27, 0x29, 0x7f, 0xfe, + 0x04, 0x67, 0xae, 0xf9, 0x09, 0x4e, 0x15, 0xeb, 0x62, 0x62, 0x26, 0x55, 0xaa, 0xa9, 0xd9, 0xd4, + 0x1d, 0xbd, 0xcf, 0x77, 0xda, 0xe7, 0x7d, 0xbf, 0xe9, 0x8b, 0x9c, 0xd8, 0xc2, 0xdc, 0xda, 0xa2, + 0xeb, 0xc7, 0x5f, 0x8f, 0xc0, 0x71, 0x9f, 0x1f, 0xfb, 0x90, 0x9b, 0xdd, 0x39, 0xdb, 0xda, 0xe3, + 0x7b, 0x78, 0x19, 0x7d, 0x09, 0x62, 0x04, 0x1f, 0x75, 0xf9, 0x67, 0x1d, 0x99, 0x2f, 0x7e, 0xeb, + 0x9f, 0xca, 0xc1, 0xe3, 0xb4, 0x40, 0xaf, 0x50, 0x26, 0xf9, 0x0f, 0xf6, 0x6e, 0xbf, 0xb4, 0xf7, + 0xe5, 0x52, 0xfb, 0xd6, 0x99, 0x31, 0x6c, 0xc3, 0xef, 0x9f, 0x6d, 0xfb, 0x72, 0x96, 0x05, 0xd3, + 0xce, 0xf9, 0x55, 0x1f, 0x91, 0xba, 0xdd, 0xc3, 0x84, 0x4e, 0x3d, 0xd8, 0x63, 0xa6, 0xb6, 0x07, + 0x87, 0x9f, 0x26, 0x6d, 0x7b, 0xeb, 0x77, 0x11, 0xf2, 0x0f, 0xbb, 0xc7, 0x8c, 0x12, 0xff, 0x8f, + 0x7f, 0xe2, 0x08, 0x11, 0x3c, 0xf9, 0xf8, 0xda, 0xf1, 0x9e, 0xd9, 0xb6, 0x53, 0xc9, 0xac, 0x6f, + 0x1a, 0x51, 0x7c, 0x94, 0xf2, 0xaf, 0x4b, 0x70, 0xa4, 0xa9, 0x69, 0x1e, 0xe3, 0x17, 0x5a, 0xbc, + 0xa1, 0x38, 0x50, 0xd2, 0xb3, 0xd0, 0x42, 0xd8, 0x7b, 0xbb, 0x0a, 0xcb, 0xa4, 0x08, 0x48, 0xfb, + 0x56, 0x38, 0x14, 0x14, 0x56, 0x98, 0xe9, 0x6e, 0x18, 0x0d, 0x6e, 0x55, 0x73, 0x73, 0x8d, 0x04, + 0x36, 0xab, 0xe5, 0x52, 0xd8, 0xce, 0xae, 0xae, 0x45, 0x48, 0xba, 0xa8, 0x3c, 0x3b, 0xee, 0x59, + 0x55, 0x8f, 0x52, 0xfe, 0xa8, 0x04, 0x33, 0xc1, 0x16, 0x7c, 0x79, 0x52, 0x7f, 0xc2, 0xde, 0xb2, + 0x2e, 0x7e, 0x4d, 0x82, 0x3b, 0x3a, 0xc8, 0xc4, 0x0d, 0xf0, 0x22, 0x4c, 0xfa, 0x36, 0x09, 0x44, + 0x08, 0x17, 0xdd, 0x7e, 0xaa, 0x7b, 0x86, 0xea, 0xae, 0x89, 0x8f, 0x11, 0xa3, 0x7c, 0xfe, 0xbb, + 0xd3, 0x13, 0xcd, 0x75, 0xb6, 0x32, 0xd1, 0xbc, 0xb0, 0xbf, 0x85, 0xfe, 0xf1, 0xb2, 0x04, 0xf7, + 0x05, 0x55, 0x6d, 0x91, 0xea, 0xbe, 0x59, 0xfd, 0xf0, 0xef, 0x25, 0x38, 0xd5, 0x8b, 0x70, 0xbc, + 0x43, 0xb6, 0x60, 0xc2, 0x4b, 0xc2, 0xc3, 0xfd, 0xd1, 0x57, 0x6a, 0xcf, 0xbc, 0x14, 0xb9, 0xdc, + 0x6e, 0x83, 0xe1, 0x4d, 0x3e, 0xb0, 0xfc, 0x5d, 0xee, 0x1a, 0x39, 0xb8, 0xcd, 0x2c, 0x8c, 0x1c, + 0xd8, 0x68, 0x6e, 0xd1, 0x17, 0x91, 0x16, 0x7d, 0xe1, 0x65, 0xed, 0xf2, 0x15, 0x1e, 0xb7, 0x5a, + 0x6c, 0xcf, 0xbd, 0x03, 0x26, 0x5a, 0xb8, 0x32, 0x1f, 0xd5, 0x7d, 0x78, 0xb2, 0x82, 0x9a, 0x9d, + 0x55, 0xde, 0x87, 0x69, 0xda, 0x6e, 0x0b, 0x43, 0xdf, 0x6e, 0x95, 0xeb, 0x3c, 0xb6, 0xb4, 0x6c, + 0x9a, 0xeb, 0xbe, 0x08, 0x83, 0xac, 0x9f, 0xb9, 0xba, 0x07, 0x70, 0x14, 0xce, 0x40, 0xfe, 0xa4, + 0x88, 0x65, 0x05, 0x21, 0x76, 0xeb, 0x31, 0xd4, 0x8b, 0xae, 0xb7, 0x68, 0x0c, 0xf9, 0x8c, 0xf1, + 0x1d, 0x11, 0xd5, 0x5a, 0x4b, 0xc7, 0xcd, 0x51, 0xbe, 0x65, 0x51, 0x8d, 0xd9, 0xe6, 0xf6, 0x86, + 0xaf, 0x5f, 0x15, 0xe1, 0xcb, 0xd5, 0xa9, 0x4b, 0xf8, 0x7a, 0x73, 0x4c, 0xef, 0x06, 0xb2, 0x2e, + 0x62, 0xfe, 0x79, 0x0c, 0x64, 0x3f, 0x92, 0xe0, 0x28, 0xd5, 0xcd, 0xbf, 0x47, 0xd1, 0xaf, 0xc9, + 0x1f, 0x00, 0x64, 0x5b, 0xe5, 0x52, 0xcb, 0xd1, 0x9d, 0xb6, 0xad, 0xf2, 0xe5, 0xc0, 0xfc, 0xf2, + 0x00, 0xa0, 0x4a, 0x60, 0x27, 0x8a, 0x62, 0xb3, 0xeb, 0x7b, 0xe9, 0x8a, 0x6f, 0xa3, 0xa3, 0x45, + 0x77, 0xc6, 0x6e, 0x41, 0x77, 0x7e, 0x5b, 0x82, 0x6c, 0x2b, 0x95, 0x79, 0xf7, 0x69, 0x70, 0x38, + 0x70, 0x7e, 0x10, 0xee, 0xc1, 0x07, 0x7a, 0xd9, 0xe5, 0x09, 0x0d, 0xa3, 0x43, 0x16, 0xbe, 0xdd, + 0x79, 0xc0, 0x74, 0xd0, 0x43, 0x9b, 0x33, 0xeb, 0x37, 0x6d, 0xf8, 0x7c, 0xa5, 0x29, 0xae, 0xfe, + 0xb9, 0xc8, 0xbd, 0xf7, 0x60, 0xaa, 0x8d, 0xd4, 0xb7, 0x7b, 0xde, 0xdb, 0x69, 0xdb, 0x99, 0xb7, + 0x3a, 0x7d, 0x7f, 0x94, 0x8f, 0x84, 0xe0, 0xd5, 0x70, 0xdf, 0x5a, 0xac, 0xd5, 0xdb, 0x32, 0xf9, + 0xed, 0x70, 0xac, 0x25, 0x15, 0x97, 0x2d, 0x07, 0xb1, 0x1d, 0xcd, 0x76, 0xb8, 0x58, 0xf7, 0xb4, + 0x13, 0x2b, 0x44, 0x4d, 0x69, 0x64, 0x04, 0x69, 0xca, 0x7a, 0xcd, 0x30, 0x6a, 0x5c, 0x0c, 0xf9, + 0x12, 0x8c, 0xfb, 0x60, 0xbc, 0x91, 0x73, 0x10, 0x33, 0x0d, 0xfe, 0xdd, 0x84, 0xe1, 0x33, 0xc7, + 0xdb, 0x6e, 0xec, 0x1b, 0x46, 0x8d, 0xab, 0x4d, 0xf1, 0xe5, 0x49, 0x40, 0x8c, 0x19, 0xdd, 0xe3, + 0x17, 0x4d, 0xac, 0xc3, 0x44, 0x00, 0xca, 0x1b, 0x79, 0x43, 0xe7, 0x07, 0x67, 0x7e, 0x70, 0x08, + 0xe2, 0x94, 0x2b, 0xfa, 0x84, 0x14, 0xf8, 0xb0, 0xd1, 0x6c, 0x3b, 0x36, 0xad, 0xd7, 0xc4, 0xd9, + 0xd3, 0x3d, 0xe3, 0xf3, 0x9c, 0xed, 0xd4, 0xfb, 0xfe, 0xcd, 0xf7, 0x3f, 0x16, 0xb9, 0x0b, 0xc9, + 0xa7, 0xdb, 0xac, 0xc6, 0x7d, 0xe3, 0xe5, 0x73, 0x81, 0x47, 0xf9, 0x0f, 0xf6, 0xd6, 0x94, 0x90, + 0x6c, 0xb6, 0x57, 0x74, 0x2e, 0xd8, 0x79, 0x2a, 0xd8, 0x59, 0xf4, 0x48, 0x77, 0xc1, 0x4e, 0xbf, + 0x2b, 0x38, 0x68, 0xde, 0x83, 0x7e, 0x5f, 0x82, 0xc9, 0x56, 0x4b, 0x3a, 0xf4, 0x78, 0x6f, 0x52, + 0x34, 0xa7, 0x14, 0xd9, 0x27, 0x0e, 0x40, 0xc9, 0x55, 0x59, 0xa0, 0xaa, 0xcc, 0xa1, 0x27, 0x0f, + 0xa0, 0xca, 0x69, 0xff, 0xd6, 0xff, 0xff, 0x92, 0xe0, 0x44, 0xc7, 0x15, 0x12, 0x9a, 0xeb, 0x4d, + 0xca, 0x0e, 0xb9, 0x53, 0x36, 0xff, 0x46, 0x58, 0x70, 0x8d, 0x9f, 0xa6, 0x1a, 0x5f, 0x42, 0x8b, + 0x07, 0xd1, 0xb8, 0xe5, 0xf9, 0x0a, 0xfa, 0x9d, 0xe0, 0x95, 0xc7, 0xce, 0xee, 0xd4, 0xb4, 0xf0, + 0xe8, 0x32, 0x30, 0x9a, 0x93, 0x5a, 0xf9, 0x59, 0xaa, 0x82, 0x82, 0xd6, 0xde, 0x60, 0xa7, 0x9d, + 0x7e, 0x57, 0x30, 0xf0, 0xbf, 0x07, 0xfd, 0x4f, 0xa9, 0xf5, 0x0d, 0xc6, 0xc7, 0x3a, 0x8a, 0xd8, + 0x7e, 0x51, 0x95, 0x7d, 0xbc, 0x7f, 0x42, 0xae, 0x64, 0x9d, 0x2a, 0x59, 0x45, 0xf8, 0x56, 0x2b, + 0xd9, 0xb2, 0x13, 0xd1, 0x37, 0x25, 0x98, 0x6c, 0xb5, 0x26, 0xe9, 0x32, 0x2c, 0x3b, 0x2c, 0xb2, + 0xba, 0x0c, 0xcb, 0x4e, 0x0b, 0x20, 0xf9, 0xe7, 0xa8, 0xf2, 0xe7, 0xd0, 0xa3, 0xed, 0x94, 0xef, + 0xd8, 0x8b, 0x64, 0x2c, 0x76, 0x4c, 0xf2, 0xbb, 0x8c, 0xc5, 0x5e, 0xd6, 0x31, 0x5d, 0xc6, 0x62, + 0x4f, 0x6b, 0x8c, 0xee, 0x63, 0xd1, 0xd5, 0xac, 0xc7, 0x6e, 0xb4, 0xd1, 0xd7, 0x25, 0x18, 0x09, + 0x64, 0xc4, 0xe8, 0xe1, 0x8e, 0x82, 0xb6, 0x5a, 0x30, 0x64, 0xcf, 0xf4, 0x43, 0xc2, 0x75, 0x59, + 0xa4, 0xba, 0xcc, 0xa3, 0xb9, 0x83, 0xe8, 0x12, 0x3c, 0x46, 0xfd, 0xb6, 0x04, 0x13, 0x2d, 0xb2, + 0xcc, 0x2e, 0xa3, 0xb0, 0x7d, 0xd2, 0x9c, 0x7d, 0xbc, 0x7f, 0x42, 0xae, 0xd5, 0x05, 0xaa, 0xd5, + 0xdb, 0xd0, 0x5b, 0x0f, 0xa2, 0x95, 0x6f, 0x7e, 0xbe, 0xe1, 0x5d, 0xc9, 0xf2, 0xb5, 0x83, 0xce, + 0xf5, 0x29, 0x98, 0x50, 0xe8, 0xb1, 0xbe, 0xe9, 0xb8, 0x3e, 0xcf, 0x50, 0x7d, 0x9e, 0x46, 0xab, + 0x6f, 0x4c, 0x9f, 0xe6, 0x69, 0xfd, 0xcb, 0xcd, 0x4f, 0x13, 0x3b, 0x7b, 0x51, 0xcb, 0x64, 0x35, + 0xfb, 0x48, 0x5f, 0x34, 0x5c, 0xa9, 0xc7, 0xa9, 0x52, 0x67, 0xd0, 0x43, 0xed, 0x94, 0xf2, 0xdd, + 0xfa, 0xd3, 0xf4, 0x6d, 0xe3, 0xf4, 0xbb, 0x58, 0x0a, 0xfc, 0x1e, 0xf4, 0x5e, 0x71, 0xe7, 0xe9, + 0x64, 0xc7, 0x76, 0x7d, 0x79, 0x6c, 0xf6, 0xbe, 0x1e, 0x30, 0xb9, 0x5c, 0x77, 0x51, 0xb9, 0xa6, + 0xd0, 0xf1, 0x76, 0x72, 0x91, 0x5c, 0x16, 0x7d, 0x58, 0x72, 0x2f, 0x69, 0x9e, 0xea, 0xcc, 0xdb, + 0x9f, 0xec, 0x66, 0xef, 0xef, 0x09, 0x97, 0x4b, 0x72, 0x0f, 0x95, 0x64, 0x06, 0x4d, 0xb5, 0x95, + 0x84, 0xa5, 0xbe, 0xb7, 0xfa, 0x52, 0xc1, 0xb5, 0x23, 0x30, 0xdd, 0xa6, 0x45, 0x67, 0xaf, 0xcb, + 0x19, 0x57, 0x87, 0x17, 0xba, 0x5d, 0x5f, 0xe0, 0xde, 0xea, 0x2f, 0xcb, 0xf6, 0x78, 0x20, 0xf6, + 0xbb, 0x31, 0x40, 0xcb, 0x76, 0x75, 0xde, 0xc2, 0xec, 0xbf, 0x5c, 0xf2, 0x51, 0x1e, 0x7a, 0x7a, + 0x26, 0xbd, 0xa1, 0xa7, 0x67, 0xcb, 0x81, 0xc7, 0x5c, 0x91, 0xfe, 0x1e, 0x8c, 0xf6, 0xfc, 0xa2, + 0x2b, 0xfa, 0x53, 0x79, 0xd1, 0xd5, 0xfa, 0xc2, 0x77, 0xec, 0xd6, 0xbd, 0x0c, 0x89, 0x1f, 0xf4, + 0x75, 0x0c, 0x7f, 0xa8, 0x39, 0xd8, 0xe1, 0xa1, 0x66, 0xa6, 0xed, 0x6b, 0x4c, 0x4e, 0x8d, 0xce, + 0x8a, 0xef, 0xac, 0x0e, 0xf5, 0x76, 0x49, 0x96, 0x7f, 0x88, 0xd5, 0xdb, 0x42, 0x38, 0x0e, 0xd9, + 0x66, 0x77, 0x72, 0x07, 0xf5, 0xc7, 0xa2, 0x90, 0x5e, 0xb6, 0xab, 0xc5, 0x8a, 0xe6, 0xdc, 0x26, + 0x5f, 0x7b, 0xb2, 0xfd, 0x6b, 0x1b, 0x74, 0xf3, 0xc6, 0xf4, 0x28, 0xb3, 0x69, 0x07, 0x4b, 0xd6, + 0x61, 0x2c, 0x7c, 0x1b, 0x9a, 0x79, 0x56, 0xe1, 0x20, 0x4f, 0xad, 0x9b, 0x6e, 0x41, 0x8f, 0x06, + 0x5f, 0x3d, 0xa3, 0xbd, 0xd6, 0xce, 0xcc, 0x1c, 0xea, 0xe2, 0xed, 0x7c, 0x9a, 0xe8, 0xf5, 0x59, + 0x16, 0x32, 0xe1, 0x4e, 0x71, 0x7b, 0xec, 0x4f, 0x24, 0x18, 0x5e, 0xb6, 0x45, 0x2a, 0x88, 0x7f, + 0x46, 0x1f, 0x46, 0x3d, 0xe6, 0x7e, 0xa4, 0x3c, 0xda, 0x9b, 0xdf, 0x8a, 0x0f, 0x97, 0x7b, 0x46, + 0x38, 0x04, 0x13, 0x3e, 0x3d, 0x5d, 0xfd, 0x7f, 0x2f, 0x42, 0xe3, 0x63, 0x1e, 0x57, 0x35, 0xdd, + 0xcd, 0x22, 0xf1, 0x5f, 0xd4, 0x67, 0x1f, 0x9e, 0x9d, 0x63, 0x07, 0xb5, 0xf3, 0x2e, 0x0d, 0x10, + 0x21, 0x7b, 0xba, 0x1b, 0x5f, 0xcb, 0xcd, 0x8f, 0x92, 0xa4, 0x3e, 0xbe, 0xf7, 0x13, 0x7a, 0x7a, + 0x24, 0xbf, 0x26, 0xc1, 0xc8, 0xb2, 0x5d, 0xdd, 0xd4, 0x2b, 0xff, 0xcf, 0xfb, 0xef, 0x36, 0x1c, + 0x0a, 0x68, 0x7a, 0x9b, 0x4c, 0x7a, 0xe6, 0xe5, 0x18, 0x44, 0x97, 0xed, 0x2a, 0x7a, 0x01, 0xc6, + 0xc2, 0x49, 0x43, 0xdb, 0x5c, 0xb0, 0x79, 0x46, 0x68, 0xbf, 0x5e, 0x6b, 0x3f, 0x7b, 0xa0, 0x5d, + 0x18, 0x09, 0xce, 0x1c, 0x27, 0x3b, 0x30, 0x09, 0x60, 0x66, 0x1f, 0xea, 0x15, 0xd3, 0x6d, 0xec, + 0x9d, 0x90, 0x70, 0x83, 0xde, 0x9d, 0x1d, 0xa8, 0x05, 0x52, 0xfb, 0xec, 0xb6, 0x45, 0x58, 0x21, + 0xd6, 0x0b, 0x87, 0x94, 0x4e, 0xd6, 0x0b, 0xe1, 0x76, 0xb4, 0x5e, 0xbb, 0xa1, 0xb5, 0x05, 0xe0, + 0x1b, 0x07, 0x77, 0x77, 0xe0, 0xe0, 0xa1, 0x65, 0x1f, 0xec, 0x09, 0xcd, 0x3d, 0x74, 0xba, 0xc5, + 0xc9, 0xf8, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x60, 0x9e, 0xcb, 0x5b, 0x98, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) @@ -2084,6 +2088,9 @@ func (this *Params) Equal(that interface{}) bool { if this.BondDenom != that1.BondDenom { return false } + if !this.MinCommissionRate.Equal(that1.MinCommissionRate) { + return false + } return true } func (this *RedelegationEntryResponse) Equal(that interface{}) bool { @@ -2934,6 +2941,16 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + { + size := m.MinCommissionRate.Size() + i -= size + if _, err := m.MinCommissionRate.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintStaking(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 if len(m.BondDenom) > 0 { i -= len(m.BondDenom) copy(dAtA[i:], m.BondDenom) @@ -3475,6 +3492,8 @@ func (m *Params) Size() (n int) { if l > 0 { n += 1 + l + sovStaking(uint64(l)) } + l = m.MinCommissionRate.Size() + n += 1 + l + sovStaking(uint64(l)) return n } @@ -6007,6 +6026,40 @@ func (m *Params) Unmarshal(dAtA []byte) error { } m.BondDenom = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MinCommissionRate", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStaking + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthStaking + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthStaking + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.MinCommissionRate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStaking(dAtA[iNdEx:])