diff --git a/Dockerfile b/Dockerfile index 2b59bfd..77b406c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,10 +20,10 @@ FROM base AS integration RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin RUN golangci-lint run # Unit tests -RUN go test $(go list ./... | grep -v github.com/Peersyst/exrp/tests/e2e/poa) +RUN go test $(go list ./... | grep -v github.com/Peersyst/exrp/v2/tests/e2e/poa) # End to end tests # TODO: Temporary disabled e2e tests -# RUN TEST_CLEANUP_DIR=false go test -p 1 -v -timeout 30m ./tests/e2e/... +RUN TEST_CLEANUP_DIR=false go test -p 1 -v -timeout 30m ./tests/e2e/... RUN touch /test.lock FROM golang:1.20 AS release diff --git a/app/app.go b/app/app.go index 42ca37d..a7aadc4 100644 --- a/app/app.go +++ b/app/app.go @@ -2,7 +2,7 @@ package app import ( "encoding/json" - poaante "github.com/Peersyst/exrp/x/poa/ante" + poaante "github.com/Peersyst/exrp/v2/x/poa/ante" distr "github.com/cosmos/cosmos-sdk/x/distribution" distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" @@ -21,7 +21,7 @@ import ( reflectionv1 "cosmossdk.io/api/cosmos/reflection/v1" "cosmossdk.io/simapp" simappparams "cosmossdk.io/simapp/params" - "github.com/Peersyst/exrp/x/poa" + "github.com/Peersyst/exrp/v2/x/poa" "github.com/cosmos/cosmos-sdk/runtime" runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services" "github.com/cosmos/cosmos-sdk/x/auth/posthandler" @@ -107,11 +107,11 @@ import ( ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" // this line is used by starport scaffolding # stargate/app/moduleImport - "github.com/Peersyst/exrp/docs" - poakeeper "github.com/Peersyst/exrp/x/poa/keeper" - poatypes "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/docs" + poakeeper "github.com/Peersyst/exrp/v2/x/poa/keeper" + poatypes "github.com/Peersyst/exrp/v2/x/poa/types" - // "github.com/Peersyst/exrp/app/ante" + // "github.com/Peersyst/exrp/v2/app/ante" "github.com/evmos/evmos/v15/app/ante" srvflags "github.com/evmos/evmos/v15/server/flags" diff --git a/app/simulation_test.go b/app/simulation_test.go index e9652fa..eea0840 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -1,7 +1,7 @@ package app_test import ( - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/baseapp" diff --git a/app/upgrades.go b/app/upgrades.go index d6a988c..530f523 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -3,7 +3,7 @@ package app import ( "fmt" - v2 "github.com/Peersyst/exrp/app/upgrades/v2" + v2 "github.com/Peersyst/exrp/v2/app/upgrades/v2" storetypes "github.com/cosmos/cosmos-sdk/store/types" consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" diff --git a/cmd/exrpd/cmd/config.go b/cmd/exrpd/cmd/config.go index af252e1..653e2da 100644 --- a/cmd/exrpd/cmd/config.go +++ b/cmd/exrpd/cmd/config.go @@ -1,7 +1,7 @@ package cmd import ( - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" sdk "github.com/cosmos/cosmos-sdk/types" ethermint "github.com/evmos/evmos/v15/types" ) diff --git a/cmd/exrpd/cmd/root.go b/cmd/exrpd/cmd/root.go index 78229f9..6f8cb40 100644 --- a/cmd/exrpd/cmd/root.go +++ b/cmd/exrpd/cmd/root.go @@ -36,7 +36,7 @@ import ( "path/filepath" // this line is used by starport scaffolding # root/moduleImport - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" ethermintclient "github.com/evmos/evmos/v15/client" ethermintserver "github.com/evmos/evmos/v15/server" ethermintservercfg "github.com/evmos/evmos/v15/server/config" diff --git a/cmd/exrpd/main.go b/cmd/exrpd/main.go index 9ad3e32..a6df760 100644 --- a/cmd/exrpd/main.go +++ b/cmd/exrpd/main.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/Peersyst/exrp/app" - "github.com/Peersyst/exrp/cmd/exrpd/cmd" + "github.com/Peersyst/exrp/v2/app" + "github.com/Peersyst/exrp/v2/cmd/exrpd/cmd" ) func main() { diff --git a/proto/packages/blockchain/poa/genesis.proto b/proto/packages/blockchain/poa/genesis.proto index 7038cc6..aab29ec 100644 --- a/proto/packages/blockchain/poa/genesis.proto +++ b/proto/packages/blockchain/poa/genesis.proto @@ -4,7 +4,7 @@ package packages.blockchain.poa; import "gogoproto/gogo.proto"; import "packages/blockchain/poa/params.proto"; -option go_package = "github.com/Peersyst/exrp/x/poa/types"; +option go_package = "github.com/Peersyst/exrp/v2/x/poa/types"; // GenesisState defines the poa module's genesis state. message GenesisState { diff --git a/proto/packages/blockchain/poa/params.proto b/proto/packages/blockchain/poa/params.proto index a9182ff..d0752dc 100644 --- a/proto/packages/blockchain/poa/params.proto +++ b/proto/packages/blockchain/poa/params.proto @@ -3,7 +3,7 @@ package packages.blockchain.poa; import "gogoproto/gogo.proto"; -option go_package = "github.com/Peersyst/exrp/x/poa/types"; +option go_package = "github.com/Peersyst/exrp/v2/x/poa/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/packages/blockchain/poa/query.proto b/proto/packages/blockchain/poa/query.proto index 6aee1f5..53697ad 100644 --- a/proto/packages/blockchain/poa/query.proto +++ b/proto/packages/blockchain/poa/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "packages/blockchain/poa/params.proto"; -option go_package = "github.com/Peersyst/exrp/x/poa/types"; +option go_package = "github.com/Peersyst/exrp/v2/x/poa/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/packages/blockchain/poa/tx.proto b/proto/packages/blockchain/poa/tx.proto index 6dec561..dbd96b3 100644 --- a/proto/packages/blockchain/poa/tx.proto +++ b/proto/packages/blockchain/poa/tx.proto @@ -8,7 +8,7 @@ import "cosmos/staking/v1beta1/staking.proto"; import "google/protobuf/any.proto"; import "amino/amino.proto"; -option go_package = "github.com/Peersyst/exrp/x/poa/types"; +option go_package = "github.com/Peersyst/exrp/v2/x/poa/types"; // Msg defines the Msg service. service Msg { diff --git a/tests/e2e/poa/add_validator_test.go b/tests/e2e/poa/add_validator_test.go index b4108ea..deaa298 100644 --- a/tests/e2e/poa/add_validator_test.go +++ b/tests/e2e/poa/add_validator_test.go @@ -1,7 +1,7 @@ package poa_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" sdk "github.com/cosmos/cosmos-sdk/types" govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" ) diff --git a/tests/e2e/poa/ante_handler_test.go b/tests/e2e/poa/ante_handler_test.go index c983617..953c2d5 100644 --- a/tests/e2e/poa/ante_handler_test.go +++ b/tests/e2e/poa/ante_handler_test.go @@ -1,7 +1,7 @@ package poa_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" "strings" ) diff --git a/tests/e2e/poa/delegation_test.go b/tests/e2e/poa/delegation_test.go index 1984eee..a9c0ecd 100644 --- a/tests/e2e/poa/delegation_test.go +++ b/tests/e2e/poa/delegation_test.go @@ -1,7 +1,7 @@ package poa_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/tests/e2e/poa/poa_suite_test.go b/tests/e2e/poa/poa_suite_test.go index 998180a..eda83e9 100644 --- a/tests/e2e/poa/poa_suite_test.go +++ b/tests/e2e/poa/poa_suite_test.go @@ -1,7 +1,7 @@ package poa_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" "github.com/stretchr/testify/suite" "testing" "time" diff --git a/tests/e2e/poa/remove_validator_test.go b/tests/e2e/poa/remove_validator_test.go index b637664..c2cea18 100644 --- a/tests/e2e/poa/remove_validator_test.go +++ b/tests/e2e/poa/remove_validator_test.go @@ -1,7 +1,7 @@ package poa_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" sdk "github.com/cosmos/cosmos-sdk/types" govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" "time" diff --git a/tests/e2e/poa/unbonding/suite_test.go b/tests/e2e/poa/unbonding/suite_test.go index bb86df2..2530076 100644 --- a/tests/e2e/poa/unbonding/suite_test.go +++ b/tests/e2e/poa/unbonding/suite_test.go @@ -1,7 +1,7 @@ package unbonding_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" "github.com/stretchr/testify/suite" "testing" "time" diff --git a/tests/e2e/poa/unbonding/unbonding_test.go b/tests/e2e/poa/unbonding/unbonding_test.go index dbcf819..111fc8c 100644 --- a/tests/e2e/poa/unbonding/unbonding_test.go +++ b/tests/e2e/poa/unbonding/unbonding_test.go @@ -1,7 +1,7 @@ package unbonding_test import ( - "github.com/Peersyst/exrp/tests/e2e" + "github.com/Peersyst/exrp/v2/tests/e2e" govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" "sync" "time" diff --git a/tests/e2e/test_suite.go b/tests/e2e/test_suite.go index 330fae4..c123f1b 100644 --- a/tests/e2e/test_suite.go +++ b/tests/e2e/test_suite.go @@ -2,7 +2,7 @@ package e2e import ( "fmt" - "github.com/Peersyst/exrp/testutil/network" + "github.com/Peersyst/exrp/v2/testutil/network" "github.com/ethereum/go-ethereum/ethclient" "github.com/stretchr/testify/suite" "time" diff --git a/tests/e2e/util_transaction.go b/tests/e2e/util_transaction.go index e299252..43bae9d 100644 --- a/tests/e2e/util_transaction.go +++ b/tests/e2e/util_transaction.go @@ -2,13 +2,13 @@ package e2e import ( "fmt" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/spf13/cobra" "time" - "github.com/Peersyst/exrp/testutil/network" + "github.com/Peersyst/exrp/v2/testutil/network" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/testutil" diff --git a/testutil/abci.go b/testutil/abci.go index 4f449a7..dbe8ad1 100644 --- a/testutil/abci.go +++ b/testutil/abci.go @@ -7,7 +7,7 @@ import ( tmtypes "github.com/cometbft/cometbft/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" ) // Commit commits a block at a given time. Reminder: At the end of each diff --git a/testutil/fund.go b/testutil/fund.go index 349595f..fd5da9a 100644 --- a/testutil/fund.go +++ b/testutil/fund.go @@ -16,7 +16,7 @@ package testutil import ( - poatypes "github.com/Peersyst/exrp/x/poa/types" + poatypes "github.com/Peersyst/exrp/v2/x/poa/types" sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" diff --git a/testutil/network/network.go b/testutil/network/network.go index 3aa3f91..a456b3e 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -33,7 +33,7 @@ import ( "cosmossdk.io/simapp" "cosmossdk.io/simapp/params" - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/tx" diff --git a/testutil/network/network_test.go b/testutil/network/network_test.go index de35a54..7ced3f7 100644 --- a/testutil/network/network_test.go +++ b/testutil/network/network_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Peersyst/exrp/testutil/network" + "github.com/Peersyst/exrp/v2/testutil/network" "github.com/ethereum/go-ethereum/ethclient" "github.com/evmos/evmos/v15/server/config" ) diff --git a/testutil/tx/cosmos.go b/testutil/tx/cosmos.go index 3460302..3cfa36d 100644 --- a/testutil/tx/cosmos.go +++ b/testutil/tx/cosmos.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/tx/signing" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" "github.com/evmos/evmos/v15/utils" ) diff --git a/testutil/tx/eip712.go b/testutil/tx/eip712.go index 53175dc..2cd5205 100644 --- a/testutil/tx/eip712.go +++ b/testutil/tx/eip712.go @@ -15,7 +15,7 @@ import ( "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/signer/core/apitypes" - "github.com/Peersyst/exrp/app" + "github.com/Peersyst/exrp/v2/app" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" cryptocodec "github.com/evmos/evmos/v15/crypto/codec" "github.com/evmos/evmos/v15/ethereum/eip712" diff --git a/x/poa/client/cli/query.go b/x/poa/client/cli/query.go index 1a6c8a4..b691469 100644 --- a/x/poa/client/cli/query.go +++ b/x/poa/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/poa/client/cli/query_params.go b/x/poa/client/cli/query_params.go index 169cf2c..15684ca 100644 --- a/x/poa/client/cli/query_params.go +++ b/x/poa/client/cli/query_params.go @@ -3,7 +3,7 @@ package cli import ( "context" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" diff --git a/x/poa/client/cli/tx.go b/x/poa/client/cli/tx.go index f95d3b8..4f95d25 100644 --- a/x/poa/client/cli/tx.go +++ b/x/poa/client/cli/tx.go @@ -8,7 +8,7 @@ import ( flag "github.com/spf13/pflag" "strings" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/gov/client/cli" diff --git a/x/poa/keeper/genesis.go b/x/poa/keeper/genesis.go index 25121b6..36266f3 100644 --- a/x/poa/keeper/genesis.go +++ b/x/poa/keeper/genesis.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/poa/keeper/keeper.go b/x/poa/keeper/keeper.go index 035ef4e..ac92549 100644 --- a/x/poa/keeper/keeper.go +++ b/x/poa/keeper/keeper.go @@ -14,7 +14,7 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" ) type ( diff --git a/x/poa/keeper/msg_server.go b/x/poa/keeper/msg_server.go index c4625b1..b7bc106 100644 --- a/x/poa/keeper/msg_server.go +++ b/x/poa/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" ) type msgServer struct { diff --git a/x/poa/keeper/msg_server_add_validator.go b/x/poa/keeper/msg_server_add_validator.go index 77a60d5..54a215d 100644 --- a/x/poa/keeper/msg_server_add_validator.go +++ b/x/poa/keeper/msg_server_add_validator.go @@ -4,7 +4,7 @@ import ( "context" "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" sdk "github.com/cosmos/cosmos-sdk/types" gov "github.com/cosmos/cosmos-sdk/x/gov/types" ) diff --git a/x/poa/keeper/msg_server_remove_validator.go b/x/poa/keeper/msg_server_remove_validator.go index 54f9400..3655ccd 100644 --- a/x/poa/keeper/msg_server_remove_validator.go +++ b/x/poa/keeper/msg_server_remove_validator.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/errors" gov "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/poa/keeper/params.go b/x/poa/keeper/params.go index 7978397..f0b370d 100644 --- a/x/poa/keeper/params.go +++ b/x/poa/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/poa/keeper/query.go b/x/poa/keeper/query.go index fc3fbbe..b609a1d 100644 --- a/x/poa/keeper/query.go +++ b/x/poa/keeper/query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/poa/keeper/query_params.go b/x/poa/keeper/query_params.go index 1c124a2..0a8a02f 100644 --- a/x/poa/keeper/query_params.go +++ b/x/poa/keeper/query_params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/poa/module.go b/x/poa/module.go index 4238c0e..9bcd43c 100644 --- a/x/poa/module.go +++ b/x/poa/module.go @@ -12,9 +12,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/Peersyst/exrp/x/poa/client/cli" - "github.com/Peersyst/exrp/x/poa/keeper" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/client/cli" + "github.com/Peersyst/exrp/v2/x/poa/keeper" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/x/poa/module_simulation.go b/x/poa/module_simulation.go index f38d804..0f20349 100644 --- a/x/poa/module_simulation.go +++ b/x/poa/module_simulation.go @@ -3,9 +3,9 @@ package poa import ( "math/rand" - "github.com/Peersyst/exrp/testutil/sample" - poasimulation "github.com/Peersyst/exrp/x/poa/simulation" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/testutil/sample" + poasimulation "github.com/Peersyst/exrp/v2/x/poa/simulation" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" diff --git a/x/poa/simulation/add_validator.go b/x/poa/simulation/add_validator.go index a2bd975..1b16bd1 100644 --- a/x/poa/simulation/add_validator.go +++ b/x/poa/simulation/add_validator.go @@ -3,7 +3,7 @@ package simulation import ( "math/rand" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" diff --git a/x/poa/simulation/helpers.go b/x/poa/simulation/helpers.go index a3e6359..ae6e5b7 100644 --- a/x/poa/simulation/helpers.go +++ b/x/poa/simulation/helpers.go @@ -1,8 +1,8 @@ package simulation import ( - "github.com/Peersyst/exrp/testutil/sims" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/testutil/sims" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/poa/simulation/remove_validator.go b/x/poa/simulation/remove_validator.go index 43ded0a..17361ef 100644 --- a/x/poa/simulation/remove_validator.go +++ b/x/poa/simulation/remove_validator.go @@ -3,7 +3,7 @@ package simulation import ( "math/rand" - "github.com/Peersyst/exrp/x/poa/types" + "github.com/Peersyst/exrp/v2/x/poa/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" diff --git a/x/poa/types/genesis.pb.go b/x/poa/types/genesis.pb.go index def23d4..f79bc5e 100644 --- a/x/poa/types/genesis.pb.go +++ b/x/poa/types/genesis.pb.go @@ -77,7 +77,7 @@ func init() { } var fileDescriptor_a9913de4cca7aa3b = []byte{ - // 209 bytes of a gzipped FileDescriptorProto + // 212 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x2d, 0x48, 0x4c, 0xce, 0x4e, 0x4c, 0x4f, 0x2d, 0xd6, 0x4f, 0xca, 0xc9, 0x4f, 0xce, 0x4e, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x2f, 0xc8, 0x4f, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, @@ -86,12 +86,12 @@ var fileDescriptor_a9913de4cca7aa3b = []byte{ 0x94, 0x98, 0x0b, 0x35, 0x54, 0xc9, 0x97, 0x8b, 0xc7, 0x1d, 0x62, 0x4b, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x90, 0x2d, 0x17, 0x1b, 0x44, 0x5e, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x5e, 0x0f, 0x87, 0xad, 0x7a, 0x01, 0x60, 0x65, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x35, 0x39, - 0xd9, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, - 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4a, 0x7a, 0x66, 0x49, + 0x39, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, + 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x7a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x40, 0x6a, 0x6a, 0x51, 0x71, 0x65, 0x71, 0x89, - 0x7e, 0x6a, 0x45, 0x51, 0x81, 0x7e, 0x05, 0xd8, 0x55, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, - 0x60, 0x57, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x5f, 0x69, 0xd2, 0x13, 0x01, 0x00, - 0x00, + 0x7e, 0x6a, 0x45, 0x51, 0x81, 0x7e, 0x99, 0x91, 0x7e, 0x05, 0xd8, 0x61, 0x25, 0x95, 0x05, 0xa9, + 0xc5, 0x49, 0x6c, 0x60, 0x87, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x51, 0x0a, 0xea, 0xc2, + 0x16, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/poa/types/params.pb.go b/x/poa/types/params.pb.go index 5a1ae4d..c63a98e 100644 --- a/x/poa/types/params.pb.go +++ b/x/poa/types/params.pb.go @@ -68,18 +68,18 @@ func init() { } var fileDescriptor_907661d1da522650 = []byte{ - // 167 bytes of a gzipped FileDescriptorProto + // 170 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x29, 0x48, 0x4c, 0xce, 0x4e, 0x4c, 0x4f, 0x2d, 0xd6, 0x4f, 0xca, 0xc9, 0x4f, 0xce, 0x4e, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x2f, 0xc8, 0x4f, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa9, 0xd2, 0x43, 0xa8, 0xd2, 0x2b, 0xc8, 0x4f, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, 0xb1, 0x20, 0xca, 0x95, 0xf8, 0xb8, 0xd8, 0x02, 0xc0, 0xda, 0xad, - 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0xb2, 0x3b, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, + 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0x72, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, - 0x86, 0x28, 0x95, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x80, 0xd4, - 0xd4, 0xa2, 0xe2, 0xca, 0xe2, 0x12, 0xfd, 0xd4, 0x8a, 0xa2, 0x02, 0xfd, 0x0a, 0xb0, 0x2b, 0x4a, - 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xc6, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x8c, - 0xe3, 0xfd, 0xfb, 0xad, 0x00, 0x00, 0x00, + 0x86, 0x28, 0xf5, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x80, 0xd4, + 0xd4, 0xa2, 0xe2, 0xca, 0xe2, 0x12, 0xfd, 0xd4, 0x8a, 0xa2, 0x02, 0xfd, 0x32, 0x23, 0xfd, 0x0a, + 0xb0, 0x43, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x26, 0x1b, 0x03, 0x02, 0x00, 0x00, + 0xff, 0xff, 0xd8, 0xfc, 0xe0, 0xba, 0xb0, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/poa/types/query.pb.go b/x/poa/types/query.pb.go index cc4d78f..a18c4d5 100644 --- a/x/poa/types/query.pb.go +++ b/x/poa/types/query.pb.go @@ -123,27 +123,27 @@ func init() { } var fileDescriptor_73271f4041d49da6 = []byte{ - // 313 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0x31, 0x4b, 0x03, 0x31, - 0x14, 0xc7, 0xef, 0x44, 0x3b, 0x9c, 0x8b, 0xc4, 0x82, 0xa5, 0xc8, 0x55, 0x6a, 0x07, 0x51, 0x49, - 0x68, 0x9d, 0x75, 0xe8, 0x27, 0xa8, 0xc5, 0xc9, 0xed, 0xdd, 0xf1, 0x48, 0x8f, 0xb6, 0x79, 0xe9, - 0x25, 0x95, 0x76, 0x70, 0x71, 0x70, 0x16, 0xfc, 0x52, 0x1d, 0x0b, 0x2e, 0x4e, 0x22, 0xad, 0x1f, - 0x44, 0x9a, 0x9c, 0xa8, 0xc8, 0x81, 0x5b, 0x78, 0xf9, 0xfd, 0x7f, 0xf9, 0xbf, 0x44, 0xc7, 0x1a, - 0xd2, 0x21, 0x48, 0x34, 0x22, 0x19, 0x51, 0x3a, 0x4c, 0x07, 0x90, 0x29, 0xa1, 0x09, 0xc4, 0x64, - 0x8a, 0xf9, 0x9c, 0xeb, 0x9c, 0x2c, 0xb1, 0x83, 0x2f, 0x88, 0x7f, 0x43, 0x5c, 0x13, 0xd4, 0xab, - 0x92, 0x24, 0x39, 0x46, 0x6c, 0x4e, 0x1e, 0xaf, 0x1f, 0x4a, 0x22, 0x39, 0x42, 0x01, 0x3a, 0x13, - 0xa0, 0x14, 0x59, 0xb0, 0x19, 0x29, 0x53, 0xdc, 0x9e, 0xa6, 0x64, 0xc6, 0x64, 0x44, 0x02, 0x06, - 0xfd, 0x2b, 0xe2, 0xae, 0x9d, 0xa0, 0x85, 0xb6, 0xd0, 0x20, 0x33, 0xe5, 0xe0, 0x82, 0x6d, 0x95, - 0xb5, 0xd3, 0x90, 0xc3, 0xb8, 0x30, 0x36, 0xab, 0x11, 0xbb, 0xde, 0x78, 0x7a, 0x6e, 0xd8, 0xc7, - 0xc9, 0x14, 0x8d, 0x6d, 0xde, 0x44, 0xfb, 0xbf, 0xa6, 0x46, 0x93, 0x32, 0xc8, 0x2e, 0xa3, 0x8a, - 0x0f, 0xd7, 0xc2, 0xa3, 0xf0, 0x64, 0xb7, 0xd3, 0xe0, 0x25, 0xcb, 0x71, 0x1f, 0xec, 0x6e, 0x2f, - 0xde, 0x1a, 0x41, 0xbf, 0x08, 0x75, 0x1e, 0xc3, 0x68, 0xc7, 0x69, 0xd9, 0x7d, 0x54, 0xf1, 0x04, - 0x3b, 0x2b, 0x55, 0xfc, 0xad, 0x55, 0x3f, 0xff, 0x1f, 0xec, 0xdb, 0x36, 0x6b, 0x0f, 0x2f, 0x1f, - 0xcf, 0x5b, 0x8c, 0xed, 0x09, 0x9c, 0xe5, 0xfa, 0xc7, 0xea, 0xdd, 0xab, 0xc5, 0x2a, 0x0e, 0x97, - 0xab, 0x38, 0x7c, 0x5f, 0xc5, 0xe1, 0xd3, 0x3a, 0x0e, 0x96, 0xeb, 0x38, 0x78, 0x5d, 0xc7, 0xc1, - 0x6d, 0x4b, 0x66, 0x76, 0x30, 0x4d, 0x78, 0x4a, 0x63, 0xd1, 0x43, 0xcc, 0xcd, 0xdc, 0x58, 0x1f, - 0x9f, 0x39, 0x81, 0x9d, 0x6b, 0x34, 0x49, 0xc5, 0xfd, 0xdd, 0xc5, 0x67, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x51, 0x6c, 0xc5, 0x24, 0x01, 0x02, 0x00, 0x00, + // 317 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0x31, 0x4b, 0x33, 0x41, + 0x10, 0x86, 0xef, 0x3e, 0x3e, 0x53, 0x9c, 0x8d, 0xac, 0x01, 0x43, 0x90, 0x8b, 0x44, 0x41, 0x51, + 0xb9, 0x21, 0xb1, 0xb6, 0x30, 0xbf, 0x20, 0x06, 0x2b, 0xbb, 0xb9, 0x63, 0xd8, 0x1c, 0x49, 0x6e, + 0x36, 0xb7, 0x9b, 0x90, 0x14, 0x36, 0x16, 0xd6, 0x82, 0x7f, 0x2a, 0x65, 0xc0, 0xc6, 0x4a, 0x24, + 0xf1, 0x87, 0x48, 0x76, 0x4f, 0x54, 0xe4, 0xc0, 0x6e, 0x99, 0x7d, 0xde, 0x67, 0xdf, 0xd9, 0xe0, + 0x50, 0x61, 0x32, 0x40, 0x49, 0x1a, 0xe2, 0x21, 0x27, 0x83, 0xa4, 0x8f, 0x69, 0x06, 0x8a, 0x11, + 0xc6, 0x13, 0xca, 0xe7, 0x91, 0xca, 0xd9, 0xb0, 0xd8, 0xfb, 0x84, 0xa2, 0x2f, 0x28, 0x52, 0x8c, + 0xf5, 0xaa, 0x64, 0xc9, 0x96, 0x81, 0xcd, 0xc9, 0xe1, 0xf5, 0x7d, 0xc9, 0x2c, 0x87, 0x04, 0xa8, + 0x52, 0xc0, 0x2c, 0x63, 0x83, 0x26, 0xe5, 0x4c, 0x17, 0xb7, 0xa7, 0x09, 0xeb, 0x11, 0x6b, 0x88, + 0x51, 0x93, 0x7b, 0x05, 0xa6, 0xad, 0x98, 0x0c, 0xb6, 0x40, 0xa1, 0x4c, 0x33, 0x0b, 0x17, 0xec, + 0x51, 0x59, 0x3b, 0x85, 0x39, 0x8e, 0x0a, 0x63, 0xb3, 0x1a, 0x88, 0xeb, 0x8d, 0xa7, 0x6b, 0x87, + 0x3d, 0x1a, 0x4f, 0x48, 0x9b, 0xe6, 0x4d, 0xb0, 0xfb, 0x63, 0xaa, 0x15, 0x67, 0x9a, 0xc4, 0x65, + 0x50, 0x71, 0xe1, 0x9a, 0x7f, 0xe0, 0x9f, 0x6c, 0xb7, 0x1b, 0x51, 0xc9, 0x72, 0x91, 0x0b, 0x76, + 0xfe, 0x2f, 0x5e, 0x1b, 0x5e, 0xaf, 0x08, 0xb5, 0x1f, 0xfc, 0x60, 0xcb, 0x6a, 0xc5, 0x5d, 0x50, + 0x71, 0x84, 0x38, 0x2b, 0x55, 0xfc, 0xae, 0x55, 0x3f, 0xff, 0x1b, 0xec, 0xda, 0x36, 0x6b, 0xf7, + 0xcf, 0xef, 0x4f, 0xff, 0x84, 0xd8, 0x01, 0x9a, 0xe5, 0xea, 0xdb, 0xea, 0x9d, 0xab, 0xc5, 0x2a, + 0xf4, 0x97, 0xab, 0xd0, 0x7f, 0x5b, 0x85, 0xfe, 0xe3, 0x3a, 0xf4, 0x96, 0xeb, 0xd0, 0x7b, 0x59, + 0x87, 0xde, 0xed, 0xb1, 0x4c, 0x4d, 0x7f, 0x12, 0x47, 0x09, 0x8f, 0xa0, 0x4b, 0x94, 0xeb, 0xb9, + 0x36, 0x2e, 0x3e, 0x6d, 0xc3, 0xcc, 0x3a, 0xcc, 0x5c, 0x91, 0x8e, 0x2b, 0xf6, 0xfb, 0x2e, 0x3e, + 0x02, 0x00, 0x00, 0xff, 0xff, 0x7e, 0x66, 0xa8, 0xab, 0x04, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/poa/types/tx.pb.go b/x/poa/types/tx.pb.go index b565997..407bb3e 100644 --- a/x/poa/types/tx.pb.go +++ b/x/poa/types/tx.pb.go @@ -235,39 +235,39 @@ func init() { func init() { proto.RegisterFile("packages/blockchain/poa/tx.proto", fileDescriptor_22361659a4d452f4) } var fileDescriptor_22361659a4d452f4 = []byte{ - // 498 bytes of a gzipped FileDescriptorProto + // 500 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0x4f, 0x8b, 0xd3, 0x40, - 0x1c, 0x6d, 0x76, 0x65, 0xa1, 0xb3, 0xe2, 0xba, 0xa1, 0xd0, 0x6c, 0x90, 0x58, 0x6a, 0x0f, 0x65, - 0xc5, 0x19, 0x77, 0x17, 0x3c, 0xec, 0x41, 0x68, 0x51, 0x2f, 0x52, 0x28, 0x11, 0x3c, 0x78, 0x59, - 0x26, 0xc9, 0x38, 0x8d, 0x6d, 0xf2, 0x1b, 0x32, 0x93, 0xd2, 0x5c, 0xfd, 0x04, 0x7e, 0x07, 0x2f, - 0x1e, 0xf7, 0xe0, 0x87, 0x58, 0x3c, 0x15, 0x4f, 0x9e, 0x44, 0x5a, 0x70, 0xbf, 0x86, 0x34, 0xc9, - 0x18, 0xb7, 0xc5, 0x7f, 0xb7, 0xbd, 0x24, 0xf9, 0xcd, 0x7b, 0xbf, 0x37, 0xbf, 0xf7, 0x98, 0x0c, - 0x6a, 0x09, 0xea, 0x8f, 0x29, 0x67, 0x92, 0x78, 0x13, 0xf0, 0xc7, 0xfe, 0x88, 0x86, 0x31, 0x11, - 0x40, 0x89, 0x9a, 0x61, 0x91, 0x80, 0x02, 0xb3, 0xa9, 0x19, 0xb8, 0x62, 0x60, 0x01, 0xd4, 0x6e, - 0x70, 0xe0, 0x90, 0x73, 0xc8, 0xea, 0xab, 0xa0, 0xdb, 0x07, 0x3e, 0xc8, 0x08, 0xe4, 0x59, 0x01, - 0x14, 0x45, 0x09, 0x35, 0x8b, 0x8a, 0x44, 0x92, 0x93, 0xe9, 0xd1, 0xea, 0x55, 0x02, 0x9d, 0x12, - 0x90, 0x8a, 0x8e, 0xc3, 0x78, 0x05, 0x7a, 0x4c, 0xd1, 0x23, 0x5d, 0x6b, 0x65, 0x0e, 0xc0, 0x27, - 0x8c, 0xe4, 0x95, 0x97, 0xbe, 0x26, 0x34, 0xce, 0x4a, 0x68, 0x9f, 0x46, 0x61, 0x0c, 0x24, 0x7f, - 0x16, 0x4b, 0xed, 0xf9, 0x16, 0xda, 0x1b, 0x48, 0xde, 0x0b, 0x82, 0x97, 0x74, 0x12, 0x06, 0x54, - 0x41, 0x62, 0x3e, 0x42, 0x75, 0x9a, 0xaa, 0x11, 0x24, 0xa1, 0xca, 0x2c, 0xa3, 0x65, 0x74, 0xeb, - 0x7d, 0xeb, 0xf3, 0xc7, 0x07, 0x8d, 0x72, 0xca, 0x5e, 0x10, 0x24, 0x4c, 0xca, 0x17, 0x2a, 0x09, - 0x63, 0xee, 0x56, 0x54, 0xf3, 0x29, 0xda, 0x9f, 0x6a, 0x91, 0x33, 0x5a, 0xb0, 0xac, 0xad, 0xbf, - 0xf4, 0xdf, 0xfe, 0xd9, 0x52, 0xae, 0x9b, 0x43, 0xb4, 0x1b, 0x30, 0xe9, 0x27, 0xa1, 0x50, 0x21, - 0xc4, 0xd6, 0x76, 0xcb, 0xe8, 0xee, 0x1e, 0xdf, 0xc3, 0x65, 0xb7, 0x36, 0x5b, 0x9a, 0xc7, 0x4f, - 0x2a, 0x6a, 0xbf, 0x7e, 0xf1, 0xf5, 0x6e, 0xed, 0xc3, 0xe5, 0xf9, 0xa1, 0xe1, 0xfe, 0x2a, 0x61, - 0x3e, 0x43, 0x3b, 0x22, 0xf5, 0xc6, 0x2c, 0xb3, 0x6e, 0xe4, 0x62, 0x0d, 0x5c, 0x64, 0x84, 0x75, - 0x46, 0xb8, 0x17, 0x67, 0x7d, 0xeb, 0x53, 0x35, 0xa3, 0x9f, 0x64, 0x42, 0x01, 0x1e, 0xa6, 0xde, - 0x73, 0x96, 0xb9, 0x65, 0xf7, 0x69, 0xe7, 0xed, 0xe5, 0xf9, 0x61, 0x65, 0x78, 0x55, 0x6d, 0x3a, - 0x6e, 0x1f, 0xa0, 0xe6, 0x5a, 0xa2, 0x2e, 0x93, 0x02, 0x62, 0xc9, 0xda, 0xef, 0x0d, 0x64, 0x0e, - 0x24, 0x77, 0x59, 0x04, 0x53, 0x76, 0x5d, 0x02, 0x3f, 0xbd, 0x75, 0xd5, 0x56, 0xfb, 0x0e, 0xb2, - 0x37, 0x87, 0xd4, 0x1e, 0x8e, 0xbf, 0x1b, 0x68, 0x7b, 0x20, 0xb9, 0xf9, 0x06, 0xdd, 0xbc, 0x72, - 0x6a, 0xba, 0xf8, 0x37, 0x7f, 0x00, 0x5e, 0x4b, 0xc3, 0x7e, 0xf8, 0xaf, 0x4c, 0xbd, 0xa7, 0x29, - 0xd1, 0xde, 0x7a, 0x66, 0xf7, 0xff, 0x24, 0xb2, 0x46, 0xb6, 0x4f, 0xfe, 0x83, 0xac, 0x37, 0xed, - 0x3f, 0xbe, 0x58, 0x38, 0xc6, 0x7c, 0xe1, 0x18, 0xdf, 0x16, 0x8e, 0xf1, 0x6e, 0xe9, 0xd4, 0xe6, - 0x4b, 0xa7, 0xf6, 0x65, 0xe9, 0xd4, 0x5e, 0x75, 0x78, 0xa8, 0x46, 0xa9, 0x87, 0x7d, 0x88, 0xc8, - 0x90, 0xb1, 0x44, 0x66, 0x52, 0x11, 0x36, 0x4b, 0x04, 0x99, 0x15, 0x97, 0x42, 0x26, 0x98, 0xf4, - 0x76, 0xf2, 0xd3, 0x75, 0xf2, 0x23, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x9d, 0x80, 0x96, 0x3c, 0x04, - 0x00, 0x00, + 0x1c, 0x6d, 0x76, 0x65, 0xa1, 0xb3, 0xe2, 0xba, 0xa1, 0xd0, 0x6c, 0x90, 0x58, 0xea, 0x82, 0x65, + 0xc5, 0x19, 0xb7, 0x0b, 0x1e, 0xf6, 0xd6, 0xa2, 0x5e, 0xa4, 0x50, 0x22, 0x78, 0xf0, 0xb2, 0x4c, + 0x92, 0x71, 0x1a, 0xdb, 0xe4, 0x37, 0x64, 0x26, 0xa5, 0xb9, 0xfa, 0x09, 0xfc, 0x0e, 0x5e, 0x3c, + 0xee, 0xc1, 0x0f, 0xb1, 0x78, 0x2a, 0x9e, 0x3c, 0x89, 0xb4, 0xe0, 0x7e, 0x0d, 0x69, 0x92, 0x31, + 0x6e, 0x8b, 0xff, 0x6e, 0x7b, 0x49, 0xf2, 0x9b, 0xf7, 0x7e, 0x6f, 0x7e, 0xef, 0x31, 0x19, 0xd4, + 0x12, 0xd4, 0x1f, 0x53, 0xce, 0x24, 0xf1, 0x26, 0xe0, 0x8f, 0xfd, 0x11, 0x0d, 0x63, 0x22, 0x80, + 0x12, 0x35, 0xc3, 0x22, 0x01, 0x05, 0x66, 0x53, 0x33, 0x70, 0xc5, 0xc0, 0x02, 0xa8, 0xdd, 0xe0, + 0xc0, 0x21, 0xe7, 0x90, 0xd5, 0x57, 0x41, 0xb7, 0x0f, 0x7c, 0x90, 0x11, 0xc8, 0xb3, 0x02, 0x28, + 0x8a, 0x12, 0x6a, 0x16, 0x15, 0x89, 0x24, 0x27, 0xd3, 0xe3, 0xd5, 0xab, 0x04, 0x0e, 0x4b, 0x40, + 0x2a, 0x3a, 0x0e, 0xe3, 0x15, 0xe8, 0x31, 0x45, 0x8f, 0x75, 0xad, 0x95, 0x39, 0x00, 0x9f, 0x30, + 0x92, 0x57, 0x5e, 0xfa, 0x9a, 0xd0, 0x38, 0x2b, 0xa1, 0x7d, 0x1a, 0x85, 0x31, 0x90, 0xfc, 0x59, + 0x2c, 0xb5, 0xe7, 0x5b, 0x68, 0x6f, 0x20, 0x79, 0x2f, 0x08, 0x5e, 0xd2, 0x49, 0x18, 0x50, 0x05, + 0x89, 0xf9, 0x18, 0xd5, 0x69, 0xaa, 0x46, 0x90, 0x84, 0x2a, 0xb3, 0x8c, 0x96, 0xd1, 0xa9, 0xf7, + 0xad, 0xcf, 0x1f, 0x1f, 0x36, 0xca, 0x29, 0x7b, 0x41, 0x90, 0x30, 0x29, 0x5f, 0xa8, 0x24, 0x8c, + 0xb9, 0x5b, 0x51, 0xcd, 0xa7, 0x68, 0x7f, 0xaa, 0x45, 0xce, 0x68, 0xc1, 0xb2, 0xb6, 0xfe, 0xd2, + 0x7f, 0xfb, 0x67, 0x4b, 0xb9, 0x6e, 0x0e, 0xd1, 0x6e, 0xc0, 0xa4, 0x9f, 0x84, 0x42, 0x85, 0x10, + 0x5b, 0xdb, 0x2d, 0xa3, 0xb3, 0xdb, 0xbd, 0x87, 0xcb, 0x6e, 0x6d, 0xb6, 0x34, 0x8f, 0x9f, 0x54, + 0xd4, 0x7e, 0xfd, 0xe2, 0xeb, 0xdd, 0xda, 0x87, 0xcb, 0xf3, 0x23, 0xc3, 0xfd, 0x55, 0xc2, 0x7c, + 0x86, 0x76, 0x44, 0xea, 0x8d, 0x59, 0x66, 0xdd, 0xc8, 0xc5, 0x1a, 0xb8, 0xc8, 0x08, 0xeb, 0x8c, + 0x70, 0x2f, 0xce, 0xfa, 0xd6, 0xa7, 0x6a, 0x46, 0x3f, 0xc9, 0x84, 0x02, 0x3c, 0x4c, 0xbd, 0xe7, + 0x2c, 0x73, 0xcb, 0xee, 0xd3, 0xc3, 0xb7, 0x97, 0xe7, 0x47, 0x95, 0xe1, 0x55, 0xb5, 0xe9, 0xb8, + 0x7d, 0x80, 0x9a, 0x6b, 0x89, 0xba, 0x4c, 0x0a, 0x88, 0x25, 0x6b, 0xbf, 0x37, 0x90, 0x39, 0x90, + 0xdc, 0x65, 0x11, 0x4c, 0xd9, 0x75, 0x09, 0xfc, 0xf4, 0xd6, 0x55, 0x5b, 0xed, 0x3b, 0xc8, 0xde, + 0x1c, 0x52, 0x7b, 0xe8, 0x7e, 0x37, 0xd0, 0xf6, 0x40, 0x72, 0xf3, 0x0d, 0xba, 0x79, 0xe5, 0xd4, + 0x74, 0xf0, 0x6f, 0xfe, 0x00, 0xbc, 0x96, 0x86, 0xfd, 0xe8, 0x5f, 0x99, 0x7a, 0x4f, 0x53, 0xa2, + 0xbd, 0xf5, 0xcc, 0x1e, 0xfc, 0x49, 0x64, 0x8d, 0x6c, 0x9f, 0xfc, 0x07, 0x59, 0x6f, 0xda, 0xef, + 0x5d, 0x2c, 0x1c, 0x63, 0xbe, 0x70, 0x8c, 0x6f, 0x0b, 0xc7, 0x78, 0xb7, 0x74, 0x6a, 0xf3, 0xa5, + 0x53, 0xfb, 0xb2, 0x74, 0x6a, 0xaf, 0xee, 0xf3, 0x50, 0x8d, 0x52, 0x0f, 0xfb, 0x10, 0x91, 0x21, + 0x63, 0x89, 0xcc, 0xa4, 0x22, 0x6c, 0x96, 0x08, 0x32, 0xed, 0x92, 0x59, 0x71, 0x2f, 0x64, 0x82, + 0x49, 0x6f, 0x27, 0x3f, 0x60, 0x27, 0x3f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x37, 0x82, 0x48, 0x07, + 0x3f, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.