From 8610c4338affdc6be200d8f4f45c0a8f9cf33202 Mon Sep 17 00:00:00 2001 From: Hyoung-yoon Kim Date: Thu, 30 Nov 2023 12:27:35 -0500 Subject: [PATCH] chore: replace GetSigners() with protobuf annotations --- cmd/seda-chaind/cmd/root.go | 4 +- go.mod | 2 +- proto/sedachain/wasm_storage/v1/tx.proto | 21 ++++-- x/wasm-storage/types/tx.go | 36 ---------- x/wasm-storage/types/tx.pb.go | 89 +++++++++++++----------- 5 files changed, 65 insertions(+), 87 deletions(-) diff --git a/cmd/seda-chaind/cmd/root.go b/cmd/seda-chaind/cmd/root.go index 64041f52..5625b5b0 100644 --- a/cmd/seda-chaind/cmd/root.go +++ b/cmd/seda-chaind/cmd/root.go @@ -65,7 +65,7 @@ func NewRootCmd() *cobra.Command { app.DefaultNodeHome, 0, simtestutil.NewAppOptionsWithFlagHome(tempDir()), - baseapp.SetChainID("tempid"), + baseapp.SetChainID("tempchainid"), ) encodingConfig := app.EncodingConfig{ InterfaceRegistry: tempApp.InterfaceRegistry(), @@ -347,7 +347,7 @@ func appExport( } var tempDir = func() string { - dir, err := os.MkdirTemp("", "sedachain") + dir, err := os.MkdirTemp("", "tempchain") if err != nil { panic("failed to create temp dir: " + err.Error()) } diff --git a/go.mod b/go.mod index b708e830..c92f8ba5 100644 --- a/go.mod +++ b/go.mod @@ -17,6 +17,7 @@ require ( github.com/CosmWasm/wasmd v0.50.0 github.com/cometbft/cometbft v0.38.1 github.com/cosmos/cosmos-db v1.0.0 + github.com/cosmos/cosmos-proto v1.0.0-beta.3 github.com/cosmos/cosmos-sdk v0.50.1 github.com/cosmos/go-bip39 v1.0.0 github.com/cosmos/gogoproto v1.4.11 @@ -73,7 +74,6 @@ require ( github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect github.com/cometbft/cometbft-db v0.8.0 // indirect github.com/cosmos/btcutil v1.0.5 // indirect - github.com/cosmos/cosmos-proto v1.0.0-beta.3 // indirect github.com/cosmos/gogogateway v1.2.0 // indirect github.com/cosmos/iavl v1.0.0 // indirect github.com/cosmos/ics23/go v0.10.0 // indirect diff --git a/proto/sedachain/wasm_storage/v1/tx.proto b/proto/sedachain/wasm_storage/v1/tx.proto index 5af11d03..d869e51d 100644 --- a/proto/sedachain/wasm_storage/v1/tx.proto +++ b/proto/sedachain/wasm_storage/v1/tx.proto @@ -1,9 +1,11 @@ syntax = "proto3"; package sedachain.wasm_storage.v1; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/msg/v1/msg.proto"; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; import "sedachain/wasm_storage/v1/wasm_storage.proto"; -import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/sedaprotocol/seda-chain/x/wasm-storage/types"; @@ -18,7 +20,9 @@ service Msg { } message MsgStoreDataRequestWasm { - string sender = 1; + option (cosmos.msg.v1.signer) = "sender"; + + string sender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; bytes wasm = 2; WasmType wasmType = 3; } @@ -26,7 +30,9 @@ message MsgStoreDataRequestWasm { message MsgStoreDataRequestWasmResponse { string hash = 1; } message MsgStoreOverlayWasm { - string sender = 1; + option (cosmos.msg.v1.signer) = "sender"; + + string sender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; bytes wasm = 2; WasmType wasmType = 3; } @@ -34,8 +40,10 @@ message MsgStoreOverlayWasm { message MsgStoreOverlayWasmResponse { string hash = 1; } message MsgInstantiateAndRegisterProxyContract { - string sender = 1; - string admin = 2; + option (cosmos.msg.v1.signer) = "sender"; + + string sender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string admin = 2 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; uint64 code_id = 3 [ (gogoproto.customname) = "CodeID" ]; string label = 4; bytes msg = 5 @@ -50,5 +58,6 @@ message MsgInstantiateAndRegisterProxyContract { } message MsgInstantiateAndRegisterProxyContractResponse { - string contract_address = 1; + string contract_address = 1 + [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; } diff --git a/x/wasm-storage/types/tx.go b/x/wasm-storage/types/tx.go index e1a3f5e9..4b44cdc7 100644 --- a/x/wasm-storage/types/tx.go +++ b/x/wasm-storage/types/tx.go @@ -28,18 +28,6 @@ func (msg MsgStoreDataRequestWasm) ValidateBasic() error { return nil } -func (msg MsgStoreDataRequestWasm) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) -} - -func (msg MsgStoreDataRequestWasm) GetSigners() []sdk.AccAddress { - senderAddr, err := sdk.AccAddressFromBech32(msg.Sender) - if err != nil { // should never happen as ValidateBasic() rejects invalid addresses - panic(err.Error()) - } - return []sdk.AccAddress{senderAddr} -} - func (msg MsgStoreOverlayWasm) Route() string { return RouterKey } @@ -61,18 +49,6 @@ func (msg MsgStoreOverlayWasm) ValidateBasic() error { return nil } -func (msg MsgStoreOverlayWasm) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) -} - -func (msg MsgStoreOverlayWasm) GetSigners() []sdk.AccAddress { - senderAddr, err := sdk.AccAddressFromBech32(msg.Sender) - if err != nil { // should never happen as ValidateBasic() rejects invalid addresses - panic(err.Error()) - } - return []sdk.AccAddress{senderAddr} -} - func (msg MsgInstantiateAndRegisterProxyContract) Route() string { return RouterKey } @@ -111,15 +87,3 @@ func (msg MsgInstantiateAndRegisterProxyContract) ValidateBasic() error { } return nil } - -func (msg MsgInstantiateAndRegisterProxyContract) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) -} - -func (msg MsgInstantiateAndRegisterProxyContract) GetSigners() []sdk.AccAddress { - senderAddr, err := sdk.AccAddressFromBech32(msg.Sender) - if err != nil { // should never happen as ValidateBasic() rejects invalid addresses - panic(err.Error()) - } - return []sdk.AccAddress{senderAddr} -} diff --git a/x/wasm-storage/types/tx.pb.go b/x/wasm-storage/types/tx.pb.go index 52ee393b..46082c19 100644 --- a/x/wasm-storage/types/tx.pb.go +++ b/x/wasm-storage/types/tx.pb.go @@ -7,8 +7,10 @@ import ( context "context" fmt "fmt" github_com_CosmWasm_wasmd_x_wasm_types "github.com/CosmWasm/wasmd/x/wasm/types" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -403,48 +405,51 @@ func init() { } var fileDescriptor_10a76e8135c0d000 = []byte{ - // 642 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0xb1, 0x6f, 0x13, 0x3f, - 0x14, 0xce, 0x35, 0x6d, 0xda, 0xfa, 0xf7, 0x13, 0x54, 0x47, 0x45, 0xaf, 0x41, 0xba, 0x44, 0xa9, - 0x84, 0x82, 0x44, 0x7d, 0x24, 0x08, 0x10, 0x48, 0x08, 0x35, 0xe9, 0x92, 0x21, 0x2a, 0x18, 0xa4, - 0x4a, 0x30, 0x44, 0xce, 0xd9, 0xbd, 0x9c, 0xc8, 0x9d, 0xc3, 0x3d, 0xb7, 0x4d, 0x18, 0x19, 0x3a, - 0xf3, 0x77, 0xb0, 0xf2, 0x0f, 0x30, 0x76, 0xec, 0xc8, 0x54, 0x50, 0xfa, 0x1f, 0x30, 0x32, 0x21, - 0xdb, 0x97, 0x28, 0x88, 0x26, 0x4a, 0x85, 0xc4, 0x64, 0x3f, 0xfb, 0x7b, 0xdf, 0xfb, 0x9e, 0xfd, - 0xd9, 0xa8, 0x04, 0x9c, 0x51, 0xbf, 0x43, 0xc3, 0xd8, 0x3b, 0xa6, 0x10, 0xb5, 0x40, 0x8a, 0x84, - 0x06, 0xdc, 0x3b, 0xaa, 0x78, 0xb2, 0x8f, 0x7b, 0x89, 0x90, 0xc2, 0xde, 0x1c, 0x63, 0xf0, 0x24, - 0x06, 0x1f, 0x55, 0xf2, 0xeb, 0x81, 0x08, 0x84, 0x46, 0x79, 0x6a, 0x66, 0x12, 0xf2, 0x77, 0xa7, - 0x93, 0xfe, 0x46, 0x60, 0xd0, 0xae, 0x2f, 0x20, 0x12, 0xe0, 0xb5, 0x29, 0x28, 0x48, 0x9b, 0x4b, - 0x5a, 0xf1, 0x7c, 0x11, 0xc6, 0x66, 0xbf, 0x74, 0x62, 0xa1, 0x8d, 0x26, 0x04, 0x2f, 0xa5, 0x48, - 0xf8, 0x2e, 0x95, 0x94, 0xf0, 0x77, 0x87, 0x1c, 0xe4, 0x3e, 0x85, 0xc8, 0xbe, 0x89, 0x72, 0xc0, - 0x63, 0xc6, 0x13, 0xc7, 0x2a, 0x5a, 0xe5, 0x55, 0x92, 0x46, 0xb6, 0x8d, 0x16, 0x55, 0x25, 0x67, - 0xa1, 0x68, 0x95, 0xff, 0x27, 0x7a, 0x6e, 0x3f, 0x43, 0x2b, 0x6a, 0x7c, 0x35, 0xe8, 0x71, 0x27, - 0x5b, 0xb4, 0xca, 0xd7, 0xaa, 0x5b, 0x78, 0x6a, 0x67, 0x78, 0x3f, 0x85, 0x92, 0x71, 0x52, 0xe9, - 0x01, 0x2a, 0x4c, 0xd1, 0x41, 0x38, 0xf4, 0x44, 0x0c, 0x5c, 0xd5, 0xed, 0x50, 0xe8, 0xa4, 0x6a, - 0xf4, 0xbc, 0xf4, 0xc1, 0x42, 0x37, 0x46, 0x79, 0x7b, 0x47, 0x3c, 0xe9, 0xd2, 0xc1, 0xbf, 0xd7, - 0x5e, 0x41, 0xb7, 0x2e, 0xd1, 0x30, 0x53, 0xf7, 0x8f, 0x05, 0x74, 0xbb, 0x09, 0x41, 0x23, 0x06, - 0x49, 0x63, 0x19, 0x52, 0xc9, 0x77, 0x62, 0x46, 0x78, 0x10, 0x82, 0xe4, 0xc9, 0xf3, 0x44, 0xf4, - 0x07, 0x75, 0x11, 0xcb, 0x84, 0xfa, 0x72, 0x6a, 0x2b, 0xeb, 0x68, 0x89, 0xb2, 0x28, 0x8c, 0x75, - 0x2f, 0xab, 0xc4, 0x04, 0xf6, 0x16, 0x5a, 0xf6, 0x05, 0xe3, 0xad, 0x90, 0xe9, 0x5e, 0x16, 0x6b, - 0x68, 0x78, 0x5e, 0xc8, 0xd5, 0x05, 0xe3, 0x8d, 0x5d, 0x92, 0x53, 0x5b, 0x0d, 0xa6, 0x52, 0xbb, - 0xb4, 0xcd, 0xbb, 0xce, 0xa2, 0x49, 0xd5, 0x81, 0xbd, 0x87, 0xb2, 0x11, 0x04, 0xce, 0x92, 0x3a, - 0x9a, 0xda, 0xd3, 0x9f, 0xe7, 0x85, 0xc7, 0x41, 0x28, 0x3b, 0x87, 0x6d, 0xec, 0x8b, 0xc8, 0xab, - 0x0b, 0x88, 0x54, 0x57, 0xda, 0x64, 0xcc, 0xeb, 0xeb, 0xd1, 0x93, 0x83, 0x1e, 0x07, 0x4c, 0xe8, - 0xf1, 0x48, 0x6d, 0x93, 0x03, 0xd0, 0x80, 0x13, 0xc5, 0x64, 0x53, 0xb4, 0x74, 0x70, 0x18, 0x33, - 0x70, 0x72, 0xc5, 0x6c, 0xf9, 0xbf, 0xea, 0x26, 0x36, 0x66, 0xc4, 0xca, 0x8c, 0x38, 0x35, 0x23, - 0xae, 0x8b, 0x30, 0xae, 0xdd, 0x3b, 0x3d, 0x2f, 0x64, 0x3e, 0x7d, 0x2b, 0x94, 0x27, 0x2a, 0xa6, - 0xce, 0x35, 0xc3, 0x36, 0xb0, 0xb7, 0x69, 0x35, 0x95, 0x00, 0xc4, 0x30, 0xab, 0xb3, 0x05, 0xda, - 0x95, 0xce, 0xb2, 0xb9, 0x4f, 0x35, 0xb7, 0x37, 0xd0, 0xf2, 0x41, 0xd8, 0x6f, 0xa9, 0x5e, 0x56, - 0x8a, 0x56, 0x79, 0x85, 0xe4, 0x0e, 0xc2, 0x7e, 0x13, 0x82, 0xd2, 0x1b, 0x84, 0xe7, 0x3b, 0xf3, - 0xf1, 0xd5, 0xdd, 0x41, 0x6b, 0x7e, 0xba, 0xd6, 0xa2, 0x8c, 0x25, 0x1c, 0x20, 0xbd, 0x85, 0xeb, - 0xa3, 0xf5, 0x1d, 0xb3, 0x5c, 0xfd, 0x92, 0x45, 0xd9, 0x26, 0x04, 0xf6, 0x89, 0x85, 0xd6, 0x2f, - 0x7d, 0x4e, 0xd5, 0x19, 0xa6, 0x9a, 0x62, 0xfd, 0xfc, 0x93, 0xab, 0xe7, 0x8c, 0xb5, 0xbf, 0x47, - 0x6b, 0x7f, 0x3c, 0x0b, 0x3c, 0x07, 0xdf, 0x04, 0x3e, 0xff, 0xf0, 0x6a, 0xf8, 0x71, 0xed, 0xcf, - 0x16, 0xda, 0x9a, 0xc7, 0xdb, 0x3b, 0xb3, 0xf9, 0xe7, 0xa0, 0xc8, 0x37, 0xfe, 0x9a, 0x62, 0xa4, - 0xba, 0xf6, 0xe2, 0x74, 0xe8, 0x5a, 0x67, 0x43, 0xd7, 0xfa, 0x3e, 0x74, 0xad, 0x8f, 0x17, 0x6e, - 0xe6, 0xec, 0xc2, 0xcd, 0x7c, 0xbd, 0x70, 0x33, 0xaf, 0x1f, 0x4d, 0xf8, 0x52, 0x95, 0xd3, 0x9f, - 0xa7, 0x2f, 0xba, 0x3a, 0xd8, 0x36, 0xbf, 0xb1, 0x79, 0x12, 0xdb, 0xa3, 0xff, 0x58, 0x9b, 0xb5, - 0x9d, 0xd3, 0xc8, 0xfb, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x58, 0xe1, 0x2f, 0xe6, 0x0b, 0x06, - 0x00, 0x00, + // 691 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0xcf, 0x6b, 0x13, 0x4f, + 0x14, 0xcf, 0x7e, 0xd3, 0xa4, 0xfd, 0x4e, 0x45, 0xcb, 0x1a, 0xe8, 0x36, 0xc2, 0x26, 0xa4, 0x20, + 0x41, 0xcc, 0x6e, 0x13, 0x51, 0xb1, 0x20, 0xd2, 0xa4, 0x97, 0x1c, 0x42, 0x75, 0x2b, 0x14, 0xbc, + 0x84, 0xc9, 0xee, 0x74, 0xb2, 0x98, 0xdd, 0x89, 0xfb, 0x26, 0x6d, 0xe2, 0xd1, 0x83, 0x67, 0xff, + 0x0d, 0x05, 0x41, 0xa8, 0x7f, 0x80, 0xc7, 0x1e, 0x8b, 0x27, 0x4f, 0x55, 0xd2, 0x83, 0xff, 0x83, + 0x27, 0x99, 0x9d, 0x49, 0x48, 0xb1, 0x89, 0xa9, 0x5e, 0x3c, 0xcd, 0x9b, 0x79, 0x9f, 0xf7, 0xfb, + 0x7d, 0x76, 0x51, 0x01, 0x88, 0x87, 0xdd, 0x36, 0xf6, 0x43, 0xfb, 0x10, 0x43, 0xd0, 0x04, 0xce, + 0x22, 0x4c, 0x89, 0x7d, 0x50, 0xb6, 0x79, 0xdf, 0xea, 0x46, 0x8c, 0x33, 0x7d, 0x6d, 0x8c, 0xb1, + 0x26, 0x31, 0xd6, 0x41, 0x39, 0x6b, 0xba, 0x0c, 0x02, 0x06, 0x76, 0x0b, 0x83, 0xb0, 0x69, 0x11, + 0x8e, 0xcb, 0xb6, 0xcb, 0xfc, 0x50, 0x9a, 0x66, 0x57, 0x95, 0x3e, 0x00, 0x2a, 0x5c, 0x06, 0x40, + 0x95, 0x22, 0x43, 0x19, 0x65, 0xb1, 0x68, 0x0b, 0x49, 0xbd, 0xae, 0x49, 0x78, 0x53, 0x2a, 0xe4, + 0x45, 0xa9, 0x6e, 0x4f, 0x4f, 0xf4, 0x5c, 0x52, 0x31, 0xba, 0xf0, 0x5e, 0x43, 0xab, 0x0d, 0xa0, + 0xbb, 0x9c, 0x45, 0x64, 0x1b, 0x73, 0xec, 0x90, 0x17, 0x3d, 0x02, 0x7c, 0x0f, 0x43, 0xa0, 0x6f, + 0xa0, 0x34, 0x90, 0xd0, 0x23, 0x91, 0xa1, 0xe5, 0xb5, 0xe2, 0xff, 0x55, 0xe3, 0xf3, 0xc7, 0x52, + 0x46, 0xc5, 0xda, 0xf2, 0xbc, 0x88, 0x00, 0xec, 0xf2, 0xc8, 0x0f, 0xa9, 0xa3, 0x70, 0xba, 0x8e, + 0x16, 0x44, 0x0c, 0xe3, 0xbf, 0xbc, 0x56, 0xbc, 0xe2, 0xc4, 0xb2, 0xfe, 0x08, 0x2d, 0x89, 0xf3, + 0xe9, 0xa0, 0x4b, 0x8c, 0x64, 0x5e, 0x2b, 0x5e, 0xad, 0xac, 0x5b, 0x53, 0xfb, 0x64, 0xed, 0x29, + 0xa8, 0x33, 0x36, 0xda, 0x5c, 0x7e, 0xf5, 0xfd, 0xc3, 0x2d, 0x15, 0xa1, 0x70, 0x17, 0xe5, 0xa6, + 0xa4, 0xeb, 0x10, 0xe8, 0xb2, 0x10, 0x88, 0x48, 0xa2, 0x8d, 0xa1, 0x2d, 0x93, 0x76, 0x62, 0xb9, + 0xf0, 0x56, 0x43, 0xd7, 0x47, 0x76, 0x3b, 0x07, 0x24, 0xea, 0xe0, 0xc1, 0x3f, 0x5b, 0x62, 0x19, + 0xdd, 0xb8, 0x20, 0xd5, 0x99, 0xe5, 0x1d, 0x25, 0xd1, 0xcd, 0x06, 0xd0, 0x7a, 0x08, 0x1c, 0x87, + 0xdc, 0xc7, 0x9c, 0x6c, 0x85, 0x9e, 0x43, 0xa8, 0x0f, 0x9c, 0x44, 0x8f, 0x23, 0xd6, 0x1f, 0xd4, + 0x58, 0xc8, 0x23, 0xec, 0xf2, 0x3f, 0xa8, 0xd8, 0x42, 0x29, 0xec, 0x05, 0x7e, 0x18, 0x97, 0x3c, + 0xcb, 0x40, 0xc2, 0xf4, 0x75, 0xb4, 0xe8, 0x32, 0x8f, 0x34, 0x7d, 0x2f, 0x6e, 0xc6, 0x42, 0x15, + 0x0d, 0x4f, 0x73, 0xe9, 0x1a, 0xf3, 0x48, 0x7d, 0xdb, 0x49, 0x0b, 0x55, 0xdd, 0xd3, 0x33, 0x28, + 0xd5, 0xc1, 0x2d, 0xd2, 0x31, 0x16, 0xe2, 0x32, 0xe4, 0x45, 0xdf, 0x41, 0xc9, 0x00, 0xa8, 0x91, + 0x12, 0xbd, 0xad, 0x3e, 0xfc, 0x71, 0x9a, 0x7b, 0x40, 0x7d, 0xde, 0xee, 0xb5, 0x2c, 0x97, 0x05, + 0x76, 0x8d, 0x41, 0x20, 0x3a, 0x11, 0xaf, 0xb1, 0x67, 0xf7, 0xe3, 0xd3, 0xe6, 0x83, 0x2e, 0x01, + 0xcb, 0xc1, 0x87, 0xa3, 0x0a, 0x1b, 0x04, 0x00, 0x53, 0xe2, 0x08, 0x4f, 0x3a, 0x46, 0xa9, 0xfd, + 0x5e, 0xe8, 0x81, 0x91, 0xce, 0x27, 0x8b, 0xcb, 0x95, 0x35, 0x4b, 0x25, 0x2e, 0x68, 0x68, 0x29, + 0x1a, 0x5a, 0x35, 0xe6, 0x87, 0xd5, 0x8d, 0xe3, 0xd3, 0x5c, 0xe2, 0xdd, 0xd7, 0x5c, 0x71, 0x22, + 0xa2, 0xe2, 0xa4, 0x3c, 0x4a, 0xe0, 0x3d, 0x57, 0xd1, 0x84, 0x01, 0x38, 0xd2, 0xb3, 0x98, 0x07, + 0xe0, 0x0e, 0x37, 0x16, 0xe5, 0x42, 0x08, 0x59, 0x5f, 0x45, 0x8b, 0xfb, 0x7e, 0xbf, 0x29, 0x6a, + 0x59, 0xca, 0x6b, 0xc5, 0x25, 0x27, 0xbd, 0xef, 0xf7, 0x1b, 0x40, 0xcf, 0x0f, 0xba, 0x87, 0xac, + 0xf9, 0x86, 0x36, 0x9e, 0x7d, 0x0d, 0xad, 0xb8, 0xea, 0xad, 0x89, 0x65, 0xef, 0x7f, 0x3b, 0xc6, + 0x6b, 0x23, 0x0b, 0xf5, 0x5c, 0xf9, 0x94, 0x44, 0xc9, 0x06, 0x50, 0xfd, 0xb5, 0x86, 0x32, 0x17, + 0xf2, 0xbe, 0x32, 0x63, 0x79, 0xa7, 0x90, 0x2f, 0xbb, 0x79, 0x79, 0x9b, 0x71, 0x55, 0x2f, 0xd1, + 0xca, 0x2f, 0xc4, 0xb4, 0xe6, 0xf0, 0x37, 0x81, 0xcf, 0xde, 0xbb, 0x1c, 0x7e, 0x1c, 0xfb, 0x48, + 0x43, 0xeb, 0xf3, 0xd0, 0x66, 0x6b, 0xb6, 0xff, 0x39, 0x5c, 0x64, 0xeb, 0x7f, 0xed, 0x62, 0x94, + 0x75, 0xf5, 0xc9, 0xf1, 0xd0, 0xd4, 0x4e, 0x86, 0xa6, 0xf6, 0x6d, 0x68, 0x6a, 0x6f, 0xce, 0xcc, + 0xc4, 0xc9, 0x99, 0x99, 0xf8, 0x72, 0x66, 0x26, 0x9e, 0xdd, 0x9f, 0x58, 0x5f, 0x11, 0x2e, 0xfe, + 0xca, 0xbb, 0xac, 0x13, 0x5f, 0x4a, 0xf2, 0xb7, 0x20, 0x99, 0x53, 0x1a, 0xfd, 0x18, 0xe2, 0x9d, + 0x6e, 0xa5, 0x63, 0xe4, 0x9d, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x60, 0x19, 0xfd, 0xa3, 0xe8, + 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.