| OLD | NEW |
| 1 // Code generated by protoc-gen-go. | 1 // Code generated by protoc-gen-go. |
| 2 // source: config.proto | 2 // source: config.proto |
| 3 // DO NOT EDIT! | 3 // DO NOT EDIT! |
| 4 | 4 |
| 5 /* | 5 /* |
| 6 Package svcconfig is a generated protocol buffer package. | 6 Package svcconfig is a generated protocol buffer package. |
| 7 | 7 |
| 8 It is generated from these files: | 8 It is generated from these files: |
| 9 config.proto | 9 config.proto |
| 10 project.proto | 10 project.proto |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 type Coordinator struct { | 94 type Coordinator struct { |
| 95 // Project is the name of the AppEngine Project that the Coordinator bel
ongs | 95 // Project is the name of the AppEngine Project that the Coordinator bel
ongs |
| 96 // to. | 96 // to. |
| 97 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem
pty"` | 97 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem
pty"` |
| 98 // The name of the authentication group for administrators. | 98 // The name of the authentication group for administrators. |
| 99 AdminAuthGroup string `protobuf:"bytes,10,opt,name=admin_auth_group,json
=adminAuthGroup" json:"admin_auth_group,omitempty"` | 99 AdminAuthGroup string `protobuf:"bytes,10,opt,name=admin_auth_group,json
=adminAuthGroup" json:"admin_auth_group,omitempty"` |
| 100 // The name of the authentication group for backend services. | 100 // The name of the authentication group for backend services. |
| 101 ServiceAuthGroup string `protobuf:"bytes,11,opt,name=service_auth_group,
json=serviceAuthGroup" json:"service_auth_group,omitempty"` | 101 ServiceAuthGroup string `protobuf:"bytes,11,opt,name=service_auth_group,
json=serviceAuthGroup" json:"service_auth_group,omitempty"` |
| 102 // A list of origin URLs that are allowed to perform CORS RPC calls. | 102 // A list of origin URLs that are allowed to perform CORS RPC calls. |
| 103 RpcAllowOrigins []string `protobuf:"bytes,20,rep,name=rpc_allow_origins,
json=rpcAllowOrigins" json:"rpc_allow_origins,omitempty"` | 103 RpcAllowOrigins []string `protobuf:"bytes,20,rep,name=rpc_allow_origins,
json=rpcAllowOrigins" json:"rpc_allow_origins,omitempty"` |
| 104 // The maximum amount of time after a prefix has been registered when lo
g |
| 105 // streams may also be registered under that prefix. |
| 106 // |
| 107 // After the expiration period has passed, new log stream registration w
ill |
| 108 // fail. |
| 109 // |
| 110 // Project or stream configurations may override this by providing >= 0
values |
| 111 // for prefix expiration. The smallest configured expiration will be app
lied. |
| 112 PrefixExpiration *google_protobuf.Duration `protobuf:"bytes,21,opt,name=
prefix_expiration,json=prefixExpiration" json:"prefix_expiration,omitempty"` |
| 104 // The full path of the archival Pub/Sub topic. | 113 // The full path of the archival Pub/Sub topic. |
| 105 // | 114 // |
| 106 // The Coordinator must have permission to publish to this topic. | 115 // The Coordinator must have permission to publish to this topic. |
| 107 ArchiveTopic string `protobuf:"bytes,30,opt,name=archive_topic,json=arch
iveTopic" json:"archive_topic,omitempty"` | 116 ArchiveTopic string `protobuf:"bytes,30,opt,name=archive_topic,json=arch
iveTopic" json:"archive_topic,omitempty"` |
| 108 // The amount of time after an archive request has been dispatched befor
e it | 117 // The amount of time after an archive request has been dispatched befor
e it |
| 109 // should be executed. | 118 // should be executed. |
| 110 // | 119 // |
| 111 // Since terminal messages can arrive out of order, the archival request
may | 120 // Since terminal messages can arrive out of order, the archival request
may |
| 112 // be kicked off before all of the log stream data has been loaded into | 121 // be kicked off before all of the log stream data has been loaded into |
| 113 // intermediate storage. If this happens, the Archivist will retry archi
val | 122 // intermediate storage. If this happens, the Archivist will retry archi
val |
| (...skipping 15 matching lines...) Expand all Loading... |
| 129 // If a project's "max_stream_age" is smaller than this value, it will b
e used | 138 // If a project's "max_stream_age" is smaller than this value, it will b
e used |
| 130 // on that project's streams. | 139 // on that project's streams. |
| 131 ArchiveDelayMax *google_protobuf.Duration `protobuf:"bytes,32,opt,name=a
rchive_delay_max,json=archiveDelayMax" json:"archive_delay_max,omitempty"` | 140 ArchiveDelayMax *google_protobuf.Duration `protobuf:"bytes,32,opt,name=a
rchive_delay_max,json=archiveDelayMax" json:"archive_delay_max,omitempty"` |
| 132 } | 141 } |
| 133 | 142 |
| 134 func (m *Coordinator) Reset() { *m = Coordinator{} } | 143 func (m *Coordinator) Reset() { *m = Coordinator{} } |
| 135 func (m *Coordinator) String() string { return proto.CompactTextStrin
g(m) } | 144 func (m *Coordinator) String() string { return proto.CompactTextStrin
g(m) } |
| 136 func (*Coordinator) ProtoMessage() {} | 145 func (*Coordinator) ProtoMessage() {} |
| 137 func (*Coordinator) Descriptor() ([]byte, []int) { return fileDescriptor0, []int
{1} } | 146 func (*Coordinator) Descriptor() ([]byte, []int) { return fileDescriptor0, []int
{1} } |
| 138 | 147 |
| 148 func (m *Coordinator) GetPrefixExpiration() *google_protobuf.Duration { |
| 149 if m != nil { |
| 150 return m.PrefixExpiration |
| 151 } |
| 152 return nil |
| 153 } |
| 154 |
| 139 func (m *Coordinator) GetArchiveSettleDelay() *google_protobuf.Duration { | 155 func (m *Coordinator) GetArchiveSettleDelay() *google_protobuf.Duration { |
| 140 if m != nil { | 156 if m != nil { |
| 141 return m.ArchiveSettleDelay | 157 return m.ArchiveSettleDelay |
| 142 } | 158 } |
| 143 return nil | 159 return nil |
| 144 } | 160 } |
| 145 | 161 |
| 146 func (m *Coordinator) GetArchiveDelayMax() *google_protobuf.Duration { | 162 func (m *Coordinator) GetArchiveDelayMax() *google_protobuf.Duration { |
| 147 if m != nil { | 163 if m != nil { |
| 148 return m.ArchiveDelayMax | 164 return m.ArchiveDelayMax |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 func (*Archivist) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3
} } | 247 func (*Archivist) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3
} } |
| 232 | 248 |
| 233 func init() { | 249 func init() { |
| 234 proto.RegisterType((*Config)(nil), "svcconfig.Config") | 250 proto.RegisterType((*Config)(nil), "svcconfig.Config") |
| 235 proto.RegisterType((*Coordinator)(nil), "svcconfig.Coordinator") | 251 proto.RegisterType((*Coordinator)(nil), "svcconfig.Coordinator") |
| 236 proto.RegisterType((*Collector)(nil), "svcconfig.Collector") | 252 proto.RegisterType((*Collector)(nil), "svcconfig.Collector") |
| 237 proto.RegisterType((*Archivist)(nil), "svcconfig.Archivist") | 253 proto.RegisterType((*Archivist)(nil), "svcconfig.Archivist") |
| 238 } | 254 } |
| 239 | 255 |
| 240 var fileDescriptor0 = []byte{ | 256 var fileDescriptor0 = []byte{ |
| 241 » // 651 bytes of a gzipped FileDescriptorProto | 257 » // 670 bytes of a gzipped FileDescriptorProto |
| 242 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x93,
0xdf, 0x4e, 0xdb, 0x30, | 258 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x94,
0xcf, 0x6e, 0xdb, 0x38, |
| 243 » 0x14, 0xc6, 0x45, 0xf9, 0xb7, 0xb8, 0x2d, 0x05, 0xaf, 0x40, 0xc6, 0x05,
0x43, 0x9d, 0x34, 0xa1, | 259 » 0x10, 0xc6, 0x91, 0xff, 0x2b, 0xda, 0x8e, 0x6d, 0xae, 0x93, 0x68, 0x73,
0xc8, 0x06, 0x5e, 0x60, |
| 244 » 0x69, 0x0a, 0x13, 0x93, 0xa6, 0xdd, 0x42, 0x41, 0xbb, 0x98, 0x10, 0x53,
0x8a, 0xb4, 0x4b, 0xcb, | 260 » 0x11, 0x14, 0x85, 0x52, 0xa4, 0x40, 0xd1, 0x6b, 0xe2, 0xa4, 0x3d, 0x14,
0x41, 0x0a, 0x39, 0x40, |
| 245 » 0x75, 0x4d, 0xf0, 0x48, 0xe3, 0xc8, 0x76, 0xa1, 0xdd, 0x33, 0xec, 0x99,
0xf6, 0x34, 0xbb, 0xde, | 261 » 0x8f, 0x04, 0x4d, 0x33, 0x0a, 0x1b, 0x59, 0x14, 0x48, 0x3a, 0xb1, 0xfb,
0x0c, 0x7d, 0x94, 0x3e, |
| 246 » 0x33, 0xec, 0xe4, 0x38, 0x69, 0x32, 0x71, 0xc1, 0xa5, 0xbf, 0xef, 0xf7,
0x1d, 0xdb, 0xc7, 0xc7, | 262 » 0x43, 0x1f, 0xa9, 0xcf, 0xd0, 0xd1, 0x50, 0xb2, 0x54, 0xe4, 0x90, 0x23,
0xbf, 0xef, 0xf7, 0x0d, |
| 247 » 0xa4, 0x23, 0x74, 0x76, 0xab, 0x92, 0x28, 0x37, 0xda, 0x69, 0x1a, 0xd8,
0x07, 0xe1, 0x85, 0x83, | 263 » 0xe9, 0x99, 0xb1, 0x48, 0x5b, 0xe8, 0xec, 0x4e, 0x25, 0x51, 0x6e, 0xb4,
0xd3, 0x34, 0xb0, 0x8f, |
| 248 » 0x9e, 0x33, 0x3c, 0xb3, 0xb9, 0x36, 0xce, 0x7b, 0x07, 0x5d, 0xeb, 0xb4,
0xe1, 0x89, 0x2c, 0x97, | 264 » 0xc2, 0x0b, 0x87, 0x5d, 0x67, 0x78, 0x66, 0x73, 0x6d, 0x9c, 0xf7, 0x0e,
0x3b, 0xd6, 0x69, 0xc3, |
| 249 » 0x87, 0x89, 0xd6, 0x49, 0x2a, 0x4f, 0x70, 0x35, 0x9e, 0xdd, 0x9e, 0x4c,
0x66, 0x86, 0x3b, 0xa5, | 265 » 0x13, 0x59, 0x1e, 0x8f, 0x12, 0xad, 0x93, 0x54, 0x9e, 0xe2, 0x69, 0x32,
0xbf, 0x3b, 0x9d, 0xce, |
| 250 » 0x33, 0xef, 0x0f, 0x7e, 0xb5, 0xc8, 0xc6, 0x10, 0x4b, 0xd1, 0x53, 0x12,
0x2c, 0x8b, 0x85, 0xe4, | 266 » 0x0d, 0x77, 0x4a, 0x67, 0xde, 0x1f, 0x7e, 0x5f, 0x27, 0xdb, 0x23, 0x2c,
0x45, 0xcf, 0x48, 0xb0, |
| 251 » 0x68, 0xe5, 0xb8, 0x7d, 0xda, 0x8f, 0x96, 0x3b, 0x45, 0x37, 0x95, 0x17,
0xd7, 0x18, 0x7d, 0x4f, | 267 » 0x2a, 0x16, 0x92, 0xe3, 0xb5, 0x93, 0xd6, 0xd9, 0x20, 0x5a, 0xdd, 0x14,
0xdd, 0x56, 0x5e, 0x5c, |
| 252 » 0x36, 0xcb, 0xfd, 0xc2, 0x36, 0x26, 0x68, 0x23, 0x31, 0xf2, 0x4e, 0x5c,
0x21, 0xf4, 0x33, 0x69, | 268 » 0x63, 0xf4, 0x35, 0xd9, 0x29, 0xef, 0x0b, 0x5b, 0x98, 0xa0, 0x8d, 0xc4,
0xd8, 0x3b, 0x71, 0x85, |
| 253 » 0x0b, 0xad, 0xcd, 0x44, 0x65, 0x1c, 0x94, 0xb0, 0x8f, 0x89, 0xbd, 0x46,
0x62, 0x58, 0xbb, 0x71, | 269 » 0xd0, 0xf7, 0xa4, 0x25, 0xb4, 0x36, 0x53, 0x95, 0x71, 0x50, 0xc2, 0x01,
0x26, 0xf6, 0x1b, 0x89, |
| 254 » 0x13, 0x2d, 0xce, 0x26, 0x74, 0x9a, 0x4a, 0x51, 0xe4, 0x76, 0x9f, 0x9c,
0x6d, 0x58, 0x79, 0x71, | 270 » 0x51, 0xed, 0xc6, 0x4d, 0xb4, 0x78, 0x9b, 0xd0, 0x69, 0x2a, 0x45, 0x91,
0xdb, 0x7b, 0xf6, 0xb6, |
| 255 » 0x8d, 0x15, 0x19, 0x6e, 0xc4, 0x9d, 0x7a, 0x50, 0xd6, 0x85, 0x7b, 0x4f,
0x32, 0x67, 0x95, 0x17, | 271 » 0x51, 0xe5, 0xc5, 0x35, 0x56, 0x64, 0xb8, 0x11, 0xf7, 0xea, 0x51, 0x59,
0x17, 0xee, 0x3f, 0xcb, |
| 256 » 0xd7, 0xd8, 0xe0, 0x4f, 0x8b, 0xb4, 0x1b, 0x87, 0xa0, 0x21, 0xd9, 0x84,
0x3e, 0xfd, 0x80, 0x82, | 272 » 0x9c, 0x57, 0x5e, 0x5c, 0x63, 0xc3, 0x1f, 0x1b, 0xa4, 0xd5, 0x78, 0x04,
0x0d, 0xc9, 0x0e, 0xf4, |
| 257 » 0xe1, 0x0a, 0x54, 0x08, 0xe2, 0x6a, 0x49, 0x8f, 0xc9, 0x36, 0x9f, 0x4c,
0x55, 0xc6, 0xf8, 0xcc, | 273 » 0xe9, 0x2b, 0x14, 0x0c, 0xd7, 0xa0, 0x42, 0x10, 0x57, 0x47, 0x7a, 0x42,
0x7a, 0x7c, 0x3a, 0x53, |
| 258 » 0xdd, 0xb1, 0xc4, 0xe8, 0x59, 0x8e, 0x4d, 0x0b, 0xe2, 0x2d, 0xd4, 0xcf,
0x40, 0xfe, 0x52, 0xa8, | 274 » 0x19, 0xe3, 0x73, 0x77, 0xcf, 0x12, 0xa3, 0xe7, 0x39, 0x36, 0x2d, 0x88,
0x77, 0x51, 0x3f, 0x07, |
| 259 » 0xd0, 0x23, 0x6a, 0xa5, 0x79, 0x50, 0x42, 0x36, 0xd9, 0x36, 0xb2, 0xdb,
0xa5, 0x53, 0xd3, 0xef, | 275 » 0xf9, 0x63, 0xa1, 0x42, 0x8f, 0xa8, 0x95, 0xe6, 0x51, 0x09, 0xd9, 0x64,
0x5b, 0xc8, 0xf6, 0x4a, |
| 260 » 0xc8, 0x8e, 0xc9, 0x05, 0xe3, 0x69, 0xaa, 0x1f, 0x99, 0x36, 0x2a, 0x51,
0x99, 0x85, 0x4e, 0xad, | 276 » 0xa7, 0xa6, 0x5f, 0x91, 0xbe, 0xc9, 0x05, 0xe3, 0x69, 0xaa, 0x9f, 0x98,
0x36, 0x2a, 0x51, 0x99, |
| 261 » 0x02, 0xdc, 0x03, 0xe3, 0xac, 0xd0, 0xaf, 0xbd, 0x4c, 0xdf, 0x90, 0xae,
0x3f, 0xba, 0x64, 0x4e, | 277 » 0x85, 0x4e, 0x6d, 0x00, 0xdc, 0x05, 0xe3, 0xbc, 0xd0, 0x6f, 0xbc, 0x4c,
0x3f, 0x90, 0x7e, 0x6e, |
| 262 » 0xe7, 0x4a, 0x84, 0x87, 0x58, 0xb4, 0x53, 0x8a, 0x37, 0x85, 0x46, 0xbf,
0x92, 0x7e, 0x05, 0x59, | 278 » 0xe4, 0x9d, 0x5a, 0x30, 0xb9, 0xc8, 0x95, 0x9f, 0x6b, 0xd9, 0x9d, 0x7f,
0x22, 0x3f, 0xf8, 0xa8, |
| 263 » 0xe9, 0x5c, 0x2a, 0xd9, 0x44, 0xa6, 0x7c, 0x11, 0xbe, 0xc6, 0x8e, 0xbc,
0x8a, 0xfc, 0x80, 0x44, | 279 » 0x1a, 0x7c, 0x74, 0x59, 0x0e, 0x3e, 0xee, 0xf9, 0xcc, 0xd5, 0x2a, 0x42,
0xff, 0x23, 0x1d, 0xdf, |
| 264 » 0xd5, 0x80, 0x44, 0x17, 0xe5, 0x80, 0xc4, 0xb4, 0x8c, 0x8d, 0x30, 0x75,
0x51, 0x84, 0xe8, 0x25, | 280 » 0x02, 0xc9, 0x9c, 0xce, 0x95, 0x08, 0x8f, 0xf0, 0x71, 0xed, 0x52, 0xbc,
0x2d, 0x34, 0xfa, 0x89, |
| 265 » 0xd9, 0xa9, 0x8a, 0x61, 0x15, 0x36, 0xe5, 0xf3, 0xf0, 0xe8, 0xb9, 0x4a,
0xbd, 0x32, 0x83, 0x35, | 281 » 0x0c, 0x2a, 0xc8, 0x4a, 0xe7, 0x52, 0xc9, 0xa6, 0x32, 0xe5, 0xcb, 0xf0,
0xdf, 0x97, 0xee, 0xa3, |
| 266 » 0xae, 0xf8, 0x7c, 0xf0, 0x77, 0x85, 0x04, 0xcb, 0x37, 0xa3, 0x9f, 0xc8,
0x3e, 0x94, 0x61, 0xf0, | 282 » 0x65, 0x6c, 0x8c, 0xa9, 0xcb, 0x22, 0x44, 0xaf, 0x48, 0xbf, 0x2a, 0x86,
0x55, 0xd8, 0x8c, 0x2f, |
| 267 » 0x2e, 0x62, 0x66, 0x8c, 0xcc, 0x1c, 0x9b, 0x4a, 0x6b, 0x61, 0x60, 0x2c,
0x36, 0x7d, 0x3d, 0xde, | 283 » 0xc2, 0xe3, 0x97, 0x2a, 0x75, 0xcb, 0x0c, 0xd6, 0xb8, 0xe6, 0x8b, 0xe1,
0xaf, 0x35, 0x12, 0xac, |
| 268 » 0x05, 0x7b, 0xb8, 0x74, 0xaf, 0x4a, 0x93, 0x46, 0xe4, 0x65, 0x91, 0x2b,
0x61, 0xf6, 0xa8, 0xcd, | 284 » 0x66, 0x4f, 0xdf, 0x91, 0x03, 0x28, 0xc3, 0x60, 0xbe, 0x62, 0x6e, 0x8c,
0xcc, 0x1c, 0x9b, 0x49, |
| 269 » 0xbd, 0x34, 0x36, 0x6c, 0x61, 0x66, 0x07, 0xac, 0x92, 0xfc, 0xee, 0x8d,
0xe2, 0xc9, 0xac, 0xe3, | 285 » 0x6b, 0x61, 0xf1, 0x2c, 0x0e, 0x6f, 0x2b, 0xde, 0x03, 0x7b, 0xb4, 0x72,
0xaf, 0x4b, 0x93, 0x46, |
| 270 » 0x4e, 0x32, 0xc1, 0xc5, 0x1d, 0x74, 0x43, 0xfd, 0x94, 0xe1, 0x2a, 0xc2,
0x5b, 0xa8, 0x0f, 0x0b, | 286 » 0xe4, 0xef, 0x22, 0x57, 0xc2, 0xec, 0x49, 0x9b, 0x07, 0x69, 0x6c, 0xb8,
0x8e, 0x99, 0x3e, 0x58, |
| 271 » 0x79, 0x04, 0x2a, 0xbd, 0x26, 0x7b, 0x4d, 0x52, 0xce, 0x73, 0xe5, 0xaf,
0x12, 0xae, 0x3d, 0x77, | 287 » 0x25, 0xf9, 0xc5, 0x1b, 0xc5, 0xe8, 0xad, 0xe3, 0x4e, 0x32, 0xc1, 0xc5,
0x3d, 0x74, 0x43, 0x7d, |
| 272 » 0xd7, 0x7e, 0x5d, 0xea, 0x72, 0x19, 0x1b, 0xfc, 0x6e, 0x91, 0x60, 0x39,
0x70, 0x74, 0x40, 0x3a, | 288 » 0x93, 0xe1, 0x06, 0xc2, 0xbb, 0xa8, 0x8f, 0x0a, 0x79, 0x0c, 0x2a, 0xbd,
0x21, 0xfb, 0x4d, 0xb2, |
| 273 » 0x76, 0x36, 0xb6, 0xc2, 0xa8, 0x1c, 0x8b, 0xfa, 0xd1, 0xfa, 0x4f, 0xa3,
0x7d, 0xb2, 0xee, 0xb8, | 289 » 0x31, 0xa5, 0xcd, 0x97, 0x7e, 0xeb, 0xa0, 0x2e, 0x55, 0x4f, 0x6a, 0xf8,
0x73, 0x9d, 0x04, 0xab, |
| 274 » 0xbd, 0xaf, 0xae, 0xe3, 0x17, 0x74, 0x9f, 0x6c, 0x26, 0x96, 0x8d, 0xb9,
0xf5, 0x27, 0x0f, 0xe2, | 290 » 0xc5, 0xa5, 0x43, 0xd2, 0xb6, 0xf3, 0x89, 0x15, 0x46, 0xe5, 0x58, 0xd4,
0xaf, 0xe8, 0x1f, 0x1a, |
| 275 » 0x8d, 0xc4, 0x9e, 0xc3, 0x8a, 0xbe, 0x25, 0x3d, 0x30, 0x60, 0x6f, 0x18,
0x8c, 0xc4, 0x03, 0x6b, | 291 » 0x1d, 0x90, 0x2d, 0xc7, 0xed, 0x43, 0xf5, 0x73, 0xfc, 0x81, 0x1e, 0x90,
0x9d, 0xc4, 0xb2, 0x09, |
| 276 » 0x08, 0x74, 0x13, 0x3b, 0xf2, 0x2a, 0x72, 0x30, 0x8c, 0x2a, 0x9b, 0xc8,
0x39, 0xa0, 0x46, 0xf2, | 292 » 0xb7, 0xfe, 0xe5, 0x41, 0xbc, 0x9d, 0xd8, 0x0b, 0x38, 0xd1, 0xff, 0x49,
0x17, 0x0c, 0xb8, 0x1b, |
| 277 » 0x29, 0x83, 0x9f, 0x0c, 0x7f, 0x97, 0xe0, 0x1e, 0xdb, 0xe8, 0x8c, 0xd0,
0x88, 0x0b, 0xbd, 0xa6, | 293 » 0x16, 0x2c, 0xf1, 0xc0, 0x26, 0x02, 0x9d, 0xc4, 0x8e, 0xbd, 0x8a, 0x1c,
0x2c, 0xb5, 0xca, 0xa6, |
| 278 » 0x73, 0x23, 0x6f, 0xd5, 0xbc, 0xa4, 0xdb, 0x0d, 0xfa, 0x1b, 0x1a, 0x9e,
0x86, 0xfe, 0x7a, 0x7a, | 294 » 0x72, 0x01, 0xa8, 0x91, 0x7c, 0xc6, 0xe0, 0x8b, 0x00, 0xdf, 0x00, 0x82,
0x77, 0xf4, 0xd0, 0x19, |
| 279 » 0xbc, 0x80, 0xd6, 0x79, 0xb6, 0xe3, 0xfb, 0x8b, 0xfa, 0x39, 0xc8, 0x9e,
0xfc, 0x00, 0x33, 0x99, | 295 » 0xa3, 0x11, 0x17, 0x7a, 0x4d, 0x97, 0xeb, 0xea, 0xe9, 0x56, 0x83, 0xfe,
0x8c, 0x86, 0xa7, 0xa1, |
| 280 » 0x3e, 0xf2, 0x85, 0x65, 0x02, 0x36, 0x03, 0x78, 0x0c, 0xff, 0xcd, 0x2c,
0xc2, 0x2e, 0xd0, 0x2f, | 296 » 0xbf, 0x9e, 0x9e, 0x2c, 0xa1, 0x75, 0x9e, 0x6d, 0xfb, 0xfe, 0xa2, 0x7e,
0x01, 0xb2, 0x27, 0xdf, |
| 281 » 0x60, 0xf0, 0xd0, 0x1b, 0xa2, 0x75, 0x8e, 0xce, 0x78, 0x03, 0x3b, 0xfd,
0xf1, 0x5f, 0x00, 0x00, | 297 » 0xc0, 0x4e, 0xa6, 0x4f, 0x7c, 0x69, 0x99, 0x80, 0xcb, 0x00, 0x9e, 0xc0,
0xff, 0xd6, 0x2c, 0xc3, |
| 282 » 0x00, 0xff, 0xff, 0x2c, 0xb4, 0x96, 0x96, 0x09, 0x05, 0x00, 0x00, | 298 » 0x0e, 0xd0, 0x7f, 0xc1, 0xe2, 0xa1, 0x37, 0x42, 0xeb, 0x02, 0x9d, 0xc9,
0x36, 0x76, 0xfa, 0xed, |
| 299 » 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x96, 0x3f, 0x3a, 0x51, 0x05,
0x00, 0x00, |
| 283 } | 300 } |
| OLD | NEW |