From 7310e4217a3f17f5bba9a8d46b5a0642935eb57b Mon Sep 17 00:00:00 2001 From: Simon Noetzlin Date: Mon, 26 Jun 2023 10:29:18 +0200 Subject: [PATCH] fix typo and improve docs --- .../ccv/provider/v1/tx.proto | 3 +- tests/integration/misbehaviour.go | 6 +- testutil/integration/debug_test.go | 4 +- x/ccv/provider/keeper/double_vote.go | 39 ---------- x/ccv/provider/keeper/misbehaviour.go | 10 +-- x/ccv/provider/types/codec.go | 5 ++ x/ccv/provider/types/tx.pb.go | 77 +++++++++---------- 7 files changed, 54 insertions(+), 90 deletions(-) delete mode 100644 x/ccv/provider/keeper/double_vote.go diff --git a/proto/interchain_security/ccv/provider/v1/tx.proto b/proto/interchain_security/ccv/provider/v1/tx.proto index 1bcfad7cbc..61be3064ea 100644 --- a/proto/interchain_security/ccv/provider/v1/tx.proto +++ b/proto/interchain_security/ccv/provider/v1/tx.proto @@ -8,7 +8,6 @@ import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "google/protobuf/any.proto"; import "ibc/lightclients/tendermint/v1/tendermint.proto"; -import "tendermint/types/evidence.proto"; // Msg defines the Msg service. service Msg { @@ -46,10 +45,10 @@ message MsgRegisterConsumerRewardDenom { // MsgRegisterConsumerRewardDenomResponse defines the Msg/RegisterConsumerRewardDenom response type. message MsgRegisterConsumerRewardDenomResponse {} -// MsgSubmitConsumerMisbehaviour reports a consumer chain Misbehaviour // MsgSubmitConsumerMisbehaviour defines a message that reports a misbehaviour // observed on a consumer chain +// Note that the misbheaviour' headers must contain the same trusted states message MsgSubmitConsumerMisbehaviour { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; diff --git a/tests/integration/misbehaviour.go b/tests/integration/misbehaviour.go index 39242c68d2..13ad7e6230 100644 --- a/tests/integration/misbehaviour.go +++ b/tests/integration/misbehaviour.go @@ -59,7 +59,7 @@ func (s *CCVTestSuite) TestHandleConsumerMisbehaviour() { for _, v := range altValset.Validators { consuAddr := sdk.ConsAddress(v.Address.Bytes()) - provAddr := s.providerApp.GetProviderKeeper().GetProviderAddrFromConsumerAddr(s.providerCtx(), s.consumerChain.ChainID, types.ConsumerConsAddress{consuAddr}) + provAddr := s.providerApp.GetProviderKeeper().GetProviderAddrFromConsumerAddr(s.providerCtx(), s.consumerChain.ChainID, types.NewConsumerConsAddress(consuAddr)) val, ok := s.providerApp.GetTestStakingKeeper().GetValidatorByConsAddr(s.providerCtx(), provAddr.Address) s.Require().True(ok) s.Require().True(val.Jailed) @@ -67,7 +67,7 @@ func (s *CCVTestSuite) TestHandleConsumerMisbehaviour() { } } -func (s *CCVTestSuite) TestConstructLigthClientEvidence() { +func (s *CCVTestSuite) TestConstructLightClientEvidence() { s.SetupCCVChannel(s.path) // required to have the consumer client revision height greater than 0 s.SendEmptyVSCPacket() @@ -208,7 +208,7 @@ func (s *CCVTestSuite) TestConstructLigthClientEvidence() { for _, tc := range testCases { s.Run(tc.name, func() { - ev, err := s.providerApp.GetProviderKeeper().ConstructLigthClientEvidence( + ev, err := s.providerApp.GetProviderKeeper().ConstructLightClientEvidence( s.providerCtx(), *tc.misbehaviour, ) diff --git a/testutil/integration/debug_test.go b/testutil/integration/debug_test.go index da2d75355c..3bafef8295 100644 --- a/testutil/integration/debug_test.go +++ b/testutil/integration/debug_test.go @@ -265,6 +265,6 @@ func TestHandleConsumerMisbehaviour(t *testing.T) { runCCVTestByName(t, "TestHandleConsumerMisbehaviour") } -func TestConstructLigthClientEvidence(t *testing.T) { - runCCVTestByName(t, "TestConstructLigthClientEvidence") +func TestConstructLightClientEvidence(t *testing.T) { + runCCVTestByName(t, "TestConstructLightClientEvidence") } diff --git a/x/ccv/provider/keeper/double_vote.go b/x/ccv/provider/keeper/double_vote.go deleted file mode 100644 index fc7875009f..0000000000 --- a/x/ccv/provider/keeper/double_vote.go +++ /dev/null @@ -1,39 +0,0 @@ -package keeper - -import ( - sdk "github.com/cosmos/cosmos-sdk/types" - ibctmtypes "github.com/cosmos/ibc-go/v4/modules/light-clients/07-tendermint/types" - tmev "github.com/tendermint/tendermint/evidence" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmtypes "github.com/tendermint/tendermint/types" -) - -func (k Keeper) HandleConsumerDoubleVoting(ctx sdk.Context, evidence *tmproto.DuplicateVoteEvidence, header *ibctmtypes.Header) error { - - // TODO: check header against consumer chain client - - ev, err := tmtypes.DuplicateVoteEvidenceFromProto(evidence) - if err != nil { - return err - } - valset, err := tmtypes.ValidatorSetFromProto(header.TrustedValidators) - if err != nil { - return err - } - - // TODO: figure out if the evidence age must also be checked - if err := tmev.VerifyDuplicateVote(ev, header.Header.ChainID, valset); err != nil { - return err - } - - // TODO: convert misbehaving validator consumer pubkey - // TODO: call k.evidenceKeeper.HandleEquivocationEvidence() using correct infraction height - - logger := ctx.Logger() - logger.Info( - "confirmed equivocation", - "byzantine validator", sdk.ConsAddress(evidence.VoteA.GetValidatorAddress()), - ) - - return nil -} diff --git a/x/ccv/provider/keeper/misbehaviour.go b/x/ccv/provider/keeper/misbehaviour.go index 8df61c4bb5..f616e8fea8 100644 --- a/x/ccv/provider/keeper/misbehaviour.go +++ b/x/ccv/provider/keeper/misbehaviour.go @@ -13,7 +13,7 @@ import ( ) // HandleConsumerMisbehaviour checks whether the given IBC misbehaviour is valid and, if they are, the misbehaving -// CheckConsumerMisbehaviour check that the given IBC misbehaviour headers forms a valid light client attck evidence. +// CheckConsumerMisbehaviour check that the given IBC misbehaviour headers forms a valid light client attack evidence. // proceed to the jailing and tombstoning of the bzyantine validators. func (k Keeper) HandleConsumerMisbehaviour(ctx sdk.Context, misbehaviour ibctmtypes.Misbehaviour) error { logger := ctx.Logger() @@ -27,7 +27,7 @@ func (k Keeper) HandleConsumerMisbehaviour(ctx sdk.Context, misbehaviour ibctmty // isn't too old. see ibc-go/modules/light-clients/07-tendermint/types/misbehaviour_handle.go // construct a ligth client attack evidence - evidence, err := k.ConstructLigthClientEvidence(ctx, misbehaviour) + evidence, err := k.ConstructLightClientEvidence(ctx, misbehaviour) if err != nil { return err } @@ -36,7 +36,7 @@ func (k Keeper) HandleConsumerMisbehaviour(ctx sdk.Context, misbehaviour ibctmty for _, v := range evidence.ByzantineValidators { // convert consumer consensus address consuAddr := sdk.ConsAddress(v.Address.Bytes()) - provAddr := k.GetProviderAddrFromConsumerAddr(ctx, misbehaviour.Header1.Header.ChainID, types.ConsumerConsAddress{consuAddr}) + provAddr := k.GetProviderAddrFromConsumerAddr(ctx, misbehaviour.Header1.Header.ChainID, types.NewConsumerConsAddress(consuAddr)) k.stakingKeeper.ValidatorByConsAddr(ctx, consuAddr) val, ok := k.stakingKeeper.GetValidatorByConsAddr(ctx, provAddr.Address) @@ -67,9 +67,9 @@ func (k Keeper) HandleConsumerMisbehaviour(ctx sdk.Context, misbehaviour ibctmty return nil } -// ConstructLigthClientEvidence constructs and returns a CometBFT Ligth Client Attack(LCA) evidence struct +// ConstructLightClientEvidence constructs and returns a CometBFT Ligth Client Attack(LCA) evidence struct // from the given misbehaviour -func (k Keeper) ConstructLigthClientEvidence(ctx sdk.Context, misbehaviour ibctmtypes.Misbehaviour) (*tmtypes.LightClientAttackEvidence, error) { +func (k Keeper) ConstructLightClientEvidence(ctx sdk.Context, misbehaviour ibctmtypes.Misbehaviour) (*tmtypes.LightClientAttackEvidence, error) { // construct the trusted and conflicetd ligth blocks trusted, err := headerToLightBlock(*misbehaviour.Header1) diff --git a/x/ccv/provider/types/codec.go b/x/ccv/provider/types/codec.go index 3e4b34dd42..0ef3c2d296 100644 --- a/x/ccv/provider/types/codec.go +++ b/x/ccv/provider/types/codec.go @@ -36,6 +36,11 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) { &EquivocationProposal{}, ) + registry.RegisterImplementations( + (*sdk.Msg)(nil), + &MsgSubmitConsumerMisbehaviour{}, + ) + msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) } diff --git a/x/ccv/provider/types/tx.pb.go b/x/ccv/provider/types/tx.pb.go index 27757abd0c..f27ab52533 100644 --- a/x/ccv/provider/types/tx.pb.go +++ b/x/ccv/provider/types/tx.pb.go @@ -12,7 +12,6 @@ import ( grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" _ "github.com/regen-network/cosmos-proto" - _ "github.com/tendermint/tendermint/proto/tendermint/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -195,6 +194,7 @@ var xxx_messageInfo_MsgRegisterConsumerRewardDenomResponse proto.InternalMessage // MsgSubmitConsumerMisbehaviour defines a message that reports a misbehaviour // observed on a consumer chain +// Note that the misbheaviour' headers must contain the same trusted states type MsgSubmitConsumerMisbehaviour struct { Submitter string `protobuf:"bytes,1,opt,name=submitter,proto3" json:"submitter,omitempty"` // The Misbehaviour of the consumer chain wrapping @@ -285,44 +285,43 @@ func init() { } var fileDescriptor_43221a4391e9fbf4 = []byte{ - // 578 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x3f, 0x6f, 0xd3, 0x4e, - 0x18, 0x8e, 0x7f, 0xd5, 0x0f, 0xda, 0x6b, 0x41, 0xc2, 0xea, 0xd0, 0x9a, 0xe0, 0x40, 0x10, 0xd0, - 0xa1, 0xf8, 0x94, 0x30, 0x20, 0x2a, 0x31, 0x24, 0x65, 0x81, 0x2a, 0x12, 0x32, 0x03, 0x12, 0x03, - 0x91, 0x7d, 0x7e, 0xb9, 0x9c, 0x88, 0xef, 0xac, 0xbb, 0xb3, 0xa9, 0xbf, 0x01, 0x23, 0x4c, 0x88, - 0xad, 0x1f, 0x00, 0x89, 0xaf, 0xc1, 0xd8, 0x91, 0x09, 0xa1, 0x64, 0x61, 0x66, 0x64, 0x42, 0xfe, - 0x97, 0xb8, 0x22, 0x44, 0x11, 0xb0, 0xbd, 0x7f, 0x1e, 0x3f, 0xcf, 0xf3, 0xea, 0x3d, 0xbf, 0x68, - 0x9f, 0x71, 0x0d, 0x92, 0x8c, 0x3c, 0xc6, 0x87, 0x0a, 0x48, 0x2c, 0x99, 0x4e, 0x31, 0x21, 0x09, - 0x8e, 0xa4, 0x48, 0x58, 0x00, 0x12, 0x27, 0x1d, 0xac, 0x8f, 0x9d, 0x48, 0x0a, 0x2d, 0xcc, 0xeb, - 0x0b, 0xd0, 0x0e, 0x21, 0x89, 0x53, 0xa1, 0x9d, 0xa4, 0x63, 0x35, 0xa9, 0x10, 0x74, 0x0c, 0xd8, - 0x8b, 0x18, 0xf6, 0x38, 0x17, 0xda, 0xd3, 0x4c, 0x70, 0x55, 0x50, 0x58, 0xdb, 0x54, 0x50, 0x91, - 0x87, 0x38, 0x8b, 0xca, 0xea, 0x2e, 0x11, 0x2a, 0x14, 0x6a, 0x58, 0x34, 0x8a, 0xa4, 0x6a, 0x95, - 0x74, 0x79, 0xe6, 0xc7, 0x2f, 0xb0, 0xc7, 0xd3, 0xb2, 0x85, 0x99, 0x4f, 0xf0, 0x98, 0xd1, 0x91, - 0x26, 0x63, 0x06, 0x5c, 0x2b, 0xac, 0x81, 0x07, 0x20, 0x43, 0xc6, 0x75, 0xee, 0x7b, 0x96, 0x95, - 0x1f, 0xb4, 0x6a, 0x7d, 0x9d, 0x46, 0xa0, 0x30, 0x64, 0xb6, 0x39, 0x81, 0x02, 0xd0, 0x7e, 0x67, - 0xa0, 0xed, 0x81, 0xa2, 0x3d, 0xa5, 0x18, 0xe5, 0x87, 0x82, 0xab, 0x38, 0x04, 0x79, 0x04, 0xa9, - 0xb9, 0x8b, 0xd6, 0x8b, 0xb1, 0x59, 0xb0, 0x63, 0x5c, 0x35, 0xf6, 0x36, 0xdc, 0xf3, 0x79, 0xfe, - 0x30, 0x30, 0xef, 0xa2, 0x0b, 0xd5, 0xf8, 0x43, 0x2f, 0x08, 0xe4, 0xce, 0x7f, 0x59, 0xbf, 0x6f, - 0x7e, 0xff, 0xd2, 0xba, 0x98, 0x7a, 0xe1, 0xf8, 0xa0, 0x9d, 0x55, 0x41, 0xa9, 0xb6, 0xbb, 0x55, - 0x01, 0x7b, 0x41, 0x20, 0xcd, 0x6b, 0x68, 0x8b, 0x94, 0x12, 0xc3, 0x97, 0x90, 0xee, 0xac, 0xe5, - 0xbc, 0x9b, 0x64, 0x2e, 0x7b, 0xb0, 0xfe, 0xfa, 0xa4, 0xd5, 0xf8, 0x76, 0xd2, 0x6a, 0xb4, 0x6d, - 0xd4, 0x5c, 0x64, 0xcc, 0x05, 0x15, 0x09, 0xae, 0xa0, 0xfd, 0x1c, 0xd9, 0x03, 0x45, 0x5d, 0xa0, - 0x4c, 0x69, 0x90, 0x15, 0xc2, 0x85, 0x57, 0x9e, 0x0c, 0x1e, 0x00, 0x17, 0xa1, 0xb9, 0x8d, 0xfe, - 0x0f, 0xb2, 0xa0, 0xf4, 0x5f, 0x24, 0x66, 0x13, 0x6d, 0x04, 0x10, 0x09, 0xc5, 0xb4, 0x28, 0x9d, - 0xbb, 0xf3, 0x42, 0x4d, 0x7f, 0x0f, 0xdd, 0x5c, 0xce, 0x3f, 0x73, 0xf2, 0xde, 0x40, 0x57, 0x06, - 0x8a, 0x3e, 0x89, 0xfd, 0x90, 0xe9, 0x0a, 0x38, 0x60, 0xca, 0x87, 0x91, 0x97, 0x30, 0x11, 0xcb, - 0x4c, 0x53, 0xe5, 0x5d, 0x0d, 0xb2, 0x74, 0x33, 0x2f, 0x98, 0x8f, 0xd1, 0x56, 0x58, 0x43, 0xe7, - 0xa6, 0x36, 0xbb, 0xfb, 0x0e, 0xf3, 0x89, 0x53, 0x5f, 0xb6, 0x53, 0x5b, 0x6f, 0xd2, 0x71, 0xea, - 0x0a, 0xee, 0x19, 0x86, 0xda, 0x14, 0xb7, 0xd0, 0x8d, 0xa5, 0xd6, 0xaa, 0x21, 0xba, 0x3f, 0xd6, - 0xd0, 0xda, 0x40, 0x51, 0xf3, 0xad, 0x81, 0x2e, 0xfd, 0xfa, 0x1a, 0xee, 0x39, 0x2b, 0xfc, 0x08, - 0xce, 0xa2, 0x7d, 0x59, 0xbd, 0x3f, 0xfe, 0xb4, 0xf2, 0x66, 0x7e, 0x34, 0xd0, 0xe5, 0x65, 0x8b, - 0x3e, 0x5c, 0x55, 0x62, 0x09, 0x89, 0x75, 0xf4, 0x0f, 0x48, 0x66, 0x8e, 0x3f, 0x18, 0xc8, 0x5a, - 0xf2, 0x1e, 0xfa, 0xab, 0x6a, 0xfd, 0x9e, 0xc3, 0x7a, 0xf4, 0xf7, 0x1c, 0x95, 0xdd, 0xfe, 0xd3, - 0x4f, 0x13, 0xdb, 0x38, 0x9d, 0xd8, 0xc6, 0xd7, 0x89, 0x6d, 0xbc, 0x99, 0xda, 0x8d, 0xd3, 0xa9, - 0xdd, 0xf8, 0x3c, 0xb5, 0x1b, 0xcf, 0xee, 0x53, 0xa6, 0x47, 0xb1, 0xef, 0x10, 0x11, 0x96, 0x57, - 0x0a, 0xcf, 0x65, 0x6f, 0xcf, 0x0e, 0x68, 0xd2, 0xc5, 0xc7, 0x67, 0xaf, 0x68, 0x7e, 0x6d, 0xfc, - 0x73, 0xf9, 0x95, 0xb9, 0xf3, 0x33, 0x00, 0x00, 0xff, 0xff, 0x7c, 0xb5, 0x5a, 0x59, 0x76, 0x05, - 0x00, 0x00, + // 568 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x3f, 0x6f, 0x13, 0x4f, + 0x10, 0xf5, 0xfd, 0xa2, 0x1f, 0x24, 0x9b, 0x80, 0xc4, 0xc9, 0x85, 0x73, 0x98, 0x33, 0x18, 0x01, + 0x29, 0xc2, 0xae, 0x6c, 0x0a, 0x44, 0x24, 0x0a, 0x3b, 0x34, 0x10, 0x59, 0x42, 0x47, 0x81, 0x44, + 0x81, 0x75, 0xb7, 0xbb, 0xac, 0x57, 0xf8, 0x76, 0x4f, 0xbb, 0x7b, 0x47, 0xee, 0x1b, 0x50, 0x42, + 0x85, 0xe8, 0xf2, 0x01, 0x90, 0xf8, 0x1a, 0x94, 0x29, 0xa9, 0x10, 0xb2, 0x1b, 0x6a, 0x4a, 0x2a, + 0xe4, 0xfb, 0x63, 0x5f, 0x84, 0xb1, 0x2c, 0xa0, 0xdb, 0x99, 0x79, 0xfb, 0xde, 0x1b, 0xcd, 0x68, + 0xc0, 0x3e, 0x17, 0x86, 0x2a, 0x3c, 0xf2, 0xb9, 0x18, 0x6a, 0x8a, 0x63, 0xc5, 0x4d, 0x8a, 0x30, + 0x4e, 0x50, 0xa4, 0x64, 0xc2, 0x09, 0x55, 0x28, 0xe9, 0x20, 0x73, 0x0c, 0x23, 0x25, 0x8d, 0xb4, + 0xaf, 0x2f, 0x41, 0x43, 0x8c, 0x13, 0x58, 0xa2, 0x61, 0xd2, 0x71, 0x9a, 0x4c, 0x4a, 0x36, 0xa6, + 0xc8, 0x8f, 0x38, 0xf2, 0x85, 0x90, 0xc6, 0x37, 0x5c, 0x0a, 0x9d, 0x53, 0x38, 0x75, 0x26, 0x99, + 0xcc, 0x9e, 0x68, 0xf6, 0x2a, 0xb2, 0xbb, 0x58, 0xea, 0x50, 0xea, 0x61, 0x5e, 0xc8, 0x83, 0xb2, + 0x54, 0xd0, 0x65, 0x51, 0x10, 0xbf, 0x40, 0xbe, 0x48, 0x8b, 0x12, 0xe2, 0x01, 0x46, 0x63, 0xce, + 0x46, 0x06, 0x8f, 0x39, 0x15, 0x46, 0x23, 0x43, 0x05, 0xa1, 0x2a, 0xe4, 0xc2, 0x64, 0xbe, 0xe7, + 0x51, 0xfe, 0xa1, 0xfd, 0xce, 0x02, 0xf5, 0x81, 0x66, 0x3d, 0xad, 0x39, 0x13, 0x87, 0x52, 0xe8, + 0x38, 0xa4, 0xea, 0x88, 0xa6, 0xf6, 0x2e, 0xd8, 0xcc, 0xbb, 0xe2, 0xa4, 0x61, 0x5d, 0xb5, 0xf6, + 0xb6, 0xbc, 0xf3, 0x59, 0xfc, 0x90, 0xd8, 0x77, 0xc1, 0x85, 0xb2, 0xbb, 0xa1, 0x4f, 0x88, 0x6a, + 0xfc, 0x37, 0xab, 0xf7, 0xed, 0xef, 0x5f, 0x5a, 0x17, 0x53, 0x3f, 0x1c, 0x1f, 0xb4, 0x67, 0x59, + 0xaa, 0x75, 0xdb, 0xdb, 0x29, 0x81, 0x3d, 0x42, 0x94, 0x7d, 0x0d, 0xec, 0xe0, 0x42, 0x62, 0xf8, + 0x92, 0xa6, 0x8d, 0x8d, 0x8c, 0x77, 0x1b, 0x2f, 0x64, 0x0f, 0x36, 0x5f, 0x9f, 0xb4, 0x6a, 0xdf, + 0x4e, 0x5a, 0xb5, 0xb6, 0x0b, 0x9a, 0xcb, 0x8c, 0x79, 0x54, 0x47, 0x52, 0x68, 0xda, 0x7e, 0x0e, + 0xdc, 0x81, 0x66, 0x1e, 0x65, 0x5c, 0x1b, 0xaa, 0x4a, 0x84, 0x47, 0x5f, 0xf9, 0x8a, 0x3c, 0xa0, + 0x42, 0x86, 0x76, 0x1d, 0xfc, 0x4f, 0x66, 0x8f, 0xc2, 0x7f, 0x1e, 0xd8, 0x4d, 0xb0, 0x45, 0x68, + 0x24, 0x35, 0x37, 0xb2, 0x70, 0xee, 0x2d, 0x12, 0x15, 0xfd, 0x3d, 0x70, 0x73, 0x35, 0xff, 0xdc, + 0xc9, 0x7b, 0x0b, 0x5c, 0x19, 0x68, 0xf6, 0x24, 0x0e, 0x42, 0x6e, 0x4a, 0xe0, 0x80, 0xeb, 0x80, + 0x8e, 0xfc, 0x84, 0xcb, 0x58, 0xcd, 0x34, 0x75, 0x56, 0x35, 0x54, 0x15, 0x6e, 0x16, 0x09, 0xfb, + 0x31, 0xd8, 0x09, 0x2b, 0xe8, 0xcc, 0xd4, 0x76, 0x77, 0x1f, 0xf2, 0x00, 0xc3, 0xea, 0x2c, 0x61, + 0x65, 0x7a, 0x49, 0x07, 0x56, 0x15, 0xbc, 0x33, 0x0c, 0x95, 0x2e, 0x6e, 0x81, 0x1b, 0x2b, 0xad, + 0x95, 0x4d, 0x74, 0x7f, 0x6c, 0x80, 0x8d, 0x81, 0x66, 0xf6, 0x5b, 0x0b, 0x5c, 0xfa, 0x75, 0x1b, + 0xee, 0xc1, 0x35, 0xf6, 0x1c, 0x2e, 0x9b, 0x97, 0xd3, 0xfb, 0xe3, 0xaf, 0xa5, 0x37, 0xfb, 0xa3, + 0x05, 0x2e, 0xaf, 0x1a, 0xf4, 0xe1, 0xba, 0x12, 0x2b, 0x48, 0x9c, 0xa3, 0x7f, 0x40, 0x32, 0x77, + 0xfc, 0xc1, 0x02, 0xce, 0x8a, 0x7d, 0xe8, 0xaf, 0xab, 0xf5, 0x7b, 0x0e, 0xe7, 0xd1, 0xdf, 0x73, + 0x94, 0x76, 0xfb, 0x4f, 0x3f, 0x4d, 0x5c, 0xeb, 0x74, 0xe2, 0x5a, 0x5f, 0x27, 0xae, 0xf5, 0x66, + 0xea, 0xd6, 0x4e, 0xa7, 0x6e, 0xed, 0xf3, 0xd4, 0xad, 0x3d, 0xbb, 0xcf, 0xb8, 0x19, 0xc5, 0x01, + 0xc4, 0x32, 0x2c, 0x8e, 0x10, 0x5a, 0xc8, 0xde, 0x9e, 0xdf, 0xc7, 0xa4, 0x8b, 0x8e, 0xcf, 0x1e, + 0x49, 0x93, 0x46, 0x54, 0x07, 0xe7, 0xb2, 0x2b, 0x73, 0xe7, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xe3, 0x4f, 0x57, 0x26, 0x55, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.