node.pb.go 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: grpc/node.proto
  3. package nodepb
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. math "math"
  8. )
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  18. type LoginRequest struct {
  19. Macaddress string `protobuf:"bytes,1,opt,name=macaddress,proto3" json:"macaddress,omitempty"`
  20. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  21. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  22. XXX_unrecognized []byte `json:"-"`
  23. XXX_sizecache int32 `json:"-"`
  24. }
  25. func (m *LoginRequest) Reset() { *m = LoginRequest{} }
  26. func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
  27. func (*LoginRequest) ProtoMessage() {}
  28. func (*LoginRequest) Descriptor() ([]byte, []int) {
  29. return fileDescriptor_d13bd996b67da4ef, []int{0}
  30. }
  31. func (m *LoginRequest) XXX_Unmarshal(b []byte) error {
  32. return xxx_messageInfo_LoginRequest.Unmarshal(m, b)
  33. }
  34. func (m *LoginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  35. return xxx_messageInfo_LoginRequest.Marshal(b, m, deterministic)
  36. }
  37. func (m *LoginRequest) XXX_Merge(src proto.Message) {
  38. xxx_messageInfo_LoginRequest.Merge(m, src)
  39. }
  40. func (m *LoginRequest) XXX_Size() int {
  41. return xxx_messageInfo_LoginRequest.Size(m)
  42. }
  43. func (m *LoginRequest) XXX_DiscardUnknown() {
  44. xxx_messageInfo_LoginRequest.DiscardUnknown(m)
  45. }
  46. var xxx_messageInfo_LoginRequest proto.InternalMessageInfo
  47. func (m *LoginRequest) GetMacaddress() string {
  48. if m != nil {
  49. return m.Macaddress
  50. }
  51. return ""
  52. }
  53. func (m *LoginRequest) GetPassword() string {
  54. if m != nil {
  55. return m.Password
  56. }
  57. return ""
  58. }
  59. type LoginResponse struct {
  60. Accesstoken string `protobuf:"bytes,1,opt,name=accesstoken,proto3" json:"accesstoken,omitempty"`
  61. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  62. XXX_unrecognized []byte `json:"-"`
  63. XXX_sizecache int32 `json:"-"`
  64. }
  65. func (m *LoginResponse) Reset() { *m = LoginResponse{} }
  66. func (m *LoginResponse) String() string { return proto.CompactTextString(m) }
  67. func (*LoginResponse) ProtoMessage() {}
  68. func (*LoginResponse) Descriptor() ([]byte, []int) {
  69. return fileDescriptor_d13bd996b67da4ef, []int{1}
  70. }
  71. func (m *LoginResponse) XXX_Unmarshal(b []byte) error {
  72. return xxx_messageInfo_LoginResponse.Unmarshal(m, b)
  73. }
  74. func (m *LoginResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  75. return xxx_messageInfo_LoginResponse.Marshal(b, m, deterministic)
  76. }
  77. func (m *LoginResponse) XXX_Merge(src proto.Message) {
  78. xxx_messageInfo_LoginResponse.Merge(m, src)
  79. }
  80. func (m *LoginResponse) XXX_Size() int {
  81. return xxx_messageInfo_LoginResponse.Size(m)
  82. }
  83. func (m *LoginResponse) XXX_DiscardUnknown() {
  84. xxx_messageInfo_LoginResponse.DiscardUnknown(m)
  85. }
  86. var xxx_messageInfo_LoginResponse proto.InternalMessageInfo
  87. func (m *LoginResponse) GetAccesstoken() string {
  88. if m != nil {
  89. return m.Accesstoken
  90. }
  91. return ""
  92. }
  93. type Node struct {
  94. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  95. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  96. Address string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
  97. Listenport int32 `protobuf:"varint,4,opt,name=listenport,proto3" json:"listenport,omitempty"`
  98. Publickey string `protobuf:"bytes,5,opt,name=publickey,proto3" json:"publickey,omitempty"`
  99. Endpoint string `protobuf:"bytes,6,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
  100. Macaddress string `protobuf:"bytes,7,opt,name=macaddress,proto3" json:"macaddress,omitempty"`
  101. Password string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
  102. Nodegroup string `protobuf:"bytes,9,opt,name=nodegroup,proto3" json:"nodegroup,omitempty"`
  103. Ispending bool `protobuf:"varint,10,opt,name=ispending,proto3" json:"ispending,omitempty"`
  104. Postup string `protobuf:"bytes,11,opt,name=postup,proto3" json:"postup,omitempty"`
  105. Preup string `protobuf:"bytes,12,opt,name=preup,proto3" json:"preup,omitempty"`
  106. Keepalive int32 `protobuf:"varint,13,opt,name=keepalive,proto3" json:"keepalive,omitempty"`
  107. Saveconfig bool `protobuf:"varint,14,opt,name=saveconfig,proto3" json:"saveconfig,omitempty"`
  108. Accesskey string `protobuf:"bytes,15,opt,name=accesskey,proto3" json:"accesskey,omitempty"`
  109. Interface string `protobuf:"bytes,16,opt,name=interface,proto3" json:"interface,omitempty"`
  110. Lastcheckin string `protobuf:"bytes,17,opt,name=lastcheckin,proto3" json:"lastcheckin,omitempty"`
  111. Lastmodified string `protobuf:"bytes,18,opt,name=lastmodified,proto3" json:"lastmodified,omitempty"`
  112. Checkininterval int32 `protobuf:"varint,19,opt,name=checkininterval,proto3" json:"checkininterval,omitempty"`
  113. Localaddress string `protobuf:"bytes,20,opt,name=localaddress,proto3" json:"localaddress,omitempty"`
  114. Postchanges string `protobuf:"bytes,21,opt,name=postchanges,proto3" json:"postchanges,omitempty"`
  115. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  116. XXX_unrecognized []byte `json:"-"`
  117. XXX_sizecache int32 `json:"-"`
  118. }
  119. func (m *Node) Reset() { *m = Node{} }
  120. func (m *Node) String() string { return proto.CompactTextString(m) }
  121. func (*Node) ProtoMessage() {}
  122. func (*Node) Descriptor() ([]byte, []int) {
  123. return fileDescriptor_d13bd996b67da4ef, []int{2}
  124. }
  125. func (m *Node) XXX_Unmarshal(b []byte) error {
  126. return xxx_messageInfo_Node.Unmarshal(m, b)
  127. }
  128. func (m *Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  129. return xxx_messageInfo_Node.Marshal(b, m, deterministic)
  130. }
  131. func (m *Node) XXX_Merge(src proto.Message) {
  132. xxx_messageInfo_Node.Merge(m, src)
  133. }
  134. func (m *Node) XXX_Size() int {
  135. return xxx_messageInfo_Node.Size(m)
  136. }
  137. func (m *Node) XXX_DiscardUnknown() {
  138. xxx_messageInfo_Node.DiscardUnknown(m)
  139. }
  140. var xxx_messageInfo_Node proto.InternalMessageInfo
  141. func (m *Node) GetId() string {
  142. if m != nil {
  143. return m.Id
  144. }
  145. return ""
  146. }
  147. func (m *Node) GetName() string {
  148. if m != nil {
  149. return m.Name
  150. }
  151. return ""
  152. }
  153. func (m *Node) GetAddress() string {
  154. if m != nil {
  155. return m.Address
  156. }
  157. return ""
  158. }
  159. func (m *Node) GetListenport() int32 {
  160. if m != nil {
  161. return m.Listenport
  162. }
  163. return 0
  164. }
  165. func (m *Node) GetPublickey() string {
  166. if m != nil {
  167. return m.Publickey
  168. }
  169. return ""
  170. }
  171. func (m *Node) GetEndpoint() string {
  172. if m != nil {
  173. return m.Endpoint
  174. }
  175. return ""
  176. }
  177. func (m *Node) GetMacaddress() string {
  178. if m != nil {
  179. return m.Macaddress
  180. }
  181. return ""
  182. }
  183. func (m *Node) GetPassword() string {
  184. if m != nil {
  185. return m.Password
  186. }
  187. return ""
  188. }
  189. func (m *Node) GetNodegroup() string {
  190. if m != nil {
  191. return m.Nodegroup
  192. }
  193. return ""
  194. }
  195. func (m *Node) GetIspending() bool {
  196. if m != nil {
  197. return m.Ispending
  198. }
  199. return false
  200. }
  201. func (m *Node) GetPostup() string {
  202. if m != nil {
  203. return m.Postup
  204. }
  205. return ""
  206. }
  207. func (m *Node) GetPreup() string {
  208. if m != nil {
  209. return m.Preup
  210. }
  211. return ""
  212. }
  213. func (m *Node) GetKeepalive() int32 {
  214. if m != nil {
  215. return m.Keepalive
  216. }
  217. return 0
  218. }
  219. func (m *Node) GetSaveconfig() bool {
  220. if m != nil {
  221. return m.Saveconfig
  222. }
  223. return false
  224. }
  225. func (m *Node) GetAccesskey() string {
  226. if m != nil {
  227. return m.Accesskey
  228. }
  229. return ""
  230. }
  231. func (m *Node) GetInterface() string {
  232. if m != nil {
  233. return m.Interface
  234. }
  235. return ""
  236. }
  237. func (m *Node) GetLastcheckin() string {
  238. if m != nil {
  239. return m.Lastcheckin
  240. }
  241. return ""
  242. }
  243. func (m *Node) GetLastmodified() string {
  244. if m != nil {
  245. return m.Lastmodified
  246. }
  247. return ""
  248. }
  249. func (m *Node) GetCheckininterval() int32 {
  250. if m != nil {
  251. return m.Checkininterval
  252. }
  253. return 0
  254. }
  255. func (m *Node) GetLocaladdress() string {
  256. if m != nil {
  257. return m.Localaddress
  258. }
  259. return ""
  260. }
  261. func (m *Node) GetPostchanges() string {
  262. if m != nil {
  263. return m.Postchanges
  264. }
  265. return ""
  266. }
  267. type CheckInResponse struct {
  268. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  269. Needpeerupdate bool `protobuf:"varint,2,opt,name=needpeerupdate,proto3" json:"needpeerupdate,omitempty"`
  270. Needconfigupdate bool `protobuf:"varint,3,opt,name=needconfigupdate,proto3" json:"needconfigupdate,omitempty"`
  271. Nodemessage string `protobuf:"bytes,4,opt,name=nodemessage,proto3" json:"nodemessage,omitempty"`
  272. Ispending bool `protobuf:"varint,5,opt,name=ispending,proto3" json:"ispending,omitempty"`
  273. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  274. XXX_unrecognized []byte `json:"-"`
  275. XXX_sizecache int32 `json:"-"`
  276. }
  277. func (m *CheckInResponse) Reset() { *m = CheckInResponse{} }
  278. func (m *CheckInResponse) String() string { return proto.CompactTextString(m) }
  279. func (*CheckInResponse) ProtoMessage() {}
  280. func (*CheckInResponse) Descriptor() ([]byte, []int) {
  281. return fileDescriptor_d13bd996b67da4ef, []int{3}
  282. }
  283. func (m *CheckInResponse) XXX_Unmarshal(b []byte) error {
  284. return xxx_messageInfo_CheckInResponse.Unmarshal(m, b)
  285. }
  286. func (m *CheckInResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  287. return xxx_messageInfo_CheckInResponse.Marshal(b, m, deterministic)
  288. }
  289. func (m *CheckInResponse) XXX_Merge(src proto.Message) {
  290. xxx_messageInfo_CheckInResponse.Merge(m, src)
  291. }
  292. func (m *CheckInResponse) XXX_Size() int {
  293. return xxx_messageInfo_CheckInResponse.Size(m)
  294. }
  295. func (m *CheckInResponse) XXX_DiscardUnknown() {
  296. xxx_messageInfo_CheckInResponse.DiscardUnknown(m)
  297. }
  298. var xxx_messageInfo_CheckInResponse proto.InternalMessageInfo
  299. func (m *CheckInResponse) GetSuccess() bool {
  300. if m != nil {
  301. return m.Success
  302. }
  303. return false
  304. }
  305. func (m *CheckInResponse) GetNeedpeerupdate() bool {
  306. if m != nil {
  307. return m.Needpeerupdate
  308. }
  309. return false
  310. }
  311. func (m *CheckInResponse) GetNeedconfigupdate() bool {
  312. if m != nil {
  313. return m.Needconfigupdate
  314. }
  315. return false
  316. }
  317. func (m *CheckInResponse) GetNodemessage() string {
  318. if m != nil {
  319. return m.Nodemessage
  320. }
  321. return ""
  322. }
  323. func (m *CheckInResponse) GetIspending() bool {
  324. if m != nil {
  325. return m.Ispending
  326. }
  327. return false
  328. }
  329. type PeersResponse struct {
  330. Publickey string `protobuf:"bytes,5,opt,name=publickey,proto3" json:"publickey,omitempty"`
  331. Endpoint string `protobuf:"bytes,6,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
  332. Address string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
  333. Listenport int32 `protobuf:"varint,4,opt,name=listenport,proto3" json:"listenport,omitempty"`
  334. Localaddress string `protobuf:"bytes,7,opt,name=localaddress,proto3" json:"localaddress,omitempty"`
  335. Keepalive int32 `protobuf:"varint,13,opt,name=keepalive,proto3" json:"keepalive,omitempty"`
  336. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  337. XXX_unrecognized []byte `json:"-"`
  338. XXX_sizecache int32 `json:"-"`
  339. }
  340. func (m *PeersResponse) Reset() { *m = PeersResponse{} }
  341. func (m *PeersResponse) String() string { return proto.CompactTextString(m) }
  342. func (*PeersResponse) ProtoMessage() {}
  343. func (*PeersResponse) Descriptor() ([]byte, []int) {
  344. return fileDescriptor_d13bd996b67da4ef, []int{4}
  345. }
  346. func (m *PeersResponse) XXX_Unmarshal(b []byte) error {
  347. return xxx_messageInfo_PeersResponse.Unmarshal(m, b)
  348. }
  349. func (m *PeersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  350. return xxx_messageInfo_PeersResponse.Marshal(b, m, deterministic)
  351. }
  352. func (m *PeersResponse) XXX_Merge(src proto.Message) {
  353. xxx_messageInfo_PeersResponse.Merge(m, src)
  354. }
  355. func (m *PeersResponse) XXX_Size() int {
  356. return xxx_messageInfo_PeersResponse.Size(m)
  357. }
  358. func (m *PeersResponse) XXX_DiscardUnknown() {
  359. xxx_messageInfo_PeersResponse.DiscardUnknown(m)
  360. }
  361. var xxx_messageInfo_PeersResponse proto.InternalMessageInfo
  362. func (m *PeersResponse) GetPublickey() string {
  363. if m != nil {
  364. return m.Publickey
  365. }
  366. return ""
  367. }
  368. func (m *PeersResponse) GetEndpoint() string {
  369. if m != nil {
  370. return m.Endpoint
  371. }
  372. return ""
  373. }
  374. func (m *PeersResponse) GetAddress() string {
  375. if m != nil {
  376. return m.Address
  377. }
  378. return ""
  379. }
  380. func (m *PeersResponse) GetListenport() int32 {
  381. if m != nil {
  382. return m.Listenport
  383. }
  384. return 0
  385. }
  386. func (m *PeersResponse) GetLocaladdress() string {
  387. if m != nil {
  388. return m.Localaddress
  389. }
  390. return ""
  391. }
  392. func (m *PeersResponse) GetKeepalive() int32 {
  393. if m != nil {
  394. return m.Keepalive
  395. }
  396. return 0
  397. }
  398. type CreateNodeReq struct {
  399. Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
  400. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  401. XXX_unrecognized []byte `json:"-"`
  402. XXX_sizecache int32 `json:"-"`
  403. }
  404. func (m *CreateNodeReq) Reset() { *m = CreateNodeReq{} }
  405. func (m *CreateNodeReq) String() string { return proto.CompactTextString(m) }
  406. func (*CreateNodeReq) ProtoMessage() {}
  407. func (*CreateNodeReq) Descriptor() ([]byte, []int) {
  408. return fileDescriptor_d13bd996b67da4ef, []int{5}
  409. }
  410. func (m *CreateNodeReq) XXX_Unmarshal(b []byte) error {
  411. return xxx_messageInfo_CreateNodeReq.Unmarshal(m, b)
  412. }
  413. func (m *CreateNodeReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  414. return xxx_messageInfo_CreateNodeReq.Marshal(b, m, deterministic)
  415. }
  416. func (m *CreateNodeReq) XXX_Merge(src proto.Message) {
  417. xxx_messageInfo_CreateNodeReq.Merge(m, src)
  418. }
  419. func (m *CreateNodeReq) XXX_Size() int {
  420. return xxx_messageInfo_CreateNodeReq.Size(m)
  421. }
  422. func (m *CreateNodeReq) XXX_DiscardUnknown() {
  423. xxx_messageInfo_CreateNodeReq.DiscardUnknown(m)
  424. }
  425. var xxx_messageInfo_CreateNodeReq proto.InternalMessageInfo
  426. func (m *CreateNodeReq) GetNode() *Node {
  427. if m != nil {
  428. return m.Node
  429. }
  430. return nil
  431. }
  432. type CreateNodeRes struct {
  433. Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
  434. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  435. XXX_unrecognized []byte `json:"-"`
  436. XXX_sizecache int32 `json:"-"`
  437. }
  438. func (m *CreateNodeRes) Reset() { *m = CreateNodeRes{} }
  439. func (m *CreateNodeRes) String() string { return proto.CompactTextString(m) }
  440. func (*CreateNodeRes) ProtoMessage() {}
  441. func (*CreateNodeRes) Descriptor() ([]byte, []int) {
  442. return fileDescriptor_d13bd996b67da4ef, []int{6}
  443. }
  444. func (m *CreateNodeRes) XXX_Unmarshal(b []byte) error {
  445. return xxx_messageInfo_CreateNodeRes.Unmarshal(m, b)
  446. }
  447. func (m *CreateNodeRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  448. return xxx_messageInfo_CreateNodeRes.Marshal(b, m, deterministic)
  449. }
  450. func (m *CreateNodeRes) XXX_Merge(src proto.Message) {
  451. xxx_messageInfo_CreateNodeRes.Merge(m, src)
  452. }
  453. func (m *CreateNodeRes) XXX_Size() int {
  454. return xxx_messageInfo_CreateNodeRes.Size(m)
  455. }
  456. func (m *CreateNodeRes) XXX_DiscardUnknown() {
  457. xxx_messageInfo_CreateNodeRes.DiscardUnknown(m)
  458. }
  459. var xxx_messageInfo_CreateNodeRes proto.InternalMessageInfo
  460. func (m *CreateNodeRes) GetNode() *Node {
  461. if m != nil {
  462. return m.Node
  463. }
  464. return nil
  465. }
  466. type UpdateNodeReq struct {
  467. Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
  468. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  469. XXX_unrecognized []byte `json:"-"`
  470. XXX_sizecache int32 `json:"-"`
  471. }
  472. func (m *UpdateNodeReq) Reset() { *m = UpdateNodeReq{} }
  473. func (m *UpdateNodeReq) String() string { return proto.CompactTextString(m) }
  474. func (*UpdateNodeReq) ProtoMessage() {}
  475. func (*UpdateNodeReq) Descriptor() ([]byte, []int) {
  476. return fileDescriptor_d13bd996b67da4ef, []int{7}
  477. }
  478. func (m *UpdateNodeReq) XXX_Unmarshal(b []byte) error {
  479. return xxx_messageInfo_UpdateNodeReq.Unmarshal(m, b)
  480. }
  481. func (m *UpdateNodeReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  482. return xxx_messageInfo_UpdateNodeReq.Marshal(b, m, deterministic)
  483. }
  484. func (m *UpdateNodeReq) XXX_Merge(src proto.Message) {
  485. xxx_messageInfo_UpdateNodeReq.Merge(m, src)
  486. }
  487. func (m *UpdateNodeReq) XXX_Size() int {
  488. return xxx_messageInfo_UpdateNodeReq.Size(m)
  489. }
  490. func (m *UpdateNodeReq) XXX_DiscardUnknown() {
  491. xxx_messageInfo_UpdateNodeReq.DiscardUnknown(m)
  492. }
  493. var xxx_messageInfo_UpdateNodeReq proto.InternalMessageInfo
  494. func (m *UpdateNodeReq) GetNode() *Node {
  495. if m != nil {
  496. return m.Node
  497. }
  498. return nil
  499. }
  500. type UpdateNodeRes struct {
  501. Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
  502. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  503. XXX_unrecognized []byte `json:"-"`
  504. XXX_sizecache int32 `json:"-"`
  505. }
  506. func (m *UpdateNodeRes) Reset() { *m = UpdateNodeRes{} }
  507. func (m *UpdateNodeRes) String() string { return proto.CompactTextString(m) }
  508. func (*UpdateNodeRes) ProtoMessage() {}
  509. func (*UpdateNodeRes) Descriptor() ([]byte, []int) {
  510. return fileDescriptor_d13bd996b67da4ef, []int{8}
  511. }
  512. func (m *UpdateNodeRes) XXX_Unmarshal(b []byte) error {
  513. return xxx_messageInfo_UpdateNodeRes.Unmarshal(m, b)
  514. }
  515. func (m *UpdateNodeRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  516. return xxx_messageInfo_UpdateNodeRes.Marshal(b, m, deterministic)
  517. }
  518. func (m *UpdateNodeRes) XXX_Merge(src proto.Message) {
  519. xxx_messageInfo_UpdateNodeRes.Merge(m, src)
  520. }
  521. func (m *UpdateNodeRes) XXX_Size() int {
  522. return xxx_messageInfo_UpdateNodeRes.Size(m)
  523. }
  524. func (m *UpdateNodeRes) XXX_DiscardUnknown() {
  525. xxx_messageInfo_UpdateNodeRes.DiscardUnknown(m)
  526. }
  527. var xxx_messageInfo_UpdateNodeRes proto.InternalMessageInfo
  528. func (m *UpdateNodeRes) GetNode() *Node {
  529. if m != nil {
  530. return m.Node
  531. }
  532. return nil
  533. }
  534. type ReadNodeReq struct {
  535. Macaddress string `protobuf:"bytes,1,opt,name=macaddress,proto3" json:"macaddress,omitempty"`
  536. Group string `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
  537. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  538. XXX_unrecognized []byte `json:"-"`
  539. XXX_sizecache int32 `json:"-"`
  540. }
  541. func (m *ReadNodeReq) Reset() { *m = ReadNodeReq{} }
  542. func (m *ReadNodeReq) String() string { return proto.CompactTextString(m) }
  543. func (*ReadNodeReq) ProtoMessage() {}
  544. func (*ReadNodeReq) Descriptor() ([]byte, []int) {
  545. return fileDescriptor_d13bd996b67da4ef, []int{9}
  546. }
  547. func (m *ReadNodeReq) XXX_Unmarshal(b []byte) error {
  548. return xxx_messageInfo_ReadNodeReq.Unmarshal(m, b)
  549. }
  550. func (m *ReadNodeReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  551. return xxx_messageInfo_ReadNodeReq.Marshal(b, m, deterministic)
  552. }
  553. func (m *ReadNodeReq) XXX_Merge(src proto.Message) {
  554. xxx_messageInfo_ReadNodeReq.Merge(m, src)
  555. }
  556. func (m *ReadNodeReq) XXX_Size() int {
  557. return xxx_messageInfo_ReadNodeReq.Size(m)
  558. }
  559. func (m *ReadNodeReq) XXX_DiscardUnknown() {
  560. xxx_messageInfo_ReadNodeReq.DiscardUnknown(m)
  561. }
  562. var xxx_messageInfo_ReadNodeReq proto.InternalMessageInfo
  563. func (m *ReadNodeReq) GetMacaddress() string {
  564. if m != nil {
  565. return m.Macaddress
  566. }
  567. return ""
  568. }
  569. func (m *ReadNodeReq) GetGroup() string {
  570. if m != nil {
  571. return m.Group
  572. }
  573. return ""
  574. }
  575. type ReadNodeRes struct {
  576. Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
  577. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  578. XXX_unrecognized []byte `json:"-"`
  579. XXX_sizecache int32 `json:"-"`
  580. }
  581. func (m *ReadNodeRes) Reset() { *m = ReadNodeRes{} }
  582. func (m *ReadNodeRes) String() string { return proto.CompactTextString(m) }
  583. func (*ReadNodeRes) ProtoMessage() {}
  584. func (*ReadNodeRes) Descriptor() ([]byte, []int) {
  585. return fileDescriptor_d13bd996b67da4ef, []int{10}
  586. }
  587. func (m *ReadNodeRes) XXX_Unmarshal(b []byte) error {
  588. return xxx_messageInfo_ReadNodeRes.Unmarshal(m, b)
  589. }
  590. func (m *ReadNodeRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  591. return xxx_messageInfo_ReadNodeRes.Marshal(b, m, deterministic)
  592. }
  593. func (m *ReadNodeRes) XXX_Merge(src proto.Message) {
  594. xxx_messageInfo_ReadNodeRes.Merge(m, src)
  595. }
  596. func (m *ReadNodeRes) XXX_Size() int {
  597. return xxx_messageInfo_ReadNodeRes.Size(m)
  598. }
  599. func (m *ReadNodeRes) XXX_DiscardUnknown() {
  600. xxx_messageInfo_ReadNodeRes.DiscardUnknown(m)
  601. }
  602. var xxx_messageInfo_ReadNodeRes proto.InternalMessageInfo
  603. func (m *ReadNodeRes) GetNode() *Node {
  604. if m != nil {
  605. return m.Node
  606. }
  607. return nil
  608. }
  609. type DeleteNodeReq struct {
  610. Macaddress string `protobuf:"bytes,1,opt,name=macaddress,proto3" json:"macaddress,omitempty"`
  611. GroupName string `protobuf:"bytes,2,opt,name=groupName,proto3" json:"groupName,omitempty"`
  612. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  613. XXX_unrecognized []byte `json:"-"`
  614. XXX_sizecache int32 `json:"-"`
  615. }
  616. func (m *DeleteNodeReq) Reset() { *m = DeleteNodeReq{} }
  617. func (m *DeleteNodeReq) String() string { return proto.CompactTextString(m) }
  618. func (*DeleteNodeReq) ProtoMessage() {}
  619. func (*DeleteNodeReq) Descriptor() ([]byte, []int) {
  620. return fileDescriptor_d13bd996b67da4ef, []int{11}
  621. }
  622. func (m *DeleteNodeReq) XXX_Unmarshal(b []byte) error {
  623. return xxx_messageInfo_DeleteNodeReq.Unmarshal(m, b)
  624. }
  625. func (m *DeleteNodeReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  626. return xxx_messageInfo_DeleteNodeReq.Marshal(b, m, deterministic)
  627. }
  628. func (m *DeleteNodeReq) XXX_Merge(src proto.Message) {
  629. xxx_messageInfo_DeleteNodeReq.Merge(m, src)
  630. }
  631. func (m *DeleteNodeReq) XXX_Size() int {
  632. return xxx_messageInfo_DeleteNodeReq.Size(m)
  633. }
  634. func (m *DeleteNodeReq) XXX_DiscardUnknown() {
  635. xxx_messageInfo_DeleteNodeReq.DiscardUnknown(m)
  636. }
  637. var xxx_messageInfo_DeleteNodeReq proto.InternalMessageInfo
  638. func (m *DeleteNodeReq) GetMacaddress() string {
  639. if m != nil {
  640. return m.Macaddress
  641. }
  642. return ""
  643. }
  644. func (m *DeleteNodeReq) GetGroupName() string {
  645. if m != nil {
  646. return m.GroupName
  647. }
  648. return ""
  649. }
  650. type DeleteNodeRes struct {
  651. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  652. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  653. XXX_unrecognized []byte `json:"-"`
  654. XXX_sizecache int32 `json:"-"`
  655. }
  656. func (m *DeleteNodeRes) Reset() { *m = DeleteNodeRes{} }
  657. func (m *DeleteNodeRes) String() string { return proto.CompactTextString(m) }
  658. func (*DeleteNodeRes) ProtoMessage() {}
  659. func (*DeleteNodeRes) Descriptor() ([]byte, []int) {
  660. return fileDescriptor_d13bd996b67da4ef, []int{12}
  661. }
  662. func (m *DeleteNodeRes) XXX_Unmarshal(b []byte) error {
  663. return xxx_messageInfo_DeleteNodeRes.Unmarshal(m, b)
  664. }
  665. func (m *DeleteNodeRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  666. return xxx_messageInfo_DeleteNodeRes.Marshal(b, m, deterministic)
  667. }
  668. func (m *DeleteNodeRes) XXX_Merge(src proto.Message) {
  669. xxx_messageInfo_DeleteNodeRes.Merge(m, src)
  670. }
  671. func (m *DeleteNodeRes) XXX_Size() int {
  672. return xxx_messageInfo_DeleteNodeRes.Size(m)
  673. }
  674. func (m *DeleteNodeRes) XXX_DiscardUnknown() {
  675. xxx_messageInfo_DeleteNodeRes.DiscardUnknown(m)
  676. }
  677. var xxx_messageInfo_DeleteNodeRes proto.InternalMessageInfo
  678. func (m *DeleteNodeRes) GetSuccess() bool {
  679. if m != nil {
  680. return m.Success
  681. }
  682. return false
  683. }
  684. type GetPeersReq struct {
  685. Macaddress string `protobuf:"bytes,1,opt,name=macaddress,proto3" json:"macaddress,omitempty"`
  686. Group string `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
  687. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  688. XXX_unrecognized []byte `json:"-"`
  689. XXX_sizecache int32 `json:"-"`
  690. }
  691. func (m *GetPeersReq) Reset() { *m = GetPeersReq{} }
  692. func (m *GetPeersReq) String() string { return proto.CompactTextString(m) }
  693. func (*GetPeersReq) ProtoMessage() {}
  694. func (*GetPeersReq) Descriptor() ([]byte, []int) {
  695. return fileDescriptor_d13bd996b67da4ef, []int{13}
  696. }
  697. func (m *GetPeersReq) XXX_Unmarshal(b []byte) error {
  698. return xxx_messageInfo_GetPeersReq.Unmarshal(m, b)
  699. }
  700. func (m *GetPeersReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  701. return xxx_messageInfo_GetPeersReq.Marshal(b, m, deterministic)
  702. }
  703. func (m *GetPeersReq) XXX_Merge(src proto.Message) {
  704. xxx_messageInfo_GetPeersReq.Merge(m, src)
  705. }
  706. func (m *GetPeersReq) XXX_Size() int {
  707. return xxx_messageInfo_GetPeersReq.Size(m)
  708. }
  709. func (m *GetPeersReq) XXX_DiscardUnknown() {
  710. xxx_messageInfo_GetPeersReq.DiscardUnknown(m)
  711. }
  712. var xxx_messageInfo_GetPeersReq proto.InternalMessageInfo
  713. func (m *GetPeersReq) GetMacaddress() string {
  714. if m != nil {
  715. return m.Macaddress
  716. }
  717. return ""
  718. }
  719. func (m *GetPeersReq) GetGroup() string {
  720. if m != nil {
  721. return m.Group
  722. }
  723. return ""
  724. }
  725. type GetPeersRes struct {
  726. Peers *PeersResponse `protobuf:"bytes,1,opt,name=peers,proto3" json:"peers,omitempty"`
  727. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  728. XXX_unrecognized []byte `json:"-"`
  729. XXX_sizecache int32 `json:"-"`
  730. }
  731. func (m *GetPeersRes) Reset() { *m = GetPeersRes{} }
  732. func (m *GetPeersRes) String() string { return proto.CompactTextString(m) }
  733. func (*GetPeersRes) ProtoMessage() {}
  734. func (*GetPeersRes) Descriptor() ([]byte, []int) {
  735. return fileDescriptor_d13bd996b67da4ef, []int{14}
  736. }
  737. func (m *GetPeersRes) XXX_Unmarshal(b []byte) error {
  738. return xxx_messageInfo_GetPeersRes.Unmarshal(m, b)
  739. }
  740. func (m *GetPeersRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  741. return xxx_messageInfo_GetPeersRes.Marshal(b, m, deterministic)
  742. }
  743. func (m *GetPeersRes) XXX_Merge(src proto.Message) {
  744. xxx_messageInfo_GetPeersRes.Merge(m, src)
  745. }
  746. func (m *GetPeersRes) XXX_Size() int {
  747. return xxx_messageInfo_GetPeersRes.Size(m)
  748. }
  749. func (m *GetPeersRes) XXX_DiscardUnknown() {
  750. xxx_messageInfo_GetPeersRes.DiscardUnknown(m)
  751. }
  752. var xxx_messageInfo_GetPeersRes proto.InternalMessageInfo
  753. func (m *GetPeersRes) GetPeers() *PeersResponse {
  754. if m != nil {
  755. return m.Peers
  756. }
  757. return nil
  758. }
  759. type CheckInReq struct {
  760. Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
  761. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  762. XXX_unrecognized []byte `json:"-"`
  763. XXX_sizecache int32 `json:"-"`
  764. }
  765. func (m *CheckInReq) Reset() { *m = CheckInReq{} }
  766. func (m *CheckInReq) String() string { return proto.CompactTextString(m) }
  767. func (*CheckInReq) ProtoMessage() {}
  768. func (*CheckInReq) Descriptor() ([]byte, []int) {
  769. return fileDescriptor_d13bd996b67da4ef, []int{15}
  770. }
  771. func (m *CheckInReq) XXX_Unmarshal(b []byte) error {
  772. return xxx_messageInfo_CheckInReq.Unmarshal(m, b)
  773. }
  774. func (m *CheckInReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  775. return xxx_messageInfo_CheckInReq.Marshal(b, m, deterministic)
  776. }
  777. func (m *CheckInReq) XXX_Merge(src proto.Message) {
  778. xxx_messageInfo_CheckInReq.Merge(m, src)
  779. }
  780. func (m *CheckInReq) XXX_Size() int {
  781. return xxx_messageInfo_CheckInReq.Size(m)
  782. }
  783. func (m *CheckInReq) XXX_DiscardUnknown() {
  784. xxx_messageInfo_CheckInReq.DiscardUnknown(m)
  785. }
  786. var xxx_messageInfo_CheckInReq proto.InternalMessageInfo
  787. func (m *CheckInReq) GetNode() *Node {
  788. if m != nil {
  789. return m.Node
  790. }
  791. return nil
  792. }
  793. type CheckInRes struct {
  794. Checkinresponse *CheckInResponse `protobuf:"bytes,1,opt,name=checkinresponse,proto3" json:"checkinresponse,omitempty"`
  795. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  796. XXX_unrecognized []byte `json:"-"`
  797. XXX_sizecache int32 `json:"-"`
  798. }
  799. func (m *CheckInRes) Reset() { *m = CheckInRes{} }
  800. func (m *CheckInRes) String() string { return proto.CompactTextString(m) }
  801. func (*CheckInRes) ProtoMessage() {}
  802. func (*CheckInRes) Descriptor() ([]byte, []int) {
  803. return fileDescriptor_d13bd996b67da4ef, []int{16}
  804. }
  805. func (m *CheckInRes) XXX_Unmarshal(b []byte) error {
  806. return xxx_messageInfo_CheckInRes.Unmarshal(m, b)
  807. }
  808. func (m *CheckInRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  809. return xxx_messageInfo_CheckInRes.Marshal(b, m, deterministic)
  810. }
  811. func (m *CheckInRes) XXX_Merge(src proto.Message) {
  812. xxx_messageInfo_CheckInRes.Merge(m, src)
  813. }
  814. func (m *CheckInRes) XXX_Size() int {
  815. return xxx_messageInfo_CheckInRes.Size(m)
  816. }
  817. func (m *CheckInRes) XXX_DiscardUnknown() {
  818. xxx_messageInfo_CheckInRes.DiscardUnknown(m)
  819. }
  820. var xxx_messageInfo_CheckInRes proto.InternalMessageInfo
  821. func (m *CheckInRes) GetCheckinresponse() *CheckInResponse {
  822. if m != nil {
  823. return m.Checkinresponse
  824. }
  825. return nil
  826. }
  827. func init() {
  828. proto.RegisterType((*LoginRequest)(nil), "node.LoginRequest")
  829. proto.RegisterType((*LoginResponse)(nil), "node.LoginResponse")
  830. proto.RegisterType((*Node)(nil), "node.Node")
  831. proto.RegisterType((*CheckInResponse)(nil), "node.CheckInResponse")
  832. proto.RegisterType((*PeersResponse)(nil), "node.PeersResponse")
  833. proto.RegisterType((*CreateNodeReq)(nil), "node.CreateNodeReq")
  834. proto.RegisterType((*CreateNodeRes)(nil), "node.CreateNodeRes")
  835. proto.RegisterType((*UpdateNodeReq)(nil), "node.UpdateNodeReq")
  836. proto.RegisterType((*UpdateNodeRes)(nil), "node.UpdateNodeRes")
  837. proto.RegisterType((*ReadNodeReq)(nil), "node.ReadNodeReq")
  838. proto.RegisterType((*ReadNodeRes)(nil), "node.ReadNodeRes")
  839. proto.RegisterType((*DeleteNodeReq)(nil), "node.DeleteNodeReq")
  840. proto.RegisterType((*DeleteNodeRes)(nil), "node.DeleteNodeRes")
  841. proto.RegisterType((*GetPeersReq)(nil), "node.GetPeersReq")
  842. proto.RegisterType((*GetPeersRes)(nil), "node.GetPeersRes")
  843. proto.RegisterType((*CheckInReq)(nil), "node.CheckInReq")
  844. proto.RegisterType((*CheckInRes)(nil), "node.CheckInRes")
  845. }
  846. func init() { proto.RegisterFile("grpc/node.proto", fileDescriptor_d13bd996b67da4ef) }
  847. var fileDescriptor_d13bd996b67da4ef = []byte{
  848. // 813 bytes of a gzipped FileDescriptorProto
  849. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x4d, 0x6f, 0xf3, 0x44,
  850. 0x10, 0x56, 0xf2, 0x26, 0x4d, 0x32, 0x69, 0x9a, 0xbe, 0xdb, 0x16, 0xad, 0xac, 0xaa, 0x8a, 0x7c,
  851. 0x40, 0x29, 0xa2, 0x49, 0x29, 0x12, 0xe2, 0x86, 0x44, 0x91, 0x10, 0x08, 0x2a, 0x64, 0xc4, 0x85,
  852. 0xdb, 0xc6, 0x9e, 0xb8, 0x56, 0x9c, 0xdd, 0x8d, 0xd7, 0x4e, 0xd5, 0x5f, 0xc7, 0x89, 0x7f, 0xc4,
  853. 0x91, 0x03, 0xda, 0x5d, 0x3b, 0xfe, 0x68, 0x48, 0xfb, 0xf6, 0x96, 0x79, 0x76, 0xbe, 0xe7, 0x99,
  854. 0x89, 0x61, 0x1c, 0x26, 0xd2, 0x9f, 0x73, 0x11, 0xe0, 0x4c, 0x26, 0x22, 0x15, 0xa4, 0xa3, 0x7f,
  855. 0xbb, 0x3f, 0xc3, 0xf1, 0x2f, 0x22, 0x8c, 0xb8, 0x87, 0x9b, 0x0c, 0x55, 0x4a, 0xae, 0x00, 0xd6,
  856. 0xcc, 0x67, 0x41, 0x90, 0xa0, 0x52, 0xb4, 0x35, 0x69, 0x4d, 0x07, 0x5e, 0x05, 0x21, 0x0e, 0xf4,
  857. 0x25, 0x53, 0xea, 0x49, 0x24, 0x01, 0x6d, 0x9b, 0xd7, 0x9d, 0xec, 0x7e, 0x05, 0xa3, 0xdc, 0x97,
  858. 0x92, 0x82, 0x2b, 0x24, 0x13, 0x18, 0x32, 0xdf, 0x47, 0xa5, 0x52, 0xb1, 0x42, 0x9e, 0x7b, 0xab,
  859. 0x42, 0xee, 0x3f, 0x1d, 0xe8, 0x3c, 0x88, 0x00, 0xc9, 0x09, 0xb4, 0xa3, 0x20, 0xd7, 0x68, 0x47,
  860. 0x01, 0x21, 0xd0, 0xe1, 0x6c, 0x8d, 0x79, 0x0c, 0xf3, 0x9b, 0x50, 0xe8, 0x15, 0x89, 0x7d, 0x30,
  861. 0x70, 0x21, 0xea, 0xac, 0xe3, 0x48, 0xa5, 0xc8, 0xa5, 0x48, 0x52, 0xda, 0x99, 0xb4, 0xa6, 0x5d,
  862. 0xaf, 0x82, 0x90, 0x4b, 0x18, 0xc8, 0x6c, 0x11, 0x47, 0xfe, 0x0a, 0x9f, 0x69, 0xd7, 0xd8, 0x96,
  863. 0x80, 0xae, 0x09, 0x79, 0x20, 0x45, 0xc4, 0x53, 0x7a, 0x64, 0x6b, 0x2a, 0xe4, 0x46, 0x3f, 0x7a,
  864. 0x07, 0xfb, 0xd1, 0xaf, 0xf7, 0x43, 0x47, 0xd5, 0x3d, 0x0e, 0x13, 0x91, 0x49, 0x3a, 0xb0, 0x51,
  865. 0x77, 0x80, 0x7e, 0x8d, 0x94, 0x44, 0x1e, 0x44, 0x3c, 0xa4, 0x30, 0x69, 0x4d, 0xfb, 0x5e, 0x09,
  866. 0x90, 0xcf, 0xe0, 0x48, 0x0a, 0x95, 0x66, 0x92, 0x0e, 0x8d, 0x61, 0x2e, 0x91, 0x73, 0xe8, 0xca,
  867. 0x04, 0x33, 0x49, 0x8f, 0x0d, 0x6c, 0x05, 0xed, 0x6b, 0x85, 0x28, 0x59, 0x1c, 0x6d, 0x91, 0x8e,
  868. 0x4c, 0xf9, 0x25, 0xa0, 0x6b, 0x50, 0x6c, 0x8b, 0xbe, 0xe0, 0xcb, 0x28, 0xa4, 0x27, 0x26, 0x54,
  869. 0x05, 0xd1, 0xd6, 0x76, 0x26, 0xba, 0x3b, 0x63, 0x9b, 0xe7, 0x0e, 0x30, 0x79, 0xf2, 0x14, 0x93,
  870. 0x25, 0xf3, 0x91, 0x9e, 0xda, 0xd7, 0x1d, 0xa0, 0x47, 0x1c, 0x33, 0x95, 0xfa, 0x8f, 0xe8, 0xaf,
  871. 0x22, 0x4e, 0x3f, 0xda, 0x11, 0x57, 0x20, 0xe2, 0xc2, 0xb1, 0x16, 0xd7, 0x22, 0x88, 0x96, 0x11,
  872. 0x06, 0x94, 0x18, 0x95, 0x1a, 0x46, 0xa6, 0x30, 0xce, 0xd5, 0x8d, 0xe7, 0x2d, 0x8b, 0xe9, 0x99,
  873. 0xa9, 0xa2, 0x09, 0x1b, 0x6f, 0xc2, 0x67, 0x71, 0x31, 0x91, 0xf3, 0xdc, 0x5b, 0x05, 0xd3, 0x39,
  874. 0xe9, 0x6e, 0xf9, 0x8f, 0x8c, 0x87, 0xa8, 0xe8, 0x85, 0xcd, 0xa9, 0x02, 0xb9, 0x7f, 0xb5, 0x60,
  875. 0x7c, 0xaf, 0x3d, 0xff, 0x54, 0x92, 0x95, 0x42, 0x4f, 0x65, 0xa6, 0x6a, 0x43, 0xc3, 0xbe, 0x57,
  876. 0x88, 0xe4, 0x73, 0x38, 0xe1, 0x88, 0x81, 0x44, 0x4c, 0x32, 0x19, 0xb0, 0xd4, 0xb2, 0xb2, 0xef,
  877. 0x35, 0x50, 0xf2, 0x05, 0x9c, 0x6a, 0xc4, 0x76, 0x35, 0xd7, 0xfc, 0x60, 0x34, 0x5f, 0xe0, 0x3a,
  878. 0x47, 0x4d, 0x85, 0x35, 0x2a, 0xc5, 0x42, 0x34, 0x94, 0x1d, 0x78, 0x55, 0xa8, 0xce, 0x8f, 0x6e,
  879. 0x83, 0x1f, 0xee, 0xdf, 0x2d, 0x18, 0xfd, 0x86, 0x98, 0xa8, 0x5d, 0xfe, 0xef, 0xe7, 0xf8, 0xfb,
  880. 0xf7, 0xaa, 0x39, 0x8d, 0xde, 0x9e, 0x69, 0x1c, 0xe4, 0xa6, 0x3b, 0x87, 0xd1, 0x7d, 0x82, 0x2c,
  881. 0x45, 0x7d, 0x05, 0x3c, 0xdc, 0x90, 0x2b, 0x30, 0x87, 0xc9, 0xcc, 0x60, 0x78, 0x07, 0x33, 0x73,
  882. 0xb1, 0xcc, 0xa3, 0x3d, 0x58, 0x0d, 0x03, 0xf5, 0x16, 0x83, 0x3f, 0x4c, 0xcf, 0x3f, 0x21, 0x42,
  883. 0xd5, 0xe0, 0xf5, 0x08, 0xf7, 0x30, 0xf4, 0x90, 0x05, 0xa5, 0xff, 0xc3, 0x27, 0xf4, 0x1c, 0xba,
  884. 0xf6, 0x24, 0xd8, 0xdb, 0x66, 0x05, 0xf7, 0xa6, 0xea, 0xe4, 0xf5, 0x98, 0xbf, 0xc2, 0xe8, 0x07,
  885. 0x8c, 0xb1, 0x5a, 0xd5, 0xe1, 0xa8, 0x97, 0x30, 0x30, 0x81, 0x1e, 0xca, 0xab, 0x5a, 0x02, 0xee,
  886. 0x75, 0xdd, 0x9d, 0xfa, 0xff, 0x6d, 0xd0, 0xd5, 0xfe, 0x88, 0x69, 0xce, 0xbd, 0xf7, 0x56, 0xfb,
  887. 0x6d, 0xd5, 0x89, 0x22, 0xd7, 0xd0, 0xd5, 0x7b, 0xa4, 0xf2, 0x72, 0xcf, 0x6c, 0xb9, 0x35, 0x7e,
  888. 0x7b, 0x56, 0xc3, 0xfd, 0x12, 0x60, 0xb7, 0xb9, 0x9b, 0x37, 0xb4, 0xa9, 0xd4, 0x56, 0xe4, 0xbb,
  889. 0xdd, 0x99, 0x49, 0x72, 0xaf, 0xb9, 0xe1, 0x85, 0x35, 0x6c, 0x9c, 0x04, 0xaf, 0xa9, 0x7d, 0xf7,
  890. 0x6f, 0x1b, 0x86, 0xda, 0xfb, 0xef, 0x98, 0x6c, 0x23, 0x1f, 0xc9, 0x2d, 0x74, 0xcd, 0x3f, 0x1e,
  891. 0x21, 0xd6, 0x41, 0xf5, 0xaf, 0xd4, 0x39, 0xab, 0x61, 0xf9, 0x96, 0x7e, 0x03, 0x50, 0xd2, 0x97,
  892. 0xe4, 0x2a, 0xb5, 0x0d, 0x70, 0xf6, 0x80, 0x8a, 0xdc, 0x42, 0xbf, 0xa0, 0x07, 0xf9, 0x68, 0x15,
  893. 0x2a, 0x9c, 0x73, 0x5e, 0x40, 0x4a, 0x47, 0x2a, 0x69, 0x5c, 0x44, 0xaa, 0x6d, 0x82, 0xb3, 0x07,
  894. 0x34, 0x76, 0x25, 0x15, 0x0a, 0xbb, 0x1a, 0xd7, 0x9c, 0x3d, 0xa0, 0x22, 0x77, 0xd0, 0x2f, 0x46,
  895. 0x5a, 0x64, 0x58, 0xe1, 0x89, 0xf3, 0x02, 0x52, 0xb7, 0x2d, 0x72, 0x03, 0xbd, 0xbc, 0xe7, 0xe4,
  896. 0xb4, 0x31, 0x82, 0x8d, 0xd3, 0x44, 0xd4, 0xf7, 0xf3, 0x3f, 0x6f, 0x42, 0x21, 0xc2, 0x18, 0x67,
  897. 0xa1, 0x88, 0x19, 0x0f, 0x67, 0x22, 0x09, 0xe7, 0xe6, 0x6b, 0x66, 0x91, 0x2d, 0xe7, 0xe9, 0xb3,
  898. 0x44, 0x35, 0x5f, 0x71, 0xf1, 0xc4, 0xcd, 0x77, 0x8e, 0x5c, 0x2c, 0x8e, 0xcc, 0xe3, 0xd7, 0xff,
  899. 0x05, 0x00, 0x00, 0xff, 0xff, 0x04, 0x8b, 0xcd, 0xc5, 0xfd, 0x08, 0x00, 0x00,
  900. }