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.

1036 lines
38 KiB

  1. // Code generated by protoc-gen-go.
  2. // source: filer.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package filer_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. filer.proto
  8. It has these top-level messages:
  9. LookupDirectoryEntryRequest
  10. LookupDirectoryEntryResponse
  11. ListEntriesRequest
  12. ListEntriesResponse
  13. Entry
  14. FileChunk
  15. FuseAttributes
  16. GetEntryAttributesRequest
  17. GetEntryAttributesResponse
  18. GetFileContentRequest
  19. GetFileContentResponse
  20. CreateEntryRequest
  21. CreateEntryResponse
  22. UpdateEntryRequest
  23. UpdateEntryResponse
  24. DeleteEntryRequest
  25. DeleteEntryResponse
  26. AssignVolumeRequest
  27. AssignVolumeResponse
  28. LookupVolumeRequest
  29. Locations
  30. Location
  31. LookupVolumeResponse
  32. */
  33. package filer_pb
  34. import proto "github.com/golang/protobuf/proto"
  35. import fmt "fmt"
  36. import math "math"
  37. import (
  38. context "golang.org/x/net/context"
  39. grpc "google.golang.org/grpc"
  40. )
  41. // Reference imports to suppress errors if they are not otherwise used.
  42. var _ = proto.Marshal
  43. var _ = fmt.Errorf
  44. var _ = math.Inf
  45. // This is a compile-time assertion to ensure that this generated file
  46. // is compatible with the proto package it is being compiled against.
  47. // A compilation error at this line likely means your copy of the
  48. // proto package needs to be updated.
  49. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  50. type LookupDirectoryEntryRequest struct {
  51. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  52. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  53. }
  54. func (m *LookupDirectoryEntryRequest) Reset() { *m = LookupDirectoryEntryRequest{} }
  55. func (m *LookupDirectoryEntryRequest) String() string { return proto.CompactTextString(m) }
  56. func (*LookupDirectoryEntryRequest) ProtoMessage() {}
  57. func (*LookupDirectoryEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  58. func (m *LookupDirectoryEntryRequest) GetDirectory() string {
  59. if m != nil {
  60. return m.Directory
  61. }
  62. return ""
  63. }
  64. func (m *LookupDirectoryEntryRequest) GetName() string {
  65. if m != nil {
  66. return m.Name
  67. }
  68. return ""
  69. }
  70. type LookupDirectoryEntryResponse struct {
  71. Entry *Entry `protobuf:"bytes,1,opt,name=entry" json:"entry,omitempty"`
  72. }
  73. func (m *LookupDirectoryEntryResponse) Reset() { *m = LookupDirectoryEntryResponse{} }
  74. func (m *LookupDirectoryEntryResponse) String() string { return proto.CompactTextString(m) }
  75. func (*LookupDirectoryEntryResponse) ProtoMessage() {}
  76. func (*LookupDirectoryEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  77. func (m *LookupDirectoryEntryResponse) GetEntry() *Entry {
  78. if m != nil {
  79. return m.Entry
  80. }
  81. return nil
  82. }
  83. type ListEntriesRequest struct {
  84. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  85. }
  86. func (m *ListEntriesRequest) Reset() { *m = ListEntriesRequest{} }
  87. func (m *ListEntriesRequest) String() string { return proto.CompactTextString(m) }
  88. func (*ListEntriesRequest) ProtoMessage() {}
  89. func (*ListEntriesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  90. func (m *ListEntriesRequest) GetDirectory() string {
  91. if m != nil {
  92. return m.Directory
  93. }
  94. return ""
  95. }
  96. type ListEntriesResponse struct {
  97. Entries []*Entry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"`
  98. }
  99. func (m *ListEntriesResponse) Reset() { *m = ListEntriesResponse{} }
  100. func (m *ListEntriesResponse) String() string { return proto.CompactTextString(m) }
  101. func (*ListEntriesResponse) ProtoMessage() {}
  102. func (*ListEntriesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  103. func (m *ListEntriesResponse) GetEntries() []*Entry {
  104. if m != nil {
  105. return m.Entries
  106. }
  107. return nil
  108. }
  109. type Entry struct {
  110. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  111. IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  112. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks" json:"chunks,omitempty"`
  113. Attributes *FuseAttributes `protobuf:"bytes,4,opt,name=attributes" json:"attributes,omitempty"`
  114. }
  115. func (m *Entry) Reset() { *m = Entry{} }
  116. func (m *Entry) String() string { return proto.CompactTextString(m) }
  117. func (*Entry) ProtoMessage() {}
  118. func (*Entry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  119. func (m *Entry) GetName() string {
  120. if m != nil {
  121. return m.Name
  122. }
  123. return ""
  124. }
  125. func (m *Entry) GetIsDirectory() bool {
  126. if m != nil {
  127. return m.IsDirectory
  128. }
  129. return false
  130. }
  131. func (m *Entry) GetChunks() []*FileChunk {
  132. if m != nil {
  133. return m.Chunks
  134. }
  135. return nil
  136. }
  137. func (m *Entry) GetAttributes() *FuseAttributes {
  138. if m != nil {
  139. return m.Attributes
  140. }
  141. return nil
  142. }
  143. type FileChunk struct {
  144. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  145. Offset int64 `protobuf:"varint,2,opt,name=offset" json:"offset,omitempty"`
  146. Size uint64 `protobuf:"varint,3,opt,name=size" json:"size,omitempty"`
  147. Mtime int64 `protobuf:"varint,4,opt,name=mtime" json:"mtime,omitempty"`
  148. }
  149. func (m *FileChunk) Reset() { *m = FileChunk{} }
  150. func (m *FileChunk) String() string { return proto.CompactTextString(m) }
  151. func (*FileChunk) ProtoMessage() {}
  152. func (*FileChunk) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  153. func (m *FileChunk) GetFileId() string {
  154. if m != nil {
  155. return m.FileId
  156. }
  157. return ""
  158. }
  159. func (m *FileChunk) GetOffset() int64 {
  160. if m != nil {
  161. return m.Offset
  162. }
  163. return 0
  164. }
  165. func (m *FileChunk) GetSize() uint64 {
  166. if m != nil {
  167. return m.Size
  168. }
  169. return 0
  170. }
  171. func (m *FileChunk) GetMtime() int64 {
  172. if m != nil {
  173. return m.Mtime
  174. }
  175. return 0
  176. }
  177. type FuseAttributes struct {
  178. FileSize uint64 `protobuf:"varint,1,opt,name=file_size,json=fileSize" json:"file_size,omitempty"`
  179. Mtime int64 `protobuf:"varint,2,opt,name=mtime" json:"mtime,omitempty"`
  180. FileMode uint32 `protobuf:"varint,3,opt,name=file_mode,json=fileMode" json:"file_mode,omitempty"`
  181. Uid uint32 `protobuf:"varint,4,opt,name=uid" json:"uid,omitempty"`
  182. Gid uint32 `protobuf:"varint,5,opt,name=gid" json:"gid,omitempty"`
  183. Crtime int64 `protobuf:"varint,6,opt,name=crtime" json:"crtime,omitempty"`
  184. Mime string `protobuf:"bytes,7,opt,name=mime" json:"mime,omitempty"`
  185. Replication string `protobuf:"bytes,8,opt,name=replication" json:"replication,omitempty"`
  186. Collection string `protobuf:"bytes,9,opt,name=collection" json:"collection,omitempty"`
  187. TtlSec int32 `protobuf:"varint,10,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  188. }
  189. func (m *FuseAttributes) Reset() { *m = FuseAttributes{} }
  190. func (m *FuseAttributes) String() string { return proto.CompactTextString(m) }
  191. func (*FuseAttributes) ProtoMessage() {}
  192. func (*FuseAttributes) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  193. func (m *FuseAttributes) GetFileSize() uint64 {
  194. if m != nil {
  195. return m.FileSize
  196. }
  197. return 0
  198. }
  199. func (m *FuseAttributes) GetMtime() int64 {
  200. if m != nil {
  201. return m.Mtime
  202. }
  203. return 0
  204. }
  205. func (m *FuseAttributes) GetFileMode() uint32 {
  206. if m != nil {
  207. return m.FileMode
  208. }
  209. return 0
  210. }
  211. func (m *FuseAttributes) GetUid() uint32 {
  212. if m != nil {
  213. return m.Uid
  214. }
  215. return 0
  216. }
  217. func (m *FuseAttributes) GetGid() uint32 {
  218. if m != nil {
  219. return m.Gid
  220. }
  221. return 0
  222. }
  223. func (m *FuseAttributes) GetCrtime() int64 {
  224. if m != nil {
  225. return m.Crtime
  226. }
  227. return 0
  228. }
  229. func (m *FuseAttributes) GetMime() string {
  230. if m != nil {
  231. return m.Mime
  232. }
  233. return ""
  234. }
  235. func (m *FuseAttributes) GetReplication() string {
  236. if m != nil {
  237. return m.Replication
  238. }
  239. return ""
  240. }
  241. func (m *FuseAttributes) GetCollection() string {
  242. if m != nil {
  243. return m.Collection
  244. }
  245. return ""
  246. }
  247. func (m *FuseAttributes) GetTtlSec() int32 {
  248. if m != nil {
  249. return m.TtlSec
  250. }
  251. return 0
  252. }
  253. type GetEntryAttributesRequest struct {
  254. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  255. ParentDir string `protobuf:"bytes,2,opt,name=parent_dir,json=parentDir" json:"parent_dir,omitempty"`
  256. FileId string `protobuf:"bytes,3,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  257. }
  258. func (m *GetEntryAttributesRequest) Reset() { *m = GetEntryAttributesRequest{} }
  259. func (m *GetEntryAttributesRequest) String() string { return proto.CompactTextString(m) }
  260. func (*GetEntryAttributesRequest) ProtoMessage() {}
  261. func (*GetEntryAttributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  262. func (m *GetEntryAttributesRequest) GetName() string {
  263. if m != nil {
  264. return m.Name
  265. }
  266. return ""
  267. }
  268. func (m *GetEntryAttributesRequest) GetParentDir() string {
  269. if m != nil {
  270. return m.ParentDir
  271. }
  272. return ""
  273. }
  274. func (m *GetEntryAttributesRequest) GetFileId() string {
  275. if m != nil {
  276. return m.FileId
  277. }
  278. return ""
  279. }
  280. type GetEntryAttributesResponse struct {
  281. Attributes *FuseAttributes `protobuf:"bytes,1,opt,name=attributes" json:"attributes,omitempty"`
  282. Chunks []*FileChunk `protobuf:"bytes,2,rep,name=chunks" json:"chunks,omitempty"`
  283. }
  284. func (m *GetEntryAttributesResponse) Reset() { *m = GetEntryAttributesResponse{} }
  285. func (m *GetEntryAttributesResponse) String() string { return proto.CompactTextString(m) }
  286. func (*GetEntryAttributesResponse) ProtoMessage() {}
  287. func (*GetEntryAttributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  288. func (m *GetEntryAttributesResponse) GetAttributes() *FuseAttributes {
  289. if m != nil {
  290. return m.Attributes
  291. }
  292. return nil
  293. }
  294. func (m *GetEntryAttributesResponse) GetChunks() []*FileChunk {
  295. if m != nil {
  296. return m.Chunks
  297. }
  298. return nil
  299. }
  300. type GetFileContentRequest struct {
  301. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  302. }
  303. func (m *GetFileContentRequest) Reset() { *m = GetFileContentRequest{} }
  304. func (m *GetFileContentRequest) String() string { return proto.CompactTextString(m) }
  305. func (*GetFileContentRequest) ProtoMessage() {}
  306. func (*GetFileContentRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  307. func (m *GetFileContentRequest) GetFileId() string {
  308. if m != nil {
  309. return m.FileId
  310. }
  311. return ""
  312. }
  313. type GetFileContentResponse struct {
  314. Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  315. }
  316. func (m *GetFileContentResponse) Reset() { *m = GetFileContentResponse{} }
  317. func (m *GetFileContentResponse) String() string { return proto.CompactTextString(m) }
  318. func (*GetFileContentResponse) ProtoMessage() {}
  319. func (*GetFileContentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  320. func (m *GetFileContentResponse) GetContent() []byte {
  321. if m != nil {
  322. return m.Content
  323. }
  324. return nil
  325. }
  326. type CreateEntryRequest struct {
  327. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  328. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  329. }
  330. func (m *CreateEntryRequest) Reset() { *m = CreateEntryRequest{} }
  331. func (m *CreateEntryRequest) String() string { return proto.CompactTextString(m) }
  332. func (*CreateEntryRequest) ProtoMessage() {}
  333. func (*CreateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  334. func (m *CreateEntryRequest) GetDirectory() string {
  335. if m != nil {
  336. return m.Directory
  337. }
  338. return ""
  339. }
  340. func (m *CreateEntryRequest) GetEntry() *Entry {
  341. if m != nil {
  342. return m.Entry
  343. }
  344. return nil
  345. }
  346. type CreateEntryResponse struct {
  347. }
  348. func (m *CreateEntryResponse) Reset() { *m = CreateEntryResponse{} }
  349. func (m *CreateEntryResponse) String() string { return proto.CompactTextString(m) }
  350. func (*CreateEntryResponse) ProtoMessage() {}
  351. func (*CreateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  352. type UpdateEntryRequest struct {
  353. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  354. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  355. }
  356. func (m *UpdateEntryRequest) Reset() { *m = UpdateEntryRequest{} }
  357. func (m *UpdateEntryRequest) String() string { return proto.CompactTextString(m) }
  358. func (*UpdateEntryRequest) ProtoMessage() {}
  359. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  360. func (m *UpdateEntryRequest) GetDirectory() string {
  361. if m != nil {
  362. return m.Directory
  363. }
  364. return ""
  365. }
  366. func (m *UpdateEntryRequest) GetEntry() *Entry {
  367. if m != nil {
  368. return m.Entry
  369. }
  370. return nil
  371. }
  372. type UpdateEntryResponse struct {
  373. }
  374. func (m *UpdateEntryResponse) Reset() { *m = UpdateEntryResponse{} }
  375. func (m *UpdateEntryResponse) String() string { return proto.CompactTextString(m) }
  376. func (*UpdateEntryResponse) ProtoMessage() {}
  377. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  378. type DeleteEntryRequest struct {
  379. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  380. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  381. IsDirectory bool `protobuf:"varint,3,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  382. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData" json:"is_delete_data,omitempty"`
  383. }
  384. func (m *DeleteEntryRequest) Reset() { *m = DeleteEntryRequest{} }
  385. func (m *DeleteEntryRequest) String() string { return proto.CompactTextString(m) }
  386. func (*DeleteEntryRequest) ProtoMessage() {}
  387. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  388. func (m *DeleteEntryRequest) GetDirectory() string {
  389. if m != nil {
  390. return m.Directory
  391. }
  392. return ""
  393. }
  394. func (m *DeleteEntryRequest) GetName() string {
  395. if m != nil {
  396. return m.Name
  397. }
  398. return ""
  399. }
  400. func (m *DeleteEntryRequest) GetIsDirectory() bool {
  401. if m != nil {
  402. return m.IsDirectory
  403. }
  404. return false
  405. }
  406. func (m *DeleteEntryRequest) GetIsDeleteData() bool {
  407. if m != nil {
  408. return m.IsDeleteData
  409. }
  410. return false
  411. }
  412. type DeleteEntryResponse struct {
  413. }
  414. func (m *DeleteEntryResponse) Reset() { *m = DeleteEntryResponse{} }
  415. func (m *DeleteEntryResponse) String() string { return proto.CompactTextString(m) }
  416. func (*DeleteEntryResponse) ProtoMessage() {}
  417. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  418. type AssignVolumeRequest struct {
  419. Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  420. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  421. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  422. }
  423. func (m *AssignVolumeRequest) Reset() { *m = AssignVolumeRequest{} }
  424. func (m *AssignVolumeRequest) String() string { return proto.CompactTextString(m) }
  425. func (*AssignVolumeRequest) ProtoMessage() {}
  426. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  427. func (m *AssignVolumeRequest) GetCount() int32 {
  428. if m != nil {
  429. return m.Count
  430. }
  431. return 0
  432. }
  433. func (m *AssignVolumeRequest) GetCollection() string {
  434. if m != nil {
  435. return m.Collection
  436. }
  437. return ""
  438. }
  439. func (m *AssignVolumeRequest) GetReplication() string {
  440. if m != nil {
  441. return m.Replication
  442. }
  443. return ""
  444. }
  445. type AssignVolumeResponse struct {
  446. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  447. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  448. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  449. Count int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  450. }
  451. func (m *AssignVolumeResponse) Reset() { *m = AssignVolumeResponse{} }
  452. func (m *AssignVolumeResponse) String() string { return proto.CompactTextString(m) }
  453. func (*AssignVolumeResponse) ProtoMessage() {}
  454. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  455. func (m *AssignVolumeResponse) GetFileId() string {
  456. if m != nil {
  457. return m.FileId
  458. }
  459. return ""
  460. }
  461. func (m *AssignVolumeResponse) GetUrl() string {
  462. if m != nil {
  463. return m.Url
  464. }
  465. return ""
  466. }
  467. func (m *AssignVolumeResponse) GetPublicUrl() string {
  468. if m != nil {
  469. return m.PublicUrl
  470. }
  471. return ""
  472. }
  473. func (m *AssignVolumeResponse) GetCount() int32 {
  474. if m != nil {
  475. return m.Count
  476. }
  477. return 0
  478. }
  479. type LookupVolumeRequest struct {
  480. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  481. }
  482. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  483. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  484. func (*LookupVolumeRequest) ProtoMessage() {}
  485. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  486. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  487. if m != nil {
  488. return m.VolumeIds
  489. }
  490. return nil
  491. }
  492. type Locations struct {
  493. Locations []*Location `protobuf:"bytes,1,rep,name=locations" json:"locations,omitempty"`
  494. }
  495. func (m *Locations) Reset() { *m = Locations{} }
  496. func (m *Locations) String() string { return proto.CompactTextString(m) }
  497. func (*Locations) ProtoMessage() {}
  498. func (*Locations) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  499. func (m *Locations) GetLocations() []*Location {
  500. if m != nil {
  501. return m.Locations
  502. }
  503. return nil
  504. }
  505. type Location struct {
  506. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  507. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  508. }
  509. func (m *Location) Reset() { *m = Location{} }
  510. func (m *Location) String() string { return proto.CompactTextString(m) }
  511. func (*Location) ProtoMessage() {}
  512. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  513. func (m *Location) GetUrl() string {
  514. if m != nil {
  515. return m.Url
  516. }
  517. return ""
  518. }
  519. func (m *Location) GetPublicUrl() string {
  520. if m != nil {
  521. return m.PublicUrl
  522. }
  523. return ""
  524. }
  525. type LookupVolumeResponse struct {
  526. LocationsMap map[string]*Locations `protobuf:"bytes,1,rep,name=locations_map,json=locationsMap" json:"locations_map,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  527. }
  528. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  529. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  530. func (*LookupVolumeResponse) ProtoMessage() {}
  531. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  532. func (m *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  533. if m != nil {
  534. return m.LocationsMap
  535. }
  536. return nil
  537. }
  538. func init() {
  539. proto.RegisterType((*LookupDirectoryEntryRequest)(nil), "filer_pb.LookupDirectoryEntryRequest")
  540. proto.RegisterType((*LookupDirectoryEntryResponse)(nil), "filer_pb.LookupDirectoryEntryResponse")
  541. proto.RegisterType((*ListEntriesRequest)(nil), "filer_pb.ListEntriesRequest")
  542. proto.RegisterType((*ListEntriesResponse)(nil), "filer_pb.ListEntriesResponse")
  543. proto.RegisterType((*Entry)(nil), "filer_pb.Entry")
  544. proto.RegisterType((*FileChunk)(nil), "filer_pb.FileChunk")
  545. proto.RegisterType((*FuseAttributes)(nil), "filer_pb.FuseAttributes")
  546. proto.RegisterType((*GetEntryAttributesRequest)(nil), "filer_pb.GetEntryAttributesRequest")
  547. proto.RegisterType((*GetEntryAttributesResponse)(nil), "filer_pb.GetEntryAttributesResponse")
  548. proto.RegisterType((*GetFileContentRequest)(nil), "filer_pb.GetFileContentRequest")
  549. proto.RegisterType((*GetFileContentResponse)(nil), "filer_pb.GetFileContentResponse")
  550. proto.RegisterType((*CreateEntryRequest)(nil), "filer_pb.CreateEntryRequest")
  551. proto.RegisterType((*CreateEntryResponse)(nil), "filer_pb.CreateEntryResponse")
  552. proto.RegisterType((*UpdateEntryRequest)(nil), "filer_pb.UpdateEntryRequest")
  553. proto.RegisterType((*UpdateEntryResponse)(nil), "filer_pb.UpdateEntryResponse")
  554. proto.RegisterType((*DeleteEntryRequest)(nil), "filer_pb.DeleteEntryRequest")
  555. proto.RegisterType((*DeleteEntryResponse)(nil), "filer_pb.DeleteEntryResponse")
  556. proto.RegisterType((*AssignVolumeRequest)(nil), "filer_pb.AssignVolumeRequest")
  557. proto.RegisterType((*AssignVolumeResponse)(nil), "filer_pb.AssignVolumeResponse")
  558. proto.RegisterType((*LookupVolumeRequest)(nil), "filer_pb.LookupVolumeRequest")
  559. proto.RegisterType((*Locations)(nil), "filer_pb.Locations")
  560. proto.RegisterType((*Location)(nil), "filer_pb.Location")
  561. proto.RegisterType((*LookupVolumeResponse)(nil), "filer_pb.LookupVolumeResponse")
  562. }
  563. // Reference imports to suppress errors if they are not otherwise used.
  564. var _ context.Context
  565. var _ grpc.ClientConn
  566. // This is a compile-time assertion to ensure that this generated file
  567. // is compatible with the grpc package it is being compiled against.
  568. const _ = grpc.SupportPackageIsVersion4
  569. // Client API for SeaweedFiler service
  570. type SeaweedFilerClient interface {
  571. LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error)
  572. ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error)
  573. GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error)
  574. CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error)
  575. UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error)
  576. DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error)
  577. AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error)
  578. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  579. }
  580. type seaweedFilerClient struct {
  581. cc *grpc.ClientConn
  582. }
  583. func NewSeaweedFilerClient(cc *grpc.ClientConn) SeaweedFilerClient {
  584. return &seaweedFilerClient{cc}
  585. }
  586. func (c *seaweedFilerClient) LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error) {
  587. out := new(LookupDirectoryEntryResponse)
  588. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupDirectoryEntry", in, out, c.cc, opts...)
  589. if err != nil {
  590. return nil, err
  591. }
  592. return out, nil
  593. }
  594. func (c *seaweedFilerClient) ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error) {
  595. out := new(ListEntriesResponse)
  596. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/ListEntries", in, out, c.cc, opts...)
  597. if err != nil {
  598. return nil, err
  599. }
  600. return out, nil
  601. }
  602. func (c *seaweedFilerClient) GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error) {
  603. out := new(GetEntryAttributesResponse)
  604. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/GetEntryAttributes", in, out, c.cc, opts...)
  605. if err != nil {
  606. return nil, err
  607. }
  608. return out, nil
  609. }
  610. func (c *seaweedFilerClient) CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error) {
  611. out := new(CreateEntryResponse)
  612. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/CreateEntry", in, out, c.cc, opts...)
  613. if err != nil {
  614. return nil, err
  615. }
  616. return out, nil
  617. }
  618. func (c *seaweedFilerClient) UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error) {
  619. out := new(UpdateEntryResponse)
  620. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/UpdateEntry", in, out, c.cc, opts...)
  621. if err != nil {
  622. return nil, err
  623. }
  624. return out, nil
  625. }
  626. func (c *seaweedFilerClient) DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error) {
  627. out := new(DeleteEntryResponse)
  628. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteEntry", in, out, c.cc, opts...)
  629. if err != nil {
  630. return nil, err
  631. }
  632. return out, nil
  633. }
  634. func (c *seaweedFilerClient) AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error) {
  635. out := new(AssignVolumeResponse)
  636. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AssignVolume", in, out, c.cc, opts...)
  637. if err != nil {
  638. return nil, err
  639. }
  640. return out, nil
  641. }
  642. func (c *seaweedFilerClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  643. out := new(LookupVolumeResponse)
  644. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupVolume", in, out, c.cc, opts...)
  645. if err != nil {
  646. return nil, err
  647. }
  648. return out, nil
  649. }
  650. // Server API for SeaweedFiler service
  651. type SeaweedFilerServer interface {
  652. LookupDirectoryEntry(context.Context, *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error)
  653. ListEntries(context.Context, *ListEntriesRequest) (*ListEntriesResponse, error)
  654. GetEntryAttributes(context.Context, *GetEntryAttributesRequest) (*GetEntryAttributesResponse, error)
  655. CreateEntry(context.Context, *CreateEntryRequest) (*CreateEntryResponse, error)
  656. UpdateEntry(context.Context, *UpdateEntryRequest) (*UpdateEntryResponse, error)
  657. DeleteEntry(context.Context, *DeleteEntryRequest) (*DeleteEntryResponse, error)
  658. AssignVolume(context.Context, *AssignVolumeRequest) (*AssignVolumeResponse, error)
  659. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  660. }
  661. func RegisterSeaweedFilerServer(s *grpc.Server, srv SeaweedFilerServer) {
  662. s.RegisterService(&_SeaweedFiler_serviceDesc, srv)
  663. }
  664. func _SeaweedFiler_LookupDirectoryEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  665. in := new(LookupDirectoryEntryRequest)
  666. if err := dec(in); err != nil {
  667. return nil, err
  668. }
  669. if interceptor == nil {
  670. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, in)
  671. }
  672. info := &grpc.UnaryServerInfo{
  673. Server: srv,
  674. FullMethod: "/filer_pb.SeaweedFiler/LookupDirectoryEntry",
  675. }
  676. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  677. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, req.(*LookupDirectoryEntryRequest))
  678. }
  679. return interceptor(ctx, in, info, handler)
  680. }
  681. func _SeaweedFiler_ListEntries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  682. in := new(ListEntriesRequest)
  683. if err := dec(in); err != nil {
  684. return nil, err
  685. }
  686. if interceptor == nil {
  687. return srv.(SeaweedFilerServer).ListEntries(ctx, in)
  688. }
  689. info := &grpc.UnaryServerInfo{
  690. Server: srv,
  691. FullMethod: "/filer_pb.SeaweedFiler/ListEntries",
  692. }
  693. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  694. return srv.(SeaweedFilerServer).ListEntries(ctx, req.(*ListEntriesRequest))
  695. }
  696. return interceptor(ctx, in, info, handler)
  697. }
  698. func _SeaweedFiler_GetEntryAttributes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  699. in := new(GetEntryAttributesRequest)
  700. if err := dec(in); err != nil {
  701. return nil, err
  702. }
  703. if interceptor == nil {
  704. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, in)
  705. }
  706. info := &grpc.UnaryServerInfo{
  707. Server: srv,
  708. FullMethod: "/filer_pb.SeaweedFiler/GetEntryAttributes",
  709. }
  710. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  711. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, req.(*GetEntryAttributesRequest))
  712. }
  713. return interceptor(ctx, in, info, handler)
  714. }
  715. func _SeaweedFiler_CreateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  716. in := new(CreateEntryRequest)
  717. if err := dec(in); err != nil {
  718. return nil, err
  719. }
  720. if interceptor == nil {
  721. return srv.(SeaweedFilerServer).CreateEntry(ctx, in)
  722. }
  723. info := &grpc.UnaryServerInfo{
  724. Server: srv,
  725. FullMethod: "/filer_pb.SeaweedFiler/CreateEntry",
  726. }
  727. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  728. return srv.(SeaweedFilerServer).CreateEntry(ctx, req.(*CreateEntryRequest))
  729. }
  730. return interceptor(ctx, in, info, handler)
  731. }
  732. func _SeaweedFiler_UpdateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  733. in := new(UpdateEntryRequest)
  734. if err := dec(in); err != nil {
  735. return nil, err
  736. }
  737. if interceptor == nil {
  738. return srv.(SeaweedFilerServer).UpdateEntry(ctx, in)
  739. }
  740. info := &grpc.UnaryServerInfo{
  741. Server: srv,
  742. FullMethod: "/filer_pb.SeaweedFiler/UpdateEntry",
  743. }
  744. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  745. return srv.(SeaweedFilerServer).UpdateEntry(ctx, req.(*UpdateEntryRequest))
  746. }
  747. return interceptor(ctx, in, info, handler)
  748. }
  749. func _SeaweedFiler_DeleteEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  750. in := new(DeleteEntryRequest)
  751. if err := dec(in); err != nil {
  752. return nil, err
  753. }
  754. if interceptor == nil {
  755. return srv.(SeaweedFilerServer).DeleteEntry(ctx, in)
  756. }
  757. info := &grpc.UnaryServerInfo{
  758. Server: srv,
  759. FullMethod: "/filer_pb.SeaweedFiler/DeleteEntry",
  760. }
  761. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  762. return srv.(SeaweedFilerServer).DeleteEntry(ctx, req.(*DeleteEntryRequest))
  763. }
  764. return interceptor(ctx, in, info, handler)
  765. }
  766. func _SeaweedFiler_AssignVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  767. in := new(AssignVolumeRequest)
  768. if err := dec(in); err != nil {
  769. return nil, err
  770. }
  771. if interceptor == nil {
  772. return srv.(SeaweedFilerServer).AssignVolume(ctx, in)
  773. }
  774. info := &grpc.UnaryServerInfo{
  775. Server: srv,
  776. FullMethod: "/filer_pb.SeaweedFiler/AssignVolume",
  777. }
  778. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  779. return srv.(SeaweedFilerServer).AssignVolume(ctx, req.(*AssignVolumeRequest))
  780. }
  781. return interceptor(ctx, in, info, handler)
  782. }
  783. func _SeaweedFiler_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  784. in := new(LookupVolumeRequest)
  785. if err := dec(in); err != nil {
  786. return nil, err
  787. }
  788. if interceptor == nil {
  789. return srv.(SeaweedFilerServer).LookupVolume(ctx, in)
  790. }
  791. info := &grpc.UnaryServerInfo{
  792. Server: srv,
  793. FullMethod: "/filer_pb.SeaweedFiler/LookupVolume",
  794. }
  795. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  796. return srv.(SeaweedFilerServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  797. }
  798. return interceptor(ctx, in, info, handler)
  799. }
  800. var _SeaweedFiler_serviceDesc = grpc.ServiceDesc{
  801. ServiceName: "filer_pb.SeaweedFiler",
  802. HandlerType: (*SeaweedFilerServer)(nil),
  803. Methods: []grpc.MethodDesc{
  804. {
  805. MethodName: "LookupDirectoryEntry",
  806. Handler: _SeaweedFiler_LookupDirectoryEntry_Handler,
  807. },
  808. {
  809. MethodName: "ListEntries",
  810. Handler: _SeaweedFiler_ListEntries_Handler,
  811. },
  812. {
  813. MethodName: "GetEntryAttributes",
  814. Handler: _SeaweedFiler_GetEntryAttributes_Handler,
  815. },
  816. {
  817. MethodName: "CreateEntry",
  818. Handler: _SeaweedFiler_CreateEntry_Handler,
  819. },
  820. {
  821. MethodName: "UpdateEntry",
  822. Handler: _SeaweedFiler_UpdateEntry_Handler,
  823. },
  824. {
  825. MethodName: "DeleteEntry",
  826. Handler: _SeaweedFiler_DeleteEntry_Handler,
  827. },
  828. {
  829. MethodName: "AssignVolume",
  830. Handler: _SeaweedFiler_AssignVolume_Handler,
  831. },
  832. {
  833. MethodName: "LookupVolume",
  834. Handler: _SeaweedFiler_LookupVolume_Handler,
  835. },
  836. },
  837. Streams: []grpc.StreamDesc{},
  838. Metadata: "filer.proto",
  839. }
  840. func init() { proto.RegisterFile("filer.proto", fileDescriptor0) }
  841. var fileDescriptor0 = []byte{
  842. // 964 bytes of a gzipped FileDescriptorProto
  843. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0xdc, 0x44,
  844. 0x14, 0x8e, 0xd7, 0xd9, 0xcd, 0xfa, 0xec, 0xa6, 0xc0, 0x6c, 0x5a, 0xcc, 0x36, 0xa9, 0x96, 0xa1,
  845. 0x45, 0xa9, 0x90, 0xa2, 0x28, 0x70, 0x51, 0x81, 0x90, 0xa8, 0x9a, 0x52, 0x55, 0x4a, 0x55, 0xc9,
  846. 0x21, 0x48, 0x5c, 0xad, 0x1c, 0xfb, 0x64, 0x19, 0xc5, 0x6b, 0x1b, 0xcf, 0x38, 0x28, 0xdc, 0x72,
  847. 0xc9, 0x05, 0x4f, 0xc1, 0x1b, 0xf0, 0x06, 0xbc, 0x18, 0x9a, 0x1f, 0x7b, 0xc7, 0x6b, 0x6f, 0x7f,
  848. 0x2e, 0x7a, 0x37, 0x73, 0x7e, 0xbe, 0xf3, 0x1d, 0xfb, 0x9c, 0xcf, 0x86, 0xd1, 0x15, 0x4b, 0xb0,
  849. 0x38, 0xca, 0x8b, 0x4c, 0x64, 0x64, 0xa8, 0x2e, 0xf3, 0xfc, 0x92, 0xbe, 0x86, 0xfb, 0x67, 0x59,
  850. 0x76, 0x5d, 0xe6, 0xa7, 0xac, 0xc0, 0x48, 0x64, 0xc5, 0xed, 0xf3, 0x54, 0x14, 0xb7, 0x01, 0xfe,
  851. 0x56, 0x22, 0x17, 0x64, 0x1f, 0xbc, 0xb8, 0x72, 0xf8, 0xce, 0xcc, 0x39, 0xf4, 0x82, 0x95, 0x81,
  852. 0x10, 0xd8, 0x4e, 0xc3, 0x25, 0xfa, 0x3d, 0xe5, 0x50, 0x67, 0xfa, 0x1c, 0xf6, 0xbb, 0x01, 0x79,
  853. 0x9e, 0xa5, 0x1c, 0xc9, 0x23, 0xe8, 0xa3, 0x34, 0x28, 0xb4, 0xd1, 0xc9, 0x47, 0x47, 0x15, 0x95,
  854. 0x23, 0x1d, 0xa7, 0xbd, 0xf4, 0x04, 0xc8, 0x19, 0xe3, 0x42, 0xda, 0x18, 0xf2, 0x77, 0xa2, 0x43,
  855. 0x7f, 0x80, 0x49, 0x23, 0xc7, 0x54, 0x7c, 0x0c, 0x3b, 0xa8, 0x4d, 0xbe, 0x33, 0x73, 0xbb, 0x6a,
  856. 0x56, 0x7e, 0xfa, 0x8f, 0x03, 0x7d, 0x65, 0xaa, 0x5b, 0x73, 0x56, 0xad, 0x91, 0xcf, 0x61, 0xcc,
  857. 0xf8, 0x7c, 0x45, 0x40, 0xb6, 0x3d, 0x0c, 0x46, 0x8c, 0xd7, 0xad, 0x92, 0xaf, 0x60, 0x10, 0xfd,
  858. 0x5a, 0xa6, 0xd7, 0xdc, 0x77, 0x55, 0xa9, 0xc9, 0xaa, 0xd4, 0x8f, 0x2c, 0xc1, 0x67, 0xd2, 0x17,
  859. 0x98, 0x10, 0xf2, 0x04, 0x20, 0x14, 0xa2, 0x60, 0x97, 0xa5, 0x40, 0xee, 0x6f, 0xab, 0xe7, 0xe1,
  860. 0x5b, 0x09, 0x25, 0xc7, 0xa7, 0xb5, 0x3f, 0xb0, 0x62, 0xe9, 0x15, 0x78, 0x35, 0x1c, 0xf9, 0x14,
  861. 0x76, 0x64, 0xce, 0x9c, 0xc5, 0x86, 0xed, 0x40, 0x5e, 0x5f, 0xc6, 0xe4, 0x1e, 0x0c, 0xb2, 0xab,
  862. 0x2b, 0x8e, 0x42, 0x31, 0x75, 0x03, 0x73, 0x93, 0xbd, 0x71, 0xf6, 0x07, 0xfa, 0xee, 0xcc, 0x39,
  863. 0xdc, 0x0e, 0xd4, 0x99, 0xec, 0x41, 0x7f, 0x29, 0xd8, 0x12, 0x15, 0x0d, 0x37, 0xd0, 0x17, 0xfa,
  864. 0x57, 0x0f, 0xee, 0x34, 0x69, 0x90, 0xfb, 0xe0, 0xa9, 0x6a, 0x0a, 0xc1, 0x51, 0x08, 0x6a, 0x9a,
  865. 0xce, 0x1b, 0x28, 0x3d, 0x0b, 0xa5, 0x4e, 0x59, 0x66, 0xb1, 0x2e, 0xba, 0xab, 0x53, 0x5e, 0x65,
  866. 0x31, 0x92, 0x8f, 0xc1, 0x2d, 0x59, 0xac, 0xca, 0xee, 0x06, 0xf2, 0x28, 0x2d, 0x0b, 0x16, 0xfb,
  867. 0x7d, 0x6d, 0x59, 0x30, 0xd5, 0x48, 0x54, 0x28, 0xdc, 0x81, 0x6e, 0x44, 0xdf, 0x64, 0x23, 0x4b,
  868. 0x69, 0xdd, 0xd1, 0x2f, 0x49, 0x9e, 0xc9, 0x0c, 0x46, 0x05, 0xe6, 0x09, 0x8b, 0x42, 0xc1, 0xb2,
  869. 0xd4, 0x1f, 0x2a, 0x97, 0x6d, 0x22, 0x0f, 0x00, 0xa2, 0x2c, 0x49, 0x30, 0x52, 0x01, 0x9e, 0x0a,
  870. 0xb0, 0x2c, 0xf2, 0x79, 0x0a, 0x91, 0xcc, 0x39, 0x46, 0x3e, 0xcc, 0x9c, 0xc3, 0x7e, 0x30, 0x10,
  871. 0x22, 0x39, 0xc7, 0x88, 0x2e, 0xe0, 0xb3, 0x17, 0xa8, 0xc6, 0xeb, 0xd6, 0x7a, 0x2f, 0x66, 0x34,
  872. 0xbb, 0x06, 0xe6, 0x00, 0x20, 0x0f, 0x0b, 0x4c, 0x85, 0x1c, 0x1a, 0xb3, 0x25, 0x9e, 0xb6, 0x9c,
  873. 0xb2, 0xc2, 0x7e, 0x71, 0xae, 0xfd, 0xe2, 0xe8, 0x9f, 0x0e, 0x4c, 0xbb, 0x2a, 0x99, 0x81, 0x6e,
  874. 0xce, 0x8d, 0xf3, 0xee, 0x73, 0x63, 0x8d, 0x67, 0xef, 0xad, 0xe3, 0x49, 0x8f, 0xe1, 0xee, 0x0b,
  875. 0x14, 0xca, 0x9e, 0xa5, 0x02, 0x53, 0x51, 0xb5, 0xba, 0x69, 0xe0, 0xe8, 0x09, 0xdc, 0x5b, 0xcf,
  876. 0x30, 0x94, 0x7d, 0xd8, 0x89, 0xb4, 0x49, 0xa5, 0x8c, 0x83, 0xea, 0x4a, 0x7f, 0x01, 0xf2, 0xac,
  877. 0xc0, 0x50, 0xe0, 0x7b, 0xe8, 0x4e, 0xad, 0x21, 0xbd, 0x37, 0x6a, 0xc8, 0x5d, 0x98, 0x34, 0xa0,
  878. 0x35, 0x17, 0x59, 0xf1, 0x22, 0x8f, 0x3f, 0x54, 0xc5, 0x06, 0xb4, 0xa9, 0xf8, 0xb7, 0x03, 0xe4,
  879. 0x14, 0x13, 0x7c, 0xaf, 0x92, 0x1d, 0xe2, 0xda, 0x52, 0x20, 0xb7, 0xad, 0x40, 0x0f, 0xe1, 0x8e,
  880. 0x0c, 0x51, 0xd5, 0xe6, 0x71, 0x28, 0x42, 0xb5, 0x5a, 0xc3, 0x60, 0xcc, 0xb8, 0xa6, 0x70, 0x1a,
  881. 0x8a, 0x50, 0x12, 0x6d, 0x10, 0x32, 0x44, 0x97, 0x30, 0x79, 0xca, 0x39, 0x5b, 0xa4, 0x3f, 0x67,
  882. 0x49, 0xb9, 0xc4, 0x8a, 0xe8, 0x1e, 0xf4, 0xa3, 0xac, 0x34, 0xef, 0xae, 0x1f, 0xe8, 0xcb, 0xda,
  883. 0x1e, 0xf5, 0x5a, 0x7b, 0xb4, 0xb6, 0x89, 0x6e, 0x6b, 0x13, 0xe9, 0x0d, 0xec, 0x35, 0xcb, 0x99,
  884. 0x69, 0xd9, 0xa8, 0x68, 0x52, 0x2c, 0x8a, 0xc4, 0xd4, 0x92, 0x47, 0xb5, 0x62, 0xe5, 0x65, 0xc2,
  885. 0xa2, 0xb9, 0x74, 0xb8, 0x66, 0xc5, 0x94, 0xe5, 0xa2, 0x48, 0x56, 0xcc, 0xb7, 0x2d, 0xe6, 0xf4,
  886. 0x1b, 0x98, 0xe8, 0x6f, 0x54, 0xb3, 0xcd, 0x03, 0x80, 0x1b, 0x65, 0x98, 0xb3, 0x58, 0x7f, 0x2b,
  887. 0xbc, 0xc0, 0xd3, 0x96, 0x97, 0x31, 0xa7, 0xdf, 0x83, 0x77, 0x96, 0x69, 0xe6, 0x9c, 0x1c, 0x83,
  888. 0x97, 0x54, 0x17, 0xf3, 0x59, 0x21, 0xab, 0xa1, 0xa8, 0xe2, 0x82, 0x55, 0x10, 0xfd, 0x0e, 0x86,
  889. 0x95, 0xb9, 0xea, 0xc3, 0xd9, 0xd4, 0x47, 0x6f, 0xad, 0x0f, 0xfa, 0x9f, 0x03, 0x7b, 0x4d, 0xca,
  890. 0xe6, 0x51, 0x5d, 0xc0, 0x6e, 0x5d, 0x62, 0xbe, 0x0c, 0x73, 0xc3, 0xe5, 0xd8, 0xe6, 0xd2, 0x4e,
  891. 0xab, 0x09, 0xf2, 0x57, 0x61, 0xae, 0x47, 0x60, 0x9c, 0x58, 0xa6, 0xe9, 0x4f, 0xf0, 0x49, 0x2b,
  892. 0x44, 0xb2, 0xbe, 0xc6, 0x6a, 0x52, 0xe5, 0x91, 0x3c, 0x86, 0xfe, 0x4d, 0x98, 0x94, 0x68, 0xd6,
  893. 0x62, 0xd2, 0x7e, 0x02, 0x3c, 0xd0, 0x11, 0xdf, 0xf6, 0x9e, 0x38, 0x27, 0xff, 0xf6, 0x61, 0x7c,
  894. 0x8e, 0xe1, 0xef, 0x88, 0xb1, 0x14, 0x89, 0x82, 0x2c, 0xaa, 0xae, 0x9a, 0x3f, 0x0b, 0xe4, 0xd1,
  895. 0x3a, 0xfd, 0xce, 0xbf, 0x93, 0xe9, 0x97, 0x6f, 0x0b, 0x33, 0x63, 0xbd, 0x45, 0xce, 0x60, 0x64,
  896. 0xfd, 0x1a, 0x90, 0x7d, 0x2b, 0xb1, 0xf5, 0x97, 0x31, 0x3d, 0xd8, 0xe0, 0xad, 0xd1, 0x42, 0x20,
  897. 0x6d, 0x79, 0x26, 0x5f, 0xac, 0xd2, 0x36, 0x7e, 0x26, 0xa6, 0x0f, 0xdf, 0x1c, 0x64, 0x13, 0xb6,
  898. 0xb4, 0xcb, 0x26, 0xdc, 0x56, 0x4b, 0x9b, 0x70, 0x97, 0xe0, 0x29, 0x34, 0x4b, 0x97, 0x6c, 0xb4,
  899. 0xb6, 0x12, 0xda, 0x68, 0x5d, 0x62, 0xa6, 0xd0, 0x2c, 0xf1, 0xb0, 0xd1, 0xda, 0x22, 0x67, 0xa3,
  900. 0x75, 0x29, 0xce, 0x16, 0x79, 0x0d, 0x63, 0x5b, 0x04, 0x88, 0x95, 0xd0, 0xa1, 0x45, 0xd3, 0x07,
  901. 0x9b, 0xdc, 0x36, 0xa0, 0x3d, 0xf3, 0x36, 0x60, 0xc7, 0xd6, 0xdb, 0x80, 0x5d, 0xab, 0x42, 0xb7,
  902. 0x2e, 0x07, 0xea, 0xa7, 0xf9, 0xeb, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x63, 0x17, 0x06, 0x1b,
  903. 0x43, 0x0b, 0x00, 0x00,
  904. }