Commit eee32aab authored by vipwzw's avatar vipwzw

auto ci

parent 7c308c64
......@@ -5,8 +5,8 @@
package executor
import (
"fmt"
"encoding/hex"
"fmt"
"strconv"
"github.com/33cn/chain33/common"
......@@ -54,7 +54,7 @@ var opt_order_table = &table.Option{
"owner_isSell", // 接口 6
// "owner_isSell_status", 可能需求, 界面分开显示订单
// "owner_isSell_statusPrefix", // 状态可以定制组合, 成交历史需求
"owner_status", // 接口 2
"owner_status", // 接口 2
"assset_isSell_isFinished", // 用 isFinish, 进行订单是否完成的列表功能
"owner_asset_isFinished",
"owner_isFinished",
......@@ -146,7 +146,7 @@ func (r *OrderRow) isFinished() int {
// 进行中, 撤销, 部分成交 , 全部成交, 完成状态统一前缀. 数字和原来不一样
// 01 10 11 12 19 -> 1*
func (r *OrderRow) status() string {
if r.Status == pty.TradeOrderStatusOnBuy || r.Status == pty.TradeOrderStatusOnSale{
if r.Status == pty.TradeOrderStatusOnBuy || r.Status == pty.TradeOrderStatusOnSale {
return "01" // 试图用1 可以匹配所有完成的
} else if r.Status == pty.TradeOrderStatusSoldOut || r.Status == pty.TradeOrderStatusBoughtOut {
return "12"
......@@ -291,7 +291,7 @@ func (t *trade) genSellMarket(tx *types.Transaction, sell *pty.ReceiptSellBase,
IsSellOrder: true,
AssetExec: sell.AssetExec,
IsFinished: true,
IsFinished: true,
}
return order
}
......
package executor
import (
pty "github.com/33cn/plugin/plugin/dapp/trade/types"
"github.com/33cn/chain33/system/dapp"
"testing"
"github.com/33cn/chain33/system/dapp"
pty "github.com/33cn/plugin/plugin/dapp/trade/types"
//"github.com/33cn/chain33/common/db"
//"github.com/33cn/chain33/common/db/table"
"github.com/33cn/chain33/util"
......@@ -11,48 +12,47 @@ import (
)
var order1 = &pty.LocalOrder{
AssetSymbol: "A",
Owner: "O1",
AmountPerBoardlot: 1,
MinBoardlot: 1,
PricePerBoardlot: 1,
TotalBoardlot: 10,
TradedBoardlot: 0,
BuyID: "B1",
Status: pty.TradeOrderStatusOnBuy,
SellID: "",
TxHash: nil,
Height: 1,
Key: "B1",
BlockTime: 1,
IsSellOrder: false,
AssetExec: "a",
TxIndex: dapp.HeightIndexStr(1, 1),
IsFinished: false,
AssetSymbol: "A",
Owner: "O1",
AmountPerBoardlot: 1,
MinBoardlot: 1,
PricePerBoardlot: 1,
TotalBoardlot: 10,
TradedBoardlot: 0,
BuyID: "B1",
Status: pty.TradeOrderStatusOnBuy,
SellID: "",
TxHash: nil,
Height: 1,
Key: "B1",
BlockTime: 1,
IsSellOrder: false,
AssetExec: "a",
TxIndex: dapp.HeightIndexStr(1, 1),
IsFinished: false,
}
var order2 = &pty.LocalOrder{
AssetSymbol: "A",
Owner: "O1",
AmountPerBoardlot: 1,
MinBoardlot: 1,
PricePerBoardlot: 1,
TotalBoardlot: 10,
TradedBoardlot: 0,
BuyID: "B2",
Status: pty.TradeOrderStatusOnBuy,
SellID: "",
TxHash: nil,
Height: 2,
Key: "B2",
BlockTime: 2,
IsSellOrder: false,
AssetExec: "a",
TxIndex: dapp.HeightIndexStr(2, 1),
IsFinished: false,
AssetSymbol: "A",
Owner: "O1",
AmountPerBoardlot: 1,
MinBoardlot: 1,
PricePerBoardlot: 1,
TotalBoardlot: 10,
TradedBoardlot: 0,
BuyID: "B2",
Status: pty.TradeOrderStatusOnBuy,
SellID: "",
TxHash: nil,
Height: 2,
Key: "B2",
BlockTime: 2,
IsSellOrder: false,
AssetExec: "a",
TxIndex: dapp.HeightIndexStr(2, 1),
IsFinished: false,
}
func TestListAll(t *testing.T) {
dir, ldb, tdb := util.CreateTestDB()
t.Log(dir, ldb, tdb)
......
......@@ -662,7 +662,6 @@ func (t *trade) GetOnesOrderWithStatusV1(req *pty.ReqAddrAssets) (types.Message,
return nil, types.ErrInvalidParam
}
keys, err := t.GetLocalDB().List(calcOnesOrderPrefixStatus(req.Addr, orderStatus), fromKey, req.Count, req.Direction)
if err != nil {
return nil, err
......@@ -717,22 +716,22 @@ func (t *trade) GetOnesOrderWithStatus(req *pty.ReqAddrAssets) (types.Message, e
func fmtReply(order *pty.LocalOrder) *pty.ReplyTradeOrder {
return &pty.ReplyTradeOrder{
TokenSymbol: order.AssetSymbol,
Owner: order.Owner,
AmountPerBoardlot: order.AmountPerBoardlot,
MinBoardlot: order.MinBoardlot,
PricePerBoardlot: order.PricePerBoardlot,
TotalBoardlot: order.TotalBoardlot,
TradedBoardlot: order.TradedBoardlot,
BuyID: order.BuyID,
Status: order.Status,
SellID: order.SellID,
TxHash: order.TxHash[0],
Height: order.Height,
Key: order.TxIndex,
BlockTime: order.BlockTime,
IsSellOrder: order.IsSellOrder,
AssetExec: order.AssetExec,
TokenSymbol: order.AssetSymbol,
Owner: order.Owner,
AmountPerBoardlot: order.AmountPerBoardlot,
MinBoardlot: order.MinBoardlot,
PricePerBoardlot: order.PricePerBoardlot,
TotalBoardlot: order.TotalBoardlot,
TradedBoardlot: order.TradedBoardlot,
BuyID: order.BuyID,
Status: order.Status,
SellID: order.SellID,
TxHash: order.TxHash[0],
Height: order.Height,
Key: order.TxIndex,
BlockTime: order.BlockTime,
IsSellOrder: order.IsSellOrder,
AssetExec: order.AssetExec,
}
}
......
......@@ -2410,6 +2410,181 @@ func (m *ReqBuyToken) GetBuyer() string {
return ""
}
type LocalOrder struct {
AssetSymbol string `protobuf:"bytes,1,opt,name=assetSymbol,proto3" json:"assetSymbol,omitempty"`
Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
AmountPerBoardlot int64 `protobuf:"varint,3,opt,name=amountPerBoardlot,proto3" json:"amountPerBoardlot,omitempty"`
MinBoardlot int64 `protobuf:"varint,4,opt,name=minBoardlot,proto3" json:"minBoardlot,omitempty"`
PricePerBoardlot int64 `protobuf:"varint,5,opt,name=pricePerBoardlot,proto3" json:"pricePerBoardlot,omitempty"`
TotalBoardlot int64 `protobuf:"varint,6,opt,name=totalBoardlot,proto3" json:"totalBoardlot,omitempty"`
TradedBoardlot int64 `protobuf:"varint,7,opt,name=tradedBoardlot,proto3" json:"tradedBoardlot,omitempty"`
BuyID string `protobuf:"bytes,8,opt,name=buyID,proto3" json:"buyID,omitempty"`
Status int32 `protobuf:"varint,9,opt,name=status,proto3" json:"status,omitempty"`
SellID string `protobuf:"bytes,10,opt,name=sellID,proto3" json:"sellID,omitempty"`
TxHash []string `protobuf:"bytes,11,rep,name=txHash,proto3" json:"txHash,omitempty"`
Height int64 `protobuf:"varint,12,opt,name=height,proto3" json:"height,omitempty"`
Key string `protobuf:"bytes,13,opt,name=key,proto3" json:"key,omitempty"`
BlockTime int64 `protobuf:"varint,14,opt,name=blockTime,proto3" json:"blockTime,omitempty"`
IsSellOrder bool `protobuf:"varint,15,opt,name=isSellOrder,proto3" json:"isSellOrder,omitempty"`
AssetExec string `protobuf:"bytes,16,opt,name=assetExec,proto3" json:"assetExec,omitempty"`
TxIndex string `protobuf:"bytes,17,opt,name=txIndex,proto3" json:"txIndex,omitempty"`
IsFinished bool `protobuf:"varint,18,opt,name=isFinished,proto3" json:"isFinished,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LocalOrder) Reset() { *m = LocalOrder{} }
func (m *LocalOrder) String() string { return proto.CompactTextString(m) }
func (*LocalOrder) ProtoMessage() {}
func (*LocalOrder) Descriptor() ([]byte, []int) {
return fileDescriptor_ee944bd90e8a0312, []int{29}
}
func (m *LocalOrder) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LocalOrder.Unmarshal(m, b)
}
func (m *LocalOrder) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LocalOrder.Marshal(b, m, deterministic)
}
func (m *LocalOrder) XXX_Merge(src proto.Message) {
xxx_messageInfo_LocalOrder.Merge(m, src)
}
func (m *LocalOrder) XXX_Size() int {
return xxx_messageInfo_LocalOrder.Size(m)
}
func (m *LocalOrder) XXX_DiscardUnknown() {
xxx_messageInfo_LocalOrder.DiscardUnknown(m)
}
var xxx_messageInfo_LocalOrder proto.InternalMessageInfo
func (m *LocalOrder) GetAssetSymbol() string {
if m != nil {
return m.AssetSymbol
}
return ""
}
func (m *LocalOrder) GetOwner() string {
if m != nil {
return m.Owner
}
return ""
}
func (m *LocalOrder) GetAmountPerBoardlot() int64 {
if m != nil {
return m.AmountPerBoardlot
}
return 0
}
func (m *LocalOrder) GetMinBoardlot() int64 {
if m != nil {
return m.MinBoardlot
}
return 0
}
func (m *LocalOrder) GetPricePerBoardlot() int64 {
if m != nil {
return m.PricePerBoardlot
}
return 0
}
func (m *LocalOrder) GetTotalBoardlot() int64 {
if m != nil {
return m.TotalBoardlot
}
return 0
}
func (m *LocalOrder) GetTradedBoardlot() int64 {
if m != nil {
return m.TradedBoardlot
}
return 0
}
func (m *LocalOrder) GetBuyID() string {
if m != nil {
return m.BuyID
}
return ""
}
func (m *LocalOrder) GetStatus() int32 {
if m != nil {
return m.Status
}
return 0
}
func (m *LocalOrder) GetSellID() string {
if m != nil {
return m.SellID
}
return ""
}
func (m *LocalOrder) GetTxHash() []string {
if m != nil {
return m.TxHash
}
return nil
}
func (m *LocalOrder) GetHeight() int64 {
if m != nil {
return m.Height
}
return 0
}
func (m *LocalOrder) GetKey() string {
if m != nil {
return m.Key
}
return ""
}
func (m *LocalOrder) GetBlockTime() int64 {
if m != nil {
return m.BlockTime
}
return 0
}
func (m *LocalOrder) GetIsSellOrder() bool {
if m != nil {
return m.IsSellOrder
}
return false
}
func (m *LocalOrder) GetAssetExec() string {
if m != nil {
return m.AssetExec
}
return ""
}
func (m *LocalOrder) GetTxIndex() string {
if m != nil {
return m.TxIndex
}
return ""
}
func (m *LocalOrder) GetIsFinished() bool {
if m != nil {
return m.IsFinished
}
return false
}
func init() {
proto.RegisterType((*Trade)(nil), "types.Trade")
proto.RegisterType((*TradeForSell)(nil), "types.TradeForSell")
......@@ -2440,90 +2615,95 @@ func init() {
proto.RegisterType((*ReqSellToken)(nil), "types.ReqSellToken")
proto.RegisterType((*ReqRevokeSell)(nil), "types.ReqRevokeSell")
proto.RegisterType((*ReqBuyToken)(nil), "types.ReqBuyToken")
proto.RegisterType((*LocalOrder)(nil), "types.LocalOrder")
}
func init() { proto.RegisterFile("trade.proto", fileDescriptor_ee944bd90e8a0312) }
var fileDescriptor_ee944bd90e8a0312 = []byte{
// 1246 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0x41, 0x6f, 0xdb, 0x36,
0x14, 0x8e, 0x2d, 0xcb, 0xb1, 0x9e, 0x63, 0xc7, 0x61, 0xdd, 0x4c, 0x0d, 0x76, 0x30, 0x84, 0x62,
0x4b, 0x8b, 0x22, 0xc0, 0x52, 0x14, 0x18, 0xb0, 0x61, 0x43, 0x9c, 0xac, 0x73, 0xb7, 0x16, 0x1b,
0x18, 0x0f, 0xd8, 0x55, 0xb6, 0xd8, 0x44, 0x88, 0x6c, 0x39, 0x22, 0xd5, 0x58, 0x7f, 0x65, 0x3b,
0xec, 0xb6, 0xcb, 0xae, 0x03, 0xf6, 0x17, 0x06, 0xec, 0xef, 0xf4, 0x52, 0xec, 0x52, 0x90, 0xa2,
0x25, 0x4a, 0x96, 0x52, 0x1b, 0xe8, 0x21, 0x4d, 0x6f, 0xe6, 0xe3, 0xe3, 0xc7, 0xa7, 0xef, 0x7b,
0x8f, 0x7c, 0x26, 0x34, 0x59, 0x60, 0x3b, 0xe4, 0x60, 0x16, 0xf8, 0xcc, 0x47, 0x3a, 0x8b, 0x66,
0x84, 0xee, 0xed, 0xb0, 0xc0, 0x9e, 0x52, 0x7b, 0xcc, 0x5c, 0x7f, 0x1a, 0xcf, 0x58, 0xaf, 0xab,
0xa0, 0x0f, 0xb9, 0x27, 0x7a, 0x0c, 0x06, 0x25, 0x9e, 0xf7, 0xdc, 0x9d, 0xb8, 0xcc, 0xac, 0xf4,
0x2a, 0xfb, 0xcd, 0xc3, 0x3b, 0x07, 0x62, 0xdd, 0x81, 0x70, 0x78, 0xea, 0x07, 0xa7, 0xc4, 0xf3,
0x06, 0x1b, 0x38, 0xf5, 0x43, 0x87, 0x60, 0x8c, 0xc2, 0xe8, 0x85, 0x1d, 0x5c, 0x10, 0x66, 0x56,
0xc5, 0x22, 0x94, 0x5b, 0xd4, 0x0f, 0x23, 0xbe, 0x26, 0x71, 0x43, 0x5f, 0x01, 0x04, 0xe4, 0x95,
0x7f, 0x41, 0x38, 0x9c, 0xa9, 0x89, 0x45, 0xf7, 0x72, 0x8b, 0x70, 0xe2, 0x30, 0xd8, 0xc0, 0x8a,
0x3b, 0x7a, 0x02, 0x8d, 0x51, 0x18, 0xc5, 0x41, 0xea, 0x62, 0xe9, 0x27, 0xcb, 0xfb, 0x89, 0xe9,
0xc1, 0x06, 0x4e, 0x5c, 0xf9, 0x9e, 0x3c, 0x68, 0x19, 0x68, 0xbd, 0x70, 0xcf, 0xd3, 0xc4, 0x81,
0xef, 0x99, 0xba, 0xa3, 0x2f, 0xc1, 0x88, 0x23, 0xe8, 0x87, 0x91, 0xb9, 0x29, 0xd6, 0x9a, 0x85,
0xf1, 0xca, 0x4f, 0x4d, 0x9c, 0x51, 0x1b, 0xaa, 0x2c, 0x32, 0x6b, 0xbd, 0xca, 0xbe, 0x8e, 0xab,
0x2c, 0xea, 0x6f, 0x82, 0xfe, 0xca, 0xf6, 0x42, 0x62, 0xfd, 0x5b, 0x85, 0x2d, 0x75, 0x5f, 0xd4,
0x83, 0x26, 0xf3, 0x2f, 0xc8, 0xf4, 0x34, 0x9a, 0x8c, 0x7c, 0x4f, 0xf0, 0x6f, 0x60, 0xd5, 0x84,
0x1e, 0xc1, 0x8e, 0x3d, 0xf1, 0xc3, 0x29, 0xfb, 0x99, 0x04, 0x7d, 0xdf, 0x0e, 0x1c, 0xcf, 0x8f,
0x29, 0xd7, 0xf0, 0xf2, 0x04, 0xc7, 0x9b, 0xb8, 0xd3, 0xc4, 0x4f, 0x13, 0x7e, 0xaa, 0x09, 0x3d,
0x84, 0xce, 0x2c, 0x70, 0xc7, 0x44, 0x85, 0xab, 0x09, 0xb7, 0x25, 0x3b, 0xba, 0x0f, 0x2d, 0xe6,
0x33, 0xdb, 0x4b, 0x1c, 0x75, 0xe1, 0x98, 0x35, 0xa2, 0x4f, 0xc1, 0xa0, 0xcc, 0x0e, 0x18, 0x73,
0x27, 0x44, 0x70, 0xac, 0xe1, 0xd4, 0x80, 0xf6, 0xa0, 0x41, 0x99, 0x3f, 0x13, 0x93, 0x9b, 0x62,
0x32, 0x19, 0xf3, 0x95, 0xe3, 0xc0, 0xbf, 0x72, 0x5e, 0x86, 0x53, 0xc7, 0x6c, 0xf4, 0x2a, 0xfb,
0x0d, 0x9c, 0x1a, 0xf8, 0xac, 0x4d, 0x29, 0x61, 0xdf, 0xcd, 0xc9, 0xd8, 0x34, 0x04, 0x33, 0xa9,
0xc1, 0xfa, 0x1e, 0x9a, 0x8a, 0xf4, 0x68, 0x17, 0xea, 0x5c, 0xba, 0x67, 0x27, 0x92, 0x43, 0x39,
0xe2, 0x84, 0x8c, 0x64, 0xa0, 0xc7, 0xd3, 0x05, 0x71, 0xaa, 0xc9, 0x7a, 0x04, 0x68, 0x39, 0xfd,
0xca, 0xf0, 0xac, 0xd7, 0x15, 0xe8, 0xe4, 0x53, 0xee, 0xb6, 0xa8, 0x98, 0xb2, 0x5d, 0xcf, 0xb3,
0xfd, 0x3c, 0x25, 0x29, 0xad, 0x17, 0xd4, 0x05, 0x7d, 0x14, 0x46, 0x09, 0x47, 0xf1, 0x60, 0x05,
0xca, 0x1f, 0xc0, 0xce, 0x52, 0x05, 0x15, 0x83, 0x59, 0xff, 0x69, 0x60, 0xf0, 0x1d, 0x7f, 0x0a,
0x1c, 0x12, 0xac, 0x40, 0xb4, 0x09, 0x9b, 0xb6, 0xe3, 0x04, 0x84, 0x52, 0xb1, 0xb1, 0x81, 0x17,
0xc3, 0x62, 0x09, 0xb4, 0x15, 0x25, 0xa8, 0xad, 0x26, 0x81, 0xbe, 0xaa, 0x04, 0xf5, 0x22, 0x09,
0x2c, 0xd8, 0xa2, 0xbe, 0xe7, 0x24, 0x4e, 0x71, 0xb9, 0x64, 0x6c, 0xd9, 0x62, 0x6b, 0x5c, 0x57,
0x6c, 0xc6, 0x75, 0xc5, 0x06, 0xf9, 0x62, 0x4b, 0xf3, 0xbd, 0x99, 0xa9, 0x1f, 0x6e, 0x67, 0x36,
0x0b, 0xa9, 0xb9, 0x25, 0x8e, 0x33, 0x39, 0xe2, 0xf6, 0x73, 0xe2, 0x9e, 0x9d, 0x33, 0xb3, 0x25,
0xf6, 0x91, 0xa3, 0x6c, 0x1a, 0xb5, 0xf3, 0x69, 0xf4, 0xa6, 0x0a, 0xad, 0x45, 0xd5, 0x7c, 0x0c,
0x8a, 0x7e, 0x06, 0xed, 0x91, 0x1f, 0x9e, 0x9d, 0xb3, 0x9c, 0xa6, 0x39, 0x6b, 0x9a, 0xfb, 0x0d,
0xb5, 0x90, 0x52, 0xee, 0x8d, 0x12, 0xee, 0xa1, 0x9c, 0xfb, 0x66, 0x9e, 0xfb, 0x3f, 0x35, 0x68,
0x63, 0x32, 0x26, 0xee, 0x8c, 0xf5, 0xc3, 0xa8, 0x6f, 0x53, 0xb2, 0x02, 0xf9, 0x5d, 0xd0, 0xfd,
0xab, 0x29, 0x09, 0x24, 0xf5, 0xf1, 0xa0, 0x9c, 0x78, 0xe3, 0xfd, 0x12, 0x6f, 0xdc, 0x08, 0xe2,
0x0d, 0x95, 0x78, 0x59, 0x24, 0x90, 0x2f, 0x12, 0x36, 0x1f, 0xd8, 0xf4, 0x7c, 0x51, 0x3c, 0xf1,
0x48, 0x11, 0x6a, 0xab, 0x5c, 0xa8, 0x56, 0x5e, 0xa8, 0xff, 0x35, 0xd8, 0x96, 0x42, 0xf1, 0x93,
0xef, 0x96, 0x2b, 0x75, 0xf3, 0x0f, 0xbd, 0x54, 0xff, 0x24, 0x5b, 0x5a, 0xb9, 0x6c, 0x91, 0xea,
0xb7, 0x4b, 0xd4, 0xdf, 0x2e, 0x57, 0xbf, 0x93, 0x57, 0xbf, 0x0f, 0x77, 0xa5, 0xf8, 0xe2, 0x8a,
0xec, 0x27, 0xfd, 0xf3, 0x03, 0xa8, 0x8d, 0x6c, 0x4a, 0x64, 0x8f, 0x7e, 0x57, 0x76, 0xa2, 0xd9,
0x8a, 0xc6, 0xc2, 0xc5, 0x3a, 0x82, 0x6e, 0x0e, 0x23, 0xee, 0x53, 0xd6, 0x80, 0x58, 0x0e, 0x23,
0xbe, 0xa9, 0xd7, 0xc1, 0x38, 0xce, 0x62, 0x9c, 0x26, 0x7f, 0x1f, 0x1e, 0x66, 0x30, 0x76, 0xb3,
0x18, 0x8b, 0x9c, 0x97, 0x20, 0xdf, 0xc2, 0x8e, 0x32, 0x21, 0xb9, 0x58, 0x07, 0xe0, 0x04, 0x76,
0xf3, 0x51, 0xc8, 0x4f, 0x59, 0x07, 0xe5, 0x8f, 0x0a, 0xb4, 0x30, 0xb9, 0x3c, 0x72, 0x9c, 0xe0,
0x88, 0x6b, 0x45, 0x11, 0x82, 0x1a, 0xbf, 0x88, 0x64, 0x2d, 0x8a, 0xdf, 0x4a, 0xe2, 0x54, 0x33,
0x27, 0x76, 0x17, 0x74, 0x51, 0xab, 0xa6, 0xd6, 0xd3, 0x78, 0xe2, 0x88, 0x01, 0x4f, 0x04, 0xc7,
0x0d, 0x88, 0xf8, 0x5f, 0x26, 0xff, 0x2d, 0xa4, 0x06, 0xbe, 0x66, 0xcc, 0x0b, 0x54, 0xd4, 0x97,
0x8e, 0xe3, 0x01, 0xbf, 0x0d, 0x5f, 0x06, 0xfe, 0xe4, 0x47, 0x12, 0xc9, 0x26, 0x6d, 0x31, 0xb4,
0x7e, 0xaf, 0x70, 0xa6, 0x2e, 0x87, 0xe2, 0x4c, 0x58, 0xaf, 0x63, 0x5a, 0x20, 0x56, 0x33, 0x88,
0x69, 0x04, 0x9a, 0x1a, 0xc1, 0xf5, 0x51, 0xa7, 0x0c, 0xe8, 0x2a, 0x03, 0xd6, 0x6f, 0x15, 0xe8,
0x2c, 0xa2, 0xeb, 0x87, 0xd1, 0xcd, 0x0a, 0xee, 0x1f, 0x8d, 0x8b, 0x3b, 0xf3, 0xa2, 0x35, 0x22,
0x5b, 0xf3, 0xbc, 0xbd, 0xfd, 0x2d, 0xc9, 0x7b, 0xb9, 0x19, 0x3b, 0xa0, 0x5d, 0x90, 0x48, 0x9e,
0xaf, 0xfc, 0xe7, 0x3b, 0x1a, 0xca, 0xbf, 0x45, 0x53, 0x33, 0xf3, 0xa2, 0x75, 0x32, 0xfe, 0x43,
0x95, 0x6e, 0x95, 0xab, 0xf2, 0xc3, 0x90, 0x6d, 0xc0, 0x3b, 0x1c, 0x55, 0x35, 0x8a, 0x9e, 0xc4,
0x4f, 0x35, 0xf1, 0xc8, 0xac, 0xf4, 0xb4, 0xcc, 0xed, 0xa2, 0xfa, 0x62, 0xc5, 0xd1, 0x3a, 0x91,
0xfa, 0x2f, 0x2a, 0x97, 0xca, 0xb7, 0xa9, 0x0c, 0x4e, 0x57, 0xc5, 0x59, 0x78, 0xe2, 0xd4, 0xcd,
0x7a, 0xa3, 0xc9, 0x80, 0xc4, 0x15, 0xf1, 0x11, 0x1c, 0x01, 0xe2, 0x95, 0x30, 0x9f, 0x49, 0x39,
0xeb, 0x4d, 0xca, 0xa5, 0x91, 0xe7, 0x8f, 0x2f, 0x86, 0xbc, 0xc3, 0x6b, 0xc7, 0xed, 0x5f, 0x62,
0xe0, 0x0c, 0xba, 0x34, 0x49, 0x0e, 0xd1, 0x6b, 0x35, 0xb0, 0x6a, 0x7a, 0x67, 0xc3, 0xd5, 0xc9,
0x49, 0x4f, 0xd1, 0x01, 0xd4, 0x7d, 0x35, 0x81, 0x76, 0xd5, 0x04, 0x4a, 0x1d, 0xb1, 0xf4, 0xb2,
0x5e, 0xc0, 0x16, 0x26, 0x97, 0x7c, 0x47, 0x71, 0xc1, 0xa1, 0xcf, 0xa1, 0xc6, 0xbf, 0xfe, 0x9a,
0xf7, 0x54, 0x2c, 0x1c, 0x8a, 0x53, 0xc8, 0xfa, 0x55, 0xf4, 0x1a, 0xca, 0x6b, 0xd4, 0x17, 0x50,
0x8f, 0x5f, 0x17, 0x25, 0x62, 0xf9, 0xbb, 0x29, 0x96, 0x8e, 0x25, 0xc8, 0xcf, 0xa0, 0x89, 0xc9,
0x65, 0x3f, 0x8c, 0xe2, 0x38, 0xef, 0x83, 0x36, 0x0a, 0x23, 0x09, 0x5a, 0xf0, 0x82, 0x8b, 0xf9,
0xb4, 0xcc, 0x83, 0x14, 0x4a, 0x0c, 0x0e, 0xff, 0xd2, 0x40, 0x17, 0x09, 0x83, 0xbe, 0x81, 0xee,
0x71, 0x40, 0x6c, 0x46, 0xb0, 0x7d, 0x95, 0xf4, 0x58, 0xc3, 0x39, 0x2a, 0xfa, 0xee, 0xbd, 0x6d,
0x69, 0xfc, 0x65, 0x4a, 0xdd, 0xb3, 0xe9, 0x70, 0x6e, 0x6d, 0xa0, 0xaf, 0xe1, 0x4e, 0x76, 0x3d,
0x8f, 0x6f, 0x8e, 0x0a, 0xe2, 0x29, 0x5a, 0xfd, 0x14, 0x76, 0xb3, 0xab, 0x63, 0x32, 0x86, 0x73,
0x54, 0xce, 0x52, 0x31, 0x8e, 0xb9, 0x14, 0x85, 0x68, 0x57, 0x87, 0x73, 0x54, 0xf6, 0xd8, 0x5c,
0x84, 0xf3, 0x03, 0xec, 0x2d, 0xb3, 0x11, 0xf7, 0xad, 0x05, 0x31, 0xa5, 0x93, 0x45, 0x58, 0x03,
0xb8, 0x57, 0xf4, 0x6d, 0x31, 0x3f, 0xa5, 0x8f, 0xd1, 0x05, 0x48, 0xa3, 0xba, 0x78, 0xf7, 0x7f,
0xfc, 0x36, 0x00, 0x00, 0xff, 0xff, 0x84, 0x9a, 0xb6, 0x92, 0x20, 0x18, 0x00, 0x00,
// 1306 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0x41, 0x6f, 0xe3, 0x44,
0x14, 0x6e, 0xe2, 0x38, 0x8d, 0x5f, 0x9a, 0x34, 0x9d, 0xcd, 0x16, 0x6f, 0x85, 0x50, 0x64, 0xad,
0xa0, 0xbb, 0x5a, 0x55, 0xa2, 0xab, 0x95, 0x90, 0x40, 0xa0, 0xa6, 0xa5, 0xa4, 0xd0, 0x15, 0x68,
0x1a, 0x24, 0xae, 0x4e, 0x3c, 0xdb, 0x5a, 0x75, 0xec, 0xd4, 0x1e, 0x6f, 0xe3, 0xbf, 0x02, 0x07,
0x6e, 0x5c, 0x90, 0x38, 0x21, 0xf1, 0x17, 0x90, 0xf8, 0x3b, 0x7b, 0x59, 0x71, 0x41, 0x33, 0x9e,
0xd8, 0x63, 0xc7, 0xee, 0x26, 0xd2, 0x1e, 0xba, 0x5d, 0x6e, 0x99, 0x37, 0x6f, 0xbe, 0x79, 0xfe,
0xbe, 0xf7, 0x66, 0x9e, 0x1d, 0x68, 0x52, 0xdf, 0xb4, 0xc8, 0xde, 0xd4, 0xf7, 0xa8, 0x87, 0x54,
0x1a, 0x4d, 0x49, 0xb0, 0xb3, 0x45, 0x7d, 0xd3, 0x0d, 0xcc, 0x31, 0xb5, 0x3d, 0x37, 0x9e, 0x31,
0x5e, 0x55, 0x41, 0x1d, 0x32, 0x4f, 0xf4, 0x14, 0xb4, 0x80, 0x38, 0xce, 0xa9, 0x3d, 0xb1, 0xa9,
0x5e, 0xe9, 0x55, 0x76, 0x9b, 0xfb, 0xf7, 0xf6, 0xf8, 0xba, 0x3d, 0xee, 0x70, 0xec, 0xf9, 0x67,
0xc4, 0x71, 0x06, 0x6b, 0x38, 0xf5, 0x43, 0xfb, 0xa0, 0x8d, 0xc2, 0xe8, 0xb9, 0xe9, 0x5f, 0x12,
0xaa, 0x57, 0xf9, 0x22, 0x94, 0x5b, 0xd4, 0x0f, 0x23, 0xb6, 0x26, 0x71, 0x43, 0x9f, 0x03, 0xf8,
0xe4, 0xa5, 0x77, 0x49, 0x18, 0x9c, 0xae, 0xf0, 0x45, 0x0f, 0x72, 0x8b, 0x70, 0xe2, 0x30, 0x58,
0xc3, 0x92, 0x3b, 0x7a, 0x06, 0x8d, 0x51, 0x18, 0xc5, 0x41, 0xaa, 0x7c, 0xe9, 0x07, 0x8b, 0xfb,
0xf1, 0xe9, 0xc1, 0x1a, 0x4e, 0x5c, 0xd9, 0x9e, 0x2c, 0x68, 0x11, 0x68, 0xbd, 0x70, 0xcf, 0xb3,
0xc4, 0x81, 0xed, 0x99, 0xba, 0xa3, 0xcf, 0x40, 0x8b, 0x23, 0xe8, 0x87, 0x91, 0xbe, 0xce, 0xd7,
0xea, 0x85, 0xf1, 0x8a, 0x47, 0x4d, 0x9c, 0x51, 0x1b, 0xaa, 0x34, 0xd2, 0x6b, 0xbd, 0xca, 0xae,
0x8a, 0xab, 0x34, 0xea, 0xaf, 0x83, 0xfa, 0xd2, 0x74, 0x42, 0x62, 0xfc, 0x5d, 0x85, 0x0d, 0x79,
0x5f, 0xd4, 0x83, 0x26, 0xf5, 0x2e, 0x89, 0x7b, 0x16, 0x4d, 0x46, 0x9e, 0xc3, 0xf9, 0xd7, 0xb0,
0x6c, 0x42, 0x4f, 0x60, 0xcb, 0x9c, 0x78, 0xa1, 0x4b, 0x7f, 0x20, 0x7e, 0xdf, 0x33, 0x7d, 0xcb,
0xf1, 0x62, 0xca, 0x15, 0xbc, 0x38, 0xc1, 0xf0, 0x26, 0xb6, 0x9b, 0xf8, 0x29, 0xdc, 0x4f, 0x36,
0xa1, 0xc7, 0xd0, 0x99, 0xfa, 0xf6, 0x98, 0xc8, 0x70, 0x35, 0xee, 0xb6, 0x60, 0x47, 0x0f, 0xa1,
0x45, 0x3d, 0x6a, 0x3a, 0x89, 0xa3, 0xca, 0x1d, 0xb3, 0x46, 0xf4, 0x21, 0x68, 0x01, 0x35, 0x7d,
0x4a, 0xed, 0x09, 0xe1, 0x1c, 0x2b, 0x38, 0x35, 0xa0, 0x1d, 0x68, 0x04, 0xd4, 0x9b, 0xf2, 0xc9,
0x75, 0x3e, 0x99, 0x8c, 0xd9, 0xca, 0xb1, 0xef, 0x5d, 0x5b, 0x2f, 0x42, 0xd7, 0xd2, 0x1b, 0xbd,
0xca, 0x6e, 0x03, 0xa7, 0x06, 0x36, 0x6b, 0x06, 0x01, 0xa1, 0x5f, 0xcf, 0xc8, 0x58, 0xd7, 0x38,
0x33, 0xa9, 0xc1, 0xf8, 0x06, 0x9a, 0x92, 0xf4, 0x68, 0x1b, 0xea, 0x4c, 0xba, 0x93, 0x23, 0xc1,
0xa1, 0x18, 0x31, 0x42, 0x46, 0x22, 0xd0, 0x43, 0x77, 0x4e, 0x9c, 0x6c, 0x32, 0x9e, 0x00, 0x5a,
0x4c, 0xbf, 0x32, 0x3c, 0xe3, 0x55, 0x05, 0x3a, 0xf9, 0x94, 0xbb, 0x2b, 0x2a, 0xa6, 0x6c, 0xd7,
0xf3, 0x6c, 0x9f, 0xa6, 0x24, 0xa5, 0xf5, 0x82, 0xba, 0xa0, 0x8e, 0xc2, 0x28, 0xe1, 0x28, 0x1e,
0x2c, 0x41, 0xf9, 0x23, 0xd8, 0x5a, 0xa8, 0xa0, 0x62, 0x30, 0xe3, 0x1f, 0x05, 0x34, 0xb6, 0xe3,
0xf7, 0xbe, 0x45, 0xfc, 0x25, 0x88, 0xd6, 0x61, 0xdd, 0xb4, 0x2c, 0x9f, 0x04, 0x01, 0xdf, 0x58,
0xc3, 0xf3, 0x61, 0xb1, 0x04, 0xca, 0x92, 0x12, 0xd4, 0x96, 0x93, 0x40, 0x5d, 0x56, 0x82, 0x7a,
0x91, 0x04, 0x06, 0x6c, 0x04, 0x9e, 0x63, 0x25, 0x4e, 0x71, 0xb9, 0x64, 0x6c, 0xd9, 0x62, 0x6b,
0xdc, 0x54, 0x6c, 0xda, 0x4d, 0xc5, 0x06, 0xf9, 0x62, 0x4b, 0xf3, 0xbd, 0x99, 0xa9, 0x1f, 0x66,
0xa7, 0x26, 0x0d, 0x03, 0x7d, 0x83, 0x1f, 0x67, 0x62, 0xc4, 0xec, 0x17, 0xc4, 0x3e, 0xbf, 0xa0,
0x7a, 0x8b, 0xef, 0x23, 0x46, 0xd9, 0x34, 0x6a, 0xe7, 0xd3, 0xe8, 0x75, 0x15, 0x5a, 0xf3, 0xaa,
0x79, 0x1f, 0x14, 0xfd, 0x18, 0xda, 0x23, 0x2f, 0x3c, 0xbf, 0xa0, 0x39, 0x4d, 0x73, 0xd6, 0x34,
0xf7, 0x1b, 0x72, 0x21, 0xa5, 0xdc, 0x6b, 0x25, 0xdc, 0x43, 0x39, 0xf7, 0xcd, 0x3c, 0xf7, 0xbf,
0x29, 0xd0, 0xc6, 0x64, 0x4c, 0xec, 0x29, 0xed, 0x87, 0x51, 0xdf, 0x0c, 0xc8, 0x12, 0xe4, 0x77,
0x41, 0xf5, 0xae, 0x5d, 0xe2, 0x0b, 0xea, 0xe3, 0x41, 0x39, 0xf1, 0xda, 0xdb, 0x25, 0x5e, 0xbb,
0x15, 0xc4, 0x6b, 0x32, 0xf1, 0xa2, 0x48, 0x20, 0x5f, 0x24, 0x74, 0x36, 0x30, 0x83, 0x8b, 0x79,
0xf1, 0xc4, 0x23, 0x49, 0xa8, 0x8d, 0x72, 0xa1, 0x5a, 0x79, 0xa1, 0xfe, 0x55, 0x60, 0x53, 0x08,
0xc5, 0x4e, 0xbe, 0x3b, 0xae, 0xd4, 0xed, 0x3f, 0xf4, 0x52, 0xfd, 0x93, 0x6c, 0x69, 0xe5, 0xb2,
0x45, 0xa8, 0xdf, 0x2e, 0x51, 0x7f, 0xb3, 0x5c, 0xfd, 0x4e, 0x5e, 0xfd, 0x3e, 0xdc, 0x17, 0xe2,
0xf3, 0x2b, 0xb2, 0x9f, 0xf4, 0xcf, 0x8f, 0xa0, 0x36, 0x32, 0x03, 0x22, 0x7a, 0xf4, 0xfb, 0xa2,
0x13, 0xcd, 0x56, 0x34, 0xe6, 0x2e, 0xc6, 0x01, 0x74, 0x73, 0x18, 0x71, 0x9f, 0xb2, 0x02, 0xc4,
0x62, 0x18, 0xf1, 0x4d, 0xbd, 0x0a, 0xc6, 0x61, 0x16, 0xe3, 0x2c, 0x79, 0x7d, 0x78, 0x9c, 0xc1,
0xd8, 0xce, 0x62, 0xcc, 0x73, 0x5e, 0x80, 0x7c, 0x05, 0x5b, 0xd2, 0x84, 0xe0, 0x62, 0x15, 0x80,
0x23, 0xd8, 0xce, 0x47, 0x21, 0x1e, 0x65, 0x15, 0x94, 0x5f, 0x2b, 0xd0, 0xc2, 0xe4, 0xea, 0xc0,
0xb2, 0xfc, 0x03, 0xa6, 0x55, 0x80, 0x10, 0xd4, 0xd8, 0x45, 0x24, 0x6a, 0x91, 0xff, 0x96, 0x12,
0xa7, 0x9a, 0x39, 0xb1, 0xbb, 0xa0, 0xf2, 0x5a, 0xd5, 0x95, 0x9e, 0xc2, 0x12, 0x87, 0x0f, 0x58,
0x22, 0x58, 0xb6, 0x4f, 0xf8, 0x7b, 0x99, 0x78, 0x5b, 0x48, 0x0d, 0x6c, 0xcd, 0x98, 0x15, 0x28,
0xaf, 0x2f, 0x15, 0xc7, 0x03, 0x76, 0x1b, 0xbe, 0xf0, 0xbd, 0xc9, 0x77, 0x24, 0x12, 0x4d, 0xda,
0x7c, 0x68, 0xfc, 0x52, 0x61, 0x4c, 0x5d, 0x0d, 0xf9, 0x99, 0xb0, 0x5a, 0xc7, 0x34, 0x47, 0xac,
0x66, 0x10, 0xd3, 0x08, 0x14, 0x39, 0x82, 0x9b, 0xa3, 0x4e, 0x19, 0x50, 0x65, 0x06, 0x8c, 0x9f,
0x2b, 0xd0, 0x99, 0x47, 0xd7, 0x0f, 0xa3, 0xdb, 0x15, 0xdc, 0x5f, 0x0a, 0x13, 0x77, 0xea, 0x44,
0x2b, 0x44, 0xb6, 0xe2, 0x79, 0x7b, 0xf7, 0x5b, 0x92, 0xb7, 0x72, 0x33, 0x76, 0x40, 0xb9, 0x24,
0x91, 0x38, 0x5f, 0xd9, 0xcf, 0x37, 0x34, 0x94, 0x7f, 0xf2, 0xa6, 0x66, 0xea, 0x44, 0xab, 0x64,
0xfc, 0xbb, 0x2a, 0xdd, 0x32, 0x57, 0xe5, 0xbb, 0x21, 0xdb, 0x80, 0x75, 0x38, 0xb2, 0x6a, 0x01,
0x7a, 0x16, 0x7f, 0xaa, 0x89, 0x47, 0x7a, 0xa5, 0xa7, 0x64, 0x6e, 0x17, 0xd9, 0x17, 0x4b, 0x8e,
0xc6, 0x91, 0xd0, 0x7f, 0x5e, 0xb9, 0x81, 0xf8, 0x36, 0x95, 0xc1, 0xe9, 0xca, 0x38, 0x73, 0x4f,
0x9c, 0xba, 0x19, 0xaf, 0x15, 0x11, 0x10, 0xbf, 0x22, 0xde, 0x83, 0x23, 0x80, 0x7f, 0x25, 0xcc,
0x67, 0x52, 0xce, 0x7a, 0x9b, 0x72, 0x69, 0xe4, 0x78, 0xe3, 0xcb, 0x21, 0xeb, 0xf0, 0xda, 0x71,
0xfb, 0x97, 0x18, 0x18, 0x83, 0x76, 0x90, 0x24, 0x07, 0xef, 0xb5, 0x1a, 0x58, 0x36, 0xbd, 0xb1,
0xe1, 0xea, 0xe4, 0xa4, 0x0f, 0xd0, 0x1e, 0xd4, 0x3d, 0x39, 0x81, 0xb6, 0xe5, 0x04, 0x4a, 0x1d,
0xb1, 0xf0, 0x32, 0x9e, 0xc3, 0x06, 0x26, 0x57, 0x6c, 0x47, 0x7e, 0xc1, 0xa1, 0x4f, 0xa0, 0xc6,
0x9e, 0xfe, 0x86, 0xef, 0xa9, 0x98, 0x3b, 0x14, 0xa7, 0x90, 0xf1, 0x13, 0xef, 0x35, 0xa4, 0xaf,
0x51, 0x9f, 0x42, 0x3d, 0xfe, 0xba, 0x28, 0x10, 0xcb, 0xbf, 0x9b, 0x62, 0xe1, 0x58, 0x82, 0x7c,
0x02, 0x4d, 0x4c, 0xae, 0xfa, 0x61, 0x14, 0xc7, 0xf9, 0x10, 0x94, 0x51, 0x18, 0x09, 0xd0, 0x82,
0x2f, 0xb8, 0x98, 0x4d, 0x8b, 0x3c, 0x48, 0xa1, 0xf8, 0xc0, 0xf8, 0xa3, 0x06, 0x70, 0xea, 0x8d,
0xcd, 0xf4, 0xd8, 0xe5, 0x9c, 0x66, 0xcb, 0x45, 0x32, 0xfd, 0x5f, 0x2e, 0x2b, 0x97, 0x8b, 0x72,
0xfb, 0xca, 0x85, 0x75, 0x64, 0x74, 0x76, 0xe2, 0x5a, 0x64, 0xa6, 0x6f, 0xc5, 0x1d, 0x99, 0x18,
0xa2, 0x8f, 0x00, 0xec, 0xe0, 0xd8, 0x76, 0xed, 0xe0, 0x82, 0x58, 0x3a, 0xe2, 0xc0, 0x92, 0x65,
0xff, 0x77, 0x05, 0x54, 0x4e, 0x19, 0xfa, 0x12, 0xba, 0x87, 0x3e, 0x31, 0x29, 0xc1, 0xe6, 0x75,
0xd2, 0x94, 0x0f, 0x67, 0xa8, 0xa8, 0x50, 0x76, 0x36, 0x85, 0xf1, 0x47, 0x37, 0xb0, 0xcf, 0xdd,
0xe1, 0xcc, 0x58, 0x43, 0x5f, 0xc0, 0xbd, 0xec, 0x7a, 0x96, 0xd0, 0x33, 0x54, 0x90, 0xc0, 0x45,
0xab, 0x8f, 0x61, 0x3b, 0xbb, 0x3a, 0xae, 0x9e, 0xe1, 0x0c, 0x95, 0x97, 0x55, 0x31, 0x8e, 0xbe,
0x10, 0x05, 0x7f, 0xbf, 0x19, 0xce, 0x50, 0xd9, 0xbf, 0x13, 0x45, 0x38, 0xdf, 0xc2, 0xce, 0x22,
0x1b, 0xf1, 0x8b, 0x4e, 0x41, 0x4c, 0xe9, 0x64, 0x11, 0xd6, 0x00, 0x1e, 0x14, 0x3d, 0x5b, 0xcc,
0x4f, 0xe9, 0xbf, 0x17, 0x05, 0x48, 0xa3, 0x3a, 0xff, 0xa3, 0xe8, 0xe9, 0x7f, 0x01, 0x00, 0x00,
0xff, 0xff, 0xe7, 0xe7, 0x49, 0x74, 0x51, 0x1a, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment