From 9c34e906e13d8b1b417c5481048620555367de41 Mon Sep 17 00:00:00 2001 From: Markus Waas Date: Mon, 4 Apr 2022 22:24:51 +1300 Subject: [PATCH 1/3] chore: update with RegisterAsDMM message --- chain/exchange/types/codec.go | 2 +- chain/exchange/types/errors.go | 2 + chain/exchange/types/exchange.go | 21 +- chain/exchange/types/key.go | 14 +- chain/exchange/types/msgs.go | 30 ++ chain/exchange/types/tx.pb.go | 766 +++++++++++++++++++++++-------- 6 files changed, 641 insertions(+), 194 deletions(-) diff --git a/chain/exchange/types/codec.go b/chain/exchange/types/codec.go index 25794ac3..9734697c 100644 --- a/chain/exchange/types/codec.go +++ b/chain/exchange/types/codec.go @@ -32,7 +32,7 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterConcrete(&MsgIncreasePositionMargin{}, "exchange/MsgIncreasePositionMargin", nil) cdc.RegisterConcrete(&MsgLiquidatePosition{}, "exchange/MsgLiquidatePosition", nil) cdc.RegisterConcrete(&MsgBatchUpdateOrders{}, "exchange/MsgBatchUpdateOrders", nil) - + cdc.RegisterConcrete(&MsgRegisterAsDMM{}, "exchange/MsgRegisterAsDMM", nil) cdc.RegisterConcrete(&ExchangeEnableProposal{}, "exchange/ExchangeEnableProposal", nil) cdc.RegisterConcrete(&BatchExchangeModificationProposal{}, "exchange/BatchExchangeModificationProposal", nil) cdc.RegisterConcrete(&SpotMarketParamUpdateProposal{}, "exchange/SpotMarketParamUpdateProposal", nil) diff --git a/chain/exchange/types/errors.go b/chain/exchange/types/errors.go index 1ee3ae37..1d991dc2 100644 --- a/chain/exchange/types/errors.go +++ b/chain/exchange/types/errors.go @@ -65,4 +65,6 @@ var ( ErrInvalidBatchMsgUpdate = sdkerrors.Register(ModuleName, 58, "Invalid batch msg update") ErrExceedsTopOfBookPrice = sdkerrors.Register(ModuleName, 59, "Post-only order exceeds top of book price") ErrInvalidOrderTypeForMessage = sdkerrors.Register(ModuleName, 60, "Order type not supported for given message") + ErrInvalidDMMSender = sdkerrors.Register(ModuleName, 61, "Sender must match dmm account") + ErrDMMAlreadyRegistered = sdkerrors.Register(ModuleName, 62, "DMM is already registered") ) diff --git a/chain/exchange/types/exchange.go b/chain/exchange/types/exchange.go index 7b4d60f5..e047dade 100644 --- a/chain/exchange/types/exchange.go +++ b/chain/exchange/types/exchange.go @@ -61,9 +61,28 @@ type TradingRewardAccountPoints struct { Points sdk.Dec } -func (p *PointsMultiplier) GetMultiplier(e ExecutionType) sdk.Dec { +func (p *PointsMultiplier) GetEffectiveMultiplier(e ExecutionType, isRegisteredDMMCache map[string]bool, account sdk.AccAddress) sdk.Dec { + if isRegisteredDMMCache[account.String()] { + return sdk.ZeroDec() + } + if e.IsMaker() { return p.MakerPointsMultiplier } + return p.TakerPointsMultiplier } + +func (p *PointsMultiplier) GetEffectiveMultipliers(isRegisteredDMMCache map[string]bool, account sdk.AccAddress) PointsMultiplier { + if isRegisteredDMMCache[account.String()] { + return PointsMultiplier{ + MakerPointsMultiplier: sdk.ZeroDec(), + TakerPointsMultiplier: sdk.ZeroDec(), + } + } + + return PointsMultiplier{ + MakerPointsMultiplier: p.MakerPointsMultiplier, + TakerPointsMultiplier: p.TakerPointsMultiplier, + } +} diff --git a/chain/exchange/types/key.go b/chain/exchange/types/key.go index 94ce4d83..e48ecdd7 100644 --- a/chain/exchange/types/key.go +++ b/chain/exchange/types/key.go @@ -78,7 +78,9 @@ var ( FeeDiscountAccountTierPrefix = []byte{0x56} // prefix to each account's fee discount tier and TTL timestamp FeeDiscountBucketAccountFeesPaidPrefix = []byte{0x57} // prefix to each account's fee paid amount for a given bucket FeeDiscountAccountPastBucketTotalFeesPaidAmountPrefix = []byte{0x58} // prefix to each account's total past bucket fees paid amount FeeDiscountAccountIndicatorPrefix - FeeDiscountAccountOrderIndicatorPrefix = []byte{0x59} // prefix to each account's transient indicator if the account has placed an order that block + FeeDiscountAccountOrderIndicatorPrefix = []byte{0x59} // prefix to each account's transient indicator if the account has placed an order that block that is relevant for fee discounts + + IsRegisteredDMMPrefix = []byte{0x60} // prefix to each account's is registered DMM address key ) // GetFeeDiscountAccountFeesPaidInBucketKey provides the key for the account's fees paid in the given bucket @@ -132,6 +134,16 @@ func GetFeeDiscountAccountTierKey(account sdk.AccAddress) []byte { return buf } +// GetIsRegisteredDMMKey provides the key for the registered DMM address +func GetIsRegisteredDMMKey(account sdk.AccAddress) []byte { + accountBz := account.Bytes() + + buf := make([]byte, 0, len(IsRegisteredDMMPrefix)+len(accountBz)) + buf = append(buf, IsRegisteredDMMPrefix...) + buf = append(buf, accountBz...) + return buf +} + // GetFeeDiscountMarketQualificationKey provides the key for the market fee discount qualification status func GetFeeDiscountMarketQualificationKey(marketID common.Hash) []byte { return append(FeeDiscountMarketQualificationPrefix, marketID.Bytes()...) diff --git a/chain/exchange/types/msgs.go b/chain/exchange/types/msgs.go index c2dd319c..ec9517d4 100644 --- a/chain/exchange/types/msgs.go +++ b/chain/exchange/types/msgs.go @@ -2,6 +2,7 @@ package types import ( "bytes" + "fmt" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" @@ -31,6 +32,7 @@ var ( _ sdk.Msg = &MsgInstantPerpetualMarketLaunch{} _ sdk.Msg = &MsgInstantExpiryFuturesMarketLaunch{} _ sdk.Msg = &MsgBatchUpdateOrders{} + _ sdk.Msg = &MsgRegisterAsDMM{} ) func (o *SpotOrder) ValidateBasic(senderAddr sdk.AccAddress) error { @@ -924,6 +926,34 @@ func (msg *MsgIncreasePositionMargin) GetSigners() []sdk.AccAddress { return []sdk.AccAddress{sender} } +func (msg *MsgRegisterAsDMM) Route() string { + return RouterKey +} + +func (msg *MsgRegisterAsDMM) Type() string { + return "redeemFromMarketMakingPool" +} + +func (msg *MsgRegisterAsDMM) ValidateBasic() error { + if msg.Sender != msg.DmmAccount { + return sdkerrors.Wrap(ErrInvalidDMMSender, fmt.Sprintf("Sender: %s doesn't match dmm account: %s", msg.Sender, msg.DmmAccount)) + } + + return nil +} + +func (msg *MsgRegisterAsDMM) GetSignBytes() []byte { + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) +} + +func (msg *MsgRegisterAsDMM) GetSigners() []sdk.AccAddress { + sender, err := sdk.AccAddressFromBech32(msg.Sender) + if err != nil { + panic(err) + } + return []sdk.AccAddress{sender} +} + func (msg *MsgLiquidatePosition) Route() string { return RouterKey } diff --git a/chain/exchange/types/tx.pb.go b/chain/exchange/types/tx.pb.go index 40948c84..36b2bfee 100644 --- a/chain/exchange/types/tx.pb.go +++ b/chain/exchange/types/tx.pb.go @@ -2554,6 +2554,96 @@ func (m *BatchCommunityPoolSpendProposal) XXX_DiscardUnknown() { var xxx_messageInfo_BatchCommunityPoolSpendProposal proto.InternalMessageInfo +// A Cosmos-SDK MsgRegisterAsDMM +type MsgRegisterAsDMM struct { + Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"` + DmmAccount string `protobuf:"bytes,2,opt,name=dmm_account,json=dmmAccount,proto3" json:"dmm_account,omitempty"` +} + +func (m *MsgRegisterAsDMM) Reset() { *m = MsgRegisterAsDMM{} } +func (m *MsgRegisterAsDMM) String() string { return proto.CompactTextString(m) } +func (*MsgRegisterAsDMM) ProtoMessage() {} +func (*MsgRegisterAsDMM) Descriptor() ([]byte, []int) { + return fileDescriptor_bd45b74cb6d81462, []int{55} +} +func (m *MsgRegisterAsDMM) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgRegisterAsDMM) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgRegisterAsDMM.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgRegisterAsDMM) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgRegisterAsDMM.Merge(m, src) +} +func (m *MsgRegisterAsDMM) XXX_Size() int { + return m.Size() +} +func (m *MsgRegisterAsDMM) XXX_DiscardUnknown() { + xxx_messageInfo_MsgRegisterAsDMM.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgRegisterAsDMM proto.InternalMessageInfo + +func (m *MsgRegisterAsDMM) GetSender() string { + if m != nil { + return m.Sender + } + return "" +} + +func (m *MsgRegisterAsDMM) GetDmmAccount() string { + if m != nil { + return m.DmmAccount + } + return "" +} + +// MsgRegisterAsDMMResponse defines the Msg/RegisterAsDMM response type. +type MsgRegisterAsDMMResponse struct { +} + +func (m *MsgRegisterAsDMMResponse) Reset() { *m = MsgRegisterAsDMMResponse{} } +func (m *MsgRegisterAsDMMResponse) String() string { return proto.CompactTextString(m) } +func (*MsgRegisterAsDMMResponse) ProtoMessage() {} +func (*MsgRegisterAsDMMResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_bd45b74cb6d81462, []int{56} +} +func (m *MsgRegisterAsDMMResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgRegisterAsDMMResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgRegisterAsDMMResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgRegisterAsDMMResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgRegisterAsDMMResponse.Merge(m, src) +} +func (m *MsgRegisterAsDMMResponse) XXX_Size() int { + return m.Size() +} +func (m *MsgRegisterAsDMMResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgRegisterAsDMMResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgRegisterAsDMMResponse proto.InternalMessageInfo + func init() { proto.RegisterEnum("injective.exchange.v1beta1.ExchangeType", ExchangeType_name, ExchangeType_value) proto.RegisterType((*MsgDeposit)(nil), "injective.exchange.v1beta1.MsgDeposit") @@ -2611,6 +2701,8 @@ func init() { proto.RegisterType((*TradingRewardPendingPointsUpdateProposal)(nil), "injective.exchange.v1beta1.TradingRewardPendingPointsUpdateProposal") proto.RegisterType((*FeeDiscountProposal)(nil), "injective.exchange.v1beta1.FeeDiscountProposal") proto.RegisterType((*BatchCommunityPoolSpendProposal)(nil), "injective.exchange.v1beta1.BatchCommunityPoolSpendProposal") + proto.RegisterType((*MsgRegisterAsDMM)(nil), "injective.exchange.v1beta1.MsgRegisterAsDMM") + proto.RegisterType((*MsgRegisterAsDMMResponse)(nil), "injective.exchange.v1beta1.MsgRegisterAsDMMResponse") } func init() { @@ -2618,197 +2710,201 @@ func init() { } var fileDescriptor_bd45b74cb6d81462 = []byte{ - // 3034 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5c, 0xdb, 0x6f, 0x24, 0xc5, - 0xd5, 0x77, 0x7b, 0xc6, 0x33, 0x9e, 0x63, 0x7b, 0x2f, 0x6d, 0xaf, 0x77, 0x76, 0x76, 0x7d, 0xd9, - 0x31, 0xec, 0x1a, 0xd0, 0x8e, 0xc1, 0x2c, 0xf0, 0xed, 0xf2, 0x91, 0x8d, 0xd7, 0x17, 0x70, 0xb0, - 0xc1, 0xf4, 0x18, 0x12, 0x21, 0x85, 0x4e, 0xb9, 0xa7, 0x3c, 0xd3, 0xec, 0x4c, 0x77, 0x6f, 0x57, - 0x0d, 0xbb, 0x46, 0x51, 0x90, 0x92, 0x40, 0x10, 0x24, 0x24, 0x28, 0x42, 0x51, 0x22, 0xad, 0x84, - 0x14, 0xa4, 0xe4, 0x21, 0x3c, 0xe4, 0x31, 0xf9, 0x0b, 0xc8, 0x1b, 0x0f, 0x51, 0x14, 0xf1, 0x80, - 0x22, 0x78, 0xc9, 0x7b, 0x5e, 0xa2, 0x3c, 0x45, 0x5d, 0xd5, 0xdd, 0xd3, 0xd3, 0xd3, 0xb7, 0x69, - 0x7b, 0x16, 0xb4, 0xca, 0xd3, 0xba, 0xab, 0xce, 0xe5, 0x77, 0x4e, 0x9d, 0x53, 0x97, 0x53, 0x35, - 0x0b, 0x0b, 0xaa, 0xf6, 0x2a, 0x56, 0xa8, 0xfa, 0x1a, 0x5e, 0xc2, 0xb7, 0x95, 0x06, 0xd2, 0xea, - 0x78, 0xe9, 0xb5, 0x47, 0xf6, 0x30, 0x45, 0x8f, 0x2c, 0xd1, 0xdb, 0x15, 0xc3, 0xd4, 0xa9, 0x2e, - 0x96, 0x5c, 0xa2, 0x8a, 0x43, 0x54, 0xb1, 0x89, 0x4a, 0x53, 0x75, 0xbd, 0xae, 0x33, 0xb2, 0x25, - 0xeb, 0x2f, 0xce, 0x51, 0xba, 0xbf, 0x23, 0x56, 0x37, 0x91, 0xd2, 0xec, 0x08, 0xe5, 0x9f, 0x36, - 0xd9, 0x03, 0x11, 0xda, 0x5d, 0x4d, 0x9c, 0x74, 0x56, 0xd1, 0x49, 0x4b, 0x27, 0x4b, 0x7b, 0x88, - 0x74, 0x68, 0x14, 0x5d, 0xd5, 0xec, 0xfe, 0x8a, 0xdd, 0x5f, 0x53, 0x09, 0x35, 0xd5, 0xbd, 0x36, - 0x55, 0x75, 0xcd, 0xa5, 0xf3, 0x36, 0x72, 0xfa, 0xf2, 0x4f, 0x05, 0x80, 0x6d, 0x52, 0x5f, 0xc3, - 0x86, 0x4e, 0x54, 0x2a, 0x4e, 0x43, 0x8e, 0x60, 0xad, 0x86, 0xcd, 0xa2, 0x30, 0x2f, 0x2c, 0x16, - 0x24, 0xfb, 0x4b, 0x5c, 0x80, 0x09, 0xd2, 0xde, 0x43, 0x8a, 0xa2, 0xb7, 0x35, 0x2a, 0xab, 0xb5, - 0xe2, 0x30, 0xeb, 0x1e, 0xef, 0x34, 0x6e, 0xd6, 0xc4, 0x27, 0x20, 0x87, 0x5a, 0xd6, 0xdf, 0xc5, - 0xcc, 0xbc, 0xb0, 0x38, 0xb6, 0x7c, 0xc6, 0x06, 0x53, 0xb1, 0xc0, 0x3a, 0x9e, 0xaa, 0xac, 0xea, - 0xaa, 0x76, 0x3d, 0xfb, 0xc9, 0xe7, 0x73, 0x43, 0x92, 0x4d, 0x7e, 0x75, 0xf4, 0xed, 0x0f, 0xe7, - 0x86, 0xfe, 0xf9, 0xe1, 0xdc, 0x50, 0x79, 0x0a, 0xc4, 0x0e, 0x1a, 0x09, 0x13, 0x43, 0xd7, 0x08, - 0x2e, 0xff, 0x4c, 0x80, 0xb1, 0x6d, 0x52, 0xff, 0xb6, 0x4a, 0x1b, 0x35, 0x13, 0xdd, 0xfa, 0xca, - 0x51, 0x9e, 0x82, 0x49, 0x0f, 0x1c, 0x17, 0xe6, 0x0f, 0xe0, 0xf4, 0x36, 0xa9, 0xaf, 0x9a, 0x18, - 0x51, 0x5c, 0x35, 0x74, 0xba, 0xa5, 0xb6, 0x54, 0xfa, 0xbc, 0x69, 0x21, 0x0b, 0x43, 0xbc, 0x02, - 0x23, 0xba, 0x45, 0xc0, 0x90, 0x8e, 0x2d, 0xdf, 0x5f, 0x09, 0x0f, 0xb1, 0x8a, 0x25, 0x92, 0x49, - 0xb3, 0x71, 0x71, 0x4e, 0x0f, 0xac, 0x6f, 0xc1, 0x5c, 0x88, 0x7e, 0x07, 0xa2, 0x38, 0x03, 0xc0, - 0xb8, 0xe4, 0x06, 0x22, 0x0d, 0x1b, 0x4b, 0x81, 0xb5, 0x3c, 0x83, 0x48, 0xc3, 0x23, 0xeb, 0x2d, - 0x01, 0x66, 0xb6, 0x49, 0xfd, 0x3a, 0xa2, 0x4a, 0x23, 0x48, 0x22, 0x09, 0x35, 0x69, 0x15, 0x72, - 0x4c, 0x20, 0x29, 0x0e, 0xcf, 0x67, 0xfa, 0xb5, 0xc9, 0x66, 0xf5, 0x00, 0xd9, 0x85, 0xfb, 0x23, - 0x71, 0xb8, 0xa6, 0x9d, 0x87, 0xf1, 0x8e, 0x69, 0x98, 0x14, 0x85, 0xf9, 0xcc, 0x62, 0x41, 0x1a, - 0x73, 0x8d, 0xc3, 0x5e, 0xa9, 0x9f, 0x0d, 0x43, 0x69, 0x9b, 0xd4, 0x37, 0x35, 0x42, 0x91, 0x46, - 0x2d, 0x91, 0xdb, 0xc8, 0xbc, 0x81, 0xe9, 0x16, 0x6a, 0x6b, 0x4a, 0x23, 0xd4, 0xb6, 0x69, 0xc8, - 0x51, 0x55, 0xb9, 0x61, 0x8f, 0x57, 0x41, 0xb2, 0xbf, 0x2c, 0xb7, 0x5a, 0xd1, 0x23, 0xd7, 0xb0, - 0xa6, 0xb7, 0x58, 0x5c, 0x15, 0xa4, 0x82, 0xd5, 0xb2, 0x66, 0x35, 0x88, 0x73, 0x30, 0x76, 0xb3, - 0xad, 0x53, 0xa7, 0x3f, 0xcb, 0xfa, 0x81, 0x35, 0x71, 0x82, 0xef, 0xc2, 0x64, 0x4b, 0xd5, 0x64, - 0xc3, 0x54, 0x15, 0x2c, 0x5b, 0x32, 0x65, 0xa2, 0xbe, 0x8e, 0x8b, 0x23, 0x16, 0xe1, 0xf5, 0x8a, - 0xe5, 0x99, 0xcf, 0x3e, 0x9f, 0xbb, 0x50, 0x57, 0x69, 0xa3, 0xbd, 0x57, 0x51, 0xf4, 0xd6, 0x92, - 0x9d, 0xe5, 0xfc, 0x9f, 0x4b, 0xa4, 0x76, 0x63, 0x89, 0x1e, 0x18, 0x98, 0x54, 0xd6, 0xb0, 0x22, - 0x9d, 0x68, 0xa9, 0xda, 0x8e, 0x25, 0x69, 0x57, 0x55, 0x6e, 0x54, 0xd5, 0xd7, 0xb1, 0xa8, 0xc0, - 0xb4, 0x25, 0xfe, 0x66, 0x1b, 0x69, 0x54, 0xa5, 0x07, 0x1e, 0x0d, 0xb9, 0x54, 0x1a, 0x2c, 0xb0, - 0x2f, 0xd8, 0xc2, 0x1c, 0x25, 0x1e, 0xe7, 0xde, 0x07, 0xe5, 0x70, 0xdf, 0xba, 0xd9, 0xf2, 0xaf, - 0x1c, 0x0b, 0x57, 0x9b, 0x6c, 0x07, 0x9b, 0x06, 0xa6, 0x6d, 0xd4, 0x3c, 0xd4, 0x38, 0xf8, 0x1c, - 0x9d, 0xe9, 0x71, 0xf4, 0x1c, 0x8c, 0xf1, 0x99, 0x57, 0xb6, 0x46, 0xc7, 0x19, 0x09, 0xde, 0x74, - 0x1d, 0x39, 0x51, 0xc4, 0x08, 0x18, 0x17, 0x1f, 0x02, 0xc9, 0x66, 0x7a, 0xc1, 0x6a, 0x12, 0x2b, - 0x30, 0x69, 0x93, 0x10, 0x05, 0x35, 0xb1, 0xbc, 0x8f, 0x14, 0xaa, 0x9b, 0xcc, 0x95, 0x13, 0xd2, - 0x49, 0xde, 0x55, 0xb5, 0x7a, 0x36, 0x58, 0x87, 0xb8, 0xee, 0xea, 0xb4, 0x3c, 0x58, 0xcc, 0xcf, - 0x0b, 0x8b, 0xc7, 0x96, 0xef, 0xf3, 0x64, 0x85, 0xbd, 0x16, 0x38, 0x39, 0xf1, 0x3c, 0xfb, 0xdc, - 0x3d, 0x30, 0xb0, 0x83, 0xcc, 0xfa, 0x5b, 0xdc, 0x85, 0x63, 0x2d, 0x74, 0x03, 0x9b, 0xf2, 0x3e, - 0xc6, 0xb2, 0x89, 0x28, 0x2e, 0x8e, 0xa6, 0x1a, 0xbc, 0x71, 0x26, 0x65, 0x03, 0x63, 0x09, 0x51, - 0x26, 0x95, 0x76, 0x4b, 0x2d, 0xa4, 0x93, 0x4a, 0xbd, 0x52, 0xbf, 0x07, 0x53, 0xaa, 0xa6, 0x52, - 0x15, 0x35, 0xe5, 0x16, 0x32, 0xeb, 0xaa, 0x66, 0x89, 0x56, 0xf5, 0x22, 0xa4, 0x92, 0x2d, 0xda, - 0xb2, 0xb6, 0x99, 0x28, 0xc9, 0x92, 0x24, 0x36, 0xa0, 0xd8, 0x42, 0xaa, 0x46, 0xb1, 0x86, 0x34, - 0x05, 0x77, 0x6b, 0x19, 0x4b, 0xa5, 0x65, 0xda, 0x23, 0xcf, 0xab, 0x29, 0x24, 0x37, 0xc7, 0x07, - 0x9e, 0x9b, 0x13, 0x83, 0xc8, 0xcd, 0x07, 0xe0, 0x62, 0x4c, 0xd2, 0xb9, 0x09, 0xfa, 0xf3, 0x3c, - 0x2c, 0x74, 0x68, 0xd7, 0x6f, 0x1b, 0xaa, 0x79, 0xb0, 0xd1, 0xa6, 0x6d, 0x13, 0x93, 0xaf, 0x7f, - 0x92, 0xfa, 0x92, 0x2e, 0x97, 0x32, 0xe9, 0x42, 0x72, 0x3d, 0x1f, 0x96, 0xeb, 0xd3, 0x90, 0xc3, - 0xcc, 0x51, 0x2c, 0x39, 0x33, 0x92, 0xfd, 0x15, 0x90, 0xbc, 0x85, 0x81, 0x24, 0x2f, 0x0c, 0x30, - 0x79, 0xc7, 0xee, 0x4a, 0xf2, 0x8e, 0xdf, 0x8d, 0xe4, 0x9d, 0x18, 0x78, 0xf2, 0x1e, 0x1b, 0x44, - 0xf2, 0x5e, 0x82, 0x87, 0x12, 0x24, 0xa4, 0x9b, 0xc0, 0x6f, 0x40, 0xb1, 0x6b, 0x3f, 0xc8, 0x89, - 0xee, 0xe2, 0x86, 0xf4, 0x59, 0x98, 0x0f, 0x03, 0x90, 0x7a, 0x47, 0xca, 0xa5, 0xad, 0x61, 0x53, - 0x7d, 0x0d, 0x59, 0xb0, 0x12, 0x6c, 0xb2, 0x9f, 0xee, 0xb6, 0xe9, 0xa1, 0x28, 0x9b, 0x3a, 0x82, - 0x03, 0x2c, 0xcb, 0x5a, 0x60, 0xca, 0x3b, 0x6c, 0x47, 0x1a, 0x8e, 0xa3, 0x7f, 0xd3, 0xde, 0x13, - 0xd8, 0x4c, 0xeb, 0xd9, 0xe4, 0x06, 0xc9, 0x0d, 0xdf, 0x72, 0x6f, 0xfa, 0xb6, 0xdc, 0x29, 0x2c, - 0x74, 0x36, 0xde, 0xdc, 0xc4, 0x97, 0x59, 0xa0, 0xc5, 0xe1, 0x49, 0xb7, 0xf5, 0xfe, 0xa5, 0xc0, - 0xce, 0x78, 0xab, 0x56, 0xaa, 0x36, 0xdd, 0x10, 0x0a, 0xb5, 0xed, 0x2c, 0x14, 0x5a, 0x2c, 0x6c, - 0x3a, 0xe7, 0xb9, 0x51, 0xde, 0xb0, 0x59, 0xeb, 0x3d, 0xf0, 0x65, 0x02, 0x0e, 0x7c, 0xdd, 0xc3, - 0x90, 0xf5, 0x0f, 0x03, 0xb7, 0xf8, 0x1c, 0x3b, 0x0f, 0xf8, 0x40, 0xb9, 0x99, 0x74, 0xc0, 0x32, - 0x89, 0xfb, 0xa3, 0x9b, 0x24, 0x7c, 0x50, 0xae, 0x41, 0xb6, 0x86, 0x28, 0x4a, 0x72, 0x0a, 0x62, - 0x92, 0xd6, 0x10, 0x45, 0xf6, 0x60, 0x30, 0x46, 0x1b, 0xd8, 0x06, 0xcb, 0xa1, 0x40, 0xd5, 0xae, - 0xff, 0x8b, 0x90, 0x27, 0x6d, 0x45, 0xc1, 0x84, 0xbb, 0x7e, 0x54, 0x72, 0x3e, 0x3d, 0x6e, 0x7f, - 0x73, 0x04, 0xa6, 0x1c, 0x41, 0x2f, 0x1a, 0x35, 0x44, 0x71, 0x0c, 0xfe, 0x44, 0x87, 0xe9, 0x6b, - 0x30, 0x43, 0x0c, 0x9d, 0xca, 0xee, 0x10, 0x11, 0x99, 0xea, 0xb2, 0xc2, 0x80, 0xca, 0xa8, 0xd9, - 0x2c, 0x66, 0x58, 0x28, 0x14, 0x89, 0x9b, 0xfd, 0x9b, 0x35, 0xb2, 0xab, 0x73, 0x4b, 0x56, 0x9a, - 0x4d, 0xf1, 0x59, 0x58, 0xa8, 0xb9, 0xb1, 0x15, 0x2e, 0x26, 0xcb, 0xc4, 0xcc, 0x76, 0x48, 0x03, - 0x85, 0xbd, 0x02, 0xa7, 0x18, 0x1a, 0x1e, 0xcb, 0x1d, 0x11, 0xc5, 0x91, 0x7e, 0xc7, 0x40, 0x90, - 0x44, 0xe2, 0xfa, 0xd9, 0x51, 0x21, 0xbe, 0x0a, 0x67, 0x3d, 0x60, 0x7b, 0xb4, 0xe4, 0xfa, 0xd7, - 0x52, 0xac, 0x75, 0x67, 0x63, 0x47, 0x57, 0x80, 0x2d, 0x2c, 0x13, 0x8b, 0xf9, 0x7e, 0x4f, 0xd5, - 0x7e, 0x5b, 0x98, 0x18, 0xd1, 0x08, 0xb3, 0x85, 0x6b, 0x19, 0x4d, 0x37, 0x91, 0x04, 0x5b, 0xc4, - 0x44, 0xda, 0xf1, 0xfc, 0x6f, 0x01, 0xce, 0x05, 0xc5, 0xa1, 0x1b, 0xcc, 0x15, 0x98, 0x64, 0x86, - 0xdb, 0xa3, 0xdf, 0x1d, 0xd8, 0x27, 0xad, 0x2e, 0x3b, 0x0f, 0x78, 0x87, 0x78, 0x15, 0xce, 0x78, - 0x0c, 0xf1, 0x71, 0x0d, 0x33, 0xae, 0xd3, 0x1d, 0x82, 0x6e, 0xde, 0x07, 0xe1, 0x64, 0xc7, 0xc9, - 0xce, 0xec, 0xc5, 0x43, 0xf6, 0xb8, 0xeb, 0x33, 0x3e, 0x83, 0x89, 0x8f, 0xc3, 0x69, 0xbf, 0xc3, - 0x1c, 0x0e, 0x1e, 0x9d, 0xa7, 0x7c, 0x96, 0xf7, 0xcc, 0x7c, 0x3f, 0x11, 0x60, 0x36, 0x60, 0xe5, - 0x48, 0xb2, 0x2c, 0x1f, 0xf1, 0x12, 0xf6, 0x02, 0x5c, 0x88, 0x06, 0xd2, 0xff, 0x1a, 0xf6, 0x6b, - 0x81, 0xef, 0x36, 0x98, 0x7f, 0x7d, 0x10, 0xbe, 0xea, 0xc9, 0xbd, 0xcc, 0xf7, 0x21, 0x41, 0xd0, - 0xdc, 0x29, 0xbe, 0x09, 0x05, 0x37, 0x39, 0xbb, 0x71, 0x09, 0x71, 0xb8, 0x86, 0x63, 0x71, 0x65, - 0x7c, 0xb8, 0xca, 0x6f, 0xb0, 0x48, 0xf0, 0xcc, 0xea, 0x3e, 0x58, 0x03, 0x5f, 0x56, 0xb6, 0x58, - 0x04, 0x44, 0x00, 0xe8, 0x6b, 0x71, 0xf9, 0x9b, 0x00, 0xa7, 0xb6, 0x49, 0xbd, 0xea, 0x7a, 0x60, - 0xd7, 0x44, 0x1a, 0xd9, 0x8f, 0x18, 0xf9, 0x87, 0x61, 0x8a, 0xe8, 0x6d, 0x53, 0xc1, 0x72, 0x90, - 0x2f, 0x45, 0xde, 0x57, 0xf5, 0x7a, 0x94, 0xe5, 0x39, 0xa1, 0xaa, 0x66, 0x6d, 0xec, 0x35, 0x39, - 0x28, 0x34, 0x4e, 0x7b, 0x08, 0xaa, 0xc1, 0x35, 0xdf, 0x6c, 0x5f, 0x35, 0xdf, 0xf2, 0x1c, 0xdb, - 0x73, 0xf6, 0xda, 0xe5, 0x86, 0xcd, 0x5f, 0x05, 0x56, 0x0b, 0x5e, 0xbf, 0x4d, 0xb1, 0xa9, 0xa1, - 0xe6, 0xbd, 0x62, 0xf7, 0x0c, 0x9c, 0x0d, 0xb0, 0xca, 0xb5, 0xfa, 0x4f, 0x02, 0xdb, 0x4c, 0x6c, - 0xa9, 0x37, 0xdb, 0xaa, 0x35, 0x85, 0xef, 0xe8, 0x44, 0xb5, 0x94, 0x1f, 0x6e, 0x33, 0xd1, 0x95, - 0x75, 0x19, 0x5f, 0xd6, 0xb9, 0x33, 0x60, 0x36, 0xdd, 0x0c, 0x28, 0xd8, 0x33, 0x60, 0x79, 0x96, - 0xad, 0x3f, 0x3d, 0xd0, 0x5d, 0xdb, 0xde, 0x1a, 0x86, 0x33, 0xec, 0x94, 0x65, 0xad, 0x84, 0xc4, - 0xed, 0xe7, 0xa7, 0xca, 0xaf, 0xc9, 0xb8, 0x76, 0x79, 0x2a, 0xeb, 0xf3, 0xd4, 0x86, 0x3b, 0xe8, - 0xe9, 0xea, 0xc7, 0x4e, 0x0c, 0x2c, 0xc0, 0xf9, 0x50, 0x3f, 0xb8, 0xde, 0xfa, 0x60, 0x04, 0x66, - 0x3a, 0x47, 0xbb, 0x1d, 0x64, 0xa2, 0x16, 0x5f, 0xd5, 0x77, 0x4c, 0xdd, 0xd0, 0x09, 0x6a, 0x8a, - 0x53, 0x30, 0x42, 0x55, 0xda, 0xc4, 0xb6, 0xc3, 0xf8, 0x87, 0x38, 0x0f, 0x63, 0x35, 0x4c, 0x14, - 0x53, 0x35, 0x2c, 0xa1, 0xb6, 0x9b, 0xbc, 0x4d, 0xd1, 0xd1, 0xd0, 0x5b, 0x4f, 0xc9, 0xba, 0xb6, - 0x0a, 0x47, 0x58, 0x4f, 0x19, 0x49, 0x27, 0xb5, 0xab, 0x9e, 0xa2, 0xc0, 0xb4, 0x89, 0x9b, 0xe8, - 0xc0, 0x96, 0x4b, 0x1a, 0xc8, 0xb4, 0xa5, 0xe7, 0x52, 0x49, 0x9f, 0xb4, 0xa5, 0x6d, 0x60, 0x5c, - 0xb5, 0x64, 0x31, 0x25, 0x21, 0x85, 0x8e, 0x7c, 0x2a, 0x0d, 0xfd, 0x14, 0x3a, 0x46, 0xd3, 0xd9, - 0x10, 0x50, 0xe8, 0x10, 0xbf, 0x09, 0x39, 0x42, 0x11, 0x6d, 0x13, 0x56, 0x1c, 0x3b, 0xb6, 0xbc, - 0x18, 0x95, 0xe3, 0x3c, 0xe0, 0xaa, 0x8c, 0x5e, 0xb2, 0xf9, 0x3c, 0x2b, 0xd2, 0xef, 0x05, 0x98, - 0x5e, 0xb7, 0x79, 0xd6, 0x35, 0xb4, 0xd7, 0x3c, 0x7c, 0x40, 0x6e, 0xc1, 0xb8, 0x83, 0x62, 0xf7, - 0xc0, 0xc0, 0x2c, 0x26, 0x63, 0x40, 0xae, 0x7b, 0xe8, 0xa5, 0x2e, 0x6e, 0x0f, 0xd4, 0x3f, 0xe6, - 0xe1, 0x3c, 0x5b, 0x88, 0x1d, 0xea, 0x6d, 0xbd, 0xa6, 0xee, 0xab, 0x0a, 0x4b, 0xfb, 0x43, 0xa3, - 0x7e, 0x53, 0x80, 0xb2, 0xf7, 0x88, 0x66, 0x58, 0x29, 0x2a, 0xb7, 0x59, 0x8e, 0xca, 0x86, 0x2d, - 0x9d, 0x6f, 0x7a, 0xc7, 0x96, 0xaf, 0xc4, 0x9d, 0x2a, 0x42, 0xd3, 0x5c, 0x9a, 0x25, 0x51, 0xdd, - 0x44, 0xfc, 0x95, 0x00, 0x8b, 0xbd, 0x27, 0xbd, 0x10, 0x34, 0x59, 0x86, 0xe6, 0x5a, 0xb2, 0x39, - 0x3e, 0x1c, 0xd3, 0x7d, 0xb5, 0x78, 0x22, 0x22, 0xb6, 0xe1, 0x9c, 0xd7, 0x41, 0x4d, 0x56, 0x44, - 0xf3, 0x80, 0xe1, 0x87, 0xc7, 0xcb, 0xc9, 0x5c, 0xc3, 0x4b, 0x70, 0x2e, 0x82, 0x33, 0x24, 0xa4, - 0x87, 0x88, 0x3f, 0x16, 0xe0, 0xbc, 0xe1, 0x14, 0xe0, 0x43, 0x95, 0xe7, 0xe2, 0xc7, 0x25, 0xb0, - 0x8a, 0xdf, 0x19, 0x17, 0x23, 0xaa, 0x9b, 0x88, 0xef, 0x0b, 0x70, 0x81, 0x17, 0xa9, 0xe5, 0x7d, - 0x5e, 0x4b, 0x0c, 0xc5, 0xc2, 0x4f, 0x9e, 0x4f, 0x45, 0x07, 0x7c, 0x48, 0x51, 0xd2, 0xc5, 0x53, - 0xc6, 0x71, 0x24, 0x44, 0xfc, 0x40, 0x80, 0x8b, 0xd4, 0x44, 0x35, 0x55, 0xab, 0xcb, 0x26, 0xbe, - 0x85, 0xcc, 0x9a, 0xac, 0xa0, 0x96, 0x81, 0xd4, 0xba, 0xe6, 0x8f, 0x15, 0x36, 0xff, 0xc4, 0x84, - 0xca, 0x2e, 0x17, 0x25, 0x31, 0x49, 0xab, 0xb6, 0x20, 0x5f, 0xa8, 0x2c, 0xd0, 0x78, 0x22, 0x4f, - 0xce, 0x7e, 0x94, 0x85, 0x62, 0xd8, 0xa0, 0xa7, 0x4e, 0xd5, 0xce, 0x85, 0x49, 0x26, 0xe2, 0x76, - 0x39, 0x1b, 0x73, 0xbb, 0x3c, 0x92, 0xf4, 0x76, 0x39, 0x37, 0xf0, 0x22, 0x78, 0xfe, 0xc8, 0x8a, - 0xe0, 0x91, 0xb7, 0x9f, 0xc2, 0x40, 0x6e, 0x3f, 0x53, 0x2f, 0xf8, 0x9e, 0x30, 0x79, 0x3f, 0x0f, - 0x33, 0x91, 0xe9, 0x79, 0xe4, 0xb1, 0x12, 0xfb, 0xd4, 0xc0, 0x77, 0xb9, 0x36, 0x12, 0x7b, 0xb9, - 0x96, 0x4b, 0x7c, 0x03, 0x9e, 0x4f, 0x78, 0x03, 0x3e, 0x9a, 0xf2, 0x32, 0x2e, 0xec, 0x62, 0xaa, - 0x70, 0x57, 0x2e, 0xa6, 0xe0, 0x48, 0x2f, 0xa6, 0x7a, 0xe3, 0x79, 0x6c, 0x20, 0x17, 0x82, 0xe3, - 0x47, 0x70, 0x21, 0x78, 0x6f, 0x5d, 0xa2, 0x7d, 0x9c, 0x87, 0xf3, 0xb1, 0xcb, 0xd4, 0xff, 0xf2, - 0xb2, 0x8f, 0xbc, 0xec, 0x5c, 0x7a, 0x17, 0xba, 0x2e, 0xbd, 0xef, 0xa5, 0x57, 0x20, 0xbd, 0xf9, - 0x3a, 0x3e, 0x90, 0x7c, 0x9d, 0x18, 0x5c, 0xbe, 0x1e, 0x1b, 0x78, 0xbe, 0x1e, 0x1f, 0x44, 0xbe, - 0xfe, 0x67, 0x14, 0x16, 0x12, 0x6c, 0xf6, 0x07, 0x53, 0x67, 0x08, 0x0b, 0xe1, 0x74, 0xd5, 0x86, - 0x7e, 0x43, 0x38, 0x5d, 0xf5, 0x21, 0x79, 0x08, 0xe7, 0x06, 0xb2, 0x85, 0xca, 0x0f, 0xb4, 0x66, - 0x32, 0x3a, 0xf0, 0x9a, 0x49, 0x61, 0xe0, 0x35, 0x13, 0x38, 0xba, 0x9a, 0xc9, 0x2b, 0x20, 0x3e, - 0xa3, 0xb7, 0xcd, 0xe6, 0xc1, 0xa6, 0x46, 0xb1, 0x89, 0x09, 0x95, 0xba, 0xf7, 0x12, 0x7d, 0x85, - 0x67, 0xaf, 0x24, 0x71, 0x0f, 0xa6, 0x78, 0xeb, 0x46, 0x5b, 0x63, 0xe7, 0x23, 0x44, 0xf1, 0x2a, - 0x32, 0x3c, 0xb3, 0x5f, 0x3f, 0x1a, 0x02, 0x65, 0x79, 0xea, 0x3e, 0x13, 0xe9, 0xea, 0x3e, 0xe2, - 0x36, 0x4c, 0xd8, 0x0b, 0x19, 0x2b, 0x28, 0x10, 0x36, 0xd7, 0x8d, 0x45, 0x0b, 0xe2, 0x8b, 0x19, - 0x9b, 0x49, 0x88, 0x64, 0x2f, 0xad, 0xfc, 0xcb, 0x33, 0xf9, 0xfc, 0x45, 0x80, 0x71, 0x2f, 0xa1, - 0x7f, 0x99, 0x16, 0x62, 0x97, 0xe9, 0xe1, 0xc4, 0xcb, 0x74, 0x26, 0xe1, 0x32, 0x9d, 0x4d, 0xb7, - 0x4c, 0x97, 0x7f, 0x37, 0x0c, 0x0b, 0x81, 0x47, 0xe1, 0x23, 0xda, 0xfa, 0xbc, 0x0c, 0x13, 0xee, - 0x29, 0x5d, 0xd5, 0xf6, 0x75, 0xfb, 0x7d, 0xfd, 0x63, 0x7d, 0x1f, 0xcd, 0x37, 0xb5, 0x7d, 0x5d, - 0x1a, 0x57, 0x3c, 0x5f, 0xe2, 0x1e, 0x9c, 0x72, 0x65, 0xdb, 0x15, 0x01, 0x43, 0xd7, 0xdd, 0x4a, - 0x51, 0x25, 0x4a, 0x87, 0x23, 0x96, 0x2b, 0xd9, 0xd1, 0xf5, 0xa6, 0x34, 0xa9, 0xf4, 0xb4, 0x79, - 0x47, 0xfd, 0xe3, 0x4c, 0x88, 0xa7, 0x8e, 0x68, 0xc9, 0x19, 0xa4, 0xa7, 0xda, 0x30, 0x17, 0xe8, - 0x29, 0x19, 0xd5, 0x6a, 0xac, 0x80, 0x9f, 0xd6, 0x67, 0xe7, 0x02, 0x7c, 0xb6, 0xe2, 0xc8, 0x14, - 0x6f, 0xc2, 0x4c, 0xb0, 0x5a, 0x5e, 0xaf, 0x71, 0xaa, 0x68, 0xfd, 0x2a, 0x2d, 0x05, 0x28, 0xe5, - 0x83, 0xe0, 0x1d, 0xaf, 0x77, 0x05, 0x38, 0xe9, 0x10, 0xa8, 0x1a, 0xe5, 0x04, 0xe2, 0x45, 0x38, - 0xee, 0xdc, 0xa8, 0xa0, 0x5a, 0xcd, 0xe4, 0x17, 0x98, 0xd6, 0x58, 0x1c, 0xb3, 0x9b, 0x57, 0x78, - 0xab, 0xb8, 0x0d, 0xa0, 0xe1, 0x5b, 0xb2, 0x61, 0xf1, 0x92, 0x94, 0xfb, 0xba, 0x82, 0x86, 0x6f, - 0x31, 0xe5, 0xa4, 0xfc, 0xa3, 0x61, 0x58, 0xec, 0x1a, 0xad, 0x1d, 0xcc, 0xa6, 0x3b, 0xde, 0x7d, - 0x44, 0x21, 0x74, 0x19, 0xa6, 0x0d, 0x2e, 0x96, 0xf9, 0x59, 0xa6, 0x6a, 0x0b, 0x13, 0x8a, 0x5a, - 0x06, 0x8b, 0xa5, 0x8c, 0x34, 0x65, 0x38, 0x4a, 0xf5, 0xe6, 0xae, 0xd3, 0x27, 0xca, 0x30, 0xe5, - 0x0e, 0x8e, 0xaa, 0x51, 0x77, 0x70, 0x78, 0x44, 0x5c, 0x8a, 0x1a, 0x9c, 0x1e, 0xff, 0x4a, 0xa2, - 0xe9, 0x6f, 0xf2, 0x8e, 0xc9, 0x47, 0x02, 0x4c, 0x6e, 0x60, 0xbc, 0xa6, 0x12, 0xe6, 0xeb, 0x43, - 0x1b, 0xfc, 0x2c, 0x8c, 0x12, 0xa5, 0x81, 0x6b, 0xed, 0x26, 0xb6, 0xd3, 0x65, 0x29, 0x0a, 0xae, - 0x47, 0x75, 0xd5, 0x66, 0x93, 0x5c, 0x01, 0x1e, 0x98, 0x7f, 0x16, 0x60, 0x8e, 0xdf, 0x82, 0xeb, - 0xad, 0x56, 0x5b, 0x53, 0xe9, 0x81, 0xe5, 0xb1, 0xaa, 0xe5, 0xbd, 0x43, 0x43, 0x7e, 0x11, 0x0a, - 0xfe, 0x02, 0xfb, 0x13, 0xce, 0x05, 0x6c, 0xd7, 0x4f, 0xb1, 0x3a, 0x17, 0xb1, 0x61, 0x18, 0xa4, - 0x8e, 0xa4, 0x0e, 0xf8, 0x07, 0x6f, 0xc3, 0xb8, 0xf7, 0x86, 0x41, 0x5c, 0x86, 0xa9, 0xf5, 0xef, - 0xac, 0x3e, 0xb3, 0xf2, 0xdc, 0xd3, 0xeb, 0xf2, 0x8b, 0xcf, 0x55, 0x77, 0xd6, 0x57, 0x37, 0x37, - 0x36, 0xd7, 0xd7, 0x4e, 0x0c, 0x95, 0x8a, 0xef, 0xdc, 0x99, 0x0f, 0xec, 0x13, 0x45, 0xc8, 0x56, - 0x77, 0x9e, 0xdf, 0x3d, 0x21, 0x94, 0x46, 0xdf, 0xb9, 0x33, 0xcf, 0xfe, 0xb6, 0x4c, 0x5b, 0x5b, - 0x97, 0x36, 0x5f, 0x5a, 0xd9, 0xdd, 0x7c, 0x69, 0xbd, 0x7a, 0x62, 0xb8, 0x74, 0xfc, 0x9d, 0x3b, - 0xf3, 0xde, 0xa6, 0xe5, 0xdf, 0x4e, 0x43, 0x66, 0x9b, 0xd4, 0x45, 0x04, 0x79, 0xe7, 0xa7, 0x63, - 0x17, 0x22, 0x57, 0x6d, 0xf7, 0x47, 0x5d, 0xa5, 0x4a, 0x32, 0x3a, 0xf7, 0xfd, 0x41, 0x0d, 0x46, - 0xdd, 0x1f, 0x7e, 0x5d, 0x8c, 0xe1, 0x75, 0x08, 0x4b, 0x4b, 0x09, 0x09, 0x5d, 0x2d, 0xef, 0x0b, - 0x70, 0x3a, 0xec, 0xd7, 0x40, 0x8f, 0xc7, 0x08, 0x0b, 0xe1, 0x2b, 0x7d, 0x23, 0x1d, 0x9f, 0x8b, - 0xe9, 0x43, 0x01, 0xce, 0x45, 0xfe, 0x3c, 0xe6, 0xc9, 0x64, 0x0a, 0x02, 0x99, 0x4b, 0xab, 0x87, - 0x60, 0x76, 0x21, 0xfe, 0x41, 0x80, 0xf9, 0xd8, 0x1f, 0x08, 0x5c, 0x4b, 0xa6, 0x29, 0x54, 0x40, - 0xe9, 0xe9, 0x43, 0x0a, 0x70, 0xe1, 0xbe, 0x2d, 0xc0, 0x54, 0xe0, 0xef, 0xf3, 0x1e, 0x8d, 0xd1, - 0x10, 0xc4, 0x54, 0x7a, 0x32, 0x05, 0x93, 0x0b, 0xe5, 0x37, 0x02, 0x94, 0x22, 0x7e, 0x5d, 0x77, - 0x25, 0x46, 0x76, 0x38, 0x6b, 0x69, 0x25, 0x35, 0xab, 0x0b, 0xee, 0x5d, 0x01, 0x4e, 0x05, 0xbf, - 0x1b, 0xbf, 0x9c, 0xd8, 0x66, 0x0f, 0x57, 0xe9, 0xff, 0xd3, 0x70, 0xb9, 0x68, 0x0e, 0xe0, 0xb8, - 0xff, 0xb5, 0x70, 0xdc, 0x24, 0xe2, 0xa3, 0x2f, 0x3d, 0xde, 0x1f, 0x7d, 0x97, 0x23, 0x82, 0x9f, - 0xfd, 0x5e, 0x4e, 0xe4, 0x65, 0x1f, 0x57, 0xac, 0x23, 0xa2, 0xdf, 0xf9, 0xbe, 0x01, 0x27, 0x7b, - 0xdf, 0xef, 0x3e, 0x9c, 0x44, 0xa4, 0x97, 0xa3, 0xf4, 0x7f, 0xfd, 0x72, 0x74, 0x05, 0x6d, 0xc4, - 0x03, 0xfc, 0x2b, 0x89, 0x86, 0x39, 0x88, 0x35, 0x36, 0x68, 0x13, 0x3c, 0xb7, 0xb7, 0xe6, 0xa2, - 0xd8, 0x27, 0xf4, 0xd7, 0x92, 0x27, 0x47, 0xa0, 0x80, 0xd8, 0xb9, 0x28, 0xf1, 0xa3, 0xf9, 0x3b, - 0x02, 0x9c, 0x8d, 0x7a, 0x0a, 0x7a, 0xb5, 0x4f, 0x8f, 0x78, 0xf3, 0xed, 0x7a, 0x7a, 0xde, 0xee, - 0x39, 0x20, 0xf0, 0x35, 0xe7, 0xe5, 0x44, 0xc9, 0xe4, 0xe3, 0x8a, 0x9f, 0x03, 0xa2, 0x9e, 0x67, - 0x32, 0x6f, 0x45, 0x3d, 0x97, 0xbc, 0x9a, 0x3c, 0xb1, 0xfc, 0xbc, 0xb1, 0xde, 0x4a, 0xf2, 0x4a, - 0xf2, 0x87, 0x02, 0x88, 0x01, 0xcf, 0x1f, 0x1f, 0x89, 0x11, 0xdd, 0xcb, 0x52, 0xba, 0xd2, 0x37, - 0x8b, 0x0b, 0xe2, 0xfb, 0x70, 0xa2, 0xe7, 0x21, 0x62, 0xdc, 0x4e, 0xc8, 0xcf, 0x50, 0x7a, 0xa2, - 0x4f, 0x06, 0xef, 0xec, 0xd4, 0xfb, 0x20, 0x30, 0x6e, 0x76, 0xea, 0xe1, 0x88, 0x9d, 0x9d, 0x42, - 0x5f, 0xee, 0x89, 0xef, 0x09, 0x30, 0x1d, 0xf2, 0x6c, 0xef, 0xb1, 0xd8, 0x1d, 0x44, 0x10, 0x5b, - 0xe9, 0xa9, 0x54, 0x6c, 0x0e, 0xa0, 0xeb, 0x8d, 0x4f, 0xbe, 0x98, 0x15, 0x3e, 0xfd, 0x62, 0x56, - 0xf8, 0xc7, 0x17, 0xb3, 0xc2, 0x2f, 0xbe, 0x9c, 0x1d, 0xfa, 0xf4, 0xcb, 0xd9, 0xa1, 0xbf, 0x7f, - 0x39, 0x3b, 0xf4, 0xf2, 0x73, 0x9e, 0x63, 0xe5, 0xa6, 0xa3, 0x62, 0x0b, 0xed, 0x91, 0x25, 0x57, - 0xe1, 0x25, 0x45, 0x37, 0xb1, 0xf7, 0xb3, 0x81, 0x54, 0x6d, 0xa9, 0xa5, 0x5b, 0x07, 0x18, 0xd2, - 0xf9, 0x7f, 0x22, 0xd8, 0x11, 0x74, 0x2f, 0xc7, 0xfe, 0x37, 0x87, 0x47, 0xff, 0x1b, 0x00, 0x00, - 0xff, 0xff, 0x94, 0xb0, 0xe1, 0x6b, 0xc8, 0x42, 0x00, 0x00, + // 3092 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5c, 0xdb, 0x6f, 0x1c, 0xd5, + 0x19, 0xcf, 0x78, 0xd7, 0x6b, 0xef, 0x67, 0x3b, 0x97, 0xb1, 0xe3, 0x6c, 0x36, 0xf1, 0x25, 0x6b, + 0x48, 0x0c, 0x34, 0x6b, 0x30, 0x01, 0x9a, 0x50, 0x9a, 0x3a, 0xbe, 0x80, 0x4b, 0x16, 0xcc, 0xd8, + 0xd0, 0x0a, 0xa9, 0x4c, 0x8f, 0x67, 0x8e, 0x77, 0x87, 0xec, 0xce, 0x4c, 0xe6, 0x9c, 0x25, 0x31, + 0xaa, 0x8a, 0xd4, 0x16, 0x8a, 0xa0, 0xa5, 0x45, 0x15, 0xea, 0x45, 0x8a, 0xc4, 0x03, 0x52, 0xfb, + 0x50, 0x1e, 0xfa, 0xd8, 0xfe, 0x05, 0xf4, 0x8d, 0x87, 0xaa, 0xaa, 0x78, 0x40, 0x15, 0xbc, 0xf4, + 0xbd, 0x2f, 0x55, 0x9f, 0xaa, 0x39, 0x67, 0x66, 0x76, 0x76, 0x76, 0x6e, 0x3b, 0xf6, 0x06, 0x84, + 0xfa, 0x14, 0xcf, 0x39, 0xdf, 0xf7, 0xfb, 0x2e, 0xe7, 0xfb, 0xce, 0xe5, 0x3b, 0x67, 0x03, 0x0b, + 0x9a, 0xfe, 0x32, 0x56, 0xa8, 0xf6, 0x0a, 0x5e, 0xc2, 0xb7, 0x95, 0x06, 0xd2, 0xeb, 0x78, 0xe9, + 0x95, 0x87, 0x76, 0x31, 0x45, 0x0f, 0x2d, 0xd1, 0xdb, 0x55, 0xd3, 0x32, 0xa8, 0x21, 0x96, 0x3d, + 0xa2, 0xaa, 0x4b, 0x54, 0x75, 0x88, 0xca, 0x53, 0x75, 0xa3, 0x6e, 0x30, 0xb2, 0x25, 0xfb, 0x2f, + 0xce, 0x51, 0xbe, 0xb7, 0x03, 0x6b, 0x58, 0x48, 0x69, 0x76, 0x40, 0xf9, 0xa7, 0x43, 0x76, 0x5f, + 0x8c, 0x74, 0x4f, 0x12, 0x27, 0x9d, 0x55, 0x0c, 0xd2, 0x32, 0xc8, 0xd2, 0x2e, 0x22, 0x1d, 0x1a, + 0xc5, 0xd0, 0x74, 0xa7, 0xbf, 0xea, 0xf4, 0xab, 0x1a, 0xa1, 0x96, 0xb6, 0xdb, 0xa6, 0x9a, 0xa1, + 0x7b, 0x74, 0xfe, 0x46, 0x4e, 0x5f, 0xf9, 0x99, 0x00, 0x50, 0x23, 0xf5, 0x35, 0x6c, 0x1a, 0x44, + 0xa3, 0xe2, 0x34, 0x14, 0x08, 0xd6, 0x55, 0x6c, 0x95, 0x84, 0x79, 0x61, 0xb1, 0x28, 0x39, 0x5f, + 0xe2, 0x02, 0x4c, 0x90, 0xf6, 0x2e, 0x52, 0x14, 0xa3, 0xad, 0x53, 0x59, 0x53, 0x4b, 0x43, 0xac, + 0x7b, 0xbc, 0xd3, 0xb8, 0xa9, 0x8a, 0x8f, 0x41, 0x01, 0xb5, 0xec, 0xbf, 0x4b, 0xb9, 0x79, 0x61, + 0x71, 0x6c, 0xf9, 0xb4, 0xa3, 0x4c, 0xd5, 0x56, 0xd6, 0xf5, 0x54, 0x75, 0xd5, 0xd0, 0xf4, 0x6b, + 0xf9, 0x8f, 0x3e, 0x9d, 0x3b, 0x22, 0x39, 0xe4, 0x57, 0x46, 0xdf, 0x7c, 0x7f, 0xee, 0xc8, 0xbf, + 0xde, 0x9f, 0x3b, 0x52, 0x99, 0x02, 0xb1, 0xa3, 0x8d, 0x84, 0x89, 0x69, 0xe8, 0x04, 0x57, 0x7e, + 0x2e, 0xc0, 0x58, 0x8d, 0xd4, 0xbf, 0xa3, 0xd1, 0x86, 0x6a, 0xa1, 0x5b, 0x5f, 0xb8, 0x96, 0x27, + 0x61, 0xd2, 0xa7, 0x8e, 0xa7, 0xe6, 0x0f, 0xe1, 0x54, 0x8d, 0xd4, 0x57, 0x2d, 0x8c, 0x28, 0xde, + 0x36, 0x0d, 0x7a, 0x5d, 0x6b, 0x69, 0xf4, 0x59, 0xcb, 0xd6, 0x2c, 0x4a, 0xe3, 0x15, 0x18, 0x36, + 0x6c, 0x02, 0xa6, 0xe9, 0xd8, 0xf2, 0xbd, 0xd5, 0xe8, 0x10, 0xab, 0xda, 0x90, 0x0c, 0xcd, 0xd1, + 0x8b, 0x73, 0xfa, 0xd4, 0xfa, 0x36, 0xcc, 0x45, 0xc8, 0x77, 0x55, 0x14, 0x67, 0x00, 0x18, 0x97, + 0xdc, 0x40, 0xa4, 0xe1, 0xe8, 0x52, 0x64, 0x2d, 0x4f, 0x21, 0xd2, 0xf0, 0x61, 0xbd, 0x21, 0xc0, + 0x4c, 0x8d, 0xd4, 0xaf, 0x21, 0xaa, 0x34, 0xc2, 0x10, 0x49, 0xa4, 0x49, 0xab, 0x50, 0x60, 0x80, + 0xa4, 0x34, 0x34, 0x9f, 0xeb, 0xd7, 0x26, 0x87, 0xd5, 0xa7, 0xc8, 0x0e, 0xdc, 0x1b, 0xab, 0x87, + 0x67, 0xda, 0x39, 0x18, 0xef, 0x98, 0x86, 0x49, 0x49, 0x98, 0xcf, 0x2d, 0x16, 0xa5, 0x31, 0xcf, + 0x38, 0xec, 0x47, 0xfd, 0x64, 0x08, 0xca, 0x35, 0x52, 0xdf, 0xd4, 0x09, 0x45, 0x3a, 0xb5, 0x21, + 0x6b, 0xc8, 0xba, 0x81, 0xe9, 0x75, 0xd4, 0xd6, 0x95, 0x46, 0xa4, 0x6d, 0xd3, 0x50, 0xa0, 0x9a, + 0x72, 0xc3, 0x19, 0xaf, 0xa2, 0xe4, 0x7c, 0xd9, 0x6e, 0xb5, 0xa3, 0x47, 0x56, 0xb1, 0x6e, 0xb4, + 0x58, 0x5c, 0x15, 0xa5, 0xa2, 0xdd, 0xb2, 0x66, 0x37, 0x88, 0x73, 0x30, 0x76, 0xb3, 0x6d, 0x50, + 0xb7, 0x3f, 0xcf, 0xfa, 0x81, 0x35, 0x71, 0x82, 0xef, 0xc1, 0x64, 0x4b, 0xd3, 0x65, 0xd3, 0xd2, + 0x14, 0x2c, 0xdb, 0x98, 0x32, 0xd1, 0x5e, 0xc5, 0xa5, 0x61, 0x9b, 0xf0, 0x5a, 0xd5, 0xf6, 0xcc, + 0x27, 0x9f, 0xce, 0x9d, 0xaf, 0x6b, 0xb4, 0xd1, 0xde, 0xad, 0x2a, 0x46, 0x6b, 0xc9, 0xc9, 0x72, + 0xfe, 0xcf, 0x45, 0xa2, 0xde, 0x58, 0xa2, 0xfb, 0x26, 0x26, 0xd5, 0x35, 0xac, 0x48, 0xc7, 0x5b, + 0x9a, 0xbe, 0x65, 0x23, 0xed, 0x68, 0xca, 0x8d, 0x6d, 0xed, 0x55, 0x2c, 0x2a, 0x30, 0x6d, 0xc3, + 0xdf, 0x6c, 0x23, 0x9d, 0x6a, 0x74, 0xdf, 0x27, 0xa1, 0x90, 0x49, 0x82, 0xad, 0xec, 0x73, 0x0e, + 0x98, 0x2b, 0xc4, 0xe7, 0xdc, 0x7b, 0xa0, 0x12, 0xed, 0x5b, 0x2f, 0x5b, 0xfe, 0x5d, 0x60, 0xe1, + 0xea, 0x90, 0x6d, 0x61, 0xcb, 0xc4, 0xb4, 0x8d, 0x9a, 0x07, 0x1a, 0x87, 0x80, 0xa3, 0x73, 0x3d, + 0x8e, 0x9e, 0x83, 0x31, 0x3e, 0xf3, 0xca, 0xf6, 0xe8, 0xb8, 0x23, 0xc1, 0x9b, 0xae, 0x21, 0x37, + 0x8a, 0x18, 0x01, 0xe3, 0xe2, 0x43, 0x20, 0x39, 0x4c, 0xcf, 0xd9, 0x4d, 0x62, 0x15, 0x26, 0x1d, + 0x12, 0xa2, 0xa0, 0x26, 0x96, 0xf7, 0x90, 0x42, 0x0d, 0x8b, 0xb9, 0x72, 0x42, 0x3a, 0xc1, 0xbb, + 0xb6, 0xed, 0x9e, 0x0d, 0xd6, 0x21, 0xae, 0x7b, 0x32, 0x6d, 0x0f, 0x96, 0x46, 0xe6, 0x85, 0xc5, + 0xa3, 0xcb, 0xf7, 0xf8, 0xb2, 0xc2, 0x59, 0x0b, 0xdc, 0x9c, 0x78, 0x96, 0x7d, 0xee, 0xec, 0x9b, + 0xd8, 0xd5, 0xcc, 0xfe, 0x5b, 0xdc, 0x81, 0xa3, 0x2d, 0x74, 0x03, 0x5b, 0xf2, 0x1e, 0xc6, 0xb2, + 0x85, 0x28, 0x2e, 0x8d, 0x66, 0x1a, 0xbc, 0x71, 0x86, 0xb2, 0x81, 0xb1, 0x84, 0x28, 0x43, 0xa5, + 0xdd, 0xa8, 0xc5, 0x6c, 0xa8, 0xd4, 0x8f, 0xfa, 0x7d, 0x98, 0xd2, 0x74, 0x8d, 0x6a, 0xa8, 0x29, + 0xb7, 0x90, 0x55, 0xd7, 0x74, 0x1b, 0x5a, 0x33, 0x4a, 0x90, 0x09, 0x5b, 0x74, 0xb0, 0x6a, 0x0c, + 0x4a, 0xb2, 0x91, 0xc4, 0x06, 0x94, 0x5a, 0x48, 0xd3, 0x29, 0xd6, 0x91, 0xae, 0xe0, 0x6e, 0x29, + 0x63, 0x99, 0xa4, 0x4c, 0xfb, 0xf0, 0xfc, 0x92, 0x22, 0x72, 0x73, 0x7c, 0xe0, 0xb9, 0x39, 0x31, + 0x88, 0xdc, 0xbc, 0x0f, 0x2e, 0x24, 0x24, 0x9d, 0x97, 0xa0, 0xbf, 0x18, 0x81, 0x85, 0x0e, 0xed, + 0xfa, 0x6d, 0x53, 0xb3, 0xf6, 0x37, 0xda, 0xb4, 0x6d, 0x61, 0xf2, 0xe5, 0x4f, 0xd2, 0x40, 0xd2, + 0x15, 0x32, 0x26, 0x5d, 0x44, 0xae, 0x8f, 0x44, 0xe5, 0xfa, 0x34, 0x14, 0x30, 0x73, 0x14, 0x4b, + 0xce, 0x9c, 0xe4, 0x7c, 0x85, 0x24, 0x6f, 0x71, 0x20, 0xc9, 0x0b, 0x03, 0x4c, 0xde, 0xb1, 0xbb, + 0x92, 0xbc, 0xe3, 0x77, 0x23, 0x79, 0x27, 0x06, 0x9e, 0xbc, 0x47, 0x07, 0x91, 0xbc, 0x17, 0xe1, + 0x81, 0x14, 0x09, 0xe9, 0x25, 0xf0, 0x6b, 0x50, 0xea, 0xda, 0x0f, 0x72, 0xa2, 0xbb, 0xb8, 0x21, + 0x7d, 0x1a, 0xe6, 0xa3, 0x14, 0xc8, 0xbc, 0x23, 0xe5, 0x68, 0x6b, 0xd8, 0xd2, 0x5e, 0x41, 0xb6, + 0x5a, 0x29, 0x36, 0xd9, 0x4f, 0x76, 0xdb, 0xf4, 0x40, 0x9c, 0x4d, 0x1d, 0xe0, 0x10, 0xcb, 0xf2, + 0xb6, 0x32, 0x95, 0x2d, 0xb6, 0x23, 0x8d, 0xd6, 0xa3, 0x7f, 0xd3, 0xde, 0x11, 0xd8, 0x4c, 0xeb, + 0xdb, 0xe4, 0x86, 0xe1, 0x46, 0x6f, 0xb9, 0x37, 0x03, 0x5b, 0xee, 0x0c, 0x16, 0xba, 0x1b, 0x6f, + 0x6e, 0xe2, 0x8b, 0x2c, 0xd0, 0x92, 0xf4, 0xc9, 0xb6, 0xf5, 0xfe, 0x95, 0xc0, 0xce, 0x78, 0xab, + 0x76, 0xaa, 0x36, 0xbd, 0x10, 0x8a, 0xb4, 0xed, 0x0c, 0x14, 0x5b, 0x2c, 0x6c, 0x3a, 0xe7, 0xb9, + 0x51, 0xde, 0xb0, 0xa9, 0xf6, 0x1e, 0xf8, 0x72, 0x21, 0x07, 0xbe, 0xee, 0x61, 0xc8, 0x07, 0x87, + 0x81, 0x5b, 0x7c, 0x96, 0x9d, 0x07, 0x02, 0x4a, 0x79, 0x99, 0xb4, 0xcf, 0x32, 0x89, 0xfb, 0xa3, + 0x9b, 0x24, 0x7a, 0x50, 0xae, 0x42, 0x5e, 0x45, 0x14, 0xa5, 0x39, 0x05, 0x31, 0xa4, 0x35, 0x44, + 0x91, 0x33, 0x18, 0x8c, 0xd1, 0x51, 0x6c, 0x83, 0xe5, 0x50, 0xa8, 0x68, 0xcf, 0xff, 0x25, 0x18, + 0x21, 0x6d, 0x45, 0xc1, 0x84, 0xbb, 0x7e, 0x54, 0x72, 0x3f, 0x7d, 0x6e, 0x7f, 0x7d, 0x18, 0xa6, + 0x5c, 0xa0, 0xe7, 0x4d, 0x15, 0x51, 0x9c, 0xa0, 0x7f, 0xaa, 0xc3, 0xf4, 0x55, 0x98, 0x21, 0xa6, + 0x41, 0x65, 0x6f, 0x88, 0x88, 0x4c, 0x0d, 0x59, 0x61, 0x8a, 0xca, 0xa8, 0xd9, 0x2c, 0xe5, 0x58, + 0x28, 0x94, 0x88, 0x97, 0xfd, 0x9b, 0x2a, 0xd9, 0x31, 0xb8, 0x25, 0x2b, 0xcd, 0xa6, 0xf8, 0x34, + 0x2c, 0xa8, 0x5e, 0x6c, 0x45, 0xc3, 0xe4, 0x19, 0xcc, 0x6c, 0x87, 0x34, 0x14, 0xec, 0x25, 0x38, + 0xc9, 0xb4, 0xe1, 0xb1, 0xdc, 0x81, 0x28, 0x0d, 0xf7, 0x3b, 0x06, 0x82, 0x24, 0x12, 0xcf, 0xcf, + 0xae, 0x08, 0xf1, 0x65, 0x38, 0xe3, 0x53, 0xb6, 0x47, 0x4a, 0xa1, 0x7f, 0x29, 0x25, 0xb5, 0x3b, + 0x1b, 0x3b, 0xb2, 0x42, 0x6c, 0x61, 0x99, 0x58, 0x1a, 0xe9, 0xf7, 0x54, 0x1d, 0xb4, 0x85, 0xc1, + 0x88, 0x66, 0x94, 0x2d, 0x5c, 0xca, 0x68, 0xb6, 0x89, 0x24, 0xdc, 0x22, 0x06, 0xe9, 0xc4, 0xf3, + 0x7f, 0x04, 0x38, 0x1b, 0x16, 0x87, 0x5e, 0x30, 0x57, 0x61, 0x92, 0x19, 0xee, 0x8c, 0x7e, 0x77, + 0x60, 0x9f, 0xb0, 0xbb, 0x9c, 0x3c, 0xe0, 0x1d, 0xe2, 0x15, 0x38, 0xed, 0x33, 0x24, 0xc0, 0x35, + 0xc4, 0xb8, 0x4e, 0x75, 0x08, 0xba, 0x79, 0xef, 0x87, 0x13, 0x1d, 0x27, 0xbb, 0xb3, 0x17, 0x0f, + 0xd9, 0x63, 0x9e, 0xcf, 0xf8, 0x0c, 0x26, 0x3e, 0x0a, 0xa7, 0x82, 0x0e, 0x73, 0x39, 0x78, 0x74, + 0x9e, 0x0c, 0x58, 0xde, 0x33, 0xf3, 0xfd, 0x54, 0x80, 0xd9, 0x90, 0x95, 0x23, 0xcd, 0xb2, 0x7c, + 0xc8, 0x4b, 0xd8, 0x73, 0x70, 0x3e, 0x5e, 0x91, 0xfe, 0xd7, 0xb0, 0xdf, 0x0a, 0x7c, 0xb7, 0xc1, + 0xfc, 0x1b, 0x50, 0xe1, 0x8b, 0x9e, 0xdc, 0x2b, 0x7c, 0x1f, 0x12, 0xa6, 0x9a, 0x37, 0xc5, 0x37, + 0xa1, 0xe8, 0x25, 0x67, 0xb7, 0x5e, 0x42, 0x92, 0x5e, 0x43, 0x89, 0x7a, 0xe5, 0x02, 0x7a, 0x55, + 0x5e, 0x63, 0x91, 0xe0, 0x9b, 0xd5, 0x03, 0x6a, 0x0d, 0x7c, 0x59, 0xb9, 0xce, 0x22, 0x20, 0x46, + 0x81, 0xbe, 0x16, 0x97, 0xbf, 0x0b, 0x70, 0xb2, 0x46, 0xea, 0xdb, 0x9e, 0x07, 0x76, 0x2c, 0xa4, + 0x93, 0xbd, 0x98, 0x91, 0x7f, 0x10, 0xa6, 0x88, 0xd1, 0xb6, 0x14, 0x2c, 0x87, 0xf9, 0x52, 0xe4, + 0x7d, 0xdb, 0x7e, 0x8f, 0xb2, 0x3c, 0x27, 0x54, 0xd3, 0xed, 0x8d, 0xbd, 0x2e, 0x87, 0x85, 0xc6, + 0x29, 0x1f, 0xc1, 0x76, 0x78, 0xcd, 0x37, 0xdf, 0x57, 0xcd, 0xb7, 0x32, 0xc7, 0xf6, 0x9c, 0xbd, + 0x76, 0x79, 0x61, 0xf3, 0x37, 0x81, 0xd5, 0x82, 0xd7, 0x6f, 0x53, 0x6c, 0xe9, 0xa8, 0xf9, 0x55, + 0xb1, 0x7b, 0x06, 0xce, 0x84, 0x58, 0xe5, 0x59, 0xfd, 0x67, 0x81, 0x6d, 0x26, 0xae, 0x6b, 0x37, + 0xdb, 0x9a, 0x3d, 0x85, 0x6f, 0x19, 0x44, 0xb3, 0x85, 0x1f, 0x6c, 0x33, 0xd1, 0x95, 0x75, 0xb9, + 0x40, 0xd6, 0x79, 0x33, 0x60, 0x3e, 0xdb, 0x0c, 0x28, 0x38, 0x33, 0x60, 0x65, 0x96, 0xad, 0x3f, + 0x3d, 0xaa, 0x7b, 0xb6, 0xbd, 0x31, 0x04, 0xa7, 0xd9, 0x29, 0xcb, 0x5e, 0x09, 0x89, 0xd7, 0xcf, + 0x4f, 0x95, 0x5f, 0x92, 0x71, 0xed, 0xf2, 0x54, 0x3e, 0xe0, 0xa9, 0x0d, 0x6f, 0xd0, 0xb3, 0xd5, + 0x8f, 0xdd, 0x18, 0x58, 0x80, 0x73, 0x91, 0x7e, 0xf0, 0xbc, 0xf5, 0xde, 0x30, 0xcc, 0x74, 0x8e, + 0x76, 0x5b, 0xc8, 0x42, 0x2d, 0xbe, 0xaa, 0x6f, 0x59, 0x86, 0x69, 0x10, 0xd4, 0x14, 0xa7, 0x60, + 0x98, 0x6a, 0xb4, 0x89, 0x1d, 0x87, 0xf1, 0x0f, 0x71, 0x1e, 0xc6, 0x54, 0x4c, 0x14, 0x4b, 0x33, + 0x6d, 0x50, 0xc7, 0x4d, 0xfe, 0xa6, 0xf8, 0x68, 0xe8, 0xad, 0xa7, 0xe4, 0x3d, 0x5b, 0x85, 0x43, + 0xac, 0xa7, 0x0c, 0x67, 0x43, 0xed, 0xaa, 0xa7, 0x28, 0x30, 0x6d, 0xe1, 0x26, 0xda, 0x77, 0x70, + 0x49, 0x03, 0x59, 0x0e, 0x7a, 0x21, 0x13, 0xfa, 0xa4, 0x83, 0xb6, 0x81, 0xf1, 0xb6, 0x8d, 0xc5, + 0x84, 0x44, 0x14, 0x3a, 0x46, 0x32, 0x49, 0xe8, 0xa7, 0xd0, 0x31, 0x9a, 0xcd, 0x86, 0x90, 0x42, + 0x87, 0xf8, 0x2d, 0x28, 0x10, 0x8a, 0x68, 0x9b, 0xb0, 0xe2, 0xd8, 0xd1, 0xe5, 0xc5, 0xb8, 0x1c, + 0xe7, 0x01, 0xb7, 0xcd, 0xe8, 0x25, 0x87, 0xcf, 0xb7, 0x22, 0xfd, 0x41, 0x80, 0xe9, 0x75, 0x87, + 0x67, 0x5d, 0x47, 0xbb, 0xcd, 0x83, 0x07, 0xe4, 0x75, 0x18, 0x77, 0xb5, 0xd8, 0xd9, 0x37, 0x31, + 0x8b, 0xc9, 0x04, 0x25, 0xd7, 0x7d, 0xf4, 0x52, 0x17, 0xb7, 0x4f, 0xd5, 0x3f, 0x8d, 0xc0, 0x39, + 0xb6, 0x10, 0xbb, 0xd4, 0x35, 0x43, 0xd5, 0xf6, 0x34, 0x85, 0xa5, 0xfd, 0x81, 0xb5, 0x7e, 0x5d, + 0x80, 0x8a, 0xff, 0x88, 0x66, 0xda, 0x29, 0x2a, 0xb7, 0x59, 0x8e, 0xca, 0xa6, 0x83, 0xce, 0x37, + 0xbd, 0x63, 0xcb, 0x97, 0x93, 0x4e, 0x15, 0x91, 0x69, 0x2e, 0xcd, 0x92, 0xb8, 0x6e, 0x22, 0xfe, + 0x5a, 0x80, 0xc5, 0xde, 0x93, 0x5e, 0x84, 0x36, 0x79, 0xa6, 0xcd, 0xd5, 0x74, 0x73, 0x7c, 0xb4, + 0x4e, 0xf7, 0xa8, 0xc9, 0x44, 0x44, 0x6c, 0xc3, 0x59, 0xbf, 0x83, 0x9a, 0xac, 0x88, 0xe6, 0x53, + 0x86, 0x1f, 0x1e, 0x2f, 0xa5, 0x73, 0x0d, 0x2f, 0xc1, 0x79, 0x1a, 0x9c, 0x26, 0x11, 0x3d, 0x44, + 0xfc, 0x89, 0x00, 0xe7, 0x4c, 0xb7, 0x00, 0x1f, 0x29, 0xbc, 0x90, 0x3c, 0x2e, 0xa1, 0x55, 0xfc, + 0xce, 0xb8, 0x98, 0x71, 0xdd, 0x44, 0x7c, 0x57, 0x80, 0xf3, 0xbc, 0x48, 0x2d, 0xef, 0xf1, 0x5a, + 0x62, 0xa4, 0x2e, 0xfc, 0xe4, 0xf9, 0x44, 0x7c, 0xc0, 0x47, 0x14, 0x25, 0x3d, 0x7d, 0x2a, 0x38, + 0x89, 0x84, 0x88, 0xef, 0x09, 0x70, 0x81, 0x5a, 0x48, 0xd5, 0xf4, 0xba, 0x6c, 0xe1, 0x5b, 0xc8, + 0x52, 0x65, 0x05, 0xb5, 0x4c, 0xa4, 0xd5, 0xf5, 0x60, 0xac, 0xb0, 0xf9, 0x27, 0x21, 0x54, 0x76, + 0x38, 0x94, 0xc4, 0x90, 0x56, 0x1d, 0xa0, 0x40, 0xa8, 0x2c, 0xd0, 0x64, 0x22, 0x5f, 0xce, 0x7e, + 0x90, 0x87, 0x52, 0xd4, 0xa0, 0x67, 0x4e, 0xd5, 0xce, 0x85, 0x49, 0x2e, 0xe6, 0x76, 0x39, 0x9f, + 0x70, 0xbb, 0x3c, 0x9c, 0xf6, 0x76, 0xb9, 0x30, 0xf0, 0x22, 0xf8, 0xc8, 0xa1, 0x15, 0xc1, 0x63, + 0x6f, 0x3f, 0x85, 0x81, 0xdc, 0x7e, 0x66, 0x5e, 0xf0, 0x7d, 0x61, 0xf2, 0xee, 0x08, 0xcc, 0xc4, + 0xa6, 0xe7, 0xa1, 0xc7, 0x4a, 0xe2, 0x53, 0x83, 0xc0, 0xe5, 0xda, 0x70, 0xe2, 0xe5, 0x5a, 0x21, + 0xf5, 0x0d, 0xf8, 0x48, 0xca, 0x1b, 0xf0, 0xd1, 0x8c, 0x97, 0x71, 0x51, 0x17, 0x53, 0xc5, 0xbb, + 0x72, 0x31, 0x05, 0x87, 0x7a, 0x31, 0xd5, 0x1b, 0xcf, 0x63, 0x03, 0xb9, 0x10, 0x1c, 0x3f, 0x84, + 0x0b, 0xc1, 0xaf, 0xd6, 0x25, 0xda, 0x87, 0x23, 0x70, 0x2e, 0x71, 0x99, 0xfa, 0x7f, 0x5e, 0xf6, + 0x91, 0x97, 0x9d, 0x4b, 0xef, 0x62, 0xd7, 0xa5, 0xf7, 0x57, 0xe9, 0x15, 0x48, 0x6f, 0xbe, 0x8e, + 0x0f, 0x24, 0x5f, 0x27, 0x06, 0x97, 0xaf, 0x47, 0x07, 0x9e, 0xaf, 0xc7, 0x06, 0x91, 0xaf, 0xff, + 0x1d, 0x85, 0x85, 0x14, 0x9b, 0xfd, 0xc1, 0xd4, 0x19, 0xa2, 0x42, 0x38, 0x5b, 0xb5, 0xa1, 0xdf, + 0x10, 0xce, 0x56, 0x7d, 0x48, 0x1f, 0xc2, 0x85, 0x81, 0x6c, 0xa1, 0x46, 0x06, 0x5a, 0x33, 0x19, + 0x1d, 0x78, 0xcd, 0xa4, 0x38, 0xf0, 0x9a, 0x09, 0x1c, 0x5e, 0xcd, 0xe4, 0x25, 0x10, 0x9f, 0x32, + 0xda, 0x56, 0x73, 0x7f, 0x53, 0xa7, 0xd8, 0xc2, 0x84, 0x4a, 0xdd, 0x7b, 0x89, 0xbe, 0xc2, 0xb3, + 0x17, 0x49, 0xdc, 0x85, 0x29, 0xde, 0xba, 0xd1, 0xd6, 0xd9, 0xf9, 0x08, 0x51, 0xbc, 0x8a, 0x4c, + 0xdf, 0xec, 0xd7, 0x8f, 0x84, 0x50, 0x2c, 0x5f, 0xdd, 0x67, 0x22, 0x5b, 0xdd, 0x47, 0xac, 0xc1, + 0x84, 0xb3, 0x90, 0xb1, 0x82, 0x02, 0x61, 0x73, 0xdd, 0x58, 0x3c, 0x10, 0x5f, 0xcc, 0xd8, 0x4c, + 0x42, 0x24, 0x67, 0x69, 0xe5, 0x5f, 0xbe, 0xc9, 0xe7, 0xaf, 0x02, 0x8c, 0xfb, 0x09, 0x83, 0xcb, + 0xb4, 0x90, 0xb8, 0x4c, 0x0f, 0xa5, 0x5e, 0xa6, 0x73, 0x29, 0x97, 0xe9, 0x7c, 0xb6, 0x65, 0xba, + 0xf2, 0xfb, 0x21, 0x58, 0x08, 0x3d, 0x0a, 0x1f, 0xd2, 0xd6, 0xe7, 0x45, 0x98, 0xf0, 0x4e, 0xe9, + 0x9a, 0xbe, 0x67, 0x38, 0xef, 0xeb, 0x1f, 0xe9, 0xfb, 0x68, 0xbe, 0xa9, 0xef, 0x19, 0xd2, 0xb8, + 0xe2, 0xfb, 0x12, 0x77, 0xe1, 0xa4, 0x87, 0xed, 0x54, 0x04, 0x4c, 0xc3, 0xf0, 0x2a, 0x45, 0xd5, + 0x38, 0x19, 0x2e, 0x2c, 0x17, 0xb2, 0x65, 0x18, 0x4d, 0x69, 0x52, 0xe9, 0x69, 0xf3, 0x8f, 0xfa, + 0x87, 0xb9, 0x08, 0x4f, 0x1d, 0xd2, 0x92, 0x33, 0x48, 0x4f, 0xb5, 0x61, 0x2e, 0xd4, 0x53, 0x32, + 0x52, 0x55, 0x56, 0xc0, 0xcf, 0xea, 0xb3, 0xb3, 0x21, 0x3e, 0x5b, 0x71, 0x31, 0xc5, 0x9b, 0x30, + 0x13, 0x2e, 0x96, 0xd7, 0x6b, 0xdc, 0x2a, 0x5a, 0xbf, 0x42, 0xcb, 0x21, 0x42, 0xf9, 0x20, 0xf8, + 0xc7, 0xeb, 0x6d, 0x01, 0x4e, 0xb8, 0x04, 0x9a, 0x4e, 0x39, 0x81, 0x78, 0x01, 0x8e, 0xb9, 0x37, + 0x2a, 0x48, 0x55, 0x2d, 0x7e, 0x81, 0x69, 0x8f, 0xc5, 0x51, 0xa7, 0x79, 0x85, 0xb7, 0x8a, 0x35, + 0x00, 0x1d, 0xdf, 0x92, 0x4d, 0x9b, 0x97, 0x64, 0xdc, 0xd7, 0x15, 0x75, 0x7c, 0x8b, 0x09, 0x27, + 0x95, 0x1f, 0x0f, 0xc1, 0x62, 0xd7, 0x68, 0x6d, 0x61, 0x36, 0xdd, 0xf1, 0xee, 0x43, 0x0a, 0xa1, + 0x4b, 0x30, 0x6d, 0x72, 0x58, 0xe6, 0x67, 0x99, 0x6a, 0x2d, 0x4c, 0x28, 0x6a, 0x99, 0x2c, 0x96, + 0x72, 0xd2, 0x94, 0xe9, 0x0a, 0x35, 0x9a, 0x3b, 0x6e, 0x9f, 0x28, 0xc3, 0x94, 0x37, 0x38, 0x9a, + 0x4e, 0xbd, 0xc1, 0xe1, 0x11, 0x71, 0x31, 0x6e, 0x70, 0x7a, 0xfc, 0x2b, 0x89, 0x56, 0xb0, 0xc9, + 0x3f, 0x26, 0x1f, 0x08, 0x30, 0xb9, 0x81, 0xf1, 0x9a, 0x46, 0x98, 0xaf, 0x0f, 0x6c, 0xf0, 0xd3, + 0x30, 0x4a, 0x94, 0x06, 0x56, 0xdb, 0x4d, 0xec, 0xa4, 0xcb, 0x52, 0x9c, 0xba, 0x3e, 0xd1, 0xdb, + 0x0e, 0x9b, 0xe4, 0x01, 0xf8, 0xd4, 0xfc, 0x8b, 0x00, 0x73, 0xfc, 0x16, 0xdc, 0x68, 0xb5, 0xda, + 0xba, 0x46, 0xf7, 0x6d, 0x8f, 0x6d, 0xdb, 0xde, 0x3b, 0xb0, 0xca, 0xcf, 0x43, 0x31, 0x58, 0x60, + 0x7f, 0xcc, 0xbd, 0x80, 0xed, 0xfa, 0x29, 0x56, 0xe7, 0x22, 0x36, 0x4a, 0x07, 0xa9, 0x83, 0xd4, + 0xf5, 0xbe, 0xf2, 0x78, 0x8d, 0xd4, 0x25, 0x5c, 0xd7, 0x08, 0xc5, 0xd6, 0x0a, 0x59, 0xab, 0xd5, + 0x22, 0x2f, 0x28, 0xe7, 0x60, 0x4c, 0x6d, 0xb5, 0x64, 0x27, 0xf4, 0x1d, 0x75, 0x41, 0x6d, 0xb5, + 0x56, 0x78, 0x4b, 0xa5, 0xcc, 0xde, 0x6f, 0x74, 0x81, 0xb9, 0xb7, 0x7c, 0xf7, 0xdf, 0x86, 0x71, + 0xff, 0x55, 0x86, 0xb8, 0x0c, 0x53, 0xeb, 0xdf, 0x5d, 0x7d, 0x6a, 0xe5, 0x99, 0x27, 0xd7, 0xe5, + 0xe7, 0x9f, 0xd9, 0xde, 0x5a, 0x5f, 0xdd, 0xdc, 0xd8, 0x5c, 0x5f, 0x3b, 0x7e, 0xa4, 0x5c, 0x7a, + 0xeb, 0xce, 0x7c, 0x68, 0x9f, 0x28, 0x42, 0x7e, 0x7b, 0xeb, 0xd9, 0x9d, 0xe3, 0x42, 0x79, 0xf4, + 0xad, 0x3b, 0xf3, 0xec, 0x6f, 0xdb, 0x87, 0x6b, 0xeb, 0xd2, 0xe6, 0x0b, 0x2b, 0x3b, 0x9b, 0x2f, + 0xac, 0x6f, 0x1f, 0x1f, 0x2a, 0x1f, 0x7b, 0xeb, 0xce, 0xbc, 0xbf, 0x69, 0xf9, 0x37, 0xa7, 0x20, + 0x57, 0x23, 0x75, 0x11, 0xc1, 0x88, 0xfb, 0x1b, 0xb5, 0xf3, 0xb1, 0xdb, 0x03, 0xef, 0xd7, 0x63, + 0xe5, 0x6a, 0x3a, 0x3a, 0xef, 0xa1, 0x83, 0x0a, 0xa3, 0xde, 0x2f, 0xcc, 0x2e, 0x24, 0xf0, 0xba, + 0x84, 0xe5, 0xa5, 0x94, 0x84, 0x9e, 0x94, 0x77, 0x05, 0x38, 0x15, 0xf5, 0xb3, 0xa3, 0x47, 0x13, + 0xc0, 0x22, 0xf8, 0xca, 0xdf, 0xcc, 0xc6, 0xe7, 0xe9, 0xf4, 0xbe, 0x00, 0x67, 0x63, 0x7f, 0x87, + 0xf3, 0x78, 0x3a, 0x01, 0xa1, 0xcc, 0xe5, 0xd5, 0x03, 0x30, 0x7b, 0x2a, 0xfe, 0x51, 0x80, 0xf9, + 0xc4, 0x5f, 0x22, 0x5c, 0x4d, 0x27, 0x29, 0x12, 0xa0, 0xfc, 0xe4, 0x01, 0x01, 0x3c, 0x75, 0xdf, + 0x14, 0x60, 0x2a, 0xf4, 0x87, 0x80, 0x0f, 0x27, 0x48, 0x08, 0x63, 0x2a, 0x3f, 0x9e, 0x81, 0xc9, + 0x53, 0xe5, 0x77, 0x02, 0x94, 0x63, 0x7e, 0xc6, 0x77, 0x39, 0x01, 0x3b, 0x9a, 0xb5, 0xbc, 0x92, + 0x99, 0xd5, 0x53, 0xee, 0x6d, 0x01, 0x4e, 0x86, 0x3f, 0x50, 0xbf, 0x94, 0xda, 0x66, 0x1f, 0x57, + 0xf9, 0x1b, 0x59, 0xb8, 0x3c, 0x6d, 0xf6, 0xe1, 0x58, 0xf0, 0x59, 0x72, 0xd2, 0x24, 0x12, 0xa0, + 0x2f, 0x3f, 0xda, 0x1f, 0x7d, 0x97, 0x23, 0xc2, 0xdf, 0x17, 0x5f, 0x4a, 0xe5, 0xe5, 0x00, 0x57, + 0xa2, 0x23, 0xe2, 0x1f, 0x14, 0xbf, 0x06, 0x27, 0x7a, 0x1f, 0x0a, 0x3f, 0x98, 0x06, 0xd2, 0xcf, + 0x51, 0xfe, 0x7a, 0xbf, 0x1c, 0x5d, 0x41, 0x1b, 0xf3, 0xd2, 0xff, 0x72, 0xaa, 0x61, 0x0e, 0x63, + 0x4d, 0x0c, 0xda, 0x14, 0xef, 0xfa, 0xed, 0xb9, 0x28, 0xf1, 0xad, 0xfe, 0xd5, 0xf4, 0xc9, 0x11, + 0x0a, 0x90, 0x38, 0x17, 0xa5, 0x7e, 0x9d, 0x7f, 0x47, 0x80, 0x33, 0x71, 0x6f, 0x4e, 0xaf, 0xf4, + 0xe9, 0x11, 0x7f, 0xbe, 0x5d, 0xcb, 0xce, 0xdb, 0x3d, 0x07, 0x84, 0x3e, 0x1b, 0xbd, 0x94, 0x2a, + 0x99, 0x02, 0x5c, 0xc9, 0x73, 0x40, 0xdc, 0x3b, 0x50, 0xe6, 0xad, 0xb8, 0x77, 0x99, 0x57, 0xd2, + 0x27, 0x56, 0x90, 0x37, 0xd1, 0x5b, 0x69, 0x9e, 0x63, 0xfe, 0x48, 0x00, 0x31, 0xe4, 0x9d, 0xe5, + 0x43, 0x09, 0xd0, 0xbd, 0x2c, 0xe5, 0xcb, 0x7d, 0xb3, 0x78, 0x4a, 0xfc, 0x00, 0x8e, 0xf7, 0xbc, + 0x78, 0x4c, 0xda, 0x09, 0x05, 0x19, 0xca, 0x8f, 0xf5, 0xc9, 0xe0, 0x9f, 0x9d, 0x7a, 0x5f, 0x1e, + 0x26, 0xcd, 0x4e, 0x3d, 0x1c, 0x89, 0xb3, 0x53, 0xe4, 0x13, 0x41, 0xf1, 0x1d, 0x01, 0xa6, 0x23, + 0xde, 0x07, 0x3e, 0x92, 0xb8, 0x83, 0x08, 0x63, 0x2b, 0x3f, 0x91, 0x89, 0xcd, 0x53, 0x88, 0xc0, + 0x44, 0xf7, 0x29, 0xe0, 0x6b, 0x09, 0x78, 0x5d, 0xd4, 0xe5, 0x4b, 0xfd, 0x50, 0xbb, 0x42, 0xaf, + 0x35, 0x3e, 0xfa, 0x6c, 0x56, 0xf8, 0xf8, 0xb3, 0x59, 0xe1, 0x9f, 0x9f, 0xcd, 0x0a, 0xbf, 0xfc, + 0x7c, 0xf6, 0xc8, 0xc7, 0x9f, 0xcf, 0x1e, 0xf9, 0xc7, 0xe7, 0xb3, 0x47, 0x5e, 0x7c, 0xc6, 0x77, + 0x68, 0xde, 0x74, 0x91, 0xaf, 0xa3, 0x5d, 0xb2, 0xe4, 0xc9, 0xb9, 0xa8, 0x18, 0x16, 0xf6, 0x7f, + 0x36, 0x90, 0xa6, 0x2f, 0xb5, 0x0c, 0xfb, 0x78, 0x46, 0x3a, 0xff, 0x0b, 0x06, 0x3b, 0x60, 0xef, + 0x16, 0xd8, 0xff, 0x55, 0xf1, 0xf0, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x63, 0xaf, 0xf1, 0x31, + 0xa6, 0x43, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2862,6 +2958,8 @@ type MsgClient interface { LiquidatePosition(ctx context.Context, in *MsgLiquidatePosition, opts ...grpc.CallOption) (*MsgLiquidatePositionResponse, error) // IncreasePositionMargin defines a method for increasing margin of a position IncreasePositionMargin(ctx context.Context, in *MsgIncreasePositionMargin, opts ...grpc.CallOption) (*MsgIncreasePositionMarginResponse, error) + // RegisterAsDMM defines a method for registering as a DMM + RegisterAsDMM(ctx context.Context, in *MsgRegisterAsDMM, opts ...grpc.CallOption) (*MsgRegisterAsDMMResponse, error) } type msgClient struct { @@ -3052,6 +3150,15 @@ func (c *msgClient) IncreasePositionMargin(ctx context.Context, in *MsgIncreaseP return out, nil } +func (c *msgClient) RegisterAsDMM(ctx context.Context, in *MsgRegisterAsDMM, opts ...grpc.CallOption) (*MsgRegisterAsDMMResponse, error) { + out := new(MsgRegisterAsDMMResponse) + err := c.cc.Invoke(ctx, "/injective.exchange.v1beta1.Msg/RegisterAsDMM", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // MsgServer is the server API for Msg service. type MsgServer interface { // Deposit defines a method for transferring coins from the sender's bank balance into the subaccount's exchange deposits @@ -3093,6 +3200,8 @@ type MsgServer interface { LiquidatePosition(context.Context, *MsgLiquidatePosition) (*MsgLiquidatePositionResponse, error) // IncreasePositionMargin defines a method for increasing margin of a position IncreasePositionMargin(context.Context, *MsgIncreasePositionMargin) (*MsgIncreasePositionMarginResponse, error) + // RegisterAsDMM defines a method for registering as a DMM + RegisterAsDMM(context.Context, *MsgRegisterAsDMM) (*MsgRegisterAsDMMResponse, error) } // UnimplementedMsgServer can be embedded to have forward compatible implementations. @@ -3159,6 +3268,9 @@ func (*UnimplementedMsgServer) LiquidatePosition(ctx context.Context, req *MsgLi func (*UnimplementedMsgServer) IncreasePositionMargin(ctx context.Context, req *MsgIncreasePositionMargin) (*MsgIncreasePositionMarginResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method IncreasePositionMargin not implemented") } +func (*UnimplementedMsgServer) RegisterAsDMM(ctx context.Context, req *MsgRegisterAsDMM) (*MsgRegisterAsDMMResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method RegisterAsDMM not implemented") +} func RegisterMsgServer(s grpc1.Server, srv MsgServer) { s.RegisterService(&_Msg_serviceDesc, srv) @@ -3524,6 +3636,24 @@ func _Msg_IncreasePositionMargin_Handler(srv interface{}, ctx context.Context, d return interceptor(ctx, in, info, handler) } +func _Msg_RegisterAsDMM_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgRegisterAsDMM) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MsgServer).RegisterAsDMM(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/injective.exchange.v1beta1.Msg/RegisterAsDMM", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MsgServer).RegisterAsDMM(ctx, req.(*MsgRegisterAsDMM)) + } + return interceptor(ctx, in, info, handler) +} + var _Msg_serviceDesc = grpc.ServiceDesc{ ServiceName: "injective.exchange.v1beta1.Msg", HandlerType: (*MsgServer)(nil), @@ -3608,6 +3738,10 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ MethodName: "IncreasePositionMargin", Handler: _Msg_IncreasePositionMargin_Handler, }, + { + MethodName: "RegisterAsDMM", + Handler: _Msg_RegisterAsDMM_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "injective/exchange/v1beta1/tx.proto", @@ -6632,6 +6766,66 @@ func (m *BatchCommunityPoolSpendProposal) MarshalToSizedBuffer(dAtA []byte) (int return len(dAtA) - i, nil } +func (m *MsgRegisterAsDMM) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgRegisterAsDMM) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgRegisterAsDMM) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.DmmAccount) > 0 { + i -= len(m.DmmAccount) + copy(dAtA[i:], m.DmmAccount) + i = encodeVarintTx(dAtA, i, uint64(len(m.DmmAccount))) + i-- + dAtA[i] = 0x12 + } + if len(m.Sender) > 0 { + i -= len(m.Sender) + copy(dAtA[i:], m.Sender) + i = encodeVarintTx(dAtA, i, uint64(len(m.Sender))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgRegisterAsDMMResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgRegisterAsDMMResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgRegisterAsDMMResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func encodeVarintTx(dAtA []byte, offset int, v uint64) int { offset -= sovTx(v) base := offset @@ -7890,6 +8084,32 @@ func (m *BatchCommunityPoolSpendProposal) Size() (n int) { return n } +func (m *MsgRegisterAsDMM) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Sender) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.DmmAccount) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgRegisterAsDMMResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func sovTx(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -17182,6 +17402,170 @@ func (m *BatchCommunityPoolSpendProposal) Unmarshal(dAtA []byte) error { } return nil } +func (m *MsgRegisterAsDMM) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgRegisterAsDMM: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgRegisterAsDMM: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Sender", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + 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 ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Sender = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DmmAccount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + 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 ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DmmAccount = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgRegisterAsDMMResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgRegisterAsDMMResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgRegisterAsDMMResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipTx(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 From 7f50dd5d00465ca301f113e0ca8bc361c08d6760 Mon Sep 17 00:00:00 2001 From: Markus Waas Date: Tue, 5 Apr 2022 09:23:31 +1300 Subject: [PATCH 2/3] chore: update with branch --- chain/exchange/types/msgs.go | 2 +- chain/exchange/types/query.pb.go | 761 +++++++++++++++++++++++-------- 2 files changed, 569 insertions(+), 194 deletions(-) diff --git a/chain/exchange/types/msgs.go b/chain/exchange/types/msgs.go index ec9517d4..e209f5ea 100644 --- a/chain/exchange/types/msgs.go +++ b/chain/exchange/types/msgs.go @@ -931,7 +931,7 @@ func (msg *MsgRegisterAsDMM) Route() string { } func (msg *MsgRegisterAsDMM) Type() string { - return "redeemFromMarketMakingPool" + return "registerAsDMM" } func (msg *MsgRegisterAsDMM) ValidateBasic() error { diff --git a/chain/exchange/types/query.pb.go b/chain/exchange/types/query.pb.go index 9f5ebf10..7aba667d 100644 --- a/chain/exchange/types/query.pb.go +++ b/chain/exchange/types/query.pb.go @@ -2311,6 +2311,96 @@ func (m *QueryTradeRewardCampaignResponse) GetPendingTradingRewardPoolCampaignSc return nil } +// QueryIsRegisteredDMMRequest is the request type for the Query/IsRegisteredDMM RPC method. +type QueryIsRegisteredDMMRequest struct { + Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"` +} + +func (m *QueryIsRegisteredDMMRequest) Reset() { *m = QueryIsRegisteredDMMRequest{} } +func (m *QueryIsRegisteredDMMRequest) String() string { return proto.CompactTextString(m) } +func (*QueryIsRegisteredDMMRequest) ProtoMessage() {} +func (*QueryIsRegisteredDMMRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_523db28b8af54781, []int{47} +} +func (m *QueryIsRegisteredDMMRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryIsRegisteredDMMRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryIsRegisteredDMMRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryIsRegisteredDMMRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryIsRegisteredDMMRequest.Merge(m, src) +} +func (m *QueryIsRegisteredDMMRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryIsRegisteredDMMRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryIsRegisteredDMMRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryIsRegisteredDMMRequest proto.InternalMessageInfo + +func (m *QueryIsRegisteredDMMRequest) GetAccount() string { + if m != nil { + return m.Account + } + return "" +} + +// QueryIsRegisteredDMMResponse is the response type for the Query/IsRegisteredDMM RPC method. +type QueryIsRegisteredDMMResponse struct { + IsRegisteredDmm bool `protobuf:"varint,1,opt,name=is_registered_dmm,json=isRegisteredDmm,proto3" json:"is_registered_dmm,omitempty"` +} + +func (m *QueryIsRegisteredDMMResponse) Reset() { *m = QueryIsRegisteredDMMResponse{} } +func (m *QueryIsRegisteredDMMResponse) String() string { return proto.CompactTextString(m) } +func (*QueryIsRegisteredDMMResponse) ProtoMessage() {} +func (*QueryIsRegisteredDMMResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_523db28b8af54781, []int{48} +} +func (m *QueryIsRegisteredDMMResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryIsRegisteredDMMResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryIsRegisteredDMMResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryIsRegisteredDMMResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryIsRegisteredDMMResponse.Merge(m, src) +} +func (m *QueryIsRegisteredDMMResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryIsRegisteredDMMResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryIsRegisteredDMMResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryIsRegisteredDMMResponse proto.InternalMessageInfo + +func (m *QueryIsRegisteredDMMResponse) GetIsRegisteredDmm() bool { + if m != nil { + return m.IsRegisteredDmm + } + return false +} + // QueryFeeDiscountAccountInfoRequest is the request type for the Query/FeeDiscountAccountInfo RPC method. type QueryFeeDiscountAccountInfoRequest struct { Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"` @@ -2320,7 +2410,7 @@ func (m *QueryFeeDiscountAccountInfoRequest) Reset() { *m = QueryFeeDisc func (m *QueryFeeDiscountAccountInfoRequest) String() string { return proto.CompactTextString(m) } func (*QueryFeeDiscountAccountInfoRequest) ProtoMessage() {} func (*QueryFeeDiscountAccountInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{47} + return fileDescriptor_523db28b8af54781, []int{49} } func (m *QueryFeeDiscountAccountInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2367,7 +2457,7 @@ func (m *QueryFeeDiscountAccountInfoResponse) Reset() { *m = QueryFeeDis func (m *QueryFeeDiscountAccountInfoResponse) String() string { return proto.CompactTextString(m) } func (*QueryFeeDiscountAccountInfoResponse) ProtoMessage() {} func (*QueryFeeDiscountAccountInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{48} + return fileDescriptor_523db28b8af54781, []int{50} } func (m *QueryFeeDiscountAccountInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2425,7 +2515,7 @@ func (m *QueryFeeDiscountScheduleRequest) Reset() { *m = QueryFeeDiscoun func (m *QueryFeeDiscountScheduleRequest) String() string { return proto.CompactTextString(m) } func (*QueryFeeDiscountScheduleRequest) ProtoMessage() {} func (*QueryFeeDiscountScheduleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{49} + return fileDescriptor_523db28b8af54781, []int{51} } func (m *QueryFeeDiscountScheduleRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2463,7 +2553,7 @@ func (m *QueryFeeDiscountScheduleResponse) Reset() { *m = QueryFeeDiscou func (m *QueryFeeDiscountScheduleResponse) String() string { return proto.CompactTextString(m) } func (*QueryFeeDiscountScheduleResponse) ProtoMessage() {} func (*QueryFeeDiscountScheduleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{50} + return fileDescriptor_523db28b8af54781, []int{52} } func (m *QueryFeeDiscountScheduleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2508,7 +2598,7 @@ func (m *QueryBalanceMismatchesRequest) Reset() { *m = QueryBalanceMisma func (m *QueryBalanceMismatchesRequest) String() string { return proto.CompactTextString(m) } func (*QueryBalanceMismatchesRequest) ProtoMessage() {} func (*QueryBalanceMismatchesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{51} + return fileDescriptor_523db28b8af54781, []int{53} } func (m *QueryBalanceMismatchesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2558,7 +2648,7 @@ func (m *BalanceMismatch) Reset() { *m = BalanceMismatch{} } func (m *BalanceMismatch) String() string { return proto.CompactTextString(m) } func (*BalanceMismatch) ProtoMessage() {} func (*BalanceMismatch) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{52} + return fileDescriptor_523db28b8af54781, []int{54} } func (m *BalanceMismatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2610,7 +2700,7 @@ func (m *QueryBalanceMismatchesResponse) Reset() { *m = QueryBalanceMism func (m *QueryBalanceMismatchesResponse) String() string { return proto.CompactTextString(m) } func (*QueryBalanceMismatchesResponse) ProtoMessage() {} func (*QueryBalanceMismatchesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{53} + return fileDescriptor_523db28b8af54781, []int{55} } func (m *QueryBalanceMismatchesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2654,7 +2744,7 @@ func (m *QueryBalanceWithBalanceHoldsRequest) Reset() { *m = QueryBalanc func (m *QueryBalanceWithBalanceHoldsRequest) String() string { return proto.CompactTextString(m) } func (*QueryBalanceWithBalanceHoldsRequest) ProtoMessage() {} func (*QueryBalanceWithBalanceHoldsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{54} + return fileDescriptor_523db28b8af54781, []int{56} } func (m *QueryBalanceWithBalanceHoldsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2695,7 +2785,7 @@ func (m *BalanceWithMarginHold) Reset() { *m = BalanceWithMarginHold{} } func (m *BalanceWithMarginHold) String() string { return proto.CompactTextString(m) } func (*BalanceWithMarginHold) ProtoMessage() {} func (*BalanceWithMarginHold) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{55} + return fileDescriptor_523db28b8af54781, []int{57} } func (m *BalanceWithMarginHold) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2747,7 +2837,7 @@ func (m *QueryBalanceWithBalanceHoldsResponse) Reset() { *m = QueryBalan func (m *QueryBalanceWithBalanceHoldsResponse) String() string { return proto.CompactTextString(m) } func (*QueryBalanceWithBalanceHoldsResponse) ProtoMessage() {} func (*QueryBalanceWithBalanceHoldsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{56} + return fileDescriptor_523db28b8af54781, []int{58} } func (m *QueryBalanceWithBalanceHoldsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2791,7 +2881,7 @@ func (m *QueryFeeDiscountTierStatisticsRequest) Reset() { *m = QueryFeeD func (m *QueryFeeDiscountTierStatisticsRequest) String() string { return proto.CompactTextString(m) } func (*QueryFeeDiscountTierStatisticsRequest) ProtoMessage() {} func (*QueryFeeDiscountTierStatisticsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{57} + return fileDescriptor_523db28b8af54781, []int{59} } func (m *QueryFeeDiscountTierStatisticsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2829,7 +2919,7 @@ func (m *TierStatistic) Reset() { *m = TierStatistic{} } func (m *TierStatistic) String() string { return proto.CompactTextString(m) } func (*TierStatistic) ProtoMessage() {} func (*TierStatistic) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{58} + return fileDescriptor_523db28b8af54781, []int{60} } func (m *TierStatistic) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2883,7 +2973,7 @@ func (m *QueryFeeDiscountTierStatisticsResponse) Reset() { func (m *QueryFeeDiscountTierStatisticsResponse) String() string { return proto.CompactTextString(m) } func (*QueryFeeDiscountTierStatisticsResponse) ProtoMessage() {} func (*QueryFeeDiscountTierStatisticsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_523db28b8af54781, []int{59} + return fileDescriptor_523db28b8af54781, []int{61} } func (m *QueryFeeDiscountTierStatisticsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2968,6 +3058,8 @@ func init() { proto.RegisterType((*QueryTradeRewardPointsResponse)(nil), "injective.exchange.v1beta1.QueryTradeRewardPointsResponse") proto.RegisterType((*QueryTradeRewardCampaignRequest)(nil), "injective.exchange.v1beta1.QueryTradeRewardCampaignRequest") proto.RegisterType((*QueryTradeRewardCampaignResponse)(nil), "injective.exchange.v1beta1.QueryTradeRewardCampaignResponse") + proto.RegisterType((*QueryIsRegisteredDMMRequest)(nil), "injective.exchange.v1beta1.QueryIsRegisteredDMMRequest") + proto.RegisterType((*QueryIsRegisteredDMMResponse)(nil), "injective.exchange.v1beta1.QueryIsRegisteredDMMResponse") proto.RegisterType((*QueryFeeDiscountAccountInfoRequest)(nil), "injective.exchange.v1beta1.QueryFeeDiscountAccountInfoRequest") proto.RegisterType((*QueryFeeDiscountAccountInfoResponse)(nil), "injective.exchange.v1beta1.QueryFeeDiscountAccountInfoResponse") proto.RegisterType((*QueryFeeDiscountScheduleRequest)(nil), "injective.exchange.v1beta1.QueryFeeDiscountScheduleRequest") @@ -2988,186 +3080,191 @@ func init() { } var fileDescriptor_523db28b8af54781 = []byte{ - // 2859 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0xcb, 0x6f, 0x1c, 0xc7, - 0xd1, 0x57, 0xf3, 0x65, 0xb2, 0x28, 0xda, 0x52, 0x8b, 0xa2, 0xa8, 0x95, 0x44, 0x49, 0xed, 0x4f, - 0x32, 0xe5, 0xcf, 0xda, 0x35, 0x49, 0x4b, 0x14, 0x65, 0x5a, 0x32, 0x69, 0x8a, 0x16, 0x6d, 0x52, - 0xa2, 0x47, 0x34, 0x12, 0x0b, 0x01, 0xd6, 0xc3, 0x9d, 0x26, 0x77, 0xac, 0xd9, 0x99, 0xd5, 0xce, - 0x2c, 0x2d, 0x42, 0x11, 0x10, 0xe4, 0x92, 0x43, 0x0e, 0x0e, 0xe0, 0x20, 0xc7, 0x00, 0xb9, 0xfa, - 0x12, 0x20, 0xb9, 0x04, 0x39, 0x24, 0x80, 0x03, 0x04, 0x46, 0x0c, 0x24, 0xce, 0x03, 0x41, 0x12, - 0x20, 0x8e, 0x21, 0x07, 0xc8, 0x03, 0xf9, 0x03, 0x72, 0x0a, 0x82, 0xe9, 0xa9, 0x79, 0xec, 0xbc, - 0xd8, 0xb3, 0x76, 0x00, 0x05, 0xc8, 0x49, 0xdb, 0x3d, 0x5d, 0xbf, 0xae, 0x67, 0x77, 0x75, 0x15, - 0x05, 0x67, 0x75, 0xf3, 0x2d, 0x5e, 0x73, 0xf4, 0x1d, 0x5e, 0xe1, 0xf7, 0x6a, 0x75, 0xd5, 0xdc, - 0xe6, 0x95, 0x9d, 0xa9, 0x4d, 0xee, 0xa8, 0x53, 0x95, 0xbb, 0x6d, 0xde, 0xda, 0x2d, 0x37, 0x5b, - 0x96, 0x63, 0xd1, 0x52, 0xb0, 0xae, 0xec, 0xaf, 0x2b, 0xe3, 0xba, 0xd2, 0xf1, 0x6d, 0xcb, 0xda, - 0x36, 0x78, 0x45, 0x6d, 0xea, 0x15, 0xd5, 0x34, 0x2d, 0x47, 0x75, 0x74, 0xcb, 0xb4, 0x3d, 0xca, - 0xd2, 0xb9, 0x9c, 0x1d, 0x02, 0x28, 0x6f, 0xe9, 0x64, 0xce, 0xd2, 0x6d, 0x6e, 0x72, 0x5b, 0xf7, - 0x41, 0x47, 0xb7, 0xad, 0x6d, 0x4b, 0xfc, 0xac, 0xb8, 0xbf, 0xbc, 0x59, 0x76, 0x13, 0xe0, 0x56, - 0x7b, 0x53, 0xad, 0xd5, 0xac, 0xb6, 0xe9, 0xd0, 0x31, 0x18, 0x70, 0x5a, 0xaa, 0xc6, 0x5b, 0xe3, - 0xe4, 0x14, 0x99, 0x1c, 0x52, 0x70, 0x44, 0xcf, 0xc1, 0x01, 0x3b, 0x58, 0x55, 0x35, 0x2d, 0xb3, - 0xc6, 0xc7, 0x7b, 0x4e, 0x91, 0xc9, 0x11, 0xe5, 0x89, 0x70, 0xfe, 0x86, 0x3b, 0xcd, 0xbe, 0x4b, - 0xe0, 0x4c, 0x88, 0x78, 0xb3, 0xa5, 0xf1, 0xd6, 0xa6, 0x65, 0xdd, 0x59, 0xe3, 0x8e, 0xaa, 0xa9, - 0x8e, 0xfa, 0x05, 0xdd, 0xa9, 0xaf, 0xa9, 0xad, 0x3b, 0xdc, 0xa1, 0xb7, 0x60, 0xb0, 0x81, 0xb3, - 0x62, 0xbb, 0xe1, 0xe9, 0xd9, 0x72, 0xb6, 0xca, 0xca, 0x39, 0xa0, 0x4a, 0x00, 0x44, 0x8f, 0xc1, - 0x50, 0x43, 0xc0, 0x57, 0x75, 0x4d, 0xb0, 0x38, 0xa4, 0x0c, 0x7a, 0x13, 0x2b, 0x1a, 0x1d, 0x85, - 0x7e, 0xdd, 0x5e, 0x6c, 0xef, 0x8e, 0xf7, 0x9e, 0x22, 0x93, 0x83, 0x8a, 0x37, 0x60, 0xc7, 0xa1, - 0xf4, 0x9a, 0x6b, 0xb6, 0x6b, 0xb8, 0xe3, 0xba, 0xda, 0x52, 0x1b, 0xb6, 0xc2, 0xef, 0xb6, 0xb9, - 0xed, 0xb0, 0x2a, 0x1c, 0x4b, 0xfd, 0x6a, 0x37, 0x2d, 0xd3, 0xe6, 0xf4, 0x45, 0x18, 0x68, 0x8a, - 0x19, 0x14, 0x81, 0xe5, 0x89, 0xe0, 0xd1, 0x2e, 0xf6, 0x7d, 0xf0, 0xf1, 0xc9, 0x7d, 0x0a, 0xd2, - 0xb1, 0x77, 0x09, 0x4c, 0x88, 0x1d, 0x42, 0x01, 0x97, 0x78, 0xd3, 0xb2, 0x75, 0xc7, 0xe7, 0x81, - 0x3e, 0x09, 0x23, 0x11, 0xf5, 0xeb, 0x1a, 0x5a, 0x67, 0x7f, 0x38, 0xb9, 0xa2, 0xd1, 0x55, 0x80, - 0x70, 0x2c, 0x44, 0x1f, 0x9e, 0x3e, 0x2b, 0xa7, 0x50, 0xc1, 0x11, 0x51, 0x22, 0xf4, 0xec, 0xef, - 0x04, 0x4e, 0x66, 0x72, 0x85, 0xb2, 0x73, 0x18, 0xd4, 0x70, 0x6e, 0x9c, 0x9c, 0xea, 0x9d, 0x1c, - 0x9e, 0x5e, 0xc9, 0xdb, 0x6f, 0x0f, 0xb8, 0xb2, 0x3f, 0x71, 0xcd, 0x74, 0x5a, 0xbb, 0x4a, 0x00, - 0x5d, 0x7a, 0x13, 0x46, 0x3a, 0x3e, 0xd1, 0x03, 0xd0, 0x7b, 0x87, 0xef, 0xa2, 0x12, 0xdc, 0x9f, - 0x74, 0x0e, 0xfa, 0x77, 0x54, 0xa3, 0xcd, 0x51, 0xec, 0x27, 0xf3, 0xd8, 0x40, 0x2c, 0xc5, 0xa3, - 0xb8, 0xdc, 0x73, 0x89, 0xb0, 0x09, 0x38, 0xde, 0x61, 0xe3, 0x45, 0xd5, 0x50, 0xcd, 0x1a, 0x0f, - 0x7c, 0x60, 0x0b, 0x4e, 0x64, 0x7c, 0x47, 0x4d, 0x5c, 0x83, 0xc1, 0x4d, 0x9c, 0x43, 0x4d, 0xe4, - 0xb2, 0x80, 0xf4, 0xe8, 0x08, 0x01, 0x29, 0xbb, 0x8d, 0xfb, 0x24, 0x94, 0x54, 0xc8, 0x11, 0x46, - 0xa1, 0x5f, 0xe3, 0xa6, 0xd5, 0x40, 0xf7, 0xf7, 0x06, 0x4c, 0xcd, 0xf2, 0xb2, 0x40, 0x88, 0xab, - 0x1d, 0xe6, 0x94, 0xd6, 0x63, 0x40, 0xc4, 0xa6, 0xe0, 0x88, 0xb7, 0x45, 0xd3, 0x72, 0xbc, 0x18, - 0x0f, 0x3c, 0x78, 0x0c, 0x06, 0x6c, 0x47, 0x75, 0xda, 0xb6, 0x7f, 0xb0, 0x78, 0x23, 0xf6, 0x25, - 0x18, 0x4f, 0x92, 0x04, 0xa1, 0xf5, 0x98, 0x17, 0xb9, 0xbe, 0x4e, 0xf3, 0xbd, 0x39, 0x40, 0x50, - 0x7c, 0x32, 0x76, 0x01, 0xc6, 0x62, 0xe8, 0x3e, 0x3f, 0x1d, 0xc7, 0x04, 0xe9, 0x3c, 0x26, 0xd8, - 0x1b, 0x09, 0x39, 0x02, 0x9e, 0xae, 0xc0, 0x80, 0xb7, 0x0c, 0x35, 0x24, 0xcb, 0x12, 0x52, 0xb1, - 0x1b, 0x70, 0x34, 0x80, 0x0e, 0x8e, 0x31, 0x19, 0xa6, 0x5c, 0xab, 0x1a, 0x7a, 0x43, 0xf7, 0x22, - 0xbb, 0x4f, 0xf1, 0x06, 0xec, 0x7d, 0x82, 0x87, 0x57, 0x0c, 0x10, 0xd9, 0x5d, 0x87, 0x03, 0x9b, - 0xed, 0x5d, 0xbb, 0xda, 0x6c, 0xe9, 0x35, 0x5e, 0x35, 0xf8, 0x0e, 0x37, 0x64, 0x74, 0xb9, 0xee, - 0x2e, 0x5f, 0x75, 0x57, 0x2b, 0x8f, 0xbb, 0xf4, 0xe1, 0x98, 0x2a, 0x70, 0xd0, 0xe6, 0x86, 0xd1, - 0x09, 0xd9, 0x53, 0x08, 0xf2, 0x09, 0x01, 0x10, 0x4e, 0xb0, 0x37, 0x31, 0xfc, 0x36, 0xc4, 0x65, - 0x13, 0x48, 0x62, 0x4b, 0xe9, 0x25, 0x11, 0x12, 0x3d, 0xc9, 0x90, 0x60, 0xef, 0xf5, 0xc0, 0xe1, - 0x8d, 0x96, 0xde, 0x68, 0x70, 0xcd, 0x85, 0x5f, 0x75, 0x75, 0x27, 0xf6, 0xa0, 0x4b, 0xd0, 0x2f, - 0x24, 0xf1, 0x70, 0x17, 0xcb, 0x6e, 0x44, 0xfe, 0xe1, 0xe3, 0x93, 0x67, 0xb7, 0x75, 0xa7, 0xde, - 0xde, 0x2c, 0xd7, 0xac, 0x46, 0xa5, 0x66, 0xd9, 0x0d, 0xcb, 0xc6, 0x7f, 0xce, 0xdb, 0xda, 0x9d, - 0x8a, 0xb3, 0xdb, 0xe4, 0x76, 0x79, 0x89, 0xd7, 0x14, 0x8f, 0x98, 0xbe, 0x02, 0x83, 0x77, 0xdb, - 0xaa, 0xe9, 0xe8, 0xce, 0xae, 0xb7, 0x7f, 0x61, 0xa0, 0x80, 0xde, 0xc5, 0xda, 0xd2, 0x0d, 0x43, - 0xdd, 0x34, 0xb8, 0xb8, 0xa7, 0xba, 0xc0, 0xf2, 0xe9, 0xc3, 0x0b, 0xaf, 0x2f, 0x72, 0xe1, 0xd1, - 0x13, 0x00, 0x96, 0x2b, 0x7c, 0xb5, 0xae, 0xda, 0xf5, 0xf1, 0x7e, 0xa1, 0xaf, 0x21, 0x31, 0x73, - 0x5d, 0xb5, 0xeb, 0xec, 0x2d, 0x3c, 0x85, 0x92, 0xe6, 0x40, 0xaf, 0x5a, 0x81, 0x01, 0xb1, 0xda, - 0x8f, 0xcb, 0xa9, 0x3c, 0xc3, 0xa7, 0xaa, 0x5d, 0x41, 0x00, 0xb6, 0x81, 0xb7, 0xcc, 0x12, 0x6f, - 0xe9, 0x3b, 0xaa, 0x8b, 0xf0, 0x79, 0x44, 0xc5, 0x07, 0x04, 0x4e, 0x65, 0xc3, 0xfe, 0x57, 0xc5, - 0xc6, 0x16, 0xb0, 0x88, 0x31, 0x62, 0xf2, 0x7c, 0x8e, 0x11, 0xf2, 0xcf, 0x1e, 0x38, 0x86, 0xa6, - 0x0a, 0x37, 0x79, 0xa4, 0xe3, 0x64, 0x59, 0x1c, 0xc5, 0xdb, 0xba, 0xd9, 0x65, 0x94, 0x20, 0x75, - 0x47, 0xbc, 0xf5, 0x7d, 0x5e, 0xf1, 0xd6, 0x9f, 0x1d, 0x6f, 0x03, 0xf1, 0x78, 0xdb, 0x81, 0x27, - 0x73, 0x4d, 0x8c, 0xfe, 0x7a, 0x33, 0x16, 0x75, 0xb3, 0x12, 0x51, 0x97, 0x66, 0xca, 0x20, 0xf6, - 0x66, 0x31, 0xce, 0xc3, 0x45, 0x92, 0x97, 0xf6, 0xb7, 0x09, 0x40, 0xc4, 0xed, 0x1f, 0x39, 0xd7, - 0x60, 0x3f, 0x26, 0x30, 0xba, 0xce, 0x5b, 0x4d, 0xee, 0xb4, 0x55, 0xc3, 0x13, 0xea, 0x96, 0xa3, - 0x3a, 0x6e, 0xcc, 0x0f, 0xfb, 0x71, 0x62, 0x6e, 0x59, 0x78, 0x87, 0x57, 0x72, 0x63, 0xb3, 0x13, - 0x66, 0xc5, 0xdc, 0xb2, 0x14, 0x68, 0x04, 0xbf, 0xe9, 0xeb, 0xb0, 0x7f, 0xab, 0x6d, 0x6a, 0xba, - 0xb9, 0xed, 0x41, 0x7a, 0x09, 0xe8, 0x74, 0x01, 0xc8, 0x65, 0x8f, 0x5c, 0x19, 0x46, 0x1c, 0x17, - 0x96, 0xfd, 0xb5, 0x07, 0x46, 0x97, 0xdb, 0x86, 0x11, 0xb7, 0x0d, 0x5d, 0x8a, 0x25, 0x20, 0xcf, - 0xe4, 0xa7, 0x68, 0x9d, 0xd4, 0x7e, 0x1a, 0x42, 0xdf, 0x80, 0xc7, 0x9b, 0x3e, 0x17, 0x51, 0xbe, - 0x9f, 0x2d, 0xc0, 0xb7, 0xd0, 0xe8, 0xf5, 0x7d, 0xca, 0x48, 0x80, 0x24, 0x14, 0xf2, 0x45, 0x57, - 0x21, 0x4e, 0xbb, 0xc5, 0x6d, 0x0f, 0xb8, 0x57, 0x00, 0xcf, 0xe4, 0x01, 0x5f, 0xbb, 0xd7, 0xd4, - 0x5b, 0xbb, 0xcb, 0x1e, 0x55, 0xa8, 0xe7, 0xeb, 0xfb, 0x5c, 0x9d, 0x88, 0x49, 0x81, 0xbc, 0x06, - 0x42, 0xf1, 0xde, 0xe9, 0xda, 0x65, 0xa8, 0x8a, 0x63, 0x52, 0xf8, 0xee, 0xe2, 0x00, 0xf4, 0xb9, - 0x0c, 0x32, 0x03, 0x13, 0xe3, 0x94, 0x30, 0xc0, 0xc8, 0x7b, 0x25, 0x9e, 0x88, 0xe6, 0xaa, 0x29, - 0xcd, 0x6c, 0x61, 0x4a, 0xfa, 0x3c, 0xe6, 0x3a, 0x89, 0x15, 0x32, 0x89, 0xa9, 0x9e, 0x11, 0xb1, - 0x01, 0xa7, 0xd7, 0x63, 0xde, 0x51, 0x9c, 0x51, 0x3f, 0x51, 0x5d, 0xc4, 0x43, 0x29, 0xbe, 0x60, - 0x41, 0xd3, 0x5a, 0xdc, 0x96, 0xba, 0x78, 0x18, 0x87, 0xff, 0xcb, 0xc7, 0x40, 0xae, 0xc7, 0xe1, - 0x31, 0xd5, 0x9b, 0x42, 0x08, 0x7f, 0x28, 0x77, 0x75, 0xbd, 0x8c, 0x97, 0x7d, 0xf8, 0xb2, 0x11, - 0x27, 0xa9, 0x28, 0x47, 0x14, 0x79, 0x38, 0xb1, 0xe5, 0xc4, 0x93, 0x77, 0xdd, 0x7d, 0xd8, 0xe8, - 0x96, 0x59, 0xe8, 0x25, 0xce, 0x5e, 0x41, 0xdd, 0xc5, 0x2a, 0x16, 0x41, 0xb5, 0xa2, 0x08, 0x96, - 0x99, 0x10, 0x2e, 0xc2, 0x53, 0xe0, 0x9f, 0xfd, 0xee, 0xc9, 0xcc, 0xd1, 0x3b, 0xcb, 0x72, 0x47, - 0x82, 0x8f, 0x83, 0xaf, 0x50, 0x0f, 0x82, 0x7d, 0x9d, 0xa0, 0xd1, 0x32, 0x99, 0xc7, 0x4d, 0x6b, - 0x1d, 0xd5, 0x1b, 0x77, 0xdf, 0x85, 0x2e, 0xab, 0x37, 0x61, 0x49, 0xc8, 0x7f, 0x10, 0xfb, 0xc0, - 0x6c, 0x0e, 0x4e, 0xe7, 0x98, 0x16, 0x39, 0x19, 0x85, 0x7e, 0xaf, 0x22, 0x45, 0x44, 0x45, 0xca, - 0x1b, 0xb0, 0xa3, 0xf8, 0x88, 0x5b, 0xb3, 0xb4, 0xb6, 0xc1, 0xc5, 0x61, 0xe5, 0x3f, 0xe7, 0x6f, - 0xe3, 0xa3, 0xb3, 0xe3, 0x53, 0xf0, 0xc0, 0x0b, 0x74, 0xe9, 0x06, 0xd0, 0x64, 0x9e, 0x4c, 0x2f, - 0x7b, 0xf5, 0x35, 0x0f, 0x00, 0xf5, 0x77, 0x04, 0x0e, 0x0b, 0xec, 0xb8, 0xe7, 0x30, 0x0d, 0xdf, - 0xa2, 0xff, 0x59, 0xf3, 0xdd, 0x8d, 0xe6, 0xee, 0x0a, 0x7f, 0x5b, 0x6d, 0x69, 0xeb, 0x96, 0x6e, - 0x86, 0x77, 0x7a, 0x09, 0x06, 0x51, 0x93, 0xde, 0x61, 0x36, 0xa4, 0x04, 0x63, 0xfa, 0x1c, 0x8c, - 0x35, 0xb9, 0x77, 0x97, 0x35, 0x2d, 0xcb, 0xa8, 0x3a, 0x7a, 0x83, 0xdb, 0x8e, 0xda, 0x68, 0x8a, - 0xb0, 0xeb, 0x55, 0x46, 0xf1, 0xeb, 0xba, 0x65, 0x19, 0x1b, 0xfe, 0x37, 0xf6, 0x8e, 0x5f, 0xbf, - 0x4a, 0xd9, 0x13, 0x25, 0x6c, 0xc0, 0x31, 0xdf, 0xcd, 0x45, 0x41, 0xb1, 0xda, 0x12, 0xab, 0xaa, - 0x4d, 0xb1, 0xcc, 0xe3, 0xa3, 0xf0, 0x51, 0x3e, 0x1e, 0xf5, 0x88, 0xe8, 0xb6, 0xec, 0x34, 0xc6, - 0x71, 0xe4, 0xcb, 0x4b, 0x6a, 0xa3, 0xa9, 0xea, 0xdb, 0xa6, 0x6f, 0x8d, 0x6f, 0xf6, 0x63, 0x5c, - 0xa5, 0xae, 0x41, 0xb6, 0x77, 0xe0, 0xb8, 0xcb, 0xae, 0xab, 0x0f, 0x64, 0xb8, 0x86, 0x4b, 0xa2, - 0xe9, 0xc3, 0x85, 0xfc, 0x3c, 0x4c, 0xd0, 0x77, 0x6e, 0x20, 0x92, 0x88, 0xa3, 0x4e, 0xd6, 0x27, - 0xfa, 0x15, 0x02, 0x67, 0x62, 0x1b, 0x0b, 0x7b, 0x04, 0xbb, 0xdb, 0xb5, 0x3a, 0x77, 0x5d, 0x17, - 0x1f, 0x17, 0xb9, 0x1e, 0x13, 0x4a, 0xe5, 0x69, 0xc8, 0x32, 0x94, 0xd3, 0x1d, 0x5b, 0xbb, 0x53, - 0xfe, 0xa2, 0x5b, 0x08, 0x4c, 0x75, 0x38, 0xea, 0x58, 0x8e, 0x6a, 0xa4, 0xda, 0xab, 0xbb, 0x7c, - 0x7b, 0x4c, 0x00, 0x26, 0xac, 0x45, 0xdf, 0x21, 0x70, 0xde, 0x77, 0x3b, 0x39, 0xa9, 0xfb, 0xba, - 0x92, 0x7a, 0x12, 0x37, 0xd9, 0xd8, 0x53, 0xf8, 0x7b, 0x70, 0x3a, 0x60, 0x28, 0x53, 0x09, 0xfd, - 0x5d, 0x39, 0xed, 0x09, 0x9f, 0x89, 0x54, 0x5d, 0xb0, 0x2b, 0xf8, 0xda, 0x5b, 0xe6, 0x7c, 0x49, - 0xb7, 0x85, 0x7b, 0x2f, 0xe0, 0x55, 0xe0, 0xfa, 0x0c, 0xc6, 0xb0, 0x7b, 0x5f, 0x62, 0x99, 0xd7, - 0xbf, 0x2f, 0xb1, 0x6a, 0xfb, 0x37, 0x82, 0x57, 0x4f, 0x16, 0x00, 0x7a, 0xf6, 0x09, 0x00, 0x47, - 0xe7, 0xad, 0xe0, 0xd5, 0xeb, 0xbe, 0x9d, 0x87, 0xdc, 0x19, 0xff, 0x21, 0xbb, 0x3f, 0xb8, 0x96, - 0xc2, 0xe4, 0x30, 0x37, 0x4f, 0x8e, 0x6c, 0xb8, 0xa1, 0xf3, 0x96, 0xd8, 0x6d, 0x58, 0x0d, 0xb7, - 0xa6, 0x37, 0x61, 0x38, 0x38, 0x03, 0x1c, 0x03, 0xd3, 0xc2, 0x72, 0x01, 0xc8, 0x8d, 0x8d, 0x55, - 0x05, 0xfc, 0x98, 0x77, 0x8c, 0x20, 0xca, 0x23, 0xcb, 0x7c, 0x0b, 0xfa, 0x51, 0xfe, 0x35, 0xbf, - 0x0e, 0x90, 0xba, 0x26, 0xb8, 0xc8, 0x0e, 0x6f, 0x71, 0x5e, 0xd5, 0xf0, 0x7b, 0xe8, 0x66, 0xa4, - 0x90, 0xd4, 0x01, 0xee, 0xa1, 0xad, 0xe4, 0x24, 0x7b, 0x11, 0xcf, 0x65, 0xac, 0xfc, 0xae, 0xe9, - 0x76, 0x43, 0x75, 0x6a, 0xf5, 0xa0, 0xc4, 0x4c, 0x4f, 0xc2, 0xb0, 0xd6, 0xb6, 0x9d, 0xea, 0x96, - 0x5a, 0x73, 0x2c, 0xaf, 0xfd, 0xd2, 0xab, 0x80, 0x3b, 0xb5, 0x2c, 0x66, 0xd8, 0xef, 0x7b, 0xe1, - 0x89, 0x18, 0x35, 0x65, 0xd0, 0x91, 0x2c, 0xc8, 0x57, 0x83, 0xe9, 0x2a, 0x0c, 0xa9, 0x3b, 0xaa, - 0xfe, 0x59, 0xaa, 0x4c, 0x21, 0x80, 0xfb, 0x02, 0x14, 0x81, 0xd2, 0x65, 0x52, 0xee, 0x11, 0xd3, - 0xd7, 0x60, 0x3f, 0x56, 0xc2, 0xab, 0x75, 0xcb, 0xd0, 0xbc, 0xc2, 0x54, 0x61, 0xb0, 0x61, 0xc4, - 0xb8, 0x6e, 0x19, 0x1a, 0x7d, 0x1d, 0x1e, 0xe7, 0xf7, 0x9a, 0xbc, 0xe6, 0x70, 0xcd, 0x0b, 0x65, - 0xef, 0xf5, 0x5d, 0x18, 0x74, 0xc4, 0x47, 0x11, 0x71, 0x4b, 0x6f, 0x00, 0x68, 0xfa, 0xd6, 0x16, - 0x6f, 0x71, 0x37, 0xed, 0x78, 0xac, 0x2b, 0xc8, 0x08, 0x02, 0xfb, 0x32, 0xde, 0xa0, 0x29, 0xde, - 0x81, 0x4e, 0x7a, 0x1b, 0xa8, 0xaf, 0x9b, 0x46, 0xf0, 0x15, 0x13, 0x86, 0xff, 0x97, 0x68, 0x35, - 0xf8, 0x90, 0xca, 0xc1, 0xcd, 0xf8, 0x1e, 0xec, 0x0c, 0x9e, 0x19, 0xb8, 0xd4, 0x4d, 0xc7, 0x16, - 0x43, 0x1d, 0x06, 0x09, 0xcc, 0x0f, 0x7a, 0xe0, 0x70, 0x64, 0xc9, 0x9a, 0xa8, 0x9e, 0x08, 0x2d, - 0xff, 0xcf, 0x0d, 0xf3, 0xdd, 0x90, 0x7d, 0xcb, 0x4f, 0xaa, 0x33, 0x55, 0x8c, 0x66, 0x36, 0xa1, - 0xe4, 0xef, 0xfd, 0xb6, 0xee, 0xd4, 0xab, 0x51, 0x46, 0xa4, 0xaa, 0xad, 0xa9, 0x06, 0x52, 0x8e, - 0x6c, 0xa6, 0xef, 0xcb, 0x9e, 0x82, 0x33, 0xf1, 0xf3, 0xd1, 0x3d, 0x6a, 0xdd, 0x8c, 0x56, 0xb7, - 0x1d, 0xbd, 0x16, 0x18, 0x7f, 0x0e, 0x46, 0x3a, 0x3e, 0x50, 0x0a, 0x7d, 0xee, 0x7d, 0x81, 0x77, - 0x87, 0xf8, 0xed, 0xda, 0x38, 0x6c, 0x3e, 0xf6, 0x29, 0xde, 0x80, 0xd9, 0x70, 0x76, 0xaf, 0x3d, - 0x82, 0xba, 0x32, 0xd8, 0xc1, 0x2c, 0x4a, 0x7b, 0x2e, 0x37, 0xbb, 0x8a, 0xe2, 0x28, 0x11, 0xe2, - 0xe9, 0x7f, 0x9d, 0x83, 0x7e, 0xb1, 0x2b, 0xfd, 0x21, 0x81, 0x43, 0x29, 0x0d, 0x5c, 0x7a, 0x71, - 0xcf, 0x56, 0x65, 0x6a, 0x3f, 0xb8, 0x34, 0x5b, 0x98, 0xce, 0x93, 0x8e, 0x4d, 0x7f, 0xf5, 0xd7, - 0x7f, 0x7e, 0xb7, 0xe7, 0x19, 0xfa, 0x74, 0x45, 0xa2, 0xbb, 0x8f, 0x4c, 0xfe, 0x9c, 0x00, 0x4d, - 0x76, 0x4c, 0xe9, 0xe5, 0xae, 0xda, 0xac, 0x1e, 0xff, 0xcf, 0x7f, 0x86, 0x16, 0x2d, 0xbb, 0x2a, - 0x64, 0x98, 0xa3, 0xb3, 0x32, 0x32, 0x54, 0xec, 0x24, 0xe7, 0x3f, 0x23, 0x70, 0x30, 0x81, 0x4f, - 0xe7, 0x8a, 0xf3, 0xe4, 0x8b, 0x73, 0xb9, 0x1b, 0x52, 0x94, 0xe6, 0x8a, 0x90, 0xe6, 0x12, 0xbd, - 0xd8, 0x9d, 0x34, 0xf4, 0xa7, 0x04, 0x0e, 0xc4, 0x5b, 0xc2, 0xf4, 0x92, 0xb4, 0x7f, 0xc4, 0xba, - 0xcc, 0xa5, 0xb9, 0x2e, 0x28, 0x51, 0x92, 0x17, 0x84, 0x24, 0xb3, 0xf4, 0x82, 0x94, 0x24, 0x3c, - 0xce, 0xf3, 0x7b, 0x04, 0x86, 0x23, 0x1d, 0x58, 0x3a, 0xb3, 0xb7, 0x52, 0x13, 0x2d, 0xde, 0xd2, - 0x73, 0xc5, 0x88, 0x90, 0xf3, 0x67, 0x05, 0xe7, 0x4f, 0xd3, 0xc9, 0x3c, 0xce, 0xed, 0xa6, 0xe5, - 0x54, 0xb0, 0x82, 0x46, 0xbf, 0x4f, 0x00, 0x42, 0x24, 0x3a, 0x5d, 0x60, 0x5b, 0x9f, 0xd5, 0x99, - 0x42, 0x34, 0xc8, 0xe9, 0xbc, 0xe0, 0xf4, 0x22, 0x7d, 0x4e, 0x96, 0xd3, 0xca, 0xfd, 0xa0, 0x34, - 0xf6, 0x80, 0xfe, 0x88, 0xc0, 0x48, 0x47, 0x8f, 0x96, 0x5e, 0x90, 0x62, 0x22, 0xde, 0x0e, 0x2b, - 0x5d, 0x2c, 0x4a, 0x56, 0xc4, 0xd9, 0x05, 0xfb, 0x96, 0x4f, 0xdb, 0x21, 0xc0, 0x6f, 0x08, 0x1c, - 0x88, 0x77, 0x04, 0x25, 0x9c, 0x3d, 0xa3, 0xa7, 0x2b, 0xe1, 0xec, 0x59, 0xed, 0x47, 0xf6, 0xaa, - 0x90, 0xe4, 0x1a, 0x7d, 0x49, 0x4e, 0x92, 0x0e, 0x3b, 0x54, 0xee, 0x77, 0x94, 0xdc, 0x1e, 0xd0, - 0xdf, 0x12, 0x38, 0x94, 0xd2, 0x25, 0xa4, 0x7b, 0x1f, 0x93, 0xd9, 0x2d, 0xcb, 0xd2, 0x7c, 0x77, - 0xc4, 0x28, 0xdf, 0x92, 0x90, 0xef, 0x0a, 0x9d, 0xcf, 0x93, 0x4f, 0x0b, 0x00, 0x32, 0xec, 0xf5, - 0x0f, 0x02, 0x63, 0xe9, 0x1d, 0x25, 0x7a, 0x45, 0x52, 0xf7, 0x19, 0xdd, 0xc6, 0xd2, 0xd5, 0xae, - 0xe9, 0x51, 0xc2, 0xd7, 0x84, 0x84, 0xaf, 0xd2, 0x95, 0x22, 0x12, 0xe6, 0xdb, 0xf1, 0x7d, 0x02, - 0x07, 0x13, 0x15, 0x7c, 0x89, 0x8b, 0x25, 0xab, 0xf9, 0x25, 0x71, 0xb1, 0x64, 0x36, 0x0c, 0xd8, - 0x45, 0x21, 0xdf, 0xb3, 0xb4, 0x2c, 0x29, 0x9f, 0x7f, 0xb4, 0x7d, 0x48, 0xe0, 0x40, 0xa2, 0xe3, - 0x73, 0xa9, 0x30, 0x23, 0xf2, 0x31, 0x96, 0xd5, 0x48, 0x60, 0x8b, 0x42, 0x82, 0x79, 0x7a, 0xb9, - 0x98, 0x04, 0x1d, 0x1e, 0xf8, 0x17, 0x02, 0x47, 0x32, 0x4a, 0xff, 0xf4, 0x6a, 0x61, 0xd6, 0x3a, - 0x1b, 0x0f, 0xa5, 0x17, 0xbb, 0x07, 0x40, 0x11, 0x57, 0x84, 0x88, 0x2f, 0xd1, 0x85, 0x42, 0x22, - 0x56, 0xb1, 0x35, 0xd1, 0x21, 0xe9, 0x2f, 0x09, 0x8c, 0xa6, 0x95, 0xa8, 0xe9, 0x7c, 0x81, 0xec, - 0x24, 0xd1, 0xb4, 0x28, 0xbd, 0xd0, 0x25, 0x75, 0x91, 0x0b, 0x2b, 0x98, 0x88, 0x07, 0xd4, 0xf7, - 0x08, 0x1c, 0xf2, 0xf3, 0x8d, 0x48, 0xa1, 0x5c, 0x22, 0x37, 0x48, 0x56, 0xdc, 0x25, 0x72, 0x83, - 0x94, 0x5a, 0xbc, 0x5c, 0x6e, 0xd0, 0x10, 0x84, 0x55, 0x51, 0xfe, 0xa6, 0xdf, 0x21, 0x30, 0x14, - 0x14, 0xd8, 0xe9, 0xd4, 0x9e, 0xbb, 0xc6, 0xab, 0xf4, 0xa5, 0xe9, 0x22, 0x24, 0xc8, 0xe6, 0x79, - 0xc1, 0xe6, 0x53, 0xf4, 0x4c, 0x1e, 0x9b, 0xcd, 0x80, 0xab, 0x5f, 0x10, 0x38, 0x94, 0xd2, 0xcd, - 0xa1, 0x45, 0x12, 0xf3, 0x04, 0xdf, 0xf3, 0xdd, 0x11, 0x17, 0x49, 0x1f, 0x03, 0x09, 0x12, 0xae, - 0xf2, 0x09, 0x81, 0x23, 0x19, 0xed, 0x22, 0x89, 0x40, 0xcf, 0xef, 0x92, 0x49, 0x04, 0xfa, 0x1e, - 0x9d, 0x2a, 0xb9, 0xb3, 0xcc, 0xfb, 0x03, 0x0d, 0xbf, 0xf1, 0x94, 0x10, 0xf1, 0x27, 0x04, 0x0e, - 0x26, 0x4b, 0xd7, 0x92, 0x49, 0x4c, 0x4a, 0x1f, 0x46, 0xe2, 0x7a, 0xc9, 0x6c, 0xa7, 0xb0, 0x59, - 0x21, 0xd0, 0x14, 0xad, 0xe4, 0x09, 0x94, 0x52, 0xb3, 0xa6, 0xbf, 0x22, 0x30, 0xbe, 0x1e, 0x56, - 0xc1, 0x1f, 0x09, 0x61, 0xa4, 0x9e, 0x94, 0xd1, 0xfe, 0x40, 0x5c, 0xa8, 0x0f, 0x09, 0x1c, 0x4a, - 0xe9, 0xe2, 0x48, 0xc4, 0x53, 0x76, 0x7f, 0x48, 0x22, 0x9e, 0x72, 0x1a, 0x47, 0x6c, 0x4e, 0xc8, - 0x34, 0x43, 0xa7, 0xa4, 0x0d, 0xe4, 0x37, 0x39, 0xe8, 0x43, 0x02, 0x63, 0xe9, 0xc5, 0x7b, 0x89, - 0xb4, 0x2d, 0xb7, 0x6d, 0x20, 0x91, 0xb6, 0xe5, 0x77, 0x0d, 0xd8, 0xcb, 0x42, 0xac, 0x05, 0x7a, - 0x35, 0x4f, 0xac, 0x8e, 0x5a, 0x7a, 0xb4, 0x8b, 0x50, 0xb9, 0x8f, 0xa3, 0x07, 0xc2, 0x64, 0x29, - 0xa5, 0x73, 0x09, 0x93, 0x65, 0x17, 0xfb, 0x25, 0x4c, 0x96, 0xd3, 0x05, 0x90, 0x33, 0x59, 0x6a, - 0x9f, 0x80, 0x7e, 0x44, 0xe0, 0x60, 0xa2, 0x72, 0x2b, 0x11, 0x4e, 0x59, 0xbd, 0x00, 0x89, 0x70, - 0xca, 0x2c, 0x14, 0xcb, 0x3d, 0x1e, 0x92, 0xa5, 0xe4, 0xca, 0xfd, 0x48, 0xf7, 0xe1, 0x01, 0xfd, - 0x23, 0x81, 0x23, 0x19, 0xb5, 0x4a, 0x89, 0x13, 0x3d, 0xbf, 0x90, 0x2c, 0x71, 0xa2, 0xef, 0x51, - 0x26, 0x95, 0x3b, 0x33, 0xfc, 0xbf, 0xaa, 0x4f, 0xa9, 0xa4, 0xd2, 0x3f, 0x11, 0x38, 0x9a, 0x59, - 0x8f, 0xa4, 0x0b, 0x45, 0x3c, 0x29, 0xb5, 0x5e, 0x5a, 0x5a, 0xfc, 0x2c, 0x10, 0x28, 0xe5, 0xf3, - 0x42, 0xca, 0x0b, 0x74, 0x46, 0xda, 0x25, 0x45, 0x4f, 0xcf, 0xcd, 0x84, 0xec, 0xc5, 0xfa, 0x07, - 0x0f, 0x27, 0xc8, 0x47, 0x0f, 0x27, 0xc8, 0x27, 0x0f, 0x27, 0xc8, 0x37, 0x3e, 0x9d, 0xd8, 0xf7, - 0xd1, 0xa7, 0x13, 0xfb, 0x7e, 0xf7, 0xe9, 0xc4, 0xbe, 0xdb, 0x37, 0x22, 0x15, 0xec, 0x15, 0x1f, - 0x78, 0x55, 0xdd, 0xb4, 0xc3, 0x6d, 0xce, 0xd7, 0xac, 0x16, 0x8f, 0x0e, 0xeb, 0xaa, 0x6e, 0x62, - 0xa6, 0x65, 0x87, 0x3c, 0x88, 0x6a, 0xf7, 0xe6, 0x80, 0xf8, 0x8f, 0x44, 0x33, 0xff, 0x0e, 0x00, - 0x00, 0xff, 0xff, 0x42, 0x9e, 0xc0, 0x26, 0x17, 0x35, 0x00, 0x00, + // 2931 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0xdb, 0x6f, 0x15, 0xd7, + 0xd5, 0x67, 0xfb, 0x16, 0x7b, 0x19, 0x07, 0xbc, 0x31, 0xc6, 0x1c, 0xc0, 0xc0, 0xce, 0x07, 0x71, + 0x2e, 0xf8, 0xc4, 0x26, 0x60, 0x4c, 0x08, 0x04, 0xc7, 0x38, 0x98, 0x60, 0x70, 0x06, 0x47, 0x5f, + 0x83, 0x2a, 0x9d, 0x8c, 0xcf, 0x6c, 0xfb, 0x4c, 0x98, 0x33, 0x73, 0x98, 0x99, 0xe3, 0x60, 0x51, + 0xa4, 0xaa, 0x2f, 0x7d, 0xe8, 0x43, 0x2a, 0xa5, 0xea, 0x63, 0xa5, 0xbe, 0xe6, 0xa5, 0x52, 0xfb, + 0x52, 0xf5, 0xa1, 0x95, 0x52, 0x35, 0x8a, 0x1a, 0xa9, 0x4d, 0x2f, 0xaa, 0xda, 0x4a, 0x4d, 0x23, + 0x52, 0xa9, 0x17, 0xf5, 0x0f, 0xe8, 0x63, 0x35, 0x7b, 0xd6, 0x5c, 0xce, 0xdc, 0xbc, 0xe7, 0x24, + 0x95, 0xa8, 0xd4, 0x27, 0xce, 0xde, 0xb3, 0xd7, 0x6f, 0xaf, 0xeb, 0xde, 0x6b, 0xaf, 0x65, 0xe0, + 0xa4, 0x6e, 0xbe, 0xc5, 0xeb, 0xae, 0xbe, 0xc5, 0xab, 0xfc, 0x5e, 0xbd, 0xa1, 0x9a, 0x9b, 0xbc, + 0xba, 0x35, 0xb3, 0xce, 0x5d, 0x75, 0xa6, 0x7a, 0xb7, 0xcd, 0xed, 0xed, 0xe9, 0x96, 0x6d, 0xb9, + 0x16, 0xad, 0x84, 0xeb, 0xa6, 0x83, 0x75, 0xd3, 0xb8, 0xae, 0x72, 0x78, 0xd3, 0xb2, 0x36, 0x0d, + 0x5e, 0x55, 0x5b, 0x7a, 0x55, 0x35, 0x4d, 0xcb, 0x55, 0x5d, 0xdd, 0x32, 0x1d, 0x9f, 0xb2, 0xf2, + 0x54, 0xc1, 0x0e, 0x21, 0x94, 0xbf, 0x74, 0xaa, 0x60, 0xe9, 0x26, 0x37, 0xb9, 0xa3, 0x07, 0xa0, + 0x63, 0x9b, 0xd6, 0xa6, 0x25, 0x7e, 0x56, 0xbd, 0x5f, 0xfe, 0x2c, 0xbb, 0x09, 0x70, 0xab, 0xbd, + 0xae, 0xd6, 0xeb, 0x56, 0xdb, 0x74, 0xe9, 0x38, 0x0c, 0xb8, 0xb6, 0xaa, 0x71, 0x7b, 0x82, 0x1c, + 0x23, 0x53, 0x43, 0x0a, 0x8e, 0xe8, 0x53, 0xb0, 0xd7, 0x09, 0x57, 0xd5, 0x4c, 0xcb, 0xac, 0xf3, + 0x89, 0x9e, 0x63, 0x64, 0x6a, 0x44, 0xd9, 0x13, 0xcd, 0xdf, 0xf0, 0xa6, 0xd9, 0xf7, 0x08, 0x9c, + 0x88, 0x10, 0x6f, 0xda, 0x1a, 0xb7, 0xd7, 0x2d, 0xeb, 0xce, 0x0a, 0x77, 0x55, 0x4d, 0x75, 0xd5, + 0xff, 0xd7, 0xdd, 0xc6, 0x8a, 0x6a, 0xdf, 0xe1, 0x2e, 0xbd, 0x05, 0x83, 0x4d, 0x9c, 0x15, 0xdb, + 0x0d, 0xcf, 0xce, 0x4d, 0xe7, 0xab, 0x6c, 0xba, 0x00, 0x54, 0x09, 0x81, 0xe8, 0x21, 0x18, 0x6a, + 0x0a, 0xf8, 0x9a, 0xae, 0x09, 0x16, 0x87, 0x94, 0x41, 0x7f, 0x62, 0x59, 0xa3, 0x63, 0xd0, 0xaf, + 0x3b, 0x0b, 0xed, 0xed, 0x89, 0xde, 0x63, 0x64, 0x6a, 0x50, 0xf1, 0x07, 0xec, 0x30, 0x54, 0x5e, + 0xf3, 0xcc, 0x76, 0x05, 0x77, 0x5c, 0x55, 0x6d, 0xb5, 0xe9, 0x28, 0xfc, 0x6e, 0x9b, 0x3b, 0x2e, + 0xab, 0xc1, 0xa1, 0xcc, 0xaf, 0x4e, 0xcb, 0x32, 0x1d, 0x4e, 0x5f, 0x82, 0x81, 0x96, 0x98, 0x41, + 0x11, 0x58, 0x91, 0x08, 0x3e, 0xed, 0x42, 0xdf, 0x87, 0x9f, 0x1c, 0xdd, 0xa5, 0x20, 0x1d, 0x7b, + 0x97, 0xc0, 0xa4, 0xd8, 0x21, 0x12, 0x70, 0x91, 0xb7, 0x2c, 0x47, 0x77, 0x03, 0x1e, 0xe8, 0x13, + 0x30, 0x12, 0x53, 0xbf, 0xae, 0xa1, 0x75, 0x76, 0x47, 0x93, 0xcb, 0x1a, 0xbd, 0x0e, 0x10, 0x8d, + 0x85, 0xe8, 0xc3, 0xb3, 0x27, 0xe5, 0x14, 0x2a, 0x38, 0x22, 0x4a, 0x8c, 0x9e, 0xfd, 0x83, 0xc0, + 0xd1, 0x5c, 0xae, 0x50, 0x76, 0x0e, 0x83, 0x1a, 0xce, 0x4d, 0x90, 0x63, 0xbd, 0x53, 0xc3, 0xb3, + 0xcb, 0x45, 0xfb, 0xed, 0x00, 0x37, 0x1d, 0x4c, 0x5c, 0x31, 0x5d, 0x7b, 0x5b, 0x09, 0xa1, 0x2b, + 0x6f, 0xc2, 0x48, 0xc7, 0x27, 0xba, 0x17, 0x7a, 0xef, 0xf0, 0x6d, 0x54, 0x82, 0xf7, 0x93, 0xce, + 0x43, 0xff, 0x96, 0x6a, 0xb4, 0x39, 0x8a, 0xfd, 0x44, 0x11, 0x1b, 0x88, 0xa5, 0xf8, 0x14, 0xe7, + 0x7b, 0xce, 0x11, 0x36, 0x09, 0x87, 0x3b, 0x6c, 0xbc, 0xa0, 0x1a, 0xaa, 0x59, 0xe7, 0xa1, 0x0f, + 0x6c, 0xc0, 0x91, 0x9c, 0xef, 0xa8, 0x89, 0x2b, 0x30, 0xb8, 0x8e, 0x73, 0xa8, 0x89, 0x42, 0x16, + 0x90, 0x1e, 0x1d, 0x21, 0x24, 0x65, 0xb7, 0x71, 0x9f, 0x94, 0x92, 0x4a, 0x39, 0xc2, 0x18, 0xf4, + 0x6b, 0xdc, 0xb4, 0x9a, 0xe8, 0xfe, 0xfe, 0x80, 0xa9, 0x79, 0x5e, 0x16, 0x0a, 0x71, 0xa9, 0xc3, + 0x9c, 0xd2, 0x7a, 0x0c, 0x89, 0xd8, 0x0c, 0x1c, 0xf0, 0xb7, 0x68, 0x59, 0xae, 0x1f, 0xe3, 0xa1, + 0x07, 0x8f, 0xc3, 0x80, 0xe3, 0xaa, 0x6e, 0xdb, 0x09, 0x0e, 0x16, 0x7f, 0xc4, 0xbe, 0x0c, 0x13, + 0x69, 0x92, 0x30, 0xb4, 0x1e, 0xf3, 0x23, 0x37, 0xd0, 0x69, 0xb1, 0x37, 0x87, 0x08, 0x4a, 0x40, + 0xc6, 0xce, 0xc0, 0x78, 0x02, 0x3d, 0xe0, 0xa7, 0xe3, 0x98, 0x20, 0x9d, 0xc7, 0x04, 0x7b, 0x23, + 0x25, 0x47, 0xc8, 0xd3, 0x45, 0x18, 0xf0, 0x97, 0xa1, 0x86, 0x64, 0x59, 0x42, 0x2a, 0x76, 0x03, + 0x0e, 0x86, 0xd0, 0xe1, 0x31, 0x26, 0xc3, 0x94, 0x67, 0x55, 0x43, 0x6f, 0xea, 0x7e, 0x64, 0xf7, + 0x29, 0xfe, 0x80, 0xbd, 0x4f, 0xf0, 0xf0, 0x4a, 0x00, 0x22, 0xbb, 0xab, 0xb0, 0x77, 0xbd, 0xbd, + 0xed, 0xd4, 0x5a, 0xb6, 0x5e, 0xe7, 0x35, 0x83, 0x6f, 0x71, 0x43, 0x46, 0x97, 0xab, 0xde, 0xf2, + 0xeb, 0xde, 0x6a, 0xe5, 0x71, 0x8f, 0x3e, 0x1a, 0x53, 0x05, 0x46, 0x1d, 0x6e, 0x18, 0x9d, 0x90, + 0x3d, 0xa5, 0x20, 0xf7, 0x08, 0x80, 0x68, 0x82, 0xbd, 0x89, 0xe1, 0xb7, 0x26, 0x2e, 0x9b, 0x50, + 0x12, 0x47, 0x4a, 0x2f, 0xa9, 0x90, 0xe8, 0x49, 0x87, 0x04, 0x7b, 0xaf, 0x07, 0xf6, 0xaf, 0xd9, + 0x7a, 0xb3, 0xc9, 0x35, 0x0f, 0xfe, 0xba, 0xa7, 0x3b, 0xb1, 0x07, 0x5d, 0x84, 0x7e, 0x21, 0x89, + 0x8f, 0xbb, 0x30, 0xed, 0x45, 0xe4, 0x1f, 0x3f, 0x39, 0x7a, 0x72, 0x53, 0x77, 0x1b, 0xed, 0xf5, + 0xe9, 0xba, 0xd5, 0xac, 0xd6, 0x2d, 0xa7, 0x69, 0x39, 0xf8, 0xcf, 0x29, 0x47, 0xbb, 0x53, 0x75, + 0xb7, 0x5b, 0xdc, 0x99, 0x5e, 0xe4, 0x75, 0xc5, 0x27, 0xa6, 0xd7, 0x60, 0xf0, 0x6e, 0x5b, 0x35, + 0x5d, 0xdd, 0xdd, 0xf6, 0xf7, 0x2f, 0x0d, 0x14, 0xd2, 0x7b, 0x58, 0x1b, 0xba, 0x61, 0xa8, 0xeb, + 0x06, 0x17, 0xf7, 0x54, 0x17, 0x58, 0x01, 0x7d, 0x74, 0xe1, 0xf5, 0xc5, 0x2e, 0x3c, 0x7a, 0x04, + 0xc0, 0xf2, 0x84, 0xaf, 0x35, 0x54, 0xa7, 0x31, 0xd1, 0x2f, 0xf4, 0x35, 0x24, 0x66, 0xae, 0xaa, + 0x4e, 0x83, 0xbd, 0x85, 0xa7, 0x50, 0xda, 0x1c, 0xe8, 0x55, 0xcb, 0x30, 0x20, 0x56, 0x07, 0x71, + 0x39, 0x53, 0x64, 0xf8, 0x4c, 0xb5, 0x2b, 0x08, 0xc0, 0xd6, 0xf0, 0x96, 0x59, 0xe4, 0xb6, 0xbe, + 0xa5, 0x7a, 0x08, 0x5f, 0x44, 0x54, 0x7c, 0x48, 0xe0, 0x58, 0x3e, 0xec, 0x7f, 0x55, 0x6c, 0x6c, + 0x00, 0x8b, 0x19, 0x23, 0x21, 0xcf, 0x17, 0x18, 0x21, 0xff, 0xea, 0x81, 0x43, 0x68, 0xaa, 0x68, + 0x93, 0x47, 0x3a, 0x4e, 0x96, 0xc4, 0x51, 0xbc, 0xa9, 0x9b, 0x5d, 0x46, 0x09, 0x52, 0x77, 0xc4, + 0x5b, 0xdf, 0x17, 0x15, 0x6f, 0xfd, 0xf9, 0xf1, 0x36, 0x90, 0x8c, 0xb7, 0x2d, 0x78, 0xa2, 0xd0, + 0xc4, 0xe8, 0xaf, 0x37, 0x13, 0x51, 0x37, 0x27, 0x11, 0x75, 0x59, 0xa6, 0x0c, 0x63, 0x6f, 0x0e, + 0xe3, 0x3c, 0x5a, 0x24, 0x79, 0x69, 0x7f, 0x87, 0x00, 0xc4, 0xdc, 0xfe, 0x91, 0x73, 0x0d, 0xf6, + 0x13, 0x02, 0x63, 0xab, 0xdc, 0x6e, 0x71, 0xb7, 0xad, 0x1a, 0xbe, 0x50, 0xb7, 0x5c, 0xd5, 0xf5, + 0x62, 0x7e, 0x38, 0x88, 0x13, 0x73, 0xc3, 0xc2, 0x3b, 0xbc, 0x5a, 0x18, 0x9b, 0x9d, 0x30, 0xcb, + 0xe6, 0x86, 0xa5, 0x40, 0x33, 0xfc, 0x4d, 0x5f, 0x87, 0xdd, 0x1b, 0x6d, 0x53, 0xd3, 0xcd, 0x4d, + 0x1f, 0xd2, 0x4f, 0x40, 0x67, 0x4b, 0x40, 0x2e, 0xf9, 0xe4, 0xca, 0x30, 0xe2, 0x78, 0xb0, 0xec, + 0x6f, 0x3d, 0x30, 0xb6, 0xd4, 0x36, 0x8c, 0xa4, 0x6d, 0xe8, 0x62, 0x22, 0x01, 0x79, 0xb6, 0x38, + 0x45, 0xeb, 0xa4, 0x0e, 0xd2, 0x10, 0xfa, 0x06, 0x3c, 0xde, 0x0a, 0xb8, 0x88, 0xf3, 0xfd, 0x5c, + 0x09, 0xbe, 0x85, 0x46, 0xaf, 0xee, 0x52, 0x46, 0x42, 0x24, 0xa1, 0x90, 0x2f, 0x79, 0x0a, 0x71, + 0xdb, 0x36, 0x77, 0x7c, 0xe0, 0x5e, 0x01, 0x7c, 0xba, 0x08, 0xf8, 0xca, 0xbd, 0x96, 0x6e, 0x6f, + 0x2f, 0xf9, 0x54, 0x91, 0x9e, 0xaf, 0xee, 0xf2, 0x74, 0x22, 0x26, 0x05, 0xf2, 0x0a, 0x08, 0xc5, + 0xfb, 0xa7, 0x6b, 0x97, 0xa1, 0x2a, 0x8e, 0x49, 0xe1, 0xbb, 0x0b, 0x03, 0xd0, 0xe7, 0x31, 0xc8, + 0x0c, 0x4c, 0x8c, 0x33, 0xc2, 0x00, 0x23, 0xef, 0x5a, 0x32, 0x11, 0x2d, 0x54, 0x53, 0x96, 0xd9, + 0xa2, 0x94, 0xf4, 0x05, 0xcc, 0x75, 0x52, 0x2b, 0x64, 0x12, 0x53, 0x3d, 0x27, 0x62, 0x43, 0x4e, + 0xaf, 0x26, 0xbc, 0xa3, 0x3c, 0xa3, 0x41, 0xa2, 0xba, 0x80, 0x87, 0x52, 0x72, 0xc1, 0x65, 0x4d, + 0xb3, 0xb9, 0x23, 0x75, 0xf1, 0x30, 0x0e, 0xff, 0x57, 0x8c, 0x81, 0x5c, 0x4f, 0xc0, 0x63, 0xaa, + 0x3f, 0x85, 0x10, 0xc1, 0x50, 0xee, 0xea, 0x7a, 0x05, 0x2f, 0xfb, 0xe8, 0x65, 0x23, 0x4e, 0x52, + 0x51, 0x8e, 0x28, 0xf3, 0x70, 0x62, 0x4b, 0xa9, 0x27, 0xef, 0xaa, 0xf7, 0xb0, 0xd1, 0x2d, 0xb3, + 0xd4, 0x4b, 0x9c, 0x5d, 0x43, 0xdd, 0x25, 0x2a, 0x16, 0x61, 0xb5, 0xa2, 0x0c, 0x96, 0x99, 0x12, + 0x2e, 0xc6, 0x53, 0xe8, 0x9f, 0xfd, 0xde, 0xc9, 0xcc, 0xd1, 0x3b, 0xa7, 0xe5, 0x8e, 0x84, 0x00, + 0x07, 0x5f, 0xa1, 0x3e, 0x04, 0xfb, 0x06, 0x41, 0xa3, 0xe5, 0x32, 0x8f, 0x9b, 0xd6, 0x3b, 0xaa, + 0x37, 0xde, 0xbe, 0x97, 0xbb, 0xac, 0xde, 0x44, 0x25, 0xa1, 0xe0, 0x41, 0x1c, 0x00, 0xb3, 0x79, + 0x38, 0x5e, 0x60, 0x5a, 0xe4, 0x64, 0x0c, 0xfa, 0xfd, 0x8a, 0x14, 0x11, 0x15, 0x29, 0x7f, 0xc0, + 0x0e, 0xe2, 0x23, 0x6e, 0xc5, 0xd2, 0xda, 0x06, 0x17, 0x87, 0x55, 0xf0, 0x9c, 0xbf, 0x8d, 0x8f, + 0xce, 0x8e, 0x4f, 0xe1, 0x03, 0x2f, 0xd4, 0xa5, 0x17, 0x40, 0x53, 0x45, 0x32, 0xbd, 0xe2, 0xd7, + 0xd7, 0x7c, 0x00, 0xd4, 0xdf, 0x01, 0xd8, 0x2f, 0xb0, 0x93, 0x9e, 0xc3, 0x34, 0x7c, 0x8b, 0xfe, + 0x67, 0xcd, 0x77, 0x37, 0x9e, 0xbb, 0x2b, 0xfc, 0x6d, 0xd5, 0xd6, 0x56, 0x2d, 0xdd, 0x8c, 0xee, + 0xf4, 0x0a, 0x0c, 0xa2, 0x26, 0xfd, 0xc3, 0x6c, 0x48, 0x09, 0xc7, 0xf4, 0x79, 0x18, 0x6f, 0x71, + 0xff, 0x2e, 0x6b, 0x59, 0x96, 0x51, 0x73, 0xf5, 0x26, 0x77, 0x5c, 0xb5, 0xd9, 0x12, 0x61, 0xd7, + 0xab, 0x8c, 0xe1, 0xd7, 0x55, 0xcb, 0x32, 0xd6, 0x82, 0x6f, 0xec, 0x9d, 0xa0, 0x7e, 0x95, 0xb1, + 0x27, 0x4a, 0xd8, 0x84, 0x43, 0x81, 0x9b, 0x8b, 0x82, 0x62, 0xcd, 0x16, 0xab, 0x6a, 0x2d, 0xb1, + 0xcc, 0xe7, 0xa3, 0xf4, 0x51, 0x3e, 0x11, 0xf7, 0x88, 0xf8, 0xb6, 0xec, 0x38, 0xc6, 0x71, 0xec, + 0xcb, 0xcb, 0x6a, 0xb3, 0xa5, 0xea, 0x9b, 0x66, 0x60, 0x8d, 0x6f, 0xf5, 0x63, 0x5c, 0x65, 0xae, + 0x41, 0xb6, 0xb7, 0xe0, 0xb0, 0xc7, 0xae, 0xa7, 0x0f, 0x64, 0xb8, 0x8e, 0x4b, 0xe2, 0xe9, 0xc3, + 0x99, 0xe2, 0x3c, 0x4c, 0xd0, 0x77, 0x6e, 0x20, 0x92, 0x88, 0x83, 0x6e, 0xde, 0x27, 0xfa, 0x55, + 0x02, 0x27, 0x12, 0x1b, 0x0b, 0x7b, 0x84, 0xbb, 0x3b, 0xf5, 0x06, 0xf7, 0x5c, 0x17, 0x1f, 0x17, + 0x85, 0x1e, 0x13, 0x49, 0xe5, 0x6b, 0xc8, 0x32, 0x94, 0xe3, 0x1d, 0x5b, 0x7b, 0x53, 0xc1, 0xa2, + 0x5b, 0x08, 0x4c, 0x75, 0x38, 0xe8, 0x5a, 0xae, 0x6a, 0x64, 0xda, 0xab, 0xbb, 0x7c, 0x7b, 0x5c, + 0x00, 0xa6, 0xac, 0x45, 0xdf, 0x21, 0x70, 0x2a, 0x70, 0x3b, 0x39, 0xa9, 0xfb, 0xba, 0x92, 0x7a, + 0x0a, 0x37, 0x59, 0xdb, 0x51, 0xf8, 0x7b, 0x70, 0x3c, 0x64, 0x28, 0x57, 0x09, 0xfd, 0x5d, 0x39, + 0xed, 0x91, 0x80, 0x89, 0x4c, 0x5d, 0xb0, 0x39, 0x2c, 0x36, 0x2f, 0x3b, 0x0a, 0xdf, 0xd4, 0x1d, + 0x97, 0xdb, 0x5c, 0x5b, 0x5c, 0x59, 0x09, 0x82, 0xd7, 0xbb, 0x28, 0xb1, 0xbe, 0x1b, 0x5c, 0x94, + 0x58, 0xae, 0xbd, 0x86, 0x69, 0x45, 0x8a, 0x10, 0x5d, 0xf9, 0x69, 0x18, 0xd5, 0x9d, 0x9a, 0x1d, + 0x7e, 0xab, 0x69, 0xcd, 0xa6, 0xc0, 0x18, 0x54, 0xf6, 0xe8, 0x71, 0x9a, 0x66, 0x93, 0x5d, 0xc4, + 0x27, 0xe7, 0x12, 0xe7, 0x8b, 0xba, 0x23, 0xf0, 0x2f, 0xe3, 0x7d, 0xe4, 0x39, 0xee, 0x8e, 0xbc, + 0xfc, 0x9d, 0xe0, 0xfd, 0x97, 0x07, 0x80, 0x3c, 0x1d, 0x01, 0x70, 0x75, 0x6e, 0x87, 0x4f, 0x6f, + 0xef, 0x01, 0x3f, 0xe4, 0xcd, 0x04, 0xaf, 0xe9, 0xdd, 0xe1, 0xdd, 0x18, 0x65, 0xa8, 0x85, 0xc9, + 0x7a, 0x6c, 0xc3, 0x35, 0x9d, 0xdb, 0x62, 0xb7, 0x61, 0x35, 0xda, 0x9a, 0xde, 0x84, 0xe1, 0xf0, + 0x20, 0x72, 0x0d, 0xcc, 0x4d, 0xa7, 0x4b, 0x40, 0xae, 0xad, 0x5d, 0x57, 0x20, 0x38, 0x78, 0x5c, + 0x23, 0x3c, 0x6a, 0x62, 0xcb, 0x02, 0x37, 0x0a, 0x8e, 0x9a, 0xaf, 0x07, 0xc5, 0x88, 0xcc, 0x35, + 0xe1, 0x6d, 0xba, 0x7f, 0x83, 0xf3, 0x9a, 0x86, 0xdf, 0x23, 0x5f, 0x27, 0xa5, 0xa4, 0x0e, 0x71, + 0xf7, 0x6d, 0xa4, 0x27, 0xd9, 0x4b, 0x78, 0x39, 0x60, 0xf9, 0x79, 0x45, 0x77, 0x9a, 0xaa, 0x5b, + 0x6f, 0x84, 0x75, 0x6e, 0x7a, 0x14, 0x86, 0xb5, 0xb6, 0xe3, 0xd6, 0x36, 0xd4, 0xba, 0x6b, 0xf9, + 0x3d, 0xa0, 0x5e, 0x05, 0xbc, 0xa9, 0x25, 0x31, 0xc3, 0xfe, 0xd0, 0x0b, 0x7b, 0x12, 0xd4, 0x94, + 0x41, 0x47, 0xc6, 0x22, 0x5f, 0x92, 0xa6, 0xd7, 0x61, 0x48, 0xdd, 0x52, 0xf5, 0xcf, 0x53, 0xea, + 0x8a, 0x00, 0xbc, 0x67, 0xa8, 0x88, 0xd6, 0x2e, 0x5f, 0x06, 0x3e, 0x31, 0x7d, 0x0d, 0x76, 0x63, + 0x39, 0xbe, 0xd6, 0xb0, 0x0c, 0xcd, 0xaf, 0x8e, 0x95, 0x06, 0x1b, 0x46, 0x8c, 0xab, 0x96, 0xa1, + 0xd1, 0xd7, 0xe1, 0x71, 0x7e, 0xaf, 0xc5, 0xeb, 0x2e, 0xd7, 0xfc, 0xf3, 0xc4, 0x2f, 0x01, 0x94, + 0x06, 0x1d, 0x09, 0x50, 0xc4, 0xe1, 0x41, 0x6f, 0x00, 0x68, 0xfa, 0xc6, 0x06, 0xb7, 0xb9, 0x97, + 0xfb, 0x3c, 0xd6, 0x15, 0x64, 0x0c, 0x81, 0x7d, 0x05, 0xaf, 0xf1, 0x0c, 0xef, 0x40, 0x27, 0xbd, + 0x0d, 0x34, 0xd0, 0x4d, 0x33, 0xfc, 0x8a, 0x59, 0xcb, 0x33, 0x12, 0xfd, 0x8e, 0x00, 0x52, 0x19, + 0x5d, 0x4f, 0xee, 0xc1, 0x4e, 0xe0, 0x99, 0x81, 0x4b, 0xbd, 0x9c, 0x70, 0x21, 0xd2, 0x61, 0x98, + 0x45, 0xfd, 0xb0, 0x07, 0xf6, 0xc7, 0x96, 0xac, 0x88, 0x12, 0x8e, 0xd0, 0xf2, 0xff, 0xdc, 0xb0, + 0xd8, 0x0d, 0xd9, 0xb7, 0x83, 0xcc, 0x3e, 0x57, 0xc5, 0x68, 0x66, 0x13, 0x2a, 0xc1, 0xde, 0x6f, + 0xeb, 0x6e, 0xa3, 0x16, 0x67, 0x44, 0xaa, 0xe4, 0x9b, 0x69, 0x20, 0xe5, 0xc0, 0x7a, 0xf6, 0xbe, + 0xec, 0x49, 0x38, 0x91, 0x3c, 0x1f, 0xbd, 0xa3, 0xd6, 0x4b, 0xab, 0x75, 0xc7, 0xd5, 0xeb, 0xa1, + 0xf1, 0xe7, 0x61, 0xa4, 0xe3, 0x03, 0xa5, 0xd0, 0xe7, 0xdd, 0x17, 0x78, 0x77, 0x88, 0xdf, 0x9e, + 0x8d, 0xa3, 0x0e, 0x68, 0x9f, 0xe2, 0x0f, 0x98, 0x03, 0x27, 0x77, 0xda, 0x23, 0x2c, 0x6e, 0x83, + 0x13, 0xce, 0xa2, 0xb4, 0x4f, 0x15, 0xa6, 0x78, 0x71, 0x1c, 0x25, 0x46, 0x3c, 0xfb, 0xc1, 0x33, + 0xd0, 0x2f, 0x76, 0xa5, 0x3f, 0x22, 0xb0, 0x2f, 0xa3, 0x8b, 0x4c, 0xcf, 0xee, 0xd8, 0x2f, 0xcd, + 0x6c, 0x4a, 0x57, 0xe6, 0x4a, 0xd3, 0xf9, 0xd2, 0xb1, 0xd9, 0xaf, 0xfd, 0xe6, 0x2f, 0xef, 0xf6, + 0x3c, 0x4b, 0x9f, 0xae, 0x4a, 0xfc, 0x89, 0x01, 0x32, 0xf9, 0x0b, 0x02, 0x34, 0xdd, 0xb6, 0xa5, + 0xe7, 0xbb, 0xea, 0xf5, 0xfa, 0xfc, 0xbf, 0xf0, 0x39, 0xfa, 0xc4, 0xec, 0x92, 0x90, 0x61, 0x9e, + 0xce, 0xc9, 0xc8, 0x50, 0x75, 0xd2, 0x9c, 0xff, 0x9c, 0xc0, 0x68, 0x0a, 0x9f, 0xce, 0x97, 0xe7, + 0x29, 0x10, 0xe7, 0x7c, 0x37, 0xa4, 0x28, 0xcd, 0x45, 0x21, 0xcd, 0x39, 0x7a, 0xb6, 0x3b, 0x69, + 0xe8, 0x07, 0x04, 0xf6, 0x26, 0xfb, 0xd2, 0xf4, 0x9c, 0xb4, 0x7f, 0x24, 0x5a, 0xdd, 0x95, 0xf9, + 0x2e, 0x28, 0x51, 0x92, 0x17, 0x85, 0x24, 0x73, 0xf4, 0x8c, 0x94, 0x24, 0x3c, 0xc9, 0xf3, 0x7b, + 0x04, 0x86, 0x63, 0x6d, 0x60, 0x7a, 0x7a, 0x67, 0xa5, 0xa6, 0xfa, 0xcc, 0x95, 0xe7, 0xcb, 0x11, + 0x21, 0xe7, 0xcf, 0x09, 0xce, 0x9f, 0xa6, 0x53, 0x45, 0x9c, 0x3b, 0x2d, 0xcb, 0xad, 0x62, 0x19, + 0x8f, 0xfe, 0x80, 0x00, 0x44, 0x48, 0x74, 0xb6, 0xc4, 0xb6, 0x01, 0xab, 0xa7, 0x4b, 0xd1, 0x20, + 0xa7, 0x17, 0x04, 0xa7, 0x67, 0xe9, 0xf3, 0xb2, 0x9c, 0x56, 0xef, 0x87, 0xf5, 0xb9, 0x07, 0xf4, + 0xc7, 0x04, 0x46, 0x3a, 0x1a, 0xc5, 0xf4, 0x8c, 0x14, 0x13, 0xc9, 0x9e, 0x5c, 0xe5, 0x6c, 0x59, + 0xb2, 0x32, 0xce, 0x2e, 0xd8, 0xb7, 0x02, 0xda, 0x0e, 0x01, 0x7e, 0x4b, 0x60, 0x6f, 0xb2, 0x2d, + 0x29, 0xe1, 0xec, 0x39, 0x8d, 0x65, 0x09, 0x67, 0xcf, 0xeb, 0x81, 0xb2, 0x57, 0x85, 0x24, 0x57, + 0xe8, 0xcb, 0x72, 0x92, 0x74, 0xd8, 0xa1, 0x7a, 0xbf, 0xa3, 0xee, 0xf7, 0x80, 0xfe, 0x8e, 0xc0, + 0xbe, 0x8c, 0x56, 0x25, 0xdd, 0xf9, 0x98, 0xcc, 0xef, 0x9b, 0x56, 0x2e, 0x74, 0x47, 0x8c, 0xf2, + 0x2d, 0x0a, 0xf9, 0x2e, 0xd2, 0x0b, 0x45, 0xf2, 0x69, 0x21, 0x40, 0x8e, 0xbd, 0xfe, 0x49, 0x60, + 0x3c, 0xbb, 0xad, 0x45, 0x2f, 0x4a, 0xea, 0x3e, 0xa7, 0xe5, 0x59, 0xb9, 0xd4, 0x35, 0x3d, 0x4a, + 0xf8, 0x9a, 0x90, 0xf0, 0x55, 0xba, 0x5c, 0x46, 0xc2, 0x62, 0x3b, 0xbe, 0x4f, 0x60, 0x34, 0xd5, + 0x46, 0x90, 0xb8, 0x58, 0xf2, 0x3a, 0x70, 0x12, 0x17, 0x4b, 0x6e, 0xd7, 0x82, 0x9d, 0x15, 0xf2, + 0x3d, 0x47, 0xa7, 0x25, 0xe5, 0x0b, 0x8e, 0xb6, 0x8f, 0x08, 0xec, 0x4d, 0xb5, 0x9d, 0xce, 0x95, + 0x66, 0x44, 0x3e, 0xc6, 0xf2, 0xba, 0x19, 0x6c, 0x41, 0x48, 0x70, 0x81, 0x9e, 0x2f, 0x27, 0x41, + 0x87, 0x07, 0xfe, 0x95, 0xc0, 0x81, 0x9c, 0xfe, 0x03, 0xbd, 0x54, 0x9a, 0xb5, 0xce, 0xee, 0x47, + 0xe5, 0xa5, 0xee, 0x01, 0x50, 0xc4, 0x65, 0x21, 0xe2, 0xcb, 0xf4, 0x72, 0x29, 0x11, 0x6b, 0xd8, + 0x1f, 0xe9, 0x90, 0xf4, 0x57, 0x04, 0xc6, 0xb2, 0xea, 0xe4, 0xf4, 0x42, 0x89, 0xec, 0x24, 0xd5, + 0x39, 0xa9, 0xbc, 0xd8, 0x25, 0x75, 0x99, 0x0b, 0x2b, 0x9c, 0x48, 0x06, 0xd4, 0xf7, 0x09, 0xec, + 0x0b, 0xf2, 0x8d, 0x58, 0xb5, 0x5e, 0x22, 0x37, 0x48, 0x97, 0xfd, 0x25, 0x72, 0x83, 0x8c, 0x86, + 0x80, 0x5c, 0x6e, 0xd0, 0x14, 0x84, 0x35, 0x51, 0x83, 0xa7, 0xdf, 0x25, 0x30, 0x14, 0x56, 0xf9, + 0xe9, 0xcc, 0x8e, 0xbb, 0x26, 0x5b, 0x05, 0x95, 0xd9, 0x32, 0x24, 0xc8, 0xe6, 0x29, 0xc1, 0xe6, + 0x93, 0xf4, 0x44, 0x11, 0x9b, 0xad, 0x90, 0xab, 0x5f, 0x12, 0xd8, 0x97, 0xd1, 0x52, 0xa2, 0x65, + 0x12, 0xf3, 0x14, 0xdf, 0x17, 0xba, 0x23, 0x2e, 0x93, 0x3e, 0x86, 0x12, 0xa4, 0x5c, 0xe5, 0x53, + 0x02, 0x07, 0x72, 0x7a, 0x56, 0x12, 0x81, 0x5e, 0xdc, 0xaa, 0x93, 0x08, 0xf4, 0x1d, 0xda, 0x65, + 0x72, 0x67, 0x99, 0xff, 0x57, 0x22, 0x41, 0xf7, 0x2b, 0x25, 0xe2, 0x4f, 0x09, 0x8c, 0xa6, 0xeb, + 0xe7, 0x92, 0x49, 0x4c, 0x46, 0x33, 0x48, 0xe2, 0x7a, 0xc9, 0xed, 0xe9, 0xb0, 0x39, 0x21, 0xd0, + 0x0c, 0xad, 0x16, 0x09, 0x94, 0x51, 0x38, 0xa7, 0xbf, 0x26, 0x30, 0xb1, 0x1a, 0x95, 0xe2, 0x1f, + 0x09, 0x61, 0xa4, 0x9e, 0x94, 0xf1, 0x26, 0x45, 0x52, 0xa8, 0x8f, 0x08, 0xec, 0xcb, 0x68, 0x25, + 0x49, 0xc4, 0x53, 0x7e, 0x93, 0x4a, 0x22, 0x9e, 0x0a, 0xba, 0x57, 0x6c, 0x5e, 0xc8, 0x74, 0x9a, + 0xce, 0x48, 0x1b, 0x28, 0xe8, 0xb4, 0xd0, 0x87, 0x04, 0xc6, 0xb3, 0x8b, 0xf7, 0x12, 0x69, 0x5b, + 0x61, 0xdb, 0x40, 0x22, 0x6d, 0x2b, 0xee, 0x1a, 0xb0, 0x57, 0x84, 0x58, 0x97, 0xe9, 0xa5, 0x22, + 0xb1, 0x3a, 0x6a, 0xe9, 0xf1, 0x2e, 0x42, 0xf5, 0x3e, 0x8e, 0x1e, 0x08, 0x93, 0x65, 0x94, 0xce, + 0x25, 0x4c, 0x96, 0x5f, 0xec, 0x97, 0x30, 0x59, 0x41, 0x17, 0x40, 0xce, 0x64, 0x99, 0x7d, 0x02, + 0xfa, 0x31, 0x81, 0xd1, 0x54, 0xe5, 0x56, 0x22, 0x9c, 0xf2, 0x7a, 0x01, 0x12, 0xe1, 0x94, 0x5b, + 0x28, 0x96, 0x7b, 0x3c, 0xa4, 0x4b, 0xc9, 0xd5, 0xfb, 0xb1, 0xee, 0xc3, 0x03, 0xfa, 0x27, 0x02, + 0x07, 0x72, 0x6a, 0x95, 0x12, 0x27, 0x7a, 0x71, 0x21, 0x59, 0xe2, 0x44, 0xdf, 0xa1, 0x4c, 0x2a, + 0x77, 0x66, 0x04, 0x7f, 0xda, 0x9f, 0x51, 0x49, 0xa5, 0x7f, 0x26, 0x70, 0x30, 0xb7, 0x1e, 0x49, + 0x2f, 0x97, 0xf1, 0xa4, 0xcc, 0x7a, 0x69, 0x65, 0xe1, 0xf3, 0x40, 0xa0, 0x94, 0x2f, 0x08, 0x29, + 0xcf, 0xd0, 0xd3, 0xd2, 0x2e, 0x29, 0x7a, 0x7a, 0x5e, 0x26, 0xe4, 0xd0, 0x9f, 0x11, 0xd8, 0x93, + 0xe8, 0x48, 0xd2, 0x9d, 0x4b, 0x97, 0xd9, 0xcd, 0xcf, 0xca, 0xb9, 0xf2, 0x84, 0x65, 0x2c, 0x95, + 0x6a, 0x8f, 0x46, 0x47, 0xc5, 0x42, 0xe3, 0xc3, 0x87, 0x93, 0xe4, 0xe3, 0x87, 0x93, 0xe4, 0xd3, + 0x87, 0x93, 0xe4, 0x9b, 0x9f, 0x4d, 0xee, 0xfa, 0xf8, 0xb3, 0xc9, 0x5d, 0xbf, 0xff, 0x6c, 0x72, + 0xd7, 0xed, 0x1b, 0xb1, 0x4a, 0xfc, 0x72, 0x00, 0x7e, 0x5d, 0x5d, 0x77, 0xa2, 0xad, 0x4e, 0xd5, + 0x2d, 0x9b, 0xc7, 0x87, 0x0d, 0x55, 0x37, 0x31, 0x63, 0x74, 0x22, 0x3e, 0x44, 0xd5, 0x7e, 0x7d, + 0x40, 0xfc, 0xaf, 0xac, 0xd3, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x78, 0xb1, 0x42, 0x64, + 0x36, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3234,6 +3331,8 @@ type QueryClient interface { BalanceWithBalanceHolds(ctx context.Context, in *QueryBalanceWithBalanceHoldsRequest, opts ...grpc.CallOption) (*QueryBalanceWithBalanceHoldsResponse, error) // Retrieves fee discount tier stats FeeDiscountTierStatistics(ctx context.Context, in *QueryFeeDiscountTierStatisticsRequest, opts ...grpc.CallOption) (*QueryFeeDiscountTierStatisticsResponse, error) + // Retrieves if the account is a registered DMM + IsRegisteredDMM(ctx context.Context, in *QueryIsRegisteredDMMRequest, opts ...grpc.CallOption) (*QueryIsRegisteredDMMResponse, error) } type queryClient struct { @@ -3478,6 +3577,15 @@ func (c *queryClient) FeeDiscountTierStatistics(ctx context.Context, in *QueryFe return out, nil } +func (c *queryClient) IsRegisteredDMM(ctx context.Context, in *QueryIsRegisteredDMMRequest, opts ...grpc.CallOption) (*QueryIsRegisteredDMMResponse, error) { + out := new(QueryIsRegisteredDMMResponse) + err := c.cc.Invoke(ctx, "/injective.exchange.v1beta1.Query/IsRegisteredDMM", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // QueryServer is the server API for Query service. type QueryServer interface { // Retrieves exchange params @@ -3532,6 +3640,8 @@ type QueryServer interface { BalanceWithBalanceHolds(context.Context, *QueryBalanceWithBalanceHoldsRequest) (*QueryBalanceWithBalanceHoldsResponse, error) // Retrieves fee discount tier stats FeeDiscountTierStatistics(context.Context, *QueryFeeDiscountTierStatisticsRequest) (*QueryFeeDiscountTierStatisticsResponse, error) + // Retrieves if the account is a registered DMM + IsRegisteredDMM(context.Context, *QueryIsRegisteredDMMRequest) (*QueryIsRegisteredDMMResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. @@ -3616,6 +3726,9 @@ func (*UnimplementedQueryServer) BalanceWithBalanceHolds(ctx context.Context, re func (*UnimplementedQueryServer) FeeDiscountTierStatistics(ctx context.Context, req *QueryFeeDiscountTierStatisticsRequest) (*QueryFeeDiscountTierStatisticsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method FeeDiscountTierStatistics not implemented") } +func (*UnimplementedQueryServer) IsRegisteredDMM(ctx context.Context, req *QueryIsRegisteredDMMRequest) (*QueryIsRegisteredDMMResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method IsRegisteredDMM not implemented") +} func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) @@ -4089,6 +4202,24 @@ func _Query_FeeDiscountTierStatistics_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _Query_IsRegisteredDMM_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryIsRegisteredDMMRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).IsRegisteredDMM(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/injective.exchange.v1beta1.Query/IsRegisteredDMM", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).IsRegisteredDMM(ctx, req.(*QueryIsRegisteredDMMRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Query_serviceDesc = grpc.ServiceDesc{ ServiceName: "injective.exchange.v1beta1.Query", HandlerType: (*QueryServer)(nil), @@ -4197,6 +4328,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "FeeDiscountTierStatistics", Handler: _Query_FeeDiscountTierStatistics_Handler, }, + { + MethodName: "IsRegisteredDMM", + Handler: _Query_IsRegisteredDMM_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "injective/exchange/v1beta1/query.proto", @@ -6049,6 +6184,69 @@ func (m *QueryTradeRewardCampaignResponse) MarshalToSizedBuffer(dAtA []byte) (in return len(dAtA) - i, nil } +func (m *QueryIsRegisteredDMMRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryIsRegisteredDMMRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryIsRegisteredDMMRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Account) > 0 { + i -= len(m.Account) + copy(dAtA[i:], m.Account) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Account))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *QueryIsRegisteredDMMResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryIsRegisteredDMMResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryIsRegisteredDMMResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.IsRegisteredDmm { + i-- + if m.IsRegisteredDmm { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *QueryFeeDiscountAccountInfoRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -7317,6 +7515,31 @@ func (m *QueryTradeRewardCampaignResponse) Size() (n int) { return n } +func (m *QueryIsRegisteredDMMRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Account) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryIsRegisteredDMMResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.IsRegisteredDmm { + n += 2 + } + return n +} + func (m *QueryFeeDiscountAccountInfoRequest) Size() (n int) { if m == nil { return 0 @@ -12305,6 +12528,158 @@ func (m *QueryTradeRewardCampaignResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryIsRegisteredDMMRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryIsRegisteredDMMRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryIsRegisteredDMMRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Account", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + 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 ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Account = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryIsRegisteredDMMResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryIsRegisteredDMMResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryIsRegisteredDMMResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsRegisteredDmm", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsRegisteredDmm = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *QueryFeeDiscountAccountInfoRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 From e13b3b6ab1b5dd36c6203d183e65edfa9fa9eb83 Mon Sep 17 00:00:00 2001 From: Markus Waas Date: Tue, 5 Apr 2022 21:40:09 +1300 Subject: [PATCH 3/3] chore: update with latest changes from DMM registration --- chain/exchange/types/codec.go | 1 + chain/exchange/types/exchange.go | 20 +-- chain/exchange/types/genesis.pb.go | 238 ++++++++++++++++++----------- 3 files changed, 151 insertions(+), 108 deletions(-) diff --git a/chain/exchange/types/codec.go b/chain/exchange/types/codec.go index 9734697c..489dd72a 100644 --- a/chain/exchange/types/codec.go +++ b/chain/exchange/types/codec.go @@ -69,6 +69,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { &MsgIncreasePositionMargin{}, &MsgLiquidatePosition{}, &MsgBatchUpdateOrders{}, + &MsgRegisterAsDMM{}, ) registry.RegisterImplementations( diff --git a/chain/exchange/types/exchange.go b/chain/exchange/types/exchange.go index e047dade..69dfb5f1 100644 --- a/chain/exchange/types/exchange.go +++ b/chain/exchange/types/exchange.go @@ -61,28 +61,10 @@ type TradingRewardAccountPoints struct { Points sdk.Dec } -func (p *PointsMultiplier) GetEffectiveMultiplier(e ExecutionType, isRegisteredDMMCache map[string]bool, account sdk.AccAddress) sdk.Dec { - if isRegisteredDMMCache[account.String()] { - return sdk.ZeroDec() - } - +func (p *PointsMultiplier) GetMultiplier(e ExecutionType) sdk.Dec { if e.IsMaker() { return p.MakerPointsMultiplier } return p.TakerPointsMultiplier } - -func (p *PointsMultiplier) GetEffectiveMultipliers(isRegisteredDMMCache map[string]bool, account sdk.AccAddress) PointsMultiplier { - if isRegisteredDMMCache[account.String()] { - return PointsMultiplier{ - MakerPointsMultiplier: sdk.ZeroDec(), - TakerPointsMultiplier: sdk.ZeroDec(), - } - } - - return PointsMultiplier{ - MakerPointsMultiplier: p.MakerPointsMultiplier, - TakerPointsMultiplier: p.TakerPointsMultiplier, - } -} diff --git a/chain/exchange/types/genesis.pb.go b/chain/exchange/types/genesis.pb.go index 0e5587cb..7e938a14 100644 --- a/chain/exchange/types/genesis.pb.go +++ b/chain/exchange/types/genesis.pb.go @@ -72,6 +72,8 @@ type GenesisState struct { PendingTradingRewardPoolCampaignSchedule []*CampaignRewardPool `protobuf:"bytes,22,rep,name=pending_trading_reward_pool_campaign_schedule,json=pendingTradingRewardPoolCampaignSchedule,proto3" json:"pending_trading_reward_pool_campaign_schedule,omitempty"` // the pending trading reward account points PendingTradingRewardCampaignAccountPoints []*TradingRewardCampaignAccountPendingPoints `protobuf:"bytes,23,rep,name=pending_trading_reward_campaign_account_points,json=pendingTradingRewardCampaignAccountPoints,proto3" json:"pending_trading_reward_campaign_account_points,omitempty"` + // the registered dmm accounts + RegisteredDmms []string `protobuf:"bytes,24,rep,name=registered_dmms,json=registeredDmms,proto3" json:"registered_dmms,omitempty"` } func (m *GenesisState) Reset() { *m = GenesisState{} } @@ -268,6 +270,13 @@ func (m *GenesisState) GetPendingTradingRewardCampaignAccountPoints() []*Trading return nil } +func (m *GenesisState) GetRegisteredDmms() []string { + if m != nil { + return m.RegisteredDmms + } + return nil +} + type FeeDiscountAccountTierTTL struct { Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"` TierTtl *FeeDiscountTierTTL `protobuf:"bytes,2,opt,name=tier_ttl,json=tierTtl,proto3" json:"tier_ttl,omitempty"` @@ -839,95 +848,97 @@ func init() { } var fileDescriptor_c47ec6b98758ed05 = []byte{ - // 1401 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcd, 0x6f, 0x1b, 0x45, - 0x14, 0xcf, 0xa4, 0x6d, 0x62, 0xbf, 0x24, 0x0d, 0x9d, 0x24, 0xed, 0xb6, 0x09, 0x4e, 0xea, 0x42, - 0x94, 0x00, 0xb5, 0xfb, 0x41, 0x55, 0x54, 0x51, 0x28, 0x6e, 0x62, 0x88, 0x08, 0x25, 0xda, 0x58, - 0x20, 0xc1, 0x61, 0xb5, 0xde, 0x1d, 0xdb, 0x43, 0xec, 0x9d, 0xd5, 0xce, 0x38, 0x6d, 0x6e, 0x15, - 0x87, 0xaa, 0xb7, 0x16, 0x24, 0x24, 0x8e, 0x15, 0xe2, 0xc0, 0x89, 0x03, 0x7f, 0x45, 0x2f, 0x48, - 0xe5, 0x86, 0x38, 0x54, 0xa8, 0xb9, 0xf0, 0x67, 0xa0, 0x9d, 0x9d, 0xfd, 0xf0, 0xd7, 0xda, 0x09, - 0x9c, 0x62, 0xcf, 0xbc, 0xf7, 0xfb, 0xfd, 0xe6, 0xcd, 0x7b, 0x93, 0xf7, 0x0c, 0x6b, 0xd4, 0xf9, - 0x86, 0x58, 0x82, 0xee, 0x93, 0x22, 0x79, 0x60, 0x35, 0x4c, 0xa7, 0x4e, 0x8a, 0xfb, 0x57, 0xab, - 0x44, 0x98, 0x57, 0x8b, 0x75, 0xe2, 0x10, 0x4e, 0x79, 0xc1, 0xf5, 0x98, 0x60, 0xf8, 0x42, 0x64, - 0x59, 0x08, 0x2d, 0x0b, 0xca, 0xf2, 0xc2, 0x7a, 0x0a, 0x4a, 0x64, 0x2c, 0x61, 0x2e, 0xcc, 0xd7, - 0x59, 0x9d, 0xc9, 0x8f, 0x45, 0xff, 0x53, 0xb0, 0x9a, 0xff, 0x7d, 0x0e, 0xa6, 0x3f, 0x0e, 0xe8, - 0x76, 0x85, 0x29, 0x08, 0xbe, 0x03, 0x13, 0xae, 0xe9, 0x99, 0x2d, 0xae, 0xa1, 0x15, 0xb4, 0x36, - 0x75, 0x2d, 0x5f, 0x18, 0x4c, 0x5f, 0xd8, 0x91, 0x96, 0xa5, 0x93, 0xcf, 0x5f, 0x2e, 0x8f, 0xe9, - 0xca, 0x0f, 0x6f, 0xc1, 0x34, 0x77, 0x99, 0x30, 0x5a, 0xa6, 0xb7, 0x47, 0x04, 0xd7, 0xc6, 0x57, - 0x4e, 0xac, 0x4d, 0x5d, 0x5b, 0x4d, 0xc3, 0xd9, 0x75, 0x99, 0xf8, 0x4c, 0x9a, 0xeb, 0x53, 0x3c, - 0xfa, 0xcc, 0xf1, 0xd7, 0x80, 0x6d, 0xe2, 0xd1, 0x7d, 0xd3, 0x77, 0x8b, 0x00, 0x4f, 0x48, 0xc0, - 0x77, 0xd2, 0x00, 0x37, 0x22, 0x2f, 0x05, 0x7b, 0xc6, 0xee, 0x5a, 0xe1, 0xf8, 0x0b, 0x38, 0x2d, - 0x75, 0x32, 0xcf, 0x26, 0x5e, 0x95, 0xb1, 0x3d, 0xed, 0xa4, 0x04, 0x5e, 0x1f, 0xa6, 0xf4, 0x73, - 0xdf, 0xa1, 0xc4, 0xd8, 0x9e, 0x3a, 0xf8, 0x0c, 0x0f, 0x17, 0x7d, 0x14, 0xdc, 0x80, 0xf9, 0x84, - 0xe8, 0x18, 0xfd, 0x94, 0x44, 0x2f, 0x8e, 0x26, 0xbb, 0x9b, 0x63, 0xce, 0xee, 0xdc, 0x92, 0x4c, - 0x9b, 0x90, 0xa9, 0x9a, 0x4d, 0xd3, 0xb1, 0x08, 0xd7, 0x26, 0x24, 0xfa, 0xa5, 0x34, 0xf4, 0x52, - 0x60, 0xab, 0x10, 0x23, 0x57, 0xac, 0x43, 0xd6, 0x65, 0x9c, 0x0a, 0xca, 0x1c, 0xae, 0x4d, 0x4a, - 0x9c, 0xc2, 0x68, 0x2a, 0x77, 0x94, 0x9b, 0x82, 0x8c, 0x61, 0x30, 0x85, 0x73, 0xbc, 0x5d, 0x35, - 0x2d, 0x8b, 0xb5, 0x1d, 0x61, 0x08, 0xcf, 0xb4, 0x89, 0xe1, 0x30, 0xa9, 0x34, 0x23, 0x19, 0xde, - 0x4e, 0x8d, 0x72, 0xe4, 0x7a, 0x8f, 0xc5, 0x8a, 0x17, 0x62, 0xc4, 0x8a, 0x0f, 0x28, 0xf7, 0x38, - 0x7e, 0x84, 0x60, 0x85, 0x3c, 0x70, 0xa9, 0x77, 0x60, 0xd4, 0xda, 0xa2, 0xed, 0x11, 0xae, 0x32, - 0xc5, 0xa0, 0x4e, 0x8d, 0x19, 0xdc, 0x4f, 0x6b, 0x2d, 0x2b, 0x49, 0xdf, 0x4b, 0x23, 0xdd, 0x94, - 0x18, 0xe5, 0x00, 0x22, 0x48, 0x92, 0x2d, 0xa7, 0xc6, 0x64, 0x59, 0x28, 0x05, 0x4b, 0x24, 0xc5, - 0x06, 0x53, 0x58, 0x70, 0x89, 0xe7, 0x12, 0xd1, 0x36, 0x9b, 0x49, 0x09, 0x1a, 0x0c, 0xbf, 0xf9, - 0x9d, 0xd0, 0x31, 0x06, 0x0d, 0x6f, 0xde, 0xed, 0xdd, 0xc2, 0xdf, 0x22, 0xc8, 0xf5, 0x70, 0xd5, - 0xda, 0x8e, 0x4d, 0x9d, 0xba, 0x3a, 0xf1, 0x94, 0x24, 0xbd, 0x79, 0x04, 0xd2, 0x72, 0xe0, 0x9f, - 0x3c, 0xf0, 0xa2, 0x3b, 0xd8, 0x04, 0xff, 0x80, 0x60, 0xb5, 0xa7, 0x3c, 0x0d, 0x4e, 0x84, 0x68, - 0x92, 0x16, 0x71, 0x84, 0xc1, 0xad, 0x06, 0xb1, 0xdb, 0x4d, 0x62, 0x6b, 0xd3, 0x52, 0xcc, 0xad, - 0xa3, 0x94, 0xec, 0x6e, 0x84, 0x93, 0x08, 0xc6, 0x25, 0x7b, 0xa0, 0xd5, 0x6e, 0x48, 0x86, 0x6f, - 0x82, 0x46, 0xb9, 0x21, 0x6b, 0x3b, 0x64, 0x31, 0x88, 0x63, 0x56, 0x7d, 0x21, 0x33, 0x2b, 0x68, - 0x2d, 0xa3, 0x2f, 0x50, 0xee, 0x17, 0xf2, 0xa6, 0xda, 0xdd, 0x0c, 0x36, 0xf1, 0x26, 0x2c, 0x53, - 0x6e, 0xc4, 0x14, 0xbc, 0xd7, 0xff, 0xb4, 0xf4, 0x5f, 0xa2, 0x3c, 0x96, 0xcb, 0xbb, 0x61, 0xf6, - 0x61, 0xc9, 0x4f, 0x78, 0xff, 0x2a, 0x3c, 0x72, 0xdf, 0xf4, 0x6c, 0xc3, 0x32, 0x5b, 0xae, 0x49, - 0xeb, 0x4e, 0x90, 0x0e, 0xb3, 0xf2, 0x61, 0xbd, 0x91, 0x16, 0x8c, 0x4a, 0xe0, 0xaf, 0x4b, 0xf7, - 0xbb, 0xca, 0xdb, 0x8f, 0x83, 0x7e, 0x5e, 0x0c, 0xda, 0xc2, 0x0f, 0x11, 0xbc, 0xd9, 0x45, 0xec, - 0x32, 0xd6, 0x8c, 0xd9, 0xc3, 0xfb, 0xd0, 0x5e, 0x1b, 0x5e, 0xe4, 0x21, 0x72, 0xc0, 0xb3, 0xc3, - 0x58, 0x53, 0xbf, 0xd8, 0x41, 0xed, 0x2f, 0x85, 0x46, 0x61, 0xec, 0xf1, 0xf7, 0x08, 0x56, 0x07, - 0x9d, 0x3d, 0x7c, 0x0c, 0x5c, 0x46, 0x1d, 0xc1, 0xb5, 0x33, 0x52, 0xc3, 0x07, 0x47, 0x8e, 0xc2, - 0x47, 0x01, 0xcc, 0x8e, 0x44, 0xd1, 0xf3, 0x62, 0xa8, 0x0d, 0xb6, 0x60, 0xa1, 0x46, 0x88, 0x61, - 0x53, 0x1e, 0x08, 0x88, 0xc2, 0x80, 0xe5, 0x45, 0xa4, 0xd6, 0x65, 0x99, 0x90, 0x0d, 0xe5, 0x17, - 0x1e, 0x52, 0x9f, 0xab, 0xf5, 0x2e, 0xe2, 0xfb, 0xf0, 0x7a, 0x07, 0x49, 0xf4, 0xf4, 0x51, 0xe2, - 0x19, 0x42, 0x34, 0xb5, 0x39, 0x79, 0xde, 0x1b, 0x23, 0x92, 0xa9, 0x13, 0x54, 0x28, 0xf1, 0x2a, - 0x95, 0x6d, 0xfd, 0x7c, 0xad, 0xff, 0x96, 0x68, 0xe2, 0xa7, 0x08, 0x56, 0x3b, 0x98, 0xab, 0x6d, - 0x4b, 0xbe, 0x06, 0x84, 0x70, 0xc3, 0x35, 0xa9, 0x1d, 0x4a, 0xe1, 0xda, 0xbc, 0x94, 0x70, 0x7b, - 0x44, 0x09, 0x25, 0x89, 0x53, 0x26, 0x84, 0xef, 0x98, 0xd4, 0x56, 0xac, 0x5c, 0xbf, 0x58, 0x1b, - 0x66, 0x82, 0xdf, 0x87, 0x45, 0xca, 0x8d, 0x1a, 0xf5, 0xb8, 0x94, 0x61, 0x58, 0x07, 0x56, 0x93, - 0x18, 0x35, 0xea, 0x50, 0xde, 0x20, 0xb6, 0xb6, 0x20, 0x6b, 0xe8, 0x1c, 0xe5, 0x65, 0xdf, 0xa2, - 0x4c, 0xc8, 0x5d, 0x7f, 0xbf, 0xac, 0xb6, 0xf1, 0x13, 0x04, 0x97, 0x5d, 0x12, 0x3c, 0x65, 0xa3, - 0xa5, 0xf3, 0xd9, 0x63, 0xa5, 0xf3, 0x9a, 0x22, 0xa9, 0x0c, 0xcd, 0xea, 0x5f, 0x10, 0x14, 0x06, - 0x28, 0x1a, 0x94, 0xdd, 0xe7, 0xa4, 0xa4, 0xcd, 0x63, 0x67, 0x77, 0xc0, 0xa6, 0x92, 0x7c, 0xbd, - 0x9f, 0xd2, 0xbe, 0xb9, 0x9e, 0x7f, 0x88, 0xe0, 0xfc, 0xc0, 0x34, 0xc2, 0x1a, 0x4c, 0x2a, 0x9d, - 0xb2, 0xbb, 0xcb, 0xea, 0xe1, 0x57, 0xbc, 0x05, 0x99, 0x28, 0x53, 0xc7, 0x65, 0x59, 0x14, 0x46, - 0x4c, 0x93, 0x30, 0x45, 0x27, 0x45, 0x90, 0x90, 0xf9, 0xdf, 0x10, 0x5c, 0x1c, 0x9a, 0x46, 0xf8, - 0x5d, 0x38, 0xab, 0x12, 0x95, 0x0b, 0xd3, 0xf3, 0xeb, 0xa4, 0x45, 0xb8, 0x30, 0x5b, 0xae, 0x54, - 0x76, 0x42, 0x9f, 0x0f, 0x76, 0x77, 0xfd, 0xcd, 0x4a, 0xb8, 0x87, 0xbf, 0x84, 0x33, 0x61, 0xa0, - 0xa3, 0xfc, 0x56, 0x0d, 0x66, 0x6a, 0x43, 0xa1, 0x68, 0x43, 0x15, 0xfa, 0xac, 0xd9, 0xb9, 0x90, - 0x7f, 0x00, 0xb3, 0x5d, 0x36, 0x29, 0xc1, 0xfa, 0x14, 0xb2, 0x49, 0x76, 0xb4, 0x96, 0x2d, 0x15, - 0xfc, 0x7f, 0x4f, 0x7f, 0xbd, 0x5c, 0x5e, 0xad, 0x53, 0xd1, 0x68, 0x57, 0x0b, 0x16, 0x6b, 0x15, - 0x2d, 0xc6, 0x5b, 0x8c, 0xab, 0x3f, 0x97, 0xb9, 0xbd, 0x57, 0x14, 0x07, 0x2e, 0xe1, 0x85, 0x0d, - 0x62, 0xe9, 0x99, 0x5a, 0xc8, 0xfc, 0x08, 0x41, 0x7e, 0xf8, 0xc5, 0xa6, 0xa8, 0x29, 0xc3, 0x84, - 0x4a, 0xba, 0xe3, 0x49, 0x51, 0xde, 0xf9, 0x3f, 0x10, 0xac, 0x8f, 0x9c, 0x93, 0xf8, 0x36, 0x2c, - 0x26, 0x8b, 0xb2, 0xff, 0x25, 0x6a, 0x5e, 0x54, 0x54, 0x5d, 0x17, 0x49, 0xe0, 0x74, 0x57, 0xc5, - 0x8c, 0xff, 0x2f, 0xff, 0x0f, 0x66, 0xcc, 0x8e, 0x72, 0xf8, 0x11, 0xc1, 0x4c, 0x47, 0xcb, 0x8e, - 0x17, 0x21, 0x1b, 0xb6, 0x66, 0xb6, 0x8a, 0x64, 0x26, 0x58, 0xd8, 0xb2, 0xf1, 0x12, 0x64, 0x29, - 0x2f, 0xb5, 0x0f, 0x76, 0xa9, 0x4d, 0x64, 0x34, 0x33, 0x7a, 0xbc, 0x80, 0x4b, 0x30, 0x21, 0xbb, - 0xf9, 0x70, 0x02, 0x79, 0x6b, 0xd8, 0xa0, 0xb0, 0x4d, 0x5b, 0x34, 0xa0, 0xd6, 0x95, 0xe7, 0xad, - 0xcc, 0xe3, 0x67, 0xcb, 0x63, 0xff, 0x3c, 0x5b, 0x1e, 0xcb, 0xff, 0x8c, 0x60, 0xae, 0x4f, 0xbf, - 0xff, 0x5f, 0x04, 0x7e, 0xd2, 0x25, 0xf0, 0xca, 0x68, 0xfd, 0x56, 0xaa, 0xcc, 0x27, 0x08, 0x26, - 0xd5, 0xe0, 0x80, 0x2f, 0xc1, 0x4c, 0xa2, 0xa9, 0x8f, 0xe4, 0x4d, 0xc7, 0x8b, 0x5b, 0x36, 0x9e, - 0x87, 0x53, 0x36, 0x71, 0x58, 0x2b, 0xc8, 0x46, 0x3d, 0xf8, 0x82, 0x3f, 0x84, 0x8c, 0x4d, 0xe4, - 0x78, 0xe0, 0x8b, 0x43, 0xc3, 0x46, 0x95, 0x8d, 0xc0, 0x56, 0x8f, 0x9c, 0x12, 0x8a, 0x7e, 0x42, - 0x80, 0x7b, 0x47, 0x90, 0xd1, 0xc4, 0x75, 0x04, 0x77, 0xbc, 0x2b, 0xb8, 0x77, 0x20, 0x13, 0x0e, - 0x30, 0x4a, 0xe3, 0x1b, 0xa9, 0xdd, 0xb3, 0xb2, 0xd5, 0x23, 0xaf, 0x84, 0xc8, 0x5f, 0x11, 0xcc, - 0x76, 0x4d, 0x31, 0xa3, 0x29, 0x6c, 0xc2, 0xd9, 0xfe, 0x83, 0x93, 0x7a, 0x96, 0xaf, 0x8c, 0x36, - 0x37, 0xc5, 0x03, 0x92, 0xea, 0x9c, 0xe7, 0xfb, 0x0d, 0x4f, 0x09, 0xc1, 0xdf, 0x21, 0x58, 0x4a, - 0x9b, 0x80, 0xd2, 0xf3, 0xb2, 0x02, 0x53, 0xc9, 0x81, 0x27, 0x90, 0x7a, 0xfd, 0x18, 0xd3, 0x96, - 0x0e, 0xad, 0xe8, 0x73, 0xfe, 0x31, 0x82, 0xc5, 0x94, 0x19, 0x25, 0x5d, 0xd2, 0x36, 0x4c, 0xaa, - 0x81, 0x48, 0xc9, 0xb9, 0x76, 0xf4, 0x51, 0x48, 0x0f, 0x21, 0x4a, 0x8d, 0xe7, 0xaf, 0x72, 0xe8, - 0xc5, 0xab, 0x1c, 0xfa, 0xfb, 0x55, 0x0e, 0x3d, 0x3d, 0xcc, 0x8d, 0xbd, 0x38, 0xcc, 0x8d, 0xfd, - 0x79, 0x98, 0x1b, 0xfb, 0xea, 0x5e, 0xe2, 0x99, 0xdd, 0x0a, 0x09, 0xb6, 0xcd, 0x2a, 0x2f, 0x46, - 0x74, 0x97, 0x2d, 0xe6, 0x91, 0xe4, 0xd7, 0x86, 0x49, 0x9d, 0x62, 0x8b, 0xf9, 0xcd, 0x05, 0x8f, - 0x7f, 0xb8, 0x91, 0x4f, 0x72, 0x75, 0x42, 0xfe, 0x30, 0x73, 0xfd, 0xdf, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x57, 0xa3, 0x15, 0xff, 0x21, 0x12, 0x00, 0x00, + // 1431 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcf, 0x6f, 0xdb, 0xc6, + 0x12, 0xf6, 0xda, 0x89, 0x2d, 0x8d, 0x7f, 0xbd, 0xac, 0xed, 0x84, 0x89, 0xfd, 0x64, 0x47, 0x79, + 0xcf, 0x4f, 0x7e, 0x6d, 0xa4, 0xfc, 0x68, 0x90, 0x22, 0x68, 0xda, 0x54, 0xb1, 0xd5, 0x1a, 0x75, + 0x53, 0x83, 0x16, 0x5a, 0xa0, 0x3d, 0x10, 0x14, 0xb9, 0x92, 0xb6, 0x16, 0xb9, 0x04, 0x77, 0xe5, + 0xc4, 0xb7, 0xa0, 0x87, 0x20, 0xb7, 0xa4, 0x05, 0x0a, 0xf4, 0x18, 0x14, 0x3d, 0xf4, 0xd4, 0x43, + 0xff, 0x8a, 0x1c, 0xd3, 0x5b, 0xd1, 0x43, 0x50, 0x24, 0x97, 0xfe, 0x05, 0x3d, 0x17, 0x5c, 0x2e, + 0x29, 0x4a, 0x96, 0x28, 0xd9, 0xed, 0x49, 0xe4, 0xee, 0xcc, 0xf7, 0x7d, 0x3b, 0x3b, 0xb3, 0xda, + 0x21, 0x14, 0xa8, 0xfb, 0x25, 0xb1, 0x04, 0x3d, 0x20, 0x25, 0xf2, 0xc0, 0x6a, 0x9a, 0x6e, 0x83, + 0x94, 0x0e, 0xae, 0xd6, 0x88, 0x30, 0xaf, 0x96, 0x1a, 0xc4, 0x25, 0x9c, 0xf2, 0xa2, 0xe7, 0x33, + 0xc1, 0xf0, 0x85, 0xd8, 0xb2, 0x18, 0x59, 0x16, 0x95, 0xe5, 0x85, 0x8d, 0x14, 0x94, 0xd8, 0x58, + 0xc2, 0x5c, 0x58, 0x6c, 0xb0, 0x06, 0x93, 0x8f, 0xa5, 0xe0, 0x29, 0x1c, 0xcd, 0xff, 0xb9, 0x00, + 0x33, 0x1f, 0x84, 0x74, 0x7b, 0xc2, 0x14, 0x04, 0xdf, 0x81, 0x49, 0xcf, 0xf4, 0x4d, 0x87, 0x6b, + 0x68, 0x0d, 0x15, 0xa6, 0xaf, 0xe5, 0x8b, 0x83, 0xe9, 0x8b, 0xbb, 0xd2, 0xb2, 0x7c, 0xea, 0xf9, + 0xcb, 0xd5, 0x31, 0x5d, 0xf9, 0xe1, 0x6d, 0x98, 0xe1, 0x1e, 0x13, 0x86, 0x63, 0xfa, 0xfb, 0x44, + 0x70, 0x6d, 0x7c, 0x6d, 0xa2, 0x30, 0x7d, 0x6d, 0x3d, 0x0d, 0x67, 0xcf, 0x63, 0xe2, 0x63, 0x69, + 0xae, 0x4f, 0xf3, 0xf8, 0x99, 0xe3, 0x2f, 0x00, 0xdb, 0xc4, 0xa7, 0x07, 0x66, 0xe0, 0x16, 0x03, + 0x4e, 0x48, 0xc0, 0x37, 0xd3, 0x00, 0x37, 0x63, 0x2f, 0x05, 0x7b, 0xc6, 0xee, 0x19, 0xe1, 0xf8, + 0x53, 0x98, 0x93, 0x3a, 0x99, 0x6f, 0x13, 0xbf, 0xc6, 0xd8, 0xbe, 0x76, 0x4a, 0x02, 0x6f, 0x0c, + 0x53, 0xfa, 0x49, 0xe0, 0x50, 0x66, 0x6c, 0x5f, 0x2d, 0x7c, 0x96, 0x47, 0x83, 0x01, 0x0a, 0x6e, + 0xc2, 0x62, 0x42, 0x74, 0x07, 0xfd, 0xb4, 0x44, 0x2f, 0x8d, 0x26, 0xbb, 0x97, 0x63, 0xc1, 0xee, + 0x9e, 0x92, 0x4c, 0x5b, 0x90, 0xa9, 0x99, 0x2d, 0xd3, 0xb5, 0x08, 0xd7, 0x26, 0x25, 0xfa, 0xa5, + 0x34, 0xf4, 0x72, 0x68, 0xab, 0x10, 0x63, 0x57, 0xac, 0x43, 0xd6, 0x63, 0x9c, 0x0a, 0xca, 0x5c, + 0xae, 0x4d, 0x49, 0x9c, 0xe2, 0x68, 0x2a, 0x77, 0x95, 0x9b, 0x82, 0xec, 0xc0, 0x60, 0x0a, 0xe7, + 0x78, 0xbb, 0x66, 0x5a, 0x16, 0x6b, 0xbb, 0xc2, 0x10, 0xbe, 0x69, 0x13, 0xc3, 0x65, 0x52, 0x69, + 0x46, 0x32, 0xbc, 0x91, 0x1a, 0xe5, 0xd8, 0xf5, 0x1e, 0xeb, 0x28, 0x5e, 0xea, 0x20, 0x56, 0x03, + 0x40, 0x39, 0xc7, 0xf1, 0x23, 0x04, 0x6b, 0xe4, 0x81, 0x47, 0xfd, 0x43, 0xa3, 0xde, 0x16, 0x6d, + 0x9f, 0x70, 0x95, 0x29, 0x06, 0x75, 0xeb, 0xcc, 0xe0, 0x41, 0x5a, 0x6b, 0x59, 0x49, 0xfa, 0x76, + 0x1a, 0xe9, 0x96, 0xc4, 0xa8, 0x84, 0x10, 0x61, 0x92, 0x6c, 0xbb, 0x75, 0x26, 0xcb, 0x42, 0x29, + 0x58, 0x21, 0x29, 0x36, 0x98, 0xc2, 0x92, 0x47, 0x7c, 0x8f, 0x88, 0xb6, 0xd9, 0x4a, 0x4a, 0xd0, + 0x60, 0xf8, 0xce, 0xef, 0x46, 0x8e, 0x1d, 0xd0, 0x68, 0xe7, 0xbd, 0xa3, 0x53, 0xf8, 0x2b, 0x04, + 0xb9, 0x23, 0x5c, 0xf5, 0xb6, 0x6b, 0x53, 0xb7, 0xa1, 0x56, 0x3c, 0x2d, 0x49, 0x6f, 0x1e, 0x83, + 0xb4, 0x12, 0xfa, 0x27, 0x17, 0xbc, 0xec, 0x0d, 0x36, 0xc1, 0xdf, 0x22, 0x58, 0x3f, 0x52, 0x9e, + 0x06, 0x27, 0x42, 0xb4, 0x88, 0x43, 0x5c, 0x61, 0x70, 0xab, 0x49, 0xec, 0x76, 0x8b, 0xd8, 0xda, + 0x8c, 0x14, 0x73, 0xeb, 0x38, 0x25, 0xbb, 0x17, 0xe3, 0x24, 0x82, 0x71, 0xc9, 0x1e, 0x68, 0xb5, + 0x17, 0x91, 0xe1, 0x9b, 0xa0, 0x51, 0x6e, 0xc8, 0xda, 0x8e, 0x58, 0x0c, 0xe2, 0x9a, 0xb5, 0x40, + 0xc8, 0xec, 0x1a, 0x2a, 0x64, 0xf4, 0x25, 0xca, 0x83, 0x42, 0xde, 0x52, 0xb3, 0x5b, 0xe1, 0x24, + 0xde, 0x82, 0x55, 0xca, 0x8d, 0x0e, 0x05, 0x3f, 0xea, 0x3f, 0x27, 0xfd, 0x57, 0x28, 0xef, 0xc8, + 0xe5, 0xbd, 0x30, 0x07, 0xb0, 0x12, 0x24, 0x7c, 0xb0, 0x15, 0x3e, 0xb9, 0x6f, 0xfa, 0xb6, 0x61, + 0x99, 0x8e, 0x67, 0xd2, 0x86, 0x1b, 0xa6, 0xc3, 0xbc, 0x3c, 0x58, 0x6f, 0xa4, 0x05, 0xa3, 0x1a, + 0xfa, 0xeb, 0xd2, 0xfd, 0xae, 0xf2, 0x0e, 0xe2, 0xa0, 0x9f, 0x17, 0x83, 0xa6, 0xf0, 0x43, 0x04, + 0xff, 0xed, 0x21, 0xf6, 0x18, 0x6b, 0x75, 0xd8, 0xa3, 0xfd, 0xd0, 0xfe, 0x35, 0xbc, 0xc8, 0x23, + 0xe4, 0x90, 0x67, 0x97, 0xb1, 0x96, 0x7e, 0xb1, 0x8b, 0x3a, 0x18, 0x8a, 0x8c, 0xa2, 0xd8, 0xe3, + 0x6f, 0x10, 0xac, 0x0f, 0x5a, 0x7b, 0x74, 0x18, 0x78, 0x8c, 0xba, 0x82, 0x6b, 0x67, 0xa4, 0x86, + 0x77, 0x8f, 0x1d, 0x85, 0xf7, 0x43, 0x98, 0x5d, 0x89, 0xa2, 0xe7, 0xc5, 0x50, 0x1b, 0x6c, 0xc1, + 0x52, 0x9d, 0x10, 0xc3, 0xa6, 0x3c, 0x14, 0x10, 0x87, 0x01, 0xcb, 0x8d, 0x48, 0xad, 0xcb, 0x0a, + 0x21, 0x9b, 0xca, 0x2f, 0x5a, 0xa4, 0xbe, 0x50, 0x3f, 0x3a, 0x88, 0xef, 0xc3, 0xbf, 0xbb, 0x48, + 0xe2, 0xa3, 0x8f, 0x12, 0xdf, 0x10, 0xa2, 0xa5, 0x2d, 0xc8, 0xf5, 0xde, 0x18, 0x91, 0x4c, 0xad, + 0xa0, 0x4a, 0x89, 0x5f, 0xad, 0xee, 0xe8, 0xe7, 0xeb, 0xfd, 0xa7, 0x44, 0x0b, 0x3f, 0x45, 0xb0, + 0xde, 0xc5, 0x5c, 0x6b, 0x5b, 0xf2, 0x34, 0x20, 0x84, 0x1b, 0x9e, 0x49, 0xed, 0x48, 0x0a, 0xd7, + 0x16, 0xa5, 0x84, 0xdb, 0x23, 0x4a, 0x28, 0x4b, 0x9c, 0x0a, 0x21, 0x7c, 0xd7, 0xa4, 0xb6, 0x62, + 0xe5, 0xfa, 0xc5, 0xfa, 0x30, 0x13, 0xfc, 0x0e, 0x2c, 0x53, 0x6e, 0xd4, 0xa9, 0xcf, 0xa5, 0x0c, + 0xc3, 0x3a, 0xb4, 0x5a, 0xc4, 0xa8, 0x53, 0x97, 0xf2, 0x26, 0xb1, 0xb5, 0x25, 0x59, 0x43, 0xe7, + 0x28, 0xaf, 0x04, 0x16, 0x15, 0x42, 0xee, 0x06, 0xf3, 0x15, 0x35, 0x8d, 0x9f, 0x20, 0xb8, 0xec, + 0x91, 0xf0, 0x28, 0x1b, 0x2d, 0x9d, 0xcf, 0x9e, 0x28, 0x9d, 0x0b, 0x8a, 0xa4, 0x3a, 0x34, 0xab, + 0x7f, 0x44, 0x50, 0x1c, 0xa0, 0x68, 0x50, 0x76, 0x9f, 0x93, 0x92, 0xb6, 0x4e, 0x9c, 0xdd, 0x21, + 0x9b, 0x4a, 0xf2, 0x8d, 0x7e, 0x4a, 0xfb, 0xe7, 0xfa, 0xff, 0x60, 0xde, 0x27, 0x0d, 0xca, 0x05, + 0xf1, 0x89, 0x6d, 0xd8, 0x8e, 0xc3, 0x35, 0x6d, 0x6d, 0xa2, 0x90, 0xd5, 0xe7, 0x3a, 0xc3, 0x9b, + 0x8e, 0xc3, 0xf3, 0x0f, 0x11, 0x9c, 0x1f, 0x98, 0x6f, 0x58, 0x83, 0x29, 0xb5, 0x20, 0x79, 0x0d, + 0xcc, 0xea, 0xd1, 0x2b, 0xde, 0x86, 0x4c, 0x9c, 0xd2, 0xe3, 0xb2, 0x7e, 0x8a, 0x23, 0xe6, 0x53, + 0x94, 0xcb, 0x53, 0x22, 0xcc, 0xdc, 0xfc, 0xcf, 0x08, 0x2e, 0x0e, 0xcd, 0x37, 0xfc, 0x16, 0x9c, + 0x55, 0x19, 0xcd, 0x85, 0xe9, 0x07, 0x05, 0xe5, 0x10, 0x2e, 0x4c, 0xc7, 0x93, 0xca, 0x26, 0xf4, + 0xc5, 0x70, 0x76, 0x2f, 0x98, 0xac, 0x46, 0x73, 0xf8, 0x33, 0x38, 0x13, 0xed, 0x48, 0x5c, 0x08, + 0xea, 0x26, 0x9a, 0x7a, 0xf3, 0x50, 0xb4, 0x91, 0x0a, 0x7d, 0xde, 0xec, 0x1e, 0xc8, 0x3f, 0x80, + 0xf9, 0x1e, 0x9b, 0x94, 0x60, 0x7d, 0x04, 0xd9, 0x24, 0x3b, 0x2a, 0x64, 0xcb, 0xc5, 0xe0, 0x7f, + 0xec, 0xb7, 0x97, 0xab, 0xeb, 0x0d, 0x2a, 0x9a, 0xed, 0x5a, 0xd1, 0x62, 0x4e, 0xc9, 0x62, 0xdc, + 0x61, 0x5c, 0xfd, 0x5c, 0xe6, 0xf6, 0x7e, 0x49, 0x1c, 0x7a, 0x84, 0x17, 0x37, 0x89, 0xa5, 0x67, + 0xea, 0x11, 0xf3, 0x23, 0x04, 0xf9, 0x11, 0x32, 0x60, 0xb0, 0x9a, 0x0a, 0x4c, 0xaa, 0xec, 0x3c, + 0x99, 0x14, 0xe5, 0x9d, 0xff, 0x05, 0xc1, 0xc6, 0xc8, 0xc9, 0x8b, 0x6f, 0xc3, 0x72, 0xb2, 0x7a, + 0xfb, 0x6f, 0xa2, 0xe6, 0xc7, 0xd5, 0xd7, 0xb3, 0x91, 0x04, 0xe6, 0x7a, 0x4a, 0x6b, 0xfc, 0x1f, + 0xf9, 0xe3, 0x98, 0x35, 0x93, 0xaf, 0xf9, 0xef, 0x10, 0xcc, 0x76, 0xdd, 0xed, 0xf1, 0x32, 0x64, + 0xa3, 0x3b, 0x9c, 0xad, 0x22, 0x99, 0x09, 0x07, 0xb6, 0x6d, 0xbc, 0x02, 0x59, 0xca, 0xcb, 0xed, + 0xc3, 0x3d, 0x6a, 0x13, 0x19, 0xcd, 0x8c, 0xde, 0x19, 0xc0, 0x65, 0x98, 0x94, 0xd7, 0xfe, 0xa8, + 0x55, 0xf9, 0xff, 0xb0, 0x8e, 0x62, 0x87, 0x3a, 0x34, 0xa4, 0xd6, 0x95, 0xe7, 0xad, 0xcc, 0xe3, + 0x67, 0xab, 0x63, 0x7f, 0x3c, 0x5b, 0x1d, 0xcb, 0xff, 0x80, 0x60, 0xa1, 0x4f, 0x63, 0xf0, 0x77, + 0x04, 0x7e, 0xd8, 0x23, 0xf0, 0xca, 0x68, 0x17, 0xb3, 0x54, 0x99, 0x4f, 0x10, 0x4c, 0xa9, 0x0e, + 0x03, 0x5f, 0x82, 0xd9, 0xc4, 0xed, 0x3f, 0x96, 0x37, 0xd3, 0x19, 0xdc, 0xb6, 0xf1, 0x22, 0x9c, + 0xb6, 0x89, 0xcb, 0x9c, 0x30, 0x1b, 0xf5, 0xf0, 0x05, 0xbf, 0x07, 0x19, 0x9b, 0xc8, 0x3e, 0x22, + 0x10, 0x87, 0x86, 0xf5, 0x34, 0x9b, 0xa1, 0xad, 0x1e, 0x3b, 0x25, 0x14, 0x7d, 0x8f, 0x00, 0x1f, + 0xed, 0x55, 0x46, 0x13, 0xd7, 0x15, 0xdc, 0xf1, 0x9e, 0xe0, 0xde, 0x81, 0x4c, 0xd4, 0xe9, 0x28, + 0x8d, 0xff, 0x49, 0xbd, 0x66, 0x2b, 0x5b, 0x3d, 0xf6, 0x4a, 0x88, 0xfc, 0x09, 0xc1, 0x7c, 0x4f, + 0xbb, 0x33, 0x9a, 0xc2, 0x16, 0x9c, 0xed, 0xdf, 0x61, 0xa9, 0x63, 0xf9, 0xca, 0x68, 0x0d, 0x56, + 0xa7, 0x93, 0x52, 0x57, 0xec, 0xc5, 0x7e, 0x5d, 0x56, 0x42, 0xf0, 0xd7, 0x08, 0x56, 0xd2, 0x5a, + 0xa5, 0xf4, 0xbc, 0xac, 0xc2, 0x74, 0xb2, 0x33, 0x0a, 0xa5, 0x5e, 0x3f, 0x41, 0x5b, 0xa6, 0x83, + 0x13, 0x3f, 0xe7, 0x1f, 0x23, 0x58, 0x4e, 0x69, 0x66, 0xd2, 0x25, 0xed, 0xc0, 0x94, 0xea, 0x9c, + 0x94, 0x9c, 0x6b, 0xc7, 0xef, 0x99, 0xf4, 0x08, 0xa2, 0xdc, 0x7c, 0xfe, 0x2a, 0x87, 0x5e, 0xbc, + 0xca, 0xa1, 0xdf, 0x5f, 0xe5, 0xd0, 0xd3, 0xd7, 0xb9, 0xb1, 0x17, 0xaf, 0x73, 0x63, 0xbf, 0xbe, + 0xce, 0x8d, 0x7d, 0x7e, 0x2f, 0x71, 0xcc, 0x6e, 0x47, 0x04, 0x3b, 0x66, 0x8d, 0x97, 0x62, 0xba, + 0xcb, 0x16, 0xf3, 0x49, 0xf2, 0xb5, 0x69, 0x52, 0xb7, 0xe4, 0xb0, 0xe0, 0x16, 0xc2, 0x3b, 0x5f, + 0x78, 0xe4, 0x91, 0x5c, 0x9b, 0x94, 0x5f, 0x70, 0xae, 0xff, 0x15, 0x00, 0x00, 0xff, 0xff, 0x8e, + 0x53, 0x57, 0xdc, 0x4a, 0x12, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { @@ -950,6 +961,17 @@ func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.RegisteredDmms) > 0 { + for iNdEx := len(m.RegisteredDmms) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.RegisteredDmms[iNdEx]) + copy(dAtA[i:], m.RegisteredDmms[iNdEx]) + i = encodeVarintGenesis(dAtA, i, uint64(len(m.RegisteredDmms[iNdEx]))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xc2 + } + } if len(m.PendingTradingRewardCampaignAccountPoints) > 0 { for iNdEx := len(m.PendingTradingRewardCampaignAccountPoints) - 1; iNdEx >= 0; iNdEx-- { { @@ -1945,6 +1967,12 @@ func (m *GenesisState) Size() (n int) { n += 2 + l + sovGenesis(uint64(l)) } } + if len(m.RegisteredDmms) > 0 { + for _, s := range m.RegisteredDmms { + l = len(s) + n += 2 + l + sovGenesis(uint64(l)) + } + } return n } @@ -2944,6 +2972,38 @@ func (m *GenesisState) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 24: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RegisteredDmms", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenesis + } + 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 ErrInvalidLengthGenesis + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenesis + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RegisteredDmms = append(m.RegisteredDmms, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenesis(dAtA[iNdEx:])