config.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. // Code generated by protoc-gen-go.
  2. // source: v2ray.com/core/config.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package core is a generated protocol buffer package.
  6. It is generated from these files:
  7. v2ray.com/core/config.proto
  8. It has these top-level messages:
  9. AllocationStrategyConcurrency
  10. AllocationStrategyRefresh
  11. AllocationStrategy
  12. InboundConnectionConfig
  13. OutboundConnectionConfig
  14. Config
  15. */
  16. package core
  17. import proto "github.com/golang/protobuf/proto"
  18. import fmt "fmt"
  19. import math "math"
  20. import v2ray_core_common_serial "v2ray.com/core/common/serial"
  21. import v2ray_core_common_net "v2ray.com/core/common/net"
  22. import v2ray_core_common_net1 "v2ray.com/core/common/net"
  23. import v2ray_core_common_log "v2ray.com/core/common/log"
  24. import v2ray_core_transport_internet "v2ray.com/core/transport/internet"
  25. import v2ray_core_transport "v2ray.com/core/transport"
  26. // Reference imports to suppress errors if they are not otherwise used.
  27. var _ = proto.Marshal
  28. var _ = fmt.Errorf
  29. var _ = math.Inf
  30. // This is a compile-time assertion to ensure that this generated file
  31. // is compatible with the proto package it is being compiled against.
  32. // A compilation error at this line likely means your copy of the
  33. // proto package needs to be updated.
  34. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  35. // Configuration serialization format.
  36. type ConfigFormat int32
  37. const (
  38. ConfigFormat_Protobuf ConfigFormat = 0
  39. ConfigFormat_JSON ConfigFormat = 1
  40. )
  41. var ConfigFormat_name = map[int32]string{
  42. 0: "Protobuf",
  43. 1: "JSON",
  44. }
  45. var ConfigFormat_value = map[string]int32{
  46. "Protobuf": 0,
  47. "JSON": 1,
  48. }
  49. func (x ConfigFormat) String() string {
  50. return proto.EnumName(ConfigFormat_name, int32(x))
  51. }
  52. func (ConfigFormat) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  53. type AllocationStrategy_Type int32
  54. const (
  55. // Always allocate all connection handlers.
  56. AllocationStrategy_Always AllocationStrategy_Type = 0
  57. // Randomly allocate specific range of handlers.
  58. AllocationStrategy_Random AllocationStrategy_Type = 1
  59. // External. Not supported yet.
  60. AllocationStrategy_External AllocationStrategy_Type = 2
  61. )
  62. var AllocationStrategy_Type_name = map[int32]string{
  63. 0: "Always",
  64. 1: "Random",
  65. 2: "External",
  66. }
  67. var AllocationStrategy_Type_value = map[string]int32{
  68. "Always": 0,
  69. "Random": 1,
  70. "External": 2,
  71. }
  72. func (x AllocationStrategy_Type) String() string {
  73. return proto.EnumName(AllocationStrategy_Type_name, int32(x))
  74. }
  75. func (AllocationStrategy_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 0} }
  76. type AllocationStrategyConcurrency struct {
  77. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  78. }
  79. func (m *AllocationStrategyConcurrency) Reset() { *m = AllocationStrategyConcurrency{} }
  80. func (m *AllocationStrategyConcurrency) String() string { return proto.CompactTextString(m) }
  81. func (*AllocationStrategyConcurrency) ProtoMessage() {}
  82. func (*AllocationStrategyConcurrency) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  83. func (m *AllocationStrategyConcurrency) GetValue() uint32 {
  84. if m != nil {
  85. return m.Value
  86. }
  87. return 0
  88. }
  89. type AllocationStrategyRefresh struct {
  90. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  91. }
  92. func (m *AllocationStrategyRefresh) Reset() { *m = AllocationStrategyRefresh{} }
  93. func (m *AllocationStrategyRefresh) String() string { return proto.CompactTextString(m) }
  94. func (*AllocationStrategyRefresh) ProtoMessage() {}
  95. func (*AllocationStrategyRefresh) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  96. func (m *AllocationStrategyRefresh) GetValue() uint32 {
  97. if m != nil {
  98. return m.Value
  99. }
  100. return 0
  101. }
  102. type AllocationStrategy struct {
  103. Type AllocationStrategy_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.AllocationStrategy_Type" json:"type,omitempty"`
  104. // Number of handlers (ports) running in parallel.
  105. // Default value is 3 if unset.
  106. Concurrency *AllocationStrategyConcurrency `protobuf:"bytes,2,opt,name=concurrency" json:"concurrency,omitempty"`
  107. // Number of minutes before a handler is regenerated.
  108. // Default value is 5 if unset.
  109. Refresh *AllocationStrategyRefresh `protobuf:"bytes,3,opt,name=refresh" json:"refresh,omitempty"`
  110. }
  111. func (m *AllocationStrategy) Reset() { *m = AllocationStrategy{} }
  112. func (m *AllocationStrategy) String() string { return proto.CompactTextString(m) }
  113. func (*AllocationStrategy) ProtoMessage() {}
  114. func (*AllocationStrategy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  115. func (m *AllocationStrategy) GetType() AllocationStrategy_Type {
  116. if m != nil {
  117. return m.Type
  118. }
  119. return AllocationStrategy_Always
  120. }
  121. func (m *AllocationStrategy) GetConcurrency() *AllocationStrategyConcurrency {
  122. if m != nil {
  123. return m.Concurrency
  124. }
  125. return nil
  126. }
  127. func (m *AllocationStrategy) GetRefresh() *AllocationStrategyRefresh {
  128. if m != nil {
  129. return m.Refresh
  130. }
  131. return nil
  132. }
  133. // Config for an inbound connection handler.
  134. type InboundConnectionConfig struct {
  135. // Protocol specific settings. Must be one of the supported protocols.
  136. Settings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,1,opt,name=settings" json:"settings,omitempty"`
  137. // Range of port number to run on. Both inclusive.
  138. PortRange *v2ray_core_common_net.PortRange `protobuf:"bytes,2,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
  139. // IP address to listen on. 0.0.0.0 if unset.
  140. ListenOn *v2ray_core_common_net1.IPOrDomain `protobuf:"bytes,3,opt,name=listen_on,json=listenOn" json:"listen_on,omitempty"`
  141. // Tag of this handler.
  142. Tag string `protobuf:"bytes,4,opt,name=tag" json:"tag,omitempty"`
  143. AllocationStrategy *AllocationStrategy `protobuf:"bytes,5,opt,name=allocation_strategy,json=allocationStrategy" json:"allocation_strategy,omitempty"`
  144. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,6,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  145. AllowPassiveConnection bool `protobuf:"varint,7,opt,name=allow_passive_connection,json=allowPassiveConnection" json:"allow_passive_connection,omitempty"`
  146. }
  147. func (m *InboundConnectionConfig) Reset() { *m = InboundConnectionConfig{} }
  148. func (m *InboundConnectionConfig) String() string { return proto.CompactTextString(m) }
  149. func (*InboundConnectionConfig) ProtoMessage() {}
  150. func (*InboundConnectionConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  151. func (m *InboundConnectionConfig) GetSettings() *v2ray_core_common_serial.TypedMessage {
  152. if m != nil {
  153. return m.Settings
  154. }
  155. return nil
  156. }
  157. func (m *InboundConnectionConfig) GetPortRange() *v2ray_core_common_net.PortRange {
  158. if m != nil {
  159. return m.PortRange
  160. }
  161. return nil
  162. }
  163. func (m *InboundConnectionConfig) GetListenOn() *v2ray_core_common_net1.IPOrDomain {
  164. if m != nil {
  165. return m.ListenOn
  166. }
  167. return nil
  168. }
  169. func (m *InboundConnectionConfig) GetTag() string {
  170. if m != nil {
  171. return m.Tag
  172. }
  173. return ""
  174. }
  175. func (m *InboundConnectionConfig) GetAllocationStrategy() *AllocationStrategy {
  176. if m != nil {
  177. return m.AllocationStrategy
  178. }
  179. return nil
  180. }
  181. func (m *InboundConnectionConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  182. if m != nil {
  183. return m.StreamSettings
  184. }
  185. return nil
  186. }
  187. func (m *InboundConnectionConfig) GetAllowPassiveConnection() bool {
  188. if m != nil {
  189. return m.AllowPassiveConnection
  190. }
  191. return false
  192. }
  193. // Config for an outbound connection handler.
  194. type OutboundConnectionConfig struct {
  195. Settings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,1,opt,name=settings" json:"settings,omitempty"`
  196. // IP address to send data through. 0.0.0.0 if unset.
  197. SendThrough *v2ray_core_common_net1.IPOrDomain `protobuf:"bytes,2,opt,name=send_through,json=sendThrough" json:"send_through,omitempty"`
  198. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,3,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  199. ProxySettings *v2ray_core_transport_internet.ProxyConfig `protobuf:"bytes,5,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  200. Tag string `protobuf:"bytes,4,opt,name=tag" json:"tag,omitempty"`
  201. }
  202. func (m *OutboundConnectionConfig) Reset() { *m = OutboundConnectionConfig{} }
  203. func (m *OutboundConnectionConfig) String() string { return proto.CompactTextString(m) }
  204. func (*OutboundConnectionConfig) ProtoMessage() {}
  205. func (*OutboundConnectionConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  206. func (m *OutboundConnectionConfig) GetSettings() *v2ray_core_common_serial.TypedMessage {
  207. if m != nil {
  208. return m.Settings
  209. }
  210. return nil
  211. }
  212. func (m *OutboundConnectionConfig) GetSendThrough() *v2ray_core_common_net1.IPOrDomain {
  213. if m != nil {
  214. return m.SendThrough
  215. }
  216. return nil
  217. }
  218. func (m *OutboundConnectionConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  219. if m != nil {
  220. return m.StreamSettings
  221. }
  222. return nil
  223. }
  224. func (m *OutboundConnectionConfig) GetProxySettings() *v2ray_core_transport_internet.ProxyConfig {
  225. if m != nil {
  226. return m.ProxySettings
  227. }
  228. return nil
  229. }
  230. func (m *OutboundConnectionConfig) GetTag() string {
  231. if m != nil {
  232. return m.Tag
  233. }
  234. return ""
  235. }
  236. type Config struct {
  237. // Inbound handler configurations. Must have at least one item.
  238. Inbound []*InboundConnectionConfig `protobuf:"bytes,1,rep,name=inbound" json:"inbound,omitempty"`
  239. // Outbound handler configurations. Must have at least one item. The first item is used as default for routing.
  240. Outbound []*OutboundConnectionConfig `protobuf:"bytes,2,rep,name=outbound" json:"outbound,omitempty"`
  241. Log *v2ray_core_common_log.Config `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
  242. // App configuration. Must be one in the app directory.
  243. App []*v2ray_core_common_serial.TypedMessage `protobuf:"bytes,4,rep,name=app" json:"app,omitempty"`
  244. Transport *v2ray_core_transport.Config `protobuf:"bytes,5,opt,name=transport" json:"transport,omitempty"`
  245. }
  246. func (m *Config) Reset() { *m = Config{} }
  247. func (m *Config) String() string { return proto.CompactTextString(m) }
  248. func (*Config) ProtoMessage() {}
  249. func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  250. func (m *Config) GetInbound() []*InboundConnectionConfig {
  251. if m != nil {
  252. return m.Inbound
  253. }
  254. return nil
  255. }
  256. func (m *Config) GetOutbound() []*OutboundConnectionConfig {
  257. if m != nil {
  258. return m.Outbound
  259. }
  260. return nil
  261. }
  262. func (m *Config) GetLog() *v2ray_core_common_log.Config {
  263. if m != nil {
  264. return m.Log
  265. }
  266. return nil
  267. }
  268. func (m *Config) GetApp() []*v2ray_core_common_serial.TypedMessage {
  269. if m != nil {
  270. return m.App
  271. }
  272. return nil
  273. }
  274. func (m *Config) GetTransport() *v2ray_core_transport.Config {
  275. if m != nil {
  276. return m.Transport
  277. }
  278. return nil
  279. }
  280. func init() {
  281. proto.RegisterType((*AllocationStrategyConcurrency)(nil), "v2ray.core.AllocationStrategyConcurrency")
  282. proto.RegisterType((*AllocationStrategyRefresh)(nil), "v2ray.core.AllocationStrategyRefresh")
  283. proto.RegisterType((*AllocationStrategy)(nil), "v2ray.core.AllocationStrategy")
  284. proto.RegisterType((*InboundConnectionConfig)(nil), "v2ray.core.InboundConnectionConfig")
  285. proto.RegisterType((*OutboundConnectionConfig)(nil), "v2ray.core.OutboundConnectionConfig")
  286. proto.RegisterType((*Config)(nil), "v2ray.core.Config")
  287. proto.RegisterEnum("v2ray.core.ConfigFormat", ConfigFormat_name, ConfigFormat_value)
  288. proto.RegisterEnum("v2ray.core.AllocationStrategy_Type", AllocationStrategy_Type_name, AllocationStrategy_Type_value)
  289. }
  290. func init() { proto.RegisterFile("v2ray.com/core/config.proto", fileDescriptor0) }
  291. var fileDescriptor0 = []byte{
  292. // 745 bytes of a gzipped FileDescriptorProto
  293. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x95, 0xd1, 0x6e, 0xd3, 0x3a,
  294. 0x1c, 0xc6, 0x97, 0xb6, 0xeb, 0xda, 0x7f, 0xb7, 0x9e, 0xca, 0xe7, 0xe8, 0x9c, 0x9c, 0xc1, 0x50,
  295. 0x29, 0xdb, 0x28, 0x03, 0xa5, 0xa3, 0x08, 0x31, 0x21, 0xc1, 0xd8, 0x3a, 0x90, 0x06, 0x82, 0x16,
  296. 0x77, 0xe2, 0x82, 0x9b, 0xc8, 0x4b, 0xbd, 0x2c, 0x52, 0x62, 0x47, 0xb6, 0xbb, 0x2d, 0x8f, 0xc0,
  297. 0xab, 0x70, 0xc5, 0xab, 0xf0, 0x04, 0xbc, 0x0a, 0x72, 0x92, 0xa6, 0x1d, 0x6d, 0xb7, 0x49, 0x88,
  298. 0xbb, 0x34, 0xf9, 0x7e, 0x9f, 0x9d, 0xef, 0xfb, 0xc7, 0x85, 0x5b, 0x67, 0x6d, 0x41, 0x22, 0xcb,
  299. 0xe1, 0x41, 0xcb, 0xe1, 0x82, 0xb6, 0x1c, 0xce, 0x4e, 0x3c, 0xd7, 0x0a, 0x05, 0x57, 0x1c, 0xc1,
  300. 0xe8, 0xa1, 0xa0, 0xab, 0xdb, 0x53, 0xc2, 0x20, 0xe0, 0xac, 0x25, 0xa9, 0xf0, 0x88, 0xdf, 0x52,
  301. 0x51, 0x48, 0x07, 0x76, 0x40, 0xa5, 0x24, 0x2e, 0x4d, 0xe8, 0xd5, 0xf5, 0xd9, 0x04, 0xa3, 0xaa,
  302. 0x15, 0x72, 0xa1, 0x52, 0xd5, 0xfd, 0xf9, 0x2a, 0x32, 0x18, 0x08, 0x2a, 0x65, 0x2a, 0xdc, 0x9c,
  303. 0x2d, 0xf4, 0xb9, 0x7b, 0x69, 0xd3, 0xab, 0xd6, 0x2f, 0x3a, 0x25, 0x08, 0x93, 0x7a, 0xc1, 0x96,
  304. 0xc7, 0x14, 0x15, 0xda, 0xf8, 0x92, 0x7e, 0x63, 0xae, 0x7e, 0x52, 0xd6, 0x78, 0x0a, 0x6b, 0x7b,
  305. 0xbe, 0xcf, 0x1d, 0xa2, 0x3c, 0xce, 0xfa, 0x4a, 0x10, 0x45, 0xdd, 0xa8, 0xc3, 0x99, 0x33, 0x14,
  306. 0x82, 0x32, 0x27, 0x42, 0xff, 0xc0, 0xe2, 0x19, 0xf1, 0x87, 0xd4, 0x34, 0xea, 0x46, 0x73, 0x05,
  307. 0x27, 0x3f, 0x1a, 0x8f, 0xe1, 0xff, 0x69, 0x0c, 0xd3, 0x13, 0x41, 0xe5, 0xe9, 0x1c, 0xe4, 0x4b,
  308. 0x0e, 0xd0, 0x34, 0x83, 0x9e, 0x41, 0x41, 0xa7, 0x1c, 0x6b, 0xab, 0xed, 0x7b, 0xd6, 0xb8, 0x1b,
  309. 0x6b, 0x5a, 0x6d, 0x1d, 0x45, 0x21, 0xc5, 0x31, 0x80, 0xde, 0x41, 0xc5, 0x19, 0xef, 0xd3, 0xcc,
  310. 0xd5, 0x8d, 0x66, 0xa5, 0xfd, 0xe0, 0x6a, 0x7e, 0xe2, 0xc5, 0xf0, 0x24, 0x8d, 0x76, 0x61, 0x49,
  311. 0x24, 0xbb, 0x37, 0xf3, 0xb1, 0xd1, 0xc6, 0xd5, 0x46, 0xe9, 0xab, 0xe2, 0x11, 0xd5, 0x78, 0x04,
  312. 0x05, 0xbd, 0x37, 0x04, 0x50, 0xdc, 0xf3, 0xcf, 0x49, 0x24, 0x6b, 0x0b, 0xfa, 0x1a, 0x13, 0x36,
  313. 0xe0, 0x41, 0xcd, 0x40, 0xcb, 0x50, 0x7a, 0x7d, 0xa1, 0x7b, 0x22, 0x7e, 0x2d, 0xd7, 0xf8, 0x9e,
  314. 0x87, 0xff, 0x0e, 0xd9, 0x31, 0x1f, 0xb2, 0x41, 0x87, 0x33, 0x46, 0x1d, 0xed, 0xdd, 0x89, 0x7b,
  315. 0x41, 0xfb, 0x50, 0x92, 0x54, 0x29, 0x8f, 0xb9, 0x32, 0x0e, 0xa5, 0xd2, 0xde, 0x9c, 0xdc, 0x4b,
  316. 0x32, 0x1f, 0x56, 0x32, 0xa0, 0x71, 0x1e, 0x83, 0xf7, 0xc9, 0x7c, 0xe2, 0x8c, 0x43, 0xbb, 0x00,
  317. 0xba, 0x6a, 0x5b, 0x10, 0xe6, 0xd2, 0x34, 0x9a, 0xfa, 0x0c, 0x17, 0x46, 0x95, 0xd5, 0xe3, 0x42,
  318. 0x61, 0xad, 0xc3, 0xe5, 0x70, 0x74, 0x89, 0x5e, 0x42, 0xd9, 0xf7, 0xa4, 0xa2, 0xcc, 0xe6, 0x2c,
  319. 0x4d, 0xe4, 0xee, 0x1c, 0xfe, 0xb0, 0xd7, 0x15, 0x07, 0x3c, 0x20, 0x1e, 0xc3, 0xa5, 0x84, 0xe9,
  320. 0x32, 0x54, 0x83, 0xbc, 0x22, 0xae, 0x59, 0xa8, 0x1b, 0xcd, 0x32, 0xd6, 0x97, 0xa8, 0x0b, 0x7f,
  321. 0x93, 0x2c, 0x46, 0x5b, 0xa6, 0x39, 0x9a, 0x8b, 0xb1, 0xf7, 0x9d, 0x6b, 0xd2, 0x46, 0x64, 0x7a,
  322. 0x70, 0x8e, 0xe0, 0x2f, 0xa9, 0x04, 0x25, 0x81, 0x9d, 0xc5, 0x55, 0x8c, 0xcd, 0x1e, 0x4e, 0x9a,
  323. 0x65, 0x63, 0x6f, 0x8d, 0x3e, 0x13, 0xab, 0x1f, 0x53, 0x49, 0xda, 0xb8, 0x9a, 0x78, 0xf4, 0x47,
  324. 0xc9, 0xed, 0x80, 0xa9, 0xd7, 0x3a, 0xb7, 0x43, 0x22, 0xa5, 0x77, 0x46, 0x6d, 0x27, 0xeb, 0xc7,
  325. 0x5c, 0xaa, 0x1b, 0xcd, 0x12, 0xfe, 0x37, 0x7e, 0xde, 0x4b, 0x1e, 0x8f, 0xdb, 0x6b, 0xfc, 0xc8,
  326. 0x81, 0xd9, 0x1d, 0xaa, 0x3f, 0x57, 0xea, 0x01, 0x2c, 0x4b, 0xca, 0x06, 0xb6, 0x3a, 0x15, 0x7c,
  327. 0xe8, 0x9e, 0xa6, 0xb5, 0xde, 0xa0, 0x96, 0x8a, 0xc6, 0x8e, 0x12, 0x6a, 0x56, 0x6c, 0xf9, 0xdf,
  328. 0x8f, 0xed, 0x23, 0x54, 0x43, 0xc1, 0x2f, 0xa2, 0xb1, 0x69, 0x52, 0xec, 0xd6, 0x35, 0xa6, 0x3d,
  329. 0x0d, 0xa5, 0x9e, 0x2b, 0xb1, 0x43, 0x66, 0x39, 0x35, 0x42, 0x8d, 0x6f, 0x39, 0x28, 0xa6, 0x79,
  330. 0xbe, 0x80, 0x25, 0x2f, 0xf9, 0x7e, 0x4c, 0xa3, 0x9e, 0x6f, 0x56, 0x2e, 0x1f, 0x1c, 0x73, 0x3e,
  331. 0x2d, 0x3c, 0x62, 0xd0, 0x2b, 0x28, 0xf1, 0xb4, 0x2a, 0x33, 0x17, 0xf3, 0xeb, 0x93, 0xfc, 0xbc,
  332. 0x1a, 0x71, 0x46, 0xa1, 0x16, 0xe4, 0x7d, 0xee, 0xa6, 0xd1, 0xad, 0xcd, 0xe8, 0xc0, 0xe7, 0xae,
  333. 0x95, 0x52, 0x5a, 0x89, 0x76, 0x20, 0x4f, 0xc2, 0xd0, 0x2c, 0xc4, 0xab, 0xdd, 0xb4, 0x7c, 0x8d,
  334. 0xa0, 0xe7, 0x50, 0xce, 0x92, 0x4b, 0x63, 0xbd, 0x3d, 0x3b, 0xd6, 0x74, 0xbd, 0xb1, 0x7c, 0x6b,
  335. 0x13, 0x96, 0x93, 0x9b, 0x6f, 0xb8, 0x08, 0x88, 0xd2, 0xc7, 0x50, 0x4f, 0x9f, 0xfb, 0xc7, 0xc3,
  336. 0x93, 0xda, 0x02, 0x2a, 0x41, 0xe1, 0x6d, 0xbf, 0xfb, 0xa1, 0x66, 0xec, 0x6f, 0x43, 0xd5, 0xe1,
  337. 0xc1, 0x84, 0xeb, 0x7e, 0x25, 0xe1, 0x62, 0xf5, 0xe7, 0x82, 0xbe, 0xf5, 0x35, 0x07, 0x9f, 0xda,
  338. 0x98, 0x44, 0x56, 0x87, 0x0b, 0x7a, 0x5c, 0x8c, 0xff, 0x3f, 0x9e, 0xfc, 0x0c, 0x00, 0x00, 0xff,
  339. 0xff, 0xff, 0x44, 0xf3, 0xc8, 0x6a, 0x07, 0x00, 0x00,
  340. }