diff --git a/.gitignore b/.gitignore index 9326648..52ffb17 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ draft_metadata.json draft_proposal.json bin/chihuahuad bin/chihuahuad +start-localnet.sh diff --git a/app/app.go b/app/app.go index c0c73bd..bf7558f 100644 --- a/app/app.go +++ b/app/app.go @@ -3,11 +3,11 @@ package app import ( "context" "encoding/json" - "fmt" "io" "net/http" "os" "path/filepath" + "time" autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" reflectionv1 "cosmossdk.io/api/cosmos/reflection/v1" @@ -21,6 +21,7 @@ import ( circuittypes "cosmossdk.io/x/circuit/types" abci "github.com/cometbft/cometbft/abci/types" tmos "github.com/cometbft/cometbft/libs/os" + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" dbm "github.com/cosmos/cosmos-db" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" @@ -1318,32 +1319,77 @@ func (app *App) RegisterUpgradeHandlers(cfg module.Configurator) { }) app.UpgradeKeeper.SetUpgradeHandler( - "v8.0.1", - func(ctx context.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) { - app.Logger().Info("V8.0.1 upgrade ...") - // New consensus params keeper using the wrong key again and move the data into the consensus params keeper with the right key - storesvc := runtime.NewKVStoreService(app.GetKey("upgrade")) - consensuskeeper := consensuskeeper.NewKeeper( - app.appCodec, - storesvc, - app.AccountKeeper.GetAuthority(), - runtime.EventService{}, - ) - params, err := consensuskeeper.ParamsStore.Get(ctx) - app.Logger().Info("Getting the params into the Consensus params keeper...") - if err != nil { - return nil, err + "v8.0.2", + func(c context.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) { + app.Logger().Info("V8.0.2 upgrade ...") + ctx := sdk.UnwrapSDKContext(c) + params := app.LiquidityKeeper.GetParams(ctx) + params.SwapFeeRate = math.LegacyNewDecWithPrec(5, 3) // 0.5% swap fees + params.PoolCreationFee = sdk.NewCoins(sdk.NewCoin(appparams.BondDenom, math.NewInt(100_000_000_000))) // 100 000 huahua to create a pool + params.BuildersAddresses = []liquiditytypes.WeightedAddress{ + { + Address: "chihuahua14nvxlmstzc63w4cshgjmhwr2ep4gax5wlgeqe2", + + Weight: math.LegacyNewDecWithPrec(25, 2), //will receive 25% of commission from swap fees and pool creation fees + }, + { + Address: "chihuahua1jpfqqpna4nasv53gkn08ta9ygfryq38l8af602", + Weight: math.LegacyNewDecWithPrec(75, 2), //will receive 75% of commission from swap fees and pool creation fees + }, + } + params.BuildersCommission = math.LegacyNewDecWithPrec(2, 1) //20% of fees will go to builders + + if err := app.LiquidityKeeper.SetParams(ctx, params); err != nil { + app.Logger().Error("Upgrade Error 1: " + err.Error()) + } + + tokenFactoryParams := app.TokenFactoryKeeper.GetParams(ctx) + tokenFactoryParams.BuildersAddresses = []tokenfactorytypes.WeightedAddress{ + { + Address: "chihuahua14nvxlmstzc63w4cshgjmhwr2ep4gax5wlgeqe2", + Weight: math.LegacyNewDecWithPrec(10, 2), //will receive 10% of commission from minting tokens + }, + { + Address: "chihuahua1jpfqqpna4nasv53gkn08ta9ygfryq38l8af602", + Weight: math.LegacyNewDecWithPrec(90, 2), //will receive 90% of commission from minting tokens + }, + } + tokenFactoryParams.DenomCreationFee = nil + tokenFactoryParams.DenomCreationGasConsume = 50_000 + tokenFactoryParams.BuildersCommission = math.LegacyNewDecWithPrec(1, 2) //1% of minted token goes to builders + + if err := app.TokenFactoryKeeper.SetParams(ctx, tokenFactoryParams); err != nil { + app.Logger().Error("Upgrade Error 2: " + err.Error()) + } + consensusParams := cmtproto.ConsensusParams{} + + block := cmtproto.BlockParams{ + MaxBytes: 22020096, + MaxGas: -1, + } + consensusParams.Block = &block + + evidence := cmtproto.EvidenceParams{ + MaxAgeNumBlocks: 100000, + MaxAgeDuration: 48 * time.Hour, + MaxBytes: 1048576, } - err = app.ConsensusParamsKeeper.ParamsStore.Set(ctx, params) - app.Logger().Info("Setting the params into the Consensus params keeper...") + consensusParams.Evidence = &evidence + + validator := cmtproto.ValidatorParams{ + PubKeyTypes: []string{"ed25519"}, + } + consensusParams.Validator = &validator + + consensusParams.Version = &cmtproto.VersionParams{} + + err := app.ConsensusParamsKeeper.ParamsStore.Set(c, consensusParams) if err != nil { - return nil, err + app.Logger().Error("Upgrade Error 3: " + err.Error()) } - versionMap, err := app.mm.RunMigrations(ctx, cfg, vm) - app.Logger().Info(fmt.Sprintf("post migrate version map: %v", versionMap)) - // return app.ModuleManager.RunMigrations(ctx, app.Configurator(), fromVM) - return versionMap, err + return app.mm.RunMigrations(c, cfg, vm) }) + } // SimulationManager implements the SimulationApp interface diff --git a/go.mod b/go.mod index 81e7fd8..1881ff5 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/CosmWasm/wasmd v0.53.0 - github.com/CosmWasm/wasmvm/v2 v2.1.2 + github.com/CosmWasm/wasmvm/v2 v2.1.3 github.com/cosmos/cosmos-proto v1.0.0-beta.5 github.com/cosmos/cosmos-sdk v0.50.9 github.com/cosmos/gogogateway v1.2.0 // indirect @@ -45,7 +45,7 @@ require ( cosmossdk.io/x/nft v0.1.1 cosmossdk.io/x/tx v0.13.4 cosmossdk.io/x/upgrade v0.1.4 - github.com/Victor118/liquidity v1.7.0 + github.com/Victor118/liquidity v1.7.1 github.com/cometbft/cometbft v0.38.11 github.com/cosmos/cosmos-db v1.0.2 github.com/cosmos/ibc-apps/modules/ibc-hooks/v8 v8.0.0-20240808203856-57803750a140 diff --git a/go.sum b/go.sum index 45d36c2..fca8943 100644 --- a/go.sum +++ b/go.sum @@ -225,8 +225,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/CosmWasm/wasmd v0.53.0 h1:kdaoAi20bIb4VCsxw9pRaT2g5PpIp82Wqrr9DRVN9ao= github.com/CosmWasm/wasmd v0.53.0/go.mod h1:FJl/aWjdpGof3usAMFQpDe07Rkx77PUzp0cygFMOvtw= -github.com/CosmWasm/wasmvm/v2 v2.1.2 h1:GkJ5bAsRlLHfIQVg/FY1VHwLyBwlCjAhDea0B8L+e20= -github.com/CosmWasm/wasmvm/v2 v2.1.2/go.mod h1:bMhLQL4Yp9CzJi9A83aR7VO9wockOsSlZbT4ztOl6bg= +github.com/CosmWasm/wasmvm/v2 v2.1.3 h1:CSJTauZqkHyb9yic6JVYCjiGUgxI2MJV2QzfSu8m49c= +github.com/CosmWasm/wasmvm/v2 v2.1.3/go.mod h1:bMhLQL4Yp9CzJi9A83aR7VO9wockOsSlZbT4ztOl6bg= github.com/DataDog/datadog-go v3.2.0+incompatible h1:qSG2N4FghB1He/r2mFrWKCaL7dXCilEuNEeAn20fdD4= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.5.5 h1:oWf5W7GtOLgp6bciQYDmhHHjdhYkALu6S/5Ni9ZgSvQ= @@ -240,8 +240,8 @@ github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/Victor118/liquidity v1.7.0 h1:VHxV4pKscL3hQeMVBli4kRnUwt4hjoSK2YU5ZWrmc48= -github.com/Victor118/liquidity v1.7.0/go.mod h1:RRGlMTp7z3AKiwbsc9pu4g0hn/UpEyuCrtp3fmzHlGI= +github.com/Victor118/liquidity v1.7.1 h1:SMMUciOFAPVo/o0PDKpMiZ7CKYGO24QTLe/FLSfujsc= +github.com/Victor118/liquidity v1.7.1/go.mod h1:RRGlMTp7z3AKiwbsc9pu4g0hn/UpEyuCrtp3fmzHlGI= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= github.com/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index 09fbe56..18c9dc9 100755 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -37,6 +37,8 @@ service Msg { // originally set to be the creator, but this can be changed later. The token // denom does not indicate the current admin. message MsgCreateDenom { + option (cosmos.msg.v1.signer) = "sender"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; // subdenom can be up to 44 "alphanumeric" characters long. string subdenom = 2 [ (gogoproto.moretags) = "yaml:\"subdenom\"" ]; @@ -52,6 +54,7 @@ message MsgCreateDenomResponse { // MsgMint is the sdk.Msg type for allowing an admin account to mint // more of a token. For now, we only support minting to the sender account message MsgMint { + option (cosmos.msg.v1.signer) = "sender"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", @@ -66,6 +69,7 @@ message MsgMintResponse {} // MsgBurn is the sdk.Msg type for allowing an admin account to burn // a token. For now, we only support burning from the sender account. message MsgBurn { + option (cosmos.msg.v1.signer) = "sender"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", @@ -80,6 +84,7 @@ message MsgBurnResponse {} // MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign // adminship of a denom to a new account message MsgChangeAdmin { + option (cosmos.msg.v1.signer) = "sender"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; string denom = 2 [ (gogoproto.moretags) = "yaml:\"denom\"" ]; string new_admin = 3 [ (gogoproto.moretags) = "yaml:\"new_admin\"" ]; @@ -92,6 +97,7 @@ message MsgChangeAdminResponse {} // MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set // the denom's bank metadata message MsgSetDenomMetadata { + option (cosmos.msg.v1.signer) = "sender"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.bank.v1beta1.Metadata metadata = 2 [ (gogoproto.moretags) = "yaml:\"metadata\"", @@ -104,6 +110,7 @@ message MsgSetDenomMetadata { message MsgSetDenomMetadataResponse {} message MsgForceTransfer { + option (cosmos.msg.v1.signer) = "sender"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index 0b38adf..2c8ffd6 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -753,62 +753,63 @@ func init() { } var fileDescriptor_283b6c9a90a846b4 = []byte{ - // 877 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x4f, 0x6f, 0xdc, 0x44, - 0x14, 0x8f, 0xdb, 0xb0, 0x24, 0xd3, 0xa6, 0x49, 0x9c, 0xd0, 0x6c, 0x4c, 0x6a, 0x57, 0x23, 0x8a, - 0x28, 0xa2, 0xb6, 0xb6, 0x40, 0x05, 0x3d, 0x51, 0x2f, 0x8a, 0x38, 0xb0, 0x12, 0x72, 0xc3, 0x05, - 0x55, 0x5a, 0xcd, 0xee, 0x4e, 0xbc, 0x56, 0xea, 0x99, 0xc5, 0x33, 0xee, 0x76, 0x6f, 0x88, 0x4f, - 0xc0, 0x01, 0x21, 0x71, 0xe0, 0x03, 0x70, 0xe3, 0xc0, 0x07, 0xe0, 0x84, 0x7a, 0xac, 0x38, 0x71, - 0xb2, 0x50, 0x72, 0xe0, 0xee, 0x4f, 0x50, 0x79, 0x66, 0xfc, 0x77, 0xab, 0xec, 0xee, 0xa9, 0xa7, - 0xc4, 0x7e, 0xbf, 0xdf, 0x6f, 0xde, 0xef, 0xbd, 0x37, 0x6f, 0x0d, 0xee, 0x50, 0x16, 0x52, 0x16, - 0x30, 0x87, 0xd3, 0x33, 0x4c, 0x4e, 0xd1, 0x90, 0xd3, 0x68, 0xe6, 0x3c, 0xeb, 0x0c, 0x30, 0x47, - 0x1d, 0x87, 0x3f, 0xb7, 0x27, 0x11, 0xe5, 0x54, 0x3f, 0x52, 0x30, 0xbb, 0x0a, 0xb3, 0x15, 0xcc, - 0xd8, 0xf7, 0xa9, 0x4f, 0x05, 0xd0, 0xc9, 0xfe, 0x93, 0x1c, 0xc3, 0x1c, 0x0a, 0x92, 0x33, 0x40, - 0x0c, 0x17, 0x8a, 0x43, 0x1a, 0x90, 0xb9, 0x38, 0x39, 0x2b, 0xe2, 0xd9, 0x83, 0x8a, 0xdf, 0xbd, - 0x34, 0xb5, 0x09, 0x8a, 0x50, 0xc8, 0x14, 0xf4, 0x40, 0x49, 0x85, 0xcc, 0x77, 0x9e, 0x75, 0xb2, - 0x3f, 0x2a, 0x70, 0x28, 0x03, 0x7d, 0x99, 0x9c, 0x7c, 0x90, 0x21, 0xf8, 0x14, 0xdc, 0xe8, 0x31, - 0xbf, 0x1b, 0x61, 0xc4, 0xf1, 0x97, 0x98, 0xd0, 0x50, 0xbf, 0x0b, 0x5a, 0x0c, 0x93, 0x11, 0x8e, - 0xda, 0xda, 0x6d, 0xed, 0x83, 0x4d, 0x77, 0x37, 0x4d, 0xac, 0xad, 0x19, 0x0a, 0x9f, 0x3e, 0x84, - 0xf2, 0x3d, 0xf4, 0x14, 0x40, 0x77, 0xc0, 0x06, 0x8b, 0x07, 0xa3, 0x8c, 0xd6, 0xbe, 0x22, 0xc0, - 0x7b, 0x69, 0x62, 0x6d, 0x2b, 0xb0, 0x8a, 0x40, 0xaf, 0x00, 0xc1, 0x27, 0xe0, 0x66, 0xfd, 0x34, - 0x0f, 0xb3, 0x09, 0x25, 0x0c, 0xeb, 0x2e, 0xd8, 0x26, 0x78, 0xda, 0x17, 0x26, 0xfb, 0x52, 0x51, - 0x1e, 0x6f, 0xa4, 0x89, 0x75, 0x53, 0x2a, 0x36, 0x00, 0xd0, 0xdb, 0x22, 0x78, 0x7a, 0x92, 0xbd, - 0x10, 0x5a, 0xf0, 0x2f, 0x0d, 0xbc, 0xdd, 0x63, 0x7e, 0x2f, 0x20, 0x7c, 0x15, 0x17, 0x5f, 0x81, - 0x16, 0x0a, 0x69, 0x4c, 0xb8, 0xf0, 0x70, 0xed, 0xfe, 0xa1, 0xad, 0x2a, 0x94, 0xb5, 0x2c, 0xef, - 0xae, 0xdd, 0xa5, 0x01, 0x71, 0xdf, 0x79, 0x91, 0x58, 0x6b, 0xa5, 0x92, 0xa4, 0x41, 0x4f, 0xf1, - 0xf5, 0x2f, 0xc0, 0x56, 0x18, 0x10, 0x7e, 0x42, 0x1f, 0x8d, 0x46, 0x11, 0x66, 0xac, 0x7d, 0xb5, - 0x69, 0x21, 0x0b, 0xf7, 0x39, 0xed, 0x23, 0x09, 0x80, 0x5e, 0x9d, 0x00, 0x77, 0xc1, 0xb6, 0x72, - 0x90, 0x57, 0x06, 0xfe, 0x2d, 0x5d, 0xb9, 0x71, 0x44, 0xde, 0x8c, 0xab, 0x63, 0xb0, 0x3d, 0x88, - 0x23, 0x72, 0x1c, 0xd1, 0xb0, 0xee, 0xeb, 0x28, 0x4d, 0xac, 0xb6, 0xe4, 0x64, 0x80, 0xfe, 0x69, - 0x44, 0xc3, 0xd2, 0x59, 0x93, 0xa4, 0xbc, 0x65, 0x3e, 0x0a, 0x6f, 0xbf, 0x68, 0x72, 0xfc, 0xc6, - 0x88, 0xf8, 0xf8, 0xd1, 0x28, 0x0c, 0x56, 0xb2, 0xf8, 0x3e, 0x78, 0xab, 0x3a, 0x7b, 0x3b, 0x69, - 0x62, 0x5d, 0x97, 0x48, 0x35, 0x1f, 0x32, 0xac, 0x77, 0xc0, 0x66, 0x36, 0x3a, 0x28, 0xd3, 0x57, - 0xa9, 0xef, 0xa7, 0x89, 0xb5, 0x53, 0x4e, 0x95, 0x08, 0x41, 0x6f, 0x83, 0xe0, 0xa9, 0xc8, 0x02, - 0xb6, 0xe5, 0xa0, 0x96, 0x79, 0x15, 0x29, 0xff, 0xac, 0x81, 0xbd, 0x1e, 0xf3, 0x1f, 0x63, 0x2e, - 0x86, 0xae, 0x87, 0x39, 0x1a, 0x21, 0x8e, 0x56, 0xc9, 0xdb, 0x03, 0x1b, 0xa1, 0xa2, 0xa9, 0xe6, - 0xdc, 0x2a, 0x9b, 0x43, 0xce, 0x8a, 0xe6, 0xe4, 0xda, 0xee, 0x81, 0x6a, 0x90, 0xba, 0x59, 0x39, - 0x19, 0x7a, 0x85, 0x0e, 0xbc, 0x05, 0xde, 0x7d, 0x4d, 0x56, 0x45, 0xd6, 0xbf, 0x5f, 0x01, 0x3b, - 0x3d, 0xe6, 0x1f, 0xd3, 0x68, 0x88, 0x4f, 0x22, 0x44, 0xd8, 0x29, 0x8e, 0xde, 0xcc, 0x34, 0x79, - 0x60, 0x8f, 0xab, 0x04, 0xe6, 0x27, 0xea, 0x76, 0x9a, 0x58, 0x47, 0x92, 0x97, 0x83, 0x1a, 0x53, - 0xf5, 0x3a, 0xb2, 0xfe, 0x35, 0xd8, 0xcd, 0x5f, 0x97, 0x77, 0x6f, 0x5d, 0x28, 0x9a, 0x69, 0x62, - 0x19, 0x0d, 0xc5, 0xea, 0xfd, 0x9b, 0x27, 0x42, 0x03, 0xb4, 0x9b, 0xa5, 0x2a, 0xea, 0xf8, 0x9b, - 0x26, 0x86, 0xf8, 0xdb, 0xc9, 0x08, 0x71, 0xfc, 0x8d, 0x58, 0xbe, 0xfa, 0x03, 0xb0, 0x89, 0x62, - 0x3e, 0xa6, 0x51, 0xc0, 0x67, 0xaa, 0x92, 0xed, 0x7f, 0xfe, 0xbc, 0xb7, 0xaf, 0x2a, 0xa4, 0x64, - 0x1f, 0xf3, 0x28, 0x20, 0xbe, 0x57, 0x42, 0x75, 0x17, 0xb4, 0xe4, 0xfa, 0x56, 0x35, 0x7d, 0xcf, - 0xbe, 0xec, 0xe7, 0xc5, 0x96, 0xa7, 0xb9, 0xeb, 0x59, 0x79, 0x3d, 0xc5, 0x7c, 0x78, 0xe3, 0xc7, - 0xff, 0xff, 0xf8, 0xb0, 0xd4, 0x84, 0x87, 0xe0, 0xa0, 0x91, 0x5e, 0x9e, 0xfa, 0xfd, 0x5f, 0x5b, - 0xe0, 0x6a, 0x8f, 0xf9, 0xfa, 0xf7, 0xe0, 0x5a, 0x75, 0xdd, 0x7f, 0x74, 0xf9, 0xa9, 0xf5, 0x75, - 0x6d, 0x7c, 0xb2, 0x0a, 0xba, 0x58, 0xee, 0x4f, 0xc0, 0xba, 0x58, 0xca, 0x77, 0x16, 0xb2, 0x33, - 0x98, 0x71, 0x6f, 0x29, 0x58, 0x55, 0x5d, 0x2c, 0xc7, 0xc5, 0xea, 0x19, 0x6c, 0x09, 0xf5, 0xea, - 0x8a, 0x12, 0xe5, 0xaa, 0xac, 0xa7, 0x25, 0xca, 0x55, 0xa2, 0x97, 0x29, 0xd7, 0xfc, 0x8a, 0xd1, - 0x7f, 0xd0, 0xc0, 0xce, 0xdc, 0x7e, 0xe9, 0x2c, 0x94, 0x6a, 0x52, 0x8c, 0xcf, 0x57, 0xa6, 0x14, - 0x29, 0x4c, 0xc1, 0x56, 0x7d, 0x57, 0xd8, 0x0b, 0xb5, 0x6a, 0x78, 0xe3, 0xc1, 0x6a, 0xf8, 0xe2, - 0x60, 0x0e, 0xae, 0xd7, 0x2e, 0xd7, 0xe2, 0x6e, 0x55, 0xe1, 0xc6, 0xa7, 0x2b, 0xc1, 0xf3, 0x53, - 0x5d, 0xef, 0xc5, 0xb9, 0xa9, 0xbd, 0x3c, 0x37, 0xb5, 0xff, 0xce, 0x4d, 0xed, 0xa7, 0x0b, 0x73, - 0xed, 0xe5, 0x85, 0xb9, 0xf6, 0xef, 0x85, 0xb9, 0xf6, 0xdd, 0x67, 0x7e, 0xc0, 0xc7, 0xf1, 0xc0, - 0x1e, 0xd2, 0xd0, 0xe9, 0x8e, 0x83, 0x71, 0x8c, 0xc6, 0x31, 0xea, 0x8e, 0x51, 0x40, 0x9c, 0x61, - 0xfe, 0xe8, 0x3c, 0xaf, 0x7f, 0x9c, 0xf1, 0xd9, 0x04, 0xb3, 0x41, 0x4b, 0x7c, 0x60, 0x7d, 0xfc, - 0x2a, 0x00, 0x00, 0xff, 0xff, 0x95, 0x61, 0xc2, 0x08, 0x5c, 0x0a, 0x00, 0x00, + // 889 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x4f, 0x8f, 0xdb, 0x44, + 0x14, 0x5f, 0xb7, 0x4b, 0xd8, 0x9d, 0x6d, 0x9a, 0xac, 0x77, 0xe9, 0x66, 0xcd, 0xd6, 0xae, 0x2c, + 0x8a, 0x28, 0xa2, 0xb6, 0x52, 0xa0, 0x82, 0x3d, 0x51, 0x07, 0xad, 0x38, 0x10, 0x09, 0xb9, 0xcb, + 0x05, 0x55, 0x8a, 0x26, 0xc9, 0xac, 0x63, 0x2d, 0x9e, 0x09, 0x9e, 0x71, 0xd3, 0xdc, 0x10, 0x9f, + 0x80, 0x2b, 0x07, 0x0e, 0x88, 0x2f, 0xc0, 0x01, 0xf1, 0x19, 0x7a, 0x41, 0xaa, 0xe0, 0xc2, 0xc9, + 0x42, 0xbb, 0x07, 0xee, 0xfe, 0x04, 0xc8, 0x33, 0xe3, 0xbf, 0x59, 0x6d, 0x92, 0x53, 0x4f, 0x89, + 0xfd, 0x7e, 0xbf, 0xdf, 0xbc, 0xdf, 0x9b, 0x37, 0x6f, 0x0c, 0xee, 0x13, 0x1a, 0x10, 0xea, 0x53, + 0x9b, 0x91, 0x73, 0x84, 0xcf, 0xe0, 0x88, 0x91, 0x70, 0x6e, 0x3f, 0xef, 0x0e, 0x11, 0x83, 0x5d, + 0x9b, 0xbd, 0xb0, 0xa6, 0x21, 0x61, 0x44, 0x3d, 0x92, 0x30, 0xab, 0x0c, 0xb3, 0x24, 0x4c, 0xdb, + 0xf7, 0x88, 0x47, 0x38, 0xd0, 0x4e, 0xff, 0x09, 0x8e, 0xa6, 0x8f, 0x38, 0xc9, 0x1e, 0x42, 0x8a, + 0x72, 0xc5, 0x11, 0xf1, 0xf1, 0x42, 0x1c, 0x9f, 0xe7, 0xf1, 0xf4, 0x41, 0xc6, 0x1f, 0x5c, 0x9b, + 0xda, 0x14, 0x86, 0x30, 0xa0, 0x12, 0x7a, 0x20, 0xa5, 0x02, 0xea, 0xd9, 0xcf, 0xbb, 0xe9, 0x8f, + 0x0c, 0x1c, 0x8a, 0xc0, 0x40, 0x24, 0x27, 0x1e, 0x44, 0xc8, 0x9c, 0x83, 0xdb, 0x7d, 0xea, 0xf5, + 0x42, 0x04, 0x19, 0xfa, 0x1c, 0x61, 0x12, 0xa8, 0x0f, 0x40, 0x83, 0x22, 0x3c, 0x46, 0x61, 0x47, + 0xb9, 0xa7, 0xbc, 0xb7, 0xed, 0xec, 0x26, 0xb1, 0xd1, 0x9c, 0xc3, 0xe0, 0xdb, 0x63, 0x53, 0xbc, + 0x37, 0x5d, 0x09, 0x50, 0x6d, 0xb0, 0x45, 0xa3, 0xe1, 0x38, 0xa5, 0x75, 0x6e, 0x70, 0xf0, 0x5e, + 0x12, 0x1b, 0x2d, 0x09, 0x96, 0x11, 0xd3, 0xcd, 0x41, 0xc7, 0x3b, 0x3f, 0xfc, 0xf7, 0xdb, 0xfb, + 0x92, 0x6d, 0x3e, 0x03, 0x77, 0xaa, 0x4b, 0xbb, 0x88, 0x4e, 0x09, 0xa6, 0x48, 0x75, 0x40, 0x0b, + 0xa3, 0xd9, 0x80, 0x3b, 0x1e, 0x08, 0x79, 0x91, 0x8b, 0x96, 0xc4, 0xc6, 0x1d, 0x21, 0x5f, 0x03, + 0x98, 0x6e, 0x13, 0xa3, 0xd9, 0x69, 0xfa, 0x82, 0x6b, 0x99, 0x7f, 0x2a, 0xe0, 0xcd, 0x3e, 0xf5, + 0xfa, 0x3e, 0x66, 0xeb, 0x58, 0xfa, 0x02, 0x34, 0x60, 0x40, 0x22, 0xcc, 0xb8, 0xa1, 0x9d, 0x47, + 0x87, 0x96, 0x2c, 0x57, 0xba, 0x7f, 0xd9, 0x56, 0x5b, 0x3d, 0xe2, 0x63, 0xe7, 0xad, 0x97, 0xb1, + 0xb1, 0x51, 0x28, 0x09, 0x9a, 0xe9, 0x4a, 0xbe, 0xfa, 0x19, 0x68, 0x06, 0x3e, 0x66, 0xa7, 0xe4, + 0xc9, 0x78, 0x1c, 0x22, 0x4a, 0x3b, 0x37, 0xeb, 0x16, 0xd2, 0xf0, 0x80, 0x91, 0x01, 0x14, 0x00, + 0xd3, 0xad, 0x12, 0xaa, 0xd5, 0xda, 0x05, 0x2d, 0x69, 0x27, 0x2b, 0x93, 0xf9, 0xb7, 0xb0, 0xe8, + 0x44, 0x21, 0x7e, 0x3d, 0x16, 0x4f, 0x40, 0x6b, 0x18, 0x85, 0xf8, 0x24, 0x24, 0x41, 0xd5, 0xe4, + 0x51, 0x12, 0x1b, 0x1d, 0xc1, 0x49, 0x01, 0x83, 0xb3, 0x90, 0x04, 0x85, 0xcd, 0x3a, 0xe9, 0x2a, + 0xa3, 0xa9, 0xa9, 0xdc, 0xe8, 0xaf, 0x8a, 0xe8, 0xd2, 0x09, 0xc4, 0x1e, 0x7a, 0x32, 0x0e, 0xfc, + 0xb5, 0xfc, 0xbe, 0x0b, 0xde, 0x28, 0xb7, 0x68, 0x3b, 0x89, 0x8d, 0x5b, 0x02, 0x29, 0x3b, 0x47, + 0x84, 0xd5, 0x2e, 0xd8, 0x4e, 0x9b, 0x0a, 0xa6, 0xfa, 0xd2, 0xc7, 0x7e, 0x12, 0x1b, 0xed, 0xa2, + 0xdf, 0x78, 0xc8, 0x74, 0xb7, 0x30, 0x9a, 0xf1, 0x2c, 0xaa, 0x89, 0x77, 0x44, 0x3f, 0x17, 0x49, + 0xe6, 0xf9, 0xff, 0xa2, 0x80, 0xbd, 0x3e, 0xf5, 0x9e, 0x22, 0xc6, 0x7b, 0xb3, 0x8f, 0x18, 0x1c, + 0x43, 0x06, 0xd7, 0x31, 0xe1, 0x82, 0xad, 0x40, 0xd2, 0xe4, 0xb6, 0xdd, 0x2d, 0xb6, 0x0d, 0x9f, + 0xe7, 0xdb, 0x96, 0x69, 0x3b, 0x07, 0x72, 0xeb, 0xe4, 0x69, 0xcc, 0xc8, 0xa6, 0x9b, 0xeb, 0x54, + 0xb3, 0xbf, 0x0b, 0xde, 0xbe, 0x22, 0xc5, 0xdc, 0xc2, 0x1f, 0x37, 0x40, 0xbb, 0x4f, 0xbd, 0x13, + 0x12, 0x8e, 0xd0, 0x69, 0x08, 0x31, 0x3d, 0x43, 0xe1, 0xeb, 0x69, 0x3a, 0x17, 0xec, 0x31, 0x99, + 0xc0, 0x62, 0xe3, 0xdd, 0x4b, 0x62, 0xe3, 0x48, 0xf0, 0x32, 0x50, 0xad, 0xf9, 0xae, 0x22, 0xab, + 0x5f, 0x82, 0xdd, 0xec, 0x75, 0x71, 0x5e, 0x37, 0xb9, 0xa2, 0x9e, 0xc4, 0x86, 0x56, 0x53, 0x2c, + 0x9f, 0xd9, 0x45, 0x62, 0xb5, 0xae, 0x1a, 0xe8, 0xd4, 0xeb, 0x96, 0x17, 0xf5, 0x67, 0x85, 0xf7, + 0xfa, 0xd7, 0xd3, 0x31, 0x64, 0xe8, 0x2b, 0x3e, 0xca, 0xd5, 0xc7, 0x60, 0x1b, 0x46, 0x6c, 0x42, + 0x42, 0x9f, 0xcd, 0x65, 0x59, 0x3b, 0x7f, 0xfd, 0xfe, 0x70, 0x5f, 0x96, 0x4b, 0xae, 0xf1, 0x94, + 0x85, 0x3e, 0xf6, 0xdc, 0x02, 0xaa, 0x3a, 0xa0, 0x21, 0x2e, 0x03, 0x59, 0xe0, 0x77, 0xac, 0xeb, + 0x2e, 0x2b, 0x4b, 0xac, 0xe6, 0x6c, 0xa6, 0xb5, 0x76, 0x25, 0xf3, 0xf8, 0x76, 0x9a, 0x78, 0xa1, + 0x69, 0x1e, 0x82, 0x83, 0x5a, 0x7a, 0x59, 0xea, 0x8f, 0x7e, 0x6a, 0x80, 0x9b, 0x7d, 0xea, 0xa9, + 0xdf, 0x81, 0x9d, 0xf2, 0xe5, 0xf1, 0xc1, 0xf5, 0xab, 0x56, 0xe7, 0xbd, 0xf6, 0xd1, 0x3a, 0xe8, + 0xfc, 0x76, 0x78, 0x06, 0x36, 0xf9, 0x54, 0xbf, 0xbf, 0x94, 0x9d, 0xc2, 0xb4, 0x87, 0x2b, 0xc1, + 0xca, 0xea, 0x7c, 0xa0, 0x2e, 0x57, 0x4f, 0x61, 0x2b, 0xa8, 0x97, 0x27, 0x19, 0x2f, 0x57, 0x69, + 0x8a, 0xad, 0x50, 0xae, 0x02, 0xbd, 0x4a, 0xb9, 0x16, 0x87, 0x8f, 0xfa, 0xbd, 0x02, 0xda, 0x0b, + 0x93, 0xa7, 0xbb, 0x54, 0xaa, 0x4e, 0xd1, 0x3e, 0x5d, 0x9b, 0x92, 0xa7, 0x30, 0x03, 0xcd, 0xea, + 0xe0, 0xb0, 0x96, 0x6a, 0x55, 0xf0, 0xda, 0xe3, 0xf5, 0xf0, 0xf9, 0xc2, 0x0c, 0xdc, 0xaa, 0x1c, + 0xae, 0xe5, 0xbb, 0x55, 0x86, 0x6b, 0x1f, 0xaf, 0x05, 0xcf, 0x56, 0x75, 0xdc, 0x97, 0x17, 0xba, + 0xf2, 0xea, 0x42, 0x57, 0xfe, 0xbd, 0xd0, 0x95, 0x1f, 0x2f, 0xf5, 0x8d, 0x57, 0x97, 0xfa, 0xc6, + 0x3f, 0x97, 0xfa, 0xc6, 0x37, 0x9f, 0x78, 0x3e, 0x9b, 0x44, 0x43, 0x6b, 0x44, 0x02, 0xbb, 0x37, + 0xf1, 0x27, 0x11, 0x9c, 0x44, 0xb0, 0x37, 0x81, 0x3e, 0xb6, 0x47, 0xd9, 0xa3, 0xfd, 0xa2, 0xfa, + 0xa9, 0xc7, 0xe6, 0x53, 0x44, 0x87, 0x0d, 0xfe, 0xb9, 0xf6, 0xe1, 0xff, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x4c, 0xab, 0x43, 0x99, 0xaa, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.