You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1843 lines
65 KiB

6 years ago
6 years ago
6 years ago
6 years ago
  1. // Code generated by protoc-gen-go.
  2. // source: master.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package master_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. master.proto
  8. It has these top-level messages:
  9. Heartbeat
  10. HeartbeatResponse
  11. VolumeInformationMessage
  12. VolumeShortInformationMessage
  13. VolumeEcShardInformationMessage
  14. Empty
  15. SuperBlockExtra
  16. ClientListenRequest
  17. VolumeLocation
  18. LookupVolumeRequest
  19. LookupVolumeResponse
  20. Location
  21. AssignRequest
  22. AssignResponse
  23. StatisticsRequest
  24. StatisticsResponse
  25. StorageType
  26. Collection
  27. CollectionListRequest
  28. CollectionListResponse
  29. CollectionDeleteRequest
  30. CollectionDeleteResponse
  31. DataNodeInfo
  32. RackInfo
  33. DataCenterInfo
  34. TopologyInfo
  35. VolumeListRequest
  36. VolumeListResponse
  37. LookupEcVolumeRequest
  38. LookupEcVolumeResponse
  39. */
  40. package master_pb
  41. import proto "github.com/golang/protobuf/proto"
  42. import fmt "fmt"
  43. import math "math"
  44. import (
  45. context "golang.org/x/net/context"
  46. grpc "google.golang.org/grpc"
  47. )
  48. // Reference imports to suppress errors if they are not otherwise used.
  49. var _ = proto.Marshal
  50. var _ = fmt.Errorf
  51. var _ = math.Inf
  52. // This is a compile-time assertion to ensure that this generated file
  53. // is compatible with the proto package it is being compiled against.
  54. // A compilation error at this line likely means your copy of the
  55. // proto package needs to be updated.
  56. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  57. type Heartbeat struct {
  58. Ip string `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
  59. Port uint32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
  60. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  61. MaxVolumeCount uint32 `protobuf:"varint,4,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  62. MaxFileKey uint64 `protobuf:"varint,5,opt,name=max_file_key,json=maxFileKey" json:"max_file_key,omitempty"`
  63. DataCenter string `protobuf:"bytes,6,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  64. Rack string `protobuf:"bytes,7,opt,name=rack" json:"rack,omitempty"`
  65. AdminPort uint32 `protobuf:"varint,8,opt,name=admin_port,json=adminPort" json:"admin_port,omitempty"`
  66. Volumes []*VolumeInformationMessage `protobuf:"bytes,9,rep,name=volumes" json:"volumes,omitempty"`
  67. // delta volumes
  68. NewVolumes []*VolumeShortInformationMessage `protobuf:"bytes,10,rep,name=new_volumes,json=newVolumes" json:"new_volumes,omitempty"`
  69. DeletedVolumes []*VolumeShortInformationMessage `protobuf:"bytes,11,rep,name=deleted_volumes,json=deletedVolumes" json:"deleted_volumes,omitempty"`
  70. HasNoVolumes bool `protobuf:"varint,12,opt,name=has_no_volumes,json=hasNoVolumes" json:"has_no_volumes,omitempty"`
  71. // erasure coding
  72. EcShards []*VolumeEcShardInformationMessage `protobuf:"bytes,16,rep,name=ec_shards,json=ecShards" json:"ec_shards,omitempty"`
  73. // delta erasure coding shards
  74. NewEcShards []*VolumeEcShardInformationMessage `protobuf:"bytes,17,rep,name=new_ec_shards,json=newEcShards" json:"new_ec_shards,omitempty"`
  75. DeletedEcShards []*VolumeEcShardInformationMessage `protobuf:"bytes,18,rep,name=deleted_ec_shards,json=deletedEcShards" json:"deleted_ec_shards,omitempty"`
  76. HasNoEcShards bool `protobuf:"varint,19,opt,name=has_no_ec_shards,json=hasNoEcShards" json:"has_no_ec_shards,omitempty"`
  77. }
  78. func (m *Heartbeat) Reset() { *m = Heartbeat{} }
  79. func (m *Heartbeat) String() string { return proto.CompactTextString(m) }
  80. func (*Heartbeat) ProtoMessage() {}
  81. func (*Heartbeat) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  82. func (m *Heartbeat) GetIp() string {
  83. if m != nil {
  84. return m.Ip
  85. }
  86. return ""
  87. }
  88. func (m *Heartbeat) GetPort() uint32 {
  89. if m != nil {
  90. return m.Port
  91. }
  92. return 0
  93. }
  94. func (m *Heartbeat) GetPublicUrl() string {
  95. if m != nil {
  96. return m.PublicUrl
  97. }
  98. return ""
  99. }
  100. func (m *Heartbeat) GetMaxVolumeCount() uint32 {
  101. if m != nil {
  102. return m.MaxVolumeCount
  103. }
  104. return 0
  105. }
  106. func (m *Heartbeat) GetMaxFileKey() uint64 {
  107. if m != nil {
  108. return m.MaxFileKey
  109. }
  110. return 0
  111. }
  112. func (m *Heartbeat) GetDataCenter() string {
  113. if m != nil {
  114. return m.DataCenter
  115. }
  116. return ""
  117. }
  118. func (m *Heartbeat) GetRack() string {
  119. if m != nil {
  120. return m.Rack
  121. }
  122. return ""
  123. }
  124. func (m *Heartbeat) GetAdminPort() uint32 {
  125. if m != nil {
  126. return m.AdminPort
  127. }
  128. return 0
  129. }
  130. func (m *Heartbeat) GetVolumes() []*VolumeInformationMessage {
  131. if m != nil {
  132. return m.Volumes
  133. }
  134. return nil
  135. }
  136. func (m *Heartbeat) GetNewVolumes() []*VolumeShortInformationMessage {
  137. if m != nil {
  138. return m.NewVolumes
  139. }
  140. return nil
  141. }
  142. func (m *Heartbeat) GetDeletedVolumes() []*VolumeShortInformationMessage {
  143. if m != nil {
  144. return m.DeletedVolumes
  145. }
  146. return nil
  147. }
  148. func (m *Heartbeat) GetHasNoVolumes() bool {
  149. if m != nil {
  150. return m.HasNoVolumes
  151. }
  152. return false
  153. }
  154. func (m *Heartbeat) GetEcShards() []*VolumeEcShardInformationMessage {
  155. if m != nil {
  156. return m.EcShards
  157. }
  158. return nil
  159. }
  160. func (m *Heartbeat) GetNewEcShards() []*VolumeEcShardInformationMessage {
  161. if m != nil {
  162. return m.NewEcShards
  163. }
  164. return nil
  165. }
  166. func (m *Heartbeat) GetDeletedEcShards() []*VolumeEcShardInformationMessage {
  167. if m != nil {
  168. return m.DeletedEcShards
  169. }
  170. return nil
  171. }
  172. func (m *Heartbeat) GetHasNoEcShards() bool {
  173. if m != nil {
  174. return m.HasNoEcShards
  175. }
  176. return false
  177. }
  178. type HeartbeatResponse struct {
  179. VolumeSizeLimit uint64 `protobuf:"varint,1,opt,name=volume_size_limit,json=volumeSizeLimit" json:"volume_size_limit,omitempty"`
  180. Leader string `protobuf:"bytes,2,opt,name=leader" json:"leader,omitempty"`
  181. MetricsAddress string `protobuf:"bytes,3,opt,name=metrics_address,json=metricsAddress" json:"metrics_address,omitempty"`
  182. MetricsIntervalSeconds uint32 `protobuf:"varint,4,opt,name=metrics_interval_seconds,json=metricsIntervalSeconds" json:"metrics_interval_seconds,omitempty"`
  183. }
  184. func (m *HeartbeatResponse) Reset() { *m = HeartbeatResponse{} }
  185. func (m *HeartbeatResponse) String() string { return proto.CompactTextString(m) }
  186. func (*HeartbeatResponse) ProtoMessage() {}
  187. func (*HeartbeatResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  188. func (m *HeartbeatResponse) GetVolumeSizeLimit() uint64 {
  189. if m != nil {
  190. return m.VolumeSizeLimit
  191. }
  192. return 0
  193. }
  194. func (m *HeartbeatResponse) GetLeader() string {
  195. if m != nil {
  196. return m.Leader
  197. }
  198. return ""
  199. }
  200. func (m *HeartbeatResponse) GetMetricsAddress() string {
  201. if m != nil {
  202. return m.MetricsAddress
  203. }
  204. return ""
  205. }
  206. func (m *HeartbeatResponse) GetMetricsIntervalSeconds() uint32 {
  207. if m != nil {
  208. return m.MetricsIntervalSeconds
  209. }
  210. return 0
  211. }
  212. type VolumeInformationMessage struct {
  213. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  214. Size uint64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
  215. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  216. FileCount uint64 `protobuf:"varint,4,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  217. DeleteCount uint64 `protobuf:"varint,5,opt,name=delete_count,json=deleteCount" json:"delete_count,omitempty"`
  218. DeletedByteCount uint64 `protobuf:"varint,6,opt,name=deleted_byte_count,json=deletedByteCount" json:"deleted_byte_count,omitempty"`
  219. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly" json:"read_only,omitempty"`
  220. ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
  221. Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
  222. Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
  223. CompactRevision uint32 `protobuf:"varint,11,opt,name=compact_revision,json=compactRevision" json:"compact_revision,omitempty"`
  224. ModifiedAtSecond int64 `protobuf:"varint,12,opt,name=modified_at_second,json=modifiedAtSecond" json:"modified_at_second,omitempty"`
  225. }
  226. func (m *VolumeInformationMessage) Reset() { *m = VolumeInformationMessage{} }
  227. func (m *VolumeInformationMessage) String() string { return proto.CompactTextString(m) }
  228. func (*VolumeInformationMessage) ProtoMessage() {}
  229. func (*VolumeInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  230. func (m *VolumeInformationMessage) GetId() uint32 {
  231. if m != nil {
  232. return m.Id
  233. }
  234. return 0
  235. }
  236. func (m *VolumeInformationMessage) GetSize() uint64 {
  237. if m != nil {
  238. return m.Size
  239. }
  240. return 0
  241. }
  242. func (m *VolumeInformationMessage) GetCollection() string {
  243. if m != nil {
  244. return m.Collection
  245. }
  246. return ""
  247. }
  248. func (m *VolumeInformationMessage) GetFileCount() uint64 {
  249. if m != nil {
  250. return m.FileCount
  251. }
  252. return 0
  253. }
  254. func (m *VolumeInformationMessage) GetDeleteCount() uint64 {
  255. if m != nil {
  256. return m.DeleteCount
  257. }
  258. return 0
  259. }
  260. func (m *VolumeInformationMessage) GetDeletedByteCount() uint64 {
  261. if m != nil {
  262. return m.DeletedByteCount
  263. }
  264. return 0
  265. }
  266. func (m *VolumeInformationMessage) GetReadOnly() bool {
  267. if m != nil {
  268. return m.ReadOnly
  269. }
  270. return false
  271. }
  272. func (m *VolumeInformationMessage) GetReplicaPlacement() uint32 {
  273. if m != nil {
  274. return m.ReplicaPlacement
  275. }
  276. return 0
  277. }
  278. func (m *VolumeInformationMessage) GetVersion() uint32 {
  279. if m != nil {
  280. return m.Version
  281. }
  282. return 0
  283. }
  284. func (m *VolumeInformationMessage) GetTtl() uint32 {
  285. if m != nil {
  286. return m.Ttl
  287. }
  288. return 0
  289. }
  290. func (m *VolumeInformationMessage) GetCompactRevision() uint32 {
  291. if m != nil {
  292. return m.CompactRevision
  293. }
  294. return 0
  295. }
  296. func (m *VolumeInformationMessage) GetModifiedAtSecond() int64 {
  297. if m != nil {
  298. return m.ModifiedAtSecond
  299. }
  300. return 0
  301. }
  302. type VolumeShortInformationMessage struct {
  303. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  304. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  305. ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
  306. Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
  307. Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
  308. }
  309. func (m *VolumeShortInformationMessage) Reset() { *m = VolumeShortInformationMessage{} }
  310. func (m *VolumeShortInformationMessage) String() string { return proto.CompactTextString(m) }
  311. func (*VolumeShortInformationMessage) ProtoMessage() {}
  312. func (*VolumeShortInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  313. func (m *VolumeShortInformationMessage) GetId() uint32 {
  314. if m != nil {
  315. return m.Id
  316. }
  317. return 0
  318. }
  319. func (m *VolumeShortInformationMessage) GetCollection() string {
  320. if m != nil {
  321. return m.Collection
  322. }
  323. return ""
  324. }
  325. func (m *VolumeShortInformationMessage) GetReplicaPlacement() uint32 {
  326. if m != nil {
  327. return m.ReplicaPlacement
  328. }
  329. return 0
  330. }
  331. func (m *VolumeShortInformationMessage) GetVersion() uint32 {
  332. if m != nil {
  333. return m.Version
  334. }
  335. return 0
  336. }
  337. func (m *VolumeShortInformationMessage) GetTtl() uint32 {
  338. if m != nil {
  339. return m.Ttl
  340. }
  341. return 0
  342. }
  343. type VolumeEcShardInformationMessage struct {
  344. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  345. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  346. EcIndexBits uint32 `protobuf:"varint,3,opt,name=ec_index_bits,json=ecIndexBits" json:"ec_index_bits,omitempty"`
  347. }
  348. func (m *VolumeEcShardInformationMessage) Reset() { *m = VolumeEcShardInformationMessage{} }
  349. func (m *VolumeEcShardInformationMessage) String() string { return proto.CompactTextString(m) }
  350. func (*VolumeEcShardInformationMessage) ProtoMessage() {}
  351. func (*VolumeEcShardInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  352. func (m *VolumeEcShardInformationMessage) GetId() uint32 {
  353. if m != nil {
  354. return m.Id
  355. }
  356. return 0
  357. }
  358. func (m *VolumeEcShardInformationMessage) GetCollection() string {
  359. if m != nil {
  360. return m.Collection
  361. }
  362. return ""
  363. }
  364. func (m *VolumeEcShardInformationMessage) GetEcIndexBits() uint32 {
  365. if m != nil {
  366. return m.EcIndexBits
  367. }
  368. return 0
  369. }
  370. type Empty struct {
  371. }
  372. func (m *Empty) Reset() { *m = Empty{} }
  373. func (m *Empty) String() string { return proto.CompactTextString(m) }
  374. func (*Empty) ProtoMessage() {}
  375. func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  376. type SuperBlockExtra struct {
  377. ErasureCoding *SuperBlockExtra_ErasureCoding `protobuf:"bytes,1,opt,name=erasure_coding,json=erasureCoding" json:"erasure_coding,omitempty"`
  378. }
  379. func (m *SuperBlockExtra) Reset() { *m = SuperBlockExtra{} }
  380. func (m *SuperBlockExtra) String() string { return proto.CompactTextString(m) }
  381. func (*SuperBlockExtra) ProtoMessage() {}
  382. func (*SuperBlockExtra) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  383. func (m *SuperBlockExtra) GetErasureCoding() *SuperBlockExtra_ErasureCoding {
  384. if m != nil {
  385. return m.ErasureCoding
  386. }
  387. return nil
  388. }
  389. type SuperBlockExtra_ErasureCoding struct {
  390. Data uint32 `protobuf:"varint,1,opt,name=data" json:"data,omitempty"`
  391. Parity uint32 `protobuf:"varint,2,opt,name=parity" json:"parity,omitempty"`
  392. VolumeIds []uint32 `protobuf:"varint,3,rep,packed,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  393. }
  394. func (m *SuperBlockExtra_ErasureCoding) Reset() { *m = SuperBlockExtra_ErasureCoding{} }
  395. func (m *SuperBlockExtra_ErasureCoding) String() string { return proto.CompactTextString(m) }
  396. func (*SuperBlockExtra_ErasureCoding) ProtoMessage() {}
  397. func (*SuperBlockExtra_ErasureCoding) Descriptor() ([]byte, []int) {
  398. return fileDescriptor0, []int{6, 0}
  399. }
  400. func (m *SuperBlockExtra_ErasureCoding) GetData() uint32 {
  401. if m != nil {
  402. return m.Data
  403. }
  404. return 0
  405. }
  406. func (m *SuperBlockExtra_ErasureCoding) GetParity() uint32 {
  407. if m != nil {
  408. return m.Parity
  409. }
  410. return 0
  411. }
  412. func (m *SuperBlockExtra_ErasureCoding) GetVolumeIds() []uint32 {
  413. if m != nil {
  414. return m.VolumeIds
  415. }
  416. return nil
  417. }
  418. type ClientListenRequest struct {
  419. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  420. }
  421. func (m *ClientListenRequest) Reset() { *m = ClientListenRequest{} }
  422. func (m *ClientListenRequest) String() string { return proto.CompactTextString(m) }
  423. func (*ClientListenRequest) ProtoMessage() {}
  424. func (*ClientListenRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  425. func (m *ClientListenRequest) GetName() string {
  426. if m != nil {
  427. return m.Name
  428. }
  429. return ""
  430. }
  431. type VolumeLocation struct {
  432. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  433. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  434. NewVids []uint32 `protobuf:"varint,3,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
  435. DeletedVids []uint32 `protobuf:"varint,4,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
  436. }
  437. func (m *VolumeLocation) Reset() { *m = VolumeLocation{} }
  438. func (m *VolumeLocation) String() string { return proto.CompactTextString(m) }
  439. func (*VolumeLocation) ProtoMessage() {}
  440. func (*VolumeLocation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  441. func (m *VolumeLocation) GetUrl() string {
  442. if m != nil {
  443. return m.Url
  444. }
  445. return ""
  446. }
  447. func (m *VolumeLocation) GetPublicUrl() string {
  448. if m != nil {
  449. return m.PublicUrl
  450. }
  451. return ""
  452. }
  453. func (m *VolumeLocation) GetNewVids() []uint32 {
  454. if m != nil {
  455. return m.NewVids
  456. }
  457. return nil
  458. }
  459. func (m *VolumeLocation) GetDeletedVids() []uint32 {
  460. if m != nil {
  461. return m.DeletedVids
  462. }
  463. return nil
  464. }
  465. type LookupVolumeRequest struct {
  466. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  467. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  468. }
  469. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  470. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  471. func (*LookupVolumeRequest) ProtoMessage() {}
  472. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  473. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  474. if m != nil {
  475. return m.VolumeIds
  476. }
  477. return nil
  478. }
  479. func (m *LookupVolumeRequest) GetCollection() string {
  480. if m != nil {
  481. return m.Collection
  482. }
  483. return ""
  484. }
  485. type LookupVolumeResponse struct {
  486. VolumeIdLocations []*LookupVolumeResponse_VolumeIdLocation `protobuf:"bytes,1,rep,name=volume_id_locations,json=volumeIdLocations" json:"volume_id_locations,omitempty"`
  487. }
  488. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  489. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  490. func (*LookupVolumeResponse) ProtoMessage() {}
  491. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  492. func (m *LookupVolumeResponse) GetVolumeIdLocations() []*LookupVolumeResponse_VolumeIdLocation {
  493. if m != nil {
  494. return m.VolumeIdLocations
  495. }
  496. return nil
  497. }
  498. type LookupVolumeResponse_VolumeIdLocation struct {
  499. VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  500. Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
  501. Error string `protobuf:"bytes,3,opt,name=error" json:"error,omitempty"`
  502. }
  503. func (m *LookupVolumeResponse_VolumeIdLocation) Reset() { *m = LookupVolumeResponse_VolumeIdLocation{} }
  504. func (m *LookupVolumeResponse_VolumeIdLocation) String() string { return proto.CompactTextString(m) }
  505. func (*LookupVolumeResponse_VolumeIdLocation) ProtoMessage() {}
  506. func (*LookupVolumeResponse_VolumeIdLocation) Descriptor() ([]byte, []int) {
  507. return fileDescriptor0, []int{10, 0}
  508. }
  509. func (m *LookupVolumeResponse_VolumeIdLocation) GetVolumeId() string {
  510. if m != nil {
  511. return m.VolumeId
  512. }
  513. return ""
  514. }
  515. func (m *LookupVolumeResponse_VolumeIdLocation) GetLocations() []*Location {
  516. if m != nil {
  517. return m.Locations
  518. }
  519. return nil
  520. }
  521. func (m *LookupVolumeResponse_VolumeIdLocation) GetError() string {
  522. if m != nil {
  523. return m.Error
  524. }
  525. return ""
  526. }
  527. type Location struct {
  528. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  529. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  530. }
  531. func (m *Location) Reset() { *m = Location{} }
  532. func (m *Location) String() string { return proto.CompactTextString(m) }
  533. func (*Location) ProtoMessage() {}
  534. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  535. func (m *Location) GetUrl() string {
  536. if m != nil {
  537. return m.Url
  538. }
  539. return ""
  540. }
  541. func (m *Location) GetPublicUrl() string {
  542. if m != nil {
  543. return m.PublicUrl
  544. }
  545. return ""
  546. }
  547. type AssignRequest struct {
  548. Count uint64 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  549. Replication string `protobuf:"bytes,2,opt,name=replication" json:"replication,omitempty"`
  550. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  551. Ttl string `protobuf:"bytes,4,opt,name=ttl" json:"ttl,omitempty"`
  552. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  553. Rack string `protobuf:"bytes,6,opt,name=rack" json:"rack,omitempty"`
  554. DataNode string `protobuf:"bytes,7,opt,name=data_node,json=dataNode" json:"data_node,omitempty"`
  555. }
  556. func (m *AssignRequest) Reset() { *m = AssignRequest{} }
  557. func (m *AssignRequest) String() string { return proto.CompactTextString(m) }
  558. func (*AssignRequest) ProtoMessage() {}
  559. func (*AssignRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  560. func (m *AssignRequest) GetCount() uint64 {
  561. if m != nil {
  562. return m.Count
  563. }
  564. return 0
  565. }
  566. func (m *AssignRequest) GetReplication() string {
  567. if m != nil {
  568. return m.Replication
  569. }
  570. return ""
  571. }
  572. func (m *AssignRequest) GetCollection() string {
  573. if m != nil {
  574. return m.Collection
  575. }
  576. return ""
  577. }
  578. func (m *AssignRequest) GetTtl() string {
  579. if m != nil {
  580. return m.Ttl
  581. }
  582. return ""
  583. }
  584. func (m *AssignRequest) GetDataCenter() string {
  585. if m != nil {
  586. return m.DataCenter
  587. }
  588. return ""
  589. }
  590. func (m *AssignRequest) GetRack() string {
  591. if m != nil {
  592. return m.Rack
  593. }
  594. return ""
  595. }
  596. func (m *AssignRequest) GetDataNode() string {
  597. if m != nil {
  598. return m.DataNode
  599. }
  600. return ""
  601. }
  602. type AssignResponse struct {
  603. Fid string `protobuf:"bytes,1,opt,name=fid" json:"fid,omitempty"`
  604. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  605. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  606. Count uint64 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  607. Error string `protobuf:"bytes,5,opt,name=error" json:"error,omitempty"`
  608. Auth string `protobuf:"bytes,6,opt,name=auth" json:"auth,omitempty"`
  609. }
  610. func (m *AssignResponse) Reset() { *m = AssignResponse{} }
  611. func (m *AssignResponse) String() string { return proto.CompactTextString(m) }
  612. func (*AssignResponse) ProtoMessage() {}
  613. func (*AssignResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  614. func (m *AssignResponse) GetFid() string {
  615. if m != nil {
  616. return m.Fid
  617. }
  618. return ""
  619. }
  620. func (m *AssignResponse) GetUrl() string {
  621. if m != nil {
  622. return m.Url
  623. }
  624. return ""
  625. }
  626. func (m *AssignResponse) GetPublicUrl() string {
  627. if m != nil {
  628. return m.PublicUrl
  629. }
  630. return ""
  631. }
  632. func (m *AssignResponse) GetCount() uint64 {
  633. if m != nil {
  634. return m.Count
  635. }
  636. return 0
  637. }
  638. func (m *AssignResponse) GetError() string {
  639. if m != nil {
  640. return m.Error
  641. }
  642. return ""
  643. }
  644. func (m *AssignResponse) GetAuth() string {
  645. if m != nil {
  646. return m.Auth
  647. }
  648. return ""
  649. }
  650. type StatisticsRequest struct {
  651. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  652. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  653. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  654. }
  655. func (m *StatisticsRequest) Reset() { *m = StatisticsRequest{} }
  656. func (m *StatisticsRequest) String() string { return proto.CompactTextString(m) }
  657. func (*StatisticsRequest) ProtoMessage() {}
  658. func (*StatisticsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  659. func (m *StatisticsRequest) GetReplication() string {
  660. if m != nil {
  661. return m.Replication
  662. }
  663. return ""
  664. }
  665. func (m *StatisticsRequest) GetCollection() string {
  666. if m != nil {
  667. return m.Collection
  668. }
  669. return ""
  670. }
  671. func (m *StatisticsRequest) GetTtl() string {
  672. if m != nil {
  673. return m.Ttl
  674. }
  675. return ""
  676. }
  677. type StatisticsResponse struct {
  678. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  679. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  680. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  681. TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
  682. UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize" json:"used_size,omitempty"`
  683. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  684. }
  685. func (m *StatisticsResponse) Reset() { *m = StatisticsResponse{} }
  686. func (m *StatisticsResponse) String() string { return proto.CompactTextString(m) }
  687. func (*StatisticsResponse) ProtoMessage() {}
  688. func (*StatisticsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  689. func (m *StatisticsResponse) GetReplication() string {
  690. if m != nil {
  691. return m.Replication
  692. }
  693. return ""
  694. }
  695. func (m *StatisticsResponse) GetCollection() string {
  696. if m != nil {
  697. return m.Collection
  698. }
  699. return ""
  700. }
  701. func (m *StatisticsResponse) GetTtl() string {
  702. if m != nil {
  703. return m.Ttl
  704. }
  705. return ""
  706. }
  707. func (m *StatisticsResponse) GetTotalSize() uint64 {
  708. if m != nil {
  709. return m.TotalSize
  710. }
  711. return 0
  712. }
  713. func (m *StatisticsResponse) GetUsedSize() uint64 {
  714. if m != nil {
  715. return m.UsedSize
  716. }
  717. return 0
  718. }
  719. func (m *StatisticsResponse) GetFileCount() uint64 {
  720. if m != nil {
  721. return m.FileCount
  722. }
  723. return 0
  724. }
  725. type StorageType struct {
  726. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  727. Ttl string `protobuf:"bytes,2,opt,name=ttl" json:"ttl,omitempty"`
  728. }
  729. func (m *StorageType) Reset() { *m = StorageType{} }
  730. func (m *StorageType) String() string { return proto.CompactTextString(m) }
  731. func (*StorageType) ProtoMessage() {}
  732. func (*StorageType) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  733. func (m *StorageType) GetReplication() string {
  734. if m != nil {
  735. return m.Replication
  736. }
  737. return ""
  738. }
  739. func (m *StorageType) GetTtl() string {
  740. if m != nil {
  741. return m.Ttl
  742. }
  743. return ""
  744. }
  745. type Collection struct {
  746. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  747. }
  748. func (m *Collection) Reset() { *m = Collection{} }
  749. func (m *Collection) String() string { return proto.CompactTextString(m) }
  750. func (*Collection) ProtoMessage() {}
  751. func (*Collection) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  752. func (m *Collection) GetName() string {
  753. if m != nil {
  754. return m.Name
  755. }
  756. return ""
  757. }
  758. type CollectionListRequest struct {
  759. IncludeNormalVolumes bool `protobuf:"varint,1,opt,name=include_normal_volumes,json=includeNormalVolumes" json:"include_normal_volumes,omitempty"`
  760. IncludeEcVolumes bool `protobuf:"varint,2,opt,name=include_ec_volumes,json=includeEcVolumes" json:"include_ec_volumes,omitempty"`
  761. }
  762. func (m *CollectionListRequest) Reset() { *m = CollectionListRequest{} }
  763. func (m *CollectionListRequest) String() string { return proto.CompactTextString(m) }
  764. func (*CollectionListRequest) ProtoMessage() {}
  765. func (*CollectionListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  766. func (m *CollectionListRequest) GetIncludeNormalVolumes() bool {
  767. if m != nil {
  768. return m.IncludeNormalVolumes
  769. }
  770. return false
  771. }
  772. func (m *CollectionListRequest) GetIncludeEcVolumes() bool {
  773. if m != nil {
  774. return m.IncludeEcVolumes
  775. }
  776. return false
  777. }
  778. type CollectionListResponse struct {
  779. Collections []*Collection `protobuf:"bytes,1,rep,name=collections" json:"collections,omitempty"`
  780. }
  781. func (m *CollectionListResponse) Reset() { *m = CollectionListResponse{} }
  782. func (m *CollectionListResponse) String() string { return proto.CompactTextString(m) }
  783. func (*CollectionListResponse) ProtoMessage() {}
  784. func (*CollectionListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  785. func (m *CollectionListResponse) GetCollections() []*Collection {
  786. if m != nil {
  787. return m.Collections
  788. }
  789. return nil
  790. }
  791. type CollectionDeleteRequest struct {
  792. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  793. }
  794. func (m *CollectionDeleteRequest) Reset() { *m = CollectionDeleteRequest{} }
  795. func (m *CollectionDeleteRequest) String() string { return proto.CompactTextString(m) }
  796. func (*CollectionDeleteRequest) ProtoMessage() {}
  797. func (*CollectionDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  798. func (m *CollectionDeleteRequest) GetName() string {
  799. if m != nil {
  800. return m.Name
  801. }
  802. return ""
  803. }
  804. type CollectionDeleteResponse struct {
  805. }
  806. func (m *CollectionDeleteResponse) Reset() { *m = CollectionDeleteResponse{} }
  807. func (m *CollectionDeleteResponse) String() string { return proto.CompactTextString(m) }
  808. func (*CollectionDeleteResponse) ProtoMessage() {}
  809. func (*CollectionDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  810. //
  811. // volume related
  812. //
  813. type DataNodeInfo struct {
  814. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  815. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  816. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  817. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  818. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  819. VolumeInfos []*VolumeInformationMessage `protobuf:"bytes,6,rep,name=volume_infos,json=volumeInfos" json:"volume_infos,omitempty"`
  820. EcShardInfos []*VolumeEcShardInformationMessage `protobuf:"bytes,7,rep,name=ec_shard_infos,json=ecShardInfos" json:"ec_shard_infos,omitempty"`
  821. }
  822. func (m *DataNodeInfo) Reset() { *m = DataNodeInfo{} }
  823. func (m *DataNodeInfo) String() string { return proto.CompactTextString(m) }
  824. func (*DataNodeInfo) ProtoMessage() {}
  825. func (*DataNodeInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  826. func (m *DataNodeInfo) GetId() string {
  827. if m != nil {
  828. return m.Id
  829. }
  830. return ""
  831. }
  832. func (m *DataNodeInfo) GetVolumeCount() uint64 {
  833. if m != nil {
  834. return m.VolumeCount
  835. }
  836. return 0
  837. }
  838. func (m *DataNodeInfo) GetMaxVolumeCount() uint64 {
  839. if m != nil {
  840. return m.MaxVolumeCount
  841. }
  842. return 0
  843. }
  844. func (m *DataNodeInfo) GetFreeVolumeCount() uint64 {
  845. if m != nil {
  846. return m.FreeVolumeCount
  847. }
  848. return 0
  849. }
  850. func (m *DataNodeInfo) GetActiveVolumeCount() uint64 {
  851. if m != nil {
  852. return m.ActiveVolumeCount
  853. }
  854. return 0
  855. }
  856. func (m *DataNodeInfo) GetVolumeInfos() []*VolumeInformationMessage {
  857. if m != nil {
  858. return m.VolumeInfos
  859. }
  860. return nil
  861. }
  862. func (m *DataNodeInfo) GetEcShardInfos() []*VolumeEcShardInformationMessage {
  863. if m != nil {
  864. return m.EcShardInfos
  865. }
  866. return nil
  867. }
  868. type RackInfo struct {
  869. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  870. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  871. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  872. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  873. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  874. DataNodeInfos []*DataNodeInfo `protobuf:"bytes,6,rep,name=data_node_infos,json=dataNodeInfos" json:"data_node_infos,omitempty"`
  875. }
  876. func (m *RackInfo) Reset() { *m = RackInfo{} }
  877. func (m *RackInfo) String() string { return proto.CompactTextString(m) }
  878. func (*RackInfo) ProtoMessage() {}
  879. func (*RackInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  880. func (m *RackInfo) GetId() string {
  881. if m != nil {
  882. return m.Id
  883. }
  884. return ""
  885. }
  886. func (m *RackInfo) GetVolumeCount() uint64 {
  887. if m != nil {
  888. return m.VolumeCount
  889. }
  890. return 0
  891. }
  892. func (m *RackInfo) GetMaxVolumeCount() uint64 {
  893. if m != nil {
  894. return m.MaxVolumeCount
  895. }
  896. return 0
  897. }
  898. func (m *RackInfo) GetFreeVolumeCount() uint64 {
  899. if m != nil {
  900. return m.FreeVolumeCount
  901. }
  902. return 0
  903. }
  904. func (m *RackInfo) GetActiveVolumeCount() uint64 {
  905. if m != nil {
  906. return m.ActiveVolumeCount
  907. }
  908. return 0
  909. }
  910. func (m *RackInfo) GetDataNodeInfos() []*DataNodeInfo {
  911. if m != nil {
  912. return m.DataNodeInfos
  913. }
  914. return nil
  915. }
  916. type DataCenterInfo struct {
  917. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  918. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  919. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  920. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  921. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  922. RackInfos []*RackInfo `protobuf:"bytes,6,rep,name=rack_infos,json=rackInfos" json:"rack_infos,omitempty"`
  923. }
  924. func (m *DataCenterInfo) Reset() { *m = DataCenterInfo{} }
  925. func (m *DataCenterInfo) String() string { return proto.CompactTextString(m) }
  926. func (*DataCenterInfo) ProtoMessage() {}
  927. func (*DataCenterInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  928. func (m *DataCenterInfo) GetId() string {
  929. if m != nil {
  930. return m.Id
  931. }
  932. return ""
  933. }
  934. func (m *DataCenterInfo) GetVolumeCount() uint64 {
  935. if m != nil {
  936. return m.VolumeCount
  937. }
  938. return 0
  939. }
  940. func (m *DataCenterInfo) GetMaxVolumeCount() uint64 {
  941. if m != nil {
  942. return m.MaxVolumeCount
  943. }
  944. return 0
  945. }
  946. func (m *DataCenterInfo) GetFreeVolumeCount() uint64 {
  947. if m != nil {
  948. return m.FreeVolumeCount
  949. }
  950. return 0
  951. }
  952. func (m *DataCenterInfo) GetActiveVolumeCount() uint64 {
  953. if m != nil {
  954. return m.ActiveVolumeCount
  955. }
  956. return 0
  957. }
  958. func (m *DataCenterInfo) GetRackInfos() []*RackInfo {
  959. if m != nil {
  960. return m.RackInfos
  961. }
  962. return nil
  963. }
  964. type TopologyInfo struct {
  965. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  966. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  967. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  968. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  969. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  970. DataCenterInfos []*DataCenterInfo `protobuf:"bytes,6,rep,name=data_center_infos,json=dataCenterInfos" json:"data_center_infos,omitempty"`
  971. }
  972. func (m *TopologyInfo) Reset() { *m = TopologyInfo{} }
  973. func (m *TopologyInfo) String() string { return proto.CompactTextString(m) }
  974. func (*TopologyInfo) ProtoMessage() {}
  975. func (*TopologyInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  976. func (m *TopologyInfo) GetId() string {
  977. if m != nil {
  978. return m.Id
  979. }
  980. return ""
  981. }
  982. func (m *TopologyInfo) GetVolumeCount() uint64 {
  983. if m != nil {
  984. return m.VolumeCount
  985. }
  986. return 0
  987. }
  988. func (m *TopologyInfo) GetMaxVolumeCount() uint64 {
  989. if m != nil {
  990. return m.MaxVolumeCount
  991. }
  992. return 0
  993. }
  994. func (m *TopologyInfo) GetFreeVolumeCount() uint64 {
  995. if m != nil {
  996. return m.FreeVolumeCount
  997. }
  998. return 0
  999. }
  1000. func (m *TopologyInfo) GetActiveVolumeCount() uint64 {
  1001. if m != nil {
  1002. return m.ActiveVolumeCount
  1003. }
  1004. return 0
  1005. }
  1006. func (m *TopologyInfo) GetDataCenterInfos() []*DataCenterInfo {
  1007. if m != nil {
  1008. return m.DataCenterInfos
  1009. }
  1010. return nil
  1011. }
  1012. type VolumeListRequest struct {
  1013. }
  1014. func (m *VolumeListRequest) Reset() { *m = VolumeListRequest{} }
  1015. func (m *VolumeListRequest) String() string { return proto.CompactTextString(m) }
  1016. func (*VolumeListRequest) ProtoMessage() {}
  1017. func (*VolumeListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
  1018. type VolumeListResponse struct {
  1019. TopologyInfo *TopologyInfo `protobuf:"bytes,1,opt,name=topology_info,json=topologyInfo" json:"topology_info,omitempty"`
  1020. VolumeSizeLimitMb uint64 `protobuf:"varint,2,opt,name=volume_size_limit_mb,json=volumeSizeLimitMb" json:"volume_size_limit_mb,omitempty"`
  1021. }
  1022. func (m *VolumeListResponse) Reset() { *m = VolumeListResponse{} }
  1023. func (m *VolumeListResponse) String() string { return proto.CompactTextString(m) }
  1024. func (*VolumeListResponse) ProtoMessage() {}
  1025. func (*VolumeListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
  1026. func (m *VolumeListResponse) GetTopologyInfo() *TopologyInfo {
  1027. if m != nil {
  1028. return m.TopologyInfo
  1029. }
  1030. return nil
  1031. }
  1032. func (m *VolumeListResponse) GetVolumeSizeLimitMb() uint64 {
  1033. if m != nil {
  1034. return m.VolumeSizeLimitMb
  1035. }
  1036. return 0
  1037. }
  1038. type LookupEcVolumeRequest struct {
  1039. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1040. }
  1041. func (m *LookupEcVolumeRequest) Reset() { *m = LookupEcVolumeRequest{} }
  1042. func (m *LookupEcVolumeRequest) String() string { return proto.CompactTextString(m) }
  1043. func (*LookupEcVolumeRequest) ProtoMessage() {}
  1044. func (*LookupEcVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
  1045. func (m *LookupEcVolumeRequest) GetVolumeId() uint32 {
  1046. if m != nil {
  1047. return m.VolumeId
  1048. }
  1049. return 0
  1050. }
  1051. type LookupEcVolumeResponse struct {
  1052. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1053. ShardIdLocations []*LookupEcVolumeResponse_EcShardIdLocation `protobuf:"bytes,2,rep,name=shard_id_locations,json=shardIdLocations" json:"shard_id_locations,omitempty"`
  1054. }
  1055. func (m *LookupEcVolumeResponse) Reset() { *m = LookupEcVolumeResponse{} }
  1056. func (m *LookupEcVolumeResponse) String() string { return proto.CompactTextString(m) }
  1057. func (*LookupEcVolumeResponse) ProtoMessage() {}
  1058. func (*LookupEcVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
  1059. func (m *LookupEcVolumeResponse) GetVolumeId() uint32 {
  1060. if m != nil {
  1061. return m.VolumeId
  1062. }
  1063. return 0
  1064. }
  1065. func (m *LookupEcVolumeResponse) GetShardIdLocations() []*LookupEcVolumeResponse_EcShardIdLocation {
  1066. if m != nil {
  1067. return m.ShardIdLocations
  1068. }
  1069. return nil
  1070. }
  1071. type LookupEcVolumeResponse_EcShardIdLocation struct {
  1072. ShardId uint32 `protobuf:"varint,1,opt,name=shard_id,json=shardId" json:"shard_id,omitempty"`
  1073. Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
  1074. }
  1075. func (m *LookupEcVolumeResponse_EcShardIdLocation) Reset() {
  1076. *m = LookupEcVolumeResponse_EcShardIdLocation{}
  1077. }
  1078. func (m *LookupEcVolumeResponse_EcShardIdLocation) String() string { return proto.CompactTextString(m) }
  1079. func (*LookupEcVolumeResponse_EcShardIdLocation) ProtoMessage() {}
  1080. func (*LookupEcVolumeResponse_EcShardIdLocation) Descriptor() ([]byte, []int) {
  1081. return fileDescriptor0, []int{29, 0}
  1082. }
  1083. func (m *LookupEcVolumeResponse_EcShardIdLocation) GetShardId() uint32 {
  1084. if m != nil {
  1085. return m.ShardId
  1086. }
  1087. return 0
  1088. }
  1089. func (m *LookupEcVolumeResponse_EcShardIdLocation) GetLocations() []*Location {
  1090. if m != nil {
  1091. return m.Locations
  1092. }
  1093. return nil
  1094. }
  1095. func init() {
  1096. proto.RegisterType((*Heartbeat)(nil), "master_pb.Heartbeat")
  1097. proto.RegisterType((*HeartbeatResponse)(nil), "master_pb.HeartbeatResponse")
  1098. proto.RegisterType((*VolumeInformationMessage)(nil), "master_pb.VolumeInformationMessage")
  1099. proto.RegisterType((*VolumeShortInformationMessage)(nil), "master_pb.VolumeShortInformationMessage")
  1100. proto.RegisterType((*VolumeEcShardInformationMessage)(nil), "master_pb.VolumeEcShardInformationMessage")
  1101. proto.RegisterType((*Empty)(nil), "master_pb.Empty")
  1102. proto.RegisterType((*SuperBlockExtra)(nil), "master_pb.SuperBlockExtra")
  1103. proto.RegisterType((*SuperBlockExtra_ErasureCoding)(nil), "master_pb.SuperBlockExtra.ErasureCoding")
  1104. proto.RegisterType((*ClientListenRequest)(nil), "master_pb.ClientListenRequest")
  1105. proto.RegisterType((*VolumeLocation)(nil), "master_pb.VolumeLocation")
  1106. proto.RegisterType((*LookupVolumeRequest)(nil), "master_pb.LookupVolumeRequest")
  1107. proto.RegisterType((*LookupVolumeResponse)(nil), "master_pb.LookupVolumeResponse")
  1108. proto.RegisterType((*LookupVolumeResponse_VolumeIdLocation)(nil), "master_pb.LookupVolumeResponse.VolumeIdLocation")
  1109. proto.RegisterType((*Location)(nil), "master_pb.Location")
  1110. proto.RegisterType((*AssignRequest)(nil), "master_pb.AssignRequest")
  1111. proto.RegisterType((*AssignResponse)(nil), "master_pb.AssignResponse")
  1112. proto.RegisterType((*StatisticsRequest)(nil), "master_pb.StatisticsRequest")
  1113. proto.RegisterType((*StatisticsResponse)(nil), "master_pb.StatisticsResponse")
  1114. proto.RegisterType((*StorageType)(nil), "master_pb.StorageType")
  1115. proto.RegisterType((*Collection)(nil), "master_pb.Collection")
  1116. proto.RegisterType((*CollectionListRequest)(nil), "master_pb.CollectionListRequest")
  1117. proto.RegisterType((*CollectionListResponse)(nil), "master_pb.CollectionListResponse")
  1118. proto.RegisterType((*CollectionDeleteRequest)(nil), "master_pb.CollectionDeleteRequest")
  1119. proto.RegisterType((*CollectionDeleteResponse)(nil), "master_pb.CollectionDeleteResponse")
  1120. proto.RegisterType((*DataNodeInfo)(nil), "master_pb.DataNodeInfo")
  1121. proto.RegisterType((*RackInfo)(nil), "master_pb.RackInfo")
  1122. proto.RegisterType((*DataCenterInfo)(nil), "master_pb.DataCenterInfo")
  1123. proto.RegisterType((*TopologyInfo)(nil), "master_pb.TopologyInfo")
  1124. proto.RegisterType((*VolumeListRequest)(nil), "master_pb.VolumeListRequest")
  1125. proto.RegisterType((*VolumeListResponse)(nil), "master_pb.VolumeListResponse")
  1126. proto.RegisterType((*LookupEcVolumeRequest)(nil), "master_pb.LookupEcVolumeRequest")
  1127. proto.RegisterType((*LookupEcVolumeResponse)(nil), "master_pb.LookupEcVolumeResponse")
  1128. proto.RegisterType((*LookupEcVolumeResponse_EcShardIdLocation)(nil), "master_pb.LookupEcVolumeResponse.EcShardIdLocation")
  1129. }
  1130. // Reference imports to suppress errors if they are not otherwise used.
  1131. var _ context.Context
  1132. var _ grpc.ClientConn
  1133. // This is a compile-time assertion to ensure that this generated file
  1134. // is compatible with the grpc package it is being compiled against.
  1135. const _ = grpc.SupportPackageIsVersion4
  1136. // Client API for Seaweed service
  1137. type SeaweedClient interface {
  1138. SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error)
  1139. KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error)
  1140. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  1141. Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error)
  1142. Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
  1143. CollectionList(ctx context.Context, in *CollectionListRequest, opts ...grpc.CallOption) (*CollectionListResponse, error)
  1144. CollectionDelete(ctx context.Context, in *CollectionDeleteRequest, opts ...grpc.CallOption) (*CollectionDeleteResponse, error)
  1145. VolumeList(ctx context.Context, in *VolumeListRequest, opts ...grpc.CallOption) (*VolumeListResponse, error)
  1146. LookupEcVolume(ctx context.Context, in *LookupEcVolumeRequest, opts ...grpc.CallOption) (*LookupEcVolumeResponse, error)
  1147. }
  1148. type seaweedClient struct {
  1149. cc *grpc.ClientConn
  1150. }
  1151. func NewSeaweedClient(cc *grpc.ClientConn) SeaweedClient {
  1152. return &seaweedClient{cc}
  1153. }
  1154. func (c *seaweedClient) SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error) {
  1155. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[0], c.cc, "/master_pb.Seaweed/SendHeartbeat", opts...)
  1156. if err != nil {
  1157. return nil, err
  1158. }
  1159. x := &seaweedSendHeartbeatClient{stream}
  1160. return x, nil
  1161. }
  1162. type Seaweed_SendHeartbeatClient interface {
  1163. Send(*Heartbeat) error
  1164. Recv() (*HeartbeatResponse, error)
  1165. grpc.ClientStream
  1166. }
  1167. type seaweedSendHeartbeatClient struct {
  1168. grpc.ClientStream
  1169. }
  1170. func (x *seaweedSendHeartbeatClient) Send(m *Heartbeat) error {
  1171. return x.ClientStream.SendMsg(m)
  1172. }
  1173. func (x *seaweedSendHeartbeatClient) Recv() (*HeartbeatResponse, error) {
  1174. m := new(HeartbeatResponse)
  1175. if err := x.ClientStream.RecvMsg(m); err != nil {
  1176. return nil, err
  1177. }
  1178. return m, nil
  1179. }
  1180. func (c *seaweedClient) KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error) {
  1181. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[1], c.cc, "/master_pb.Seaweed/KeepConnected", opts...)
  1182. if err != nil {
  1183. return nil, err
  1184. }
  1185. x := &seaweedKeepConnectedClient{stream}
  1186. return x, nil
  1187. }
  1188. type Seaweed_KeepConnectedClient interface {
  1189. Send(*ClientListenRequest) error
  1190. Recv() (*VolumeLocation, error)
  1191. grpc.ClientStream
  1192. }
  1193. type seaweedKeepConnectedClient struct {
  1194. grpc.ClientStream
  1195. }
  1196. func (x *seaweedKeepConnectedClient) Send(m *ClientListenRequest) error {
  1197. return x.ClientStream.SendMsg(m)
  1198. }
  1199. func (x *seaweedKeepConnectedClient) Recv() (*VolumeLocation, error) {
  1200. m := new(VolumeLocation)
  1201. if err := x.ClientStream.RecvMsg(m); err != nil {
  1202. return nil, err
  1203. }
  1204. return m, nil
  1205. }
  1206. func (c *seaweedClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  1207. out := new(LookupVolumeResponse)
  1208. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupVolume", in, out, c.cc, opts...)
  1209. if err != nil {
  1210. return nil, err
  1211. }
  1212. return out, nil
  1213. }
  1214. func (c *seaweedClient) Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error) {
  1215. out := new(AssignResponse)
  1216. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Assign", in, out, c.cc, opts...)
  1217. if err != nil {
  1218. return nil, err
  1219. }
  1220. return out, nil
  1221. }
  1222. func (c *seaweedClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
  1223. out := new(StatisticsResponse)
  1224. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Statistics", in, out, c.cc, opts...)
  1225. if err != nil {
  1226. return nil, err
  1227. }
  1228. return out, nil
  1229. }
  1230. func (c *seaweedClient) CollectionList(ctx context.Context, in *CollectionListRequest, opts ...grpc.CallOption) (*CollectionListResponse, error) {
  1231. out := new(CollectionListResponse)
  1232. err := grpc.Invoke(ctx, "/master_pb.Seaweed/CollectionList", in, out, c.cc, opts...)
  1233. if err != nil {
  1234. return nil, err
  1235. }
  1236. return out, nil
  1237. }
  1238. func (c *seaweedClient) CollectionDelete(ctx context.Context, in *CollectionDeleteRequest, opts ...grpc.CallOption) (*CollectionDeleteResponse, error) {
  1239. out := new(CollectionDeleteResponse)
  1240. err := grpc.Invoke(ctx, "/master_pb.Seaweed/CollectionDelete", in, out, c.cc, opts...)
  1241. if err != nil {
  1242. return nil, err
  1243. }
  1244. return out, nil
  1245. }
  1246. func (c *seaweedClient) VolumeList(ctx context.Context, in *VolumeListRequest, opts ...grpc.CallOption) (*VolumeListResponse, error) {
  1247. out := new(VolumeListResponse)
  1248. err := grpc.Invoke(ctx, "/master_pb.Seaweed/VolumeList", in, out, c.cc, opts...)
  1249. if err != nil {
  1250. return nil, err
  1251. }
  1252. return out, nil
  1253. }
  1254. func (c *seaweedClient) LookupEcVolume(ctx context.Context, in *LookupEcVolumeRequest, opts ...grpc.CallOption) (*LookupEcVolumeResponse, error) {
  1255. out := new(LookupEcVolumeResponse)
  1256. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupEcVolume", in, out, c.cc, opts...)
  1257. if err != nil {
  1258. return nil, err
  1259. }
  1260. return out, nil
  1261. }
  1262. // Server API for Seaweed service
  1263. type SeaweedServer interface {
  1264. SendHeartbeat(Seaweed_SendHeartbeatServer) error
  1265. KeepConnected(Seaweed_KeepConnectedServer) error
  1266. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  1267. Assign(context.Context, *AssignRequest) (*AssignResponse, error)
  1268. Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
  1269. CollectionList(context.Context, *CollectionListRequest) (*CollectionListResponse, error)
  1270. CollectionDelete(context.Context, *CollectionDeleteRequest) (*CollectionDeleteResponse, error)
  1271. VolumeList(context.Context, *VolumeListRequest) (*VolumeListResponse, error)
  1272. LookupEcVolume(context.Context, *LookupEcVolumeRequest) (*LookupEcVolumeResponse, error)
  1273. }
  1274. func RegisterSeaweedServer(s *grpc.Server, srv SeaweedServer) {
  1275. s.RegisterService(&_Seaweed_serviceDesc, srv)
  1276. }
  1277. func _Seaweed_SendHeartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
  1278. return srv.(SeaweedServer).SendHeartbeat(&seaweedSendHeartbeatServer{stream})
  1279. }
  1280. type Seaweed_SendHeartbeatServer interface {
  1281. Send(*HeartbeatResponse) error
  1282. Recv() (*Heartbeat, error)
  1283. grpc.ServerStream
  1284. }
  1285. type seaweedSendHeartbeatServer struct {
  1286. grpc.ServerStream
  1287. }
  1288. func (x *seaweedSendHeartbeatServer) Send(m *HeartbeatResponse) error {
  1289. return x.ServerStream.SendMsg(m)
  1290. }
  1291. func (x *seaweedSendHeartbeatServer) Recv() (*Heartbeat, error) {
  1292. m := new(Heartbeat)
  1293. if err := x.ServerStream.RecvMsg(m); err != nil {
  1294. return nil, err
  1295. }
  1296. return m, nil
  1297. }
  1298. func _Seaweed_KeepConnected_Handler(srv interface{}, stream grpc.ServerStream) error {
  1299. return srv.(SeaweedServer).KeepConnected(&seaweedKeepConnectedServer{stream})
  1300. }
  1301. type Seaweed_KeepConnectedServer interface {
  1302. Send(*VolumeLocation) error
  1303. Recv() (*ClientListenRequest, error)
  1304. grpc.ServerStream
  1305. }
  1306. type seaweedKeepConnectedServer struct {
  1307. grpc.ServerStream
  1308. }
  1309. func (x *seaweedKeepConnectedServer) Send(m *VolumeLocation) error {
  1310. return x.ServerStream.SendMsg(m)
  1311. }
  1312. func (x *seaweedKeepConnectedServer) Recv() (*ClientListenRequest, error) {
  1313. m := new(ClientListenRequest)
  1314. if err := x.ServerStream.RecvMsg(m); err != nil {
  1315. return nil, err
  1316. }
  1317. return m, nil
  1318. }
  1319. func _Seaweed_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1320. in := new(LookupVolumeRequest)
  1321. if err := dec(in); err != nil {
  1322. return nil, err
  1323. }
  1324. if interceptor == nil {
  1325. return srv.(SeaweedServer).LookupVolume(ctx, in)
  1326. }
  1327. info := &grpc.UnaryServerInfo{
  1328. Server: srv,
  1329. FullMethod: "/master_pb.Seaweed/LookupVolume",
  1330. }
  1331. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1332. return srv.(SeaweedServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  1333. }
  1334. return interceptor(ctx, in, info, handler)
  1335. }
  1336. func _Seaweed_Assign_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1337. in := new(AssignRequest)
  1338. if err := dec(in); err != nil {
  1339. return nil, err
  1340. }
  1341. if interceptor == nil {
  1342. return srv.(SeaweedServer).Assign(ctx, in)
  1343. }
  1344. info := &grpc.UnaryServerInfo{
  1345. Server: srv,
  1346. FullMethod: "/master_pb.Seaweed/Assign",
  1347. }
  1348. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1349. return srv.(SeaweedServer).Assign(ctx, req.(*AssignRequest))
  1350. }
  1351. return interceptor(ctx, in, info, handler)
  1352. }
  1353. func _Seaweed_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1354. in := new(StatisticsRequest)
  1355. if err := dec(in); err != nil {
  1356. return nil, err
  1357. }
  1358. if interceptor == nil {
  1359. return srv.(SeaweedServer).Statistics(ctx, in)
  1360. }
  1361. info := &grpc.UnaryServerInfo{
  1362. Server: srv,
  1363. FullMethod: "/master_pb.Seaweed/Statistics",
  1364. }
  1365. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1366. return srv.(SeaweedServer).Statistics(ctx, req.(*StatisticsRequest))
  1367. }
  1368. return interceptor(ctx, in, info, handler)
  1369. }
  1370. func _Seaweed_CollectionList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1371. in := new(CollectionListRequest)
  1372. if err := dec(in); err != nil {
  1373. return nil, err
  1374. }
  1375. if interceptor == nil {
  1376. return srv.(SeaweedServer).CollectionList(ctx, in)
  1377. }
  1378. info := &grpc.UnaryServerInfo{
  1379. Server: srv,
  1380. FullMethod: "/master_pb.Seaweed/CollectionList",
  1381. }
  1382. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1383. return srv.(SeaweedServer).CollectionList(ctx, req.(*CollectionListRequest))
  1384. }
  1385. return interceptor(ctx, in, info, handler)
  1386. }
  1387. func _Seaweed_CollectionDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1388. in := new(CollectionDeleteRequest)
  1389. if err := dec(in); err != nil {
  1390. return nil, err
  1391. }
  1392. if interceptor == nil {
  1393. return srv.(SeaweedServer).CollectionDelete(ctx, in)
  1394. }
  1395. info := &grpc.UnaryServerInfo{
  1396. Server: srv,
  1397. FullMethod: "/master_pb.Seaweed/CollectionDelete",
  1398. }
  1399. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1400. return srv.(SeaweedServer).CollectionDelete(ctx, req.(*CollectionDeleteRequest))
  1401. }
  1402. return interceptor(ctx, in, info, handler)
  1403. }
  1404. func _Seaweed_VolumeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1405. in := new(VolumeListRequest)
  1406. if err := dec(in); err != nil {
  1407. return nil, err
  1408. }
  1409. if interceptor == nil {
  1410. return srv.(SeaweedServer).VolumeList(ctx, in)
  1411. }
  1412. info := &grpc.UnaryServerInfo{
  1413. Server: srv,
  1414. FullMethod: "/master_pb.Seaweed/VolumeList",
  1415. }
  1416. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1417. return srv.(SeaweedServer).VolumeList(ctx, req.(*VolumeListRequest))
  1418. }
  1419. return interceptor(ctx, in, info, handler)
  1420. }
  1421. func _Seaweed_LookupEcVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1422. in := new(LookupEcVolumeRequest)
  1423. if err := dec(in); err != nil {
  1424. return nil, err
  1425. }
  1426. if interceptor == nil {
  1427. return srv.(SeaweedServer).LookupEcVolume(ctx, in)
  1428. }
  1429. info := &grpc.UnaryServerInfo{
  1430. Server: srv,
  1431. FullMethod: "/master_pb.Seaweed/LookupEcVolume",
  1432. }
  1433. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1434. return srv.(SeaweedServer).LookupEcVolume(ctx, req.(*LookupEcVolumeRequest))
  1435. }
  1436. return interceptor(ctx, in, info, handler)
  1437. }
  1438. var _Seaweed_serviceDesc = grpc.ServiceDesc{
  1439. ServiceName: "master_pb.Seaweed",
  1440. HandlerType: (*SeaweedServer)(nil),
  1441. Methods: []grpc.MethodDesc{
  1442. {
  1443. MethodName: "LookupVolume",
  1444. Handler: _Seaweed_LookupVolume_Handler,
  1445. },
  1446. {
  1447. MethodName: "Assign",
  1448. Handler: _Seaweed_Assign_Handler,
  1449. },
  1450. {
  1451. MethodName: "Statistics",
  1452. Handler: _Seaweed_Statistics_Handler,
  1453. },
  1454. {
  1455. MethodName: "CollectionList",
  1456. Handler: _Seaweed_CollectionList_Handler,
  1457. },
  1458. {
  1459. MethodName: "CollectionDelete",
  1460. Handler: _Seaweed_CollectionDelete_Handler,
  1461. },
  1462. {
  1463. MethodName: "VolumeList",
  1464. Handler: _Seaweed_VolumeList_Handler,
  1465. },
  1466. {
  1467. MethodName: "LookupEcVolume",
  1468. Handler: _Seaweed_LookupEcVolume_Handler,
  1469. },
  1470. },
  1471. Streams: []grpc.StreamDesc{
  1472. {
  1473. StreamName: "SendHeartbeat",
  1474. Handler: _Seaweed_SendHeartbeat_Handler,
  1475. ServerStreams: true,
  1476. ClientStreams: true,
  1477. },
  1478. {
  1479. StreamName: "KeepConnected",
  1480. Handler: _Seaweed_KeepConnected_Handler,
  1481. ServerStreams: true,
  1482. ClientStreams: true,
  1483. },
  1484. },
  1485. Metadata: "master.proto",
  1486. }
  1487. func init() { proto.RegisterFile("master.proto", fileDescriptor0) }
  1488. var fileDescriptor0 = []byte{
  1489. // 1832 bytes of a gzipped FileDescriptorProto
  1490. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x58, 0xcd, 0x6f, 0x1c, 0x49,
  1491. 0x15, 0x4f, 0xcf, 0x8c, 0xed, 0x99, 0x37, 0x1f, 0x9e, 0x29, 0x3b, 0xde, 0xc9, 0x2c, 0xd9, 0x4c,
  1492. 0x7a, 0x91, 0xd6, 0x1b, 0x16, 0xb3, 0x64, 0x57, 0x02, 0x09, 0xd0, 0x2a, 0x71, 0xbc, 0x60, 0x25,
  1493. 0x9b, 0x4d, 0x7a, 0x42, 0x90, 0x90, 0x50, 0x53, 0xee, 0x7e, 0xb6, 0x4b, 0xee, 0xe9, 0x6e, 0xba,
  1494. 0x6a, 0x1c, 0xcf, 0x72, 0xe0, 0x00, 0x37, 0x24, 0x2e, 0x9c, 0xb9, 0xf3, 0x37, 0x70, 0xe0, 0xc2,
  1495. 0x91, 0xbf, 0x82, 0x03, 0xff, 0x00, 0x57, 0x84, 0x84, 0xea, 0xab, 0x3f, 0x66, 0xc6, 0xf6, 0x66,
  1496. 0xa5, 0x1c, 0x72, 0xab, 0x7e, 0x5f, 0xf5, 0xea, 0xf7, 0xea, 0x7d, 0x54, 0x43, 0x67, 0x4a, 0xb9,
  1497. 0xc0, 0x6c, 0x2f, 0xcd, 0x12, 0x91, 0x90, 0x96, 0xfe, 0xf2, 0xd3, 0x23, 0xf7, 0x8f, 0xeb, 0xd0,
  1498. 0xfa, 0x19, 0xd2, 0x4c, 0x1c, 0x21, 0x15, 0xa4, 0x07, 0x35, 0x96, 0x0e, 0x9d, 0xb1, 0xb3, 0xdb,
  1499. 0xf2, 0x6a, 0x2c, 0x25, 0x04, 0x1a, 0x69, 0x92, 0x89, 0x61, 0x6d, 0xec, 0xec, 0x76, 0x3d, 0xb5,
  1500. 0x26, 0xb7, 0x01, 0xd2, 0xd9, 0x51, 0xc4, 0x02, 0x7f, 0x96, 0x45, 0xc3, 0xba, 0x92, 0x6d, 0x69,
  1501. 0xca, 0xcf, 0xb3, 0x88, 0xec, 0x42, 0x7f, 0x4a, 0x2f, 0xfc, 0xf3, 0x24, 0x9a, 0x4d, 0xd1, 0x0f,
  1502. 0x92, 0x59, 0x2c, 0x86, 0x0d, 0xa5, 0xde, 0x9b, 0xd2, 0x8b, 0x97, 0x8a, 0xbc, 0x2f, 0xa9, 0x64,
  1503. 0x2c, 0xbd, 0xba, 0xf0, 0x8f, 0x59, 0x84, 0xfe, 0x19, 0xce, 0x87, 0x6b, 0x63, 0x67, 0xb7, 0xe1,
  1504. 0xc1, 0x94, 0x5e, 0x7c, 0xce, 0x22, 0x7c, 0x8c, 0x73, 0x72, 0x07, 0xda, 0x21, 0x15, 0xd4, 0x0f,
  1505. 0x30, 0x16, 0x98, 0x0d, 0xd7, 0xd5, 0x5e, 0x20, 0x49, 0xfb, 0x8a, 0x22, 0xfd, 0xcb, 0x68, 0x70,
  1506. 0x36, 0xdc, 0x50, 0x1c, 0xb5, 0x96, 0xfe, 0xd1, 0x70, 0xca, 0x62, 0x5f, 0x79, 0xde, 0x54, 0x5b,
  1507. 0xb7, 0x14, 0xe5, 0x99, 0x74, 0xff, 0x27, 0xb0, 0xa1, 0x7d, 0xe3, 0xc3, 0xd6, 0xb8, 0xbe, 0xdb,
  1508. 0xbe, 0xff, 0xfe, 0x5e, 0x8e, 0xc6, 0x9e, 0x76, 0xef, 0x30, 0x3e, 0x4e, 0xb2, 0x29, 0x15, 0x2c,
  1509. 0x89, 0xbf, 0x40, 0xce, 0xe9, 0x09, 0x7a, 0x56, 0x87, 0x1c, 0x42, 0x3b, 0xc6, 0x57, 0xbe, 0x35,
  1510. 0x01, 0xca, 0xc4, 0xee, 0x92, 0x89, 0xc9, 0x69, 0x92, 0x89, 0x15, 0x76, 0x20, 0xc6, 0x57, 0x2f,
  1511. 0x8d, 0xa9, 0xe7, 0xb0, 0x19, 0x62, 0x84, 0x02, 0xc3, 0xdc, 0x5c, 0xfb, 0x35, 0xcd, 0xf5, 0x8c,
  1512. 0x01, 0x6b, 0xf2, 0xdb, 0xd0, 0x3b, 0xa5, 0xdc, 0x8f, 0x93, 0xdc, 0x62, 0x67, 0xec, 0xec, 0x36,
  1513. 0xbd, 0xce, 0x29, 0xe5, 0x4f, 0x13, 0x2b, 0xf5, 0x53, 0x68, 0x61, 0xe0, 0xf3, 0x53, 0x9a, 0x85,
  1514. 0x7c, 0xd8, 0x57, 0x5b, 0xde, 0x5b, 0xda, 0xf2, 0x20, 0x98, 0x48, 0x81, 0x15, 0x9b, 0x36, 0x51,
  1515. 0xb3, 0x38, 0x79, 0x0a, 0x5d, 0x09, 0x46, 0x61, 0x6c, 0xf0, 0xda, 0xc6, 0x24, 0x9a, 0x07, 0xd6,
  1516. 0xde, 0x4b, 0x18, 0x58, 0x44, 0x0a, 0x9b, 0xe4, 0xb5, 0x6d, 0x5a, 0x58, 0x73, 0xbb, 0x1f, 0x40,
  1517. 0xdf, 0xc0, 0x52, 0x98, 0xdd, 0x52, 0xc0, 0x74, 0x15, 0x30, 0x56, 0xd0, 0xfd, 0x9b, 0x03, 0x83,
  1518. 0x3c, 0x1b, 0x3c, 0xe4, 0x69, 0x12, 0x73, 0x24, 0xf7, 0x60, 0x60, 0xae, 0x33, 0x67, 0x5f, 0xa1,
  1519. 0x1f, 0xb1, 0x29, 0x13, 0x2a, 0x49, 0x1a, 0xde, 0xa6, 0x66, 0x4c, 0xd8, 0x57, 0xf8, 0x44, 0x92,
  1520. 0xc9, 0x0e, 0xac, 0x47, 0x48, 0x43, 0xcc, 0x54, 0xce, 0xb4, 0x3c, 0xf3, 0x45, 0x3e, 0x80, 0xcd,
  1521. 0x29, 0x8a, 0x8c, 0x05, 0xdc, 0xa7, 0x61, 0x98, 0x21, 0xe7, 0x26, 0x75, 0x7a, 0x86, 0xfc, 0x40,
  1522. 0x53, 0xc9, 0x0f, 0x61, 0x68, 0x05, 0x99, 0xbc, 0xe3, 0xe7, 0x34, 0xf2, 0x39, 0x06, 0x49, 0x1c,
  1523. 0x72, 0x93, 0x47, 0x3b, 0x86, 0x7f, 0x68, 0xd8, 0x13, 0xcd, 0x75, 0xff, 0x52, 0x87, 0xe1, 0x65,
  1524. 0x17, 0x58, 0x65, 0x76, 0xa8, 0x9c, 0xee, 0x7a, 0x35, 0x16, 0xca, 0xcc, 0x91, 0x87, 0x51, 0x5e,
  1525. 0x36, 0x3c, 0xb5, 0x26, 0xef, 0x01, 0x04, 0x49, 0x14, 0x61, 0x20, 0x15, 0x8d, 0x7b, 0x25, 0x8a,
  1526. 0xcc, 0x2c, 0x95, 0xac, 0x45, 0x52, 0x37, 0xbc, 0x96, 0xa4, 0xe8, 0x7c, 0xbe, 0x0b, 0x1d, 0x0d,
  1527. 0xbc, 0x11, 0xd0, 0xf9, 0xdc, 0xd6, 0x34, 0x2d, 0xf2, 0x11, 0x10, 0x1b, 0xe0, 0xa3, 0x79, 0x2e,
  1528. 0xb8, 0xae, 0x04, 0xfb, 0x86, 0xf3, 0x70, 0x6e, 0xa5, 0xdf, 0x85, 0x56, 0x86, 0x34, 0xf4, 0x93,
  1529. 0x38, 0x9a, 0xab, 0x14, 0x6f, 0x7a, 0x4d, 0x49, 0xf8, 0x32, 0x8e, 0xe6, 0xe4, 0x3b, 0x30, 0xc8,
  1530. 0x30, 0x8d, 0x58, 0x40, 0xfd, 0x34, 0xa2, 0x01, 0x4e, 0x31, 0xb6, 0xd9, 0xde, 0x37, 0x8c, 0x67,
  1531. 0x96, 0x4e, 0x86, 0xb0, 0x71, 0x8e, 0x19, 0x97, 0xc7, 0x6a, 0x29, 0x11, 0xfb, 0x49, 0xfa, 0x50,
  1532. 0x17, 0x22, 0x1a, 0x82, 0xa2, 0xca, 0x25, 0xf9, 0x10, 0xfa, 0x41, 0x32, 0x4d, 0x69, 0x20, 0xfc,
  1533. 0x0c, 0xcf, 0x99, 0x52, 0x6a, 0x2b, 0xf6, 0xa6, 0xa1, 0x7b, 0x86, 0x2c, 0x8f, 0x33, 0x4d, 0x42,
  1534. 0x76, 0xcc, 0x30, 0xf4, 0xa9, 0x30, 0x61, 0x52, 0x29, 0x57, 0xf7, 0xfa, 0x96, 0xf3, 0x40, 0xe8,
  1535. 0x00, 0xb9, 0x7f, 0x75, 0xe0, 0xf6, 0x95, 0xe9, 0xbc, 0x14, 0xa4, 0xeb, 0x02, 0xf2, 0xa6, 0x30,
  1536. 0x70, 0x67, 0x70, 0xe7, 0x9a, 0x24, 0xbb, 0xc6, 0xd7, 0xda, 0x92, 0xaf, 0x2e, 0x74, 0x31, 0xf0,
  1537. 0x59, 0x1c, 0xe2, 0x85, 0x7f, 0xc4, 0x84, 0xbe, 0xfe, 0x5d, 0xaf, 0x8d, 0xc1, 0xa1, 0xa4, 0x3d,
  1538. 0x64, 0x82, 0xbb, 0x1b, 0xb0, 0x76, 0x30, 0x4d, 0xc5, 0xdc, 0xfd, 0xbb, 0x03, 0x9b, 0x93, 0x59,
  1539. 0x8a, 0xd9, 0xc3, 0x28, 0x09, 0xce, 0x0e, 0x2e, 0x44, 0x46, 0xc9, 0x97, 0xd0, 0xc3, 0x8c, 0xf2,
  1540. 0x59, 0x26, 0xaf, 0x4d, 0xc8, 0xe2, 0x13, 0xb5, 0x79, 0xb5, 0x5a, 0x2e, 0xe8, 0xec, 0x1d, 0x68,
  1541. 0x85, 0x7d, 0x25, 0xef, 0x75, 0xb1, 0xfc, 0x39, 0xfa, 0x25, 0x74, 0x2b, 0x7c, 0x99, 0x13, 0xb2,
  1542. 0xb7, 0x98, 0x43, 0xa9, 0xb5, 0xcc, 0xe7, 0x94, 0x66, 0x4c, 0xcc, 0x4d, 0x0f, 0x34, 0x5f, 0x32,
  1543. 0x17, 0x4c, 0x4d, 0x60, 0xa1, 0x3c, 0x4b, 0x5d, 0x76, 0x19, 0x4d, 0x39, 0x0c, 0xb9, 0xfb, 0x21,
  1544. 0x6c, 0xed, 0x47, 0x0c, 0x63, 0xf1, 0x84, 0x71, 0x81, 0xb1, 0x87, 0xbf, 0x99, 0x21, 0x17, 0x72,
  1545. 0x87, 0x98, 0x4e, 0xd1, 0x74, 0x58, 0xb5, 0x76, 0x7f, 0x07, 0x3d, 0x8d, 0xf5, 0x93, 0x24, 0x50,
  1546. 0x08, 0xcb, 0x78, 0xc8, 0xd6, 0xaa, 0x85, 0xe4, 0x72, 0xa1, 0xe7, 0xd6, 0x16, 0x7b, 0xee, 0x2d,
  1547. 0x68, 0xaa, 0xa6, 0x54, 0xb8, 0xb2, 0x21, 0xfb, 0x0c, 0x0b, 0x79, 0x91, 0x94, 0xa1, 0x66, 0x37,
  1548. 0x14, 0xbb, 0x6d, 0xfb, 0x06, 0x0b, 0xb9, 0xfb, 0x02, 0xb6, 0x9e, 0x24, 0xc9, 0xd9, 0x2c, 0xd5,
  1549. 0x6e, 0x58, 0x5f, 0xab, 0x27, 0x74, 0xc6, 0x75, 0xb9, 0x67, 0x7e, 0xc2, 0xeb, 0xe2, 0xed, 0xfe,
  1550. 0xc7, 0x81, 0xed, 0xaa, 0x59, 0x53, 0x4d, 0x7f, 0x0d, 0x5b, 0xb9, 0x5d, 0x3f, 0x32, 0x67, 0xd6,
  1551. 0x1b, 0xb4, 0xef, 0x7f, 0x5c, 0x0a, 0xe6, 0x2a, 0x6d, 0xdb, 0xa1, 0x43, 0x0b, 0x96, 0x37, 0x38,
  1552. 0x5f, 0xa0, 0xf0, 0xd1, 0x05, 0xf4, 0x17, 0xc5, 0x64, 0x2d, 0xc9, 0x77, 0x35, 0xc8, 0x36, 0xad,
  1553. 0x26, 0xf9, 0x3e, 0xb4, 0x0a, 0x47, 0x6a, 0xca, 0x91, 0xad, 0x8a, 0x23, 0x66, 0xaf, 0x42, 0x8a,
  1554. 0x6c, 0xc3, 0x1a, 0x66, 0x59, 0x92, 0x99, 0xac, 0xd4, 0x1f, 0xee, 0x8f, 0xa0, 0xf9, 0x8d, 0xa3,
  1555. 0xe8, 0xfe, 0xd3, 0x81, 0xee, 0x03, 0xce, 0xd9, 0x49, 0x7e, 0x5d, 0xb6, 0x61, 0x4d, 0x57, 0x48,
  1556. 0xdd, 0x6c, 0xf4, 0x07, 0x19, 0x43, 0xdb, 0x24, 0x77, 0x09, 0xfa, 0x32, 0xe9, 0xda, 0xba, 0x61,
  1557. 0x12, 0xbe, 0xa1, 0x5d, 0x93, 0x45, 0x6f, 0x61, 0xd2, 0x5a, 0xbb, 0x74, 0xd2, 0x5a, 0x2f, 0x4d,
  1558. 0x5a, 0xef, 0x42, 0x4b, 0x29, 0xc5, 0x49, 0x88, 0x66, 0x04, 0x6b, 0x4a, 0xc2, 0xd3, 0x24, 0x44,
  1559. 0xf7, 0xcf, 0x0e, 0xf4, 0xec, 0x69, 0x4c, 0xe4, 0xfb, 0x50, 0x3f, 0xce, 0xd1, 0x97, 0x4b, 0x8b,
  1560. 0x51, 0xed, 0x32, 0x8c, 0x96, 0xa6, 0xcb, 0x1c, 0x91, 0x46, 0x19, 0x91, 0x3c, 0x18, 0x6b, 0xa5,
  1561. 0x60, 0x48, 0x97, 0xe9, 0x4c, 0x9c, 0x5a, 0x97, 0xe5, 0xda, 0x3d, 0x81, 0xc1, 0x44, 0x50, 0xc1,
  1562. 0xb8, 0x60, 0x01, 0xb7, 0x30, 0x2f, 0x00, 0xea, 0x5c, 0x07, 0x68, 0xed, 0x32, 0x40, 0xeb, 0x39,
  1563. 0xa0, 0xee, 0x3f, 0x1c, 0x20, 0xe5, 0x9d, 0x0c, 0x04, 0x6f, 0x60, 0x2b, 0x09, 0x99, 0x48, 0x84,
  1564. 0x1c, 0x13, 0x64, 0x43, 0x37, 0x6d, 0x59, 0x51, 0xe4, 0x58, 0x22, 0xa3, 0x34, 0xe3, 0x18, 0x6a,
  1565. 0xae, 0xee, 0xc9, 0x4d, 0x49, 0x50, 0xcc, 0x6a, 0x4b, 0x5f, 0x5f, 0x68, 0xe9, 0xee, 0x03, 0x68,
  1566. 0x4f, 0x44, 0x92, 0xd1, 0x13, 0x7c, 0x31, 0x4f, 0xbf, 0x8e, 0xf7, 0xc6, 0xbb, 0x5a, 0x01, 0xc4,
  1567. 0x18, 0x60, 0xbf, 0xf0, 0x7e, 0x55, 0x01, 0xfc, 0x2d, 0xdc, 0x2c, 0x24, 0x64, 0xbd, 0xb4, 0x71,
  1568. 0xf9, 0x14, 0x76, 0x58, 0x1c, 0x44, 0xb3, 0x10, 0xfd, 0x58, 0xb6, 0x9f, 0x28, 0x9f, 0x6a, 0x1d,
  1569. 0x35, 0x0c, 0x6c, 0x1b, 0xee, 0x53, 0xc5, 0xb4, 0xd3, 0xed, 0x47, 0x40, 0xac, 0x16, 0x06, 0xb9,
  1570. 0x46, 0x4d, 0x69, 0xf4, 0x0d, 0xe7, 0x20, 0x30, 0xd2, 0xee, 0x73, 0xd8, 0x59, 0xdc, 0xdc, 0x84,
  1571. 0xea, 0x07, 0xd0, 0x2e, 0x60, 0xb7, 0xf5, 0xe9, 0x66, 0xa9, 0x2c, 0x14, 0x7a, 0x5e, 0x59, 0xd2,
  1572. 0xfd, 0x2e, 0xbc, 0x53, 0xb0, 0x1e, 0xa9, 0x42, 0x7b, 0x55, 0xfd, 0x1f, 0xc1, 0x70, 0x59, 0x5c,
  1573. 0xfb, 0xe0, 0xfe, 0xab, 0x06, 0x9d, 0x47, 0x26, 0xa3, 0x64, 0x0f, 0x2e, 0x75, 0xdd, 0x96, 0xea,
  1574. 0xba, 0x77, 0xa1, 0x53, 0x79, 0x69, 0xe9, 0x71, 0xae, 0x7d, 0x5e, 0x7a, 0x66, 0xad, 0x7a, 0x90,
  1575. 0xd5, 0x95, 0xd8, 0xe2, 0x83, 0xec, 0x1e, 0x0c, 0x8e, 0x33, 0xc4, 0xe5, 0xb7, 0x5b, 0xc3, 0xdb,
  1576. 0x94, 0x8c, 0xb2, 0xec, 0x1e, 0x6c, 0xd1, 0x40, 0xb0, 0xf3, 0x05, 0x69, 0x7d, 0xbf, 0x06, 0x9a,
  1577. 0x55, 0x96, 0xff, 0x3c, 0x77, 0x94, 0xc5, 0xc7, 0x09, 0x1f, 0xae, 0x7f, 0xfd, 0xb7, 0x97, 0x39,
  1578. 0x8d, 0xe4, 0x70, 0xf2, 0x0c, 0x7a, 0x76, 0x86, 0x37, 0x96, 0x36, 0x5e, 0xfb, 0x7d, 0xd0, 0xc1,
  1579. 0x82, 0xc5, 0xdd, 0x3f, 0xd4, 0xa0, 0xe9, 0xd1, 0xe0, 0xec, 0xed, 0xc6, 0xf7, 0x33, 0xd8, 0xcc,
  1580. 0x6b, 0x71, 0x05, 0xe2, 0x77, 0x4a, 0xc0, 0x94, 0xaf, 0x92, 0xd7, 0x0d, 0x4b, 0x5f, 0xdc, 0xfd,
  1581. 0x9f, 0x03, 0xbd, 0x47, 0x79, 0xbd, 0x7f, 0xbb, 0xc1, 0xb8, 0x0f, 0x20, 0x1b, 0x54, 0x05, 0x87,
  1582. 0x72, 0x43, 0xb7, 0xe1, 0xf6, 0x5a, 0x99, 0x59, 0x71, 0xf7, 0x4f, 0x35, 0xe8, 0xbc, 0x48, 0xd2,
  1583. 0x24, 0x4a, 0x4e, 0xe6, 0x6f, 0xf7, 0xe9, 0x0f, 0x60, 0x50, 0xea, 0xe5, 0x15, 0x10, 0x6e, 0x2d,
  1584. 0x5c, 0x86, 0x22, 0xd8, 0xde, 0x66, 0x58, 0xf9, 0xe6, 0xee, 0x16, 0x0c, 0xcc, 0x5c, 0x5a, 0x94,
  1585. 0x64, 0xf7, 0xf7, 0x0e, 0x90, 0x32, 0xd5, 0xd4, 0xca, 0x1f, 0x43, 0x57, 0x18, 0xec, 0xd4, 0x7e,
  1586. 0x66, 0x34, 0x2f, 0xdf, 0xbd, 0x32, 0xb6, 0x5e, 0x47, 0x94, 0x91, 0xfe, 0x1e, 0x6c, 0x2f, 0xbd,
  1587. 0xaf, 0xfd, 0xe9, 0x91, 0x41, 0x78, 0xb0, 0xf0, 0xc4, 0xfe, 0xe2, 0xc8, 0xfd, 0x14, 0x6e, 0xea,
  1588. 0xe1, 0xd0, 0xd6, 0x71, 0x5b, 0x5f, 0x97, 0xa6, 0xbc, 0x6e, 0x31, 0xe5, 0xb9, 0xff, 0x75, 0x60,
  1589. 0x67, 0x51, 0xcd, 0xf8, 0x7f, 0x95, 0x1e, 0xa1, 0x40, 0x4c, 0xbd, 0x29, 0xcf, 0xab, 0x7a, 0x4c,
  1590. 0xfc, 0x64, 0x69, 0x5e, 0x5d, 0xb4, 0xbd, 0x67, 0xeb, 0x50, 0x31, 0xb2, 0xf6, 0x79, 0x95, 0xc0,
  1591. 0x47, 0x14, 0x06, 0x4b, 0x62, 0x72, 0xaa, 0xb7, 0xfb, 0x1a, 0x9f, 0x36, 0x8c, 0xe2, 0x37, 0x18,
  1592. 0x58, 0xef, 0xff, 0x7b, 0x0d, 0x36, 0x26, 0x48, 0x5f, 0x21, 0x86, 0xe4, 0x10, 0xba, 0x13, 0x8c,
  1593. 0xc3, 0xe2, 0xbf, 0xdf, 0x76, 0x49, 0x39, 0xa7, 0x8e, 0xbe, 0xb5, 0x8a, 0x9a, 0xf7, 0xa6, 0x1b,
  1594. 0xbb, 0xce, 0xc7, 0x0e, 0x79, 0x06, 0xdd, 0xc7, 0x88, 0xe9, 0x7e, 0x12, 0xc7, 0x18, 0x08, 0x0c,
  1595. 0xc9, 0x7b, 0xe5, 0x0e, 0xb9, 0xfc, 0x04, 0x1a, 0xdd, 0x5a, 0x2a, 0xd4, 0xd6, 0x5b, 0x63, 0xf1,
  1596. 0x39, 0x74, 0xca, 0x93, 0x7f, 0xc5, 0xe0, 0x8a, 0x77, 0xca, 0xe8, 0xce, 0x35, 0x4f, 0x06, 0xf7,
  1597. 0x06, 0xf9, 0x0c, 0xd6, 0xf5, 0x28, 0x4a, 0x86, 0x25, 0xe1, 0xca, 0xac, 0x5d, 0xf1, 0xab, 0x3a,
  1598. 0xb7, 0xba, 0x37, 0xc8, 0x63, 0x80, 0x62, 0x98, 0x23, 0x65, 0x5c, 0x96, 0xa6, 0xc9, 0xd1, 0xed,
  1599. 0x4b, 0xb8, 0xb9, 0xb1, 0x5f, 0x40, 0xaf, 0x3a, 0x72, 0x90, 0xf1, 0xca, 0xa9, 0xa2, 0x94, 0x77,
  1600. 0xa3, 0xbb, 0x57, 0x48, 0xe4, 0x86, 0x7f, 0x05, 0xfd, 0xc5, 0x49, 0x82, 0xb8, 0x2b, 0x15, 0x2b,
  1601. 0x53, 0xc9, 0xe8, 0xfd, 0x2b, 0x65, 0xca, 0x20, 0x14, 0xa9, 0x5f, 0x01, 0x61, 0xa9, 0x4e, 0x54,
  1602. 0x40, 0x58, 0xae, 0x17, 0x1a, 0x84, 0x6a, 0xbe, 0x54, 0x40, 0x58, 0x99, 0xdd, 0x15, 0x10, 0x56,
  1603. 0x27, 0x9b, 0x7b, 0xe3, 0x68, 0x5d, 0xfd, 0xe2, 0xfe, 0xe4, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff,
  1604. 0x76, 0xec, 0xe7, 0x98, 0xf2, 0x16, 0x00, 0x00,
  1605. }