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.

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