diff options
author | Artur Makutunowicz <arma@linkedin.com> | 2019-01-17 10:28:23 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2019-01-26 12:40:45 +0900 |
commit | 192480fc7127ce0f266407cecceb00703807bbca (patch) | |
tree | 7f45576e8a12259db5d3a257180db38849abc932 /api/attribute.pb.go | |
parent | 526bd67f5de4cf361aaab2d10456e5113899ca54 (diff) |
Add experimental BGP-LS feature
Diffstat (limited to 'api/attribute.pb.go')
-rw-r--r-- | api/attribute.pb.go | 1121 |
1 files changed, 960 insertions, 161 deletions
diff --git a/api/attribute.pb.go b/api/attribute.pb.go index 48d820e9..fd8b4805 100644 --- a/api/attribute.pb.go +++ b/api/attribute.pb.go @@ -1,6 +1,5 @@ -// Code generated by protoc-gen-go. +// Code generated by protoc-gen-go. DO NOT EDIT. // source: attribute.proto -// DO NOT EDIT! package gobgpapi @@ -14,6 +13,37 @@ var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf +// Based om RFC 7752, Table 1. +type LsNLRIType int32 + +const ( + LsNLRIType_LS_NLRI_UNKNOWN LsNLRIType = 0 + LsNLRIType_LS_NLRI_NODE LsNLRIType = 1 + LsNLRIType_LS_NLRI_LINK LsNLRIType = 2 + LsNLRIType_LS_NLRI_PREFIX_V4 LsNLRIType = 3 + LsNLRIType_LS_NLRI_PREFIX_V6 LsNLRIType = 4 +) + +var LsNLRIType_name = map[int32]string{ + 0: "LS_NLRI_UNKNOWN", + 1: "LS_NLRI_NODE", + 2: "LS_NLRI_LINK", + 3: "LS_NLRI_PREFIX_V4", + 4: "LS_NLRI_PREFIX_V6", +} +var LsNLRIType_value = map[string]int32{ + "LS_NLRI_UNKNOWN": 0, + "LS_NLRI_NODE": 1, + "LS_NLRI_LINK": 2, + "LS_NLRI_PREFIX_V4": 3, + "LS_NLRI_PREFIX_V6": 4, +} + +func (x LsNLRIType) String() string { + return proto.EnumName(LsNLRIType_name, int32(x)) +} +func (LsNLRIType) EnumDescriptor() ([]byte, []int) { return fileDescriptor1, []int{0} } + type OriginAttribute struct { Origin uint32 `protobuf:"varint,1,opt,name=origin" json:"origin,omitempty"` } @@ -909,6 +939,261 @@ func (m *OpaqueNLRI) GetValue() []byte { return nil } +type LsNodeDescriptor struct { + Asn uint32 `protobuf:"varint,1,opt,name=asn" json:"asn,omitempty"` + BgpLsId uint32 `protobuf:"varint,2,opt,name=bgp_ls_id,json=bgpLsId" json:"bgp_ls_id,omitempty"` + OspfAreaId uint32 `protobuf:"varint,3,opt,name=ospf_area_id,json=ospfAreaId" json:"ospf_area_id,omitempty"` + Pseudonode bool `protobuf:"varint,4,opt,name=pseudonode" json:"pseudonode,omitempty"` + IgpRouterId string `protobuf:"bytes,5,opt,name=igp_router_id,json=igpRouterId" json:"igp_router_id,omitempty"` +} + +func (m *LsNodeDescriptor) Reset() { *m = LsNodeDescriptor{} } +func (m *LsNodeDescriptor) String() string { return proto.CompactTextString(m) } +func (*LsNodeDescriptor) ProtoMessage() {} +func (*LsNodeDescriptor) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{32} } + +func (m *LsNodeDescriptor) GetAsn() uint32 { + if m != nil { + return m.Asn + } + return 0 +} + +func (m *LsNodeDescriptor) GetBgpLsId() uint32 { + if m != nil { + return m.BgpLsId + } + return 0 +} + +func (m *LsNodeDescriptor) GetOspfAreaId() uint32 { + if m != nil { + return m.OspfAreaId + } + return 0 +} + +func (m *LsNodeDescriptor) GetPseudonode() bool { + if m != nil { + return m.Pseudonode + } + return false +} + +func (m *LsNodeDescriptor) GetIgpRouterId() string { + if m != nil { + return m.IgpRouterId + } + return "" +} + +type LsLinkDescriptor struct { + LinkLocalId uint32 `protobuf:"varint,1,opt,name=link_local_id,json=linkLocalId" json:"link_local_id,omitempty"` + LinkRemoteId uint32 `protobuf:"varint,2,opt,name=link_remote_id,json=linkRemoteId" json:"link_remote_id,omitempty"` + InterfaceAddrIpv4 string `protobuf:"bytes,3,opt,name=interface_addr_ipv4,json=interfaceAddrIpv4" json:"interface_addr_ipv4,omitempty"` + NeighborAddrIpv4 string `protobuf:"bytes,4,opt,name=neighbor_addr_ipv4,json=neighborAddrIpv4" json:"neighbor_addr_ipv4,omitempty"` + InterfaceAddrIpv6 string `protobuf:"bytes,5,opt,name=interface_addr_ipv6,json=interfaceAddrIpv6" json:"interface_addr_ipv6,omitempty"` + NeighborAddrIpv6 string `protobuf:"bytes,6,opt,name=neighbor_addr_ipv6,json=neighborAddrIpv6" json:"neighbor_addr_ipv6,omitempty"` +} + +func (m *LsLinkDescriptor) Reset() { *m = LsLinkDescriptor{} } +func (m *LsLinkDescriptor) String() string { return proto.CompactTextString(m) } +func (*LsLinkDescriptor) ProtoMessage() {} +func (*LsLinkDescriptor) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{33} } + +func (m *LsLinkDescriptor) GetLinkLocalId() uint32 { + if m != nil { + return m.LinkLocalId + } + return 0 +} + +func (m *LsLinkDescriptor) GetLinkRemoteId() uint32 { + if m != nil { + return m.LinkRemoteId + } + return 0 +} + +func (m *LsLinkDescriptor) GetInterfaceAddrIpv4() string { + if m != nil { + return m.InterfaceAddrIpv4 + } + return "" +} + +func (m *LsLinkDescriptor) GetNeighborAddrIpv4() string { + if m != nil { + return m.NeighborAddrIpv4 + } + return "" +} + +func (m *LsLinkDescriptor) GetInterfaceAddrIpv6() string { + if m != nil { + return m.InterfaceAddrIpv6 + } + return "" +} + +func (m *LsLinkDescriptor) GetNeighborAddrIpv6() string { + if m != nil { + return m.NeighborAddrIpv6 + } + return "" +} + +type LsPrefixDescriptor struct { + IpReachability []string `protobuf:"bytes,1,rep,name=ip_reachability,json=ipReachability" json:"ip_reachability,omitempty"` + OspfRouteType string `protobuf:"bytes,2,opt,name=ospf_route_type,json=ospfRouteType" json:"ospf_route_type,omitempty"` +} + +func (m *LsPrefixDescriptor) Reset() { *m = LsPrefixDescriptor{} } +func (m *LsPrefixDescriptor) String() string { return proto.CompactTextString(m) } +func (*LsPrefixDescriptor) ProtoMessage() {} +func (*LsPrefixDescriptor) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{34} } + +func (m *LsPrefixDescriptor) GetIpReachability() []string { + if m != nil { + return m.IpReachability + } + return nil +} + +func (m *LsPrefixDescriptor) GetOspfRouteType() string { + if m != nil { + return m.OspfRouteType + } + return "" +} + +type LsNodeNLRI struct { + LocalNode *LsNodeDescriptor `protobuf:"bytes,1,opt,name=local_node,json=localNode" json:"local_node,omitempty"` +} + +func (m *LsNodeNLRI) Reset() { *m = LsNodeNLRI{} } +func (m *LsNodeNLRI) String() string { return proto.CompactTextString(m) } +func (*LsNodeNLRI) ProtoMessage() {} +func (*LsNodeNLRI) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{35} } + +func (m *LsNodeNLRI) GetLocalNode() *LsNodeDescriptor { + if m != nil { + return m.LocalNode + } + return nil +} + +type LsLinkNLRI struct { + LocalNode *LsNodeDescriptor `protobuf:"bytes,1,opt,name=local_node,json=localNode" json:"local_node,omitempty"` + RemoteNode *LsNodeDescriptor `protobuf:"bytes,2,opt,name=remote_node,json=remoteNode" json:"remote_node,omitempty"` + LinkDescriptor *LsLinkDescriptor `protobuf:"bytes,3,opt,name=link_descriptor,json=linkDescriptor" json:"link_descriptor,omitempty"` +} + +func (m *LsLinkNLRI) Reset() { *m = LsLinkNLRI{} } +func (m *LsLinkNLRI) String() string { return proto.CompactTextString(m) } +func (*LsLinkNLRI) ProtoMessage() {} +func (*LsLinkNLRI) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{36} } + +func (m *LsLinkNLRI) GetLocalNode() *LsNodeDescriptor { + if m != nil { + return m.LocalNode + } + return nil +} + +func (m *LsLinkNLRI) GetRemoteNode() *LsNodeDescriptor { + if m != nil { + return m.RemoteNode + } + return nil +} + +func (m *LsLinkNLRI) GetLinkDescriptor() *LsLinkDescriptor { + if m != nil { + return m.LinkDescriptor + } + return nil +} + +type LsPrefixV4NLRI struct { + LocalNode *LsNodeDescriptor `protobuf:"bytes,1,opt,name=local_node,json=localNode" json:"local_node,omitempty"` + PrefixDescriptor *LsPrefixDescriptor `protobuf:"bytes,2,opt,name=prefix_descriptor,json=prefixDescriptor" json:"prefix_descriptor,omitempty"` +} + +func (m *LsPrefixV4NLRI) Reset() { *m = LsPrefixV4NLRI{} } +func (m *LsPrefixV4NLRI) String() string { return proto.CompactTextString(m) } +func (*LsPrefixV4NLRI) ProtoMessage() {} +func (*LsPrefixV4NLRI) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{37} } + +func (m *LsPrefixV4NLRI) GetLocalNode() *LsNodeDescriptor { + if m != nil { + return m.LocalNode + } + return nil +} + +func (m *LsPrefixV4NLRI) GetPrefixDescriptor() *LsPrefixDescriptor { + if m != nil { + return m.PrefixDescriptor + } + return nil +} + +type LsPrefixV6NLRI struct { + LocalNode *LsNodeDescriptor `protobuf:"bytes,1,opt,name=local_node,json=localNode" json:"local_node,omitempty"` + PrefixDescriptor *LsPrefixDescriptor `protobuf:"bytes,2,opt,name=prefix_descriptor,json=prefixDescriptor" json:"prefix_descriptor,omitempty"` +} + +func (m *LsPrefixV6NLRI) Reset() { *m = LsPrefixV6NLRI{} } +func (m *LsPrefixV6NLRI) String() string { return proto.CompactTextString(m) } +func (*LsPrefixV6NLRI) ProtoMessage() {} +func (*LsPrefixV6NLRI) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{38} } + +func (m *LsPrefixV6NLRI) GetLocalNode() *LsNodeDescriptor { + if m != nil { + return m.LocalNode + } + return nil +} + +func (m *LsPrefixV6NLRI) GetPrefixDescriptor() *LsPrefixDescriptor { + if m != nil { + return m.PrefixDescriptor + } + return nil +} + +// LsAddrPrefix represents the NLRI for: +// - AFI=16388, SAFI=71 +type LsAddrPrefix struct { + Type LsNLRIType `protobuf:"varint,1,opt,name=type,enum=gobgpapi.LsNLRIType" json:"type,omitempty"` + // One of: + // - LsNodeNLRI + // - LsLinkNLRI + // - LsPrefixV4NLRI + // - LsPrefixV6NLRI + Nlri *google_protobuf.Any `protobuf:"bytes,2,opt,name=nlri" json:"nlri,omitempty"` +} + +func (m *LsAddrPrefix) Reset() { *m = LsAddrPrefix{} } +func (m *LsAddrPrefix) String() string { return proto.CompactTextString(m) } +func (*LsAddrPrefix) ProtoMessage() {} +func (*LsAddrPrefix) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{39} } + +func (m *LsAddrPrefix) GetType() LsNLRIType { + if m != nil { + return m.Type + } + return LsNLRIType_LS_NLRI_UNKNOWN +} + +func (m *LsAddrPrefix) GetNlri() *google_protobuf.Any { + if m != nil { + return m.Nlri + } + return nil +} + type MpReachNLRIAttribute struct { Family *Family `protobuf:"bytes,1,opt,name=family" json:"family,omitempty"` NextHops []string `protobuf:"bytes,2,rep,name=next_hops,json=nextHops" json:"next_hops,omitempty"` @@ -926,13 +1211,14 @@ type MpReachNLRIAttribute struct { // - FlowSpecNLRI // - VPNFlowSpecNLRI // - OpaqueNLRI + // - LsAddrPrefix Nlris []*google_protobuf.Any `protobuf:"bytes,3,rep,name=nlris" json:"nlris,omitempty"` } func (m *MpReachNLRIAttribute) Reset() { *m = MpReachNLRIAttribute{} } func (m *MpReachNLRIAttribute) String() string { return proto.CompactTextString(m) } func (*MpReachNLRIAttribute) ProtoMessage() {} -func (*MpReachNLRIAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{32} } +func (*MpReachNLRIAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{40} } func (m *MpReachNLRIAttribute) GetFamily() *Family { if m != nil { @@ -964,7 +1250,7 @@ type MpUnreachNLRIAttribute struct { func (m *MpUnreachNLRIAttribute) Reset() { *m = MpUnreachNLRIAttribute{} } func (m *MpUnreachNLRIAttribute) String() string { return proto.CompactTextString(m) } func (*MpUnreachNLRIAttribute) ProtoMessage() {} -func (*MpUnreachNLRIAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{33} } +func (*MpUnreachNLRIAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{41} } func (m *MpUnreachNLRIAttribute) GetFamily() *Family { if m != nil { @@ -990,7 +1276,7 @@ type TwoOctetAsSpecificExtended struct { func (m *TwoOctetAsSpecificExtended) Reset() { *m = TwoOctetAsSpecificExtended{} } func (m *TwoOctetAsSpecificExtended) String() string { return proto.CompactTextString(m) } func (*TwoOctetAsSpecificExtended) ProtoMessage() {} -func (*TwoOctetAsSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{34} } +func (*TwoOctetAsSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{42} } func (m *TwoOctetAsSpecificExtended) GetIsTransitive() bool { if m != nil { @@ -1030,7 +1316,7 @@ type IPv4AddressSpecificExtended struct { func (m *IPv4AddressSpecificExtended) Reset() { *m = IPv4AddressSpecificExtended{} } func (m *IPv4AddressSpecificExtended) String() string { return proto.CompactTextString(m) } func (*IPv4AddressSpecificExtended) ProtoMessage() {} -func (*IPv4AddressSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{35} } +func (*IPv4AddressSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{43} } func (m *IPv4AddressSpecificExtended) GetIsTransitive() bool { if m != nil { @@ -1070,7 +1356,7 @@ type FourOctetAsSpecificExtended struct { func (m *FourOctetAsSpecificExtended) Reset() { *m = FourOctetAsSpecificExtended{} } func (m *FourOctetAsSpecificExtended) String() string { return proto.CompactTextString(m) } func (*FourOctetAsSpecificExtended) ProtoMessage() {} -func (*FourOctetAsSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{36} } +func (*FourOctetAsSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{44} } func (m *FourOctetAsSpecificExtended) GetIsTransitive() bool { if m != nil { @@ -1107,7 +1393,7 @@ type ValidationExtended struct { func (m *ValidationExtended) Reset() { *m = ValidationExtended{} } func (m *ValidationExtended) String() string { return proto.CompactTextString(m) } func (*ValidationExtended) ProtoMessage() {} -func (*ValidationExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{37} } +func (*ValidationExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{45} } func (m *ValidationExtended) GetState() uint32 { if m != nil { @@ -1123,7 +1409,7 @@ type ColorExtended struct { func (m *ColorExtended) Reset() { *m = ColorExtended{} } func (m *ColorExtended) String() string { return proto.CompactTextString(m) } func (*ColorExtended) ProtoMessage() {} -func (*ColorExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{38} } +func (*ColorExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{46} } func (m *ColorExtended) GetColor() uint32 { if m != nil { @@ -1139,7 +1425,7 @@ type EncapExtended struct { func (m *EncapExtended) Reset() { *m = EncapExtended{} } func (m *EncapExtended) String() string { return proto.CompactTextString(m) } func (*EncapExtended) ProtoMessage() {} -func (*EncapExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{39} } +func (*EncapExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{47} } func (m *EncapExtended) GetTunnelType() uint32 { if m != nil { @@ -1154,7 +1440,7 @@ type DefaultGatewayExtended struct { func (m *DefaultGatewayExtended) Reset() { *m = DefaultGatewayExtended{} } func (m *DefaultGatewayExtended) String() string { return proto.CompactTextString(m) } func (*DefaultGatewayExtended) ProtoMessage() {} -func (*DefaultGatewayExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{40} } +func (*DefaultGatewayExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{48} } type OpaqueExtended struct { IsTransitive bool `protobuf:"varint,1,opt,name=is_transitive,json=isTransitive" json:"is_transitive,omitempty"` @@ -1164,7 +1450,7 @@ type OpaqueExtended struct { func (m *OpaqueExtended) Reset() { *m = OpaqueExtended{} } func (m *OpaqueExtended) String() string { return proto.CompactTextString(m) } func (*OpaqueExtended) ProtoMessage() {} -func (*OpaqueExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{41} } +func (*OpaqueExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{49} } func (m *OpaqueExtended) GetIsTransitive() bool { if m != nil { @@ -1188,7 +1474,7 @@ type ESILabelExtended struct { func (m *ESILabelExtended) Reset() { *m = ESILabelExtended{} } func (m *ESILabelExtended) String() string { return proto.CompactTextString(m) } func (*ESILabelExtended) ProtoMessage() {} -func (*ESILabelExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{42} } +func (*ESILabelExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{50} } func (m *ESILabelExtended) GetIsSingleActive() bool { if m != nil { @@ -1211,7 +1497,7 @@ type ESImportRouteTarget struct { func (m *ESImportRouteTarget) Reset() { *m = ESImportRouteTarget{} } func (m *ESImportRouteTarget) String() string { return proto.CompactTextString(m) } func (*ESImportRouteTarget) ProtoMessage() {} -func (*ESImportRouteTarget) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{43} } +func (*ESImportRouteTarget) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{51} } func (m *ESImportRouteTarget) GetEsImport() string { if m != nil { @@ -1228,7 +1514,7 @@ type MacMobilityExtended struct { func (m *MacMobilityExtended) Reset() { *m = MacMobilityExtended{} } func (m *MacMobilityExtended) String() string { return proto.CompactTextString(m) } func (*MacMobilityExtended) ProtoMessage() {} -func (*MacMobilityExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{44} } +func (*MacMobilityExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{52} } func (m *MacMobilityExtended) GetIsSticky() bool { if m != nil { @@ -1251,7 +1537,7 @@ type RouterMacExtended struct { func (m *RouterMacExtended) Reset() { *m = RouterMacExtended{} } func (m *RouterMacExtended) String() string { return proto.CompactTextString(m) } func (*RouterMacExtended) ProtoMessage() {} -func (*RouterMacExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{45} } +func (*RouterMacExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{53} } func (m *RouterMacExtended) GetMac() string { if m != nil { @@ -1268,7 +1554,7 @@ type TrafficRateExtended struct { func (m *TrafficRateExtended) Reset() { *m = TrafficRateExtended{} } func (m *TrafficRateExtended) String() string { return proto.CompactTextString(m) } func (*TrafficRateExtended) ProtoMessage() {} -func (*TrafficRateExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{46} } +func (*TrafficRateExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{54} } func (m *TrafficRateExtended) GetAs() uint32 { if m != nil { @@ -1292,7 +1578,7 @@ type TrafficActionExtended struct { func (m *TrafficActionExtended) Reset() { *m = TrafficActionExtended{} } func (m *TrafficActionExtended) String() string { return proto.CompactTextString(m) } func (*TrafficActionExtended) ProtoMessage() {} -func (*TrafficActionExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{47} } +func (*TrafficActionExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{55} } func (m *TrafficActionExtended) GetTerminal() bool { if m != nil { @@ -1317,7 +1603,7 @@ func (m *RedirectTwoOctetAsSpecificExtended) Reset() { *m = RedirectTwoO func (m *RedirectTwoOctetAsSpecificExtended) String() string { return proto.CompactTextString(m) } func (*RedirectTwoOctetAsSpecificExtended) ProtoMessage() {} func (*RedirectTwoOctetAsSpecificExtended) Descriptor() ([]byte, []int) { - return fileDescriptor1, []int{48} + return fileDescriptor1, []int{56} } func (m *RedirectTwoOctetAsSpecificExtended) GetAs() uint32 { @@ -1343,7 +1629,7 @@ func (m *RedirectIPv4AddressSpecificExtended) Reset() { *m = RedirectIPv func (m *RedirectIPv4AddressSpecificExtended) String() string { return proto.CompactTextString(m) } func (*RedirectIPv4AddressSpecificExtended) ProtoMessage() {} func (*RedirectIPv4AddressSpecificExtended) Descriptor() ([]byte, []int) { - return fileDescriptor1, []int{49} + return fileDescriptor1, []int{57} } func (m *RedirectIPv4AddressSpecificExtended) GetAddress() string { @@ -1369,7 +1655,7 @@ func (m *RedirectFourOctetAsSpecificExtended) Reset() { *m = RedirectFou func (m *RedirectFourOctetAsSpecificExtended) String() string { return proto.CompactTextString(m) } func (*RedirectFourOctetAsSpecificExtended) ProtoMessage() {} func (*RedirectFourOctetAsSpecificExtended) Descriptor() ([]byte, []int) { - return fileDescriptor1, []int{50} + return fileDescriptor1, []int{58} } func (m *RedirectFourOctetAsSpecificExtended) GetAs() uint32 { @@ -1393,7 +1679,7 @@ type TrafficRemarkExtended struct { func (m *TrafficRemarkExtended) Reset() { *m = TrafficRemarkExtended{} } func (m *TrafficRemarkExtended) String() string { return proto.CompactTextString(m) } func (*TrafficRemarkExtended) ProtoMessage() {} -func (*TrafficRemarkExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{51} } +func (*TrafficRemarkExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{59} } func (m *TrafficRemarkExtended) GetDscp() uint32 { if m != nil { @@ -1410,7 +1696,7 @@ type UnknownExtended struct { func (m *UnknownExtended) Reset() { *m = UnknownExtended{} } func (m *UnknownExtended) String() string { return proto.CompactTextString(m) } func (*UnknownExtended) ProtoMessage() {} -func (*UnknownExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{52} } +func (*UnknownExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{60} } func (m *UnknownExtended) GetType() uint32 { if m != nil { @@ -1448,7 +1734,7 @@ type ExtendedCommunitiesAttribute struct { func (m *ExtendedCommunitiesAttribute) Reset() { *m = ExtendedCommunitiesAttribute{} } func (m *ExtendedCommunitiesAttribute) String() string { return proto.CompactTextString(m) } func (*ExtendedCommunitiesAttribute) ProtoMessage() {} -func (*ExtendedCommunitiesAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{53} } +func (*ExtendedCommunitiesAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{61} } func (m *ExtendedCommunitiesAttribute) GetCommunities() []*google_protobuf.Any { if m != nil { @@ -1464,7 +1750,7 @@ type As4PathAttribute struct { func (m *As4PathAttribute) Reset() { *m = As4PathAttribute{} } func (m *As4PathAttribute) String() string { return proto.CompactTextString(m) } func (*As4PathAttribute) ProtoMessage() {} -func (*As4PathAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{54} } +func (*As4PathAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{62} } func (m *As4PathAttribute) GetSegments() []*AsSegment { if m != nil { @@ -1481,7 +1767,7 @@ type As4AggregatorAttribute struct { func (m *As4AggregatorAttribute) Reset() { *m = As4AggregatorAttribute{} } func (m *As4AggregatorAttribute) String() string { return proto.CompactTextString(m) } func (*As4AggregatorAttribute) ProtoMessage() {} -func (*As4AggregatorAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{55} } +func (*As4AggregatorAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{63} } func (m *As4AggregatorAttribute) GetAs() uint32 { if m != nil { @@ -1507,7 +1793,7 @@ type PmsiTunnelAttribute struct { func (m *PmsiTunnelAttribute) Reset() { *m = PmsiTunnelAttribute{} } func (m *PmsiTunnelAttribute) String() string { return proto.CompactTextString(m) } func (*PmsiTunnelAttribute) ProtoMessage() {} -func (*PmsiTunnelAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{56} } +func (*PmsiTunnelAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{64} } func (m *PmsiTunnelAttribute) GetFlags() uint32 { if m != nil { @@ -1545,7 +1831,7 @@ type TunnelEncapSubTLVEncapsulation struct { func (m *TunnelEncapSubTLVEncapsulation) Reset() { *m = TunnelEncapSubTLVEncapsulation{} } func (m *TunnelEncapSubTLVEncapsulation) String() string { return proto.CompactTextString(m) } func (*TunnelEncapSubTLVEncapsulation) ProtoMessage() {} -func (*TunnelEncapSubTLVEncapsulation) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{57} } +func (*TunnelEncapSubTLVEncapsulation) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{65} } func (m *TunnelEncapSubTLVEncapsulation) GetKey() uint32 { if m != nil { @@ -1568,7 +1854,7 @@ type TunnelEncapSubTLVProtocol struct { func (m *TunnelEncapSubTLVProtocol) Reset() { *m = TunnelEncapSubTLVProtocol{} } func (m *TunnelEncapSubTLVProtocol) String() string { return proto.CompactTextString(m) } func (*TunnelEncapSubTLVProtocol) ProtoMessage() {} -func (*TunnelEncapSubTLVProtocol) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{58} } +func (*TunnelEncapSubTLVProtocol) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{66} } func (m *TunnelEncapSubTLVProtocol) GetProtocol() uint32 { if m != nil { @@ -1584,7 +1870,7 @@ type TunnelEncapSubTLVColor struct { func (m *TunnelEncapSubTLVColor) Reset() { *m = TunnelEncapSubTLVColor{} } func (m *TunnelEncapSubTLVColor) String() string { return proto.CompactTextString(m) } func (*TunnelEncapSubTLVColor) ProtoMessage() {} -func (*TunnelEncapSubTLVColor) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{59} } +func (*TunnelEncapSubTLVColor) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{67} } func (m *TunnelEncapSubTLVColor) GetColor() uint32 { if m != nil { @@ -1601,7 +1887,7 @@ type TunnelEncapSubTLVUnknown struct { func (m *TunnelEncapSubTLVUnknown) Reset() { *m = TunnelEncapSubTLVUnknown{} } func (m *TunnelEncapSubTLVUnknown) String() string { return proto.CompactTextString(m) } func (*TunnelEncapSubTLVUnknown) ProtoMessage() {} -func (*TunnelEncapSubTLVUnknown) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{60} } +func (*TunnelEncapSubTLVUnknown) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{68} } func (m *TunnelEncapSubTLVUnknown) GetType() uint32 { if m != nil { @@ -1630,7 +1916,7 @@ type TunnelEncapTLV struct { func (m *TunnelEncapTLV) Reset() { *m = TunnelEncapTLV{} } func (m *TunnelEncapTLV) String() string { return proto.CompactTextString(m) } func (*TunnelEncapTLV) ProtoMessage() {} -func (*TunnelEncapTLV) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{61} } +func (*TunnelEncapTLV) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{69} } func (m *TunnelEncapTLV) GetType() uint32 { if m != nil { @@ -1653,7 +1939,7 @@ type TunnelEncapAttribute struct { func (m *TunnelEncapAttribute) Reset() { *m = TunnelEncapAttribute{} } func (m *TunnelEncapAttribute) String() string { return proto.CompactTextString(m) } func (*TunnelEncapAttribute) ProtoMessage() {} -func (*TunnelEncapAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{62} } +func (*TunnelEncapAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{70} } func (m *TunnelEncapAttribute) GetTlvs() []*TunnelEncapTLV { if m != nil { @@ -1672,7 +1958,7 @@ type IPv6AddressSpecificExtended struct { func (m *IPv6AddressSpecificExtended) Reset() { *m = IPv6AddressSpecificExtended{} } func (m *IPv6AddressSpecificExtended) String() string { return proto.CompactTextString(m) } func (*IPv6AddressSpecificExtended) ProtoMessage() {} -func (*IPv6AddressSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{63} } +func (*IPv6AddressSpecificExtended) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{71} } func (m *IPv6AddressSpecificExtended) GetIsTransitive() bool { if m != nil { @@ -1711,7 +1997,7 @@ func (m *RedirectIPv6AddressSpecificExtended) Reset() { *m = RedirectIPv func (m *RedirectIPv6AddressSpecificExtended) String() string { return proto.CompactTextString(m) } func (*RedirectIPv6AddressSpecificExtended) ProtoMessage() {} func (*RedirectIPv6AddressSpecificExtended) Descriptor() ([]byte, []int) { - return fileDescriptor1, []int{64} + return fileDescriptor1, []int{72} } func (m *RedirectIPv6AddressSpecificExtended) GetAddress() string { @@ -1739,7 +2025,7 @@ func (m *IP6ExtendedCommunitiesAttribute) Reset() { *m = IP6ExtendedComm func (m *IP6ExtendedCommunitiesAttribute) String() string { return proto.CompactTextString(m) } func (*IP6ExtendedCommunitiesAttribute) ProtoMessage() {} func (*IP6ExtendedCommunitiesAttribute) Descriptor() ([]byte, []int) { - return fileDescriptor1, []int{65} + return fileDescriptor1, []int{73} } func (m *IP6ExtendedCommunitiesAttribute) GetCommunities() []*google_protobuf.Any { @@ -1756,7 +2042,7 @@ type AigpTLVIGPMetric struct { func (m *AigpTLVIGPMetric) Reset() { *m = AigpTLVIGPMetric{} } func (m *AigpTLVIGPMetric) String() string { return proto.CompactTextString(m) } func (*AigpTLVIGPMetric) ProtoMessage() {} -func (*AigpTLVIGPMetric) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{66} } +func (*AigpTLVIGPMetric) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{74} } func (m *AigpTLVIGPMetric) GetMetric() uint64 { if m != nil { @@ -1773,7 +2059,7 @@ type AigpTLVUnknown struct { func (m *AigpTLVUnknown) Reset() { *m = AigpTLVUnknown{} } func (m *AigpTLVUnknown) String() string { return proto.CompactTextString(m) } func (*AigpTLVUnknown) ProtoMessage() {} -func (*AigpTLVUnknown) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{67} } +func (*AigpTLVUnknown) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{75} } func (m *AigpTLVUnknown) GetType() uint32 { if m != nil { @@ -1799,7 +2085,7 @@ type AigpAttribute struct { func (m *AigpAttribute) Reset() { *m = AigpAttribute{} } func (m *AigpAttribute) String() string { return proto.CompactTextString(m) } func (*AigpAttribute) ProtoMessage() {} -func (*AigpAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{68} } +func (*AigpAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{76} } func (m *AigpAttribute) GetTlvs() []*google_protobuf.Any { if m != nil { @@ -1817,7 +2103,7 @@ type LargeCommunity struct { func (m *LargeCommunity) Reset() { *m = LargeCommunity{} } func (m *LargeCommunity) String() string { return proto.CompactTextString(m) } func (*LargeCommunity) ProtoMessage() {} -func (*LargeCommunity) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{69} } +func (*LargeCommunity) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{77} } func (m *LargeCommunity) GetGlobalAdmin() uint32 { if m != nil { @@ -1847,7 +2133,7 @@ type LargeCommunitiesAttribute struct { func (m *LargeCommunitiesAttribute) Reset() { *m = LargeCommunitiesAttribute{} } func (m *LargeCommunitiesAttribute) String() string { return proto.CompactTextString(m) } func (*LargeCommunitiesAttribute) ProtoMessage() {} -func (*LargeCommunitiesAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{70} } +func (*LargeCommunitiesAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{78} } func (m *LargeCommunitiesAttribute) GetCommunities() []*LargeCommunity { if m != nil { @@ -1856,6 +2142,430 @@ func (m *LargeCommunitiesAttribute) GetCommunities() []*LargeCommunity { return nil } +type LsNodeFlags struct { + Overload bool `protobuf:"varint,1,opt,name=overload" json:"overload,omitempty"` + Attached bool `protobuf:"varint,2,opt,name=attached" json:"attached,omitempty"` + External bool `protobuf:"varint,3,opt,name=external" json:"external,omitempty"` + Abr bool `protobuf:"varint,4,opt,name=abr" json:"abr,omitempty"` + Router bool `protobuf:"varint,5,opt,name=router" json:"router,omitempty"` + V6 bool `protobuf:"varint,6,opt,name=v6" json:"v6,omitempty"` +} + +func (m *LsNodeFlags) Reset() { *m = LsNodeFlags{} } +func (m *LsNodeFlags) String() string { return proto.CompactTextString(m) } +func (*LsNodeFlags) ProtoMessage() {} +func (*LsNodeFlags) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{79} } + +func (m *LsNodeFlags) GetOverload() bool { + if m != nil { + return m.Overload + } + return false +} + +func (m *LsNodeFlags) GetAttached() bool { + if m != nil { + return m.Attached + } + return false +} + +func (m *LsNodeFlags) GetExternal() bool { + if m != nil { + return m.External + } + return false +} + +func (m *LsNodeFlags) GetAbr() bool { + if m != nil { + return m.Abr + } + return false +} + +func (m *LsNodeFlags) GetRouter() bool { + if m != nil { + return m.Router + } + return false +} + +func (m *LsNodeFlags) GetV6() bool { + if m != nil { + return m.V6 + } + return false +} + +type LsIGPFlags struct { + Down bool `protobuf:"varint,1,opt,name=down" json:"down,omitempty"` + NoUnicast bool `protobuf:"varint,2,opt,name=no_unicast,json=noUnicast" json:"no_unicast,omitempty"` + LocalAddress bool `protobuf:"varint,3,opt,name=local_address,json=localAddress" json:"local_address,omitempty"` + PropagateNssa bool `protobuf:"varint,4,opt,name=propagate_nssa,json=propagateNssa" json:"propagate_nssa,omitempty"` +} + +func (m *LsIGPFlags) Reset() { *m = LsIGPFlags{} } +func (m *LsIGPFlags) String() string { return proto.CompactTextString(m) } +func (*LsIGPFlags) ProtoMessage() {} +func (*LsIGPFlags) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{80} } + +func (m *LsIGPFlags) GetDown() bool { + if m != nil { + return m.Down + } + return false +} + +func (m *LsIGPFlags) GetNoUnicast() bool { + if m != nil { + return m.NoUnicast + } + return false +} + +func (m *LsIGPFlags) GetLocalAddress() bool { + if m != nil { + return m.LocalAddress + } + return false +} + +func (m *LsIGPFlags) GetPropagateNssa() bool { + if m != nil { + return m.PropagateNssa + } + return false +} + +type LsSrRange struct { + Begin uint32 `protobuf:"varint,1,opt,name=begin" json:"begin,omitempty"` + End uint32 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"` +} + +func (m *LsSrRange) Reset() { *m = LsSrRange{} } +func (m *LsSrRange) String() string { return proto.CompactTextString(m) } +func (*LsSrRange) ProtoMessage() {} +func (*LsSrRange) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{81} } + +func (m *LsSrRange) GetBegin() uint32 { + if m != nil { + return m.Begin + } + return 0 +} + +func (m *LsSrRange) GetEnd() uint32 { + if m != nil { + return m.End + } + return 0 +} + +type LsSrCapabilities struct { + Ipv4Supported bool `protobuf:"varint,1,opt,name=ipv4_supported,json=ipv4Supported" json:"ipv4_supported,omitempty"` + Ipv6Supported bool `protobuf:"varint,2,opt,name=ipv6_supported,json=ipv6Supported" json:"ipv6_supported,omitempty"` + Ranges []*LsSrRange `protobuf:"bytes,3,rep,name=ranges" json:"ranges,omitempty"` +} + +func (m *LsSrCapabilities) Reset() { *m = LsSrCapabilities{} } +func (m *LsSrCapabilities) String() string { return proto.CompactTextString(m) } +func (*LsSrCapabilities) ProtoMessage() {} +func (*LsSrCapabilities) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{82} } + +func (m *LsSrCapabilities) GetIpv4Supported() bool { + if m != nil { + return m.Ipv4Supported + } + return false +} + +func (m *LsSrCapabilities) GetIpv6Supported() bool { + if m != nil { + return m.Ipv6Supported + } + return false +} + +func (m *LsSrCapabilities) GetRanges() []*LsSrRange { + if m != nil { + return m.Ranges + } + return nil +} + +type LsSrLocalBlock struct { + Ranges []*LsSrRange `protobuf:"bytes,1,rep,name=ranges" json:"ranges,omitempty"` +} + +func (m *LsSrLocalBlock) Reset() { *m = LsSrLocalBlock{} } +func (m *LsSrLocalBlock) String() string { return proto.CompactTextString(m) } +func (*LsSrLocalBlock) ProtoMessage() {} +func (*LsSrLocalBlock) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{83} } + +func (m *LsSrLocalBlock) GetRanges() []*LsSrRange { + if m != nil { + return m.Ranges + } + return nil +} + +type LsAttributeNode struct { + Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + Flags *LsNodeFlags `protobuf:"bytes,2,opt,name=flags" json:"flags,omitempty"` + LocalRouterId string `protobuf:"bytes,3,opt,name=local_router_id,json=localRouterId" json:"local_router_id,omitempty"` + LocalRouterIdV6 string `protobuf:"bytes,4,opt,name=local_router_id_v6,json=localRouterIdV6" json:"local_router_id_v6,omitempty"` + IsisArea []byte `protobuf:"bytes,5,opt,name=isis_area,json=isisArea,proto3" json:"isis_area,omitempty"` + Opaque []byte `protobuf:"bytes,6,opt,name=opaque,proto3" json:"opaque,omitempty"` + SrCapabilities *LsSrCapabilities `protobuf:"bytes,7,opt,name=sr_capabilities,json=srCapabilities" json:"sr_capabilities,omitempty"` + SrAlgorithms []byte `protobuf:"bytes,8,opt,name=sr_algorithms,json=srAlgorithms,proto3" json:"sr_algorithms,omitempty"` + SrLocalBlock *LsSrLocalBlock `protobuf:"bytes,9,opt,name=sr_local_block,json=srLocalBlock" json:"sr_local_block,omitempty"` +} + +func (m *LsAttributeNode) Reset() { *m = LsAttributeNode{} } +func (m *LsAttributeNode) String() string { return proto.CompactTextString(m) } +func (*LsAttributeNode) ProtoMessage() {} +func (*LsAttributeNode) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{84} } + +func (m *LsAttributeNode) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *LsAttributeNode) GetFlags() *LsNodeFlags { + if m != nil { + return m.Flags + } + return nil +} + +func (m *LsAttributeNode) GetLocalRouterId() string { + if m != nil { + return m.LocalRouterId + } + return "" +} + +func (m *LsAttributeNode) GetLocalRouterIdV6() string { + if m != nil { + return m.LocalRouterIdV6 + } + return "" +} + +func (m *LsAttributeNode) GetIsisArea() []byte { + if m != nil { + return m.IsisArea + } + return nil +} + +func (m *LsAttributeNode) GetOpaque() []byte { + if m != nil { + return m.Opaque + } + return nil +} + +func (m *LsAttributeNode) GetSrCapabilities() *LsSrCapabilities { + if m != nil { + return m.SrCapabilities + } + return nil +} + +func (m *LsAttributeNode) GetSrAlgorithms() []byte { + if m != nil { + return m.SrAlgorithms + } + return nil +} + +func (m *LsAttributeNode) GetSrLocalBlock() *LsSrLocalBlock { + if m != nil { + return m.SrLocalBlock + } + return nil +} + +type LsAttributeLink struct { + Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + LocalRouterId string `protobuf:"bytes,2,opt,name=local_router_id,json=localRouterId" json:"local_router_id,omitempty"` + LocalRouterIdV6 string `protobuf:"bytes,3,opt,name=local_router_id_v6,json=localRouterIdV6" json:"local_router_id_v6,omitempty"` + RemoteRouterId string `protobuf:"bytes,4,opt,name=remote_router_id,json=remoteRouterId" json:"remote_router_id,omitempty"` + RemoteRouterIdV6 string `protobuf:"bytes,5,opt,name=remote_router_id_v6,json=remoteRouterIdV6" json:"remote_router_id_v6,omitempty"` + AdminGroup uint32 `protobuf:"varint,6,opt,name=admin_group,json=adminGroup" json:"admin_group,omitempty"` + DefaultTeMetric uint32 `protobuf:"varint,7,opt,name=default_te_metric,json=defaultTeMetric" json:"default_te_metric,omitempty"` + IgpMetric uint32 `protobuf:"varint,8,opt,name=igp_metric,json=igpMetric" json:"igp_metric,omitempty"` + Opaque []byte `protobuf:"bytes,9,opt,name=opaque,proto3" json:"opaque,omitempty"` + Bandwidth float32 `protobuf:"fixed32,10,opt,name=bandwidth" json:"bandwidth,omitempty"` + ReservableBandwidth float32 `protobuf:"fixed32,11,opt,name=reservable_bandwidth,json=reservableBandwidth" json:"reservable_bandwidth,omitempty"` + UnreservedBandwidth []float32 `protobuf:"fixed32,12,rep,packed,name=unreserved_bandwidth,json=unreservedBandwidth" json:"unreserved_bandwidth,omitempty"` + SrAdjacencySid uint32 `protobuf:"varint,13,opt,name=sr_adjacency_sid,json=srAdjacencySid" json:"sr_adjacency_sid,omitempty"` +} + +func (m *LsAttributeLink) Reset() { *m = LsAttributeLink{} } +func (m *LsAttributeLink) String() string { return proto.CompactTextString(m) } +func (*LsAttributeLink) ProtoMessage() {} +func (*LsAttributeLink) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{85} } + +func (m *LsAttributeLink) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *LsAttributeLink) GetLocalRouterId() string { + if m != nil { + return m.LocalRouterId + } + return "" +} + +func (m *LsAttributeLink) GetLocalRouterIdV6() string { + if m != nil { + return m.LocalRouterIdV6 + } + return "" +} + +func (m *LsAttributeLink) GetRemoteRouterId() string { + if m != nil { + return m.RemoteRouterId + } + return "" +} + +func (m *LsAttributeLink) GetRemoteRouterIdV6() string { + if m != nil { + return m.RemoteRouterIdV6 + } + return "" +} + +func (m *LsAttributeLink) GetAdminGroup() uint32 { + if m != nil { + return m.AdminGroup + } + return 0 +} + +func (m *LsAttributeLink) GetDefaultTeMetric() uint32 { + if m != nil { + return m.DefaultTeMetric + } + return 0 +} + +func (m *LsAttributeLink) GetIgpMetric() uint32 { + if m != nil { + return m.IgpMetric + } + return 0 +} + +func (m *LsAttributeLink) GetOpaque() []byte { + if m != nil { + return m.Opaque + } + return nil +} + +func (m *LsAttributeLink) GetBandwidth() float32 { + if m != nil { + return m.Bandwidth + } + return 0 +} + +func (m *LsAttributeLink) GetReservableBandwidth() float32 { + if m != nil { + return m.ReservableBandwidth + } + return 0 +} + +func (m *LsAttributeLink) GetUnreservedBandwidth() []float32 { + if m != nil { + return m.UnreservedBandwidth + } + return nil +} + +func (m *LsAttributeLink) GetSrAdjacencySid() uint32 { + if m != nil { + return m.SrAdjacencySid + } + return 0 +} + +type LsAttributePrefix struct { + IgpFlags *LsIGPFlags `protobuf:"bytes,1,opt,name=igp_flags,json=igpFlags" json:"igp_flags,omitempty"` + Opaque []byte `protobuf:"bytes,2,opt,name=opaque,proto3" json:"opaque,omitempty"` + SrPrefixSid uint32 `protobuf:"varint,3,opt,name=sr_prefix_sid,json=srPrefixSid" json:"sr_prefix_sid,omitempty"` +} + +func (m *LsAttributePrefix) Reset() { *m = LsAttributePrefix{} } +func (m *LsAttributePrefix) String() string { return proto.CompactTextString(m) } +func (*LsAttributePrefix) ProtoMessage() {} +func (*LsAttributePrefix) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{86} } + +func (m *LsAttributePrefix) GetIgpFlags() *LsIGPFlags { + if m != nil { + return m.IgpFlags + } + return nil +} + +func (m *LsAttributePrefix) GetOpaque() []byte { + if m != nil { + return m.Opaque + } + return nil +} + +func (m *LsAttributePrefix) GetSrPrefixSid() uint32 { + if m != nil { + return m.SrPrefixSid + } + return 0 +} + +type LsAttribute struct { + Node *LsAttributeNode `protobuf:"bytes,1,opt,name=node" json:"node,omitempty"` + Link *LsAttributeLink `protobuf:"bytes,2,opt,name=link" json:"link,omitempty"` + Prefix *LsAttributePrefix `protobuf:"bytes,3,opt,name=prefix" json:"prefix,omitempty"` +} + +func (m *LsAttribute) Reset() { *m = LsAttribute{} } +func (m *LsAttribute) String() string { return proto.CompactTextString(m) } +func (*LsAttribute) ProtoMessage() {} +func (*LsAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{87} } + +func (m *LsAttribute) GetNode() *LsAttributeNode { + if m != nil { + return m.Node + } + return nil +} + +func (m *LsAttribute) GetLink() *LsAttributeLink { + if m != nil { + return m.Link + } + return nil +} + +func (m *LsAttribute) GetPrefix() *LsAttributePrefix { + if m != nil { + return m.Prefix + } + return nil +} + type UnknownAttribute struct { Flags uint32 `protobuf:"varint,1,opt,name=flags" json:"flags,omitempty"` Type uint32 `protobuf:"varint,2,opt,name=type" json:"type,omitempty"` @@ -1865,7 +2575,7 @@ type UnknownAttribute struct { func (m *UnknownAttribute) Reset() { *m = UnknownAttribute{} } func (m *UnknownAttribute) String() string { return proto.CompactTextString(m) } func (*UnknownAttribute) ProtoMessage() {} -func (*UnknownAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{71} } +func (*UnknownAttribute) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{88} } func (m *UnknownAttribute) GetFlags() uint32 { if m != nil { @@ -1921,6 +2631,14 @@ func init() { proto.RegisterType((*FlowSpecNLRI)(nil), "gobgpapi.FlowSpecNLRI") proto.RegisterType((*VPNFlowSpecNLRI)(nil), "gobgpapi.VPNFlowSpecNLRI") proto.RegisterType((*OpaqueNLRI)(nil), "gobgpapi.OpaqueNLRI") + proto.RegisterType((*LsNodeDescriptor)(nil), "gobgpapi.LsNodeDescriptor") + proto.RegisterType((*LsLinkDescriptor)(nil), "gobgpapi.LsLinkDescriptor") + proto.RegisterType((*LsPrefixDescriptor)(nil), "gobgpapi.LsPrefixDescriptor") + proto.RegisterType((*LsNodeNLRI)(nil), "gobgpapi.LsNodeNLRI") + proto.RegisterType((*LsLinkNLRI)(nil), "gobgpapi.LsLinkNLRI") + proto.RegisterType((*LsPrefixV4NLRI)(nil), "gobgpapi.LsPrefixV4NLRI") + proto.RegisterType((*LsPrefixV6NLRI)(nil), "gobgpapi.LsPrefixV6NLRI") + proto.RegisterType((*LsAddrPrefix)(nil), "gobgpapi.LsAddrPrefix") proto.RegisterType((*MpReachNLRIAttribute)(nil), "gobgpapi.MpReachNLRIAttribute") proto.RegisterType((*MpUnreachNLRIAttribute)(nil), "gobgpapi.MpUnreachNLRIAttribute") proto.RegisterType((*TwoOctetAsSpecificExtended)(nil), "gobgpapi.TwoOctetAsSpecificExtended") @@ -1960,129 +2678,210 @@ func init() { proto.RegisterType((*AigpAttribute)(nil), "gobgpapi.AigpAttribute") proto.RegisterType((*LargeCommunity)(nil), "gobgpapi.LargeCommunity") proto.RegisterType((*LargeCommunitiesAttribute)(nil), "gobgpapi.LargeCommunitiesAttribute") + proto.RegisterType((*LsNodeFlags)(nil), "gobgpapi.LsNodeFlags") + proto.RegisterType((*LsIGPFlags)(nil), "gobgpapi.LsIGPFlags") + proto.RegisterType((*LsSrRange)(nil), "gobgpapi.LsSrRange") + proto.RegisterType((*LsSrCapabilities)(nil), "gobgpapi.LsSrCapabilities") + proto.RegisterType((*LsSrLocalBlock)(nil), "gobgpapi.LsSrLocalBlock") + proto.RegisterType((*LsAttributeNode)(nil), "gobgpapi.LsAttributeNode") + proto.RegisterType((*LsAttributeLink)(nil), "gobgpapi.LsAttributeLink") + proto.RegisterType((*LsAttributePrefix)(nil), "gobgpapi.LsAttributePrefix") + proto.RegisterType((*LsAttribute)(nil), "gobgpapi.LsAttribute") proto.RegisterType((*UnknownAttribute)(nil), "gobgpapi.UnknownAttribute") + proto.RegisterEnum("gobgpapi.LsNLRIType", LsNLRIType_name, LsNLRIType_value) } func init() { proto.RegisterFile("attribute.proto", fileDescriptor1) } var fileDescriptor1 = []byte{ - // 1881 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4b, 0x73, 0x1b, 0xc7, - 0x11, 0x2e, 0x2c, 0x40, 0x0a, 0x68, 0x10, 0x24, 0x04, 0x52, 0x2c, 0x90, 0xb4, 0x4c, 0x65, 0x14, - 0x27, 0x8c, 0x12, 0x53, 0x09, 0x2d, 0x2b, 0x91, 0x5c, 0xa9, 0x14, 0x4c, 0xd2, 0x36, 0x62, 0x82, - 0x82, 0x97, 0x14, 0x53, 0xb9, 0x04, 0x19, 0xec, 0x0e, 0x96, 0x53, 0xdc, 0x97, 0x77, 0x66, 0xf9, - 0xf8, 0x09, 0x3e, 0x24, 0xa5, 0x53, 0x2a, 0xbf, 0x24, 0xff, 0x2c, 0xf7, 0xd4, 0xbc, 0xf6, 0x41, - 0xf0, 0x21, 0x4a, 0x51, 0x95, 0x6e, 0xdb, 0xb3, 0x3d, 0xdd, 0x3d, 0xdf, 0x74, 0x7f, 0xdd, 0xbb, - 0xb0, 0x80, 0x39, 0x4f, 0xe8, 0x38, 0xe5, 0x64, 0x33, 0x4e, 0x22, 0x1e, 0x75, 0xea, 0x5e, 0x34, - 0xf6, 0x62, 0x1c, 0xd3, 0xd5, 0x15, 0x2f, 0x8a, 0x3c, 0x9f, 0x3c, 0x95, 0xeb, 0xe3, 0x74, 0xf2, - 0x14, 0x87, 0x17, 0x4a, 0x69, 0xb5, 0x29, 0x95, 0x94, 0x80, 0x7e, 0x05, 0x0b, 0xaf, 0x12, 0xea, - 0xd1, 0xb0, 0x67, 0x4c, 0x75, 0x96, 0x61, 0x36, 0x92, 0x4b, 0xdd, 0xca, 0xa3, 0xca, 0x46, 0xcb, - 0xd6, 0x12, 0x7a, 0x01, 0x8d, 0x1e, 0x3b, 0x20, 0x5e, 0x40, 0x42, 0xde, 0xe9, 0x40, 0x8d, 0x5f, - 0xc4, 0x44, 0xab, 0xc8, 0xe7, 0x4e, 0x17, 0xee, 0x85, 0x69, 0x30, 0x26, 0x09, 0xeb, 0x5a, 0x8f, - 0xaa, 0x1b, 0x2d, 0xdb, 0x88, 0xe8, 0x6b, 0x58, 0xe8, 0xb1, 0x21, 0xe6, 0xc7, 0xb9, 0x97, 0xa7, - 0x50, 0x67, 0xca, 0x16, 0xeb, 0x56, 0x1e, 0x55, 0x37, 0x9a, 0x5b, 0x8b, 0x9b, 0x26, 0xfa, 0xcd, - 0xcc, 0x8f, 0x9d, 0x29, 0xa1, 0xcf, 0xa1, 0xbd, 0x4f, 0xce, 0xf9, 0x77, 0x51, 0x9c, 0x1b, 0x59, - 0x81, 0x7a, 0x48, 0xce, 0xf9, 0xe8, 0x38, 0x8a, 0x65, 0x24, 0x0d, 0xfb, 0x5e, 0xa8, 0x74, 0xd0, - 0x13, 0x58, 0x1e, 0xa4, 0x3e, 0xa7, 0xbb, 0xe7, 0x94, 0xef, 0x50, 0xe6, 0xe4, 0x9b, 0xda, 0x50, - 0x0d, 0x88, 0xab, 0x23, 0x17, 0x8f, 0xe8, 0x0b, 0xe8, 0xec, 0x45, 0x0e, 0xf6, 0x87, 0x09, 0x99, - 0xe4, 0x7a, 0x0f, 0x01, 0x7c, 0xb1, 0x3a, 0x8a, 0x13, 0x32, 0xd1, 0xea, 0x0d, 0xdf, 0xe8, 0xa1, - 0x55, 0xe8, 0xf6, 0x78, 0x14, 0x50, 0xa7, 0xe7, 0x79, 0x09, 0xf1, 0x30, 0x27, 0xd9, 0x56, 0xf4, - 0x27, 0x58, 0x34, 0xab, 0x51, 0x92, 0x5b, 0x9c, 0x07, 0x0b, 0x0b, 0x6c, 0x84, 0x25, 0x0b, 0x33, - 0x01, 0x18, 0x76, 0xdd, 0x84, 0x30, 0xd6, 0xad, 0xaa, 0xe8, 0xb5, 0x88, 0xfe, 0x00, 0x4b, 0xdb, - 0x51, 0x10, 0xa4, 0x21, 0xe5, 0x94, 0xb0, 0xdc, 0xc2, 0x23, 0x68, 0x3a, 0xf9, 0xba, 0x04, 0xae, - 0x65, 0x17, 0x97, 0xd0, 0x2f, 0xe1, 0x81, 0xba, 0x50, 0xe1, 0xba, 0xef, 0x96, 0x9c, 0x53, 0x57, - 0xa3, 0x64, 0x51, 0x17, 0x6d, 0xc0, 0xd2, 0xb6, 0x9f, 0x32, 0x4e, 0x92, 0x3d, 0xca, 0x78, 0x09, - 0x1e, 0xea, 0x2a, 0xd3, 0x0d, 0x5b, 0x3c, 0xa2, 0xef, 0x60, 0xa1, 0x3f, 0xec, 0xa9, 0xc8, 0xc4, - 0xd1, 0xe9, 0xb9, 0xc0, 0x26, 0x96, 0x4f, 0x23, 0x9f, 0x98, 0x3c, 0x69, 0xa8, 0x95, 0x3d, 0x12, - 0x8a, 0x14, 0x52, 0x82, 0x3c, 0x6c, 0xc3, 0xd6, 0x12, 0xf2, 0x60, 0x79, 0x0f, 0x8f, 0x89, 0x4f, - 0xdc, 0xcb, 0x06, 0x97, 0x61, 0xd6, 0x17, 0x6f, 0xcc, 0x99, 0xb4, 0x74, 0xc9, 0x91, 0x75, 0xbd, - 0xa3, 0x6a, 0xc9, 0xd1, 0xe7, 0x70, 0x7f, 0x37, 0x74, 0x70, 0xcc, 0x52, 0x1f, 0x73, 0x1a, 0x85, - 0xfb, 0x7b, 0x76, 0xbf, 0x08, 0x77, 0xa5, 0x0c, 0xf7, 0x10, 0x3e, 0xb1, 0xa3, 0x94, 0x93, 0x1d, - 0xca, 0x38, 0x0d, 0xbd, 0x94, 0xb2, 0x63, 0x92, 0x1c, 0x9e, 0x45, 0xaf, 0x1c, 0x4e, 0x78, 0xef, - 0xa0, 0xb3, 0x04, 0x33, 0xd8, 0x0d, 0xb2, 0x8a, 0x50, 0x42, 0x67, 0x15, 0xea, 0x98, 0x31, 0xea, - 0x85, 0xc4, 0xd5, 0x91, 0x65, 0x32, 0x7a, 0x05, 0x6b, 0xd3, 0x16, 0xb3, 0x43, 0x97, 0x0d, 0x36, - 0xde, 0xc6, 0xe0, 0x0f, 0xf0, 0x70, 0xda, 0xe0, 0x37, 0x51, 0x9a, 0xbc, 0x7b, 0x8c, 0xbb, 0xb0, - 0xb2, 0xcb, 0x8f, 0x49, 0x12, 0x12, 0xae, 0xcb, 0xad, 0xef, 0x92, 0x90, 0xd3, 0x09, 0x25, 0xc9, - 0x95, 0x05, 0xbe, 0x04, 0x33, 0xa7, 0xd8, 0x4f, 0x89, 0xb4, 0x34, 0x67, 0x2b, 0x01, 0xfd, 0xa7, - 0x02, 0x9f, 0xee, 0x1e, 0x0d, 0xf7, 0x8d, 0xad, 0x5e, 0xca, 0x23, 0x51, 0x71, 0xd1, 0x29, 0x49, - 0x2e, 0x64, 0xcc, 0x9d, 0x9f, 0x83, 0x95, 0xa8, 0xdc, 0x6b, 0x6e, 0x2d, 0x6d, 0x2a, 0x6a, 0xda, - 0x34, 0xd4, 0xb4, 0xd9, 0x0b, 0x2f, 0x6c, 0x2b, 0x71, 0x3b, 0x5f, 0x42, 0x95, 0x30, 0x2a, 0x8d, - 0x37, 0xb7, 0x1e, 0xe7, 0x6c, 0x70, 0x6d, 0x90, 0xb6, 0xd0, 0xef, 0xfc, 0x0c, 0xe6, 0x88, 0xd6, - 0x18, 0x71, 0xec, 0xc9, 0x4c, 0x68, 0xd9, 0x4d, 0xb3, 0x76, 0x88, 0x3d, 0x11, 0xb8, 0xcc, 0xa7, - 0x6e, 0x4d, 0x61, 0x23, 0x05, 0xf4, 0xdf, 0x0a, 0xac, 0x89, 0xc0, 0x07, 0xbd, 0x6d, 0x71, 0x33, - 0xa7, 0x24, 0xe1, 0x94, 0x11, 0x49, 0x3b, 0x1f, 0x45, 0xd4, 0xeb, 0xd0, 0x0c, 0xb0, 0x33, 0x32, - 0x39, 0x5b, 0x93, 0xa9, 0x02, 0x01, 0x76, 0x4c, 0x16, 0x3d, 0x04, 0xa0, 0x71, 0xf6, 0x7e, 0x46, - 0xbe, 0x6f, 0xd0, 0xd8, 0xbc, 0xce, 0x6b, 0x6a, 0xb6, 0x58, 0x53, 0xe8, 0x4d, 0x05, 0x7e, 0x21, - 0xce, 0xdd, 0x0f, 0x1d, 0x3f, 0x65, 0xf4, 0x94, 0x48, 0xa2, 0x74, 0x30, 0xe3, 0xbb, 0xb9, 0xf7, - 0xbb, 0x40, 0x70, 0xf9, 0x2c, 0xd6, 0xf4, 0x59, 0xca, 0xa1, 0x56, 0x2f, 0x85, 0x8a, 0xfe, 0x55, - 0x81, 0x6e, 0x31, 0x87, 0x0c, 0xfd, 0x7f, 0xf8, 0x7b, 0xb8, 0x25, 0xb0, 0x9f, 0x2c, 0xb8, 0x2f, - 0xb1, 0x1a, 0x2a, 0xa2, 0xfa, 0x38, 0x32, 0x63, 0x0d, 0x1a, 0x34, 0x1e, 0x69, 0xe6, 0x53, 0x79, - 0x51, 0xa7, 0xb1, 0xa6, 0x52, 0x04, 0xad, 0xec, 0xa5, 0x64, 0xcd, 0x19, 0x65, 0xc0, 0x28, 0x08, - 0xde, 0x7c, 0x08, 0xe0, 0x9d, 0x65, 0xa7, 0x9e, 0x55, 0xa7, 0xf6, 0xce, 0x0a, 0xf4, 0xa4, 0xea, - 0xe5, 0x5e, 0xb1, 0x5e, 0xde, 0x54, 0x60, 0x45, 0xd3, 0xb7, 0x44, 0xe4, 0xed, 0x18, 0x5c, 0x61, - 0x65, 0xdd, 0x82, 0x55, 0x99, 0xe7, 0xab, 0xd7, 0xf3, 0x7c, 0xad, 0xc4, 0xf3, 0x3f, 0xc0, 0x8a, - 0xbc, 0x91, 0x43, 0x9c, 0x78, 0x84, 0x0f, 0x88, 0x1c, 0x37, 0x8e, 0x69, 0x2c, 0xf9, 0x5e, 0xb5, - 0xdb, 0x4a, 0xd6, 0x6e, 0x45, 0x24, 0xfc, 0x96, 0x48, 0x38, 0x4a, 0xa1, 0xfd, 0x8d, 0x1f, 0x9d, - 0x1d, 0xc4, 0xc4, 0x31, 0x97, 0x7e, 0x25, 0x19, 0xbe, 0x5b, 0x67, 0x92, 0xd3, 0xd5, 0x64, 0xc2, - 0x08, 0xd7, 0x5c, 0xa4, 0x25, 0xf4, 0x15, 0x34, 0x8d, 0xdb, 0x41, 0x6f, 0xfb, 0xba, 0xf9, 0xca, - 0xdc, 0x98, 0x55, 0xee, 0x5f, 0x7f, 0x84, 0x07, 0x66, 0xf3, 0x76, 0x14, 0xc4, 0x51, 0x28, 0xd2, - 0x8a, 0x93, 0x40, 0x40, 0xa0, 0x47, 0xa3, 0x96, 0x6d, 0x45, 0x71, 0x99, 0xc1, 0x6b, 0x86, 0xc1, - 0xff, 0x06, 0xf7, 0xa7, 0xb6, 0x5f, 0x19, 0xc1, 0x97, 0x30, 0x43, 0x39, 0x09, 0xd4, 0x7c, 0xd7, - 0xdc, 0x5a, 0xcf, 0x73, 0xfa, 0x4a, 0xf7, 0xb6, 0xd2, 0x46, 0x2f, 0x61, 0xce, 0xbc, 0x97, 0x17, - 0xf3, 0x04, 0x66, 0x92, 0xd4, 0x27, 0x66, 0xf0, 0xbb, 0xfa, 0x2e, 0x94, 0x0a, 0x72, 0x60, 0xe1, - 0x68, 0xb8, 0x5f, 0xda, 0xfe, 0x76, 0xd5, 0x97, 0x39, 0xb1, 0x6e, 0x77, 0xf2, 0x0c, 0xe0, 0x55, - 0x8c, 0x7f, 0x4c, 0x89, 0xb4, 0xdf, 0x86, 0xea, 0x09, 0xb9, 0x90, 0x0e, 0xe6, 0x6c, 0xf1, 0x78, - 0x4d, 0xe3, 0xfb, 0xa9, 0x02, 0x4b, 0x83, 0xd8, 0x26, 0xd8, 0x39, 0x16, 0xfb, 0xf2, 0x11, 0x6a, - 0x03, 0x66, 0x27, 0x38, 0xa0, 0xfe, 0x85, 0x0e, 0xb2, 0x5d, 0xc0, 0x49, 0xae, 0xdb, 0xfa, 0xbd, - 0x28, 0x64, 0x33, 0xc0, 0xaa, 0x40, 0x1b, 0x76, 0x5d, 0x4f, 0xb0, 0x4c, 0x9c, 0x20, 0xf4, 0x13, - 0x2a, 0x58, 0xe9, 0x86, 0x13, 0x48, 0x15, 0x14, 0xc2, 0xf2, 0x20, 0x7e, 0x1d, 0x26, 0xef, 0x13, - 0xcc, 0x5d, 0xfc, 0xfd, 0xa3, 0x02, 0xab, 0xd9, 0x80, 0xc4, 0xc4, 0xd5, 0xd0, 0x09, 0x75, 0x76, - 0xcf, 0x39, 0x09, 0x5d, 0xe2, 0x76, 0x1e, 0x43, 0x8b, 0xb2, 0x11, 0x4f, 0x70, 0xc8, 0x28, 0xa7, - 0xa7, 0x2a, 0x8b, 0xea, 0xf6, 0x1c, 0x65, 0x87, 0xd9, 0x9a, 0x98, 0xde, 0x59, 0x3a, 0x1e, 0xc9, - 0x2c, 0x53, 0xf5, 0x73, 0x8f, 0xa5, 0xe3, 0x43, 0x91, 0x68, 0xaa, 0x74, 0xab, 0x59, 0xe9, 0xae, - 0x43, 0x53, 0xcd, 0xe2, 0x6a, 0xc4, 0x51, 0xa5, 0xa3, 0xc6, 0xf3, 0x9e, 0x58, 0x41, 0xff, 0xae, - 0xc0, 0x5a, 0x7f, 0x78, 0xfa, 0x4c, 0x73, 0xd2, 0xff, 0x3d, 0xa0, 0x6b, 0x47, 0xf5, 0xdb, 0x43, - 0xfb, 0x67, 0x05, 0xd6, 0xf2, 0x41, 0xed, 0x23, 0xc0, 0xea, 0x09, 0x74, 0x8e, 0xb0, 0x4f, 0x5d, - 0x39, 0x19, 0x67, 0x61, 0x2c, 0xc1, 0x0c, 0xe3, 0x98, 0x9b, 0x82, 0x57, 0x02, 0xfa, 0x0c, 0x5a, - 0xdb, 0x91, 0x1f, 0x25, 0x45, 0x35, 0x47, 0x2c, 0x18, 0x35, 0x29, 0xa0, 0xdf, 0x42, 0x4b, 0xce, - 0xdb, 0x99, 0xda, 0x3a, 0x34, 0x79, 0x1a, 0x86, 0xc4, 0x1f, 0x15, 0x48, 0x04, 0xd4, 0x92, 0x88, - 0x1a, 0x75, 0x61, 0x79, 0x87, 0x4c, 0x70, 0xea, 0xf3, 0x6f, 0x31, 0x27, 0x67, 0xf8, 0xc2, 0x6c, - 0x45, 0xdf, 0xc3, 0xbc, 0x2a, 0xc6, 0xbb, 0x21, 0x94, 0xd5, 0x68, 0xb5, 0x58, 0xa3, 0x36, 0xb4, - 0x77, 0x0f, 0xfa, 0xb2, 0x6b, 0x65, 0xe6, 0x36, 0xa0, 0x4d, 0xd9, 0x88, 0xd1, 0xd0, 0xf3, 0xc9, - 0x08, 0x3b, 0x05, 0x8b, 0xf3, 0x94, 0x1d, 0xc8, 0xe5, 0x9e, 0x63, 0x6c, 0xaa, 0x3e, 0x68, 0x15, - 0xfb, 0xe0, 0x16, 0x2c, 0xee, 0x1e, 0xf4, 0x83, 0x38, 0x4a, 0x78, 0xa1, 0xf9, 0x88, 0x5a, 0x26, - 0x6c, 0x44, 0xe5, 0xba, 0x9e, 0xeb, 0xeb, 0x84, 0x29, 0x3d, 0xf4, 0x1a, 0x16, 0x07, 0xd8, 0x19, - 0x44, 0x63, 0xea, 0x53, 0x9e, 0x9d, 0x55, 0x36, 0x72, 0x36, 0x62, 0x9c, 0x3a, 0x27, 0x17, 0x3a, - 0x86, 0x3a, 0x65, 0x07, 0x52, 0x16, 0x83, 0x00, 0x23, 0x3f, 0xa6, 0x24, 0x74, 0xc8, 0x28, 0x4c, - 0x03, 0x33, 0x56, 0x99, 0xb5, 0xfd, 0x34, 0x40, 0x9f, 0xc1, 0x7d, 0x19, 0x42, 0x32, 0xc0, 0x79, - 0x42, 0x89, 0x0f, 0x5c, 0xec, 0xe8, 0x10, 0xc4, 0x23, 0x7a, 0x01, 0x8b, 0x87, 0x09, 0x9e, 0x4c, - 0xa8, 0x63, 0x63, 0x9e, 0xe3, 0x7a, 0xb9, 0x41, 0x76, 0xa0, 0x96, 0x88, 0x0c, 0x10, 0x8e, 0x2c, - 0x5b, 0x3e, 0xa3, 0xef, 0xe1, 0x81, 0xde, 0x2a, 0x30, 0x29, 0xe4, 0xcb, 0x2a, 0xd4, 0x39, 0x49, - 0x02, 0x1a, 0x62, 0xdf, 0x44, 0x6e, 0x64, 0xd1, 0xe4, 0x18, 0x0e, 0x62, 0x5f, 0x99, 0xaa, 0xdb, - 0x5a, 0x42, 0xaf, 0x01, 0xd9, 0xc4, 0xa5, 0x09, 0x71, 0xf8, 0x0d, 0xe4, 0x71, 0x39, 0xac, 0x4b, - 0x09, 0x6d, 0x4d, 0x25, 0xf4, 0xdf, 0xe1, 0xb1, 0x31, 0x7b, 0x13, 0x07, 0x5c, 0xfb, 0xfd, 0x77, - 0xbb, 0x87, 0xa3, 0xdc, 0xc3, 0x4d, 0xa5, 0x7c, 0xe7, 0xc8, 0x7f, 0x9d, 0xa1, 0x6b, 0x93, 0x00, - 0x27, 0x27, 0x99, 0xa5, 0x0e, 0xd4, 0x5c, 0xe6, 0x98, 0xd6, 0x2d, 0x9f, 0xd1, 0x57, 0xb0, 0xf0, - 0x3a, 0x3c, 0x09, 0xa3, 0xb3, 0xb0, 0xa8, 0xf6, 0x96, 0x5f, 0x69, 0x47, 0xf0, 0x89, 0xd9, 0x75, - 0xe5, 0x9f, 0x85, 0xe7, 0xd3, 0x7f, 0x16, 0xae, 0x6b, 0x01, 0xa5, 0xff, 0x0d, 0xdb, 0xd0, 0xee, - 0xb1, 0x67, 0xef, 0xf9, 0x6f, 0xe7, 0x6b, 0x58, 0xee, 0xb1, 0x67, 0xef, 0xf7, 0xcb, 0x84, 0xc0, - 0xe2, 0x30, 0x60, 0xf4, 0x50, 0x52, 0x4c, 0x6e, 0x60, 0x09, 0x66, 0x26, 0x3e, 0xf6, 0xcc, 0xad, - 0x28, 0x21, 0xc3, 0xcd, 0x2a, 0xe3, 0xa6, 0x8a, 0xbd, 0x5a, 0x28, 0x76, 0xfd, 0xdb, 0xa4, 0x26, - 0xa1, 0xb4, 0xa8, 0x8b, 0xfe, 0x0c, 0x9f, 0x2a, 0x17, 0x92, 0xef, 0x0e, 0xd2, 0xf1, 0xe1, 0xde, - 0x51, 0xe9, 0x57, 0x43, 0x71, 0x7c, 0x68, 0xa9, 0xf1, 0x61, 0x19, 0x66, 0x9d, 0x28, 0x3a, 0xa1, - 0xe6, 0x4a, 0xb4, 0x84, 0x7e, 0x0f, 0x2b, 0x53, 0xb6, 0x86, 0x02, 0x69, 0x27, 0xf2, 0x45, 0x7d, - 0xc5, 0xfa, 0x59, 0xdb, 0xca, 0x64, 0xb4, 0x09, 0xcb, 0x53, 0x1b, 0x25, 0x4d, 0x5f, 0x43, 0xcf, - 0x3b, 0xd0, 0x9d, 0xd2, 0xd7, 0xa9, 0x74, 0x87, 0x14, 0xda, 0x87, 0xf9, 0x82, 0x95, 0xc3, 0xbd, - 0xa3, 0x2b, 0xf7, 0x6e, 0x40, 0x8d, 0xfb, 0xa7, 0x37, 0x8f, 0x5d, 0x52, 0x03, 0xed, 0xc0, 0x52, - 0xc1, 0x5e, 0x7e, 0x65, 0xbf, 0xd1, 0x16, 0x54, 0xea, 0x74, 0xf3, 0xd4, 0x29, 0x7b, 0xd7, 0x56, - 0x74, 0xe7, 0x7f, 0xfe, 0x11, 0x76, 0xfe, 0x32, 0x2f, 0x3d, 0xff, 0x00, 0xbc, 0xf4, 0x57, 0x58, - 0xef, 0x0f, 0x9f, 0x7f, 0x90, 0xc2, 0x7e, 0x02, 0xed, 0x1e, 0xf5, 0x04, 0xd0, 0xfd, 0x6f, 0x87, - 0x03, 0xc2, 0x13, 0xea, 0x88, 0x44, 0x0e, 0xe4, 0x93, 0x0c, 0xb4, 0x66, 0x6b, 0x09, 0xbd, 0x84, - 0x79, 0xad, 0x7b, 0xf7, 0xac, 0x7a, 0x01, 0x2d, 0xb1, 0xb7, 0x38, 0xb0, 0x16, 0xaf, 0xff, 0xa6, - 0x04, 0x4a, 0x61, 0x7e, 0x4f, 0xf4, 0x5e, 0x73, 0x6e, 0xd9, 0x32, 0x3d, 0x3f, 0x1a, 0x67, 0x88, - 0x29, 0xf7, 0x4d, 0xb5, 0x26, 0x21, 0xcb, 0x31, 0x75, 0x31, 0xc7, 0xbf, 0x2b, 0x61, 0xba, 0x23, - 0x56, 0xca, 0x0a, 0x5b, 0x9a, 0x0d, 0x72, 0x85, 0x2d, 0xf4, 0x17, 0xf1, 0x19, 0x5c, 0x70, 0x5b, - 0x82, 0xfb, 0xe5, 0x55, 0x70, 0x17, 0x72, 0xb8, 0x1c, 0x70, 0x19, 0x72, 0x1b, 0xda, 0x1a, 0xbf, - 0x77, 0xe4, 0xaf, 0xe9, 0x01, 0x68, 0x3c, 0x2b, 0x71, 0xfb, 0xe2, 0x7f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0xc5, 0x72, 0x43, 0xec, 0x2c, 0x18, 0x00, 0x00, + // 3014 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x39, 0x4d, 0x73, 0x1b, 0xc7, + 0xb1, 0x0f, 0x00, 0x49, 0x01, 0x0d, 0x82, 0x00, 0x97, 0x14, 0x0b, 0xa4, 0x24, 0x4b, 0x6f, 0xe5, + 0x0f, 0x3e, 0xc9, 0xa2, 0x9f, 0x29, 0x1a, 0xef, 0xc9, 0x2e, 0x27, 0x05, 0x91, 0x94, 0x8c, 0x08, + 0xa4, 0xe8, 0x25, 0x45, 0x27, 0x97, 0x6c, 0x06, 0xbb, 0xc3, 0xe5, 0x84, 0x8b, 0xdd, 0xf5, 0xcc, + 0x80, 0x14, 0xaf, 0xa9, 0x4a, 0xaa, 0x5c, 0xa9, 0xa4, 0x7c, 0x4a, 0xb9, 0x2a, 0x97, 0x9c, 0xf2, + 0x13, 0xf2, 0x1f, 0xf2, 0x83, 0x72, 0x4f, 0xcd, 0xd7, 0x7e, 0x80, 0xa0, 0x28, 0x59, 0x71, 0x95, + 0x6e, 0xdb, 0x3d, 0x3d, 0x3d, 0x3d, 0xdd, 0x3d, 0xfd, 0xb5, 0xd0, 0x44, 0x9c, 0x53, 0x32, 0x18, + 0x71, 0xbc, 0x96, 0xd0, 0x98, 0xc7, 0x56, 0x35, 0x88, 0x07, 0x41, 0x82, 0x12, 0xb2, 0xb2, 0x1c, + 0xc4, 0x71, 0x10, 0xe2, 0x4f, 0x24, 0x7e, 0x30, 0x3a, 0xfa, 0x04, 0x45, 0xe7, 0x8a, 0x68, 0xa5, + 0x2e, 0x89, 0x14, 0x60, 0xff, 0x0f, 0x34, 0x9f, 0x53, 0x12, 0x90, 0xa8, 0x6b, 0x58, 0x59, 0x4b, + 0x30, 0x13, 0x4b, 0x54, 0xbb, 0x74, 0xa7, 0xb4, 0xda, 0x70, 0x34, 0x64, 0x3f, 0x82, 0x5a, 0x97, + 0xed, 0xe3, 0x60, 0x88, 0x23, 0x6e, 0x59, 0x30, 0xc5, 0xcf, 0x13, 0xac, 0x49, 0xe4, 0xb7, 0xd5, + 0x86, 0x6b, 0xd1, 0x68, 0x38, 0xc0, 0x94, 0xb5, 0xcb, 0x77, 0x2a, 0xab, 0x0d, 0xc7, 0x80, 0xf6, + 0x63, 0x68, 0x76, 0xd9, 0x1e, 0xe2, 0xc7, 0xd9, 0x29, 0x9f, 0x40, 0x95, 0x29, 0x5e, 0xac, 0x5d, + 0xba, 0x53, 0x59, 0xad, 0xaf, 0x2f, 0xac, 0x19, 0xe9, 0xd7, 0xd2, 0x73, 0x9c, 0x94, 0xc8, 0x7e, + 0x00, 0xad, 0x5d, 0xfc, 0x92, 0x7f, 0x15, 0x27, 0x19, 0x93, 0x65, 0xa8, 0x46, 0xf8, 0x25, 0x77, + 0x8f, 0xe3, 0x44, 0x4a, 0x52, 0x73, 0xae, 0x45, 0x8a, 0xc6, 0xbe, 0x07, 0x4b, 0x3b, 0xa3, 0x90, + 0x93, 0xed, 0x97, 0x84, 0x6f, 0x11, 0xe6, 0x65, 0x9b, 0x5a, 0x50, 0x19, 0x62, 0x5f, 0x4b, 0x2e, + 0x3e, 0xed, 0x87, 0x60, 0xf5, 0x63, 0x0f, 0x85, 0x7b, 0x14, 0x1f, 0x65, 0x74, 0xb7, 0x00, 0x42, + 0x81, 0x75, 0x13, 0x8a, 0x8f, 0x34, 0x79, 0x2d, 0x34, 0x74, 0xf6, 0x0a, 0xb4, 0xbb, 0x3c, 0x1e, + 0x12, 0xaf, 0x1b, 0x04, 0x14, 0x07, 0x88, 0xe3, 0x74, 0xab, 0xfd, 0x73, 0x58, 0x30, 0xd8, 0x98, + 0x66, 0x1c, 0xe7, 0xa0, 0x8c, 0x84, 0x6e, 0x04, 0xa7, 0x32, 0x62, 0x42, 0x61, 0xc8, 0xf7, 0x29, + 0x66, 0xac, 0x5d, 0x51, 0xd2, 0x6b, 0xd0, 0xfe, 0x7f, 0x58, 0xdc, 0x8c, 0x87, 0xc3, 0x51, 0x44, + 0x38, 0xc1, 0x2c, 0xe3, 0x70, 0x07, 0xea, 0x5e, 0x86, 0x97, 0x8a, 0x6b, 0x38, 0x79, 0x94, 0xfd, + 0x11, 0x5c, 0x57, 0x06, 0x15, 0x47, 0xf7, 0xfc, 0xc2, 0xe1, 0xc4, 0xd7, 0x5a, 0x2a, 0x13, 0xdf, + 0x5e, 0x85, 0xc5, 0xcd, 0x70, 0xc4, 0x38, 0xa6, 0x7d, 0xc2, 0x78, 0x41, 0x3d, 0xc4, 0x57, 0xac, + 0x6b, 0x8e, 0xf8, 0xb4, 0xbf, 0x82, 0x66, 0x6f, 0xaf, 0xab, 0x24, 0x13, 0x57, 0x27, 0x2f, 0x85, + 0x6e, 0x12, 0xf9, 0xe5, 0x86, 0xd8, 0xf8, 0x49, 0x4d, 0x61, 0xfa, 0x38, 0x12, 0x2e, 0xa4, 0x00, + 0x79, 0xd9, 0x9a, 0xa3, 0x21, 0x3b, 0x80, 0xa5, 0x3e, 0x1a, 0xe0, 0x10, 0xfb, 0xe3, 0x0c, 0x97, + 0x60, 0x26, 0x14, 0x2b, 0xe6, 0x4e, 0x1a, 0x1a, 0x3b, 0xa8, 0x7c, 0xf9, 0x41, 0x95, 0xc2, 0x41, + 0x0f, 0x60, 0x7e, 0x3b, 0xf2, 0x50, 0xc2, 0x46, 0x21, 0xe2, 0x24, 0x8e, 0x76, 0xfb, 0x4e, 0x2f, + 0xaf, 0xee, 0x52, 0x51, 0xdd, 0x7b, 0x70, 0xd3, 0x89, 0x47, 0x1c, 0x6f, 0x11, 0xc6, 0x49, 0x14, + 0x8c, 0x08, 0x3b, 0xc6, 0xf4, 0xe0, 0x2c, 0x7e, 0xee, 0x71, 0xcc, 0xbb, 0xfb, 0xd6, 0x22, 0x4c, + 0x23, 0x7f, 0x98, 0xbe, 0x08, 0x05, 0x58, 0x2b, 0x50, 0x45, 0x8c, 0x91, 0x20, 0xc2, 0xbe, 0x96, + 0x2c, 0x85, 0xed, 0xe7, 0x70, 0xe3, 0x22, 0xc7, 0xf4, 0xd2, 0x45, 0x86, 0xb5, 0xd7, 0x61, 0xf8, + 0x35, 0xdc, 0xba, 0xc8, 0xf0, 0x49, 0x3c, 0xa2, 0x3f, 0x5e, 0xc6, 0x6d, 0x58, 0xde, 0xe6, 0xc7, + 0x98, 0x46, 0x98, 0xeb, 0xe7, 0xd6, 0xf3, 0x71, 0xc4, 0xc9, 0x11, 0xc1, 0x74, 0xe2, 0x03, 0x5f, + 0x84, 0xe9, 0x53, 0x14, 0x8e, 0xb0, 0xe4, 0x34, 0xeb, 0x28, 0xc0, 0xfe, 0x47, 0x09, 0xde, 0xdb, + 0x3e, 0xdc, 0xdb, 0x35, 0xbc, 0xba, 0x23, 0x1e, 0x8b, 0x17, 0x17, 0x9f, 0x62, 0x7a, 0x2e, 0x65, + 0xb6, 0xde, 0x87, 0x32, 0x55, 0xbe, 0x57, 0x5f, 0x5f, 0x5c, 0x53, 0xa1, 0x69, 0xcd, 0x84, 0xa6, + 0xb5, 0x6e, 0x74, 0xee, 0x94, 0xa9, 0x6f, 0x7d, 0x06, 0x15, 0xcc, 0x88, 0x64, 0x5e, 0x5f, 0xbf, + 0x9b, 0x45, 0x83, 0x4b, 0x85, 0x74, 0x04, 0xbd, 0xf5, 0xdf, 0x30, 0x8b, 0x35, 0x85, 0xcb, 0x51, + 0x20, 0x3d, 0xa1, 0xe1, 0xd4, 0x0d, 0xee, 0x00, 0x05, 0x42, 0x70, 0xe9, 0x4f, 0xed, 0x29, 0xa5, + 0x1b, 0x09, 0xd8, 0xff, 0x2a, 0xc1, 0x0d, 0x21, 0xf8, 0x4e, 0x77, 0x53, 0x58, 0xe6, 0x14, 0x53, + 0x4e, 0x18, 0x96, 0x61, 0xe7, 0x9d, 0x90, 0xfa, 0x36, 0xd4, 0x87, 0xc8, 0x73, 0x8d, 0xcf, 0x4e, + 0x49, 0x57, 0x81, 0x21, 0xf2, 0x8c, 0x17, 0xdd, 0x02, 0x20, 0x49, 0xba, 0x3e, 0x2d, 0xd7, 0x6b, + 0x24, 0x31, 0xcb, 0xd9, 0x9b, 0x9a, 0xc9, 0xbf, 0x29, 0xfb, 0xfb, 0x12, 0x7c, 0x28, 0xee, 0xdd, + 0x8b, 0xbc, 0x70, 0xc4, 0xc8, 0x29, 0x96, 0x81, 0xd2, 0x43, 0x8c, 0x6f, 0x67, 0xa7, 0xbf, 0x89, + 0x0a, 0xc6, 0xef, 0x52, 0xbe, 0x78, 0x97, 0xa2, 0xa8, 0x95, 0x31, 0x51, 0xed, 0xbf, 0x94, 0xa0, + 0x9d, 0xf7, 0x21, 0x13, 0xfe, 0x7f, 0x7a, 0x3b, 0x5c, 0x21, 0xd8, 0x77, 0x65, 0x98, 0x97, 0xba, + 0xda, 0x53, 0x81, 0xea, 0xdd, 0xf0, 0x8c, 0x1b, 0x50, 0x23, 0x89, 0xab, 0x23, 0x9f, 0xf2, 0x8b, + 0x2a, 0x49, 0x74, 0x28, 0xb5, 0xa1, 0x91, 0x2e, 0xca, 0xa8, 0x39, 0xad, 0x18, 0x18, 0x02, 0x11, + 0x37, 0x6f, 0x01, 0x04, 0x67, 0xe9, 0xad, 0x67, 0xd4, 0xad, 0x83, 0xb3, 0x5c, 0x78, 0x52, 0xef, + 0xe5, 0x5a, 0xfe, 0xbd, 0x7c, 0x5f, 0x82, 0x65, 0x1d, 0xbe, 0xa5, 0x46, 0x5e, 0x2f, 0x82, 0x2b, + 0x5d, 0x95, 0xaf, 0xd0, 0x55, 0x31, 0xce, 0x57, 0x2e, 0x8f, 0xf3, 0x53, 0x85, 0x38, 0xff, 0x35, + 0x2c, 0x4b, 0x8b, 0x1c, 0x20, 0x1a, 0x60, 0xbe, 0x83, 0x65, 0xb9, 0x71, 0x4c, 0x12, 0x19, 0xef, + 0x55, 0xba, 0x2d, 0xa5, 0xe9, 0x56, 0x48, 0xc2, 0xaf, 0x90, 0x84, 0xdb, 0x23, 0x68, 0x3d, 0x09, + 0xe3, 0xb3, 0xfd, 0x04, 0x7b, 0xc6, 0xe8, 0x13, 0x83, 0xe1, 0x8f, 0xcb, 0x4c, 0xb2, 0xba, 0x3a, + 0x3a, 0x62, 0x98, 0xeb, 0x58, 0xa4, 0x21, 0xfb, 0x0b, 0xa8, 0x9b, 0x63, 0x77, 0xba, 0x9b, 0x97, + 0xd5, 0x57, 0xc6, 0x62, 0xe5, 0x62, 0xfe, 0xfa, 0x12, 0xae, 0x9b, 0xcd, 0x9b, 0xf1, 0x30, 0x89, + 0x23, 0xe1, 0x56, 0x1c, 0x0f, 0x85, 0x0a, 0x74, 0x69, 0xd4, 0x70, 0xca, 0x71, 0x52, 0x8c, 0xe0, + 0x53, 0x26, 0x82, 0xff, 0x1a, 0xe6, 0x2f, 0x6c, 0x9f, 0x28, 0xc1, 0x67, 0x30, 0x4d, 0x38, 0x1e, + 0xaa, 0xfa, 0xae, 0xbe, 0x7e, 0x3b, 0xf3, 0xe9, 0x89, 0xc7, 0x3b, 0x8a, 0xda, 0xfe, 0x1c, 0x66, + 0xcd, 0xba, 0x34, 0xcc, 0x3d, 0x98, 0xa6, 0xa3, 0x10, 0x9b, 0xc2, 0x6f, 0xb2, 0x2d, 0x14, 0x89, + 0xed, 0x41, 0xf3, 0x70, 0x6f, 0xb7, 0xb0, 0xfd, 0xf5, 0x5e, 0x5f, 0x7a, 0x48, 0xf9, 0xea, 0x43, + 0x36, 0x00, 0x9e, 0x27, 0xe8, 0xdb, 0x11, 0x96, 0xfc, 0x5b, 0x50, 0x39, 0xc1, 0xe7, 0xf2, 0x80, + 0x59, 0x47, 0x7c, 0x5e, 0x92, 0xf8, 0xfe, 0x5e, 0x82, 0x56, 0x9f, 0xed, 0xc6, 0x3e, 0xde, 0xc2, + 0xcc, 0xa3, 0x24, 0xe1, 0x31, 0x15, 0x9b, 0x11, 0x33, 0x49, 0x58, 0x7c, 0x5a, 0x2b, 0x50, 0x1b, + 0x04, 0x89, 0x1b, 0x32, 0x97, 0x98, 0x1c, 0x7c, 0x6d, 0x10, 0x24, 0x7d, 0xd6, 0xf3, 0xad, 0x3b, + 0x30, 0x1b, 0xb3, 0xe4, 0xc8, 0x45, 0x14, 0x23, 0xb1, 0xac, 0x1c, 0x1f, 0x04, 0xae, 0x4b, 0x31, + 0xea, 0xf9, 0xd6, 0x7b, 0x00, 0x09, 0xc3, 0x23, 0x3f, 0x8e, 0x62, 0x1f, 0x4b, 0x9f, 0xa9, 0x3a, + 0x39, 0x8c, 0x7c, 0xed, 0x41, 0xe2, 0x52, 0xf1, 0x0a, 0xa8, 0x60, 0xa1, 0xd2, 0x40, 0x9d, 0x04, + 0x89, 0x7c, 0x19, 0xb4, 0xe7, 0xdb, 0x3f, 0x94, 0x85, 0xa0, 0x7d, 0x12, 0x9d, 0xe4, 0x04, 0xb5, + 0xa1, 0x11, 0x92, 0xe8, 0xc4, 0x55, 0x35, 0x2e, 0x31, 0x05, 0x71, 0x5d, 0x20, 0x65, 0x35, 0xdc, + 0xf3, 0xad, 0xf7, 0x61, 0x4e, 0xd2, 0x50, 0x3c, 0x8c, 0x39, 0xce, 0xe4, 0x9f, 0x15, 0x58, 0x47, + 0x22, 0x7b, 0xbe, 0xb5, 0x06, 0x0b, 0x24, 0xe2, 0x98, 0x1e, 0x21, 0x0f, 0xcb, 0x98, 0xe2, 0x92, + 0xe4, 0x74, 0x43, 0xfb, 0xfd, 0x7c, 0xba, 0x24, 0xc2, 0x45, 0x2f, 0x39, 0xdd, 0xb0, 0x3e, 0x06, + 0x2b, 0xc2, 0x24, 0x38, 0x1e, 0xc4, 0x34, 0x47, 0xae, 0x1e, 0x76, 0xcb, 0xac, 0xa4, 0xd4, 0x13, + 0xb9, 0x77, 0xf4, 0x35, 0x2f, 0x70, 0xef, 0x4c, 0xe4, 0xde, 0xd1, 0x21, 0x6e, 0x9c, 0x7b, 0xc7, + 0xc6, 0x60, 0xf5, 0x75, 0x04, 0xcb, 0xe9, 0xe6, 0x23, 0x68, 0x92, 0xc4, 0xa5, 0x18, 0x79, 0xc7, + 0x68, 0x40, 0x42, 0xc2, 0xcf, 0x75, 0x3d, 0x3c, 0x47, 0x12, 0x27, 0x87, 0xb5, 0x3e, 0x84, 0xa6, + 0xb4, 0x9f, 0x54, 0xbf, 0x2b, 0xdf, 0x8b, 0x7a, 0x9a, 0x0d, 0x81, 0x56, 0xa1, 0xe9, 0x3c, 0xc1, + 0xf6, 0x53, 0x00, 0xe5, 0x29, 0xd2, 0xc1, 0x1e, 0x99, 0xce, 0x42, 0xda, 0x54, 0x39, 0xf2, 0x4a, + 0xf6, 0x96, 0xc6, 0x7d, 0x4a, 0x77, 0x1d, 0x02, 0x69, 0xff, 0xb3, 0x24, 0x38, 0x09, 0x53, 0xbe, + 0x25, 0x27, 0xeb, 0x0b, 0xa8, 0x6b, 0xb3, 0xca, 0xbd, 0xe5, 0x2b, 0xf7, 0x82, 0x22, 0x97, 0x9b, + 0x37, 0xa1, 0x29, 0x1d, 0xc3, 0x4f, 0x97, 0xa5, 0xb9, 0xc7, 0x18, 0x14, 0x3d, 0xce, 0x91, 0xbe, + 0x94, 0xc1, 0x22, 0xe9, 0xcf, 0x19, 0xe5, 0x1f, 0x6e, 0xbc, 0xed, 0x7d, 0x7a, 0x30, 0xaf, 0xe3, + 0x71, 0x4e, 0x28, 0x75, 0xab, 0x9b, 0x79, 0x0e, 0xe3, 0xc6, 0x76, 0x5a, 0xc9, 0x18, 0xa6, 0x28, + 0x58, 0xe7, 0x1d, 0x12, 0x6c, 0x00, 0xb3, 0x7d, 0x26, 0x7c, 0x57, 0xe7, 0xa5, 0xd5, 0x5c, 0x8c, + 0x9e, 0x93, 0x21, 0x2e, 0x93, 0xa7, 0xef, 0xf4, 0x84, 0xeb, 0xe9, 0xc8, 0xbd, 0x0a, 0x53, 0x51, + 0x48, 0xc9, 0x2b, 0xb3, 0x9f, 0xa4, 0xb0, 0xbf, 0x2b, 0xc1, 0xe2, 0x8e, 0xf2, 0x72, 0xc1, 0x23, + 0x6b, 0x0c, 0x57, 0x61, 0xe6, 0x08, 0x0d, 0x49, 0x78, 0xae, 0xaf, 0xdf, 0xca, 0x45, 0x7f, 0x89, + 0x77, 0xf4, 0xba, 0x28, 0x4f, 0x4c, 0x5b, 0xae, 0xc2, 0x6f, 0xcd, 0xa9, 0xea, 0xbe, 0x9c, 0x89, + 0xb8, 0x2c, 0xce, 0x11, 0xb5, 0xd6, 0x2b, 0xe2, 0xb2, 0x24, 0xb1, 0x23, 0x58, 0xda, 0x49, 0x5e, + 0x44, 0xf4, 0x6d, 0x84, 0x79, 0x93, 0xf3, 0xfe, 0x54, 0x82, 0x95, 0xb4, 0xed, 0x63, 0x22, 0xe1, + 0x90, 0x23, 0xe2, 0x6d, 0xbf, 0xe4, 0x38, 0xf2, 0xb1, 0x6f, 0xdd, 0x85, 0x06, 0x61, 0x2e, 0xa7, + 0x28, 0x62, 0x84, 0x93, 0x53, 0xa5, 0xf7, 0xaa, 0x33, 0x4b, 0xd8, 0x41, 0x8a, 0xb3, 0x96, 0xa1, + 0xca, 0x46, 0x83, 0x2c, 0x16, 0x34, 0x9c, 0x6b, 0x6c, 0x34, 0x10, 0xa6, 0xd0, 0x05, 0x49, 0x25, + 0x2d, 0x48, 0x6e, 0x43, 0x5d, 0x39, 0x95, 0x6a, 0xdc, 0x54, 0x41, 0xa0, 0xfc, 0xac, 0x2b, 0x30, + 0xf6, 0x0f, 0x25, 0xb8, 0xd1, 0xdb, 0x3b, 0xdd, 0xd0, 0x95, 0xd6, 0x7f, 0x5c, 0xa0, 0x4b, 0x07, + 0x10, 0x57, 0x8b, 0xf6, 0xe7, 0x12, 0xdc, 0xc8, 0xda, 0xcf, 0x77, 0x40, 0x57, 0xf7, 0xc0, 0x3a, + 0x44, 0x21, 0xf1, 0x65, 0xbf, 0x9f, 0x8a, 0xb1, 0x08, 0xd3, 0x8c, 0x23, 0x6e, 0xca, 0x18, 0x05, + 0xd8, 0x1f, 0x40, 0x63, 0x33, 0x0e, 0x63, 0x9a, 0x27, 0xf3, 0x04, 0xc2, 0x90, 0x49, 0xc0, 0xfe, + 0x5f, 0x68, 0xc8, 0x29, 0x42, 0x4a, 0x76, 0x1b, 0xea, 0x7c, 0x14, 0x45, 0x38, 0x74, 0x73, 0xa5, + 0x11, 0x28, 0x94, 0x8c, 0xf3, 0x6d, 0x58, 0xda, 0xc2, 0x47, 0x68, 0x14, 0xf2, 0xa7, 0x88, 0xe3, + 0x33, 0x74, 0x6e, 0xb6, 0xda, 0xcf, 0x60, 0x4e, 0x95, 0x18, 0x6f, 0xa6, 0xa1, 0xb4, 0xf2, 0xa8, + 0xe4, 0x2b, 0x0f, 0x07, 0x5a, 0xdb, 0xfb, 0x3d, 0x59, 0x8b, 0xa7, 0xec, 0x56, 0xa1, 0x45, 0x98, + 0xcb, 0x48, 0x14, 0x84, 0xd8, 0x45, 0x5e, 0x8e, 0xe3, 0x1c, 0x61, 0xfb, 0x12, 0xdd, 0xf5, 0x0c, + 0x4f, 0x55, 0xdd, 0x97, 0xf3, 0xd5, 0xfd, 0x3a, 0x2c, 0x6c, 0xef, 0xf7, 0x86, 0x49, 0x4c, 0x79, + 0xae, 0xa4, 0x16, 0x6f, 0x19, 0x33, 0x97, 0x48, 0xbc, 0x9e, 0x56, 0x54, 0x31, 0x53, 0x74, 0xf6, + 0x0b, 0x58, 0xd8, 0x41, 0xde, 0x4e, 0xac, 0xb2, 0x61, 0x2a, 0x8a, 0x68, 0x4f, 0x98, 0xcb, 0x38, + 0xf1, 0x4e, 0xce, 0xb5, 0x0c, 0x55, 0xc2, 0xf6, 0x25, 0x2c, 0xda, 0x1b, 0x86, 0xbf, 0x1d, 0xe1, + 0xc8, 0xc3, 0x6e, 0x34, 0x1a, 0x9a, 0x66, 0xd1, 0xe0, 0x76, 0x47, 0x43, 0xfb, 0x03, 0x98, 0x57, + 0xb5, 0xcb, 0x0e, 0xca, 0x1c, 0xaa, 0x05, 0x95, 0x21, 0xf2, 0xb4, 0x08, 0xe2, 0xd3, 0x7e, 0x04, + 0x0b, 0x07, 0x14, 0x1d, 0x1d, 0x11, 0xcf, 0x41, 0x3c, 0xd3, 0xeb, 0x78, 0xd9, 0x6f, 0xc1, 0x14, + 0x15, 0x1e, 0x20, 0x0e, 0x2a, 0x3b, 0xf2, 0xdb, 0x7e, 0x06, 0xd7, 0xf5, 0x56, 0xa1, 0x93, 0x9c, + 0xbf, 0xac, 0x40, 0x95, 0x63, 0x3a, 0x24, 0x11, 0x0a, 0x8d, 0xe4, 0x06, 0x16, 0xa5, 0x3b, 0x43, + 0xc3, 0x24, 0x54, 0xac, 0xaa, 0x8e, 0x86, 0xec, 0x17, 0x60, 0x3b, 0xd8, 0x27, 0x14, 0x7b, 0xfc, + 0x15, 0xc1, 0x63, 0x5c, 0xac, 0x31, 0x87, 0x2e, 0x5f, 0x70, 0xe8, 0xdf, 0xc0, 0x5d, 0xc3, 0xf6, + 0x55, 0x31, 0xe0, 0xd2, 0xa9, 0xd6, 0xd5, 0x27, 0x1c, 0x66, 0x27, 0xbc, 0xea, 0x29, 0xbf, 0xb1, + 0xe4, 0xf7, 0x53, 0xed, 0x3a, 0x78, 0x88, 0xe8, 0x49, 0xca, 0xc9, 0x82, 0x29, 0x9f, 0x79, 0xa6, + 0x21, 0x91, 0xdf, 0xf6, 0x17, 0xd0, 0x7c, 0x11, 0x9d, 0x44, 0xf1, 0x59, 0x94, 0x27, 0x7b, 0xcd, + 0xd9, 0xd3, 0x21, 0xdc, 0x34, 0xbb, 0x26, 0xce, 0x4b, 0x3b, 0x17, 0xe7, 0xa5, 0x97, 0xa5, 0x80, + 0xc2, 0x14, 0x75, 0x13, 0x5a, 0x5d, 0xb6, 0xf1, 0x96, 0x13, 0xeb, 0xc7, 0xb0, 0xd4, 0x65, 0x1b, + 0x6f, 0x37, 0x08, 0xc6, 0xb0, 0xb0, 0x37, 0x64, 0xe4, 0x40, 0x86, 0x98, 0x8c, 0xc1, 0x22, 0x4c, + 0x1f, 0x85, 0x28, 0x30, 0x56, 0x51, 0x40, 0xaa, 0xb7, 0x72, 0x51, 0x6f, 0xea, 0xb1, 0x57, 0x72, + 0x8f, 0x5d, 0x0f, 0x83, 0xa7, 0xa4, 0x2a, 0xcb, 0xc4, 0xb7, 0x7f, 0x01, 0xef, 0xa9, 0x23, 0x64, + 0xbc, 0xdb, 0x1f, 0x0d, 0x0e, 0xfa, 0x87, 0x85, 0x01, 0x6a, 0xbe, 0x29, 0x6a, 0xa8, 0xa6, 0x68, + 0x09, 0x66, 0xbc, 0x38, 0x3e, 0x21, 0xc6, 0x24, 0x1a, 0xb2, 0xff, 0x0f, 0x96, 0x2f, 0xf0, 0xda, + 0x13, 0x9a, 0xf6, 0xe2, 0x50, 0xbc, 0xaf, 0x44, 0x7f, 0x6b, 0x5e, 0x29, 0x6c, 0xaf, 0xc1, 0xd2, + 0x85, 0x8d, 0x32, 0x4c, 0x5f, 0x12, 0x9e, 0xb7, 0xa0, 0x7d, 0x81, 0x5e, 0xbb, 0xd2, 0x1b, 0xb8, + 0xd0, 0x2e, 0xcc, 0xe5, 0xb8, 0x1c, 0xf4, 0x0f, 0x27, 0xee, 0x15, 0x95, 0x56, 0x78, 0xfa, 0xea, + 0x66, 0x52, 0x52, 0xd8, 0x5b, 0xb0, 0x98, 0xe3, 0x97, 0x99, 0xec, 0x63, 0xcd, 0x41, 0xb9, 0x4e, + 0x3b, 0x73, 0x9d, 0xe2, 0xe9, 0x9a, 0x8b, 0xce, 0xfc, 0x9d, 0x77, 0x30, 0xf3, 0x17, 0xe3, 0x52, + 0xe7, 0x27, 0x88, 0x4b, 0xbf, 0x82, 0xdb, 0xbd, 0xbd, 0xce, 0x4f, 0xf2, 0xb0, 0xef, 0x41, 0xab, + 0x4b, 0x02, 0xa1, 0xe8, 0xde, 0xd3, 0xbd, 0x1d, 0xcc, 0x29, 0xf1, 0x84, 0x23, 0x0f, 0xe5, 0x97, + 0x14, 0x74, 0xca, 0xd1, 0x90, 0xfd, 0x39, 0xcc, 0x69, 0xda, 0x37, 0xf7, 0xaa, 0x47, 0xd0, 0x10, + 0x7b, 0xf3, 0x05, 0x6b, 0xde, 0xfc, 0xaf, 0x72, 0xa0, 0x11, 0xcc, 0xf5, 0x45, 0xee, 0x35, 0xf7, + 0x96, 0x29, 0x33, 0x08, 0xe3, 0x41, 0xaa, 0x31, 0xdd, 0xa9, 0x2b, 0x9c, 0x54, 0x59, 0xa6, 0x53, + 0x1f, 0x71, 0xf4, 0x69, 0x41, 0xa7, 0x5b, 0x02, 0x53, 0x24, 0x58, 0x37, 0x83, 0x86, 0x94, 0x60, + 0xdd, 0xfe, 0x06, 0x96, 0x0b, 0xc7, 0x16, 0xd4, 0xfd, 0xf9, 0x24, 0x75, 0xe7, 0x7c, 0xb8, 0x28, + 0x70, 0x51, 0xe5, 0x7f, 0x2d, 0x41, 0x5d, 0xf5, 0x47, 0x4f, 0x64, 0x94, 0x5a, 0x81, 0x6a, 0x7c, + 0x8a, 0x69, 0x18, 0x23, 0xdf, 0xa4, 0x58, 0x03, 0xcb, 0xdf, 0x15, 0x9c, 0x23, 0xef, 0x58, 0xff, + 0xae, 0xa8, 0x3a, 0x29, 0x2c, 0xd6, 0xf0, 0x4b, 0x8e, 0xa9, 0x48, 0xcd, 0x15, 0xb5, 0x66, 0x60, + 0x39, 0x75, 0x19, 0x50, 0x3d, 0x1e, 0x11, 0x9f, 0xc2, 0xa8, 0x6a, 0x26, 0x22, 0x27, 0x05, 0x55, + 0x47, 0x43, 0x22, 0xf2, 0xe9, 0x71, 0x40, 0xd5, 0x29, 0x9f, 0x76, 0xec, 0x3f, 0xca, 0x86, 0xba, + 0xf7, 0x74, 0xef, 0x89, 0x09, 0xa1, 0x7e, 0x7c, 0x16, 0x69, 0xc1, 0xe4, 0xb7, 0x75, 0x0b, 0x20, + 0x8a, 0xdd, 0x51, 0x24, 0x47, 0xe4, 0x5a, 0xac, 0x5a, 0x14, 0xbf, 0x50, 0x08, 0xf1, 0x14, 0x8d, + 0x3b, 0x67, 0x0f, 0xaa, 0xea, 0xcc, 0x6a, 0x87, 0x56, 0x3e, 0xff, 0x01, 0xcc, 0x25, 0x34, 0x4e, + 0x50, 0x80, 0x44, 0xc3, 0xcd, 0x18, 0xd2, 0xb2, 0x36, 0x52, 0xec, 0x2e, 0x63, 0xc8, 0x7e, 0x08, + 0xb5, 0x3e, 0xdb, 0xa7, 0x0e, 0x8a, 0x02, 0xe9, 0x59, 0x03, 0x9c, 0xfd, 0x87, 0x55, 0x80, 0xb8, + 0x2a, 0x8e, 0xcc, 0x20, 0x46, 0x7c, 0x8a, 0xae, 0xa5, 0x25, 0x76, 0x6d, 0xa2, 0x44, 0xcd, 0x25, + 0x08, 0x96, 0x07, 0x92, 0xe4, 0x74, 0xc3, 0x65, 0xa3, 0x44, 0x94, 0x6a, 0xd8, 0xe8, 0xba, 0x21, + 0xb0, 0xfb, 0x06, 0xa9, 0xc9, 0x3a, 0x39, 0xb2, 0x72, 0x4a, 0xd6, 0xc9, 0xc8, 0xee, 0xc3, 0x0c, + 0x15, 0x32, 0x99, 0x2e, 0x6a, 0x21, 0xdf, 0x6a, 0x6a, 0x79, 0x1d, 0x4d, 0x62, 0x7f, 0x29, 0xba, + 0xe7, 0x7d, 0x2a, 0x87, 0x48, 0x8f, 0xc3, 0xd8, 0x3b, 0xc9, 0x6d, 0x2f, 0x5d, 0xbd, 0xfd, 0x0f, + 0x15, 0x68, 0xf6, 0x33, 0xdf, 0x93, 0x3d, 0xb4, 0x05, 0x53, 0x11, 0x1a, 0x62, 0x1d, 0x49, 0xe4, + 0xb7, 0x75, 0xdf, 0xe4, 0x40, 0xd5, 0xd3, 0x5e, 0x1f, 0xef, 0xc6, 0xa5, 0x41, 0x4d, 0x6a, 0xfc, + 0x10, 0x9a, 0xca, 0x48, 0xd9, 0xa0, 0x4c, 0xc5, 0x3d, 0x65, 0x3b, 0x33, 0x2a, 0xb3, 0xee, 0x83, + 0x35, 0x46, 0xe7, 0x9e, 0x76, 0xf4, 0x6c, 0xaa, 0x59, 0x20, 0x3d, 0xec, 0xa8, 0x3a, 0x97, 0x30, + 0x39, 0xbd, 0x93, 0x6e, 0x36, 0x2b, 0xea, 0x5c, 0xc2, 0xba, 0x14, 0x23, 0x39, 0xe8, 0x95, 0x05, + 0xbf, 0x74, 0xb6, 0x59, 0x47, 0x43, 0xd6, 0x26, 0x34, 0x19, 0x75, 0xbd, 0x9c, 0xad, 0xe4, 0x94, + 0x7d, 0x6c, 0x9c, 0x50, 0xb4, 0xa6, 0x33, 0xc7, 0x8a, 0xd6, 0xbd, 0x0b, 0x0d, 0x46, 0x5d, 0x14, + 0x06, 0x31, 0x25, 0xfc, 0x78, 0xc8, 0xda, 0x55, 0x79, 0xc6, 0x2c, 0xa3, 0xdd, 0x14, 0x67, 0xfd, + 0x0c, 0xe6, 0x18, 0xd5, 0xf3, 0xbd, 0x81, 0xb0, 0x43, 0xbb, 0x26, 0x0f, 0x6a, 0x17, 0x0f, 0xca, + 0xec, 0x24, 0xf6, 0x67, 0x90, 0xfd, 0xfb, 0xa9, 0x82, 0x21, 0xfa, 0x24, 0x3a, 0x99, 0x68, 0x88, + 0x09, 0xba, 0x2d, 0xbf, 0xbe, 0x6e, 0x2b, 0x93, 0x75, 0xbb, 0x0a, 0x2d, 0x3d, 0x9e, 0xca, 0xb8, + 0x2a, 0x33, 0xcc, 0x29, 0x7c, 0xca, 0xf6, 0x01, 0x2c, 0x8c, 0x53, 0xba, 0xe9, 0x80, 0xb0, 0x55, + 0x24, 0x3e, 0xec, 0x88, 0x40, 0x28, 0xa3, 0xa8, 0x1b, 0xd0, 0x78, 0x94, 0x48, 0xe3, 0x34, 0x1c, + 0x90, 0xa8, 0xa7, 0x02, 0x63, 0xdd, 0x83, 0x79, 0x5f, 0xf5, 0x70, 0x2e, 0xc7, 0xae, 0xce, 0x0c, + 0xea, 0x47, 0x48, 0x53, 0x2f, 0x1c, 0x60, 0x9d, 0x3a, 0x6e, 0x01, 0x90, 0x20, 0x31, 0x44, 0x55, + 0xf5, 0x13, 0x80, 0x04, 0x49, 0x96, 0x59, 0xb4, 0x0f, 0xd4, 0x0a, 0x3e, 0x70, 0x13, 0x6a, 0x03, + 0x14, 0xf9, 0x67, 0xc4, 0xe7, 0xc7, 0x6d, 0x90, 0x7d, 0x49, 0x86, 0xb0, 0x3e, 0x85, 0x45, 0x8a, + 0x19, 0xa6, 0xa7, 0x68, 0x10, 0x62, 0x37, 0x23, 0xac, 0x4b, 0xc2, 0x85, 0x6c, 0xed, 0x71, 0x7e, + 0xcb, 0x28, 0x52, 0x0b, 0xd8, 0xcf, 0x6d, 0x99, 0xbd, 0x53, 0x11, 0x5b, 0xb2, 0xb5, 0x6c, 0xcb, + 0x2a, 0xb4, 0x84, 0x0b, 0xf9, 0xbf, 0x45, 0x1e, 0x8e, 0xbc, 0x73, 0x97, 0x11, 0xbf, 0xdd, 0x90, + 0x17, 0x98, 0x63, 0xb4, 0x6b, 0xd0, 0xfb, 0xc4, 0xb7, 0x7f, 0x57, 0x82, 0xf9, 0x9c, 0x1f, 0xe8, + 0xd9, 0xd3, 0xa7, 0x20, 0x2e, 0xea, 0x66, 0x65, 0x68, 0xbd, 0x38, 0x80, 0x32, 0x21, 0xd5, 0xa9, + 0x92, 0x20, 0x51, 0xc1, 0x35, 0x53, 0x47, 0xb9, 0xa0, 0x0e, 0x5b, 0x7a, 0xb3, 0x1e, 0x92, 0xb1, + 0x74, 0x0c, 0x5e, 0x67, 0x7a, 0xce, 0x25, 0x84, 0xf8, 0x9b, 0xcc, 0x22, 0x59, 0x46, 0x7a, 0x00, + 0x53, 0xb9, 0x51, 0xdc, 0x72, 0xfe, 0xe4, 0x42, 0xe8, 0x70, 0x24, 0x99, 0x20, 0x0f, 0x49, 0x74, + 0xa2, 0x63, 0xc5, 0x64, 0x72, 0xe1, 0xe0, 0x8e, 0x24, 0xb3, 0x1e, 0x16, 0xfe, 0xde, 0xd4, 0xd7, + 0x6f, 0x4c, 0xdc, 0xa0, 0x7f, 0x09, 0x9a, 0x9f, 0x51, 0x0e, 0xb4, 0x74, 0xa1, 0xf0, 0x23, 0x0b, + 0xf5, 0x8b, 0x9d, 0xfe, 0x3d, 0x26, 0x07, 0xc7, 0x7a, 0x96, 0x67, 0x2d, 0x40, 0xb3, 0xbf, 0xef, + 0x0a, 0xd0, 0x7d, 0xb1, 0xfb, 0x6c, 0xf7, 0xf9, 0x37, 0xbb, 0xad, 0xff, 0xb2, 0x5a, 0x30, 0x6b, + 0x90, 0xbb, 0xcf, 0xb7, 0xb6, 0x5b, 0xa5, 0x3c, 0xa6, 0xdf, 0xdb, 0x7d, 0xd6, 0x2a, 0x5b, 0xd7, + 0x61, 0xde, 0x60, 0xf6, 0x9c, 0xed, 0x27, 0xbd, 0x5f, 0xba, 0x87, 0x1b, 0xad, 0xca, 0x24, 0x74, + 0xa7, 0x35, 0x35, 0x98, 0x91, 0x55, 0xc9, 0xc3, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xfb, + 0xd9, 0x4c, 0x60, 0x24, 0x00, 0x00, } |