lnrpc: making PendingChannels req/resp naming scheme consistent
In this commit we rename the lnrpc.PendingChannelRequest and lnrpc.PendingChannelResponse to lnrpc.PendingChannelsRequest/lnrpc.PendingChannelsResponse. We do this as we strive to ensure that the naming scheme across the RPC interface is consistent.
This commit is contained in:
parent
445e11db5c
commit
7421584341
@ -901,7 +901,7 @@ func pendingChannels(ctx *cli.Context) error {
|
||||
client, cleanUp := getClient(ctx)
|
||||
defer cleanUp()
|
||||
|
||||
req := &lnrpc.PendingChannelRequest{}
|
||||
req := &lnrpc.PendingChannelsRequest{}
|
||||
resp, err := client.PendingChannels(ctxb, req)
|
||||
if err != nil {
|
||||
return err
|
||||
|
20
lnd_test.go
20
lnd_test.go
@ -211,7 +211,7 @@ func closeChannelAndAssert(ctx context.Context, t *harnessTest,
|
||||
// If we didn't force close the transaction, at this point, the channel
|
||||
// should now be marked as being in the state of "pending close".
|
||||
if !force {
|
||||
pendingChansRequest := &lnrpc.PendingChannelRequest{}
|
||||
pendingChansRequest := &lnrpc.PendingChannelsRequest{}
|
||||
pendingChanResp, err := node.PendingChannels(ctx, pendingChansRequest)
|
||||
if err != nil {
|
||||
t.Fatalf("unable to query for pending channels: %v", err)
|
||||
@ -247,7 +247,7 @@ func closeChannelAndAssert(ctx context.Context, t *harnessTest,
|
||||
// node's channels that are currently in a pending state (with a broadcast, but
|
||||
// not confirmed funding transaction).
|
||||
func numOpenChannelsPending(ctxt context.Context, node *lntest.HarnessNode) (int, error) {
|
||||
pendingChansRequest := &lnrpc.PendingChannelRequest{}
|
||||
pendingChansRequest := &lnrpc.PendingChannelsRequest{}
|
||||
resp, err := node.PendingChannels(ctxt, pendingChansRequest)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
@ -985,11 +985,11 @@ func testChannelBalance(net *lntest.NetworkHarness, t *harnessTest) {
|
||||
// findForceClosedChannel searches a pending channel response for a particular
|
||||
// channel, returning the force closed channel upon success.
|
||||
func findForceClosedChannel(t *harnessTest,
|
||||
pendingChanResp *lnrpc.PendingChannelResponse,
|
||||
op *wire.OutPoint) *lnrpc.PendingChannelResponse_ForceClosedChannel {
|
||||
pendingChanResp *lnrpc.PendingChannelsResponse,
|
||||
op *wire.OutPoint) *lnrpc.PendingChannelsResponse_ForceClosedChannel {
|
||||
|
||||
var found bool
|
||||
var forceClose *lnrpc.PendingChannelResponse_ForceClosedChannel
|
||||
var forceClose *lnrpc.PendingChannelsResponse_ForceClosedChannel
|
||||
for _, forceClose = range pendingChanResp.PendingForceClosingChannels {
|
||||
if forceClose.Channel.ChannelPoint == op.String() {
|
||||
found = true
|
||||
@ -1004,7 +1004,7 @@ func findForceClosedChannel(t *harnessTest,
|
||||
}
|
||||
|
||||
func assertCommitmentMaturity(t *harnessTest,
|
||||
forceClose *lnrpc.PendingChannelResponse_ForceClosedChannel,
|
||||
forceClose *lnrpc.PendingChannelsResponse_ForceClosedChannel,
|
||||
maturityHeight uint32, blocksTilMaturity int32) {
|
||||
|
||||
if forceClose.MaturityHeight != maturityHeight {
|
||||
@ -1022,7 +1022,7 @@ func assertCommitmentMaturity(t *harnessTest,
|
||||
// assertForceClosedChannelNumHtlcs verifies that a force closed channel has the
|
||||
// proper number of htlcs.
|
||||
func assertPendingChannelNumHtlcs(t *harnessTest,
|
||||
forceClose *lnrpc.PendingChannelResponse_ForceClosedChannel,
|
||||
forceClose *lnrpc.PendingChannelsResponse_ForceClosedChannel,
|
||||
expectedNumHtlcs int) {
|
||||
|
||||
if len(forceClose.PendingHtlcs) != expectedNumHtlcs {
|
||||
@ -1035,7 +1035,7 @@ func assertPendingChannelNumHtlcs(t *harnessTest,
|
||||
// assertNumForceClosedChannels checks that a pending channel response has the
|
||||
// expected number of force closed channels.
|
||||
func assertNumForceClosedChannels(t *harnessTest,
|
||||
pendingChanResp *lnrpc.PendingChannelResponse, expectedNumChans int) {
|
||||
pendingChanResp *lnrpc.PendingChannelsResponse, expectedNumChans int) {
|
||||
|
||||
if len(pendingChanResp.PendingForceClosingChannels) != expectedNumChans {
|
||||
t.Fatalf("expected to find %d force closed channels, got %d",
|
||||
@ -1048,7 +1048,7 @@ func assertNumForceClosedChannels(t *harnessTest,
|
||||
// belonging to a force closed channel, testing for the expeced stage number,
|
||||
// blocks till maturity, and the maturity height.
|
||||
func assertPendingHtlcStageAndMaturity(t *harnessTest,
|
||||
forceClose *lnrpc.PendingChannelResponse_ForceClosedChannel,
|
||||
forceClose *lnrpc.PendingChannelsResponse_ForceClosedChannel,
|
||||
stage, maturityHeight uint32, blocksTillMaturity int32) {
|
||||
|
||||
for _, pendingHtlc := range forceClose.PendingHtlcs {
|
||||
@ -1213,7 +1213,7 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
||||
|
||||
// Now that the channel has been force closed, it should show up in the
|
||||
// PendingChannels RPC under the force close section.
|
||||
pendingChansRequest := &lnrpc.PendingChannelRequest{}
|
||||
pendingChansRequest := &lnrpc.PendingChannelsRequest{}
|
||||
pendingChanResp, err := net.Alice.PendingChannels(ctxb, pendingChansRequest)
|
||||
if err != nil {
|
||||
t.Fatalf("unable to query for pending channels: %v", err)
|
||||
|
777
lnrpc/rpc.pb.go
777
lnrpc/rpc.pb.go
@ -1,6 +1,5 @@
|
||||
// Code generated by protoc-gen-go.
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: rpc.proto
|
||||
// DO NOT EDIT!
|
||||
|
||||
/*
|
||||
Package lnrpc is a generated protocol buffer package.
|
||||
@ -53,8 +52,8 @@ It has these top-level messages:
|
||||
OpenChannelRequest
|
||||
OpenStatusUpdate
|
||||
PendingHTLC
|
||||
PendingChannelRequest
|
||||
PendingChannelResponse
|
||||
PendingChannelsRequest
|
||||
PendingChannelsResponse
|
||||
WalletBalanceRequest
|
||||
WalletBalanceResponse
|
||||
ChannelBalanceRequest
|
||||
@ -1829,59 +1828,59 @@ func (m *PendingHTLC) GetStage() uint32 {
|
||||
return 0
|
||||
}
|
||||
|
||||
type PendingChannelRequest struct {
|
||||
type PendingChannelsRequest struct {
|
||||
}
|
||||
|
||||
func (m *PendingChannelRequest) Reset() { *m = PendingChannelRequest{} }
|
||||
func (m *PendingChannelRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelRequest) ProtoMessage() {}
|
||||
func (*PendingChannelRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{44} }
|
||||
func (m *PendingChannelsRequest) Reset() { *m = PendingChannelsRequest{} }
|
||||
func (m *PendingChannelsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelsRequest) ProtoMessage() {}
|
||||
func (*PendingChannelsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{44} }
|
||||
|
||||
type PendingChannelResponse struct {
|
||||
type PendingChannelsResponse struct {
|
||||
// / The balance in satoshis encumbered in pending channels
|
||||
TotalLimboBalance int64 `protobuf:"varint,1,opt,name=total_limbo_balance" json:"total_limbo_balance,omitempty"`
|
||||
// / Channels pending opening
|
||||
PendingOpenChannels []*PendingChannelResponse_PendingOpenChannel `protobuf:"bytes,2,rep,name=pending_open_channels" json:"pending_open_channels,omitempty"`
|
||||
PendingOpenChannels []*PendingChannelsResponse_PendingOpenChannel `protobuf:"bytes,2,rep,name=pending_open_channels" json:"pending_open_channels,omitempty"`
|
||||
// / Channels pending closing
|
||||
PendingClosingChannels []*PendingChannelResponse_ClosedChannel `protobuf:"bytes,3,rep,name=pending_closing_channels" json:"pending_closing_channels,omitempty"`
|
||||
PendingClosingChannels []*PendingChannelsResponse_ClosedChannel `protobuf:"bytes,3,rep,name=pending_closing_channels" json:"pending_closing_channels,omitempty"`
|
||||
// / Channels pending force closing
|
||||
PendingForceClosingChannels []*PendingChannelResponse_ForceClosedChannel `protobuf:"bytes,4,rep,name=pending_force_closing_channels" json:"pending_force_closing_channels,omitempty"`
|
||||
PendingForceClosingChannels []*PendingChannelsResponse_ForceClosedChannel `protobuf:"bytes,4,rep,name=pending_force_closing_channels" json:"pending_force_closing_channels,omitempty"`
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse) Reset() { *m = PendingChannelResponse{} }
|
||||
func (m *PendingChannelResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelResponse) ProtoMessage() {}
|
||||
func (*PendingChannelResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{45} }
|
||||
func (m *PendingChannelsResponse) Reset() { *m = PendingChannelsResponse{} }
|
||||
func (m *PendingChannelsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelsResponse) ProtoMessage() {}
|
||||
func (*PendingChannelsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{45} }
|
||||
|
||||
func (m *PendingChannelResponse) GetTotalLimboBalance() int64 {
|
||||
func (m *PendingChannelsResponse) GetTotalLimboBalance() int64 {
|
||||
if m != nil {
|
||||
return m.TotalLimboBalance
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse) GetPendingOpenChannels() []*PendingChannelResponse_PendingOpenChannel {
|
||||
func (m *PendingChannelsResponse) GetPendingOpenChannels() []*PendingChannelsResponse_PendingOpenChannel {
|
||||
if m != nil {
|
||||
return m.PendingOpenChannels
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse) GetPendingClosingChannels() []*PendingChannelResponse_ClosedChannel {
|
||||
func (m *PendingChannelsResponse) GetPendingClosingChannels() []*PendingChannelsResponse_ClosedChannel {
|
||||
if m != nil {
|
||||
return m.PendingClosingChannels
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse) GetPendingForceClosingChannels() []*PendingChannelResponse_ForceClosedChannel {
|
||||
func (m *PendingChannelsResponse) GetPendingForceClosingChannels() []*PendingChannelsResponse_ForceClosedChannel {
|
||||
if m != nil {
|
||||
return m.PendingForceClosingChannels
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type PendingChannelResponse_PendingChannel struct {
|
||||
type PendingChannelsResponse_PendingChannel struct {
|
||||
RemoteNodePub string `protobuf:"bytes,1,opt,name=remote_node_pub" json:"remote_node_pub,omitempty"`
|
||||
ChannelPoint string `protobuf:"bytes,2,opt,name=channel_point" json:"channel_point,omitempty"`
|
||||
Capacity int64 `protobuf:"varint,3,opt,name=capacity" json:"capacity,omitempty"`
|
||||
@ -1889,51 +1888,53 @@ type PendingChannelResponse_PendingChannel struct {
|
||||
RemoteBalance int64 `protobuf:"varint,5,opt,name=remote_balance" json:"remote_balance,omitempty"`
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingChannel) Reset() { *m = PendingChannelResponse_PendingChannel{} }
|
||||
func (m *PendingChannelResponse_PendingChannel) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelResponse_PendingChannel) ProtoMessage() {}
|
||||
func (*PendingChannelResponse_PendingChannel) Descriptor() ([]byte, []int) {
|
||||
func (m *PendingChannelsResponse_PendingChannel) Reset() {
|
||||
*m = PendingChannelsResponse_PendingChannel{}
|
||||
}
|
||||
func (m *PendingChannelsResponse_PendingChannel) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelsResponse_PendingChannel) ProtoMessage() {}
|
||||
func (*PendingChannelsResponse_PendingChannel) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor0, []int{45, 0}
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingChannel) GetRemoteNodePub() string {
|
||||
func (m *PendingChannelsResponse_PendingChannel) GetRemoteNodePub() string {
|
||||
if m != nil {
|
||||
return m.RemoteNodePub
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingChannel) GetChannelPoint() string {
|
||||
func (m *PendingChannelsResponse_PendingChannel) GetChannelPoint() string {
|
||||
if m != nil {
|
||||
return m.ChannelPoint
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingChannel) GetCapacity() int64 {
|
||||
func (m *PendingChannelsResponse_PendingChannel) GetCapacity() int64 {
|
||||
if m != nil {
|
||||
return m.Capacity
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingChannel) GetLocalBalance() int64 {
|
||||
func (m *PendingChannelsResponse_PendingChannel) GetLocalBalance() int64 {
|
||||
if m != nil {
|
||||
return m.LocalBalance
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingChannel) GetRemoteBalance() int64 {
|
||||
func (m *PendingChannelsResponse_PendingChannel) GetRemoteBalance() int64 {
|
||||
if m != nil {
|
||||
return m.RemoteBalance
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type PendingChannelResponse_PendingOpenChannel struct {
|
||||
type PendingChannelsResponse_PendingOpenChannel struct {
|
||||
// / The pending channel
|
||||
Channel *PendingChannelResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
|
||||
Channel *PendingChannelsResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
|
||||
// / The height at which this channel will be confirmed
|
||||
ConfirmationHeight uint32 `protobuf:"varint,2,opt,name=confirmation_height" json:"confirmation_height,omitempty"`
|
||||
// / The number of blocks until this channel is open
|
||||
@ -1954,88 +1955,90 @@ type PendingChannelResponse_PendingOpenChannel struct {
|
||||
FeePerKw int64 `protobuf:"varint,6,opt,name=fee_per_kw" json:"fee_per_kw,omitempty"`
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) Reset() {
|
||||
*m = PendingChannelResponse_PendingOpenChannel{}
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) Reset() {
|
||||
*m = PendingChannelsResponse_PendingOpenChannel{}
|
||||
}
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelResponse_PendingOpenChannel) ProtoMessage() {}
|
||||
func (*PendingChannelResponse_PendingOpenChannel) Descriptor() ([]byte, []int) {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) String() string {
|
||||
return proto.CompactTextString(m)
|
||||
}
|
||||
func (*PendingChannelsResponse_PendingOpenChannel) ProtoMessage() {}
|
||||
func (*PendingChannelsResponse_PendingOpenChannel) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor0, []int{45, 1}
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) GetChannel() *PendingChannelResponse_PendingChannel {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
|
||||
if m != nil {
|
||||
return m.Channel
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) GetConfirmationHeight() uint32 {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) GetConfirmationHeight() uint32 {
|
||||
if m != nil {
|
||||
return m.ConfirmationHeight
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) GetBlocksTillOpen() int32 {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) GetBlocksTillOpen() int32 {
|
||||
if m != nil {
|
||||
return m.BlocksTillOpen
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) GetCommitFee() int64 {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) GetCommitFee() int64 {
|
||||
if m != nil {
|
||||
return m.CommitFee
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) GetCommitWeight() int64 {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) GetCommitWeight() int64 {
|
||||
if m != nil {
|
||||
return m.CommitWeight
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_PendingOpenChannel) GetFeePerKw() int64 {
|
||||
func (m *PendingChannelsResponse_PendingOpenChannel) GetFeePerKw() int64 {
|
||||
if m != nil {
|
||||
return m.FeePerKw
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type PendingChannelResponse_ClosedChannel struct {
|
||||
type PendingChannelsResponse_ClosedChannel struct {
|
||||
// / The pending channel to be closed
|
||||
Channel *PendingChannelResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
|
||||
Channel *PendingChannelsResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
|
||||
// / The transaction id of the closing transaction
|
||||
ClosingTxid string `protobuf:"bytes,2,opt,name=closing_txid" json:"closing_txid,omitempty"`
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ClosedChannel) Reset() { *m = PendingChannelResponse_ClosedChannel{} }
|
||||
func (m *PendingChannelResponse_ClosedChannel) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelResponse_ClosedChannel) ProtoMessage() {}
|
||||
func (*PendingChannelResponse_ClosedChannel) Descriptor() ([]byte, []int) {
|
||||
func (m *PendingChannelsResponse_ClosedChannel) Reset() { *m = PendingChannelsResponse_ClosedChannel{} }
|
||||
func (m *PendingChannelsResponse_ClosedChannel) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelsResponse_ClosedChannel) ProtoMessage() {}
|
||||
func (*PendingChannelsResponse_ClosedChannel) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor0, []int{45, 2}
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ClosedChannel) GetChannel() *PendingChannelResponse_PendingChannel {
|
||||
func (m *PendingChannelsResponse_ClosedChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
|
||||
if m != nil {
|
||||
return m.Channel
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ClosedChannel) GetClosingTxid() string {
|
||||
func (m *PendingChannelsResponse_ClosedChannel) GetClosingTxid() string {
|
||||
if m != nil {
|
||||
return m.ClosingTxid
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type PendingChannelResponse_ForceClosedChannel struct {
|
||||
type PendingChannelsResponse_ForceClosedChannel struct {
|
||||
// / The pending channel to be force closed
|
||||
Channel *PendingChannelResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
|
||||
Channel *PendingChannelsResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
|
||||
// / The transaction id of the closing transaction
|
||||
ClosingTxid string `protobuf:"bytes,2,opt,name=closing_txid" json:"closing_txid,omitempty"`
|
||||
// / The balance in satoshis encumbered in this pending channel
|
||||
@ -2052,58 +2055,60 @@ type PendingChannelResponse_ForceClosedChannel struct {
|
||||
PendingHtlcs []*PendingHTLC `protobuf:"bytes,8,rep,name=pending_htlcs" json:"pending_htlcs,omitempty"`
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) Reset() {
|
||||
*m = PendingChannelResponse_ForceClosedChannel{}
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) Reset() {
|
||||
*m = PendingChannelsResponse_ForceClosedChannel{}
|
||||
}
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) String() string { return proto.CompactTextString(m) }
|
||||
func (*PendingChannelResponse_ForceClosedChannel) ProtoMessage() {}
|
||||
func (*PendingChannelResponse_ForceClosedChannel) Descriptor() ([]byte, []int) {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) String() string {
|
||||
return proto.CompactTextString(m)
|
||||
}
|
||||
func (*PendingChannelsResponse_ForceClosedChannel) ProtoMessage() {}
|
||||
func (*PendingChannelsResponse_ForceClosedChannel) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor0, []int{45, 3}
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetChannel() *PendingChannelResponse_PendingChannel {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
|
||||
if m != nil {
|
||||
return m.Channel
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetClosingTxid() string {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetClosingTxid() string {
|
||||
if m != nil {
|
||||
return m.ClosingTxid
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetLimboBalance() int64 {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetLimboBalance() int64 {
|
||||
if m != nil {
|
||||
return m.LimboBalance
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetMaturityHeight() uint32 {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetMaturityHeight() uint32 {
|
||||
if m != nil {
|
||||
return m.MaturityHeight
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetBlocksTilMaturity() int32 {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetBlocksTilMaturity() int32 {
|
||||
if m != nil {
|
||||
return m.BlocksTilMaturity
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetRecoveredBalance() int64 {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetRecoveredBalance() int64 {
|
||||
if m != nil {
|
||||
return m.RecoveredBalance
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PendingChannelResponse_ForceClosedChannel) GetPendingHtlcs() []*PendingHTLC {
|
||||
func (m *PendingChannelsResponse_ForceClosedChannel) GetPendingHtlcs() []*PendingHTLC {
|
||||
if m != nil {
|
||||
return m.PendingHtlcs
|
||||
}
|
||||
@ -3689,12 +3694,12 @@ func init() {
|
||||
proto.RegisterType((*OpenChannelRequest)(nil), "lnrpc.OpenChannelRequest")
|
||||
proto.RegisterType((*OpenStatusUpdate)(nil), "lnrpc.OpenStatusUpdate")
|
||||
proto.RegisterType((*PendingHTLC)(nil), "lnrpc.PendingHTLC")
|
||||
proto.RegisterType((*PendingChannelRequest)(nil), "lnrpc.PendingChannelRequest")
|
||||
proto.RegisterType((*PendingChannelResponse)(nil), "lnrpc.PendingChannelResponse")
|
||||
proto.RegisterType((*PendingChannelResponse_PendingChannel)(nil), "lnrpc.PendingChannelResponse.PendingChannel")
|
||||
proto.RegisterType((*PendingChannelResponse_PendingOpenChannel)(nil), "lnrpc.PendingChannelResponse.PendingOpenChannel")
|
||||
proto.RegisterType((*PendingChannelResponse_ClosedChannel)(nil), "lnrpc.PendingChannelResponse.ClosedChannel")
|
||||
proto.RegisterType((*PendingChannelResponse_ForceClosedChannel)(nil), "lnrpc.PendingChannelResponse.ForceClosedChannel")
|
||||
proto.RegisterType((*PendingChannelsRequest)(nil), "lnrpc.PendingChannelsRequest")
|
||||
proto.RegisterType((*PendingChannelsResponse)(nil), "lnrpc.PendingChannelsResponse")
|
||||
proto.RegisterType((*PendingChannelsResponse_PendingChannel)(nil), "lnrpc.PendingChannelsResponse.PendingChannel")
|
||||
proto.RegisterType((*PendingChannelsResponse_PendingOpenChannel)(nil), "lnrpc.PendingChannelsResponse.PendingOpenChannel")
|
||||
proto.RegisterType((*PendingChannelsResponse_ClosedChannel)(nil), "lnrpc.PendingChannelsResponse.ClosedChannel")
|
||||
proto.RegisterType((*PendingChannelsResponse_ForceClosedChannel)(nil), "lnrpc.PendingChannelsResponse.ForceClosedChannel")
|
||||
proto.RegisterType((*WalletBalanceRequest)(nil), "lnrpc.WalletBalanceRequest")
|
||||
proto.RegisterType((*WalletBalanceResponse)(nil), "lnrpc.WalletBalanceResponse")
|
||||
proto.RegisterType((*ChannelBalanceRequest)(nil), "lnrpc.ChannelBalanceRequest")
|
||||
@ -3937,7 +3942,7 @@ type LightningClient interface {
|
||||
// considered "pending". A channel is pending if it has finished the funding
|
||||
// workflow and is waiting for confirmations for the funding txn, or is in the
|
||||
// process of closure, either initiated cooperatively or non-cooperatively.
|
||||
PendingChannels(ctx context.Context, in *PendingChannelRequest, opts ...grpc.CallOption) (*PendingChannelResponse, error)
|
||||
PendingChannels(ctx context.Context, in *PendingChannelsRequest, opts ...grpc.CallOption) (*PendingChannelsResponse, error)
|
||||
// * lncli: `listchannels`
|
||||
// ListChannels returns a description of all the open channels that this node
|
||||
// is a participant in.
|
||||
@ -4222,8 +4227,8 @@ func (c *lightningClient) GetInfo(ctx context.Context, in *GetInfoRequest, opts
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *lightningClient) PendingChannels(ctx context.Context, in *PendingChannelRequest, opts ...grpc.CallOption) (*PendingChannelResponse, error) {
|
||||
out := new(PendingChannelResponse)
|
||||
func (c *lightningClient) PendingChannels(ctx context.Context, in *PendingChannelsRequest, opts ...grpc.CallOption) (*PendingChannelsResponse, error) {
|
||||
out := new(PendingChannelsResponse)
|
||||
err := grpc.Invoke(ctx, "/lnrpc.Lightning/PendingChannels", in, out, c.cc, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -4635,7 +4640,7 @@ type LightningServer interface {
|
||||
// considered "pending". A channel is pending if it has finished the funding
|
||||
// workflow and is waiting for confirmations for the funding txn, or is in the
|
||||
// process of closure, either initiated cooperatively or non-cooperatively.
|
||||
PendingChannels(context.Context, *PendingChannelRequest) (*PendingChannelResponse, error)
|
||||
PendingChannels(context.Context, *PendingChannelsRequest) (*PendingChannelsResponse, error)
|
||||
// * lncli: `listchannels`
|
||||
// ListChannels returns a description of all the open channels that this node
|
||||
// is a participant in.
|
||||
@ -5023,7 +5028,7 @@ func _Lightning_GetInfo_Handler(srv interface{}, ctx context.Context, dec func(i
|
||||
}
|
||||
|
||||
func _Lightning_PendingChannels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(PendingChannelRequest)
|
||||
in := new(PendingChannelsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@ -5035,7 +5040,7 @@ func _Lightning_PendingChannels_Handler(srv interface{}, ctx context.Context, de
|
||||
FullMethod: "/lnrpc.Lightning/PendingChannels",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(LightningServer).PendingChannels(ctx, req.(*PendingChannelRequest))
|
||||
return srv.(LightningServer).PendingChannels(ctx, req.(*PendingChannelsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
@ -5668,312 +5673,312 @@ var _Lightning_serviceDesc = grpc.ServiceDesc{
|
||||
func init() { proto.RegisterFile("rpc.proto", fileDescriptor0) }
|
||||
|
||||
var fileDescriptor0 = []byte{
|
||||
// 4899 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4d, 0x8f, 0x1c, 0x49,
|
||||
0x56, 0xce, 0xea, 0xea, 0xee, 0xaa, 0x57, 0x55, 0xfd, 0x11, 0xdd, 0x6e, 0x97, 0xcb, 0x9e, 0x59,
|
||||
0x3b, 0x76, 0x34, 0xd3, 0x78, 0x47, 0x6e, 0x4f, 0x2f, 0x3b, 0xcc, 0x8e, 0x81, 0x91, 0x3f, 0xa7,
|
||||
0x87, 0xed, 0xf1, 0xf4, 0x66, 0x7b, 0xc6, 0xb0, 0x2b, 0x54, 0x64, 0x57, 0x45, 0x57, 0xe7, 0x3a,
|
||||
0x2b, 0x33, 0x27, 0x33, 0xaa, 0xdb, 0xb5, 0x96, 0x25, 0x58, 0x10, 0x27, 0xd0, 0x1e, 0x40, 0xa0,
|
||||
0x3d, 0x2c, 0x42, 0x42, 0x48, 0x70, 0x80, 0x3f, 0x80, 0xc4, 0x0f, 0x40, 0x42, 0x20, 0xed, 0x09,
|
||||
0x89, 0x1b, 0x9c, 0xf6, 0xc2, 0x89, 0x3b, 0x7a, 0xf1, 0x95, 0x11, 0x99, 0xd9, 0xb6, 0x97, 0x5d,
|
||||
0xb8, 0x55, 0xbc, 0x78, 0xf9, 0x22, 0xe2, 0xc5, 0x8b, 0xf7, 0x5d, 0xd0, 0xce, 0xd2, 0xd1, 0xcd,
|
||||
0x34, 0x4b, 0x78, 0x42, 0x16, 0xa3, 0x38, 0x4b, 0x47, 0x83, 0xab, 0x93, 0x24, 0x99, 0x44, 0x6c,
|
||||
0x27, 0x48, 0xc3, 0x9d, 0x20, 0x8e, 0x13, 0x1e, 0xf0, 0x30, 0x89, 0x73, 0x89, 0x44, 0xdf, 0x83,
|
||||
0x8d, 0x7b, 0x19, 0x0b, 0x38, 0x7b, 0x12, 0x44, 0x11, 0xe3, 0x3e, 0xfb, 0x72, 0xc6, 0x72, 0x4e,
|
||||
0x06, 0xd0, 0x4a, 0x83, 0x3c, 0x3f, 0x4b, 0xb2, 0x71, 0xdf, 0xbb, 0xe6, 0x6d, 0x77, 0x7d, 0x33,
|
||||
0xa6, 0x5b, 0xb0, 0xe9, 0x7e, 0x92, 0xa7, 0x49, 0x9c, 0x33, 0x24, 0xf5, 0x79, 0x1c, 0x25, 0xa3,
|
||||
0xa7, 0x3f, 0x13, 0x29, 0xf7, 0x13, 0x45, 0xea, 0x47, 0x0d, 0xe8, 0x3c, 0xce, 0x82, 0x38, 0x0f,
|
||||
0x46, 0xb8, 0x59, 0xd2, 0x87, 0x65, 0xfe, 0x6c, 0x78, 0x12, 0xe4, 0x27, 0x82, 0x44, 0xdb, 0xd7,
|
||||
0x43, 0xb2, 0x05, 0x4b, 0xc1, 0x34, 0x99, 0xc5, 0xbc, 0xdf, 0xb8, 0xe6, 0x6d, 0x2f, 0xf8, 0x6a,
|
||||
0x44, 0xde, 0x85, 0xf5, 0x78, 0x36, 0x1d, 0x8e, 0x92, 0xf8, 0x38, 0xcc, 0xa6, 0xf2, 0xc8, 0xfd,
|
||||
0x85, 0x6b, 0xde, 0xf6, 0xa2, 0x5f, 0x9d, 0x20, 0x6f, 0x02, 0x1c, 0xe1, 0x36, 0xe4, 0x12, 0x4d,
|
||||
0xb1, 0x84, 0x05, 0x21, 0x14, 0xba, 0x6a, 0xc4, 0xc2, 0xc9, 0x09, 0xef, 0x2f, 0x0a, 0x42, 0x0e,
|
||||
0x0c, 0x69, 0xf0, 0x70, 0xca, 0x86, 0x39, 0x0f, 0xa6, 0x69, 0x7f, 0x49, 0xec, 0xc6, 0x82, 0x88,
|
||||
0xf9, 0x84, 0x07, 0xd1, 0xf0, 0x98, 0xb1, 0xbc, 0xbf, 0xac, 0xe6, 0x0d, 0x84, 0xbc, 0x0d, 0x2b,
|
||||
0x63, 0x96, 0xf3, 0x61, 0x30, 0x1e, 0x67, 0x2c, 0xcf, 0x59, 0xde, 0x6f, 0x5d, 0x5b, 0xd8, 0x6e,
|
||||
0xfb, 0x25, 0x28, 0xed, 0xc3, 0xd6, 0xc7, 0x8c, 0x5b, 0xdc, 0xc9, 0x15, 0xa7, 0xe9, 0x3e, 0x10,
|
||||
0x0b, 0x7c, 0x9f, 0xf1, 0x20, 0x8c, 0x72, 0xf2, 0x3e, 0x74, 0xb9, 0x85, 0xdc, 0xf7, 0xae, 0x2d,
|
||||
0x6c, 0x77, 0x76, 0xc9, 0x4d, 0x21, 0x1d, 0x37, 0xad, 0x0f, 0x7c, 0x07, 0x8f, 0xfe, 0xab, 0x07,
|
||||
0x9d, 0x43, 0x16, 0x8f, 0xf5, 0x3d, 0x12, 0x68, 0xe2, 0x4e, 0xd4, 0x1d, 0x8a, 0xdf, 0xe4, 0x2b,
|
||||
0xd0, 0x11, 0xbb, 0xcb, 0x79, 0x16, 0xc6, 0x13, 0x71, 0x05, 0x6d, 0x1f, 0x10, 0x74, 0x28, 0x20,
|
||||
0x64, 0x0d, 0x16, 0x82, 0x29, 0x17, 0x8c, 0x5f, 0xf0, 0xf1, 0x27, 0xb9, 0x0e, 0xdd, 0x34, 0x98,
|
||||
0x4f, 0x59, 0xcc, 0x0b, 0x66, 0x77, 0xfd, 0x8e, 0x82, 0xed, 0x21, 0xb7, 0x6f, 0xc2, 0x86, 0x8d,
|
||||
0xa2, 0xa9, 0x2f, 0x0a, 0xea, 0xeb, 0x16, 0xa6, 0x5a, 0xe4, 0x1d, 0x58, 0xd5, 0xf8, 0x99, 0xdc,
|
||||
0xac, 0x60, 0x7f, 0xdb, 0x5f, 0x51, 0x60, 0xcd, 0xa0, 0x3f, 0xf5, 0xa0, 0x2b, 0x8f, 0x24, 0xe5,
|
||||
0x8c, 0xbc, 0x05, 0x3d, 0xfd, 0x25, 0xcb, 0xb2, 0x24, 0x53, 0xd2, 0xe5, 0x02, 0xc9, 0x0d, 0x58,
|
||||
0xd3, 0x80, 0x34, 0x63, 0xe1, 0x34, 0x98, 0x30, 0x71, 0xd4, 0xae, 0x5f, 0x81, 0x93, 0xdd, 0x82,
|
||||
0x62, 0x96, 0xcc, 0x38, 0x13, 0x47, 0xef, 0xec, 0x76, 0x15, 0xbb, 0x7d, 0x84, 0xf9, 0x2e, 0x0a,
|
||||
0xfd, 0x81, 0x07, 0xdd, 0x7b, 0x27, 0x41, 0x1c, 0xb3, 0xe8, 0x20, 0x09, 0x63, 0x8e, 0xe2, 0x76,
|
||||
0x3c, 0x8b, 0xc7, 0x61, 0x3c, 0x19, 0xf2, 0x67, 0xa1, 0x7e, 0x36, 0x0e, 0x0c, 0x37, 0x65, 0x8f,
|
||||
0x91, 0x49, 0x8a, 0xff, 0x15, 0x38, 0xd2, 0x4b, 0x66, 0x3c, 0x9d, 0xf1, 0x61, 0x18, 0x8f, 0xd9,
|
||||
0x33, 0xb1, 0xa7, 0x9e, 0xef, 0xc0, 0xe8, 0xaf, 0xc3, 0xda, 0x3e, 0xca, 0x71, 0x1c, 0xc6, 0x93,
|
||||
0x3b, 0x52, 0xd8, 0xf0, 0x71, 0xa5, 0xb3, 0xa3, 0xa7, 0x6c, 0xae, 0xf8, 0xa2, 0x46, 0x28, 0x0a,
|
||||
0x27, 0x49, 0xce, 0xd5, 0x7a, 0xe2, 0x37, 0xfd, 0x0f, 0x0f, 0x56, 0x91, 0xb7, 0x9f, 0x06, 0xf1,
|
||||
0x5c, 0x8b, 0xcc, 0x3e, 0x74, 0x91, 0xd4, 0xe3, 0xe4, 0x8e, 0x7c, 0xa2, 0x52, 0xf4, 0xb6, 0x15,
|
||||
0x2f, 0x4a, 0xd8, 0x37, 0x6d, 0xd4, 0x07, 0x31, 0xcf, 0xe6, 0xbe, 0xf3, 0x35, 0x0a, 0x1b, 0x0f,
|
||||
0xb2, 0x09, 0xe3, 0xe2, 0xf1, 0xaa, 0xc7, 0x0c, 0x12, 0x74, 0x2f, 0x89, 0x8f, 0xc9, 0x35, 0xe8,
|
||||
0xe6, 0x01, 0x1f, 0xa6, 0x2c, 0x1b, 0x1e, 0xcd, 0x39, 0x13, 0x02, 0xb3, 0xe0, 0x43, 0x1e, 0xf0,
|
||||
0x03, 0x96, 0xdd, 0x9d, 0x73, 0x36, 0xf8, 0x08, 0xd6, 0x2b, 0xab, 0xa0, 0x8c, 0x16, 0x47, 0xc4,
|
||||
0x9f, 0x64, 0x13, 0x16, 0x4f, 0x83, 0x68, 0xc6, 0x94, 0x4e, 0x91, 0x83, 0x0f, 0x1b, 0x1f, 0x78,
|
||||
0xf4, 0x6d, 0x58, 0x2b, 0xb6, 0xad, 0x84, 0x88, 0x40, 0xd3, 0xdc, 0x52, 0xdb, 0x17, 0xbf, 0xe9,
|
||||
0xef, 0x79, 0x12, 0xf1, 0x5e, 0x12, 0x9a, 0xf7, 0x89, 0x88, 0xf8, 0x8c, 0x35, 0x22, 0xfe, 0x3e,
|
||||
0x57, 0x7f, 0xfd, 0xfc, 0x87, 0xa5, 0xef, 0xc0, 0xba, 0xb5, 0x85, 0x97, 0x6c, 0xf6, 0x2f, 0x3c,
|
||||
0x58, 0x7f, 0xc4, 0xce, 0xd4, 0xad, 0xeb, 0xdd, 0x7e, 0x00, 0x4d, 0x3e, 0x4f, 0x99, 0xc0, 0x5c,
|
||||
0xd9, 0x7d, 0x4b, 0x5d, 0x5a, 0x05, 0xef, 0xa6, 0x1a, 0x3e, 0x9e, 0xa7, 0xcc, 0x17, 0x5f, 0xd0,
|
||||
0xcf, 0xa0, 0x63, 0x01, 0xc9, 0x25, 0xd8, 0x78, 0xf2, 0xc9, 0xe3, 0x47, 0x0f, 0x0e, 0x0f, 0x87,
|
||||
0x07, 0x9f, 0xdf, 0xfd, 0xd6, 0x83, 0xdf, 0x1a, 0xee, 0xdd, 0x39, 0xdc, 0x5b, 0xbb, 0x40, 0xb6,
|
||||
0x80, 0x3c, 0x7a, 0x70, 0xf8, 0xf8, 0xc1, 0x7d, 0x07, 0xee, 0x91, 0x55, 0xe8, 0xd8, 0x80, 0x06,
|
||||
0x1d, 0x40, 0xff, 0x11, 0x3b, 0x7b, 0x12, 0xf2, 0x98, 0xe5, 0xb9, 0xbb, 0x3c, 0xbd, 0x09, 0xc4,
|
||||
0xde, 0x93, 0x3a, 0x66, 0x1f, 0x96, 0x95, 0xc6, 0xd4, 0x06, 0x43, 0x0d, 0xe9, 0xdb, 0x40, 0x0e,
|
||||
0xc3, 0x49, 0xfc, 0x29, 0xcb, 0xf3, 0x60, 0xc2, 0xf4, 0x61, 0xd7, 0x60, 0x61, 0x9a, 0x4f, 0xd4,
|
||||
0x43, 0xc3, 0x9f, 0xf4, 0xeb, 0xb0, 0xe1, 0xe0, 0x29, 0xc2, 0x57, 0xa1, 0x9d, 0x87, 0x93, 0x38,
|
||||
0xe0, 0xb3, 0x8c, 0x29, 0xd2, 0x05, 0x80, 0x3e, 0x84, 0xcd, 0x2f, 0x58, 0x16, 0x1e, 0xcf, 0x5f,
|
||||
0x45, 0xde, 0xa5, 0xd3, 0x28, 0xd3, 0x79, 0x00, 0x17, 0x4b, 0x74, 0xd4, 0xf2, 0x52, 0x32, 0xd5,
|
||||
0xfd, 0xb5, 0x7c, 0x39, 0xb0, 0xde, 0x69, 0xc3, 0x7e, 0xa7, 0xf4, 0x73, 0x20, 0xf7, 0x92, 0x38,
|
||||
0x66, 0x23, 0x7e, 0xc0, 0x58, 0xa6, 0x37, 0xf3, 0x35, 0x4b, 0x0c, 0x3b, 0xbb, 0x97, 0xd4, 0xc5,
|
||||
0x96, 0x1f, 0xbf, 0x92, 0x4f, 0x02, 0xcd, 0x94, 0x65, 0x53, 0x41, 0xb8, 0xe5, 0x8b, 0xdf, 0x74,
|
||||
0x07, 0x36, 0x1c, 0xb2, 0x05, 0xcf, 0x53, 0xc6, 0xb2, 0xa1, 0xda, 0xdd, 0xa2, 0xaf, 0x87, 0xf4,
|
||||
0x3d, 0xb8, 0x78, 0x3f, 0xcc, 0x47, 0xd5, 0xad, 0xe0, 0x27, 0xb3, 0xa3, 0x61, 0xf1, 0xfc, 0xf4,
|
||||
0x10, 0xad, 0x5c, 0xf9, 0x13, 0xe5, 0x1b, 0xfc, 0xa1, 0x07, 0xcd, 0xbd, 0xc7, 0xfb, 0xf7, 0xd0,
|
||||
0xb1, 0x08, 0xe3, 0x51, 0x32, 0x45, 0xdb, 0x20, 0xd9, 0x61, 0xc6, 0xe7, 0x3e, 0xab, 0xab, 0xd0,
|
||||
0x16, 0x26, 0x05, 0x0d, 0xb7, 0x78, 0x54, 0x5d, 0xbf, 0x00, 0xa0, 0xd3, 0xc0, 0x9e, 0xa5, 0x61,
|
||||
0x26, 0xbc, 0x02, 0x6d, 0xeb, 0x9b, 0x42, 0x59, 0x56, 0x27, 0xe8, 0x4f, 0x9b, 0xd0, 0xbb, 0x33,
|
||||
0xe2, 0xe1, 0x29, 0x53, 0xca, 0x5b, 0xac, 0x2a, 0x00, 0x6a, 0x3f, 0x6a, 0x84, 0x66, 0x26, 0x63,
|
||||
0xd3, 0x84, 0xb3, 0xa1, 0x73, 0x4d, 0x2e, 0x10, 0xb1, 0x46, 0x92, 0xd0, 0x30, 0x45, 0x33, 0x20,
|
||||
0xf6, 0xd7, 0xf6, 0x5d, 0x20, 0xb2, 0x0c, 0x01, 0xc8, 0x65, 0xdc, 0x59, 0xd3, 0xd7, 0x43, 0xe4,
|
||||
0xc7, 0x28, 0x48, 0x83, 0x51, 0xc8, 0xe7, 0x4a, 0x1b, 0x98, 0x31, 0xd2, 0x8e, 0x92, 0x51, 0x10,
|
||||
0x0d, 0x8f, 0x82, 0x28, 0x88, 0x47, 0x4c, 0xf9, 0x27, 0x2e, 0x10, 0x5d, 0x10, 0xb5, 0x25, 0x8d,
|
||||
0x26, 0xdd, 0x94, 0x12, 0x14, 0x5d, 0x99, 0x51, 0x32, 0x9d, 0x86, 0x1c, 0x3d, 0x97, 0x7e, 0x4b,
|
||||
0x6a, 0x9e, 0x02, 0x22, 0x4e, 0x22, 0x47, 0x67, 0x92, 0x87, 0x6d, 0xb9, 0x9a, 0x03, 0x44, 0x2a,
|
||||
0xc7, 0x8c, 0x09, 0x0d, 0xf6, 0xf4, 0xac, 0x0f, 0x92, 0x4a, 0x01, 0xc1, 0xdb, 0x98, 0xc5, 0x39,
|
||||
0xe3, 0x3c, 0x62, 0x63, 0xb3, 0xa1, 0x8e, 0x40, 0xab, 0x4e, 0x90, 0x5b, 0xb0, 0x21, 0x9d, 0xa9,
|
||||
0x3c, 0xe0, 0x49, 0x7e, 0x12, 0xe6, 0xc3, 0x9c, 0xc5, 0xbc, 0xdf, 0x15, 0xf8, 0x75, 0x53, 0xe4,
|
||||
0x03, 0xb8, 0x54, 0x02, 0x67, 0x6c, 0xc4, 0xc2, 0x53, 0x36, 0xee, 0xf7, 0xc4, 0x57, 0xe7, 0x4d,
|
||||
0x93, 0x6b, 0xd0, 0x41, 0x1f, 0x72, 0x96, 0x8e, 0x03, 0xce, 0xf2, 0xfe, 0x8a, 0xb8, 0x07, 0x1b,
|
||||
0x44, 0xde, 0x83, 0x5e, 0xca, 0xa4, 0x15, 0x3e, 0xe1, 0xd1, 0x28, 0xef, 0xaf, 0x0a, 0xd3, 0xd7,
|
||||
0x51, 0x8f, 0x0d, 0xe5, 0xd7, 0x77, 0x31, 0x50, 0x34, 0x47, 0xf9, 0xe9, 0x70, 0xcc, 0xa2, 0x60,
|
||||
0xde, 0x5f, 0x13, 0x42, 0x57, 0x00, 0xe8, 0x45, 0xd8, 0xd8, 0x0f, 0x73, 0xae, 0x24, 0xcd, 0x68,
|
||||
0xbf, 0x3d, 0xd8, 0x74, 0xc1, 0xea, 0x2d, 0xde, 0x82, 0x96, 0x12, 0x9b, 0xbc, 0xdf, 0x11, 0x4b,
|
||||
0x6f, 0xaa, 0xa5, 0x1d, 0x89, 0xf5, 0x0d, 0x16, 0xfd, 0x83, 0x06, 0x34, 0xf1, 0x9d, 0x9d, 0xff,
|
||||
0x26, 0xed, 0x07, 0xde, 0x70, 0x1e, 0xb8, 0xad, 0x6e, 0x17, 0x1c, 0x75, 0x2b, 0x3c, 0xeb, 0x39,
|
||||
0x67, 0xea, 0x36, 0xa4, 0xc4, 0x5a, 0x90, 0x62, 0x3e, 0x63, 0xa3, 0x53, 0x21, 0xb6, 0x66, 0x1e,
|
||||
0x21, 0x28, 0xd4, 0x68, 0xe6, 0xc4, 0xd7, 0x52, 0x66, 0xcd, 0x58, 0xcf, 0x89, 0x2f, 0x97, 0x8b,
|
||||
0x39, 0xf1, 0x5d, 0x1f, 0x96, 0xc3, 0xf8, 0x28, 0x99, 0xc5, 0x63, 0x21, 0x9f, 0x2d, 0x5f, 0x0f,
|
||||
0x91, 0xcf, 0xa9, 0xf0, 0x8e, 0xc2, 0x29, 0x53, 0x82, 0x59, 0x00, 0x28, 0x41, 0x37, 0x28, 0x17,
|
||||
0x1a, 0xc7, 0x30, 0xf9, 0x7d, 0x58, 0xb7, 0x60, 0x8a, 0xc3, 0xd7, 0x61, 0x11, 0x4f, 0xaf, 0xfd,
|
||||
0x69, 0x7d, 0xb3, 0x42, 0x55, 0xc9, 0x19, 0xba, 0x06, 0x2b, 0x1f, 0x33, 0xfe, 0x49, 0x7c, 0x9c,
|
||||
0x68, 0x4a, 0xff, 0xdd, 0x80, 0x55, 0x03, 0x52, 0x84, 0xb6, 0x61, 0x35, 0x1c, 0xb3, 0x98, 0x87,
|
||||
0x7c, 0x3e, 0x74, 0xbc, 0xad, 0x32, 0x18, 0x95, 0x7f, 0x10, 0x85, 0x41, 0xae, 0xd4, 0x87, 0x1c,
|
||||
0x90, 0x5d, 0xd8, 0x44, 0xc9, 0xd3, 0xc2, 0x64, 0xae, 0x5d, 0x3a, 0x79, 0xb5, 0x73, 0xf8, 0x58,
|
||||
0x10, 0x2e, 0xd5, 0x53, 0xf1, 0x89, 0x54, 0x75, 0x75, 0x53, 0xc8, 0x35, 0x49, 0x09, 0x8f, 0xbc,
|
||||
0x28, 0xa5, 0xd3, 0x00, 0x2a, 0xf1, 0xd1, 0x92, 0x74, 0x30, 0xcb, 0xf1, 0x91, 0x15, 0x63, 0xb5,
|
||||
0x2a, 0x31, 0xd6, 0x36, 0xac, 0xe6, 0xf3, 0x78, 0xc4, 0xc6, 0x43, 0x9e, 0xe0, 0xba, 0x61, 0x2c,
|
||||
0x6e, 0xa7, 0xe5, 0x97, 0xc1, 0x22, 0x1a, 0x64, 0x39, 0x8f, 0x19, 0x17, 0x5a, 0xa3, 0xe5, 0xeb,
|
||||
0x21, 0x2a, 0x60, 0x81, 0x22, 0x85, 0xbe, 0xed, 0xab, 0x11, 0xfd, 0xbe, 0x30, 0x84, 0x26, 0xe0,
|
||||
0xfb, 0x5c, 0xbc, 0x52, 0x72, 0x05, 0xda, 0x72, 0xfd, 0xfc, 0x24, 0xd0, 0xa1, 0xa9, 0x00, 0x1c,
|
||||
0x9e, 0x04, 0x18, 0xa7, 0x38, 0x47, 0x92, 0x12, 0xdf, 0x11, 0xb0, 0x3d, 0x79, 0xa2, 0xb7, 0x60,
|
||||
0x45, 0x87, 0x92, 0xf9, 0x30, 0x62, 0xc7, 0x5c, 0x3b, 0xd6, 0xf1, 0x6c, 0x8a, 0xcb, 0xe5, 0xfb,
|
||||
0xec, 0x98, 0xd3, 0x47, 0xb0, 0xae, 0x5e, 0xdb, 0x67, 0x29, 0xd3, 0x4b, 0x7f, 0xb3, 0xac, 0xeb,
|
||||
0xa5, 0x31, 0xde, 0x50, 0x52, 0x64, 0x47, 0x03, 0x25, 0x03, 0x40, 0x7d, 0x20, 0x6a, 0xfa, 0x5e,
|
||||
0x94, 0xe4, 0x4c, 0x11, 0xa4, 0xd0, 0x1d, 0x45, 0x49, 0x5e, 0x0e, 0x19, 0x6c, 0x18, 0xf2, 0x2d,
|
||||
0x9f, 0x8d, 0x46, 0xf8, 0x4a, 0xa5, 0x39, 0xd7, 0x43, 0xfa, 0x37, 0x1e, 0x6c, 0x08, 0x6a, 0x5a,
|
||||
0x2f, 0x18, 0x1f, 0xf0, 0xf5, 0xb7, 0xd9, 0x1d, 0xd9, 0x21, 0xcc, 0x26, 0x2c, 0x1e, 0x27, 0xd9,
|
||||
0x88, 0xa9, 0x95, 0xe4, 0xe0, 0x17, 0xe1, 0xd5, 0xfe, 0x9b, 0x07, 0xeb, 0x62, 0xab, 0x87, 0x3c,
|
||||
0xe0, 0xb3, 0x5c, 0x1d, 0xff, 0x57, 0xa1, 0x87, 0x47, 0x65, 0x5a, 0xd4, 0xd5, 0x46, 0x37, 0xcd,
|
||||
0xab, 0x14, 0x50, 0x89, 0xbc, 0x77, 0xc1, 0x77, 0x91, 0xc9, 0x47, 0xd0, 0xb5, 0xf3, 0x01, 0x62,
|
||||
0xcf, 0x9d, 0xdd, 0xcb, 0xfa, 0x94, 0x15, 0xc9, 0xd9, 0xbb, 0xe0, 0x3b, 0x1f, 0x90, 0xdb, 0x00,
|
||||
0xc2, 0x0a, 0x0b, 0xb2, 0x2a, 0xe4, 0xbb, 0xec, 0x32, 0xc9, 0xba, 0xac, 0xbd, 0x0b, 0xbe, 0x85,
|
||||
0x7e, 0xb7, 0x05, 0x4b, 0xd2, 0x6c, 0xd0, 0x8f, 0xa1, 0xe7, 0xec, 0xd4, 0xf1, 0xd6, 0xbb, 0xd2,
|
||||
0x5b, 0xaf, 0x04, 0x73, 0x8d, 0x9a, 0x60, 0xee, 0x1f, 0x1a, 0x40, 0x50, 0xda, 0x4a, 0xd7, 0xf9,
|
||||
0x36, 0xac, 0x28, 0xf6, 0xbb, 0x8e, 0x5a, 0x09, 0x2a, 0xec, 0x5b, 0x32, 0x76, 0xbc, 0x95, 0xae,
|
||||
0x6f, 0x83, 0xc8, 0x4d, 0x20, 0xd6, 0x50, 0x47, 0xe8, 0x52, 0xf7, 0xd7, 0xcc, 0xa0, 0x92, 0x92,
|
||||
0xae, 0x86, 0x8e, 0x4d, 0x95, 0x77, 0xd6, 0x14, 0xf7, 0x5b, 0x3b, 0x27, 0x12, 0x47, 0x33, 0x0c,
|
||||
0xff, 0x03, 0xae, 0xfd, 0x19, 0x3d, 0x2e, 0x0b, 0xd2, 0xd2, 0x2b, 0x05, 0x69, 0xb9, 0x2c, 0x48,
|
||||
0xc2, 0x9a, 0x65, 0xe1, 0x69, 0xc0, 0x99, 0xb6, 0x10, 0x6a, 0x48, 0x7f, 0xe2, 0xc1, 0x1a, 0x72,
|
||||
0xcf, 0x91, 0xb0, 0x0f, 0x41, 0x08, 0xf8, 0x6b, 0x0a, 0x98, 0x83, 0xfb, 0xf3, 0xcb, 0xd7, 0x07,
|
||||
0xd0, 0x16, 0x04, 0x93, 0x94, 0xc5, 0x4a, 0xbc, 0xfa, 0xae, 0x78, 0x15, 0xba, 0x65, 0xef, 0x82,
|
||||
0x5f, 0x20, 0x5b, 0xc2, 0xf5, 0x2f, 0x1e, 0x74, 0xd4, 0x36, 0xff, 0xd7, 0xee, 0xf3, 0x00, 0x5a,
|
||||
0x28, 0x67, 0x96, 0x77, 0x6a, 0xc6, 0xa8, 0xbf, 0xa7, 0x18, 0xbd, 0xa0, 0xc1, 0x72, 0x5c, 0xe7,
|
||||
0x32, 0x18, 0xad, 0x8f, 0x50, 0xa3, 0xf9, 0x90, 0x87, 0xd1, 0x50, 0xcf, 0xaa, 0xa4, 0x5a, 0xdd,
|
||||
0x14, 0x6a, 0x93, 0x9c, 0x07, 0x13, 0xa6, 0x0c, 0x8b, 0x1c, 0xd0, 0x4b, 0x70, 0x51, 0x1d, 0xc8,
|
||||
0x95, 0x73, 0xfa, 0x5f, 0x00, 0x5b, 0xe5, 0x19, 0xe3, 0x18, 0x29, 0x5f, 0x30, 0x0a, 0xa7, 0x47,
|
||||
0x89, 0x71, 0x2b, 0x3d, 0xdb, 0x4d, 0x74, 0xa6, 0xc8, 0x31, 0x5c, 0xd4, 0xf6, 0x13, 0x39, 0x5a,
|
||||
0x58, 0xcb, 0x86, 0x30, 0xfc, 0xb7, 0x5c, 0x09, 0x28, 0xad, 0xa7, 0xc1, 0xf6, 0x63, 0xac, 0x27,
|
||||
0x47, 0x26, 0xd0, 0x37, 0x76, 0x5a, 0x69, 0x6d, 0xcb, 0x96, 0xe3, 0x52, 0x5f, 0x7b, 0xf9, 0x52,
|
||||
0x42, 0xc3, 0x8c, 0x35, 0xf4, 0x5c, 0x62, 0xe4, 0x19, 0xbc, 0xa9, 0xe7, 0x84, 0x56, 0xae, 0x2e,
|
||||
0xd7, 0x7c, 0x9d, 0x93, 0x3d, 0xc4, 0x6f, 0xdd, 0x35, 0x5f, 0x41, 0x77, 0xf0, 0x4f, 0x1e, 0xac,
|
||||
0xb8, 0xd4, 0x50, 0x6a, 0x54, 0x70, 0xa1, 0xb5, 0x86, 0xf6, 0x7e, 0x4a, 0xe0, 0x6a, 0x78, 0xd4,
|
||||
0xa8, 0x0b, 0x8f, 0xec, 0x20, 0x68, 0xe1, 0x55, 0x41, 0x50, 0xf3, 0xf5, 0x82, 0xa0, 0xc5, 0xba,
|
||||
0x20, 0x68, 0xf0, 0x97, 0x0d, 0x20, 0xd5, 0xdb, 0x25, 0x0f, 0x65, 0x7c, 0x16, 0xb3, 0x48, 0xa9,
|
||||
0x88, 0x77, 0x5f, 0x4b, 0x40, 0x34, 0x58, 0x7f, 0x8c, 0x82, 0x6a, 0xab, 0x00, 0xdb, 0x0d, 0xe9,
|
||||
0xf9, 0x75, 0x53, 0xe4, 0x06, 0xac, 0x15, 0x6f, 0x27, 0x2a, 0x74, 0xc5, 0xa2, 0x5f, 0x81, 0x97,
|
||||
0x22, 0xb8, 0xe6, 0xab, 0x23, 0xb8, 0xc5, 0x57, 0x47, 0x70, 0x4b, 0xe5, 0x08, 0x6e, 0xf0, 0x1c,
|
||||
0x7a, 0x8e, 0x80, 0xfc, 0xc2, 0x98, 0x53, 0xf6, 0x76, 0xa4, 0x28, 0x38, 0xb0, 0xc1, 0x4f, 0x1b,
|
||||
0x40, 0xaa, 0x32, 0xfa, 0xff, 0xb9, 0x05, 0x21, 0x70, 0x8e, 0x9a, 0x59, 0x50, 0x02, 0xe7, 0x28,
|
||||
0x98, 0xff, 0x4b, 0xc5, 0xf9, 0x2e, 0xac, 0x67, 0x6c, 0x94, 0x9c, 0xb2, 0xcc, 0x8a, 0xa1, 0xe5,
|
||||
0x45, 0x55, 0x27, 0xd0, 0xdd, 0x73, 0xa3, 0xd6, 0x96, 0x53, 0x2b, 0xb0, 0xac, 0x47, 0x29, 0x78,
|
||||
0xa5, 0xdf, 0x84, 0x4d, 0x59, 0xc2, 0xb9, 0x2b, 0x49, 0x69, 0x8f, 0xe3, 0x3a, 0x74, 0xcf, 0x64,
|
||||
0xda, 0x6e, 0x98, 0xc4, 0xd1, 0x5c, 0x19, 0x9a, 0x8e, 0x82, 0x7d, 0x16, 0x47, 0x73, 0xfa, 0x63,
|
||||
0x0f, 0x2e, 0x96, 0xbe, 0x2d, 0xb2, 0xf3, 0x52, 0x21, 0xbb, 0x5a, 0xda, 0x05, 0xe2, 0x11, 0xd5,
|
||||
0x6b, 0xb0, 0x8e, 0x28, 0xcd, 0x56, 0x75, 0x02, 0x59, 0x38, 0x8b, 0xab, 0xf8, 0xf2, 0x62, 0xea,
|
||||
0xa6, 0xd0, 0xca, 0xa8, 0xcb, 0x77, 0xcf, 0x46, 0x77, 0x61, 0xab, 0x3c, 0x51, 0x64, 0xc2, 0xdc,
|
||||
0x2d, 0xeb, 0x21, 0xfd, 0x08, 0xc8, 0xb7, 0x67, 0x2c, 0x9b, 0x8b, 0x3a, 0x80, 0x49, 0xb5, 0x5e,
|
||||
0x2a, 0x87, 0xdc, 0x4b, 0xe9, 0xec, 0xe8, 0x5b, 0x6c, 0xae, 0xcb, 0x27, 0x0d, 0x53, 0x3e, 0xa1,
|
||||
0xb7, 0x61, 0xc3, 0x21, 0x60, 0x58, 0xb5, 0x24, 0x6a, 0x09, 0x3a, 0x1c, 0x75, 0xeb, 0x0d, 0x6a,
|
||||
0x8e, 0xfe, 0xb9, 0x07, 0x0b, 0x7b, 0x49, 0x6a, 0xe7, 0x90, 0x3c, 0x37, 0x87, 0xa4, 0x94, 0xec,
|
||||
0xd0, 0xe8, 0xd0, 0x86, 0x7a, 0xf7, 0x36, 0x10, 0x55, 0x64, 0x30, 0xe5, 0x18, 0x90, 0x1d, 0x27,
|
||||
0xd9, 0x59, 0x90, 0x8d, 0x15, 0xff, 0x4a, 0x50, 0xdc, 0x7e, 0xa1, 0x5e, 0xf0, 0x27, 0x3a, 0x16,
|
||||
0x22, 0x91, 0x36, 0x57, 0x31, 0xa4, 0x1a, 0xd1, 0x1f, 0x7a, 0xb0, 0x28, 0xf6, 0x8a, 0xaf, 0x41,
|
||||
0xde, 0xaf, 0x28, 0x9d, 0x89, 0x3c, 0x9d, 0x27, 0x5f, 0x43, 0x09, 0x5c, 0x2a, 0xa8, 0x35, 0x2a,
|
||||
0x05, 0xb5, 0xab, 0xd0, 0x96, 0xa3, 0xa2, 0x02, 0x55, 0x00, 0xc8, 0x9b, 0xd0, 0x3c, 0x49, 0x52,
|
||||
0x6d, 0xeb, 0x40, 0x27, 0x66, 0x92, 0xd4, 0x17, 0x70, 0x7a, 0x03, 0x56, 0x1f, 0x25, 0x63, 0x66,
|
||||
0x45, 0xef, 0xe7, 0x5e, 0x13, 0xfd, 0x5d, 0x0f, 0x5a, 0x1a, 0x99, 0x6c, 0x43, 0x13, 0x6d, 0x56,
|
||||
0xc9, 0x41, 0x34, 0xe9, 0x55, 0xc4, 0xf3, 0x05, 0x06, 0xaa, 0x10, 0x11, 0x3f, 0x16, 0x0e, 0x85,
|
||||
0x8e, 0x1e, 0x0b, 0x63, 0x8d, 0x2e, 0xbb, 0xd8, 0x73, 0xc9, 0xaa, 0x95, 0xa0, 0xf4, 0x6f, 0x3d,
|
||||
0xe8, 0x39, 0x6b, 0xa0, 0x13, 0x1f, 0x05, 0x39, 0x57, 0x29, 0x29, 0xc5, 0x44, 0x1b, 0x64, 0x67,
|
||||
0x7a, 0x1a, 0x6e, 0xa6, 0xc7, 0x64, 0x1a, 0x16, 0xec, 0x4c, 0xc3, 0x2d, 0x68, 0x17, 0xc5, 0xc9,
|
||||
0xa6, 0xa3, 0x1a, 0x70, 0x45, 0x9d, 0x38, 0x2e, 0x90, 0x90, 0xce, 0x28, 0x89, 0x92, 0x4c, 0xd5,
|
||||
0xee, 0xe4, 0x80, 0xde, 0x86, 0x8e, 0x85, 0x8f, 0xdb, 0x88, 0x19, 0x3f, 0x4b, 0xb2, 0xa7, 0x3a,
|
||||
0xe1, 0xa4, 0x86, 0xa6, 0x60, 0xd2, 0x28, 0x0a, 0x26, 0xf4, 0xef, 0x3c, 0xe8, 0xa1, 0xa4, 0x84,
|
||||
0xf1, 0xe4, 0x20, 0x89, 0xc2, 0xd1, 0x5c, 0x48, 0x8c, 0x16, 0x8a, 0xe1, 0x98, 0x45, 0x3c, 0x30,
|
||||
0x12, 0xe3, 0x82, 0xd1, 0x39, 0x98, 0x86, 0xb1, 0x50, 0x59, 0x4a, 0x5e, 0xcc, 0x18, 0x25, 0x1f,
|
||||
0x2d, 0xd7, 0x51, 0x90, 0xb3, 0xe1, 0x14, 0x43, 0x0e, 0xa5, 0xab, 0x1d, 0x20, 0xaa, 0x0f, 0x04,
|
||||
0x64, 0x01, 0x67, 0xc3, 0x69, 0x18, 0x45, 0xa1, 0xc4, 0x95, 0x12, 0x5e, 0x37, 0x85, 0xa1, 0x58,
|
||||
0x47, 0xa9, 0x89, 0x07, 0xe3, 0x89, 0xcc, 0x9d, 0x2a, 0x8f, 0xc5, 0x3c, 0x3f, 0x0b, 0xa2, 0xe7,
|
||||
0x1d, 0x1f, 0xc7, 0x82, 0x94, 0xaf, 0x75, 0xa1, 0x7a, 0xad, 0x57, 0xa1, 0x8d, 0xe2, 0xf5, 0x9e,
|
||||
0x70, 0xa6, 0x64, 0x2d, 0xbb, 0x00, 0xe8, 0xd9, 0x5d, 0x31, 0xbb, 0x58, 0xcc, 0x0a, 0x80, 0xe3,
|
||||
0x3e, 0x2d, 0x95, 0xdc, 0xa7, 0x0f, 0xa0, 0xab, 0xc8, 0x08, 0xbe, 0x8b, 0x90, 0xaa, 0x10, 0x70,
|
||||
0xe7, 0x4e, 0x7c, 0x07, 0x53, 0x7f, 0xb9, 0xab, 0xbf, 0x6c, 0xbd, 0xea, 0x4b, 0x8d, 0x49, 0x2f,
|
||||
0xc2, 0x86, 0x62, 0xde, 0xc7, 0x59, 0x90, 0x9e, 0x68, 0xd5, 0x3b, 0x36, 0x05, 0x53, 0x01, 0x26,
|
||||
0x37, 0x60, 0x11, 0x3f, 0xd3, 0xda, 0xaf, 0xfe, 0xd1, 0x49, 0x14, 0xb2, 0x0d, 0x8b, 0x6c, 0x3c,
|
||||
0x61, 0xda, 0x7f, 0x27, 0x6e, 0x1c, 0x85, 0x77, 0xe4, 0x4b, 0x04, 0x54, 0x01, 0x08, 0x2d, 0xa9,
|
||||
0x00, 0x57, 0x73, 0x2e, 0xe1, 0xf0, 0x93, 0x31, 0xdd, 0x04, 0xf2, 0x48, 0x4a, 0xad, 0x9d, 0xef,
|
||||
0xfb, 0xfd, 0x05, 0xe8, 0x58, 0x60, 0x7c, 0xcd, 0x13, 0xdc, 0xf0, 0x70, 0x1c, 0x06, 0x53, 0xc6,
|
||||
0x59, 0xa6, 0x24, 0xb5, 0x04, 0x15, 0x0a, 0xf6, 0x74, 0x32, 0x4c, 0x66, 0x7c, 0x38, 0x66, 0x93,
|
||||
0x8c, 0x49, 0x83, 0xe6, 0xf9, 0x25, 0x28, 0xe2, 0x4d, 0x83, 0x67, 0x36, 0x9e, 0x94, 0x87, 0x12,
|
||||
0x54, 0x67, 0xef, 0x24, 0x8f, 0x9a, 0x45, 0xf6, 0x4e, 0x72, 0xa4, 0xac, 0x87, 0x16, 0x6b, 0xf4,
|
||||
0xd0, 0xfb, 0xb0, 0x25, 0x35, 0x8e, 0x7a, 0x9b, 0xc3, 0x92, 0x98, 0x9c, 0x33, 0x8b, 0x4e, 0x29,
|
||||
0xee, 0x59, 0x0b, 0x78, 0x1e, 0x7e, 0x5f, 0xc6, 0xe2, 0x9e, 0x5f, 0x81, 0x23, 0x2e, 0x3e, 0x47,
|
||||
0x07, 0x57, 0x16, 0x17, 0x2a, 0x70, 0x81, 0x1b, 0x3c, 0x73, 0x71, 0xdb, 0x0a, 0xb7, 0x04, 0xa7,
|
||||
0x3d, 0xe8, 0x1c, 0xf2, 0x24, 0xd5, 0x97, 0xb2, 0x02, 0x5d, 0x39, 0x54, 0x05, 0xa5, 0x2b, 0x70,
|
||||
0x59, 0x48, 0xd1, 0xe3, 0x24, 0x4d, 0xa2, 0x64, 0x32, 0x3f, 0x9c, 0x1d, 0xe5, 0xa3, 0x2c, 0x4c,
|
||||
0xd1, 0xb7, 0xa6, 0xff, 0xec, 0xc1, 0x86, 0x33, 0xab, 0xd2, 0x01, 0xbf, 0x2c, 0x45, 0xda, 0xd4,
|
||||
0x00, 0xa4, 0xe0, 0xad, 0x5b, 0xea, 0x50, 0x22, 0xca, 0xb4, 0xc9, 0xe7, 0xaa, 0x2c, 0x70, 0x07,
|
||||
0x56, 0xf5, 0xce, 0xf4, 0x87, 0x52, 0x0a, 0xfb, 0x55, 0x29, 0x54, 0xdf, 0xaf, 0xa8, 0x0f, 0x34,
|
||||
0x89, 0x5f, 0x93, 0x7e, 0x27, 0x1b, 0x8b, 0x33, 0xea, 0xd0, 0x70, 0xa0, 0xbf, 0xb7, 0x7d, 0x5d,
|
||||
0xbd, 0x83, 0x91, 0x01, 0xe6, 0xf4, 0x8f, 0x3c, 0x80, 0x62, 0x77, 0x28, 0x18, 0x85, 0x4a, 0xf7,
|
||||
0x44, 0xce, 0xd4, 0x52, 0xdf, 0xd7, 0xa1, 0x6b, 0x72, 0xd0, 0x85, 0x95, 0xe8, 0x68, 0x18, 0x7a,
|
||||
0x28, 0xef, 0xc0, 0xea, 0x24, 0x4a, 0x8e, 0x84, 0xcd, 0x15, 0xb5, 0xcb, 0x5c, 0x95, 0xd5, 0x56,
|
||||
0x24, 0xf8, 0xa1, 0x82, 0x16, 0x26, 0xa5, 0x69, 0x99, 0x14, 0xfa, 0xc7, 0x0d, 0x93, 0x1d, 0x2d,
|
||||
0xce, 0x7c, 0xee, 0x2b, 0x23, 0xbb, 0x15, 0xe5, 0x78, 0x4e, 0x32, 0x52, 0x64, 0x40, 0x0e, 0x5e,
|
||||
0x19, 0x11, 0xde, 0x86, 0x95, 0x4c, 0x6a, 0x1f, 0xad, 0x9a, 0x9a, 0x2f, 0x51, 0x4d, 0xbd, 0xcc,
|
||||
0xb1, 0x3b, 0xbf, 0x04, 0x6b, 0xc1, 0xf8, 0x94, 0x65, 0x3c, 0x14, 0x1e, 0xbf, 0x30, 0xfa, 0x52,
|
||||
0xa1, 0xae, 0x5a, 0x70, 0x61, 0x8b, 0xdf, 0x81, 0x55, 0x55, 0xca, 0x34, 0x98, 0xaa, 0x43, 0xa5,
|
||||
0x00, 0x23, 0x22, 0xfd, 0x2b, 0x9d, 0x88, 0x75, 0xef, 0xf0, 0x7c, 0x8e, 0xd8, 0xa7, 0x6b, 0x94,
|
||||
0x4e, 0xf7, 0x55, 0x95, 0x14, 0x1d, 0xeb, 0xb0, 0x42, 0xa5, 0xa7, 0x25, 0x50, 0x25, 0xb1, 0x5d,
|
||||
0x96, 0x36, 0x5f, 0x87, 0xa5, 0xf4, 0x26, 0xac, 0x1e, 0x32, 0x7e, 0x07, 0x6f, 0x50, 0x2b, 0xc6,
|
||||
0x2b, 0xd0, 0x8e, 0xd9, 0xd9, 0x50, 0x5e, 0xb1, 0x34, 0xe3, 0xad, 0x98, 0x9d, 0x09, 0x1c, 0x4a,
|
||||
0x60, 0xad, 0xc0, 0x57, 0xaf, 0xee, 0xc7, 0x0b, 0xb0, 0xfc, 0x49, 0x7c, 0x9a, 0x84, 0x23, 0x91,
|
||||
0xe6, 0x9c, 0xb2, 0x69, 0xa2, 0x9b, 0x12, 0xf0, 0x37, 0x7a, 0x05, 0xa2, 0xde, 0x96, 0x72, 0x95,
|
||||
0x7f, 0xd4, 0x43, 0xb4, 0x90, 0x59, 0xd1, 0x88, 0x23, 0xa5, 0xcd, 0x82, 0xa0, 0x8f, 0x99, 0xd9,
|
||||
0xbd, 0x45, 0x6a, 0x54, 0x74, 0x75, 0x2c, 0x5a, 0x5d, 0x1d, 0x22, 0x29, 0x2e, 0x4b, 0x89, 0xe2,
|
||||
0x4a, 0x5a, 0xbe, 0x1e, 0x0a, 0x5f, 0x38, 0x63, 0x32, 0xc4, 0x16, 0xb6, 0x76, 0x59, 0xf9, 0xc2,
|
||||
0x36, 0x10, 0xed, 0xb1, 0xfc, 0x40, 0xe2, 0x48, 0x7d, 0x65, 0x83, 0xd0, 0x3f, 0x29, 0xb7, 0x27,
|
||||
0xb5, 0xa5, 0x98, 0x94, 0xc0, 0xa8, 0xd4, 0xc6, 0xcc, 0xe8, 0x1e, 0x79, 0x06, 0x90, 0x8d, 0x46,
|
||||
0x65, 0xb8, 0xe5, 0x49, 0xcb, 0x92, 0xa8, 0x1a, 0x09, 0x3f, 0x26, 0x88, 0xa2, 0xa3, 0x60, 0xf4,
|
||||
0x54, 0x34, 0x8d, 0x89, 0x0a, 0x68, 0xdb, 0x77, 0x81, 0xb8, 0xeb, 0x51, 0xc4, 0x4f, 0x87, 0x8a,
|
||||
0x44, 0x4f, 0x56, 0x30, 0x2d, 0x10, 0xfd, 0x02, 0xc8, 0x9d, 0xf1, 0x58, 0xdd, 0x90, 0x89, 0x33,
|
||||
0x0a, 0xde, 0x7a, 0x0e, 0x6f, 0x6b, 0xce, 0xd8, 0xa8, 0x3d, 0x23, 0x7d, 0x00, 0x9d, 0x03, 0xab,
|
||||
0xd7, 0x4b, 0x5c, 0xa6, 0xee, 0xf2, 0x52, 0x02, 0x60, 0x41, 0xac, 0x05, 0x1b, 0xf6, 0x82, 0xf4,
|
||||
0x57, 0x80, 0xec, 0x87, 0x39, 0x37, 0xfb, 0x33, 0xe1, 0xa6, 0x49, 0xae, 0x59, 0xe1, 0xa6, 0x82,
|
||||
0x89, 0x70, 0xf3, 0x8e, 0x2c, 0xa4, 0x96, 0x0f, 0x76, 0x03, 0x5a, 0xa1, 0x04, 0x69, 0x5d, 0xbe,
|
||||
0xa2, 0x1e, 0x81, 0xc6, 0x34, 0xf3, 0xe8, 0x94, 0x28, 0xa0, 0x63, 0x2a, 0x7e, 0xe8, 0xc1, 0xb2,
|
||||
0x3a, 0x1a, 0x9a, 0x54, 0xa7, 0xcb, 0x4d, 0x1e, 0xcc, 0x81, 0xd5, 0x77, 0x19, 0x55, 0xa5, 0x6e,
|
||||
0xa1, 0x4e, 0xea, 0x08, 0x34, 0xd3, 0x80, 0x9f, 0x08, 0x2f, 0xbc, 0xed, 0x8b, 0xdf, 0x3a, 0xda,
|
||||
0x5a, 0x34, 0xd1, 0x96, 0x2e, 0x1a, 0xab, 0x4d, 0x99, 0x7a, 0xe6, 0x5d, 0x59, 0x34, 0x2e, 0xc0,
|
||||
0x05, 0x0f, 0xd4, 0x06, 0xcb, 0x3c, 0x50, 0xa8, 0xbe, 0x99, 0xa7, 0x03, 0xe8, 0xdf, 0x67, 0x11,
|
||||
0xe3, 0xec, 0x4e, 0x14, 0x95, 0xe9, 0x5f, 0x81, 0xcb, 0x35, 0x73, 0xea, 0xdd, 0x3f, 0x84, 0xf5,
|
||||
0xfb, 0xec, 0x68, 0x36, 0xd9, 0x67, 0xa7, 0x45, 0x61, 0x82, 0x40, 0x33, 0x3f, 0x49, 0xce, 0xd4,
|
||||
0x7d, 0x89, 0xdf, 0xe4, 0x0d, 0x80, 0x08, 0x71, 0x86, 0x79, 0xca, 0x46, 0xba, 0x45, 0x46, 0x40,
|
||||
0x0e, 0x53, 0x36, 0xa2, 0xef, 0x03, 0xb1, 0xe9, 0xa8, 0x23, 0xe0, 0x6b, 0x9c, 0x1d, 0x0d, 0xf3,
|
||||
0x79, 0xce, 0xd9, 0x54, 0x2b, 0x22, 0x1b, 0x44, 0xdf, 0x81, 0xee, 0x41, 0x30, 0xf7, 0xd9, 0x97,
|
||||
0xaa, 0x79, 0x10, 0x83, 0xba, 0x60, 0x8e, 0xe2, 0x69, 0x82, 0x3a, 0x31, 0x4d, 0xff, 0xb1, 0x01,
|
||||
0x4b, 0x12, 0x13, 0xa9, 0x8e, 0x59, 0xce, 0xc3, 0x58, 0xa6, 0xef, 0x15, 0x55, 0x0b, 0x54, 0xb9,
|
||||
0xef, 0x46, 0xcd, 0x7d, 0x2b, 0x37, 0x4b, 0xb7, 0x13, 0xa8, 0x8b, 0x75, 0x60, 0x22, 0x66, 0x0d,
|
||||
0xa7, 0x4c, 0xf6, 0x90, 0x36, 0x55, 0xcc, 0xaa, 0x01, 0xa5, 0xe8, 0xb9, 0x78, 0xf3, 0x72, 0x7f,
|
||||
0x5a, 0x10, 0x95, 0x69, 0xb1, 0x41, 0xb5, 0x9a, 0x65, 0x59, 0x76, 0x0b, 0x56, 0x34, 0x4b, 0x45,
|
||||
0x83, 0xb4, 0x5e, 0x43, 0x83, 0x48, 0xdf, 0xcb, 0xd1, 0x20, 0x04, 0xd6, 0x1e, 0x32, 0xe6, 0xb3,
|
||||
0x34, 0xc9, 0x4c, 0x07, 0xe6, 0x8f, 0x3c, 0x58, 0x53, 0x56, 0xc5, 0xcc, 0x91, 0xeb, 0x8e, 0x09,
|
||||
0xf2, 0xea, 0xd2, 0xba, 0x6f, 0x41, 0x4f, 0x04, 0x61, 0x18, 0x61, 0x89, 0x88, 0x4b, 0xe5, 0x25,
|
||||
0x1c, 0x20, 0xee, 0x49, 0x67, 0x1f, 0xa7, 0x61, 0xa4, 0x18, 0x6c, 0x83, 0xd0, 0x5c, 0xea, 0x20,
|
||||
0x4d, 0xb0, 0xd7, 0xf3, 0xcd, 0x98, 0x1e, 0xc0, 0xba, 0xb5, 0x5f, 0x25, 0x50, 0xb7, 0x41, 0xd7,
|
||||
0x35, 0x65, 0x9a, 0x41, 0xbe, 0x8b, 0x4b, 0xae, 0x81, 0x2c, 0x3e, 0x73, 0x90, 0xe9, 0xdf, 0x7b,
|
||||
0x82, 0x05, 0xca, 0x0f, 0x33, 0x3d, 0x4f, 0x4b, 0xd2, 0x35, 0x92, 0xd2, 0xbe, 0x77, 0xc1, 0x57,
|
||||
0x63, 0xf2, 0x8d, 0xd7, 0xf4, 0x6e, 0x4c, 0xfd, 0xf0, 0x1c, 0xde, 0x2c, 0xd4, 0xf1, 0xe6, 0x25,
|
||||
0x27, 0xbf, 0xbb, 0x0c, 0x8b, 0xf9, 0x28, 0x49, 0x19, 0xdd, 0x10, 0x2c, 0xd0, 0xfb, 0x95, 0x2c,
|
||||
0xd8, 0xfd, 0x77, 0x0f, 0x56, 0x64, 0x82, 0x4e, 0xf6, 0x6a, 0xb3, 0x8c, 0x60, 0xfc, 0x65, 0xb5,
|
||||
0x80, 0x13, 0xe3, 0x7e, 0x56, 0x5b, 0xc9, 0x07, 0x57, 0x6a, 0xe7, 0xb4, 0xef, 0xfd, 0x83, 0x9f,
|
||||
0xfc, 0xe7, 0x9f, 0x34, 0x2e, 0xd2, 0xb5, 0x9d, 0xd3, 0xf7, 0x76, 0x84, 0x8a, 0x63, 0x67, 0x02,
|
||||
0xe3, 0x43, 0xef, 0x06, 0xae, 0x62, 0x77, 0x87, 0x9b, 0x55, 0x6a, 0xba, 0xcc, 0xcd, 0x2a, 0xb5,
|
||||
0xed, 0xe4, 0xce, 0x2a, 0x33, 0x81, 0x61, 0x56, 0xd9, 0xfd, 0xeb, 0x2b, 0xd0, 0x36, 0x81, 0x22,
|
||||
0xf9, 0x1e, 0xf4, 0x9c, 0x64, 0x24, 0xd1, 0x84, 0xeb, 0xd2, 0x9b, 0x83, 0xab, 0xf5, 0x93, 0x6a,
|
||||
0xd9, 0x37, 0xc5, 0xb2, 0x7d, 0xb2, 0x85, 0xcb, 0xaa, 0x0c, 0xe0, 0x8e, 0xc8, 0xd2, 0xca, 0x3e,
|
||||
0x86, 0xa7, 0xb0, 0xe2, 0x26, 0x10, 0xc9, 0x55, 0xf7, 0xb6, 0x4b, 0xab, 0xbd, 0x71, 0xce, 0xac,
|
||||
0x5a, 0xee, 0xaa, 0x58, 0x6e, 0x8b, 0x6c, 0xda, 0xcb, 0x99, 0x00, 0x8e, 0x89, 0xce, 0x13, 0xbb,
|
||||
0x6d, 0x9c, 0x68, 0x7a, 0xf5, 0xed, 0xe4, 0x83, 0xcb, 0xd5, 0x16, 0x71, 0xd5, 0x53, 0x4e, 0xfb,
|
||||
0x62, 0x29, 0x42, 0x04, 0x43, 0xed, 0xae, 0x71, 0xf2, 0x5d, 0x68, 0x9b, 0xa6, 0x53, 0x72, 0xc9,
|
||||
0xea, 0xf4, 0xb5, 0x3b, 0x61, 0x07, 0xfd, 0xea, 0x44, 0xdd, 0x55, 0xd9, 0x94, 0x51, 0x20, 0xf6,
|
||||
0xe1, 0xa2, 0xb2, 0xb8, 0x47, 0xec, 0x67, 0x39, 0x49, 0x4d, 0xb3, 0xfb, 0x2d, 0x8f, 0xdc, 0x86,
|
||||
0x96, 0xee, 0xe5, 0x25, 0x5b, 0xf5, 0x3d, 0xc9, 0x83, 0x4b, 0x15, 0xb8, 0xd2, 0x0b, 0x77, 0x00,
|
||||
0x8a, 0xb6, 0x53, 0xd2, 0x3f, 0xaf, 0x3b, 0xd6, 0x30, 0xb1, 0xa6, 0x47, 0x75, 0x22, 0xba, 0x6e,
|
||||
0xdd, 0xae, 0x56, 0xf2, 0x95, 0x02, 0xbf, 0xb6, 0xdf, 0xf5, 0x25, 0x04, 0xe9, 0x96, 0xe0, 0xdd,
|
||||
0x1a, 0x59, 0x41, 0xde, 0xc5, 0xec, 0x4c, 0xf7, 0x60, 0xdd, 0x87, 0x8e, 0xd5, 0xca, 0x4a, 0x34,
|
||||
0x85, 0x6a, 0x1b, 0xec, 0x60, 0x50, 0x37, 0xa5, 0xb6, 0xfb, 0x1b, 0xd0, 0x73, 0x7a, 0x52, 0xcd,
|
||||
0xcb, 0xa8, 0xeb, 0x78, 0x35, 0x2f, 0xa3, 0xbe, 0x8d, 0xf5, 0x3b, 0xd0, 0xb1, 0x3a, 0x48, 0x89,
|
||||
0x55, 0x09, 0x2f, 0x75, 0x88, 0x9a, 0x1d, 0xd5, 0x34, 0x9c, 0xd2, 0x4d, 0x71, 0xde, 0x15, 0xda,
|
||||
0xc6, 0xf3, 0x8a, 0x46, 0x24, 0x14, 0x92, 0xef, 0xc1, 0x8a, 0xdb, 0x39, 0x6a, 0x5e, 0x55, 0x6d,
|
||||
0x0f, 0xaa, 0x79, 0x55, 0xe7, 0xb4, 0x9b, 0x2a, 0x81, 0xbc, 0xb1, 0x61, 0x16, 0xd9, 0x79, 0xae,
|
||||
0xd2, 0xa4, 0x2f, 0xc8, 0xb7, 0x51, 0x75, 0xa8, 0xce, 0x30, 0x52, 0x74, 0xd2, 0xba, 0xfd, 0x63,
|
||||
0x46, 0xda, 0x2b, 0x4d, 0x64, 0x74, 0x5d, 0x10, 0xef, 0x90, 0xe2, 0x04, 0xe4, 0x53, 0x58, 0x56,
|
||||
0x1d, 0x62, 0xe4, 0x62, 0x21, 0xd5, 0x56, 0x52, 0x69, 0xb0, 0x55, 0x06, 0x2b, 0x62, 0x1b, 0x82,
|
||||
0x58, 0x8f, 0x74, 0x90, 0xd8, 0x84, 0xf1, 0x10, 0x69, 0x44, 0xb0, 0xea, 0x56, 0xb0, 0x72, 0xc3,
|
||||
0x8e, 0xda, 0xda, 0xb9, 0x61, 0x47, 0x7d, 0x39, 0xcc, 0x55, 0x32, 0x5a, 0xb9, 0xec, 0xe8, 0x46,
|
||||
0x87, 0xdf, 0x86, 0xae, 0xdd, 0x8e, 0x68, 0x34, 0x76, 0x4d, 0xeb, 0xa2, 0xd1, 0xd8, 0x75, 0xfd,
|
||||
0x8b, 0xfa, 0x6a, 0x49, 0xd7, 0x5e, 0x86, 0x7c, 0x07, 0x56, 0xad, 0x52, 0xeb, 0xe1, 0x3c, 0x1e,
|
||||
0x19, 0xd1, 0xa9, 0x76, 0xbb, 0x0c, 0xea, 0x4c, 0x27, 0xbd, 0x24, 0x08, 0xaf, 0x53, 0x87, 0x30,
|
||||
0x8a, 0xcd, 0x3d, 0xe8, 0xd8, 0x65, 0xdc, 0x97, 0xd0, 0xbd, 0x64, 0x4d, 0xd9, 0x2d, 0x22, 0xb7,
|
||||
0x3c, 0xf2, 0x67, 0x1e, 0x74, 0xed, 0x3e, 0x2a, 0xe2, 0xe4, 0x65, 0x4a, 0x74, 0xfa, 0xf6, 0x9c,
|
||||
0x4d, 0x88, 0x3e, 0x12, 0x9b, 0xdc, 0xbb, 0xf1, 0xd0, 0x61, 0xf2, 0x73, 0xc7, 0x25, 0xba, 0x69,
|
||||
0xff, 0xcb, 0xe3, 0x45, 0x79, 0xd2, 0xee, 0x06, 0x7a, 0x71, 0xcb, 0x23, 0x1f, 0xca, 0xff, 0xf2,
|
||||
0xe8, 0xf0, 0x84, 0x58, 0x6a, 0xad, 0xcc, 0x2e, 0xfb, 0x0f, 0x32, 0xdb, 0xde, 0x2d, 0x8f, 0xfc,
|
||||
0x8e, 0xfc, 0x63, 0x87, 0xfa, 0x56, 0x70, 0xfd, 0x75, 0xbf, 0xa7, 0x6f, 0x89, 0x93, 0xbc, 0x49,
|
||||
0x2f, 0x3b, 0x27, 0x29, 0xeb, 0xf5, 0x03, 0x80, 0x22, 0xd6, 0x24, 0xa5, 0xc0, 0xcb, 0x68, 0xbc,
|
||||
0x6a, 0x38, 0xea, 0xde, 0xa6, 0x8e, 0xcf, 0xa4, 0x12, 0xe8, 0x5a, 0x51, 0x5e, 0x6e, 0xae, 0xb3,
|
||||
0x1a, 0x33, 0x0e, 0x06, 0x75, 0x53, 0x8a, 0xfe, 0x57, 0x05, 0xfd, 0x37, 0xc8, 0x15, 0x9b, 0xfe,
|
||||
0xce, 0x73, 0x3b, 0xc6, 0x7c, 0x41, 0xbe, 0x80, 0xde, 0x7e, 0x92, 0x3c, 0x9d, 0xa5, 0x26, 0x9d,
|
||||
0xe1, 0x46, 0x4d, 0x18, 0xe7, 0x0e, 0x4a, 0x87, 0xa2, 0xd7, 0x05, 0xe5, 0x2b, 0xe4, 0xb2, 0x4b,
|
||||
0xb9, 0x88, 0x7c, 0x5f, 0x90, 0x00, 0xd6, 0x8d, 0xb5, 0x33, 0x07, 0x19, 0xb8, 0x74, 0xec, 0x00,
|
||||
0xb4, 0xb2, 0x86, 0xe3, 0x7f, 0x98, 0x35, 0x72, 0x4d, 0xf3, 0x96, 0x47, 0x0e, 0xa0, 0x7b, 0x9f,
|
||||
0x8d, 0x92, 0x31, 0x53, 0x81, 0xce, 0x46, 0xb1, 0x73, 0x13, 0x21, 0x0d, 0x7a, 0x0e, 0xd0, 0xd5,
|
||||
0x00, 0x69, 0x30, 0xcf, 0xd8, 0x97, 0x3b, 0xcf, 0x55, 0x08, 0xf5, 0x42, 0x6b, 0x00, 0x1d, 0xf6,
|
||||
0x39, 0x1a, 0xa0, 0x14, 0x27, 0x3a, 0x1a, 0xa0, 0x12, 0x27, 0x3a, 0x1a, 0x40, 0x87, 0x9d, 0x24,
|
||||
0xc2, 0xe8, 0xb1, 0x14, 0x5a, 0x1a, 0x9b, 0x79, 0x5e, 0x40, 0x3a, 0xb8, 0x76, 0x3e, 0x82, 0xbb,
|
||||
0xda, 0x0d, 0x77, 0xb5, 0x43, 0xe8, 0xdd, 0x67, 0x92, 0x59, 0xb2, 0xce, 0x30, 0x70, 0x55, 0x8a,
|
||||
0x5d, 0x93, 0x28, 0xab, 0x1b, 0x31, 0xe7, 0x2a, 0x78, 0x91, 0xe4, 0x27, 0xdf, 0x85, 0xce, 0xc7,
|
||||
0x8c, 0xeb, 0xc2, 0x82, 0xf1, 0x3c, 0x4a, 0x95, 0x86, 0x41, 0x4d, 0x5d, 0x82, 0x5e, 0x13, 0xd4,
|
||||
0x06, 0xa4, 0x6f, 0xa8, 0xed, 0xb0, 0xf1, 0x84, 0xc9, 0xc7, 0x3f, 0x0c, 0xc7, 0x2f, 0xc8, 0x6f,
|
||||
0x0a, 0xe2, 0xa6, 0x16, 0xb9, 0x65, 0xe5, 0xa3, 0x6d, 0xe2, 0xab, 0x25, 0x78, 0x1d, 0xe5, 0x38,
|
||||
0x19, 0x33, 0xcb, 0xd4, 0xc5, 0xd0, 0xb1, 0x0a, 0xcf, 0xe6, 0x41, 0x55, 0xab, 0xd9, 0xe6, 0x41,
|
||||
0xd5, 0xd4, 0xa9, 0xe9, 0xb6, 0x58, 0x87, 0x92, 0x6b, 0xc5, 0x3a, 0xb2, 0x36, 0x5d, 0xac, 0xb4,
|
||||
0xf3, 0x3c, 0x98, 0xf2, 0x17, 0xe4, 0x89, 0x68, 0x9e, 0xb6, 0x8b, 0x27, 0x85, 0xe7, 0x53, 0xae,
|
||||
0xb3, 0x18, 0x66, 0x59, 0x53, 0xae, 0x37, 0x24, 0x97, 0x12, 0x16, 0xf1, 0x1b, 0x00, 0x87, 0x3c,
|
||||
0x49, 0xef, 0x07, 0x6c, 0x9a, 0xc4, 0x85, 0x26, 0x2b, 0x0a, 0x04, 0x85, 0x26, 0xb3, 0xaa, 0x04,
|
||||
0xe4, 0x89, 0xe5, 0x7b, 0x3a, 0xb5, 0x27, 0x2d, 0x5c, 0xe7, 0xd6, 0x10, 0x0c, 0x43, 0x6a, 0xea,
|
||||
0x08, 0xda, 0x0d, 0x95, 0xc9, 0x51, 0xcb, 0x0d, 0x75, 0xb2, 0xab, 0x96, 0x1b, 0xea, 0x66, 0x51,
|
||||
0xd1, 0x0d, 0x2d, 0xb2, 0x20, 0xc6, 0x0d, 0xad, 0x24, 0x58, 0x8c, 0x0e, 0xad, 0x49, 0x99, 0x1c,
|
||||
0x40, 0xbb, 0x08, 0xc5, 0xf5, 0x42, 0xe5, 0xc0, 0xdd, 0x18, 0xab, 0x4a, 0x84, 0x4c, 0xd7, 0x04,
|
||||
0x9f, 0x81, 0xb4, 0x90, 0xcf, 0xa2, 0xf0, 0xfe, 0x18, 0x40, 0x9e, 0xee, 0x21, 0x8e, 0x2c, 0x92,
|
||||
0x4e, 0x20, 0x6c, 0x93, 0x74, 0x23, 0x4e, 0xed, 0xc9, 0x50, 0x43, 0xf2, 0x43, 0xef, 0xc6, 0xd1,
|
||||
0x92, 0xf8, 0xc3, 0xf2, 0xd7, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0x6a, 0xd9, 0x34, 0x9a, 0xe2,
|
||||
0x3c, 0x00, 0x00,
|
||||
// 4901 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7b, 0xcd, 0x8f, 0x1c, 0x49,
|
||||
0x56, 0xb8, 0xb3, 0xba, 0xba, 0xbb, 0xea, 0x55, 0x55, 0x7f, 0x44, 0xb7, 0xbb, 0xcb, 0x65, 0xaf,
|
||||
0xd7, 0x8e, 0x1d, 0xcd, 0xf4, 0xcf, 0xbf, 0xc5, 0x6d, 0xf7, 0xb2, 0xc3, 0xec, 0x18, 0x18, 0xf9,
|
||||
0xbb, 0x87, 0xf5, 0x78, 0x7a, 0xb3, 0x3d, 0x33, 0xb0, 0x2b, 0x54, 0x64, 0x57, 0x45, 0x57, 0xe7,
|
||||
0x3a, 0x2b, 0x33, 0x27, 0x33, 0xaa, 0xdb, 0xb5, 0x83, 0x25, 0x58, 0x10, 0x27, 0xd0, 0x1e, 0x40,
|
||||
0xa0, 0x3d, 0x2c, 0x12, 0xe2, 0x00, 0x1c, 0xe0, 0x1f, 0x40, 0xe2, 0x0f, 0x40, 0x42, 0x20, 0xed,
|
||||
0x09, 0x89, 0x1b, 0x9c, 0xe0, 0x0c, 0x67, 0xf4, 0xe2, 0x2b, 0x23, 0x32, 0xb3, 0x6d, 0x2f, 0xbb,
|
||||
0x70, 0xab, 0x78, 0xf1, 0xf2, 0x45, 0xc4, 0x8b, 0x17, 0xef, 0xbb, 0xa0, 0x9d, 0xa5, 0xa3, 0x9b,
|
||||
0x69, 0x96, 0xf0, 0x84, 0x2c, 0x46, 0x71, 0x96, 0x8e, 0x06, 0x57, 0x26, 0x49, 0x32, 0x89, 0xd8,
|
||||
0x6e, 0x90, 0x86, 0xbb, 0x41, 0x1c, 0x27, 0x3c, 0xe0, 0x61, 0x12, 0xe7, 0x12, 0x89, 0xde, 0x86,
|
||||
0x8d, 0xfb, 0x19, 0x0b, 0x38, 0xfb, 0x2c, 0x88, 0x22, 0xc6, 0x7d, 0xf6, 0xf9, 0x8c, 0xe5, 0x9c,
|
||||
0x0c, 0xa0, 0x95, 0x06, 0x79, 0x7e, 0x96, 0x64, 0xe3, 0xbe, 0x77, 0xcd, 0xdb, 0xe9, 0xfa, 0x66,
|
||||
0x4c, 0xb7, 0x60, 0xd3, 0xfd, 0x24, 0x4f, 0x93, 0x38, 0x67, 0x48, 0xea, 0x93, 0x38, 0x4a, 0x46,
|
||||
0xcf, 0x7f, 0x22, 0x52, 0xee, 0x27, 0x8a, 0xd4, 0x0f, 0x1b, 0xd0, 0x79, 0x96, 0x05, 0x71, 0x1e,
|
||||
0x8c, 0x70, 0xb3, 0xa4, 0x0f, 0xcb, 0xfc, 0xc5, 0xf0, 0x24, 0xc8, 0x4f, 0x04, 0x89, 0xb6, 0xaf,
|
||||
0x87, 0x64, 0x0b, 0x96, 0x82, 0x69, 0x32, 0x8b, 0x79, 0xbf, 0x71, 0xcd, 0xdb, 0x59, 0xf0, 0xd5,
|
||||
0x88, 0x7c, 0x15, 0xd6, 0xe3, 0xd9, 0x74, 0x38, 0x4a, 0xe2, 0xe3, 0x30, 0x9b, 0xca, 0x23, 0xf7,
|
||||
0x17, 0xae, 0x79, 0x3b, 0x8b, 0x7e, 0x75, 0x82, 0x5c, 0x05, 0x38, 0xc2, 0x6d, 0xc8, 0x25, 0x9a,
|
||||
0x62, 0x09, 0x0b, 0x42, 0x28, 0x74, 0xd5, 0x88, 0x85, 0x93, 0x13, 0xde, 0x5f, 0x14, 0x84, 0x1c,
|
||||
0x18, 0xd2, 0xe0, 0xe1, 0x94, 0x0d, 0x73, 0x1e, 0x4c, 0xd3, 0xfe, 0x92, 0xd8, 0x8d, 0x05, 0x11,
|
||||
0xf3, 0x09, 0x0f, 0xa2, 0xe1, 0x31, 0x63, 0x79, 0x7f, 0x59, 0xcd, 0x1b, 0x08, 0x79, 0x1b, 0x56,
|
||||
0xc6, 0x2c, 0xe7, 0xc3, 0x60, 0x3c, 0xce, 0x58, 0x9e, 0xb3, 0xbc, 0xdf, 0xba, 0xb6, 0xb0, 0xd3,
|
||||
0xf6, 0x4b, 0x50, 0xda, 0x87, 0xad, 0xc7, 0x8c, 0x5b, 0xdc, 0xc9, 0x15, 0xa7, 0xe9, 0x13, 0x20,
|
||||
0x16, 0xf8, 0x01, 0xe3, 0x41, 0x18, 0xe5, 0xe4, 0x5d, 0xe8, 0x72, 0x0b, 0xb9, 0xef, 0x5d, 0x5b,
|
||||
0xd8, 0xe9, 0xec, 0x91, 0x9b, 0x42, 0x3a, 0x6e, 0x5a, 0x1f, 0xf8, 0x0e, 0x1e, 0xfd, 0x27, 0x0f,
|
||||
0x3a, 0x87, 0x2c, 0x1e, 0xeb, 0x7b, 0x24, 0xd0, 0xc4, 0x9d, 0xa8, 0x3b, 0x14, 0xbf, 0xc9, 0x97,
|
||||
0xa1, 0x23, 0x76, 0x97, 0xf3, 0x2c, 0x8c, 0x27, 0xe2, 0x0a, 0xda, 0x3e, 0x20, 0xe8, 0x50, 0x40,
|
||||
0xc8, 0x1a, 0x2c, 0x04, 0x53, 0x2e, 0x18, 0xbf, 0xe0, 0xe3, 0x4f, 0x72, 0x1d, 0xba, 0x69, 0x30,
|
||||
0x9f, 0xb2, 0x98, 0x17, 0xcc, 0xee, 0xfa, 0x1d, 0x05, 0xdb, 0x47, 0x6e, 0xdf, 0x84, 0x0d, 0x1b,
|
||||
0x45, 0x53, 0x5f, 0x14, 0xd4, 0xd7, 0x2d, 0x4c, 0xb5, 0xc8, 0x3b, 0xb0, 0xaa, 0xf1, 0x33, 0xb9,
|
||||
0x59, 0xc1, 0xfe, 0xb6, 0xbf, 0xa2, 0xc0, 0x9a, 0x41, 0x7f, 0xe4, 0x41, 0x57, 0x1e, 0x49, 0xca,
|
||||
0x19, 0x79, 0x0b, 0x7a, 0xfa, 0x4b, 0x96, 0x65, 0x49, 0xa6, 0xa4, 0xcb, 0x05, 0x92, 0x1b, 0xb0,
|
||||
0xa6, 0x01, 0x69, 0xc6, 0xc2, 0x69, 0x30, 0x61, 0xe2, 0xa8, 0x5d, 0xbf, 0x02, 0x27, 0x7b, 0x05,
|
||||
0xc5, 0x2c, 0x99, 0x71, 0x26, 0x8e, 0xde, 0xd9, 0xeb, 0x2a, 0x76, 0xfb, 0x08, 0xf3, 0x5d, 0x14,
|
||||
0xfa, 0x7d, 0x0f, 0xba, 0xf7, 0x4f, 0x82, 0x38, 0x66, 0xd1, 0x41, 0x12, 0xc6, 0x1c, 0xc5, 0xed,
|
||||
0x78, 0x16, 0x8f, 0xc3, 0x78, 0x32, 0xe4, 0x2f, 0x42, 0xfd, 0x6c, 0x1c, 0x18, 0x6e, 0xca, 0x1e,
|
||||
0x23, 0x93, 0x14, 0xff, 0x2b, 0x70, 0xa4, 0x97, 0xcc, 0x78, 0x3a, 0xe3, 0xc3, 0x30, 0x1e, 0xb3,
|
||||
0x17, 0x62, 0x4f, 0x3d, 0xdf, 0x81, 0xd1, 0x5f, 0x86, 0xb5, 0x27, 0x28, 0xc7, 0x71, 0x18, 0x4f,
|
||||
0xee, 0x4a, 0x61, 0xc3, 0xc7, 0x95, 0xce, 0x8e, 0x9e, 0xb3, 0xb9, 0xe2, 0x8b, 0x1a, 0xa1, 0x28,
|
||||
0x9c, 0x24, 0x39, 0x57, 0xeb, 0x89, 0xdf, 0xf4, 0x5f, 0x3d, 0x58, 0x45, 0xde, 0x7e, 0x14, 0xc4,
|
||||
0x73, 0x2d, 0x32, 0x4f, 0xa0, 0x8b, 0xa4, 0x9e, 0x25, 0x77, 0xe5, 0x13, 0x95, 0xa2, 0xb7, 0xa3,
|
||||
0x78, 0x51, 0xc2, 0xbe, 0x69, 0xa3, 0x3e, 0x8c, 0x79, 0x36, 0xf7, 0x9d, 0xaf, 0x51, 0xd8, 0x78,
|
||||
0x90, 0x4d, 0x18, 0x17, 0x8f, 0x57, 0x3d, 0x66, 0x90, 0xa0, 0xfb, 0x49, 0x7c, 0x4c, 0xae, 0x41,
|
||||
0x37, 0x0f, 0xf8, 0x30, 0x65, 0xd9, 0xf0, 0x68, 0xce, 0x99, 0x10, 0x98, 0x05, 0x1f, 0xf2, 0x80,
|
||||
0x1f, 0xb0, 0xec, 0xde, 0x9c, 0xb3, 0xc1, 0x07, 0xb0, 0x5e, 0x59, 0x05, 0x65, 0xb4, 0x38, 0x22,
|
||||
0xfe, 0x24, 0x9b, 0xb0, 0x78, 0x1a, 0x44, 0x33, 0xa6, 0x74, 0x8a, 0x1c, 0xbc, 0xdf, 0x78, 0xcf,
|
||||
0xa3, 0x6f, 0xc3, 0x5a, 0xb1, 0x6d, 0x25, 0x44, 0x04, 0x9a, 0xe6, 0x96, 0xda, 0xbe, 0xf8, 0x4d,
|
||||
0x7f, 0xdb, 0x93, 0x88, 0xf7, 0x93, 0xd0, 0xbc, 0x4f, 0x44, 0xc4, 0x67, 0xac, 0x11, 0xf1, 0xf7,
|
||||
0xb9, 0xfa, 0xeb, 0xa7, 0x3f, 0x2c, 0x7d, 0x07, 0xd6, 0xad, 0x2d, 0xbc, 0x62, 0xb3, 0x7f, 0xea,
|
||||
0xc1, 0xfa, 0x53, 0x76, 0xa6, 0x6e, 0x5d, 0xef, 0xf6, 0x3d, 0x68, 0xf2, 0x79, 0xca, 0x04, 0xe6,
|
||||
0xca, 0xde, 0x5b, 0xea, 0xd2, 0x2a, 0x78, 0x37, 0xd5, 0xf0, 0xd9, 0x3c, 0x65, 0xbe, 0xf8, 0x82,
|
||||
0x7e, 0x0c, 0x1d, 0x0b, 0x48, 0xb6, 0x61, 0xe3, 0xb3, 0x0f, 0x9f, 0x3d, 0x7d, 0x78, 0x78, 0x38,
|
||||
0x3c, 0xf8, 0xe4, 0xde, 0x37, 0x1f, 0xfe, 0xda, 0x70, 0xff, 0xee, 0xe1, 0xfe, 0xda, 0x05, 0xb2,
|
||||
0x05, 0xe4, 0xe9, 0xc3, 0xc3, 0x67, 0x0f, 0x1f, 0x38, 0x70, 0x8f, 0xac, 0x42, 0xc7, 0x06, 0x34,
|
||||
0xe8, 0x00, 0xfa, 0x4f, 0xd9, 0xd9, 0x67, 0x21, 0x8f, 0x59, 0x9e, 0xbb, 0xcb, 0xd3, 0x9b, 0x40,
|
||||
0xec, 0x3d, 0xa9, 0x63, 0xf6, 0x61, 0x59, 0x69, 0x4c, 0x6d, 0x30, 0xd4, 0x90, 0xbe, 0x0d, 0xe4,
|
||||
0x30, 0x9c, 0xc4, 0x1f, 0xb1, 0x3c, 0x0f, 0x26, 0x4c, 0x1f, 0x76, 0x0d, 0x16, 0xa6, 0xf9, 0x44,
|
||||
0x3d, 0x34, 0xfc, 0x49, 0xbf, 0x06, 0x1b, 0x0e, 0x9e, 0x22, 0x7c, 0x05, 0xda, 0x79, 0x38, 0x89,
|
||||
0x03, 0x3e, 0xcb, 0x98, 0x22, 0x5d, 0x00, 0xe8, 0x23, 0xd8, 0xfc, 0x94, 0x65, 0xe1, 0xf1, 0xfc,
|
||||
0x75, 0xe4, 0x5d, 0x3a, 0x8d, 0x32, 0x9d, 0x87, 0x70, 0xb1, 0x44, 0x47, 0x2d, 0x2f, 0x25, 0x53,
|
||||
0xdd, 0x5f, 0xcb, 0x97, 0x03, 0xeb, 0x9d, 0x36, 0xec, 0x77, 0x4a, 0x3f, 0x01, 0x72, 0x3f, 0x89,
|
||||
0x63, 0x36, 0xe2, 0x07, 0x8c, 0x65, 0x7a, 0x33, 0xff, 0xdf, 0x12, 0xc3, 0xce, 0xde, 0xb6, 0xba,
|
||||
0xd8, 0xf2, 0xe3, 0x57, 0xf2, 0x49, 0xa0, 0x99, 0xb2, 0x6c, 0x2a, 0x08, 0xb7, 0x7c, 0xf1, 0x9b,
|
||||
0xee, 0xc2, 0x86, 0x43, 0xb6, 0xe0, 0x79, 0xca, 0x58, 0x36, 0x54, 0xbb, 0x5b, 0xf4, 0xf5, 0x90,
|
||||
0xde, 0x86, 0x8b, 0x0f, 0xc2, 0x7c, 0x54, 0xdd, 0x0a, 0x7e, 0x32, 0x3b, 0x1a, 0x16, 0xcf, 0x4f,
|
||||
0x0f, 0xd1, 0xca, 0x95, 0x3f, 0x51, 0xbe, 0xc1, 0xef, 0x79, 0xd0, 0xdc, 0x7f, 0xf6, 0xe4, 0x3e,
|
||||
0x3a, 0x16, 0x61, 0x3c, 0x4a, 0xa6, 0x68, 0x1b, 0x24, 0x3b, 0xcc, 0xf8, 0xdc, 0x67, 0x75, 0x05,
|
||||
0xda, 0xc2, 0xa4, 0xa0, 0xe1, 0x16, 0x8f, 0xaa, 0xeb, 0x17, 0x00, 0x74, 0x1a, 0xd8, 0x8b, 0x34,
|
||||
0xcc, 0x84, 0x57, 0xa0, 0x6d, 0x7d, 0x53, 0x28, 0xcb, 0xea, 0x04, 0xfd, 0xf7, 0x26, 0xf4, 0xee,
|
||||
0x8e, 0x78, 0x78, 0xca, 0x94, 0xf2, 0x16, 0xab, 0x0a, 0x80, 0xda, 0x8f, 0x1a, 0xa1, 0x99, 0xc9,
|
||||
0xd8, 0x34, 0xe1, 0x6c, 0xe8, 0x5c, 0x93, 0x0b, 0x44, 0xac, 0x91, 0x24, 0x34, 0x4c, 0xd1, 0x0c,
|
||||
0x88, 0xfd, 0xb5, 0x7d, 0x17, 0x88, 0x2c, 0x43, 0x00, 0x72, 0x19, 0x77, 0xd6, 0xf4, 0xf5, 0x10,
|
||||
0xf9, 0x31, 0x0a, 0xd2, 0x60, 0x14, 0xf2, 0xb9, 0xd2, 0x06, 0x66, 0x8c, 0xb4, 0xa3, 0x64, 0x14,
|
||||
0x44, 0xc3, 0xa3, 0x20, 0x0a, 0xe2, 0x11, 0x53, 0xfe, 0x89, 0x0b, 0x44, 0x17, 0x44, 0x6d, 0x49,
|
||||
0xa3, 0x49, 0x37, 0xa5, 0x04, 0x45, 0x57, 0x66, 0x94, 0x4c, 0xa7, 0x21, 0x47, 0xcf, 0xa5, 0xdf,
|
||||
0x92, 0x9a, 0xa7, 0x80, 0x88, 0x93, 0xc8, 0xd1, 0x99, 0xe4, 0x61, 0x5b, 0xae, 0xe6, 0x00, 0x91,
|
||||
0xca, 0x31, 0x63, 0x42, 0x83, 0x3d, 0x3f, 0xeb, 0x83, 0xa4, 0x52, 0x40, 0xf0, 0x36, 0x66, 0x71,
|
||||
0xce, 0x38, 0x8f, 0xd8, 0xd8, 0x6c, 0xa8, 0x23, 0xd0, 0xaa, 0x13, 0xe4, 0x16, 0x6c, 0x48, 0x67,
|
||||
0x2a, 0x0f, 0x78, 0x92, 0x9f, 0x84, 0xf9, 0x30, 0x67, 0x31, 0xef, 0x77, 0x05, 0x7e, 0xdd, 0x14,
|
||||
0x79, 0x0f, 0xb6, 0x4b, 0xe0, 0x8c, 0x8d, 0x58, 0x78, 0xca, 0xc6, 0xfd, 0x9e, 0xf8, 0xea, 0xbc,
|
||||
0x69, 0x72, 0x0d, 0x3a, 0xe8, 0x43, 0xce, 0xd2, 0x71, 0xc0, 0x59, 0xde, 0x5f, 0x11, 0xf7, 0x60,
|
||||
0x83, 0xc8, 0x6d, 0xe8, 0xa5, 0x4c, 0x5a, 0xe1, 0x13, 0x1e, 0x8d, 0xf2, 0xfe, 0xaa, 0x30, 0x7d,
|
||||
0x1d, 0xf5, 0xd8, 0x50, 0x7e, 0x7d, 0x17, 0x03, 0x45, 0x73, 0x94, 0x9f, 0x0e, 0xc7, 0x2c, 0x0a,
|
||||
0xe6, 0xfd, 0x35, 0x21, 0x74, 0x05, 0x80, 0x5e, 0x84, 0x8d, 0x27, 0x61, 0xce, 0x95, 0xa4, 0x19,
|
||||
0xed, 0xb7, 0x0f, 0x9b, 0x2e, 0x58, 0xbd, 0xc5, 0x5b, 0xd0, 0x52, 0x62, 0x93, 0xf7, 0x3b, 0x62,
|
||||
0xe9, 0x4d, 0xb5, 0xb4, 0x23, 0xb1, 0xbe, 0xc1, 0xa2, 0xbf, 0xdb, 0x80, 0x26, 0xbe, 0xb3, 0xf3,
|
||||
0xdf, 0xa4, 0xfd, 0xc0, 0x1b, 0xce, 0x03, 0xb7, 0xd5, 0xed, 0x82, 0xa3, 0x6e, 0x85, 0x67, 0x3d,
|
||||
0xe7, 0x4c, 0xdd, 0x86, 0x94, 0x58, 0x0b, 0x52, 0xcc, 0x67, 0x6c, 0x74, 0x2a, 0xc4, 0xd6, 0xcc,
|
||||
0x23, 0x04, 0x85, 0x1a, 0xcd, 0x9c, 0xf8, 0x5a, 0xca, 0xac, 0x19, 0xeb, 0x39, 0xf1, 0xe5, 0x72,
|
||||
0x31, 0x27, 0xbe, 0xeb, 0xc3, 0x72, 0x18, 0x1f, 0x25, 0xb3, 0x78, 0x2c, 0xe4, 0xb3, 0xe5, 0xeb,
|
||||
0x21, 0xf2, 0x39, 0x15, 0xde, 0x51, 0x38, 0x65, 0x4a, 0x30, 0x0b, 0x00, 0x25, 0xe8, 0x06, 0xe5,
|
||||
0x42, 0xe3, 0x18, 0x26, 0xbf, 0x0b, 0xeb, 0x16, 0x4c, 0x71, 0xf8, 0x3a, 0x2c, 0xe2, 0xe9, 0xb5,
|
||||
0x3f, 0xad, 0x6f, 0x56, 0xa8, 0x2a, 0x39, 0x43, 0xd7, 0x60, 0xe5, 0x31, 0xe3, 0x1f, 0xc6, 0xc7,
|
||||
0x89, 0xa6, 0xf4, 0x9f, 0x0d, 0x58, 0x35, 0x20, 0x45, 0x68, 0x07, 0x56, 0xc3, 0x31, 0x8b, 0x79,
|
||||
0xc8, 0xe7, 0x43, 0xc7, 0xdb, 0x2a, 0x83, 0x51, 0xf9, 0x07, 0x51, 0x18, 0xe4, 0x4a, 0x7d, 0xc8,
|
||||
0x01, 0xd9, 0x83, 0x4d, 0x94, 0x3c, 0x2d, 0x4c, 0xe6, 0xda, 0xa5, 0x93, 0x57, 0x3b, 0x87, 0x8f,
|
||||
0x05, 0xe1, 0x52, 0x3d, 0x15, 0x9f, 0x48, 0x55, 0x57, 0x37, 0x85, 0x5c, 0x93, 0x94, 0xf0, 0xc8,
|
||||
0x8b, 0x52, 0x3a, 0x0d, 0xa0, 0x12, 0x1f, 0x2d, 0x49, 0x07, 0xb3, 0x1c, 0x1f, 0x59, 0x31, 0x56,
|
||||
0xab, 0x12, 0x63, 0xed, 0xc0, 0x6a, 0x3e, 0x8f, 0x47, 0x6c, 0x3c, 0xe4, 0x09, 0xae, 0x1b, 0xc6,
|
||||
0xe2, 0x76, 0x5a, 0x7e, 0x19, 0x2c, 0xa2, 0x41, 0x96, 0xf3, 0x98, 0x71, 0xa1, 0x35, 0x5a, 0xbe,
|
||||
0x1e, 0xa2, 0x02, 0x16, 0x28, 0x52, 0xe8, 0xdb, 0xbe, 0x1a, 0xd1, 0xef, 0x09, 0x43, 0x68, 0x02,
|
||||
0xbe, 0x4f, 0xc4, 0x2b, 0x25, 0x97, 0xa1, 0x2d, 0xd7, 0xcf, 0x4f, 0x02, 0x1d, 0x9a, 0x0a, 0xc0,
|
||||
0xe1, 0x49, 0x80, 0x71, 0x8a, 0x73, 0x24, 0x29, 0xf1, 0x1d, 0x01, 0xdb, 0x97, 0x27, 0x7a, 0x0b,
|
||||
0x56, 0x74, 0x28, 0x99, 0x0f, 0x23, 0x76, 0xcc, 0xb5, 0x63, 0x1d, 0xcf, 0xa6, 0xb8, 0x5c, 0xfe,
|
||||
0x84, 0x1d, 0x73, 0xfa, 0x14, 0xd6, 0xd5, 0x6b, 0xfb, 0x38, 0x65, 0x7a, 0xe9, 0x6f, 0x94, 0x75,
|
||||
0xbd, 0x34, 0xc6, 0x1b, 0x4a, 0x8a, 0xec, 0x68, 0xa0, 0x64, 0x00, 0xa8, 0x0f, 0x44, 0x4d, 0xdf,
|
||||
0x8f, 0x92, 0x9c, 0x29, 0x82, 0x14, 0xba, 0xa3, 0x28, 0xc9, 0xcb, 0x21, 0x83, 0x0d, 0x43, 0xbe,
|
||||
0xe5, 0xb3, 0xd1, 0x08, 0x5f, 0xa9, 0x34, 0xe7, 0x7a, 0x48, 0xff, 0xd2, 0x83, 0x0d, 0x41, 0x4d,
|
||||
0xeb, 0x05, 0xe3, 0x03, 0xbe, 0xf9, 0x36, 0xbb, 0x23, 0x3b, 0x84, 0xd9, 0x84, 0xc5, 0xe3, 0x24,
|
||||
0x1b, 0x31, 0xb5, 0x92, 0x1c, 0xfc, 0x2c, 0xbc, 0xda, 0x7f, 0xf6, 0x60, 0x5d, 0x6c, 0xf5, 0x90,
|
||||
0x07, 0x7c, 0x96, 0xab, 0xe3, 0xff, 0x22, 0xf4, 0xf0, 0xa8, 0x4c, 0x8b, 0xba, 0xda, 0xe8, 0xa6,
|
||||
0x79, 0x95, 0x02, 0x2a, 0x91, 0xf7, 0x2f, 0xf8, 0x2e, 0x32, 0xf9, 0x00, 0xba, 0x76, 0x3e, 0x40,
|
||||
0xec, 0xb9, 0xb3, 0x77, 0x49, 0x9f, 0xb2, 0x22, 0x39, 0xfb, 0x17, 0x7c, 0xe7, 0x03, 0x72, 0x07,
|
||||
0x40, 0x58, 0x61, 0x41, 0x56, 0x85, 0x7c, 0x97, 0x5c, 0x26, 0x59, 0x97, 0xb5, 0x7f, 0xc1, 0xb7,
|
||||
0xd0, 0xef, 0xb5, 0x60, 0x49, 0x9a, 0x0d, 0xfa, 0x18, 0x7a, 0xce, 0x4e, 0x1d, 0x6f, 0xbd, 0x2b,
|
||||
0xbd, 0xf5, 0x4a, 0x30, 0xd7, 0xa8, 0x09, 0xe6, 0xfe, 0xb6, 0x01, 0x04, 0xa5, 0xad, 0x74, 0x9d,
|
||||
0x6f, 0xc3, 0x8a, 0x62, 0xbf, 0xeb, 0xa8, 0x95, 0xa0, 0xc2, 0xbe, 0x25, 0x63, 0xc7, 0x5b, 0xe9,
|
||||
0xfa, 0x36, 0x88, 0xdc, 0x04, 0x62, 0x0d, 0x75, 0x84, 0x2e, 0x75, 0x7f, 0xcd, 0x0c, 0x2a, 0x29,
|
||||
0xe9, 0x6a, 0xe8, 0xd8, 0x54, 0x79, 0x67, 0x4d, 0x71, 0xbf, 0xb5, 0x73, 0x22, 0x71, 0x34, 0xc3,
|
||||
0xf0, 0x3f, 0xe0, 0xda, 0x9f, 0xd1, 0xe3, 0xb2, 0x20, 0x2d, 0xbd, 0x56, 0x90, 0x96, 0xcb, 0x82,
|
||||
0x24, 0xac, 0x59, 0x16, 0x9e, 0x06, 0x9c, 0x69, 0x0b, 0xa1, 0x86, 0xf4, 0xc7, 0x1e, 0xac, 0x21,
|
||||
0xf7, 0x1c, 0x09, 0x7b, 0x1f, 0x84, 0x80, 0xbf, 0xa1, 0x80, 0x39, 0xb8, 0x3f, 0xbd, 0x7c, 0xbd,
|
||||
0x07, 0x6d, 0x41, 0x30, 0x49, 0x59, 0xac, 0xc4, 0xab, 0xef, 0x8a, 0x57, 0xa1, 0x5b, 0xf6, 0x2f,
|
||||
0xf8, 0x05, 0xb2, 0x25, 0x5c, 0xff, 0xe8, 0x41, 0x47, 0x6d, 0xf3, 0x7f, 0xec, 0x3e, 0x0f, 0xa0,
|
||||
0x85, 0x72, 0x66, 0x79, 0xa7, 0x66, 0x8c, 0xfa, 0x7b, 0x8a, 0xd1, 0x0b, 0x1a, 0x2c, 0xc7, 0x75,
|
||||
0x2e, 0x83, 0xd1, 0xfa, 0x08, 0x35, 0x9a, 0x0f, 0x79, 0x18, 0x0d, 0xf5, 0xac, 0x4a, 0xaa, 0xd5,
|
||||
0x4d, 0xa1, 0x36, 0xc9, 0x79, 0x30, 0x61, 0xca, 0xb0, 0xc8, 0x01, 0xc6, 0x08, 0xea, 0x40, 0x65,
|
||||
0xb7, 0xe8, 0xbf, 0x00, 0xb6, 0x2b, 0x53, 0xc6, 0x35, 0x52, 0xde, 0x60, 0x14, 0x4e, 0x8f, 0x12,
|
||||
0xe3, 0x58, 0x7a, 0xb6, 0xa3, 0xe8, 0x4c, 0x91, 0x09, 0x5c, 0xd4, 0x16, 0x14, 0x79, 0x5a, 0xd8,
|
||||
0xcb, 0x86, 0x30, 0xfd, 0xb7, 0x5d, 0x19, 0x28, 0x2f, 0xa8, 0xe1, 0xf6, 0x7b, 0xac, 0xa7, 0x47,
|
||||
0x4e, 0xa0, 0x6f, 0x4c, 0xb5, 0x52, 0xdc, 0x96, 0x39, 0xc7, 0xb5, 0xbe, 0xfa, 0x9a, 0xb5, 0x84,
|
||||
0x96, 0x19, 0xeb, 0x65, 0xce, 0xa5, 0x46, 0xe6, 0x70, 0x55, 0xcf, 0x09, 0xcd, 0x5c, 0x5d, 0xaf,
|
||||
0xf9, 0x46, 0x67, 0x7b, 0x84, 0x1f, 0xbb, 0x8b, 0xbe, 0x86, 0xf0, 0xe0, 0xef, 0x3d, 0x58, 0x71,
|
||||
0xc9, 0xa1, 0xe8, 0xa8, 0x08, 0x43, 0xab, 0x0e, 0xed, 0x02, 0x95, 0xc0, 0xd5, 0x18, 0xa9, 0x51,
|
||||
0x17, 0x23, 0xd9, 0x91, 0xd0, 0xc2, 0xeb, 0x22, 0xa1, 0xe6, 0x9b, 0x45, 0x42, 0x8b, 0x75, 0x91,
|
||||
0xd0, 0xe0, 0xcf, 0x1a, 0x40, 0xaa, 0xf7, 0x4b, 0x1e, 0xcb, 0x20, 0x2d, 0x66, 0x91, 0xd2, 0x13,
|
||||
0x3f, 0xf7, 0x66, 0x32, 0xa2, 0x79, 0xa8, 0xbf, 0x46, 0x61, 0xb5, 0x15, 0x81, 0xed, 0x8c, 0xf4,
|
||||
0xfc, 0xba, 0x29, 0x72, 0x03, 0xd6, 0x8a, 0x17, 0x14, 0x15, 0x1a, 0x63, 0xd1, 0xaf, 0xc0, 0x4b,
|
||||
0x71, 0x5c, 0xf3, 0xf5, 0x71, 0xdc, 0xe2, 0xeb, 0xe3, 0xb8, 0xa5, 0x72, 0x1c, 0x37, 0xf8, 0x4d,
|
||||
0xe8, 0x39, 0x12, 0xf2, 0xb3, 0xe3, 0x4e, 0xd9, 0xe9, 0x91, 0xc2, 0xe0, 0xc0, 0x06, 0xff, 0xd1,
|
||||
0x00, 0x52, 0x95, 0xd2, 0xff, 0xd3, 0x3d, 0x08, 0x99, 0x73, 0x94, 0xcd, 0x82, 0x92, 0x39, 0x47,
|
||||
0xcd, 0xfc, 0x6f, 0x2a, 0xd0, 0xaf, 0xc2, 0x7a, 0xc6, 0x46, 0xc9, 0x29, 0xcb, 0xac, 0x58, 0x5a,
|
||||
0x5e, 0x55, 0x75, 0x02, 0xdd, 0x3e, 0x37, 0x7a, 0x6d, 0x39, 0x35, 0x03, 0xcb, 0x8a, 0x94, 0x82,
|
||||
0x58, 0xfa, 0x0d, 0xd8, 0x94, 0xa5, 0x9c, 0x7b, 0x92, 0x94, 0xf6, 0x3c, 0xae, 0x43, 0xf7, 0x4c,
|
||||
0xa6, 0xef, 0x86, 0x49, 0x1c, 0xcd, 0x95, 0xc1, 0xe9, 0x28, 0xd8, 0xc7, 0x71, 0x34, 0xa7, 0x3f,
|
||||
0xf2, 0xe0, 0x62, 0xe9, 0xdb, 0x22, 0x4b, 0x2f, 0xd5, 0xb2, 0xab, 0xab, 0x5d, 0x20, 0x1e, 0x51,
|
||||
0xbd, 0x07, 0xeb, 0x88, 0xd2, 0x7c, 0x55, 0x27, 0x90, 0x85, 0xb3, 0xb8, 0x8a, 0x2f, 0x2f, 0xa6,
|
||||
0x6e, 0x8a, 0x6e, 0xc3, 0x45, 0x75, 0xf9, 0xee, 0xd9, 0xe8, 0x1e, 0x6c, 0x95, 0x27, 0x8a, 0x8c,
|
||||
0x98, 0xbb, 0x65, 0x3d, 0xa4, 0x1f, 0x00, 0xf9, 0xd6, 0x8c, 0x65, 0x73, 0x51, 0x0f, 0x30, 0x29,
|
||||
0xd7, 0xed, 0x72, 0xe8, 0xbd, 0x94, 0xce, 0x8e, 0xbe, 0xc9, 0xe6, 0xba, 0x8c, 0xd2, 0x30, 0x65,
|
||||
0x14, 0x7a, 0x07, 0x36, 0x1c, 0x02, 0x86, 0x55, 0x4b, 0xa2, 0xa6, 0xa0, 0xc3, 0x52, 0xb7, 0xee,
|
||||
0xa0, 0xe6, 0xe8, 0x9f, 0x78, 0xb0, 0xb0, 0x9f, 0xa4, 0x76, 0x2e, 0xc9, 0x73, 0x73, 0x49, 0x4a,
|
||||
0xcf, 0x0e, 0x8d, 0x1a, 0x6d, 0xa8, 0x97, 0x6f, 0x03, 0x51, 0x4b, 0x06, 0x53, 0x8e, 0x81, 0xd9,
|
||||
0x71, 0x92, 0x9d, 0x05, 0xd9, 0x58, 0xf1, 0xaf, 0x04, 0xc5, 0xed, 0x17, 0x0a, 0x06, 0x7f, 0xa2,
|
||||
0x83, 0x21, 0x12, 0x6a, 0x73, 0x15, 0x4b, 0xaa, 0x11, 0xfd, 0x81, 0x07, 0x8b, 0x62, 0xaf, 0xf8,
|
||||
0x1a, 0xe4, 0xfd, 0x8a, 0x12, 0x9a, 0xc8, 0xd7, 0x79, 0xf2, 0x35, 0x94, 0xc0, 0xa5, 0xc2, 0x5a,
|
||||
0xa3, 0x52, 0x58, 0xbb, 0x02, 0x6d, 0x39, 0x2a, 0x2a, 0x51, 0x05, 0x80, 0x5c, 0x85, 0xe6, 0x49,
|
||||
0x92, 0x6a, 0x7b, 0x07, 0x3a, 0x41, 0x93, 0xa4, 0xbe, 0x80, 0xd3, 0x1b, 0xb0, 0xfa, 0x34, 0x19,
|
||||
0x33, 0x2b, 0x8a, 0x3f, 0xf7, 0x9a, 0xe8, 0x6f, 0x79, 0xd0, 0xd2, 0xc8, 0x64, 0x07, 0x9a, 0x68,
|
||||
0xb6, 0x4a, 0x8e, 0xa2, 0x49, 0xb3, 0x22, 0x9e, 0x2f, 0x30, 0x50, 0x85, 0x88, 0x38, 0xb2, 0x70,
|
||||
0x2b, 0x74, 0x14, 0x59, 0x18, 0x6c, 0x74, 0xdd, 0xc5, 0x9e, 0x4b, 0x86, 0xad, 0x04, 0xa5, 0x7f,
|
||||
0xe5, 0x41, 0xcf, 0x59, 0x03, 0x9d, 0xf9, 0x28, 0xc8, 0xb9, 0x4a, 0x4d, 0x29, 0x26, 0xda, 0x20,
|
||||
0x3b, 0xe3, 0xd3, 0x70, 0x33, 0x3e, 0x26, 0xe3, 0xb0, 0x60, 0x67, 0x1c, 0x6e, 0x41, 0xbb, 0x28,
|
||||
0x52, 0x36, 0x1d, 0xd5, 0x80, 0x2b, 0xea, 0x04, 0x72, 0x81, 0x84, 0x74, 0x46, 0x49, 0x94, 0x64,
|
||||
0xaa, 0x86, 0x27, 0x07, 0xf4, 0x0e, 0x74, 0x2c, 0x7c, 0xdc, 0x46, 0xcc, 0xf8, 0x59, 0x92, 0x3d,
|
||||
0xd7, 0x89, 0x27, 0x35, 0x34, 0x85, 0x93, 0x46, 0x51, 0x38, 0xa1, 0x7f, 0xed, 0x41, 0x0f, 0x25,
|
||||
0x25, 0x8c, 0x27, 0x07, 0x49, 0x14, 0x8e, 0xe6, 0x42, 0x62, 0xb4, 0x50, 0x0c, 0xc7, 0x2c, 0xe2,
|
||||
0x81, 0x91, 0x18, 0x17, 0x8c, 0xfe, 0xc1, 0x34, 0x8c, 0x85, 0xca, 0x52, 0xf2, 0x62, 0xc6, 0x28,
|
||||
0xf9, 0x68, 0xbb, 0x8e, 0x82, 0x9c, 0x0d, 0xa7, 0x18, 0x7a, 0x28, 0x5d, 0xed, 0x00, 0x51, 0x7d,
|
||||
0x20, 0x20, 0x0b, 0x38, 0x1b, 0x4e, 0xc3, 0x28, 0x0a, 0x25, 0xae, 0x94, 0xf0, 0xba, 0x29, 0x0c,
|
||||
0xc9, 0x3a, 0x4a, 0x4d, 0x3c, 0x1c, 0x4f, 0x64, 0x0e, 0x55, 0x39, 0x2d, 0xe6, 0xf9, 0x59, 0x10,
|
||||
0x3d, 0xef, 0xb8, 0x39, 0x16, 0xa4, 0x7c, 0xad, 0x0b, 0xd5, 0x6b, 0xbd, 0x02, 0x6d, 0x14, 0xaf,
|
||||
0xdb, 0xc2, 0x9f, 0x92, 0x35, 0xed, 0x02, 0xa0, 0x67, 0xf7, 0xc4, 0xec, 0x62, 0x31, 0x2b, 0x00,
|
||||
0x8e, 0x07, 0xb5, 0x54, 0xf2, 0xa0, 0xde, 0x83, 0xae, 0x22, 0x23, 0xf8, 0x2e, 0x42, 0xab, 0x42,
|
||||
0xc0, 0x9d, 0x3b, 0xf1, 0x1d, 0x4c, 0xfd, 0xe5, 0x9e, 0xfe, 0xb2, 0xf5, 0xba, 0x2f, 0x35, 0x26,
|
||||
0xbd, 0x08, 0x1b, 0x8a, 0x79, 0x8f, 0xb3, 0x20, 0x3d, 0xd1, 0xaa, 0x77, 0x6c, 0x0a, 0xa7, 0x02,
|
||||
0x4c, 0x6e, 0xc0, 0x22, 0x7e, 0xa6, 0xb5, 0x5f, 0xfd, 0xa3, 0x93, 0x28, 0x64, 0x07, 0x16, 0xd9,
|
||||
0x78, 0xc2, 0xb4, 0x17, 0x4f, 0xdc, 0x78, 0x0a, 0xef, 0xc8, 0x97, 0x08, 0xa8, 0x02, 0x10, 0x5a,
|
||||
0x52, 0x01, 0xae, 0xe6, 0x5c, 0xc2, 0xe1, 0x87, 0x63, 0xba, 0x09, 0xe4, 0xa9, 0x94, 0x5a, 0x3b,
|
||||
0xef, 0xf7, 0x3b, 0x0b, 0xd0, 0xb1, 0xc0, 0xf8, 0x9a, 0x27, 0xb8, 0xe1, 0xe1, 0x38, 0x0c, 0xa6,
|
||||
0x8c, 0xb3, 0x4c, 0x49, 0x6a, 0x09, 0x2a, 0x14, 0xec, 0xe9, 0x64, 0x98, 0xcc, 0xf8, 0x70, 0xcc,
|
||||
0x26, 0x19, 0x93, 0x06, 0xcd, 0xf3, 0x4b, 0x50, 0xc4, 0x9b, 0x06, 0x2f, 0x6c, 0x3c, 0x29, 0x0f,
|
||||
0x25, 0xa8, 0xce, 0xe2, 0x49, 0x1e, 0x35, 0x8b, 0x2c, 0x9e, 0xe4, 0x48, 0x59, 0x0f, 0x2d, 0xd6,
|
||||
0xe8, 0xa1, 0x77, 0x61, 0x4b, 0x6a, 0x1c, 0xf5, 0x36, 0x87, 0x25, 0x31, 0x39, 0x67, 0x16, 0xdd,
|
||||
0x52, 0xdc, 0xb3, 0x16, 0xf0, 0x3c, 0xfc, 0x9e, 0x8c, 0xc9, 0x3d, 0xbf, 0x02, 0x47, 0x5c, 0x7c,
|
||||
0x8e, 0x0e, 0xae, 0x2c, 0x32, 0x54, 0xe0, 0x02, 0x37, 0x78, 0xe1, 0xe2, 0xb6, 0x15, 0x6e, 0x09,
|
||||
0x4e, 0x7b, 0xd0, 0x39, 0xe4, 0x49, 0xaa, 0x2f, 0x65, 0x05, 0xba, 0x72, 0xa8, 0x0a, 0x4b, 0x97,
|
||||
0xe1, 0x92, 0x90, 0xa2, 0x67, 0x49, 0x9a, 0x44, 0xc9, 0x64, 0x7e, 0x38, 0x3b, 0xca, 0x47, 0x59,
|
||||
0x98, 0xa2, 0x77, 0x4d, 0xff, 0xc1, 0x83, 0x0d, 0x67, 0x56, 0xa5, 0x05, 0x7e, 0x5e, 0x8a, 0xb4,
|
||||
0xa9, 0x05, 0x48, 0xc1, 0x5b, 0xb7, 0xd4, 0xa1, 0x44, 0x94, 0xe9, 0x93, 0x4f, 0x54, 0x79, 0xe0,
|
||||
0x2e, 0xac, 0xea, 0x9d, 0xe9, 0x0f, 0xa5, 0x14, 0xf6, 0xab, 0x52, 0xa8, 0xbe, 0x5f, 0x51, 0x1f,
|
||||
0x68, 0x12, 0xbf, 0x24, 0xfd, 0x4e, 0x36, 0x16, 0x67, 0xd4, 0xf1, 0xe1, 0x40, 0x7f, 0x6f, 0x3b,
|
||||
0xbb, 0x7a, 0x07, 0x23, 0x03, 0xcc, 0xe9, 0xef, 0x7b, 0x00, 0xc5, 0xee, 0x50, 0x30, 0x0a, 0x95,
|
||||
0xee, 0x89, 0xdc, 0xa9, 0xa5, 0xbe, 0xaf, 0x43, 0xd7, 0xe4, 0xa2, 0x0b, 0x2b, 0xd1, 0xd1, 0x30,
|
||||
0xf4, 0x50, 0xde, 0x81, 0xd5, 0x49, 0x94, 0x1c, 0x09, 0x9b, 0x2b, 0x6a, 0x98, 0xb9, 0x2a, 0xaf,
|
||||
0xad, 0x48, 0xf0, 0x23, 0x05, 0x2d, 0x4c, 0x4a, 0xd3, 0x32, 0x29, 0xf4, 0x0f, 0x1a, 0x26, 0x4b,
|
||||
0x5a, 0x9c, 0xf9, 0xdc, 0x57, 0x46, 0xf6, 0x2a, 0xca, 0xf1, 0x9c, 0xa4, 0xa4, 0xc8, 0x84, 0x1c,
|
||||
0xbc, 0x36, 0x28, 0xbc, 0x03, 0x2b, 0x99, 0xd4, 0x3e, 0x5a, 0x35, 0x35, 0x5f, 0xa1, 0x9a, 0x7a,
|
||||
0x99, 0x63, 0x77, 0xfe, 0x1f, 0xac, 0x05, 0xe3, 0x53, 0x96, 0xf1, 0x50, 0x78, 0xfc, 0xc2, 0xe8,
|
||||
0x4b, 0x85, 0xba, 0x6a, 0xc1, 0x85, 0x2d, 0x7e, 0x07, 0x56, 0x55, 0x49, 0xd3, 0x60, 0xaa, 0x4e,
|
||||
0x95, 0x02, 0x8c, 0x88, 0xf4, 0xcf, 0x75, 0x42, 0xd6, 0xbd, 0xc3, 0xf3, 0x39, 0x62, 0x9f, 0xae,
|
||||
0x51, 0x3a, 0xdd, 0x57, 0x54, 0x72, 0x74, 0xac, 0xc3, 0x0a, 0x95, 0xa6, 0x96, 0x40, 0x95, 0xcc,
|
||||
0x76, 0x59, 0xda, 0x7c, 0x13, 0x96, 0xd2, 0x9b, 0xb0, 0x7a, 0xc8, 0xf8, 0x5d, 0xbc, 0x41, 0xad,
|
||||
0x18, 0x2f, 0x43, 0x3b, 0x66, 0x67, 0x43, 0x79, 0xc5, 0xd2, 0x8c, 0xb7, 0x62, 0x76, 0x26, 0x70,
|
||||
0x28, 0x81, 0xb5, 0x02, 0x5f, 0xbd, 0xba, 0x1f, 0x2d, 0xc0, 0xf2, 0x87, 0xf1, 0x69, 0x12, 0x8e,
|
||||
0x44, 0xba, 0x73, 0xca, 0xa6, 0x89, 0x6e, 0x4e, 0xc0, 0xdf, 0xe8, 0x15, 0x88, 0xba, 0x5b, 0xca,
|
||||
0x55, 0x1e, 0x52, 0x0f, 0xd1, 0x42, 0x66, 0x45, 0x43, 0x8e, 0x94, 0x36, 0x0b, 0x82, 0x3e, 0x66,
|
||||
0x66, 0xf7, 0x18, 0xa9, 0x51, 0xd1, 0xdd, 0xb1, 0x68, 0x75, 0x77, 0x88, 0xe4, 0xb8, 0x2c, 0x29,
|
||||
0x8a, 0x2b, 0x69, 0xf9, 0x7a, 0x28, 0x7c, 0xe1, 0x8c, 0xc9, 0x20, 0x5b, 0xd8, 0xda, 0x65, 0xe5,
|
||||
0x0b, 0xdb, 0x40, 0xb4, 0xc7, 0xf2, 0x03, 0x89, 0x23, 0xf5, 0x95, 0x0d, 0x42, 0xff, 0xa4, 0xdc,
|
||||
0xa6, 0xd4, 0x96, 0x62, 0x52, 0x02, 0xa3, 0x52, 0x1b, 0x33, 0xa3, 0x7b, 0xe4, 0x19, 0x40, 0x36,
|
||||
0x1c, 0x95, 0xe1, 0x96, 0x27, 0x2d, 0x4b, 0xa3, 0x6a, 0x24, 0xfc, 0x98, 0x20, 0x8a, 0x8e, 0x82,
|
||||
0xd1, 0x73, 0xd1, 0x3c, 0x26, 0x2a, 0xa1, 0x6d, 0xdf, 0x05, 0xe2, 0xae, 0x47, 0x11, 0x3f, 0x1d,
|
||||
0x2a, 0x12, 0x3d, 0x59, 0xc9, 0xb4, 0x40, 0xf4, 0x53, 0x20, 0x77, 0xc7, 0x63, 0x75, 0x43, 0x26,
|
||||
0xce, 0x28, 0x78, 0xeb, 0x39, 0xbc, 0xad, 0x39, 0x63, 0xa3, 0xf6, 0x8c, 0xf4, 0x21, 0x74, 0x0e,
|
||||
0xac, 0x9e, 0x2f, 0x71, 0x99, 0xba, 0xdb, 0x4b, 0x09, 0x80, 0x05, 0xb1, 0x16, 0x6c, 0xd8, 0x0b,
|
||||
0xd2, 0x5f, 0x00, 0xf2, 0x24, 0xcc, 0xb9, 0xd9, 0x9f, 0x09, 0x37, 0x4d, 0x86, 0xcd, 0x0a, 0x37,
|
||||
0x15, 0x4c, 0x84, 0x9b, 0x77, 0x65, 0x41, 0xb5, 0x7c, 0xb0, 0x1b, 0xd0, 0x0a, 0x25, 0x48, 0xeb,
|
||||
0xf2, 0x15, 0xf5, 0x08, 0x34, 0xa6, 0x99, 0x47, 0xa7, 0x44, 0x01, 0x1d, 0x53, 0xf1, 0x03, 0x0f,
|
||||
0x96, 0xd5, 0xd1, 0xd0, 0xa4, 0x3a, 0xdd, 0x6e, 0xf2, 0x60, 0x0e, 0xac, 0xbe, 0xdb, 0xa8, 0x2a,
|
||||
0x75, 0x0b, 0x75, 0x52, 0x47, 0xa0, 0x99, 0x06, 0xfc, 0x44, 0x78, 0xe1, 0x6d, 0x5f, 0xfc, 0xd6,
|
||||
0xd1, 0xd6, 0xa2, 0x89, 0xb6, 0x74, 0xf1, 0x58, 0x6d, 0xca, 0x64, 0x49, 0xef, 0xc9, 0xe2, 0x71,
|
||||
0x01, 0x2e, 0x78, 0xa0, 0x36, 0x58, 0xe6, 0x81, 0x42, 0xf5, 0xcd, 0x3c, 0x1d, 0x40, 0xff, 0x01,
|
||||
0x8b, 0x18, 0x67, 0x77, 0xa3, 0xa8, 0x4c, 0xff, 0x32, 0x5c, 0xaa, 0x99, 0x53, 0xef, 0xfe, 0x11,
|
||||
0xac, 0x3f, 0x60, 0x47, 0xb3, 0xc9, 0x13, 0x76, 0x5a, 0x14, 0x28, 0x08, 0x34, 0xf3, 0x93, 0xe4,
|
||||
0x4c, 0xdd, 0x97, 0xf8, 0x4d, 0xbe, 0x04, 0x10, 0x21, 0xce, 0x30, 0x4f, 0xd9, 0x48, 0xb7, 0xca,
|
||||
0x08, 0xc8, 0x61, 0xca, 0x46, 0xf4, 0x5d, 0x20, 0x36, 0x1d, 0x75, 0x04, 0x7c, 0x8d, 0xb3, 0xa3,
|
||||
0x61, 0x3e, 0xcf, 0x39, 0x9b, 0x6a, 0x45, 0x64, 0x83, 0xe8, 0x3b, 0xd0, 0x3d, 0x08, 0xe6, 0x3e,
|
||||
0xfb, 0x5c, 0x35, 0x11, 0x62, 0x50, 0x17, 0xcc, 0x51, 0x3c, 0x4d, 0x50, 0x27, 0xa6, 0xe9, 0xdf,
|
||||
0x35, 0x60, 0x49, 0x62, 0x22, 0xd5, 0x31, 0xcb, 0x79, 0x18, 0xcb, 0x34, 0xbe, 0xa2, 0x6a, 0x81,
|
||||
0x2a, 0xf7, 0xdd, 0xa8, 0xb9, 0x6f, 0xe5, 0x66, 0xe9, 0xb6, 0x02, 0x75, 0xb1, 0x0e, 0x4c, 0xc4,
|
||||
0xac, 0xe1, 0x94, 0xc9, 0x5e, 0xd2, 0xa6, 0x8a, 0x59, 0x35, 0xa0, 0x14, 0x3d, 0x17, 0x6f, 0x5e,
|
||||
0xee, 0x4f, 0x0b, 0xa2, 0x32, 0x2d, 0x36, 0xa8, 0x56, 0xb3, 0x2c, 0xcb, 0xae, 0xc1, 0x8a, 0x66,
|
||||
0xa9, 0x68, 0x90, 0xd6, 0x1b, 0x68, 0x10, 0xe9, 0x7b, 0x39, 0x1a, 0x84, 0xc0, 0xda, 0x23, 0xc6,
|
||||
0x7c, 0x96, 0x26, 0x99, 0xe9, 0xc4, 0xfc, 0xa1, 0x07, 0x6b, 0xca, 0xaa, 0x98, 0x39, 0x72, 0xdd,
|
||||
0x31, 0x41, 0x5e, 0x5d, 0x66, 0xf7, 0x2d, 0xe8, 0x89, 0x20, 0x0c, 0x23, 0x2c, 0x11, 0x71, 0xa9,
|
||||
0xbc, 0x84, 0x03, 0xc4, 0x3d, 0xe9, 0xfc, 0xe3, 0x34, 0x8c, 0x14, 0x83, 0x6d, 0x10, 0x9a, 0x4b,
|
||||
0x1d, 0xa4, 0x09, 0xf6, 0x7a, 0xbe, 0x19, 0xd3, 0x03, 0x58, 0xb7, 0xf6, 0xab, 0x04, 0xea, 0x0e,
|
||||
0xe8, 0xfa, 0xa6, 0x4c, 0x33, 0xc8, 0x77, 0xb1, 0xed, 0x1a, 0xc8, 0xe2, 0x33, 0x07, 0x99, 0xfe,
|
||||
0x8d, 0x27, 0x58, 0xa0, 0xfc, 0x30, 0xd3, 0xfb, 0xb4, 0x24, 0x5d, 0x23, 0x29, 0xed, 0xfb, 0x17,
|
||||
0x7c, 0x35, 0x26, 0x5f, 0x7f, 0x43, 0xef, 0xc6, 0xd4, 0x11, 0xcf, 0xe1, 0xcd, 0x42, 0x1d, 0x6f,
|
||||
0x5e, 0x71, 0xf2, 0x7b, 0xcb, 0xb0, 0x98, 0x8f, 0x92, 0x94, 0xd1, 0x0d, 0xc1, 0x02, 0xbd, 0x5f,
|
||||
0xc9, 0x82, 0xbd, 0x7f, 0xf1, 0x60, 0x45, 0x26, 0xe8, 0x64, 0xcf, 0x36, 0xcb, 0x08, 0xc6, 0x5f,
|
||||
0x56, 0x2b, 0x38, 0x31, 0xee, 0x67, 0xb5, 0xa5, 0x7c, 0x70, 0xb9, 0x76, 0x4e, 0xfb, 0xde, 0xdf,
|
||||
0xff, 0xf1, 0xbf, 0xfd, 0x61, 0xe3, 0x22, 0x5d, 0xdb, 0x3d, 0xbd, 0xbd, 0x2b, 0x54, 0x1c, 0x3b,
|
||||
0x13, 0x18, 0xef, 0x7b, 0x37, 0x70, 0x15, 0xbb, 0x4b, 0xdc, 0xac, 0x52, 0xd3, 0x6d, 0x6e, 0x56,
|
||||
0xa9, 0x6d, 0x2b, 0x77, 0x56, 0x99, 0x09, 0x0c, 0xb3, 0xca, 0xde, 0x5f, 0x5c, 0x86, 0xb6, 0x09,
|
||||
0x14, 0xc9, 0x77, 0xa1, 0xe7, 0x24, 0x23, 0x89, 0x26, 0x5c, 0x97, 0xde, 0x1c, 0x5c, 0xa9, 0x9f,
|
||||
0x54, 0xcb, 0x5e, 0x15, 0xcb, 0xf6, 0xc9, 0x16, 0x2e, 0xab, 0x32, 0x80, 0xbb, 0x22, 0x4b, 0x2b,
|
||||
0xfb, 0x19, 0x9e, 0xc3, 0x8a, 0x9b, 0x40, 0x24, 0x57, 0xdc, 0xdb, 0x2e, 0xad, 0xf6, 0xa5, 0x73,
|
||||
0x66, 0xd5, 0x72, 0x57, 0xc4, 0x72, 0x5b, 0x64, 0xd3, 0x5e, 0xce, 0x04, 0x70, 0x4c, 0x74, 0xa0,
|
||||
0xd8, 0xed, 0xe3, 0x44, 0xd3, 0xab, 0x6f, 0x2b, 0x1f, 0x5c, 0xaa, 0xb6, 0x8a, 0xab, 0xde, 0x72,
|
||||
0xda, 0x17, 0x4b, 0x11, 0x22, 0x18, 0x6a, 0x77, 0x8f, 0x93, 0xef, 0x40, 0xdb, 0x34, 0x9f, 0x92,
|
||||
0x6d, 0xab, 0xe3, 0xd7, 0xee, 0x88, 0x1d, 0xf4, 0xab, 0x13, 0x75, 0x57, 0x65, 0x53, 0x46, 0x81,
|
||||
0x78, 0x02, 0x17, 0x95, 0xc5, 0x3d, 0x62, 0x3f, 0xc9, 0x49, 0x6a, 0x9a, 0xde, 0x6f, 0x79, 0xe4,
|
||||
0x0e, 0xb4, 0x74, 0x4f, 0x2f, 0xd9, 0xaa, 0xef, 0x4d, 0x1e, 0x6c, 0x57, 0xe0, 0x4a, 0x2f, 0xdc,
|
||||
0x05, 0x28, 0xda, 0x4f, 0x49, 0xff, 0xbc, 0x2e, 0x59, 0xc3, 0xc4, 0x9a, 0x5e, 0xd5, 0x89, 0xe8,
|
||||
0xbe, 0x75, 0xbb, 0x5b, 0xc9, 0x97, 0x0b, 0xfc, 0xda, 0xbe, 0xd7, 0x57, 0x10, 0xa4, 0x5b, 0x82,
|
||||
0x77, 0x6b, 0x64, 0x05, 0x79, 0x17, 0xb3, 0x33, 0xdd, 0x8b, 0xf5, 0x00, 0x3a, 0x56, 0x4b, 0x2b,
|
||||
0xd1, 0x14, 0xaa, 0xed, 0xb0, 0x83, 0x41, 0xdd, 0x94, 0xda, 0xee, 0xaf, 0x40, 0xcf, 0xe9, 0x4d,
|
||||
0x35, 0x2f, 0xa3, 0xae, 0xf3, 0xd5, 0xbc, 0x8c, 0xfa, 0x76, 0xd6, 0x6f, 0x43, 0xc7, 0xea, 0x24,
|
||||
0x25, 0x56, 0x45, 0xbc, 0xd4, 0x29, 0x6a, 0x76, 0x54, 0xd3, 0x78, 0x4a, 0x37, 0xc5, 0x79, 0x57,
|
||||
0x68, 0x1b, 0xcf, 0x2b, 0x1a, 0x92, 0x50, 0x48, 0xbe, 0x0b, 0x2b, 0x6e, 0x07, 0xa9, 0x79, 0x55,
|
||||
0xb5, 0xbd, 0xa8, 0xe6, 0x55, 0x9d, 0xd3, 0x76, 0xaa, 0x04, 0xf2, 0xc6, 0x86, 0x59, 0x64, 0xf7,
|
||||
0x0b, 0x95, 0x26, 0x7d, 0x49, 0xbe, 0x85, 0xaa, 0x43, 0x75, 0x88, 0x91, 0xa2, 0xa3, 0xd6, 0xed,
|
||||
0x23, 0x33, 0xd2, 0x5e, 0x69, 0x26, 0xa3, 0xeb, 0x82, 0x78, 0x87, 0x14, 0x27, 0x20, 0x1f, 0xc1,
|
||||
0xb2, 0xea, 0x14, 0x23, 0x17, 0x0b, 0xa9, 0xb6, 0x92, 0x4a, 0x83, 0xad, 0x32, 0x58, 0x11, 0xdb,
|
||||
0x10, 0xc4, 0x7a, 0xa4, 0x83, 0xc4, 0x26, 0x8c, 0x87, 0x48, 0x23, 0x86, 0xd5, 0x52, 0x65, 0xcb,
|
||||
0x3c, 0x96, 0xfa, 0x1a, 0xfa, 0xe0, 0xea, 0xab, 0x0b, 0x62, 0xae, 0x9a, 0xd1, 0xea, 0x65, 0x57,
|
||||
0xb7, 0x3c, 0xfc, 0x3a, 0x74, 0xed, 0xc6, 0x44, 0xa3, 0xb3, 0x6b, 0x9a, 0x18, 0x8d, 0xce, 0xae,
|
||||
0xeb, 0x64, 0xd4, 0x97, 0x4b, 0xba, 0xf6, 0x32, 0xe4, 0xdb, 0xb0, 0x6a, 0xd5, 0x5b, 0x0f, 0xe7,
|
||||
0xf1, 0xc8, 0x08, 0x4f, 0xb5, 0xef, 0x65, 0x50, 0x67, 0x3c, 0xe9, 0xb6, 0x20, 0xbc, 0x4e, 0x1d,
|
||||
0xc2, 0x28, 0x38, 0xf7, 0xa1, 0x63, 0xd7, 0x72, 0x5f, 0x41, 0x77, 0xdb, 0x9a, 0xb2, 0x9b, 0x45,
|
||||
0x6e, 0x79, 0xe4, 0x8f, 0x3d, 0xe8, 0xda, 0x1d, 0x55, 0xc4, 0xc9, 0xcc, 0x94, 0xe8, 0xf4, 0xed,
|
||||
0x39, 0x9b, 0x10, 0x7d, 0x2a, 0x36, 0xb9, 0x7f, 0xe3, 0x91, 0xc3, 0xe4, 0x2f, 0x1c, 0xa7, 0xe8,
|
||||
0xa6, 0xfd, 0x7f, 0x8f, 0x97, 0xe5, 0x49, 0xbb, 0x2f, 0xe8, 0xe5, 0x2d, 0x8f, 0xbc, 0x2f, 0xff,
|
||||
0xd5, 0xa3, 0x03, 0x14, 0x62, 0x29, 0xb6, 0x32, 0xbb, 0xec, 0xbf, 0xca, 0xec, 0x78, 0xb7, 0x3c,
|
||||
0xf2, 0x1b, 0xf2, 0x2f, 0x1e, 0xea, 0x5b, 0xc1, 0xf5, 0x37, 0xfd, 0x9e, 0xbe, 0x25, 0x4e, 0x72,
|
||||
0x95, 0x5e, 0x72, 0x4e, 0x52, 0xd6, 0xec, 0x07, 0x00, 0x45, 0xb4, 0x49, 0x4a, 0xa1, 0x97, 0xd1,
|
||||
0x79, 0xd5, 0x80, 0xd4, 0xbd, 0x4d, 0x1d, 0xa1, 0x49, 0x35, 0xd0, 0xb5, 0xe2, 0xbc, 0xdc, 0x5c,
|
||||
0x67, 0x35, 0x6a, 0x1c, 0x0c, 0xea, 0xa6, 0x14, 0xfd, 0xaf, 0x08, 0xfa, 0x5f, 0x22, 0x97, 0x6d,
|
||||
0xfa, 0xbb, 0x5f, 0xd8, 0x51, 0xe6, 0x4b, 0xf2, 0x29, 0xf4, 0x9e, 0x24, 0xc9, 0xf3, 0x59, 0x6a,
|
||||
0x12, 0x1a, 0x6e, 0xdc, 0x84, 0x91, 0xee, 0xa0, 0x74, 0x28, 0x7a, 0x5d, 0x50, 0xbe, 0x4c, 0x2e,
|
||||
0xb9, 0x94, 0x8b, 0xd8, 0xf7, 0x25, 0x09, 0x60, 0xdd, 0xd8, 0x3b, 0x73, 0x90, 0x81, 0x4b, 0xc7,
|
||||
0x0e, 0x41, 0x2b, 0x6b, 0x38, 0x1e, 0x88, 0x59, 0x23, 0xd7, 0x34, 0x6f, 0x79, 0xe4, 0x00, 0xba,
|
||||
0x0f, 0xd8, 0x28, 0x19, 0x33, 0x15, 0xea, 0x6c, 0x14, 0x3b, 0x37, 0x31, 0xd2, 0xa0, 0xe7, 0x00,
|
||||
0x5d, 0x0d, 0x90, 0x06, 0xf3, 0x8c, 0x7d, 0xbe, 0xfb, 0x85, 0x0a, 0xa2, 0x5e, 0x6a, 0x0d, 0xa0,
|
||||
0x03, 0x3f, 0x47, 0x03, 0x94, 0x22, 0x45, 0x47, 0x03, 0x54, 0x22, 0x45, 0x47, 0x03, 0xe8, 0xc0,
|
||||
0x93, 0x44, 0x18, 0x3f, 0x96, 0x82, 0x4b, 0x63, 0x35, 0xcf, 0x0b, 0x49, 0x07, 0xd7, 0xce, 0x47,
|
||||
0x70, 0x57, 0xbb, 0xe1, 0xae, 0x76, 0x08, 0xbd, 0x07, 0x4c, 0x32, 0x4b, 0x56, 0x1a, 0x06, 0xae,
|
||||
0x4a, 0xb1, 0xab, 0x12, 0x65, 0x75, 0x23, 0xe6, 0x5c, 0x15, 0x2f, 0xd2, 0xfc, 0xe4, 0x3b, 0xd0,
|
||||
0x79, 0xcc, 0xb8, 0x2e, 0x2d, 0x18, 0xdf, 0xa3, 0x54, 0x6b, 0x18, 0xd4, 0x54, 0x26, 0xe8, 0x35,
|
||||
0x41, 0x6d, 0x40, 0xfa, 0x86, 0xda, 0x2e, 0x1b, 0x4f, 0x98, 0x7c, 0xfc, 0xc3, 0x70, 0xfc, 0x92,
|
||||
0xfc, 0xaa, 0x20, 0x6e, 0xaa, 0x91, 0x5b, 0x56, 0x46, 0xda, 0x26, 0xbe, 0x5a, 0x82, 0xd7, 0x51,
|
||||
0x8e, 0x93, 0x31, 0xb3, 0x8c, 0x5d, 0x0c, 0x1d, 0xab, 0xf4, 0x6c, 0x1e, 0x54, 0xb5, 0x9e, 0x6d,
|
||||
0x1e, 0x54, 0x4d, 0xa5, 0x9a, 0xee, 0x88, 0x75, 0x28, 0xb9, 0x56, 0xac, 0x23, 0xab, 0xd3, 0xc5,
|
||||
0x4a, 0xbb, 0x5f, 0x04, 0x53, 0xfe, 0x92, 0x7c, 0x26, 0xda, 0xa8, 0xed, 0xf2, 0x49, 0xe1, 0xfb,
|
||||
0x94, 0x2b, 0x2d, 0x86, 0x59, 0xd6, 0x94, 0xeb, 0x0f, 0xc9, 0xa5, 0x84, 0x4d, 0xfc, 0x3a, 0xc0,
|
||||
0x21, 0x4f, 0xd2, 0x07, 0x01, 0x9b, 0x26, 0x71, 0xa1, 0xc9, 0x8a, 0x12, 0x41, 0xa1, 0xc9, 0xac,
|
||||
0x3a, 0x01, 0xf9, 0xcc, 0xf2, 0x3e, 0x9d, 0xea, 0x93, 0x16, 0xae, 0x73, 0xab, 0x08, 0x86, 0x21,
|
||||
0x35, 0x95, 0x04, 0xed, 0x88, 0xca, 0xf4, 0xa8, 0xe5, 0x88, 0x3a, 0xf9, 0x55, 0xcb, 0x11, 0x75,
|
||||
0xf3, 0xa8, 0xe8, 0x88, 0x16, 0x79, 0x10, 0xe3, 0x88, 0x56, 0x52, 0x2c, 0x46, 0x87, 0xd6, 0x24,
|
||||
0x4d, 0x0e, 0xa0, 0x5d, 0x04, 0xe3, 0x7a, 0xa1, 0x72, 0xe8, 0x6e, 0x8c, 0x55, 0x25, 0x46, 0xa6,
|
||||
0x6b, 0x82, 0xcf, 0x40, 0x5a, 0xc8, 0x67, 0x51, 0x7a, 0x7f, 0x06, 0x20, 0x4f, 0xf7, 0x08, 0x47,
|
||||
0x16, 0x49, 0x27, 0x14, 0xb6, 0x49, 0xba, 0x31, 0xa7, 0xf6, 0x65, 0xa8, 0x21, 0xf9, 0xbe, 0x77,
|
||||
0xe3, 0x68, 0x49, 0xfc, 0x75, 0xf9, 0x6b, 0xff, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x72, 0xba, 0xc2,
|
||||
0xce, 0xec, 0x3c, 0x00, 0x00,
|
||||
}
|
||||
|
@ -170,7 +170,7 @@ func request_Lightning_GetInfo_0(ctx context.Context, marshaler runtime.Marshale
|
||||
}
|
||||
|
||||
func request_Lightning_PendingChannels_0(ctx context.Context, marshaler runtime.Marshaler, client LightningClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||
var protoReq PendingChannelRequest
|
||||
var protoReq PendingChannelsRequest
|
||||
var metadata runtime.ServerMetadata
|
||||
|
||||
msg, err := client.PendingChannels(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||||
|
@ -202,7 +202,7 @@ service Lightning {
|
||||
workflow and is waiting for confirmations for the funding txn, or is in the
|
||||
process of closure, either initiated cooperatively or non-cooperatively.
|
||||
*/
|
||||
rpc PendingChannels (PendingChannelRequest) returns (PendingChannelResponse) {
|
||||
rpc PendingChannels (PendingChannelsRequest) returns (PendingChannelsResponse) {
|
||||
option (google.api.http) = {
|
||||
get: "/v1/channels/pending"
|
||||
};
|
||||
@ -913,8 +913,8 @@ message PendingHTLC {
|
||||
uint32 stage = 6 [ json_name = "stage" ];
|
||||
}
|
||||
|
||||
message PendingChannelRequest {}
|
||||
message PendingChannelResponse {
|
||||
message PendingChannelsRequest {}
|
||||
message PendingChannelsResponse {
|
||||
message PendingChannel {
|
||||
string remote_node_pub = 1 [ json_name = "remote_node_pub" ];
|
||||
string channel_point = 2 [ json_name = "channel_point" ];
|
||||
|
@ -109,7 +109,7 @@
|
||||
"200": {
|
||||
"description": "",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/lnrpcPendingChannelResponse"
|
||||
"$ref": "#/definitions/lnrpcPendingChannelsResponse"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -696,11 +696,11 @@
|
||||
}
|
||||
},
|
||||
"definitions": {
|
||||
"PendingChannelResponseClosedChannel": {
|
||||
"PendingChannelsResponseClosedChannel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"channel": {
|
||||
"$ref": "#/definitions/PendingChannelResponsePendingChannel",
|
||||
"$ref": "#/definitions/PendingChannelsResponsePendingChannel",
|
||||
"title": "/ The pending channel to be closed"
|
||||
},
|
||||
"closing_txid": {
|
||||
@ -709,11 +709,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"PendingChannelResponseForceClosedChannel": {
|
||||
"PendingChannelsResponseForceClosedChannel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"channel": {
|
||||
"$ref": "#/definitions/PendingChannelResponsePendingChannel",
|
||||
"$ref": "#/definitions/PendingChannelsResponsePendingChannel",
|
||||
"title": "/ The pending channel to be force closed"
|
||||
},
|
||||
"closing_txid": {
|
||||
@ -748,7 +748,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"PendingChannelResponsePendingChannel": {
|
||||
"PendingChannelsResponsePendingChannel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"remote_node_pub": {
|
||||
@ -771,11 +771,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"PendingChannelResponsePendingOpenChannel": {
|
||||
"PendingChannelsResponsePendingOpenChannel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"channel": {
|
||||
"$ref": "#/definitions/PendingChannelResponsePendingChannel",
|
||||
"$ref": "#/definitions/PendingChannelsResponsePendingChannel",
|
||||
"title": "/ The pending channel"
|
||||
},
|
||||
"confirmation_height": {
|
||||
@ -1746,7 +1746,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcPendingChannelResponse": {
|
||||
"lnrpcPendingChannelsResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"total_limbo_balance": {
|
||||
@ -1757,21 +1757,21 @@
|
||||
"pending_open_channels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/PendingChannelResponsePendingOpenChannel"
|
||||
"$ref": "#/definitions/PendingChannelsResponsePendingOpenChannel"
|
||||
},
|
||||
"title": "/ Channels pending opening"
|
||||
},
|
||||
"pending_closing_channels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/PendingChannelResponseClosedChannel"
|
||||
"$ref": "#/definitions/PendingChannelsResponseClosedChannel"
|
||||
},
|
||||
"title": "/ Channels pending closing"
|
||||
},
|
||||
"pending_force_closing_channels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/PendingChannelResponseForceClosedChannel"
|
||||
"$ref": "#/definitions/PendingChannelsResponseForceClosedChannel"
|
||||
},
|
||||
"title": "/ Channels pending force closing"
|
||||
}
|
||||
|
16
rpcserver.go
16
rpcserver.go
@ -1257,7 +1257,7 @@ func (r *rpcServer) ChannelBalance(ctx context.Context,
|
||||
// workflow and is waiting for confirmations for the funding txn, or is in the
|
||||
// process of closure, either initiated cooperatively or non-cooperatively.
|
||||
func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
in *lnrpc.PendingChannelRequest) (*lnrpc.PendingChannelResponse, error) {
|
||||
in *lnrpc.PendingChannelsRequest) (*lnrpc.PendingChannelsResponse, error) {
|
||||
|
||||
// Check macaroon to see if this is allowed.
|
||||
if r.authSvc != nil {
|
||||
@ -1274,7 +1274,7 @@ func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
|
||||
rpcsLog.Debugf("[pendingchannels]")
|
||||
|
||||
resp := &lnrpc.PendingChannelResponse{}
|
||||
resp := &lnrpc.PendingChannelsResponse{}
|
||||
|
||||
// First, we'll populate the response with all the channels that are
|
||||
// soon to be opened. We can easily fetch this data from the database
|
||||
@ -1283,7 +1283,7 @@ func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
resp.PendingOpenChannels = make([]*lnrpc.PendingChannelResponse_PendingOpenChannel,
|
||||
resp.PendingOpenChannels = make([]*lnrpc.PendingChannelsResponse_PendingOpenChannel,
|
||||
len(pendingOpenChannels))
|
||||
for i, pendingChan := range pendingOpenChannels {
|
||||
pub := pendingChan.IdentityPub.SerializeCompressed()
|
||||
@ -1302,8 +1302,8 @@ func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
|
||||
targetConfHeight := pendingChan.FundingBroadcastHeight + uint32(pendingChan.NumConfsRequired)
|
||||
blocksTillOpen := int32(targetConfHeight) - bestHeight
|
||||
resp.PendingOpenChannels[i] = &lnrpc.PendingChannelResponse_PendingOpenChannel{
|
||||
Channel: &lnrpc.PendingChannelResponse_PendingChannel{
|
||||
resp.PendingOpenChannels[i] = &lnrpc.PendingChannelsResponse_PendingOpenChannel{
|
||||
Channel: &lnrpc.PendingChannelsResponse_PendingChannel{
|
||||
RemoteNodePub: hex.EncodeToString(pub),
|
||||
ChannelPoint: pendingChan.FundingOutpoint.String(),
|
||||
Capacity: int64(pendingChan.Capacity),
|
||||
@ -1334,7 +1334,7 @@ func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
// needed regardless of how this channel was closed.
|
||||
pub := pendingClose.RemotePub.SerializeCompressed()
|
||||
chanPoint := pendingClose.ChanPoint
|
||||
channel := &lnrpc.PendingChannelResponse_PendingChannel{
|
||||
channel := &lnrpc.PendingChannelsResponse_PendingChannel{
|
||||
RemoteNodePub: hex.EncodeToString(pub),
|
||||
ChannelPoint: chanPoint.String(),
|
||||
Capacity: int64(pendingClose.Capacity),
|
||||
@ -1350,7 +1350,7 @@ func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
case channeldb.CooperativeClose:
|
||||
resp.PendingClosingChannels = append(
|
||||
resp.PendingClosingChannels,
|
||||
&lnrpc.PendingChannelResponse_ClosedChannel{
|
||||
&lnrpc.PendingChannelsResponse_ClosedChannel{
|
||||
Channel: channel,
|
||||
ClosingTxid: closeTXID,
|
||||
},
|
||||
@ -1361,7 +1361,7 @@ func (r *rpcServer) PendingChannels(ctx context.Context,
|
||||
// If the channel was force closed, then we'll need to query
|
||||
// the utxoNursery for additional information.
|
||||
case channeldb.ForceClose:
|
||||
forceClose := &lnrpc.PendingChannelResponse_ForceClosedChannel{
|
||||
forceClose := &lnrpc.PendingChannelsResponse_ForceClosedChannel{
|
||||
Channel: channel,
|
||||
ClosingTxid: closeTXID,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user