diff --git a/docs/proto-docs.md b/docs/proto-docs.md index 0b160f331d..64bd49b533 100644 --- a/docs/proto-docs.md +++ b/docs/proto-docs.md @@ -2943,6 +2943,7 @@ QueryCommitmentSettlementFeeCalcRequest is a request message for the CommitmentS | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `settlement` | [MsgMarketCommitmentSettleRequest](#provenance.exchange.v1.MsgMarketCommitmentSettleRequest) | | settlement is a market's commitment settlement request message. If no inputs are provided, only the to_fee_nav field will be populated in the response. | +| `include_breakdown_fields` | [bool](#bool) | | include_breakdown_fields controls the fields that are populated in the response. If false, only the exchange_fees field is populated. If true, all of the fields are populated as possible. If the settlement does not have any inputs, this field defaults to true. | diff --git a/proto/provenance/exchange/v1/query.proto b/proto/provenance/exchange/v1/query.proto index 0bf0ba5a3b..15495c0cf9 100644 --- a/proto/provenance/exchange/v1/query.proto +++ b/proto/provenance/exchange/v1/query.proto @@ -363,6 +363,11 @@ message QueryCommitmentSettlementFeeCalcRequest { // settlement is a market's commitment settlement request message. // If no inputs are provided, only the to_fee_nav field will be populated in the response. MsgMarketCommitmentSettleRequest settlement = 1; + // include_breakdown_fields controls the fields that are populated in the response. + // If false, only the exchange_fees field is populated. + // If true, all of the fields are populated as possible. + // If the settlement does not have any inputs, this field defaults to true. + bool include_breakdown_fields = 2; } // QueryCommitmentSettlementFeeCalcResponse is a response message for the CommitmentSettlementFeeCalc query. diff --git a/x/exchange/keeper/grpc_query.go b/x/exchange/keeper/grpc_query.go index f4ae912c88..52d3b65d57 100644 --- a/x/exchange/keeper/grpc_query.go +++ b/x/exchange/keeper/grpc_query.go @@ -392,6 +392,10 @@ func (k QueryServer) CommitmentSettlementFeeCalc(goCtx context.Context, req *exc return nil, status.Error(codes.InvalidArgument, err.Error()) } + if !req.IncludeBreakdownFields && len(req.Settlement.Inputs) > 0 { + resp = &exchange.QueryCommitmentSettlementFeeCalcResponse{ExchangeFees: resp.ExchangeFees} + } + return resp, nil } diff --git a/x/exchange/keeper/grpc_query_test.go b/x/exchange/keeper/grpc_query_test.go index fe1ec5537c..b2918efc4a 100644 --- a/x/exchange/keeper/grpc_query_test.go +++ b/x/exchange/keeper/grpc_query_test.go @@ -3948,6 +3948,7 @@ func (s *TestSuite) TestQueryServer_CommitmentSettlementFeeCalc() { {Assets: s.coin("1cherry"), Price: s.coin("20nhash")}, }, }, + IncludeBreakdownFields: true, }, expResp: &exchange.QueryCommitmentSettlementFeeCalcResponse{ InputTotal: s.coins("15apple"), @@ -3957,6 +3958,28 @@ func (s *TestSuite) TestQueryServer_CommitmentSettlementFeeCalc() { ToFeeNav: &exchange.NetAssetPrice{Assets: s.coin("1cherry"), Price: s.coin("20nhash")}, }, }, + { + name: "some inputs and navs: just exchange fees", + setup: func() { + s.requireCreateMarket(exchange.Market{ + MarketId: 2, + CommitmentSettlementBips: 50, + IntermediaryDenom: "cherry", + }) + }, + req: &exchange.QueryCommitmentSettlementFeeCalcRequest{ + Settlement: &exchange.MsgMarketCommitmentSettleRequest{ + MarketId: 2, + Inputs: []exchange.AccountAmount{{Account: s.addr1.String(), Amount: s.coins("15apple")}}, + Outputs: []exchange.AccountAmount{{Account: s.addr2.String(), Amount: s.coins("15apple")}}, + Navs: []exchange.NetAssetPrice{ + {Assets: s.coin("1apple"), Price: s.coin("4cherry")}, + {Assets: s.coin("1cherry"), Price: s.coin("20nhash")}, + }, + }, + }, + expResp: &exchange.QueryCommitmentSettlementFeeCalcResponse{ExchangeFees: s.coins("3nhash")}, + }, { name: "some inputs, navs from state", setup: func() { @@ -3980,6 +4003,7 @@ func (s *TestSuite) TestQueryServer_CommitmentSettlementFeeCalc() { Inputs: []exchange.AccountAmount{{Account: s.addr1.String(), Amount: s.coins("15apple")}}, Outputs: []exchange.AccountAmount{{Account: s.addr2.String(), Amount: s.coins("15apple")}}, }, + IncludeBreakdownFields: true, }, expResp: &exchange.QueryCommitmentSettlementFeeCalcResponse{ InputTotal: s.coins("15apple"), @@ -3989,6 +4013,32 @@ func (s *TestSuite) TestQueryServer_CommitmentSettlementFeeCalc() { ToFeeNav: &exchange.NetAssetPrice{Assets: s.coin("1cherry"), Price: s.coin("20nhash")}, }, }, + { + name: "some inputs, navs from state: just exchange fees", + setup: func() { + s.requireCreateMarket(exchange.Market{ + MarketId: 2, + CommitmentSettlementBips: 50, + IntermediaryDenom: "cherry", + }) + s.requireAddFinalizeAndActivateMarker(s.coin("1000000apple"), s.addr5) + s.requireAddFinalizeAndActivateMarker(s.coin("1000000cherry"), s.addr5) + + appleMarker := s.requireGetMarker("apple") + cherryMarker := s.requireGetMarker("cherry") + + s.requireSetNav(appleMarker, 1, "4cherry") + s.requireSetNav(cherryMarker, 1, "20nhash") + }, + req: &exchange.QueryCommitmentSettlementFeeCalcRequest{ + Settlement: &exchange.MsgMarketCommitmentSettleRequest{ + MarketId: 2, + Inputs: []exchange.AccountAmount{{Account: s.addr1.String(), Amount: s.coins("15apple")}}, + Outputs: []exchange.AccountAmount{{Account: s.addr2.String(), Amount: s.coins("15apple")}}, + }, + }, + expResp: &exchange.QueryCommitmentSettlementFeeCalcResponse{ExchangeFees: s.coins("3nhash")}, + }, } for _, tc := range tests { diff --git a/x/exchange/query.pb.go b/x/exchange/query.pb.go index 01a2ab3c5c..335e564ba4 100644 --- a/x/exchange/query.pb.go +++ b/x/exchange/query.pb.go @@ -1536,6 +1536,11 @@ type QueryCommitmentSettlementFeeCalcRequest struct { // settlement is a market's commitment settlement request message. // If no inputs are provided, only the to_fee_nav field will be populated in the response. Settlement *MsgMarketCommitmentSettleRequest `protobuf:"bytes,1,opt,name=settlement,proto3" json:"settlement,omitempty"` + // include_breakdown_fields controls the fields that are populated in the response. + // If false, only the exchange_fees field is populated. + // If true, all of the fields are populated as possible. + // If the settlement does not have any inputs, this field defaults to true. + IncludeBreakdownFields bool `protobuf:"varint,2,opt,name=include_breakdown_fields,json=includeBreakdownFields,proto3" json:"include_breakdown_fields,omitempty"` } func (m *QueryCommitmentSettlementFeeCalcRequest) Reset() { @@ -1580,6 +1585,13 @@ func (m *QueryCommitmentSettlementFeeCalcRequest) GetSettlement() *MsgMarketComm return nil } +func (m *QueryCommitmentSettlementFeeCalcRequest) GetIncludeBreakdownFields() bool { + if m != nil { + return m.IncludeBreakdownFields + } + return false +} + // QueryCommitmentSettlementFeeCalcResponse is a response message for the CommitmentSettlementFeeCalc query. type QueryCommitmentSettlementFeeCalcResponse struct { // exchange_fees is the total that the exchange would currently pay for the provided settlement. @@ -2010,132 +2022,134 @@ func init() { } var fileDescriptor_00949b75b1c10bfe = []byte{ - // 1997 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcd, 0x6f, 0x1b, 0xc7, - 0x15, 0xd7, 0xe8, 0xcb, 0xd2, 0xd3, 0x87, 0x91, 0x31, 0x1d, 0x50, 0x94, 0x4d, 0x29, 0x6b, 0x27, - 0x16, 0x64, 0x8b, 0x2b, 0x52, 0x1f, 0x71, 0x02, 0xb8, 0x89, 0xa4, 0x54, 0x82, 0x80, 0xc6, 0x56, - 0x36, 0x46, 0x13, 0xf8, 0x50, 0x66, 0xb4, 0x1c, 0xd1, 0x0b, 0x2d, 0x77, 0x99, 0xdd, 0x15, 0x23, - 0x41, 0xd0, 0xa1, 0x4d, 0x8b, 0x22, 0x3d, 0x15, 0xe8, 0x25, 0x85, 0xd1, 0xf4, 0xd2, 0x53, 0x2f, - 0xe9, 0xa1, 0x3d, 0xf5, 0xe0, 0x43, 0x0f, 0xcd, 0xa5, 0x80, 0xd1, 0x5e, 0x5a, 0xa0, 0x68, 0x0b, - 0xbb, 0xc7, 0xf6, 0x7f, 0x08, 0x76, 0x66, 0x96, 0xbb, 0x4b, 0xee, 0x17, 0x6d, 0x1a, 0xd0, 0x49, - 0xe4, 0xf0, 0x7d, 0xfc, 0xde, 0xef, 0xcd, 0xbc, 0x99, 0xf7, 0x6c, 0x90, 0x9a, 0x96, 0xd9, 0xa2, - 0x06, 0x31, 0x54, 0x2a, 0xd3, 0x63, 0xf5, 0x21, 0x31, 0xea, 0x54, 0x6e, 0x95, 0xe5, 0x4f, 0x8f, - 0xa8, 0x75, 0x52, 0x6a, 0x5a, 0xa6, 0x63, 0xe2, 0x57, 0x7d, 0x99, 0x92, 0x27, 0x53, 0x6a, 0x95, - 0x0b, 0x33, 0xaa, 0x69, 0x37, 0x4c, 0xbb, 0xca, 0xa4, 0x64, 0xfe, 0x85, 0xab, 0x14, 0x16, 0xf9, - 0x37, 0x79, 0x9f, 0xd8, 0x94, 0xdb, 0x92, 0x5b, 0xe5, 0x7d, 0xea, 0x90, 0xb2, 0xdc, 0x24, 0x75, - 0xcd, 0x20, 0x8e, 0x66, 0x1a, 0x42, 0xb6, 0x18, 0x94, 0xf5, 0xa4, 0x54, 0x53, 0xf3, 0x7e, 0xbf, - 0x52, 0x37, 0xcd, 0xba, 0x4e, 0x65, 0xd2, 0xd4, 0x64, 0x62, 0x18, 0xa6, 0xc3, 0x94, 0x3d, 0x4f, - 0xb9, 0xba, 0x59, 0x37, 0x39, 0x02, 0xf7, 0x93, 0x58, 0x5d, 0x88, 0x09, 0x4b, 0x35, 0x1b, 0x0d, - 0xcd, 0x69, 0x50, 0xc3, 0xf1, 0xf4, 0xaf, 0xc5, 0x48, 0x36, 0x88, 0x75, 0x48, 0x9d, 0x14, 0x21, - 0xd3, 0xaa, 0x51, 0x2b, 0xcd, 0x52, 0x93, 0x58, 0xa4, 0xe1, 0x09, 0xcd, 0xc5, 0x08, 0x39, 0xc7, - 0x5c, 0x40, 0xfa, 0x12, 0x41, 0xfe, 0x03, 0x97, 0xb0, 0x7b, 0xae, 0xed, 0x6d, 0x4a, 0xb7, 0x88, - 0xae, 0x2a, 0xf4, 0xd3, 0x23, 0x6a, 0x3b, 0xf8, 0x0e, 0x8c, 0x13, 0xfb, 0xb0, 0xca, 0xdc, 0xe6, - 0x07, 0xe7, 0xd1, 0xc2, 0x44, 0x65, 0xbe, 0x14, 0x9d, 0x9d, 0xd2, 0x86, 0x7d, 0xc8, 0x4c, 0x28, - 0x63, 0x44, 0x7c, 0x72, 0xd5, 0xf7, 0xb5, 0x9a, 0x50, 0x1f, 0x4a, 0x56, 0xdf, 0xd4, 0x6a, 0x42, - 0x7d, 0x5f, 0x7c, 0x92, 0x7e, 0x37, 0x08, 0x33, 0x11, 0xd0, 0xec, 0xa6, 0x69, 0xd8, 0x14, 0x7f, - 0x00, 0x39, 0xd5, 0xa2, 0x2c, 0x37, 0xd5, 0x03, 0x4a, 0xab, 0x66, 0x93, 0xa5, 0x29, 0x8f, 0xe6, - 0x87, 0x16, 0x26, 0x2a, 0x33, 0x25, 0xb1, 0x3f, 0xdc, 0x2c, 0x97, 0x44, 0x96, 0x4b, 0x5b, 0xa6, - 0x66, 0x6c, 0x0e, 0x7f, 0xf3, 0xaf, 0xb9, 0x01, 0x05, 0x7b, 0xca, 0xdb, 0x94, 0xde, 0xe3, 0xaa, - 0xf8, 0x07, 0x30, 0x6b, 0x53, 0xc7, 0xd1, 0xa9, 0x9b, 0xb0, 0xea, 0x81, 0x4e, 0x9c, 0x90, 0xe5, - 0xc1, 0x6c, 0x96, 0xf3, 0xbe, 0x8d, 0x6d, 0x9d, 0x38, 0x01, 0xfb, 0x9f, 0xc0, 0x95, 0x80, 0x7d, - 0xcb, 0x75, 0x1f, 0x72, 0x30, 0x94, 0xcd, 0xc1, 0x8c, 0x6f, 0x44, 0x71, 0x6d, 0xf8, 0x1e, 0xa4, - 0x32, 0xe4, 0x18, 0x63, 0x3b, 0xd4, 0xe1, 0x6c, 0x8a, 0x44, 0xce, 0xc0, 0x18, 0xcb, 0x42, 0x55, - 0xab, 0xe5, 0xd1, 0x3c, 0x5a, 0x18, 0x56, 0x2e, 0xb0, 0xef, 0xbb, 0x35, 0xe9, 0x7b, 0x70, 0xb9, - 0x43, 0x45, 0x10, 0xbc, 0x02, 0x23, 0x3c, 0x73, 0x88, 0x65, 0xee, 0x6a, 0x5c, 0xe6, 0xb8, 0x16, - 0x97, 0x95, 0x3e, 0x81, 0xf9, 0x90, 0xb5, 0xcd, 0x93, 0xef, 0x1e, 0x3b, 0xd4, 0x32, 0x88, 0xbe, - 0xfb, 0x9e, 0x07, 0x66, 0x16, 0xc6, 0xf9, 0x6e, 0xf7, 0xd0, 0x4c, 0x29, 0x63, 0x7c, 0x61, 0xb7, - 0x86, 0xe7, 0x60, 0x82, 0x0a, 0x0d, 0xf7, 0x67, 0x77, 0xd3, 0x8d, 0x2b, 0xe0, 0x2d, 0xed, 0xd6, - 0xa4, 0x8f, 0xe1, 0xb5, 0x04, 0x0f, 0x2f, 0x82, 0xfd, 0xcf, 0x08, 0x66, 0x3d, 0xd3, 0xef, 0x33, - 0x3c, 0xec, 0x67, 0x3b, 0x13, 0xee, 0xab, 0x00, 0x9c, 0x61, 0xe7, 0xa4, 0x49, 0x05, 0xec, 0x71, - 0xb6, 0x72, 0xff, 0xa4, 0x49, 0xf1, 0x75, 0x98, 0x26, 0x07, 0x0e, 0xb5, 0xaa, 0xed, 0x34, 0x0c, - 0xb1, 0x34, 0x4c, 0xb2, 0xd5, 0x7b, 0x3c, 0x17, 0x78, 0x1b, 0xc0, 0x2f, 0x57, 0x79, 0x95, 0x61, - 0x7f, 0x23, 0xb4, 0x1d, 0x78, 0x9d, 0xf4, 0x36, 0xc5, 0x1e, 0xa9, 0x53, 0x81, 0x4e, 0x09, 0x68, - 0x4a, 0x5f, 0x21, 0xb8, 0x12, 0x1d, 0x89, 0xe0, 0x67, 0x0d, 0x46, 0x79, 0x2d, 0x11, 0xc7, 0x25, - 0x85, 0x20, 0x21, 0x8c, 0x77, 0x22, 0xf0, 0xdd, 0x48, 0xc5, 0xc7, 0x7d, 0x86, 0x00, 0xfe, 0x03, - 0x41, 0xa1, 0x9d, 0xc5, 0xcf, 0x0c, 0xc1, 0x40, 0x9b, 0xe9, 0x12, 0x8c, 0x98, 0xee, 0x2a, 0x63, - 0x79, 0x7c, 0x33, 0xff, 0xd7, 0xdf, 0x2f, 0xe5, 0x84, 0x97, 0x8d, 0x5a, 0xcd, 0xa2, 0xb6, 0xfd, - 0xa1, 0x63, 0x69, 0x46, 0x5d, 0xe1, 0x62, 0xe7, 0x8b, 0xfc, 0x5f, 0x05, 0xb6, 0x51, 0x28, 0xb6, - 0x73, 0xc2, 0xfd, 0xe3, 0x00, 0xf7, 0x1b, 0xb6, 0xdd, 0xb9, 0xcb, 0x73, 0x30, 0x42, 0xdc, 0x55, - 0xce, 0xbd, 0xc2, 0xbf, 0x9c, 0x5f, 0x86, 0x43, 0x11, 0x9c, 0x13, 0x86, 0xf7, 0xc5, 0x95, 0xea, - 0xc2, 0xd3, 0xf5, 0x30, 0xbd, 0xfd, 0xe2, 0xe0, 0x11, 0x12, 0x97, 0x63, 0xd8, 0xc9, 0x39, 0x61, - 0x40, 0xf7, 0xc1, 0x6d, 0xb5, 0x9f, 0x40, 0x1e, 0x05, 0x15, 0xb8, 0x40, 0x54, 0xd5, 0x3c, 0x32, - 0x9c, 0xd4, 0xf3, 0xed, 0x09, 0x86, 0x6b, 0xef, 0x60, 0xb8, 0xf6, 0x4a, 0x3f, 0x0c, 0xec, 0xe8, - 0xa0, 0x3b, 0x41, 0x86, 0x0a, 0xa3, 0xa4, 0x21, 0xdc, 0xa5, 0x5c, 0xb0, 0xcb, 0xee, 0x05, 0xfb, - 0xdb, 0x7f, 0xcf, 0x2d, 0xd4, 0x35, 0xe7, 0xe1, 0xd1, 0x7e, 0x49, 0x35, 0x1b, 0xe2, 0xa1, 0x29, - 0xfe, 0x2c, 0xd9, 0xb5, 0x43, 0xd9, 0x3d, 0x03, 0x36, 0x53, 0xb0, 0x15, 0x61, 0x5a, 0xfa, 0xc8, - 0xbf, 0x96, 0x36, 0x38, 0x66, 0x1f, 0x89, 0xfd, 0x02, 0x91, 0x4b, 0x3a, 0x48, 0x49, 0x86, 0x45, - 0x8c, 0xdb, 0x30, 0x11, 0x78, 0x6b, 0x8a, 0x40, 0xaf, 0xc7, 0x65, 0x9d, 0xdf, 0x09, 0x1b, 0x0c, - 0xb9, 0x12, 0x54, 0x94, 0x7e, 0x8a, 0xfc, 0x0b, 0x9c, 0x4b, 0x45, 0x84, 0x91, 0x78, 0x11, 0xf6, - 0x6b, 0x83, 0xff, 0x01, 0xf9, 0x8c, 0x46, 0x20, 0x11, 0x71, 0xef, 0x44, 0xc5, 0xfd, 0x7a, 0xec, - 0x1b, 0x95, 0x13, 0x18, 0x11, 0x78, 0xff, 0xb6, 0x7e, 0x1d, 0xae, 0x06, 0xce, 0x65, 0x04, 0x7b, - 0xfd, 0x22, 0xe8, 0x6b, 0x04, 0xc5, 0x38, 0x4f, 0x82, 0x9d, 0xf7, 0xa2, 0xd8, 0x91, 0xe2, 0xd8, - 0x09, 0x1c, 0x9d, 0x97, 0x43, 0xcd, 0xaa, 0xff, 0xd4, 0xe4, 0x19, 0xcd, 0xb2, 0xa1, 0xa4, 0x1f, - 0x23, 0x78, 0xb5, 0x53, 0x4d, 0xc4, 0xe7, 0x9e, 0x27, 0x7e, 0x6a, 0x32, 0x9c, 0x27, 0xfe, 0x15, - 0xaf, 0xc3, 0x28, 0x37, 0x2d, 0x1a, 0x9a, 0x62, 0xf2, 0x21, 0x51, 0x84, 0xb4, 0xa4, 0x86, 0xea, - 0x2d, 0xff, 0xb1, 0xef, 0x39, 0xfd, 0x4d, 0xf0, 0x6e, 0x0e, 0x78, 0x11, 0xf1, 0xde, 0x81, 0x0b, - 0x1c, 0x8d, 0x97, 0xcb, 0x6b, 0xc9, 0xe0, 0x37, 0x2d, 0x8d, 0x1e, 0x28, 0x9e, 0x4e, 0xff, 0x12, - 0x99, 0x03, 0xcc, 0x50, 0xee, 0xb1, 0x56, 0x53, 0x04, 0x22, 0xbd, 0x0f, 0x97, 0x42, 0xab, 0x02, - 0xf4, 0x3a, 0x8c, 0xf2, 0x96, 0x54, 0x3c, 0xc6, 0x63, 0x09, 0x17, 0x7a, 0x42, 0x5a, 0xfa, 0x1c, - 0xc1, 0x0d, 0x66, 0xcf, 0xdf, 0x97, 0x1f, 0xfa, 0x9d, 0x55, 0xb8, 0x51, 0xfd, 0x18, 0xc0, 0x6f, - 0x8a, 0x84, 0x9f, 0xdb, 0xb1, 0xdc, 0xd8, 0xf5, 0xce, 0x82, 0xc2, 0x0d, 0xb7, 0x33, 0xe2, 0xdb, - 0x92, 0x1e, 0x0d, 0xc3, 0x42, 0x3a, 0x0a, 0x11, 0x6a, 0x13, 0xa6, 0x3c, 0x47, 0x6e, 0x63, 0x67, - 0xbf, 0x8c, 0x0b, 0x67, 0xd2, 0xf3, 0xb0, 0x4d, 0xa9, 0x8d, 0x75, 0x98, 0xd0, 0x8c, 0xe6, 0x91, - 0x53, 0x75, 0x4c, 0x87, 0xe8, 0xe9, 0x2d, 0x6a, 0xef, 0xfe, 0x80, 0xd9, 0xbf, 0xef, 0x9a, 0xc7, - 0x0e, 0x5c, 0x54, 0x4d, 0xa3, 0x45, 0x2d, 0x87, 0xd6, 0x84, 0xc7, 0xa1, 0xfe, 0x7b, 0x9c, 0x6e, - 0xfb, 0xe0, 0x5e, 0xef, 0x7b, 0x5e, 0x6d, 0xb7, 0xd7, 0x37, 0x48, 0xcb, 0xce, 0x0f, 0x27, 0xd7, - 0xf9, 0xbb, 0xe2, 0x5d, 0xb8, 0x67, 0x69, 0x2a, 0x15, 0x5d, 0xf3, 0xb4, 0x6f, 0xe3, 0x2e, 0x69, - 0xd9, 0x78, 0x0b, 0xc0, 0xe1, 0xed, 0xb7, 0x41, 0x5a, 0xf9, 0x11, 0xb6, 0x65, 0xb2, 0x19, 0x54, - 0xc6, 0x1c, 0xb7, 0xe7, 0xbe, 0x4b, 0x5a, 0xd2, 0x17, 0xde, 0x75, 0xf9, 0x7d, 0xa2, 0x6b, 0x35, - 0xe2, 0xd0, 0x2d, 0x8b, 0x12, 0x87, 0x86, 0xab, 0x1b, 0x85, 0xcb, 0x6c, 0xd8, 0x40, 0xab, 0xa2, - 0xc8, 0x59, 0xfc, 0x07, 0xb1, 0x4f, 0xcb, 0x09, 0xfb, 0x74, 0xc7, 0x6c, 0x45, 0x58, 0x54, 0x2e, - 0xa9, 0xdd, 0x8b, 0xd2, 0x81, 0xb8, 0x2f, 0xa3, 0xa1, 0x88, 0x1d, 0x9a, 0x83, 0x11, 0x6a, 0x59, - 0xa6, 0xe5, 0xbd, 0xee, 0xd9, 0x17, 0x7c, 0x13, 0x70, 0xdd, 0x6c, 0x55, 0x9b, 0x96, 0xd9, 0xac, - 0x7e, 0xa6, 0xe9, 0x7a, 0xb5, 0x49, 0x6c, 0x9b, 0xd5, 0xc7, 0x31, 0xe5, 0x62, 0xdd, 0x6c, 0xed, - 0x59, 0x66, 0xf3, 0x23, 0x4d, 0xd7, 0xf7, 0x88, 0x6d, 0x4b, 0x6f, 0x89, 0x12, 0xe5, 0xf9, 0xe9, - 0xa1, 0x94, 0xaf, 0x88, 0x77, 0x7b, 0xa7, 0x6a, 0x12, 0x38, 0xf7, 0x75, 0x57, 0xec, 0xd0, 0x32, - 0x08, 0xdf, 0xfe, 0x9e, 0xd3, 0x2a, 0x5c, 0x6a, 0xb0, 0x45, 0x76, 0xea, 0x3a, 0xf8, 0x95, 0x93, - 0xf9, 0xed, 0xb2, 0xa6, 0xbc, 0xd2, 0xe8, 0x5c, 0x92, 0x6a, 0x30, 0x17, 0x0b, 0xa1, 0x6f, 0xcc, - 0x56, 0x1e, 0xcf, 0xc2, 0x08, 0x73, 0x83, 0x7f, 0x8d, 0x60, 0x32, 0x38, 0xf5, 0xc2, 0xcb, 0x71, - 0x41, 0xc4, 0xcd, 0xee, 0x0a, 0xe5, 0x1e, 0x34, 0x78, 0x08, 0xd2, 0xe2, 0x8f, 0xfe, 0xf6, 0xdf, - 0x5f, 0x0c, 0x5e, 0xc7, 0x92, 0x1c, 0x33, 0x35, 0x74, 0xd9, 0xe5, 0x43, 0x48, 0xfc, 0x4b, 0x04, - 0x63, 0xde, 0x08, 0x06, 0xdf, 0x4a, 0xf4, 0xd5, 0x31, 0x8c, 0x2a, 0x2c, 0x65, 0x94, 0x16, 0xa8, - 0x96, 0x19, 0xaa, 0x45, 0xbc, 0x20, 0x27, 0x4d, 0x45, 0xe5, 0x53, 0xaf, 0xf5, 0x3c, 0xc3, 0x5f, - 0x0e, 0x42, 0x2e, 0x6a, 0x3c, 0x84, 0x6f, 0x67, 0xf2, 0x1c, 0x31, 0xb3, 0x2a, 0xbc, 0xf5, 0x1c, - 0x9a, 0x02, 0xff, 0xcf, 0x10, 0x0b, 0xe0, 0x73, 0x84, 0xdf, 0x49, 0x8c, 0xc0, 0x16, 0x33, 0x60, - 0xf9, 0xb4, 0x7d, 0x80, 0xce, 0xe4, 0xd3, 0xc0, 0x30, 0xec, 0xec, 0xc1, 0xbb, 0xf8, 0x3b, 0x72, - 0xe2, 0xfc, 0x38, 0xa4, 0x2b, 0x78, 0x09, 0x5a, 0xc0, 0xff, 0x43, 0x70, 0xb1, 0x63, 0x28, 0x84, - 0x57, 0xd2, 0x62, 0x8b, 0x18, 0x86, 0x15, 0x56, 0x7b, 0x53, 0x12, 0x5c, 0x18, 0x8c, 0x8a, 0x87, - 0xb8, 0xdc, 0x33, 0x13, 0x0f, 0x56, 0xe2, 0x95, 0xe2, 0x62, 0xb7, 0xf1, 0xd7, 0x08, 0xa6, 0xc3, - 0x63, 0x18, 0x5c, 0x49, 0xcd, 0x64, 0xd7, 0x3c, 0xaa, 0xb0, 0xd2, 0x93, 0x8e, 0x88, 0x75, 0x95, - 0xc5, 0x5a, 0xc2, 0xb7, 0x52, 0x62, 0x65, 0x23, 0x2c, 0xf9, 0x94, 0xfd, 0x39, 0xf3, 0x10, 0x07, - 0xc6, 0x1a, 0xe9, 0x88, 0xbb, 0xa7, 0x38, 0xe9, 0x88, 0x23, 0xe6, 0x26, 0x99, 0x11, 0xb3, 0x91, - 0x90, 0x7c, 0xca, 0xfe, 0x9c, 0xe1, 0x47, 0x08, 0x26, 0x83, 0x43, 0x88, 0x94, 0x5a, 0x15, 0x31, - 0x14, 0x49, 0xa9, 0x55, 0x51, 0x13, 0x0e, 0xe9, 0x0d, 0x86, 0x75, 0x1e, 0x17, 0x93, 0xb1, 0xe2, - 0xc7, 0x08, 0xa6, 0x42, 0x63, 0x01, 0x9c, 0xea, 0xac, 0x6b, 0x62, 0x51, 0xa8, 0xf4, 0xa2, 0x22, - 0x00, 0xee, 0x30, 0x80, 0x1b, 0xf1, 0x87, 0x3e, 0x62, 0xd7, 0xfa, 0x5d, 0x97, 0x7c, 0x2a, 0xfa, - 0xff, 0x33, 0xfc, 0x17, 0x04, 0x97, 0x23, 0x9b, 0x7f, 0x9c, 0x5a, 0x94, 0x62, 0x27, 0x11, 0x85, - 0xb7, 0x9f, 0x47, 0x55, 0x44, 0x76, 0x87, 0x45, 0xf6, 0x26, 0x5e, 0x93, 0xd3, 0xff, 0xd5, 0x4b, - 0x16, 0x61, 0x04, 0xe2, 0xf9, 0x09, 0xaf, 0xce, 0x5d, 0x3d, 0x7d, 0x7a, 0x75, 0x8e, 0x1b, 0x48, - 0xa4, 0x57, 0xe7, 0xd8, 0x01, 0x82, 0x74, 0xcc, 0x82, 0xb1, 0xf0, 0x7a, 0x96, 0x60, 0x22, 0xca, - 0xd2, 0xed, 0x78, 0xcd, 0xc4, 0x04, 0xb3, 0xda, 0xf4, 0x4a, 0x57, 0xeb, 0x8e, 0xd7, 0x32, 0x1c, - 0x85, 0x08, 0x06, 0xd6, 0x7b, 0x55, 0x13, 0xe1, 0xdf, 0x64, 0xe1, 0xbf, 0x8e, 0xaf, 0x65, 0x08, - 0x1f, 0x7f, 0x85, 0x60, 0xbc, 0x4d, 0x26, 0x5e, 0xca, 0x46, 0xba, 0x87, 0xb0, 0x94, 0x55, 0x5c, - 0x20, 0xab, 0x30, 0x64, 0xb7, 0xf0, 0x62, 0x76, 0x7a, 0xdd, 0x67, 0xd3, 0x54, 0xa8, 0x73, 0xc6, - 0x59, 0x2a, 0x4b, 0xb8, 0x97, 0x4f, 0x3f, 0xec, 0xdd, 0x8d, 0xb9, 0x74, 0x83, 0x81, 0x7d, 0x0d, - 0xcf, 0x25, 0x83, 0xb5, 0xf1, 0x17, 0x08, 0x46, 0x79, 0x9f, 0x8b, 0x17, 0x13, 0xfd, 0x84, 0x5a, - 0xeb, 0xc2, 0xcd, 0x4c, 0xb2, 0x59, 0x4b, 0x23, 0x6f, 0xb0, 0xf1, 0x3f, 0x11, 0xcc, 0x26, 0x74, - 0xb5, 0xf8, 0x9d, 0x44, 0xa7, 0xe9, 0x5d, 0x79, 0xe1, 0xdd, 0xe7, 0x37, 0x20, 0x42, 0x79, 0x9b, - 0x85, 0xb2, 0x8a, 0x2b, 0x89, 0x2f, 0x52, 0x7f, 0x8f, 0x56, 0xfd, 0xce, 0x1d, 0xff, 0x09, 0x41, - 0x2e, 0xaa, 0x17, 0x4a, 0xa9, 0x33, 0x09, 0x9d, 0x5c, 0x4a, 0x9d, 0x49, 0x6a, 0xbc, 0xa4, 0x75, - 0x16, 0xc9, 0x32, 0x2e, 0xc5, 0x45, 0xd2, 0x12, 0xda, 0x72, 0xa8, 0x57, 0xc4, 0xff, 0x47, 0x30, - 0x1d, 0x6e, 0x97, 0x52, 0xde, 0x03, 0x91, 0x6d, 0x59, 0xca, 0x7b, 0x20, 0xba, 0x1f, 0x93, 0x2c, - 0x86, 0x59, 0xc7, 0x2b, 0xa9, 0x98, 0x23, 0x0a, 0xe3, 0x5a, 0xbc, 0x5a, 0x44, 0x61, 0xf4, 0x2c, - 0xe1, 0x3f, 0x22, 0xc0, 0xdd, 0x5d, 0x16, 0x5e, 0xcf, 0x88, 0xbf, 0xa3, 0x71, 0x2b, 0xbc, 0xd9, - 0xb3, 0x5e, 0xd6, 0xb7, 0x50, 0x20, 0xf6, 0x76, 0xe7, 0xb9, 0x49, 0xbf, 0x79, 0x5a, 0x44, 0x4f, - 0x9e, 0x16, 0xd1, 0x7f, 0x9e, 0x16, 0xd1, 0xcf, 0x9f, 0x15, 0x07, 0x9e, 0x3c, 0x2b, 0x0e, 0xfc, - 0xfd, 0x59, 0x71, 0x00, 0x66, 0x34, 0x33, 0x06, 0xca, 0x1e, 0x7a, 0x50, 0x0a, 0xcc, 0x46, 0x7c, - 0xa1, 0x25, 0xcd, 0x0c, 0x3a, 0x3f, 0x6e, 0xbb, 0xdf, 0x1f, 0x65, 0xff, 0x77, 0x63, 0xe5, 0xdb, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xa8, 0x59, 0x80, 0x03, 0x4e, 0x23, 0x00, 0x00, + // 2031 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcd, 0x6f, 0xdc, 0xc6, + 0x15, 0xf7, 0x48, 0x96, 0x2c, 0x3d, 0xd9, 0x32, 0x32, 0x5e, 0x1b, 0xab, 0x95, 0xbd, 0x52, 0x68, + 0x27, 0x16, 0x64, 0x6b, 0x69, 0x49, 0xb6, 0xe2, 0x04, 0x70, 0x13, 0x49, 0xa9, 0x04, 0x03, 0x8d, + 0xad, 0x30, 0x46, 0x13, 0xf8, 0x50, 0x66, 0xc4, 0x1d, 0xad, 0x09, 0x71, 0x39, 0x1b, 0x92, 0x5a, + 0x4b, 0x10, 0x74, 0xe8, 0x17, 0x8a, 0xf4, 0x54, 0xa0, 0x97, 0x14, 0x46, 0xd3, 0x4b, 0x4f, 0xbd, + 0xa4, 0x87, 0xf6, 0x54, 0x14, 0x3e, 0xf4, 0xd0, 0x5c, 0x0a, 0x04, 0xed, 0xa5, 0x05, 0x8a, 0xb6, + 0xb0, 0x7b, 0x6c, 0xff, 0x87, 0x80, 0x33, 0xc3, 0x25, 0xb9, 0xcb, 0xaf, 0x75, 0xd6, 0x80, 0x4e, + 0x5a, 0x92, 0xef, 0xe3, 0xf7, 0x7e, 0x6f, 0xe6, 0xcd, 0xbc, 0x67, 0x83, 0xd2, 0x72, 0x58, 0x9b, + 0xda, 0xc4, 0x36, 0xa8, 0x4a, 0xf7, 0x8d, 0x47, 0xc4, 0x6e, 0x50, 0xb5, 0xbd, 0xa8, 0x7e, 0xb2, + 0x47, 0x9d, 0x83, 0x5a, 0xcb, 0x61, 0x1e, 0xc3, 0x17, 0x42, 0x99, 0x5a, 0x20, 0x53, 0x6b, 0x2f, + 0x56, 0xa6, 0x0c, 0xe6, 0x36, 0x99, 0xab, 0x73, 0x29, 0x55, 0x3c, 0x08, 0x95, 0xca, 0xbc, 0x78, + 0x52, 0xb7, 0x89, 0x4b, 0x85, 0x2d, 0xb5, 0xbd, 0xb8, 0x4d, 0x3d, 0xb2, 0xa8, 0xb6, 0x48, 0xc3, + 0xb4, 0x89, 0x67, 0x32, 0x5b, 0xca, 0x56, 0xa3, 0xb2, 0x81, 0x94, 0xc1, 0xcc, 0xe0, 0xfb, 0xc5, + 0x06, 0x63, 0x0d, 0x8b, 0xaa, 0xa4, 0x65, 0xaa, 0xc4, 0xb6, 0x99, 0xc7, 0x95, 0x03, 0x4f, 0xa5, + 0x06, 0x6b, 0x30, 0x81, 0xc0, 0xff, 0x25, 0xdf, 0xce, 0xa5, 0x84, 0x65, 0xb0, 0x66, 0xd3, 0xf4, + 0x9a, 0xd4, 0xf6, 0x02, 0xfd, 0xcb, 0x29, 0x92, 0x4d, 0xe2, 0xec, 0x52, 0x2f, 0x47, 0x88, 0x39, + 0x75, 0xea, 0xe4, 0x59, 0x6a, 0x11, 0x87, 0x34, 0x03, 0xa1, 0x99, 0x14, 0x21, 0x6f, 0x5f, 0x08, + 0x28, 0x9f, 0x21, 0x28, 0xbf, 0xef, 0x13, 0x76, 0xdf, 0xb7, 0xbd, 0x41, 0xe9, 0x3a, 0xb1, 0x0c, + 0x8d, 0x7e, 0xb2, 0x47, 0x5d, 0x0f, 0xdf, 0x81, 0x71, 0xe2, 0xee, 0xea, 0xdc, 0x6d, 0x79, 0x68, + 0x16, 0xcd, 0x4d, 0x2c, 0xcd, 0xd6, 0x92, 0xb3, 0x53, 0x5b, 0x75, 0x77, 0xb9, 0x09, 0x6d, 0x8c, + 0xc8, 0x5f, 0xbe, 0xfa, 0xb6, 0x59, 0x97, 0xea, 0xc3, 0xd9, 0xea, 0x6b, 0x66, 0x5d, 0xaa, 0x6f, + 0xcb, 0x5f, 0xca, 0x6f, 0x87, 0x60, 0x2a, 0x01, 0x9a, 0xdb, 0x62, 0xb6, 0x4b, 0xf1, 0xfb, 0x50, + 0x32, 0x1c, 0xca, 0x73, 0xa3, 0xef, 0x50, 0xaa, 0xb3, 0x16, 0x4f, 0x53, 0x19, 0xcd, 0x0e, 0xcf, + 0x4d, 0x2c, 0x4d, 0xd5, 0xe4, 0xfa, 0xf0, 0xb3, 0x5c, 0x93, 0x59, 0xae, 0xad, 0x33, 0xd3, 0x5e, + 0x3b, 0xf9, 0xe5, 0xbf, 0x66, 0x4e, 0x68, 0x38, 0x50, 0xde, 0xa0, 0xf4, 0xbe, 0x50, 0xc5, 0xdf, + 0x83, 0x69, 0x97, 0x7a, 0x9e, 0x45, 0xfd, 0x84, 0xe9, 0x3b, 0x16, 0xf1, 0x62, 0x96, 0x87, 0x8a, + 0x59, 0x2e, 0x87, 0x36, 0x36, 0x2c, 0xe2, 0x45, 0xec, 0x7f, 0x0c, 0x17, 0x23, 0xf6, 0x1d, 0xdf, + 0x7d, 0xcc, 0xc1, 0x70, 0x31, 0x07, 0x53, 0xa1, 0x11, 0xcd, 0xb7, 0x11, 0x7a, 0x50, 0x16, 0xa1, + 0xc4, 0x19, 0xdb, 0xa4, 0x9e, 0x60, 0x53, 0x26, 0x72, 0x0a, 0xc6, 0x78, 0x16, 0x74, 0xb3, 0x5e, + 0x46, 0xb3, 0x68, 0xee, 0xa4, 0x76, 0x8a, 0x3f, 0xdf, 0xad, 0x2b, 0xdf, 0x81, 0xf3, 0x5d, 0x2a, + 0x92, 0xe0, 0x65, 0x18, 0x11, 0x99, 0x43, 0x3c, 0x73, 0x97, 0xd2, 0x32, 0x27, 0xb4, 0x84, 0xac, + 0xf2, 0x31, 0xcc, 0xc6, 0xac, 0xad, 0x1d, 0x7c, 0x7b, 0xdf, 0xa3, 0x8e, 0x4d, 0xac, 0xbb, 0xef, + 0x06, 0x60, 0xa6, 0x61, 0x5c, 0xac, 0xf6, 0x00, 0xcd, 0x19, 0x6d, 0x4c, 0xbc, 0xb8, 0x5b, 0xc7, + 0x33, 0x30, 0x41, 0xa5, 0x86, 0xff, 0xd9, 0x5f, 0x74, 0xe3, 0x1a, 0x04, 0xaf, 0xee, 0xd6, 0x95, + 0x8f, 0xe0, 0xd5, 0x0c, 0x0f, 0xdf, 0x04, 0xfb, 0x9f, 0x11, 0x4c, 0x07, 0xa6, 0xdf, 0xe3, 0x78, + 0xf8, 0x67, 0xb7, 0x10, 0xee, 0x4b, 0x00, 0x82, 0x61, 0xef, 0xa0, 0x45, 0x25, 0xec, 0x71, 0xfe, + 0xe6, 0xc1, 0x41, 0x8b, 0xe2, 0x2b, 0x30, 0x49, 0x76, 0x3c, 0xea, 0xe8, 0x9d, 0x34, 0x0c, 0xf3, + 0x34, 0x9c, 0xe6, 0x6f, 0xef, 0x8b, 0x5c, 0xe0, 0x0d, 0x80, 0xb0, 0x5c, 0x95, 0x0d, 0x8e, 0xfd, + 0xf5, 0xd8, 0x72, 0x10, 0x75, 0x32, 0x58, 0x14, 0x5b, 0xa4, 0x41, 0x25, 0x3a, 0x2d, 0xa2, 0xa9, + 0x7c, 0x8e, 0xe0, 0x62, 0x72, 0x24, 0x92, 0x9f, 0x5b, 0x30, 0x2a, 0x6a, 0x89, 0xdc, 0x2e, 0x39, + 0x04, 0x49, 0x61, 0xbc, 0x99, 0x80, 0xef, 0x6a, 0x2e, 0x3e, 0xe1, 0x33, 0x06, 0xf0, 0x1f, 0x08, + 0x2a, 0x9d, 0x2c, 0x3e, 0xb6, 0x25, 0x03, 0x1d, 0xa6, 0x6b, 0x30, 0xc2, 0xfc, 0xb7, 0x9c, 0xe5, + 0xf1, 0xb5, 0xf2, 0x5f, 0x7f, 0xb7, 0x50, 0x92, 0x5e, 0x56, 0xeb, 0x75, 0x87, 0xba, 0xee, 0x07, + 0x9e, 0x63, 0xda, 0x0d, 0x4d, 0x88, 0x1d, 0x2f, 0xf2, 0x7f, 0x19, 0x59, 0x46, 0xb1, 0xd8, 0x8e, + 0x09, 0xf7, 0x4f, 0x23, 0xdc, 0xaf, 0xba, 0x6e, 0xf7, 0x2a, 0x2f, 0xc1, 0x08, 0xf1, 0xdf, 0x0a, + 0xee, 0x35, 0xf1, 0x70, 0x7c, 0x19, 0x8e, 0x45, 0x70, 0x4c, 0x18, 0xde, 0x96, 0x47, 0xaa, 0x0f, + 0xcf, 0xb2, 0xe2, 0xf4, 0x0e, 0x8a, 0x83, 0x27, 0x48, 0x1e, 0x8e, 0x71, 0x27, 0xc7, 0x84, 0x01, + 0x2b, 0x04, 0xb7, 0xde, 0xb9, 0x02, 0x05, 0x14, 0x2c, 0xc1, 0x29, 0x62, 0x18, 0x6c, 0xcf, 0xf6, + 0x72, 0xf7, 0x77, 0x20, 0x18, 0xaf, 0xbd, 0x43, 0xf1, 0xda, 0xab, 0x7c, 0x3f, 0xb2, 0xa2, 0xa3, + 0xee, 0x24, 0x19, 0x06, 0x8c, 0x92, 0xa6, 0x74, 0x97, 0x73, 0xc0, 0xde, 0xf0, 0x0f, 0xd8, 0xdf, + 0xfc, 0x7b, 0x66, 0xae, 0x61, 0x7a, 0x8f, 0xf6, 0xb6, 0x6b, 0x06, 0x6b, 0xca, 0x8b, 0xa6, 0xfc, + 0xb3, 0xe0, 0xd6, 0x77, 0x55, 0x7f, 0x0f, 0xb8, 0x5c, 0xc1, 0xd5, 0xa4, 0x69, 0xe5, 0xc3, 0xf0, + 0x58, 0x5a, 0x15, 0x98, 0x43, 0x24, 0xee, 0x37, 0x88, 0x5c, 0xb1, 0x40, 0xc9, 0x32, 0x2c, 0x63, + 0xdc, 0x80, 0x89, 0xc8, 0x5d, 0x53, 0x06, 0x7a, 0x25, 0x2d, 0xeb, 0xe2, 0x4c, 0x58, 0xe5, 0xc8, + 0xb5, 0xa8, 0xa2, 0xf2, 0x13, 0x14, 0x1e, 0xe0, 0x42, 0x2a, 0x21, 0x8c, 0xcc, 0x83, 0x70, 0x50, + 0x0b, 0xfc, 0xf7, 0x28, 0x64, 0x34, 0x01, 0x89, 0x8c, 0x7b, 0x33, 0x29, 0xee, 0xd7, 0x52, 0xef, + 0xa8, 0x82, 0xc0, 0x84, 0xc0, 0x07, 0xb7, 0xf4, 0x1b, 0x70, 0x29, 0xb2, 0x2f, 0x13, 0xd8, 0x1b, + 0x14, 0x41, 0x5f, 0x20, 0xa8, 0xa6, 0x79, 0x92, 0xec, 0xbc, 0x9b, 0xc4, 0x8e, 0x92, 0xc6, 0x4e, + 0x64, 0xeb, 0xbc, 0x1c, 0x6a, 0x6e, 0x86, 0x57, 0x4d, 0x91, 0xd1, 0x22, 0x0b, 0x4a, 0xf9, 0x11, + 0x82, 0x0b, 0xdd, 0x6a, 0x32, 0x3e, 0x7f, 0x3f, 0x89, 0x5d, 0x53, 0x60, 0x3f, 0x89, 0x47, 0xbc, + 0x02, 0xa3, 0xc2, 0xb4, 0x6c, 0x68, 0xaa, 0xd9, 0x9b, 0x44, 0x93, 0xd2, 0x8a, 0x11, 0xab, 0xb7, + 0xe2, 0xe3, 0xc0, 0x73, 0xfa, 0xeb, 0xe8, 0xd9, 0x1c, 0xf1, 0x22, 0xe3, 0xbd, 0x03, 0xa7, 0x04, + 0x9a, 0x20, 0x97, 0x97, 0xb3, 0xc1, 0xaf, 0x39, 0x26, 0xdd, 0xd1, 0x02, 0x9d, 0xc1, 0x25, 0xb2, + 0x04, 0x98, 0xa3, 0xdc, 0xe2, 0xad, 0xa6, 0x0c, 0x44, 0x79, 0x0f, 0xce, 0xc5, 0xde, 0x4a, 0xd0, + 0x2b, 0x30, 0x2a, 0x5a, 0x52, 0x79, 0x19, 0x4f, 0x25, 0x5c, 0xea, 0x49, 0x69, 0xe5, 0x8f, 0x08, + 0xae, 0x72, 0x7b, 0xe1, 0xba, 0xfc, 0x20, 0xec, 0xac, 0xe2, 0x8d, 0xea, 0x47, 0x00, 0x61, 0x53, + 0x24, 0xfd, 0xdc, 0x4e, 0xe5, 0xc6, 0x6d, 0x74, 0x17, 0x14, 0x61, 0xb8, 0x93, 0x91, 0xd0, 0x16, + 0xbe, 0x0d, 0x65, 0xd3, 0x36, 0xac, 0xbd, 0x3a, 0xd5, 0xb7, 0x1d, 0x4a, 0x76, 0xeb, 0xec, 0xb1, + 0xad, 0xef, 0x98, 0xd4, 0xaa, 0xbb, 0x7c, 0x01, 0x8d, 0x69, 0x17, 0xe4, 0xf7, 0xb5, 0xe0, 0xf3, + 0x06, 0xff, 0xaa, 0x3c, 0x39, 0x09, 0x73, 0xf9, 0xf8, 0x25, 0x49, 0x2d, 0x38, 0x13, 0x40, 0xf4, + 0x5b, 0x42, 0xf7, 0x65, 0x1c, 0x55, 0xa7, 0x03, 0x0f, 0x1b, 0x94, 0xba, 0xd8, 0x82, 0x09, 0xd3, + 0x6e, 0xed, 0x79, 0xba, 0xc7, 0x3c, 0x62, 0xe5, 0x37, 0xb7, 0xfd, 0xfb, 0x03, 0x6e, 0xff, 0x81, + 0x6f, 0x1e, 0x7b, 0x70, 0xd6, 0x60, 0x76, 0x9b, 0x3a, 0x1e, 0xad, 0x4b, 0x8f, 0xc3, 0x83, 0xf7, + 0x38, 0xd9, 0xf1, 0x21, 0xbc, 0x3e, 0x08, 0xbc, 0xba, 0x26, 0xb3, 0x75, 0x9b, 0xb4, 0xdd, 0xf2, + 0xc9, 0xec, 0x13, 0xe2, 0x9e, 0xbc, 0x51, 0x6e, 0x39, 0xa6, 0x41, 0x65, 0xbf, 0x3d, 0x19, 0xda, + 0xb8, 0x47, 0xda, 0x2e, 0x5e, 0x07, 0xf0, 0x44, 0xe3, 0x6e, 0x93, 0x76, 0x79, 0x84, 0x2f, 0xb6, + 0x62, 0x06, 0xb5, 0x31, 0xcf, 0xef, 0xd6, 0xef, 0x91, 0xb6, 0xf2, 0x69, 0x70, 0xd0, 0x7e, 0x97, + 0x58, 0x66, 0x9d, 0x78, 0x74, 0xdd, 0xa1, 0xc4, 0xa3, 0xf1, 0xba, 0x48, 0xe1, 0x3c, 0x1f, 0x53, + 0x50, 0x5d, 0x96, 0x47, 0x47, 0x7c, 0x90, 0x2b, 0x7c, 0x31, 0x63, 0x85, 0x6f, 0xb2, 0x76, 0x82, + 0x45, 0xed, 0x9c, 0xd1, 0xfb, 0x52, 0xd9, 0x91, 0x27, 0x6d, 0x32, 0x14, 0xb9, 0x42, 0x4b, 0x30, + 0x42, 0x1d, 0x87, 0x39, 0x41, 0x5f, 0xc0, 0x1f, 0xf0, 0x35, 0xc0, 0x0d, 0xd6, 0xd6, 0x5b, 0x0e, + 0x6b, 0xe9, 0x8f, 0x4d, 0xcb, 0xd2, 0x5b, 0xc4, 0x0d, 0x36, 0xc6, 0xd9, 0x06, 0x6b, 0x6f, 0x39, + 0xac, 0xf5, 0xa1, 0x69, 0x59, 0x5b, 0xc4, 0x75, 0x95, 0x37, 0x65, 0x71, 0x0b, 0xfc, 0xf4, 0x71, + 0x08, 0x2c, 0xcb, 0x1b, 0x7f, 0xb7, 0x6a, 0x16, 0x38, 0xff, 0x5e, 0x58, 0xed, 0xd2, 0xb2, 0x89, + 0x58, 0xfe, 0x81, 0x53, 0x1d, 0xce, 0x35, 0xf9, 0x4b, 0xbe, 0xeb, 0xba, 0xf8, 0x55, 0xb3, 0xf9, + 0xed, 0xb1, 0xa6, 0xbd, 0xd2, 0xec, 0x7e, 0xa5, 0xd4, 0x61, 0x26, 0x15, 0xc2, 0xc0, 0x98, 0x5d, + 0x7a, 0x3a, 0x0d, 0x23, 0xdc, 0x0d, 0xfe, 0x15, 0x82, 0xd3, 0xd1, 0x79, 0x19, 0xbe, 0x91, 0x16, + 0x44, 0xda, 0xd4, 0xaf, 0xb2, 0xd8, 0x87, 0x86, 0x08, 0x41, 0x99, 0xff, 0xc1, 0xdf, 0xfe, 0xfb, + 0xf3, 0xa1, 0x2b, 0x58, 0x51, 0x53, 0xe6, 0x8d, 0x3e, 0xbb, 0x62, 0x7c, 0x89, 0x7f, 0x81, 0x60, + 0x2c, 0x18, 0xde, 0xe0, 0xeb, 0x99, 0xbe, 0xba, 0xc6, 0x58, 0x95, 0x85, 0x82, 0xd2, 0x12, 0xd5, + 0x0d, 0x8e, 0x6a, 0x1e, 0xcf, 0xa9, 0x59, 0xf3, 0x54, 0xf5, 0x30, 0x68, 0x5a, 0x8f, 0xf0, 0x67, + 0x43, 0x50, 0x4a, 0x1a, 0x2c, 0xe1, 0xdb, 0x85, 0x3c, 0x27, 0x4c, 0xbb, 0x2a, 0x6f, 0xbe, 0x80, + 0xa6, 0xc4, 0xff, 0x53, 0xc4, 0x03, 0xf8, 0x21, 0xc2, 0x6f, 0x67, 0x46, 0xe0, 0xca, 0xe9, 0xb1, + 0x7a, 0xd8, 0xd9, 0x40, 0x47, 0xea, 0x61, 0x64, 0x8c, 0x76, 0xf4, 0xf0, 0x1d, 0xfc, 0x2d, 0x35, + 0x73, 0xf2, 0x1c, 0xd3, 0x95, 0xbc, 0x44, 0x2d, 0xe0, 0xff, 0x21, 0x38, 0xdb, 0x35, 0x4e, 0xc2, + 0xcb, 0x79, 0xb1, 0x25, 0x8c, 0xd1, 0x2a, 0x37, 0xfb, 0x53, 0x92, 0x5c, 0xd8, 0x9c, 0x8a, 0x47, + 0x78, 0xb1, 0x6f, 0x26, 0x1e, 0x2e, 0xa7, 0x2b, 0xa5, 0xc5, 0xee, 0xe2, 0x2f, 0x10, 0x4c, 0xc6, + 0x07, 0x38, 0x78, 0x29, 0x37, 0x93, 0x3d, 0x93, 0xac, 0xca, 0x72, 0x5f, 0x3a, 0x32, 0xd6, 0x9b, + 0x3c, 0xd6, 0x1a, 0xbe, 0x9e, 0x13, 0x2b, 0x1f, 0x7e, 0xa9, 0x87, 0xfc, 0xcf, 0x51, 0x80, 0x38, + 0x32, 0x10, 0xc9, 0x47, 0xdc, 0x3b, 0xff, 0xc9, 0x47, 0x9c, 0x30, 0x71, 0x29, 0x8c, 0x98, 0x0f, + 0x93, 0xd4, 0x43, 0xfe, 0xe7, 0x08, 0x3f, 0x41, 0x70, 0x3a, 0x3a, 0xbe, 0xc8, 0xa9, 0x55, 0x09, + 0xe3, 0x94, 0x9c, 0x5a, 0x95, 0x34, 0x1b, 0x51, 0x5e, 0xe7, 0x58, 0x67, 0x71, 0x35, 0x1b, 0x2b, + 0x7e, 0x8a, 0xe0, 0x4c, 0x6c, 0xa0, 0x80, 0x73, 0x9d, 0xf5, 0xcc, 0x3a, 0x2a, 0x4b, 0xfd, 0xa8, + 0x48, 0x80, 0x9b, 0x1c, 0xe0, 0x6a, 0xfa, 0xa6, 0x4f, 0x58, 0xb5, 0x61, 0xbf, 0xa6, 0x1e, 0xca, + 0xc9, 0xc1, 0x11, 0xfe, 0x0b, 0x82, 0xf3, 0x89, 0x63, 0x03, 0x9c, 0x5b, 0x94, 0x52, 0x67, 0x18, + 0x95, 0xb7, 0x5e, 0x44, 0x55, 0x46, 0x76, 0x87, 0x47, 0xf6, 0x06, 0xbe, 0xa5, 0xe6, 0xff, 0x7b, + 0x99, 0x2a, 0xc3, 0x88, 0xc4, 0xf3, 0x63, 0x51, 0x9d, 0x7b, 0xa6, 0x01, 0xf9, 0xd5, 0x39, 0x6d, + 0x94, 0x91, 0x5f, 0x9d, 0x53, 0x47, 0x0f, 0xca, 0x3e, 0x0f, 0xc6, 0xc1, 0x2b, 0x45, 0x82, 0x49, + 0x28, 0x4b, 0xb7, 0xd3, 0x35, 0x33, 0x13, 0xcc, 0x6b, 0xd3, 0x2b, 0x3d, 0x4d, 0x3f, 0xbe, 0x55, + 0x60, 0x2b, 0x24, 0x30, 0xb0, 0xd2, 0xaf, 0x9a, 0x0c, 0xff, 0x1a, 0x0f, 0xff, 0x35, 0x7c, 0xb9, + 0x40, 0xf8, 0xf8, 0x73, 0x04, 0xe3, 0x1d, 0x32, 0xf1, 0x42, 0x31, 0xd2, 0x03, 0x84, 0xb5, 0xa2, + 0xe2, 0x12, 0xd9, 0x12, 0x47, 0x76, 0x1d, 0xcf, 0x17, 0xa7, 0xd7, 0xbf, 0x36, 0x9d, 0x89, 0xf5, + 0xdc, 0xb8, 0x48, 0x65, 0x89, 0x4f, 0x01, 0xf2, 0x37, 0x7b, 0x6f, 0x4b, 0xaf, 0x5c, 0xe5, 0x60, + 0x5f, 0xc5, 0x33, 0xd9, 0x60, 0x5d, 0xfc, 0x29, 0x82, 0x51, 0xd1, 0x21, 0xe3, 0xf9, 0x4c, 0x3f, + 0xb1, 0xa6, 0xbc, 0x72, 0xad, 0x90, 0x6c, 0xd1, 0xd2, 0x28, 0x5a, 0x73, 0xfc, 0x4f, 0x04, 0xd3, + 0x19, 0x5d, 0x2d, 0x7e, 0x3b, 0xd3, 0x69, 0x7e, 0x3f, 0x5f, 0x79, 0xe7, 0xc5, 0x0d, 0xc8, 0x50, + 0xde, 0xe2, 0xa1, 0xdc, 0xc4, 0x4b, 0x99, 0x37, 0xd2, 0x70, 0x8d, 0xea, 0x91, 0x9e, 0xff, 0x4f, + 0x08, 0x4a, 0x49, 0xbd, 0x50, 0x4e, 0x9d, 0xc9, 0xe8, 0xe4, 0x72, 0xea, 0x4c, 0x56, 0xe3, 0xa5, + 0xac, 0xf0, 0x48, 0x6e, 0xe0, 0x5a, 0x5a, 0x24, 0x6d, 0xa9, 0xad, 0xc6, 0x7a, 0x45, 0xfc, 0x7f, + 0x04, 0x93, 0xf1, 0x76, 0x29, 0xe7, 0x3e, 0x90, 0xd8, 0x96, 0xe5, 0xdc, 0x07, 0x92, 0xfb, 0x31, + 0xc5, 0xe1, 0x98, 0x2d, 0xbc, 0x9c, 0x8b, 0x39, 0xa1, 0x30, 0xde, 0x4a, 0x57, 0x4b, 0x28, 0x8c, + 0x81, 0x25, 0xfc, 0x07, 0x04, 0xb8, 0xb7, 0xcb, 0xc2, 0x2b, 0x05, 0xf1, 0x77, 0x35, 0x6e, 0x95, + 0x37, 0xfa, 0xd6, 0x2b, 0x7a, 0x17, 0x8a, 0xc4, 0xde, 0xe9, 0x3c, 0xd7, 0xe8, 0x97, 0xcf, 0xaa, + 0xe8, 0xab, 0x67, 0x55, 0xf4, 0x9f, 0x67, 0x55, 0xf4, 0xb3, 0xe7, 0xd5, 0x13, 0x5f, 0x3d, 0xaf, + 0x9e, 0xf8, 0xfb, 0xf3, 0xea, 0x09, 0x98, 0x32, 0x59, 0x0a, 0x94, 0x2d, 0xf4, 0xb0, 0x16, 0x99, + 0x8d, 0x84, 0x42, 0x0b, 0x26, 0x8b, 0x3a, 0xdf, 0xef, 0xb8, 0xdf, 0x1e, 0xe5, 0xff, 0xeb, 0x63, + 0xf9, 0xeb, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf4, 0x7a, 0x2b, 0xa9, 0x88, 0x23, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4074,6 +4088,16 @@ func (m *QueryCommitmentSettlementFeeCalcRequest) MarshalToSizedBuffer(dAtA []by _ = i var l int _ = l + if m.IncludeBreakdownFields { + i-- + if m.IncludeBreakdownFields { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } if m.Settlement != nil { { size, err := m.Settlement.MarshalToSizedBuffer(dAtA[:i]) @@ -4876,6 +4900,9 @@ func (m *QueryCommitmentSettlementFeeCalcRequest) Size() (n int) { l = m.Settlement.Size() n += 1 + l + sovQuery(uint64(l)) } + if m.IncludeBreakdownFields { + n += 2 + } return n } @@ -8057,6 +8084,26 @@ func (m *QueryCommitmentSettlementFeeCalcRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IncludeBreakdownFields", 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.IncludeBreakdownFields = bool(v != 0) default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:])