Merge pull request #50919 from wongma7/mount-options

Automatic merge from submit-queue (batch tested with PRs 50919, 51410, 50099, 51300, 50296)

Take mount options to GA by adding PV.spec.mountOptions

**What this PR does / why we need it**: Implements https://github.com/kubernetes/community/pull/771

issue: https://github.com/kubernetes/features/issues/168

**Special notes for your reviewer**:

TODO:
- ~StorageClass mountOptions~

As described in proposal, this adds PV.spec.mountOptions + mountOptions parameter to every plugin that is both provisionable & supports mount options.

(personally, even having done all the work already, i don't agree w/ the proposal that mountOptions should be SC parameter but... :))

**Release note**:

```release-note
Add mount options field to PersistentVolume spec
```
This commit is contained in:
Kubernetes Submit Queue 2017-08-29 03:20:00 -07:00 committed by GitHub
commit ae17c1f2bf
13 changed files with 610 additions and 436 deletions

View File

@ -60552,6 +60552,13 @@
"description": "Local represents directly-attached storage with node affinity",
"$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource"
},
"mountOptions": {
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
"type": "array",
"items": {
"type": "string"
}
},
"nfs": {
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource"

View File

@ -18934,6 +18934,13 @@
"storageClassName": {
"type": "string",
"description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass."
},
"mountOptions": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options"
}
}
},

View File

@ -7678,6 +7678,13 @@ Examples:<br>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">mountOptions</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: <a href="https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options">https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options</a></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string array</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>

View File

@ -455,6 +455,10 @@ type PersistentVolumeSpec struct {
// means that this volume does not belong to any StorageClass.
// +optional
StorageClassName string
// A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
// simply fail if one is invalid.
// +optional
MountOptions []string
}
// PersistentVolumeReclaimPolicy describes a policy for end-of-life maintenance of persistent volumes

View File

@ -3152,6 +3152,7 @@ func autoConvert_v1_PersistentVolumeSpec_To_api_PersistentVolumeSpec(in *v1.Pers
out.ClaimRef = (*api.ObjectReference)(unsafe.Pointer(in.ClaimRef))
out.PersistentVolumeReclaimPolicy = api.PersistentVolumeReclaimPolicy(in.PersistentVolumeReclaimPolicy)
out.StorageClassName = in.StorageClassName
out.MountOptions = *(*[]string)(unsafe.Pointer(&in.MountOptions))
return nil
}
@ -3169,6 +3170,7 @@ func autoConvert_api_PersistentVolumeSpec_To_v1_PersistentVolumeSpec(in *api.Per
out.ClaimRef = (*v1.ObjectReference)(unsafe.Pointer(in.ClaimRef))
out.PersistentVolumeReclaimPolicy = v1.PersistentVolumeReclaimPolicy(in.PersistentVolumeReclaimPolicy)
out.StorageClassName = in.StorageClassName
out.MountOptions = *(*[]string)(unsafe.Pointer(&in.MountOptions))
return nil
}

View File

@ -3884,6 +3884,11 @@ func (in *PersistentVolumeSpec) DeepCopyInto(out *PersistentVolumeSpec) {
**out = **in
}
}
if in.MountOptions != nil {
in, out := &in.MountOptions, &out.MountOptions
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}

View File

@ -389,12 +389,17 @@ func MountOptionFromSpec(spec *Spec, options ...string) []string {
pv := spec.PersistentVolume
if pv != nil {
// Use beta annotation first
if mo, ok := pv.Annotations[v1.MountOptionAnnotation]; ok {
moList := strings.Split(mo, ",")
return JoinMountOptions(moList, options)
}
if len(pv.Spec.MountOptions) > 0 {
return JoinMountOptions(pv.Spec.MountOptions, options)
}
}
return options
}

View File

@ -6098,6 +6098,21 @@ func (m *PersistentVolumeSpec) MarshalTo(dAtA []byte) (int, error) {
i++
i = encodeVarintGenerated(dAtA, i, uint64(len(m.StorageClassName)))
i += copy(dAtA[i:], m.StorageClassName)
if len(m.MountOptions) > 0 {
for _, s := range m.MountOptions {
dAtA[i] = 0x3a
i++
l = len(s)
for l >= 1<<7 {
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
l >>= 7
i++
}
dAtA[i] = uint8(l)
i++
i += copy(dAtA[i:], s)
}
}
return i, nil
}
@ -11623,6 +11638,12 @@ func (m *PersistentVolumeSpec) Size() (n int) {
n += 1 + l + sovGenerated(uint64(l))
l = len(m.StorageClassName)
n += 1 + l + sovGenerated(uint64(l))
if len(m.MountOptions) > 0 {
for _, s := range m.MountOptions {
l = len(s)
n += 1 + l + sovGenerated(uint64(l))
}
}
return n
}
@ -14412,6 +14433,7 @@ func (this *PersistentVolumeSpec) String() string {
`ClaimRef:` + strings.Replace(fmt.Sprintf("%v", this.ClaimRef), "ObjectReference", "ObjectReference", 1) + `,`,
`PersistentVolumeReclaimPolicy:` + fmt.Sprintf("%v", this.PersistentVolumeReclaimPolicy) + `,`,
`StorageClassName:` + fmt.Sprintf("%v", this.StorageClassName) + `,`,
`MountOptions:` + fmt.Sprintf("%v", this.MountOptions) + `,`,
`}`,
}, "")
return s
@ -32713,6 +32735,35 @@ func (m *PersistentVolumeSpec) Unmarshal(dAtA []byte) error {
}
m.StorageClassName = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 7:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field MountOptions", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowGenerated
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthGenerated
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.MountOptions = append(m.MountOptions, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])
@ -45871,7 +45922,7 @@ func init() {
}
var fileDescriptorGenerated = []byte{
// 11721 bytes of a gzipped FileDescriptorProto
// 11739 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x90, 0x24, 0xc7,
0x71, 0x18, 0x7b, 0x66, 0x5f, 0x93, 0xfb, 0xae, 0xbb, 0x03, 0xe6, 0x16, 0xc0, 0xed, 0xa1, 0x41,
0x02, 0x87, 0xd7, 0x2e, 0x71, 0x00, 0x08, 0x88, 0x00, 0x41, 0xee, 0xee, 0xec, 0xde, 0x0d, 0xee,
@ -46318,291 +46369,292 @@ var fileDescriptorGenerated = []byte{
0x92, 0x26, 0x27, 0xe9, 0x1e, 0x12, 0x81, 0xc0, 0x92, 0x09, 0x95, 0x3e, 0x2c, 0x39, 0x38, 0x4b,
0x41, 0x5b, 0x20, 0x7d, 0xba, 0x3c, 0x4f, 0xb9, 0xf4, 0x61, 0x60, 0xcc, 0x8b, 0xd3, 0x99, 0x2f,
0x74, 0xc2, 0x30, 0xae, 0x9e, 0x2a, 0x9e, 0xf9, 0x42, 0x95, 0xbc, 0xd6, 0xec, 0x35, 0xf3, 0x15,
0x11, 0x4e, 0x99, 0xda, 0x5f, 0x1c, 0xe9, 0xd6, 0x16, 0x98, 0xee, 0xff, 0x45, 0xab, 0xeb, 0xfa,
0x11, 0x4e, 0x99, 0xda, 0xdf, 0x18, 0xe9, 0xd6, 0x16, 0x98, 0xee, 0xff, 0x45, 0xab, 0xeb, 0xfa,
0xf4, 0x13, 0x83, 0x1e, 0x58, 0xef, 0xe2, 0x45, 0xea, 0x17, 0x2c, 0xb8, 0xaf, 0x9d, 0xfb, 0x51,
0x62, 0xeb, 0x1d, 0xec, 0xdc, 0xcb, 0xbb, 0x41, 0x25, 0x77, 0xce, 0xc7, 0xe3, 0x82, 0x9a, 0xb2,
0x3a, 0x72, 0xf9, 0x7d, 0xeb, 0xc8, 0x57, 0x60, 0x8c, 0xa9, 0x77, 0x69, 0x22, 0x99, 0x81, 0x9c,
0x90, 0xd8, 0x26, 0xbe, 0x22, 0x0a, 0x62, 0xc5, 0x02, 0xfd, 0x9c, 0x05, 0x0f, 0x65, 0x9b, 0x8e,
0x09, 0x43, 0x8b, 0xc4, 0x84, 0xfc, 0xd8, 0xb1, 0x26, 0xbe, 0xff, 0xa1, 0x46, 0x2f, 0xe2, 0xc3,
0x7e, 0x04, 0xb8, 0x77, 0x65, 0xa8, 0x96, 0x73, 0xee, 0x19, 0x31, 0x6f, 0x57, 0xfa, 0x9f, 0x7d,
0x8e, 0x57, 0x73, 0xff, 0x9a, 0x95, 0xa3, 0x72, 0xf2, 0x33, 0xd6, 0xcb, 0xe6, 0x19, 0xeb, 0xd1,
0xec, 0x19, 0xab, 0xcb, 0x62, 0x62, 0x1c, 0xaf, 0x06, 0x4f, 0x9d, 0x3a, 0x68, 0xce, 0x1c, 0xdb,
0x87, 0xb3, 0xfd, 0xc4, 0x2c, 0x73, 0xa9, 0x72, 0xd5, 0x5d, 0x63, 0xea, 0x52, 0xe5, 0xd6, 0x6b,
0x98, 0x61, 0x06, 0xcd, 0xbe, 0x60, 0xff, 0x37, 0x0b, 0xca, 0x8d, 0xd0, 0x3d, 0x06, 0x0b, 0xd0,
0xa7, 0x0c, 0x0b, 0xd0, 0x03, 0x05, 0xef, 0x28, 0x16, 0xda, 0x7b, 0x56, 0x33, 0xf6, 0x9e, 0x87,
0x8a, 0x18, 0xf4, 0xb6, 0xee, 0xfc, 0x83, 0x32, 0xe8, 0xaf, 0x3e, 0xa2, 0x7f, 0x7d, 0x27, 0xbe,
0xb9, 0xe5, 0x5e, 0x0f, 0x41, 0x0a, 0xce, 0xcc, 0x13, 0x4b, 0x86, 0xfd, 0xfd, 0x88, 0xb9, 0xe8,
0xbe, 0x4e, 0xbc, 0xcd, 0xad, 0x84, 0xb8, 0xd9, 0xcf, 0x39, 0x3e, 0x17, 0xdd, 0xff, 0x62, 0xc1,
0x74, 0xa6, 0x76, 0xe4, 0xe7, 0xc5, 0x10, 0xdd, 0xa1, 0x4d, 0x67, 0xb6, 0x6f, 0xd0, 0xd1, 0x02,
0x80, 0x32, 0xaf, 0x4b, 0xbb, 0x09, 0xd3, 0x62, 0x95, 0xfd, 0x3d, 0xc6, 0x1a, 0x05, 0x7a, 0x1e,
0xc6, 0x93, 0xb0, 0x1d, 0xfa, 0xe1, 0xe6, 0xde, 0x25, 0x22, 0xf3, 0x7d, 0xa8, 0x4b, 0x90, 0xf5,
0x14, 0x85, 0x75, 0x3a, 0xfb, 0x57, 0xcb, 0x90, 0x7d, 0x29, 0xf4, 0xff, 0xcf, 0xc9, 0x0f, 0xe7,
0x9c, 0xfc, 0xae, 0x05, 0x33, 0xb4, 0x76, 0xe6, 0xe5, 0x22, 0x9d, 0x5b, 0xd5, 0x1b, 0x0b, 0x56,
0x8f, 0x37, 0x16, 0x1e, 0xa5, 0xb2, 0xcb, 0x0d, 0x3b, 0x89, 0xb0, 0xef, 0x68, 0xc2, 0x89, 0x42,
0xb1, 0xc0, 0x0a, 0x3a, 0x12, 0x45, 0x22, 0x32, 0x48, 0xa7, 0x23, 0x51, 0x84, 0x05, 0x56, 0x3e,
0xc1, 0x30, 0x54, 0xf0, 0x04, 0x03, 0x4b, 0x95, 0x25, 0x3c, 0x2b, 0x84, 0x6a, 0xa0, 0xa5, 0xca,
0x92, 0x2e, 0x17, 0x29, 0x8d, 0xfd, 0xf5, 0x32, 0x4c, 0x34, 0x42, 0x37, 0xf5, 0x87, 0x7f, 0xce,
0xf0, 0x87, 0x3f, 0x9b, 0xf1, 0x87, 0x9f, 0xd1, 0x69, 0xef, 0x8e, 0x3b, 0xbc, 0x48, 0xa4, 0xc6,
0x1e, 0x04, 0xb9, 0x43, 0x57, 0x78, 0x23, 0x91, 0x9a, 0x62, 0x84, 0x4d, 0xbe, 0x3f, 0x4e, 0x2e,
0xf0, 0x7f, 0x61, 0xc1, 0x54, 0x23, 0x74, 0xe9, 0x04, 0xfd, 0x71, 0x9a, 0x8d, 0x7a, 0x22, 0xb6,
0x91, 0x1e, 0x89, 0xd8, 0xfe, 0xa1, 0x05, 0xa3, 0x8d, 0xd0, 0x3d, 0x06, 0xdb, 0xe7, 0xcb, 0xa6,
0xed, 0xf3, 0xfe, 0x02, 0x29, 0x5b, 0x60, 0xee, 0xfc, 0xad, 0x32, 0x4c, 0xd2, 0x76, 0x86, 0x9b,
0x72, 0x94, 0x8c, 0x1e, 0xb1, 0x06, 0xe8, 0x11, 0xaa, 0xcc, 0x85, 0xbe, 0x1f, 0xde, 0xca, 0x8e,
0xd8, 0x1a, 0x83, 0x62, 0x81, 0x45, 0x4f, 0xc1, 0x58, 0x3b, 0x22, 0xbb, 0x5e, 0xd8, 0x89, 0xb3,
0xb1, 0x85, 0x0d, 0x01, 0xc7, 0x8a, 0x02, 0x3d, 0x07, 0x13, 0xb1, 0x17, 0xb4, 0x88, 0xf4, 0xb6,
0x18, 0x62, 0xde, 0x16, 0x3c, 0x97, 0xa5, 0x06, 0xc7, 0x06, 0x15, 0x7a, 0x1d, 0x2a, 0xec, 0x3f,
0x5b, 0x37, 0x47, 0x7f, 0x61, 0x81, 0x1f, 0x55, 0x25, 0x03, 0x9c, 0xf2, 0x42, 0xe7, 0x01, 0x12,
0xe9, 0x17, 0x12, 0x8b, 0xd0, 0x57, 0xa5, 0x51, 0x2a, 0x8f, 0x91, 0x18, 0x6b, 0x54, 0xe8, 0x49,
0xa8, 0x24, 0x8e, 0xe7, 0x5f, 0xf6, 0x02, 0x12, 0x0b, 0xbf, 0x1a, 0x91, 0x1f, 0x5a, 0x00, 0x71,
0x8a, 0xa7, 0x3b, 0x3a, 0x0b, 0xac, 0xe6, 0xef, 0xb3, 0x8c, 0x31, 0x6a, 0xb6, 0xa3, 0x5f, 0x56,
0x50, 0xac, 0x51, 0xd8, 0x2f, 0xc2, 0xa9, 0x46, 0xe8, 0x36, 0xc2, 0x28, 0x59, 0x0b, 0xa3, 0x5b,
0x4e, 0xe4, 0xca, 0xf1, 0x9b, 0x97, 0xa9, 0x8a, 0xe9, 0xae, 0x3b, 0xcc, 0xcf, 0xf5, 0x46, 0x12,
0xe2, 0x67, 0xd9, 0x9e, 0x7e, 0xc4, 0x20, 0x88, 0x7f, 0x57, 0x02, 0xd4, 0x60, 0x9e, 0x2b, 0xc6,
0x23, 0x3e, 0x6f, 0xc3, 0x54, 0x4c, 0x2e, 0x7b, 0x41, 0xe7, 0xb6, 0x60, 0xd5, 0x2b, 0xc2, 0xa4,
0xb9, 0xaa, 0x53, 0x72, 0xdb, 0x88, 0x09, 0xc3, 0x19, 0x6e, 0xb4, 0x0b, 0xa3, 0x4e, 0xb0, 0x14,
0x5f, 0x8f, 0x49, 0x24, 0x1e, 0xad, 0x61, 0x5d, 0x88, 0x25, 0x10, 0xa7, 0x78, 0x3a, 0x65, 0xd8,
0x9f, 0xab, 0x61, 0x80, 0xc3, 0x30, 0x91, 0x93, 0x8c, 0x3d, 0x7b, 0xa0, 0xc1, 0xb1, 0x41, 0x85,
0xd6, 0x00, 0xc5, 0x9d, 0x76, 0xdb, 0x67, 0x17, 0x7d, 0x8e, 0x7f, 0x21, 0x0a, 0x3b, 0x6d, 0xee,
0x7a, 0x2c, 0x5e, 0x0c, 0x68, 0x76, 0x61, 0x71, 0x4e, 0x09, 0x2a, 0x18, 0x36, 0x62, 0xf6, 0x5b,
0xc4, 0x56, 0x73, 0x2b, 0x65, 0x93, 0x81, 0xb0, 0xc4, 0xd9, 0x9f, 0x67, 0x9b, 0x19, 0x7b, 0x6b,
0x24, 0xe9, 0x44, 0x04, 0xed, 0xc0, 0x64, 0x9b, 0x6d, 0x58, 0x49, 0x14, 0xfa, 0x3e, 0x91, 0x7a,
0xe3, 0x9d, 0x79, 0xd1, 0xf0, 0xb7, 0x07, 0x74, 0x76, 0xd8, 0xe4, 0x6e, 0x7f, 0x71, 0x9a, 0xc9,
0xa5, 0x26, 0x3f, 0xb4, 0x8c, 0x0a, 0xdf, 0x58, 0xa1, 0xa1, 0xcd, 0x15, 0xbf, 0xed, 0x95, 0x4a,
0x7a, 0xe1, 0x5f, 0x8b, 0x65, 0x59, 0xf4, 0x1a, 0xf3, 0xd9, 0xe6, 0xc2, 0xa0, 0xdf, 0xab, 0x82,
0x9c, 0xca, 0xf0, 0xd7, 0x16, 0x05, 0xb1, 0xc6, 0x04, 0x5d, 0x86, 0x49, 0xf1, 0x34, 0x85, 0x30,
0x21, 0x94, 0x8d, 0xe3, 0xef, 0x24, 0xd6, 0x91, 0x87, 0x59, 0x00, 0x36, 0x0b, 0xa3, 0x4d, 0x78,
0x48, 0x7b, 0x48, 0x29, 0xc7, 0x93, 0x8b, 0xcb, 0x96, 0x87, 0x0f, 0xf6, 0xe7, 0x1f, 0x5a, 0xef,
0x45, 0x88, 0x7b, 0xf3, 0x41, 0xd7, 0xe0, 0x94, 0xd3, 0x4a, 0xbc, 0x5d, 0x52, 0x23, 0x8e, 0xeb,
0x7b, 0x01, 0x31, 0x83, 0xed, 0x4f, 0x1f, 0xec, 0xcf, 0x9f, 0x5a, 0xca, 0x23, 0xc0, 0xf9, 0xe5,
0xd0, 0xcb, 0x50, 0x71, 0x83, 0x58, 0xf4, 0xc1, 0x88, 0xf1, 0x46, 0x58, 0xa5, 0x76, 0xb5, 0xa9,
0xbe, 0x3f, 0xfd, 0x83, 0xd3, 0x02, 0x68, 0x13, 0x26, 0xf4, 0x80, 0x1a, 0xf1, 0xbe, 0xdc, 0xd3,
0x3d, 0xce, 0xb6, 0x46, 0x14, 0x0a, 0xb7, 0x9f, 0x29, 0x3f, 0x49, 0x23, 0x40, 0xc5, 0x60, 0x8c,
0x5e, 0x05, 0x14, 0x93, 0x68, 0xd7, 0x6b, 0x91, 0xa5, 0x16, 0x4b, 0xf6, 0xca, 0xac, 0x2e, 0x63,
0x86, 0xd3, 0x3f, 0x6a, 0x76, 0x51, 0xe0, 0x9c, 0x52, 0xe8, 0x22, 0x95, 0x28, 0x3a, 0x54, 0xb8,
0xb5, 0x4a, 0x35, 0xaf, 0x5a, 0x23, 0xed, 0x88, 0xb4, 0x9c, 0x84, 0xb8, 0x26, 0x47, 0x9c, 0x29,
0x47, 0xf7, 0x1b, 0x95, 0x43, 0x1f, 0x4c, 0x67, 0xcc, 0xee, 0x3c, 0xfa, 0xf4, 0x84, 0xb4, 0x15,
0xc6, 0xc9, 0x55, 0x92, 0xdc, 0x0a, 0xa3, 0x6d, 0x91, 0x21, 0x2b, 0x4d, 0xa0, 0x97, 0xa2, 0xb0,
0x4e, 0x47, 0x35, 0x22, 0x76, 0x9d, 0x55, 0xaf, 0xb1, 0x1b, 0x87, 0xb1, 0x74, 0x9d, 0x5c, 0xe4,
0x60, 0x2c, 0xf1, 0x92, 0xb4, 0xde, 0x58, 0x61, 0xf7, 0x08, 0x19, 0xd2, 0x7a, 0x63, 0x05, 0x4b,
0x3c, 0x22, 0xdd, 0xef, 0xaf, 0x4d, 0x15, 0xdf, 0x00, 0x75, 0xcb, 0xe5, 0x01, 0x9f, 0x60, 0x0b,
0x60, 0x46, 0xbd, 0xfc, 0xc6, 0x53, 0x87, 0xc5, 0xd5, 0x69, 0x36, 0x49, 0x06, 0xcf, 0x3b, 0xa6,
0xac, 0x6a, 0xf5, 0x0c, 0x27, 0xdc, 0xc5, 0xdb, 0x48, 0xe2, 0x30, 0xd3, 0xf7, 0x0d, 0x84, 0x45,
0xa8, 0xc4, 0x9d, 0x9b, 0x6e, 0xb8, 0xe3, 0x78, 0x01, 0x33, 0xfb, 0xeb, 0x0f, 0xe0, 0x4b, 0x04,
0x4e, 0x69, 0xd0, 0x1a, 0x8c, 0x39, 0xe2, 0xf0, 0x25, 0x0c, 0xf5, 0xb9, 0x51, 0xdd, 0xf2, 0x80,
0xc6, 0x2d, 0x9a, 0xf2, 0x1f, 0x56, 0x65, 0xd1, 0x4b, 0x30, 0x29, 0x02, 0x8f, 0x84, 0xcf, 0xe0,
0x09, 0xd3, 0x47, 0xbd, 0xa9, 0x23, 0xb1, 0x49, 0x8b, 0x7e, 0x0a, 0xa6, 0x28, 0x97, 0x54, 0xb0,
0x55, 0x4f, 0x0e, 0x22, 0x11, 0xb5, 0xdc, 0xd6, 0x7a, 0x61, 0x9c, 0x61, 0x86, 0x5c, 0x78, 0xd0,
0xe9, 0x24, 0xe1, 0x0e, 0x9d, 0xe1, 0xe6, 0xfc, 0x5f, 0x0f, 0xb7, 0x49, 0xc0, 0xec, 0xf4, 0x63,
0xcb, 0x67, 0x0f, 0xf6, 0xe7, 0x1f, 0x5c, 0xea, 0x41, 0x87, 0x7b, 0x72, 0x41, 0xd7, 0x61, 0x3c,
0x09, 0x7d, 0xe1, 0xec, 0x1b, 0x57, 0xef, 0x2b, 0x4e, 0x42, 0xb3, 0xae, 0xc8, 0x74, 0x73, 0x82,
0x2a, 0x8a, 0x75, 0x3e, 0x68, 0x9d, 0xaf, 0x31, 0x96, 0x32, 0x91, 0xc4, 0xd5, 0xfb, 0x8b, 0x3b,
0x46, 0x65, 0x56, 0x34, 0x97, 0xa0, 0x28, 0x89, 0x75, 0x36, 0xe8, 0x02, 0xcc, 0xb6, 0x23, 0x2f,
0x64, 0x13, 0x5b, 0x99, 0x7c, 0xab, 0x46, 0x7a, 0xb2, 0xd9, 0x46, 0x96, 0x00, 0x77, 0x97, 0x41,
0xe7, 0xa8, 0x82, 0xca, 0x81, 0xd5, 0xd3, 0xfc, 0x6d, 0x0c, 0xae, 0x9c, 0x72, 0x18, 0x56, 0xd8,
0xb9, 0x4f, 0xc3, 0x6c, 0x97, 0xa4, 0x3c, 0x92, 0xe3, 0xe5, 0xaf, 0x0f, 0x43, 0x45, 0x99, 0x03,
0xd1, 0xa2, 0x69, 0xe5, 0x3d, 0x9d, 0xb5, 0xf2, 0x8e, 0x51, 0x7d, 0x4d, 0x37, 0xec, 0xae, 0xe7,
0x3c, 0xef, 0x7d, 0xb6, 0x40, 0x34, 0x0c, 0x1e, 0x25, 0x75, 0x84, 0xa7, 0xcf, 0xd3, 0x03, 0xe3,
0x50, 0xcf, 0x03, 0xe3, 0x80, 0x4f, 0xed, 0xd1, 0xa3, 0x61, 0x3b, 0x74, 0xeb, 0x8d, 0xec, 0xdb,
0x53, 0x0d, 0x0a, 0xc4, 0x1c, 0xc7, 0x94, 0x7b, 0xba, 0xad, 0x33, 0xe5, 0x7e, 0xf4, 0x0e, 0x95,
0x7b, 0xc9, 0x00, 0xa7, 0xbc, 0x90, 0x0f, 0xb3, 0x2d, 0xf3, 0xd9, 0x30, 0x15, 0x19, 0xf5, 0x48,
0xdf, 0x07, 0xbc, 0x3a, 0xda, 0x5b, 0x22, 0x2b, 0x59, 0x2e, 0xb8, 0x9b, 0x31, 0x7a, 0x09, 0xc6,
0xde, 0x0d, 0x63, 0x36, 0xed, 0xc4, 0xde, 0x26, 0x63, 0x51, 0xc6, 0x5e, 0xbb, 0xd6, 0x64, 0xf0,
0xc3, 0xfd, 0xf9, 0xf1, 0x46, 0xe8, 0xca, 0xbf, 0x58, 0x15, 0x40, 0xb7, 0xe1, 0x94, 0x21, 0x11,
0x54, 0x73, 0x61, 0xf0, 0xe6, 0x3e, 0x24, 0xaa, 0x3b, 0x55, 0xcf, 0xe3, 0x84, 0xf3, 0x2b, 0xb0,
0xbf, 0xc1, 0x8d, 0x9e, 0xc2, 0x34, 0x42, 0xe2, 0x8e, 0x7f, 0x1c, 0x0f, 0x06, 0xac, 0x1a, 0x56,
0x9b, 0x3b, 0x36, 0xac, 0xff, 0x81, 0xc5, 0x0c, 0xeb, 0xeb, 0x64, 0xa7, 0xed, 0x3b, 0xc9, 0x71,
0xb8, 0xdb, 0xbe, 0x06, 0x63, 0x89, 0xa8, 0xad, 0xd7, 0x1b, 0x07, 0x5a, 0xa3, 0xd8, 0xe5, 0x82,
0xda, 0x10, 0x25, 0x14, 0x2b, 0x36, 0xf6, 0x3f, 0xe7, 0x23, 0x20, 0x31, 0xc7, 0x60, 0x5b, 0xa8,
0x99, 0xb6, 0x85, 0xf9, 0x3e, 0x5f, 0x50, 0x60, 0x63, 0xf8, 0x67, 0x66, 0xbb, 0xd9, 0xd9, 0xe3,
0xc3, 0x7e, 0xa3, 0x63, 0xff, 0x92, 0x05, 0x27, 0xf3, 0xae, 0xf4, 0xa9, 0x12, 0xc3, 0x4f, 0x3e,
0xea, 0x86, 0x4b, 0xf5, 0xe0, 0x0d, 0x01, 0xc7, 0x8a, 0x62, 0xe0, 0x3c, 0xe3, 0x47, 0x4b, 0xbc,
0x74, 0x0d, 0xcc, 0x17, 0xe6, 0xd0, 0x2b, 0xdc, 0x7f, 0xde, 0x52, 0x4f, 0xc0, 0x1d, 0xcd, 0x77,
0xde, 0xfe, 0xb5, 0x12, 0x9c, 0xe4, 0x26, 0xea, 0xa5, 0xdd, 0xd0, 0x73, 0x1b, 0xa1, 0x2b, 0xa2,
0x09, 0xde, 0x84, 0x89, 0xb6, 0x76, 0x5c, 0xed, 0x95, 0xfa, 0x45, 0x3f, 0xd6, 0xa6, 0xc7, 0x06,
0x1d, 0x8a, 0x0d, 0x5e, 0xc8, 0x85, 0x09, 0xb2, 0xeb, 0xb5, 0x94, 0x9d, 0xb3, 0x74, 0x64, 0x91,
0xae, 0x6a, 0x59, 0xd5, 0xf8, 0x60, 0x83, 0xeb, 0x3d, 0x78, 0x0d, 0xc4, 0xfe, 0x8a, 0x05, 0xf7,
0x17, 0x24, 0x8a, 0xa1, 0xd5, 0xdd, 0x62, 0x97, 0x01, 0xe2, 0xb9, 0x42, 0x55, 0x1d, 0xbf, 0x22,
0xc0, 0x02, 0x8b, 0x7e, 0x12, 0x80, 0x9b, 0xf8, 0xd9, 0xe3, 0xf0, 0xa5, 0xde, 0x91, 0xe8, 0x46,
0x02, 0x05, 0x2d, 0xca, 0x5e, 0x3d, 0x07, 0xaf, 0xf1, 0xb2, 0x7f, 0xa5, 0x0c, 0xc3, 0xfc, 0xed,
0xea, 0x35, 0x18, 0xdd, 0xe2, 0x69, 0x69, 0x07, 0xc9, 0x80, 0x9b, 0x1e, 0x47, 0x38, 0x00, 0xcb,
0xc2, 0xe8, 0x0a, 0x9c, 0x10, 0x11, 0x2b, 0x35, 0xe2, 0x3b, 0x7b, 0xf2, 0x54, 0xcb, 0x9f, 0x88,
0x90, 0xe9, 0xcb, 0x4f, 0xd4, 0xbb, 0x49, 0x70, 0x5e, 0x39, 0xf4, 0x4a, 0x57, 0x32, 0x3a, 0x9e,
0xd0, 0x57, 0xe9, 0xc0, 0x7d, 0x12, 0xd2, 0xbd, 0x04, 0x93, 0xed, 0xae, 0xf3, 0xbb, 0xf6, 0x6c,
0xb0, 0x79, 0x66, 0x37, 0x69, 0x99, 0x7f, 0x40, 0x87, 0x79, 0x43, 0xac, 0x6f, 0x45, 0x24, 0xde,
0x0a, 0x7d, 0x57, 0xbc, 0x91, 0x99, 0xfa, 0x07, 0x64, 0xf0, 0xb8, 0xab, 0x04, 0xe5, 0xb2, 0xe1,
0x78, 0x7e, 0x27, 0x22, 0x29, 0x97, 0x11, 0x93, 0xcb, 0x5a, 0x06, 0x8f, 0xbb, 0x4a, 0xd0, 0x79,
0x74, 0x4a, 0x3c, 0xb0, 0x28, 0xe3, 0x98, 0x95, 0xd3, 0xc7, 0xa8, 0xf4, 0x54, 0xef, 0x91, 0x5b,
0x43, 0x5c, 0xf9, 0xab, 0x27, 0x1a, 0xb5, 0xa7, 0xbb, 0x84, 0x8f, 0xba, 0xe4, 0x72, 0x27, 0xcf,
0xfc, 0xfd, 0x89, 0x05, 0x27, 0x72, 0x1c, 0xc1, 0xb8, 0xa8, 0xda, 0xf4, 0xe2, 0x44, 0xbd, 0x4c,
0xa0, 0x89, 0x2a, 0x0e, 0xc7, 0x8a, 0x82, 0xae, 0x07, 0x2e, 0x0c, 0xb3, 0x02, 0x50, 0x38, 0x6f,
0x08, 0xec, 0xd1, 0x04, 0x20, 0x3a, 0x0b, 0x43, 0x9d, 0x98, 0x44, 0xf2, 0x6d, 0x3c, 0x29, 0xbf,
0x99, 0x45, 0x90, 0x61, 0xa8, 0x46, 0xb9, 0xa9, 0x8c, 0x71, 0x9a, 0x46, 0xc9, 0xcd, 0x71, 0x1c,
0x67, 0x7f, 0xb9, 0x0c, 0xd3, 0x19, 0x57, 0x4e, 0xda, 0x90, 0x9d, 0x30, 0xf0, 0x92, 0x50, 0xe5,
0x42, 0xe3, 0xa9, 0x1f, 0x48, 0x7b, 0xeb, 0x8a, 0x80, 0x63, 0x45, 0x81, 0x1e, 0x95, 0x8f, 0xa6,
0x66, 0x5f, 0x5c, 0x58, 0xae, 0x19, 0xef, 0xa6, 0x0e, 0xfa, 0x74, 0xca, 0x23, 0x30, 0xd4, 0x0e,
0xd5, 0x8b, 0xd6, 0x6a, 0x3c, 0xf1, 0x72, 0xad, 0x11, 0x86, 0x3e, 0x66, 0x48, 0xf4, 0x31, 0xf1,
0xf5, 0x99, 0xfb, 0x0a, 0xec, 0xb8, 0x61, 0xac, 0x75, 0xc1, 0xe3, 0x30, 0xba, 0x4d, 0xf6, 0x22,
0x2f, 0xd8, 0xcc, 0xde, 0xd6, 0x5c, 0xe2, 0x60, 0x2c, 0xf1, 0x66, 0xea, 0xf1, 0xd1, 0x7b, 0xf2,
0xfa, 0xc9, 0x58, 0xdf, 0x5d, 0xed, 0xb7, 0x2c, 0x98, 0x66, 0x79, 0x47, 0x45, 0xc4, 0xbc, 0x17,
0x06, 0xc7, 0xa0, 0x27, 0x3c, 0x02, 0xc3, 0x11, 0xad, 0x34, 0xfb, 0xa4, 0x01, 0x6b, 0x09, 0xe6,
0x38, 0xf4, 0x20, 0x0c, 0xb1, 0x26, 0xd0, 0xc1, 0x9b, 0xe0, 0x99, 0xc7, 0x6b, 0x4e, 0xe2, 0x60,
0x06, 0x65, 0xa1, 0x4b, 0x98, 0xb4, 0x7d, 0x8f, 0x37, 0x3a, 0x35, 0xb7, 0x7e, 0x38, 0x42, 0x97,
0x72, 0x9b, 0xf6, 0xfe, 0x42, 0x97, 0xf2, 0x59, 0xf6, 0xd6, 0xc1, 0xff, 0x7b, 0x09, 0xce, 0xe4,
0x96, 0x4b, 0x6f, 0x76, 0xd7, 0x8c, 0x9b, 0xdd, 0xf3, 0x99, 0x9b, 0x5d, 0xbb, 0x77, 0xe9, 0xbb,
0x73, 0xd7, 0x9b, 0x7f, 0x05, 0x5b, 0x3e, 0xc6, 0x2b, 0xd8, 0xa1, 0x41, 0xd5, 0x94, 0xe1, 0x3e,
0x6a, 0xca, 0xb7, 0x2d, 0x38, 0x9d, 0xdb, 0x65, 0x1f, 0x92, 0x58, 0xb1, 0xdc, 0xb6, 0x15, 0x9c,
0x21, 0x7e, 0x58, 0x2a, 0xf8, 0x16, 0x76, 0x9a, 0x38, 0x47, 0xe5, 0x0c, 0x43, 0xc6, 0x42, 0xed,
0x9a, 0xe0, 0x32, 0x86, 0xc3, 0xb0, 0xc2, 0x22, 0x4f, 0x8b, 0xba, 0xe2, 0x4d, 0x7b, 0xe9, 0x48,
0x4b, 0x66, 0xc1, 0xb4, 0x8e, 0xeb, 0xe1, 0xfd, 0xd9, 0x08, 0xac, 0x2b, 0xda, 0x09, 0xb0, 0x3c,
0xf8, 0x09, 0x70, 0x22, 0xff, 0xf4, 0x87, 0x96, 0x60, 0x7a, 0xc7, 0x0b, 0xd8, 0xbb, 0xa4, 0xa6,
0xde, 0xa3, 0x42, 0x55, 0xaf, 0x98, 0x68, 0x9c, 0xa5, 0x9f, 0x7b, 0x09, 0x26, 0xef, 0xdc, 0x64,
0xf5, 0xdd, 0x32, 0x3c, 0xd0, 0x63, 0xd9, 0x73, 0x59, 0x6f, 0x8c, 0x81, 0x26, 0xeb, 0xbb, 0xc6,
0xa1, 0x01, 0x27, 0x37, 0x3a, 0xbe, 0xbf, 0xc7, 0xbc, 0x9c, 0x88, 0x2b, 0x29, 0x84, 0x62, 0xa2,
0x92, 0x0a, 0xaf, 0xe5, 0xd0, 0xe0, 0xdc, 0x92, 0xe8, 0x55, 0x40, 0xe1, 0x4d, 0x96, 0xe8, 0xd6,
0x4d, 0x93, 0x16, 0xb0, 0x8e, 0x2f, 0xa7, 0x8b, 0xf1, 0x5a, 0x17, 0x05, 0xce, 0x29, 0x45, 0x35,
0x4c, 0xf6, 0x9a, 0xba, 0x6a, 0x56, 0x46, 0xc3, 0xc4, 0x3a, 0x12, 0x9b, 0xb4, 0xe8, 0x02, 0xcc,
0x3a, 0xbb, 0x8e, 0xc7, 0x93, 0x58, 0x49, 0x06, 0x5c, 0xc5, 0x54, 0x86, 0xa2, 0xa5, 0x2c, 0x01,
0xee, 0x2e, 0x83, 0x36, 0x0c, 0x2b, 0x1f, 0xcf, 0xa1, 0x7f, 0x7e, 0xe0, 0xd9, 0x3a, 0xb0, 0xdd,
0xcf, 0xfe, 0x4f, 0x16, 0xdd, 0xbe, 0x72, 0x1e, 0xc2, 0xa4, 0xfd, 0xa0, 0xec, 0x57, 0x5a, 0xc4,
0x98, 0xea, 0x87, 0x15, 0x1d, 0x89, 0x4d, 0x5a, 0x3e, 0x21, 0xe2, 0xd4, 0x5d, 0xda, 0xd0, 0x13,
0x45, 0x88, 0xa5, 0xa2, 0x40, 0x6f, 0xc0, 0xa8, 0xeb, 0xed, 0x7a, 0x71, 0x18, 0x89, 0xc5, 0x72,
0xd4, 0x07, 0xa0, 0x95, 0x1c, 0xac, 0x71, 0x36, 0x58, 0xf2, 0xb3, 0xbf, 0x5c, 0x82, 0x49, 0x59,
0xe3, 0x6b, 0x9d, 0x30, 0x71, 0x8e, 0x61, 0x5b, 0xbe, 0x60, 0x6c, 0xcb, 0x1f, 0xeb, 0x15, 0x67,
0xca, 0x9a, 0x54, 0xb8, 0x1d, 0x5f, 0xcb, 0x6c, 0xc7, 0x8f, 0xf5, 0x67, 0xd5, 0x7b, 0x1b, 0xfe,
0x5d, 0x0b, 0x66, 0x0d, 0xfa, 0x63, 0xd8, 0x0d, 0xd6, 0xcc, 0xdd, 0xe0, 0xe1, 0xbe, 0xdf, 0x50,
0xb0, 0x0b, 0x7c, 0xad, 0x94, 0x69, 0x3b, 0x93, 0xfe, 0xef, 0xc2, 0xd0, 0x96, 0x13, 0xb9, 0xbd,
0x52, 0x31, 0x76, 0x15, 0x5a, 0xb8, 0xe8, 0x44, 0x2e, 0x97, 0xe1, 0x4f, 0xa9, 0x37, 0xba, 0x9c,
0xc8, 0xed, 0x1b, 0x1d, 0xc0, 0xaa, 0x42, 0x2f, 0xc2, 0x48, 0xdc, 0x0a, 0xdb, 0xca, 0xf7, 0xf2,
0x2c, 0x7f, 0xbf, 0x8b, 0x42, 0x0e, 0xf7, 0xe7, 0x91, 0x59, 0x1d, 0x05, 0x63, 0x41, 0x3f, 0xb7,
0x09, 0x15, 0x55, 0xf5, 0x3d, 0xf5, 0x2a, 0xff, 0xa3, 0x32, 0x9c, 0xc8, 0x99, 0x17, 0x28, 0x36,
0x7a, 0xeb, 0x99, 0x01, 0xa7, 0xd3, 0xfb, 0xec, 0xaf, 0x98, 0x9d, 0x58, 0x5c, 0x31, 0xfe, 0x03,
0x57, 0x7a, 0x3d, 0x26, 0xd9, 0x4a, 0x29, 0xa8, 0x7f, 0xa5, 0xb4, 0xb2, 0x63, 0xeb, 0x6a, 0x5a,
0x91, 0x6a, 0xe9, 0x3d, 0x1d, 0xd3, 0x3f, 0x2b, 0xc3, 0xc9, 0xbc, 0xf0, 0x74, 0xf4, 0x33, 0x99,
0x87, 0x1d, 0x9e, 0x1b, 0x34, 0xb0, 0x9d, 0xbf, 0xf6, 0x20, 0xb2, 0xbe, 0x2c, 0x98, 0x4f, 0x3d,
0xf4, 0xed, 0x66, 0x51, 0x27, 0x0b, 0xd7, 0x89, 0xf8, 0x83, 0x1c, 0x72, 0x89, 0x7f, 0x62, 0xe0,
0x06, 0x88, 0x97, 0x3c, 0xe2, 0x4c, 0xb8, 0x8e, 0x04, 0xf7, 0x0f, 0xd7, 0x91, 0x35, 0xcf, 0x79,
0x30, 0xae, 0x7d, 0xcd, 0x3d, 0x1d, 0xf1, 0x6d, 0xba, 0xa3, 0x68, 0xed, 0xbe, 0xa7, 0xa3, 0xfe,
0x15, 0x0b, 0x32, 0x7e, 0x52, 0xca, 0xfe, 0x61, 0x15, 0xda, 0x3f, 0xce, 0xc2, 0x50, 0x14, 0xfa,
0x24, 0x9b, 0xeb, 0x1f, 0x87, 0x3e, 0xc1, 0x0c, 0xa3, 0x1e, 0xe4, 0x2d, 0x17, 0x3d, 0xc8, 0x4b,
0x8f, 0xc6, 0x3e, 0xd9, 0x25, 0xd2, 0x1a, 0xa1, 0x64, 0xf2, 0x65, 0x0a, 0xc4, 0x1c, 0x67, 0xff,
0xc6, 0x10, 0x9c, 0xc8, 0x09, 0x4e, 0xa3, 0x07, 0x95, 0x4d, 0x27, 0x21, 0xb7, 0x9c, 0xbd, 0x6c,
0xfe, 0xd1, 0x0b, 0x1c, 0x8c, 0x25, 0x9e, 0xf9, 0x72, 0xf2, 0x14, 0x66, 0x19, 0x1b, 0x91, 0xc8,
0x5c, 0x26, 0xb0, 0xf7, 0xea, 0x8d, 0xd6, 0xf3, 0x00, 0x71, 0xec, 0xaf, 0x06, 0x54, 0xf9, 0x72,
0x85, 0xa7, 0x68, 0x9a, 0xef, 0xae, 0x79, 0x59, 0x60, 0xb0, 0x46, 0x85, 0x6a, 0x30, 0xd3, 0x8e,
0xc2, 0x84, 0xdb, 0xdd, 0x6a, 0xdc, 0x47, 0x61, 0xd8, 0x0c, 0x33, 0x6a, 0x64, 0xf0, 0xb8, 0xab,
0x04, 0x7a, 0x1e, 0xc6, 0x45, 0xe8, 0x51, 0x23, 0x0c, 0x7d, 0x61, 0xa5, 0x51, 0x37, 0xde, 0xcd,
0x14, 0x85, 0x75, 0x3a, 0xad, 0x18, 0x33, 0xe6, 0x8d, 0xe6, 0x16, 0xe3, 0x06, 0x3d, 0x8d, 0x2e,
0x93, 0xa5, 0x62, 0x6c, 0xa0, 0x2c, 0x15, 0xa9, 0xdd, 0xaa, 0x32, 0xf0, 0xfd, 0x05, 0xf4, 0xb5,
0xf4, 0x7c, 0xa3, 0x0c, 0x23, 0x7c, 0x28, 0x8e, 0x41, 0x15, 0x5b, 0x13, 0xb6, 0x9b, 0x1e, 0xb9,
0x01, 0x78, 0x5b, 0x16, 0x6a, 0x4e, 0xe2, 0x70, 0x31, 0xa4, 0x56, 0x43, 0x6a, 0xe5, 0x41, 0x0b,
0xc6, 0x7a, 0x99, 0xcb, 0x18, 0x27, 0x80, 0xf3, 0xd0, 0x56, 0xcf, 0xdb, 0x00, 0x31, 0x7b, 0x27,
0x94, 0xf2, 0x10, 0xb9, 0x4c, 0x9f, 0xe8, 0x51, 0x7b, 0x53, 0x11, 0xf3, 0x36, 0xa4, 0x53, 0x50,
0x21, 0xb0, 0xc6, 0x71, 0xee, 0x05, 0xa8, 0x28, 0xe2, 0x7e, 0x27, 0xb9, 0x09, 0x5d, 0x78, 0x7d,
0x0a, 0xa6, 0x33, 0x75, 0x1d, 0xe9, 0x20, 0xf8, 0xdb, 0x16, 0x4c, 0xf3, 0x26, 0xaf, 0x06, 0xbb,
0x62, 0xb1, 0xbf, 0x07, 0x27, 0xfd, 0x9c, 0x45, 0x27, 0x46, 0x74, 0xf0, 0x45, 0xaa, 0x0e, 0x7e,
0x79, 0x58, 0x9c, 0x5b, 0x07, 0x3d, 0xfc, 0xf3, 0x17, 0x8e, 0x1d, 0x5f, 0x78, 0x20, 0x4f, 0xf0,
0x1c, 0xcf, 0x1c, 0x86, 0x15, 0xd6, 0xfe, 0x9e, 0x05, 0xb3, 0x5d, 0xef, 0xe3, 0x7f, 0xa0, 0x6d,
0x17, 0x29, 0xac, 0x4b, 0x05, 0x29, 0xac, 0xf5, 0x4f, 0x2b, 0xf7, 0xfc, 0xb4, 0x5f, 0xb3, 0x40,
0xcc, 0xc0, 0x63, 0x50, 0xe7, 0x3f, 0x6d, 0xaa, 0xf3, 0x73, 0xc5, 0x93, 0xba, 0x40, 0x8f, 0xff,
0x0b, 0x0b, 0x66, 0x38, 0x41, 0x7a, 0x79, 0xf1, 0x81, 0x8e, 0xc3, 0x20, 0xef, 0xaa, 0xa8, 0x87,
0x2c, 0xf3, 0x3f, 0xca, 0x18, 0xac, 0xa1, 0x9e, 0x83, 0xe5, 0xca, 0x05, 0x74, 0x84, 0xf7, 0x82,
0x8e, 0x9c, 0x75, 0xcd, 0xfe, 0x53, 0x0b, 0x10, 0xaf, 0x26, 0xfb, 0xb4, 0x34, 0xdf, 0xfa, 0xb4,
0x03, 0x7d, 0x2a, 0x6a, 0x14, 0x06, 0x6b, 0x54, 0x77, 0xa5, 0x7b, 0x32, 0x37, 0x50, 0xe5, 0xfe,
0x37, 0x50, 0x47, 0xe8, 0xd1, 0xbf, 0x31, 0x04, 0x59, 0x77, 0x47, 0x74, 0x03, 0x26, 0x5a, 0x4e,
0xdb, 0xb9, 0xe9, 0xf9, 0x5e, 0xe2, 0x91, 0xb8, 0xd7, 0xd5, 0xf5, 0x8a, 0x46, 0x27, 0xae, 0x7b,
0x34, 0x08, 0x36, 0xf8, 0xa0, 0x05, 0x80, 0x76, 0xe4, 0xed, 0x7a, 0x3e, 0xd9, 0x64, 0x27, 0x1a,
0x16, 0xf3, 0xc0, 0xef, 0x63, 0x25, 0x14, 0x6b, 0x14, 0x39, 0x3e, 0xf2, 0xe5, 0x7b, 0xe7, 0x23,
0x3f, 0x74, 0x44, 0x1f, 0xf9, 0xe1, 0x81, 0x7c, 0xe4, 0x31, 0xdc, 0x27, 0xf7, 0x6e, 0xfa, 0x7f,
0xcd, 0xf3, 0x89, 0x50, 0xd8, 0x78, 0x24, 0xc4, 0xdc, 0xc1, 0xfe, 0xfc, 0x7d, 0x38, 0x97, 0x02,
0x17, 0x94, 0x44, 0x3f, 0x09, 0x55, 0xc7, 0xf7, 0xc3, 0x5b, 0xaa, 0xd7, 0x56, 0xe3, 0x96, 0xe3,
0xa7, 0x49, 0x48, 0xc7, 0x96, 0x1f, 0x3c, 0xd8, 0x9f, 0xaf, 0x2e, 0x15, 0xd0, 0xe0, 0xc2, 0xd2,
0xf6, 0x36, 0x9c, 0x68, 0x92, 0x48, 0x3e, 0x41, 0xa6, 0x96, 0xd8, 0x3a, 0x54, 0xa2, 0x8c, 0x50,
0x19, 0x28, 0xf0, 0x5d, 0x4b, 0xfd, 0x25, 0x85, 0x48, 0xca, 0xc8, 0xfe, 0x73, 0x0b, 0x46, 0x85,
0x0b, 0xe5, 0x31, 0xe8, 0x32, 0x4b, 0x86, 0x59, 0x69, 0x3e, 0x5f, 0xf0, 0xb2, 0xc6, 0x14, 0x1a,
0x94, 0xea, 0x19, 0x83, 0xd2, 0xc3, 0xbd, 0x98, 0xf4, 0x36, 0x25, 0xfd, 0x62, 0x19, 0xa6, 0x4c,
0xf7, 0xd1, 0x63, 0xe8, 0x82, 0xab, 0x30, 0x1a, 0x0b, 0x5f, 0xe5, 0x52, 0xb1, 0xcf, 0x5b, 0x76,
0x10, 0xd3, 0x9b, 0x71, 0xe1, 0x9d, 0x2c, 0x99, 0xe4, 0x3a, 0x41, 0x97, 0xef, 0xa1, 0x13, 0x74,
0x3f, 0x0f, 0xde, 0xa1, 0xbb, 0xe1, 0xc1, 0x6b, 0x7f, 0x93, 0x09, 0x7f, 0x1d, 0x7e, 0x0c, 0x7a,
0xc1, 0x05, 0x73, 0x9b, 0xb0, 0x7b, 0xcc, 0x2c, 0xd1, 0xa8, 0x02, 0xfd, 0xe0, 0x9f, 0x58, 0x30,
0x2e, 0x08, 0x8f, 0xa1, 0xd9, 0x9f, 0x31, 0x9b, 0xfd, 0x40, 0x8f, 0x66, 0x17, 0xb4, 0xf7, 0xef,
0x96, 0x54, 0x7b, 0x1b, 0x61, 0x94, 0x0c, 0x94, 0x94, 0x7a, 0x8c, 0x9e, 0x06, 0xc3, 0x56, 0xe8,
0x8b, 0xcd, 0xfc, 0xc1, 0x34, 0x18, 0x8e, 0xc3, 0x0f, 0xb5, 0xdf, 0x58, 0x51, 0xb3, 0x58, 0xad,
0x30, 0x4a, 0xc4, 0x06, 0x9a, 0xc6, 0x6a, 0x85, 0x51, 0x82, 0x19, 0x06, 0xb9, 0x00, 0xe9, 0xdb,
0xec, 0x22, 0x7a, 0xb4, 0x78, 0x15, 0x76, 0x12, 0xcf, 0x5f, 0xf0, 0x82, 0x24, 0x4e, 0xa2, 0x85,
0x7a, 0x90, 0x5c, 0x8b, 0xf8, 0xd9, 0x40, 0x8b, 0x6e, 0x53, 0xbc, 0xb0, 0xc6, 0x57, 0x86, 0x57,
0xb0, 0x3a, 0x86, 0xcd, 0xfb, 0x9e, 0xab, 0x02, 0x8e, 0x15, 0x85, 0xfd, 0x02, 0x93, 0xc9, 0xac,
0x83, 0x8e, 0x16, 0x78, 0xf6, 0x9d, 0x31, 0xd5, 0xb5, 0xcc, 0xd8, 0x5b, 0xd3, 0xc3, 0xdb, 0x7a,
0x8b, 0x40, 0x5a, 0xb1, 0xee, 0x4a, 0x9c, 0xc6, 0xc0, 0xa1, 0xcf, 0x76, 0x5d, 0x03, 0x3e, 0xdd,
0x47, 0x96, 0x1e, 0xe1, 0xe2, 0x8f, 0xe5, 0xd8, 0x63, 0xb9, 0xc8, 0xea, 0x8d, 0x6c, 0xda, 0xf0,
0x15, 0x89, 0xc0, 0x29, 0x0d, 0x5a, 0x14, 0x27, 0x4b, 0x6e, 0x66, 0x79, 0x20, 0x73, 0xb2, 0x94,
0x9f, 0xaf, 0x1d, 0x2d, 0x9f, 0x81, 0x71, 0xf5, 0x14, 0x4b, 0x83, 0xbf, 0x68, 0x51, 0xe1, 0xba,
0xd4, 0x6a, 0x0a, 0xc6, 0x3a, 0x0d, 0x5a, 0x87, 0xe9, 0x98, 0xbf, 0x13, 0x23, 0x23, 0x1e, 0x84,
0xdd, 0xe0, 0x89, 0xcc, 0x2b, 0xf0, 0x12, 0x7d, 0xc8, 0x40, 0x7c, 0xb1, 0xca, 0x18, 0x89, 0x2c,
0x0b, 0xf4, 0x0a, 0x4c, 0xf9, 0xfa, 0x7b, 0x99, 0x0d, 0x61, 0x56, 0x50, 0xae, 0x5c, 0xc6, 0x6b,
0x9a, 0x0d, 0x9c, 0xa1, 0xa6, 0x4a, 0x80, 0x0e, 0x11, 0xa9, 0x70, 0x9c, 0x60, 0x93, 0xc4, 0xe2,
0x21, 0x09, 0xa6, 0x04, 0x5c, 0x2e, 0xa0, 0xc1, 0x85, 0xa5, 0xd1, 0x8b, 0x30, 0x21, 0x3f, 0x5f,
0x8b, 0x00, 0x4a, 0x1d, 0x06, 0x35, 0x1c, 0x36, 0x28, 0xd1, 0x2d, 0x38, 0x25, 0xff, 0xaf, 0x47,
0xce, 0xc6, 0x86, 0xd7, 0x12, 0x01, 0x58, 0xe3, 0x8c, 0xc5, 0x92, 0xf4, 0x9e, 0x5e, 0xcd, 0x23,
0x3a, 0xdc, 0x9f, 0x3f, 0x2b, 0x7a, 0x2d, 0x17, 0xcf, 0x06, 0x31, 0x9f, 0x3f, 0xba, 0x02, 0x27,
0xb6, 0x88, 0xe3, 0x27, 0x5b, 0x2b, 0x5b, 0xa4, 0xb5, 0x2d, 0x17, 0x11, 0x8b, 0x2b, 0xd2, 0xdc,
0xec, 0x2e, 0x76, 0x93, 0xe0, 0xbc, 0x72, 0xe8, 0x2d, 0xa8, 0xb6, 0x3b, 0x37, 0x7d, 0x2f, 0xde,
0xba, 0x1a, 0x26, 0xec, 0xc6, 0x52, 0xbd, 0x64, 0x22, 0x02, 0x90, 0x54, 0x4c, 0x55, 0xa3, 0x80,
0x0e, 0x17, 0x72, 0x40, 0xef, 0xc1, 0xa9, 0xcc, 0x64, 0xe0, 0x8f, 0xe3, 0x88, 0x40, 0xa5, 0xc7,
0xf3, 0x97, 0x53, 0x4e, 0x01, 0x1e, 0x16, 0x97, 0x8b, 0xc2, 0xf9, 0x55, 0xbc, 0xbf, 0x7b, 0xec,
0x77, 0x69, 0x61, 0x4d, 0xbb, 0x41, 0x9f, 0x83, 0x09, 0x7d, 0x16, 0x89, 0x0d, 0xe6, 0xd1, 0x7e,
0x6f, 0xc3, 0x0a, 0xdd, 0x48, 0xcd, 0x28, 0x1d, 0x87, 0x0d, 0x8e, 0x36, 0x81, 0xfc, 0xef, 0x43,
0x97, 0x61, 0xac, 0xe5, 0x7b, 0x24, 0x48, 0xea, 0x8d, 0x5e, 0x81, 0xb3, 0x2b, 0x82, 0x46, 0x74,
0x98, 0xc8, 0xc4, 0xc4, 0x61, 0x58, 0x71, 0xb0, 0x7f, 0xbf, 0x04, 0xf3, 0x7d, 0x92, 0x71, 0x65,
0x6c, 0x80, 0xd6, 0x40, 0x36, 0xc0, 0x25, 0xf9, 0x2e, 0xcb, 0xd5, 0xcc, 0xf9, 0x33, 0xf3, 0xe6,
0x4a, 0x7a, 0x0a, 0xcd, 0xd2, 0x0f, 0xec, 0xfe, 0xa6, 0x9b, 0x11, 0x87, 0xfa, 0x7a, 0x01, 0x36,
0x74, 0x7b, 0xf0, 0xf0, 0xe0, 0x1a, 0x7d, 0xa1, 0x29, 0xd8, 0xfe, 0x66, 0x09, 0x4e, 0xa9, 0x2e,
0xfc, 0xf1, 0xed, 0xb8, 0xeb, 0xdd, 0x1d, 0x77, 0x17, 0x0c, 0xe9, 0xf6, 0x35, 0x18, 0x69, 0xee,
0xc5, 0xad, 0xc4, 0x1f, 0x40, 0x01, 0x7a, 0xc4, 0x58, 0xa0, 0xe9, 0x36, 0xcd, 0x9e, 0x56, 0x13,
0xeb, 0xd5, 0xfe, 0xab, 0x16, 0x4c, 0xaf, 0xaf, 0x34, 0x9a, 0x61, 0x6b, 0x9b, 0x24, 0x4b, 0xdc,
0x4c, 0x84, 0x85, 0xfe, 0x63, 0xdd, 0xa1, 0x5e, 0x93, 0xa7, 0x31, 0x9d, 0x85, 0xa1, 0xad, 0x30,
0x4e, 0xb2, 0x97, 0x25, 0x17, 0xc3, 0x38, 0xc1, 0x0c, 0x63, 0xff, 0xb1, 0x05, 0xc3, 0xec, 0x35,
0xb1, 0x7e, 0xaf, 0xce, 0x0d, 0xf2, 0x5d, 0xe8, 0x79, 0x18, 0x21, 0x1b, 0x1b, 0xa4, 0x95, 0x88,
0x51, 0x95, 0x11, 0x39, 0x23, 0xab, 0x0c, 0x4a, 0x37, 0x7d, 0x56, 0x19, 0xff, 0x8b, 0x05, 0x31,
0xfa, 0x2c, 0x54, 0x12, 0x6f, 0x87, 0x2c, 0xb9, 0xae, 0xb8, 0xa7, 0x38, 0x9a, 0x4b, 0x9a, 0x52,
0x42, 0xd6, 0x25, 0x13, 0x9c, 0xf2, 0xb3, 0x7f, 0xbe, 0x04, 0x90, 0x46, 0xee, 0xf5, 0xfb, 0xcc,
0xe5, 0xae, 0xc7, 0xf5, 0x1e, 0xcd, 0x79, 0x5c, 0x0f, 0xa5, 0x0c, 0x73, 0x9e, 0xd6, 0x53, 0x5d,
0x55, 0x1e, 0xa8, 0xab, 0x86, 0x8e, 0xd2, 0x55, 0x2b, 0x30, 0x9b, 0x46, 0x1e, 0x9a, 0x61, 0xd8,
0x2c, 0xf1, 0xee, 0x7a, 0x16, 0x89, 0xbb, 0xe9, 0xed, 0x2f, 0x59, 0x20, 0xdc, 0x94, 0x07, 0x98,
0xd0, 0x6f, 0xca, 0x77, 0xb0, 0x8c, 0x0c, 0x81, 0x67, 0x8b, 0xfd, 0xb6, 0x45, 0x5e, 0x40, 0xb5,
0x81, 0x18, 0xd9, 0x00, 0x0d, 0x5e, 0xf6, 0xef, 0x5a, 0x30, 0xce, 0xd1, 0x57, 0xd8, 0x29, 0xbb,
0x7f, 0x6b, 0x8e, 0x94, 0xb6, 0x99, 0x3d, 0x11, 0x45, 0x19, 0xab, 0xec, 0xbe, 0xfa, 0x13, 0x51,
0x12, 0x81, 0x53, 0x1a, 0xf4, 0x38, 0x8c, 0xc6, 0x9d, 0x9b, 0x8c, 0x3c, 0xe3, 0xa9, 0xdc, 0xe4,
0x60, 0x2c, 0xf1, 0x74, 0x5e, 0xcd, 0x64, 0x1d, 0xd5, 0xd1, 0x45, 0x18, 0xe1, 0x62, 0x43, 0x2c,
0xe3, 0x1e, 0xb7, 0x32, 0x9a, 0x7b, 0x3b, 0xf0, 0x37, 0xcd, 0x99, 0xb8, 0x11, 0xe5, 0xd1, 0x5b,
0x30, 0xee, 0x86, 0xb7, 0x82, 0x5b, 0x4e, 0xe4, 0x2e, 0x35, 0xea, 0xa2, 0xd7, 0x73, 0xb5, 0x8f,
0x5a, 0x4a, 0xa6, 0xbb, 0xcc, 0x33, 0x0b, 0x64, 0x8a, 0xc2, 0x3a, 0x3b, 0xb4, 0xce, 0x92, 0xa1,
0xf0, 0x97, 0x56, 0x7b, 0x39, 0xe0, 0xa8, 0xc7, 0x59, 0x35, 0xce, 0x93, 0x22, 0x63, 0x8a, 0x78,
0xa7, 0x35, 0x65, 0x64, 0x7f, 0xe1, 0x04, 0x18, 0xa3, 0x6d, 0x24, 0x57, 0xb6, 0xee, 0x52, 0x72,
0x65, 0x0c, 0x63, 0x64, 0xa7, 0x9d, 0xec, 0xd5, 0xbc, 0xa8, 0x57, 0xb6, 0xfb, 0x55, 0x41, 0xd3,
0xcd, 0x53, 0x62, 0xb0, 0xe2, 0x93, 0x9f, 0x01, 0xbb, 0xfc, 0x01, 0x66, 0xc0, 0x1e, 0x3a, 0xc6,
0x0c, 0xd8, 0x57, 0x61, 0x74, 0xd3, 0x4b, 0x30, 0x69, 0x87, 0x62, 0xcb, 0xcc, 0x9d, 0x09, 0x17,
0x38, 0x49, 0x77, 0x9e, 0x56, 0x81, 0xc0, 0x92, 0x09, 0x7a, 0x55, 0xad, 0x81, 0x91, 0x62, 0x8d,
0xb3, 0xdb, 0x80, 0x9f, 0xbb, 0x0a, 0x44, 0xc6, 0xeb, 0xd1, 0x3b, 0xcd, 0x78, 0xad, 0x32, 0x56,
0x8f, 0xbd, 0xbf, 0x8c, 0xd5, 0x46, 0x46, 0xef, 0xca, 0xdd, 0xcb, 0xe8, 0xfd, 0x25, 0x0b, 0x4e,
0xb5, 0xf3, 0x92, 0xdb, 0x8b, 0xdc, 0xd3, 0xcf, 0x0f, 0x9c, 0xe4, 0xdf, 0xa8, 0x90, 0x1d, 0x3d,
0x72, 0xc9, 0x70, 0x7e, 0x75, 0x32, 0x35, 0xf8, 0xf8, 0x9d, 0xa6, 0x06, 0xbf, 0x37, 0x49, 0xaa,
0xd3, 0x44, 0xe1, 0x93, 0xef, 0x3b, 0x51, 0xf8, 0xab, 0x2a, 0x51, 0x78, 0x8f, 0x94, 0x13, 0x3c,
0x0d, 0x78, 0xdf, 0xf4, 0xe0, 0x5a, 0x8a, 0xef, 0xe9, 0xbb, 0x91, 0xe2, 0xfb, 0x6d, 0x53, 0xd8,
0xf3, 0x7c, 0xd3, 0x4f, 0xf6, 0x11, 0xf6, 0x06, 0xdf, 0xde, 0xe2, 0x9e, 0xa7, 0x33, 0x9f, 0xbd,
0xa3, 0x74, 0xe6, 0x37, 0xf4, 0x44, 0xe1, 0xa8, 0x4f, 0x26, 0x6c, 0x4a, 0x34, 0x60, 0x7a, 0xf0,
0x1b, 0xfa, 0x16, 0x74, 0xa2, 0x98, 0xaf, 0xda, 0x69, 0xba, 0xf9, 0xe6, 0x6d, 0x42, 0xdd, 0x69,
0xc7, 0x4f, 0x1e, 0x4f, 0xda, 0xf1, 0x53, 0x77, 0x3d, 0xed, 0xf8, 0x7d, 0xc7, 0x90, 0x76, 0xfc,
0xfe, 0x0f, 0x34, 0xed, 0x78, 0xf5, 0xde, 0xa6, 0x1d, 0x3f, 0x7d, 0x37, 0xd2, 0x8e, 0xdf, 0x80,
0x4a, 0x5b, 0xc6, 0x32, 0x56, 0xe7, 0x8a, 0x87, 0x24, 0x37, 0xe0, 0x91, 0x0f, 0x89, 0x42, 0xe1,
0x94, 0x15, 0xe5, 0x9b, 0xa6, 0x21, 0x7f, 0xa0, 0x87, 0x71, 0x29, 0xef, 0xd8, 0xde, 0x23, 0xf9,
0xf8, 0x5f, 0x2b, 0xc1, 0x99, 0xde, 0xf3, 0x3a, 0x3d, 0xf3, 0x37, 0x52, 0x1b, 0x75, 0xe6, 0xcc,
0xcf, 0x94, 0x2e, 0x8d, 0x6a, 0xe0, 0x80, 0xef, 0x0b, 0x30, 0xab, 0x5c, 0xba, 0x7c, 0xaf, 0xb5,
0xa7, 0xbd, 0x1c, 0xa4, 0xa2, 0x04, 0x9a, 0x59, 0x02, 0xdc, 0x5d, 0x06, 0x2d, 0xc1, 0xb4, 0x01,
0xac, 0xd7, 0x84, 0x4a, 0xae, 0x8c, 0x0c, 0x4d, 0x13, 0x8d, 0xb3, 0xf4, 0xf6, 0xd7, 0x2c, 0xb8,
0xbf, 0x20, 0x83, 0xe9, 0xc0, 0xf1, 0xcc, 0x1b, 0x30, 0xdd, 0x36, 0x8b, 0xf6, 0x49, 0x7b, 0x60,
0xe4, 0x49, 0x55, 0x6d, 0xcd, 0x20, 0x70, 0x96, 0xe9, 0xf2, 0xb9, 0x6f, 0x7d, 0xff, 0xcc, 0x47,
0xfe, 0xf0, 0xfb, 0x67, 0x3e, 0xf2, 0xbd, 0xef, 0x9f, 0xf9, 0xc8, 0x5f, 0x3a, 0x38, 0x63, 0x7d,
0xeb, 0xe0, 0x8c, 0xf5, 0x87, 0x07, 0x67, 0xac, 0xef, 0x1d, 0x9c, 0xb1, 0xfe, 0xe4, 0xe0, 0x8c,
0xf5, 0xf3, 0x3f, 0x38, 0xf3, 0x91, 0x37, 0x4b, 0xbb, 0xcf, 0xfc, 0xbf, 0x00, 0x00, 0x00, 0xff,
0xff, 0xa6, 0x63, 0x42, 0x83, 0x43, 0xce, 0x00, 0x00,
0xd0, 0x73, 0x30, 0xb1, 0x13, 0x76, 0x02, 0x19, 0x21, 0x20, 0xe2, 0x3f, 0x99, 0x25, 0xef, 0x8a,
0x06, 0xc7, 0x06, 0xd5, 0xf1, 0xea, 0xfb, 0x5f, 0xb3, 0x72, 0x14, 0x55, 0x7e, 0x32, 0x7b, 0xd9,
0x3c, 0x99, 0x3d, 0x9a, 0x3d, 0x99, 0x75, 0xd9, 0x59, 0x8c, 0x43, 0xd9, 0xe0, 0x09, 0x57, 0x07,
0xcd, 0xb4, 0x63, 0xfb, 0x70, 0xb6, 0x9f, 0x70, 0x66, 0x8e, 0x58, 0xae, 0xba, 0xa1, 0x4c, 0x1d,
0xb1, 0xdc, 0x7a, 0x0d, 0x33, 0xcc, 0xa0, 0x39, 0x1b, 0xec, 0xff, 0x66, 0x41, 0xb9, 0x11, 0xba,
0xc7, 0x60, 0x37, 0xfa, 0x94, 0x61, 0x37, 0x7a, 0xa0, 0xe0, 0xf5, 0xc5, 0x42, 0x2b, 0xd1, 0x6a,
0xc6, 0x4a, 0xf4, 0x50, 0x11, 0x83, 0xde, 0x36, 0xa1, 0x7f, 0x50, 0x06, 0xfd, 0xad, 0x48, 0xf4,
0xaf, 0xef, 0xc4, 0xa3, 0xb7, 0xdc, 0xeb, 0xf9, 0x48, 0xc1, 0x99, 0xf9, 0x6f, 0xc9, 0x60, 0xc1,
0x1f, 0x31, 0xc7, 0xde, 0xd7, 0x89, 0xb7, 0xb9, 0x95, 0x10, 0x37, 0xfb, 0x39, 0xc7, 0xe7, 0xd8,
0xfb, 0x5f, 0x2c, 0x98, 0xce, 0xd4, 0x8e, 0xfc, 0xbc, 0xc8, 0xa3, 0x3b, 0xb4, 0x04, 0xcd, 0xf6,
0x0d, 0x55, 0x5a, 0x00, 0x50, 0x46, 0x79, 0x69, 0x6d, 0x61, 0xba, 0xaf, 0xb2, 0xda, 0xc7, 0x58,
0xa3, 0x40, 0xcf, 0xc3, 0x78, 0x12, 0xb6, 0x43, 0x3f, 0xdc, 0xdc, 0xbb, 0x44, 0x64, 0x96, 0x10,
0x75, 0x75, 0xb2, 0x9e, 0xa2, 0xb0, 0x4e, 0x67, 0xff, 0x6a, 0x19, 0xb2, 0xef, 0x8b, 0xfe, 0xff,
0x39, 0xf9, 0xe1, 0x9c, 0x93, 0xdf, 0xb5, 0x60, 0x86, 0xd6, 0xce, 0x7c, 0x63, 0xa4, 0x4b, 0xac,
0x7a, 0x99, 0xc1, 0xea, 0xf1, 0x32, 0xc3, 0xa3, 0x54, 0x76, 0xb9, 0x61, 0x27, 0x11, 0x56, 0x21,
0x4d, 0x38, 0x51, 0x28, 0x16, 0x58, 0x41, 0x47, 0xa2, 0x48, 0xc4, 0x13, 0xe9, 0x74, 0x24, 0x8a,
0xb0, 0xc0, 0xca, 0x87, 0x1b, 0x86, 0x0a, 0x1e, 0x6e, 0x60, 0x09, 0xb6, 0x84, 0x3f, 0x86, 0x50,
0x28, 0xb4, 0x04, 0x5b, 0xd2, 0x51, 0x23, 0xa5, 0xb1, 0xbf, 0x5e, 0x86, 0x89, 0x46, 0xe8, 0xa6,
0x5e, 0xf4, 0xcf, 0x19, 0x5e, 0xf4, 0x67, 0x33, 0x5e, 0xf4, 0x33, 0x3a, 0xed, 0xdd, 0x71, 0xa2,
0x17, 0xe9, 0xd7, 0xd8, 0x33, 0x22, 0x77, 0xe8, 0x40, 0x6f, 0xa4, 0x5f, 0x53, 0x8c, 0xb0, 0xc9,
0xf7, 0xc7, 0xc9, 0x71, 0xfe, 0x2f, 0x2c, 0x98, 0x6a, 0x84, 0x2e, 0x9d, 0xa0, 0x3f, 0x4e, 0xb3,
0x51, 0x4f, 0xdf, 0x36, 0xd2, 0x23, 0x7d, 0xdb, 0x3f, 0xb4, 0x60, 0xb4, 0x11, 0xba, 0xc7, 0x60,
0x31, 0x7d, 0xd9, 0xb4, 0x98, 0xde, 0x5f, 0x20, 0x65, 0x0b, 0x8c, 0xa4, 0xbf, 0x55, 0x86, 0x49,
0xda, 0xce, 0x70, 0x53, 0x8e, 0x92, 0xd1, 0x23, 0xd6, 0x00, 0x3d, 0x42, 0x95, 0xb9, 0xd0, 0xf7,
0xc3, 0x5b, 0xd9, 0x11, 0x5b, 0x63, 0x50, 0x2c, 0xb0, 0xe8, 0x29, 0x18, 0x6b, 0x47, 0x64, 0xd7,
0x0b, 0x3b, 0x71, 0x36, 0x22, 0xb1, 0x21, 0xe0, 0x58, 0x51, 0x50, 0xbd, 0x3d, 0xf6, 0x82, 0x16,
0x91, 0x3e, 0x1a, 0x43, 0xcc, 0x47, 0x83, 0x67, 0xc0, 0xd4, 0xe0, 0xd8, 0xa0, 0x42, 0xaf, 0x43,
0x85, 0xfd, 0x67, 0xeb, 0xe6, 0xe8, 0xef, 0x32, 0xf0, 0x03, 0xae, 0x64, 0x80, 0x53, 0x5e, 0xe8,
0x3c, 0x40, 0x22, 0xbd, 0x49, 0x62, 0x11, 0x30, 0xab, 0x34, 0x4a, 0xe5, 0x67, 0x12, 0x63, 0x8d,
0x0a, 0x3d, 0x09, 0x95, 0xc4, 0xf1, 0xfc, 0xcb, 0x5e, 0x40, 0x62, 0xe1, 0x8d, 0x23, 0xb2, 0x4a,
0x0b, 0x20, 0x4e, 0xf1, 0x74, 0x47, 0x67, 0xe1, 0xd8, 0xfc, 0x55, 0x97, 0x31, 0x46, 0xcd, 0x76,
0xf4, 0xcb, 0x0a, 0x8a, 0x35, 0x0a, 0xfb, 0x45, 0x38, 0xd5, 0x08, 0xdd, 0x46, 0x18, 0x25, 0x6b,
0x61, 0x74, 0xcb, 0x89, 0x5c, 0x39, 0x7e, 0xf3, 0x32, 0xc1, 0x31, 0xdd, 0x75, 0x87, 0xb9, 0x35,
0xc0, 0x48, 0x5d, 0xfc, 0x2c, 0xdb, 0xd3, 0x8f, 0x18, 0x3a, 0xf1, 0xef, 0x4a, 0x80, 0x1a, 0xcc,
0xdf, 0xc5, 0x78, 0xfa, 0xe7, 0x6d, 0x98, 0x8a, 0xc9, 0x65, 0x2f, 0xe8, 0xdc, 0x96, 0xe7, 0xab,
0x1e, 0x71, 0x29, 0xcd, 0x55, 0x9d, 0x92, 0x5b, 0x54, 0x4c, 0x18, 0xce, 0x70, 0xa3, 0x5d, 0x18,
0x75, 0x82, 0xa5, 0xf8, 0x7a, 0x4c, 0x22, 0xf1, 0xd4, 0x0d, 0xeb, 0x42, 0x2c, 0x81, 0x38, 0xc5,
0xd3, 0x29, 0xc3, 0xfe, 0x5c, 0x0d, 0x03, 0x1c, 0x86, 0x89, 0x9c, 0x64, 0xec, 0xb1, 0x04, 0x0d,
0x8e, 0x0d, 0x2a, 0xb4, 0x06, 0x28, 0xee, 0xb4, 0xdb, 0x3e, 0xbb, 0x1e, 0x74, 0xfc, 0x0b, 0x51,
0xd8, 0x69, 0x73, 0x87, 0x65, 0xf1, 0xce, 0x40, 0xb3, 0x0b, 0x8b, 0x73, 0x4a, 0x50, 0xc1, 0xb0,
0x11, 0xb3, 0xdf, 0x22, 0x22, 0x9b, 0xdb, 0x36, 0x9b, 0x0c, 0x84, 0x25, 0xce, 0xfe, 0x3c, 0xdb,
0xcc, 0xd8, 0x0b, 0x25, 0x49, 0x27, 0x22, 0x68, 0x07, 0x26, 0xdb, 0x6c, 0xc3, 0x4a, 0xa2, 0xd0,
0xf7, 0x89, 0xd4, 0x1b, 0xef, 0xcc, 0xf7, 0x86, 0xbf, 0x58, 0xa0, 0xb3, 0xc3, 0x26, 0x77, 0xfb,
0x8b, 0xd3, 0x4c, 0x2e, 0x35, 0xf9, 0xa1, 0x65, 0x54, 0x78, 0xd4, 0x0a, 0x0d, 0x6d, 0xae, 0xf8,
0x45, 0xb0, 0x54, 0xd2, 0x0b, 0xaf, 0x5c, 0x2c, 0xcb, 0xa2, 0xd7, 0x98, 0xa7, 0x37, 0x17, 0x06,
0xfd, 0xde, 0x22, 0xe4, 0x54, 0x86, 0x97, 0xb7, 0x28, 0x88, 0x35, 0x26, 0xe8, 0x32, 0x4c, 0x8a,
0x07, 0x2d, 0x84, 0xe1, 0xa1, 0x6c, 0x1c, 0x7f, 0x27, 0xb1, 0x8e, 0x3c, 0xcc, 0x02, 0xb0, 0x59,
0x18, 0x6d, 0xc2, 0x43, 0xda, 0xf3, 0x4b, 0x39, 0xfe, 0x5f, 0x5c, 0xb6, 0x3c, 0x7c, 0xb0, 0x3f,
0xff, 0xd0, 0x7a, 0x2f, 0x42, 0xdc, 0x9b, 0x0f, 0xba, 0x06, 0xa7, 0x9c, 0x56, 0xe2, 0xed, 0x92,
0x1a, 0x71, 0x5c, 0xdf, 0x0b, 0x88, 0x19, 0xa2, 0x7f, 0xfa, 0x60, 0x7f, 0xfe, 0xd4, 0x52, 0x1e,
0x01, 0xce, 0x2f, 0x87, 0x5e, 0x86, 0x8a, 0x1b, 0xc4, 0xa2, 0x0f, 0x46, 0x8c, 0x97, 0xc5, 0x2a,
0xb5, 0xab, 0x4d, 0xf5, 0xfd, 0xe9, 0x1f, 0x9c, 0x16, 0x40, 0x9b, 0x30, 0xa1, 0x87, 0xe1, 0x88,
0x57, 0xe9, 0x9e, 0xee, 0x71, 0xb6, 0x35, 0x62, 0x57, 0xb8, 0xd5, 0x4d, 0x79, 0x57, 0x1a, 0x61,
0x2d, 0x06, 0x63, 0xf4, 0x2a, 0xa0, 0x98, 0x44, 0xbb, 0x5e, 0x8b, 0x2c, 0xb5, 0x58, 0x8a, 0x58,
0x66, 0xab, 0x19, 0x33, 0x42, 0x05, 0x50, 0xb3, 0x8b, 0x02, 0xe7, 0x94, 0x42, 0x17, 0xa9, 0x44,
0xd1, 0xa1, 0xc2, 0x19, 0x56, 0xaa, 0x79, 0xd5, 0x1a, 0x69, 0x47, 0xa4, 0xe5, 0x24, 0xc4, 0x35,
0x39, 0xe2, 0x4c, 0x39, 0xba, 0xdf, 0xa8, 0xcc, 0xfb, 0x60, 0xba, 0x70, 0x76, 0x67, 0xdf, 0xa7,
0x27, 0xa4, 0xad, 0x30, 0x4e, 0xae, 0x92, 0xe4, 0x56, 0x18, 0x6d, 0x8b, 0xbc, 0x5a, 0x69, 0xda,
0xbd, 0x14, 0x85, 0x75, 0x3a, 0xaa, 0x11, 0xb1, 0x4b, 0xb0, 0x7a, 0x8d, 0xdd, 0x53, 0x8c, 0xa5,
0xeb, 0xe4, 0x22, 0x07, 0x63, 0x89, 0x97, 0xa4, 0xf5, 0xc6, 0x0a, 0xbb, 0x7d, 0xc8, 0x90, 0xd6,
0x1b, 0x2b, 0x58, 0xe2, 0x11, 0xe9, 0x7e, 0xb5, 0x6d, 0xaa, 0xf8, 0xde, 0xa8, 0x5b, 0x2e, 0x0f,
0xf8, 0x70, 0x5b, 0x00, 0x33, 0xea, 0xbd, 0x38, 0x9e, 0x70, 0x2c, 0xae, 0x4e, 0xb3, 0x49, 0x32,
0x78, 0xb6, 0x32, 0x65, 0x8b, 0xab, 0x67, 0x38, 0xe1, 0x2e, 0xde, 0x46, 0xea, 0x87, 0x99, 0xbe,
0x2f, 0x27, 0x2c, 0x42, 0x25, 0xee, 0xdc, 0x74, 0xc3, 0x1d, 0xc7, 0x0b, 0xd8, 0x65, 0x81, 0xfe,
0x6c, 0xbe, 0x44, 0xe0, 0x94, 0x06, 0xad, 0xc1, 0x98, 0x23, 0x0e, 0x5f, 0xc2, 0xbc, 0x9f, 0x1b,
0x0b, 0x2e, 0x0f, 0x68, 0xdc, 0x0e, 0x2a, 0xff, 0x61, 0x55, 0x16, 0xbd, 0x04, 0x93, 0x22, 0x5c,
0x49, 0x78, 0x1a, 0x9e, 0x30, 0x3d, 0xdb, 0x9b, 0x3a, 0x12, 0x9b, 0xb4, 0xe8, 0xa7, 0x60, 0x8a,
0x72, 0x49, 0x05, 0x5b, 0xf5, 0xe4, 0x20, 0x12, 0x51, 0xcb, 0x88, 0xad, 0x17, 0xc6, 0x19, 0x66,
0xc8, 0x85, 0x07, 0x9d, 0x4e, 0x12, 0x32, 0x63, 0xa5, 0x39, 0xff, 0xd7, 0xc3, 0x6d, 0x12, 0x30,
0xeb, 0xfe, 0xd8, 0xf2, 0xd9, 0x83, 0xfd, 0xf9, 0x07, 0x97, 0x7a, 0xd0, 0xe1, 0x9e, 0x5c, 0xd0,
0x75, 0x18, 0x4f, 0x42, 0x5f, 0xb8, 0x08, 0xc7, 0xd5, 0xfb, 0x8a, 0x53, 0xd7, 0xac, 0x2b, 0x32,
0xdd, 0x9c, 0xa0, 0x8a, 0x62, 0x9d, 0x0f, 0x5a, 0xe7, 0x6b, 0x8c, 0x25, 0x5a, 0x24, 0x71, 0xf5,
0xfe, 0xe2, 0x8e, 0x51, 0xf9, 0x18, 0xcd, 0x25, 0x28, 0x4a, 0x62, 0x9d, 0x0d, 0xba, 0x00, 0xb3,
0xed, 0xc8, 0x0b, 0xd9, 0xc4, 0x56, 0x86, 0xe2, 0xaa, 0x91, 0xd4, 0x6c, 0xb6, 0x91, 0x25, 0xc0,
0xdd, 0x65, 0xd0, 0x39, 0xaa, 0xa0, 0x72, 0x60, 0xf5, 0x34, 0x7f, 0x51, 0x83, 0x2b, 0xa7, 0x1c,
0x86, 0x15, 0x76, 0xee, 0xd3, 0x30, 0xdb, 0x25, 0x29, 0x8f, 0xe4, 0xae, 0xf9, 0xeb, 0xc3, 0x50,
0x51, 0xe6, 0x40, 0xb4, 0x68, 0x5a, 0x79, 0x4f, 0x67, 0xad, 0xbc, 0x63, 0x54, 0x5f, 0xd3, 0x0d,
0xbb, 0xeb, 0x39, 0x8f, 0x82, 0x9f, 0x2d, 0x10, 0x0d, 0x83, 0xc7, 0x56, 0x1d, 0xe1, 0xc1, 0xf4,
0xf4, 0xc0, 0x38, 0xd4, 0xf3, 0xc0, 0x38, 0xe0, 0x03, 0x7d, 0xf4, 0x68, 0xd8, 0x0e, 0xdd, 0x7a,
0x23, 0xfb, 0x62, 0x55, 0x83, 0x02, 0x31, 0xc7, 0x31, 0xe5, 0x9e, 0x6e, 0xeb, 0x4c, 0xb9, 0x1f,
0xbd, 0x43, 0xe5, 0x5e, 0x32, 0xc0, 0x29, 0x2f, 0xe4, 0xc3, 0x6c, 0xcb, 0x7c, 0x6c, 0x4c, 0xc5,
0x53, 0x3d, 0xd2, 0xf7, 0xd9, 0xaf, 0x8e, 0xf6, 0x02, 0xc9, 0x4a, 0x96, 0x0b, 0xee, 0x66, 0x8c,
0x5e, 0x82, 0xb1, 0x77, 0xc3, 0x98, 0x4d, 0x3b, 0xb1, 0xb7, 0xc9, 0x08, 0x96, 0xb1, 0xd7, 0xae,
0x35, 0x19, 0xfc, 0x70, 0x7f, 0x7e, 0xbc, 0x11, 0xba, 0xf2, 0x2f, 0x56, 0x05, 0xd0, 0x6d, 0x38,
0x65, 0x48, 0x04, 0xd5, 0x5c, 0x18, 0xbc, 0xb9, 0x0f, 0x89, 0xea, 0x4e, 0xd5, 0xf3, 0x38, 0xe1,
0xfc, 0x0a, 0xec, 0x6f, 0x70, 0xa3, 0xa7, 0x30, 0x8d, 0x90, 0xb8, 0xe3, 0x1f, 0xc7, 0x33, 0x03,
0xab, 0x86, 0xd5, 0xe6, 0x8e, 0x0d, 0xeb, 0x7f, 0x60, 0x31, 0xc3, 0xfa, 0x3a, 0xd9, 0x69, 0xfb,
0x4e, 0x72, 0x1c, 0x4e, 0xba, 0xaf, 0xc1, 0x58, 0x22, 0x6a, 0xeb, 0xf5, 0x32, 0x82, 0xd6, 0x28,
0x76, 0xb9, 0xa0, 0x36, 0x44, 0x09, 0xc5, 0x8a, 0x8d, 0xfd, 0xcf, 0xf9, 0x08, 0x48, 0xcc, 0x31,
0xd8, 0x16, 0x6a, 0xa6, 0x6d, 0x61, 0xbe, 0xcf, 0x17, 0x14, 0xd8, 0x18, 0xfe, 0x99, 0xd9, 0x6e,
0x76, 0xf6, 0xf8, 0xb0, 0xdf, 0xe8, 0xd8, 0xbf, 0x64, 0xc1, 0xc9, 0x3c, 0x47, 0x00, 0xaa, 0xc4,
0xf0, 0x93, 0x8f, 0xba, 0xe1, 0x52, 0x3d, 0x78, 0x43, 0xc0, 0xb1, 0xa2, 0x18, 0x38, 0x3b, 0xf9,
0xd1, 0xd2, 0x35, 0x5d, 0x03, 0xf3, 0x5d, 0x3a, 0xf4, 0x0a, 0xf7, 0xba, 0xb7, 0xd4, 0xc3, 0x71,
0x47, 0xf3, 0xb8, 0xb7, 0x7f, 0xad, 0x04, 0x27, 0xb9, 0x89, 0x7a, 0x69, 0x37, 0xf4, 0xdc, 0x46,
0xe8, 0x8a, 0x18, 0x84, 0x37, 0x61, 0xa2, 0xad, 0x1d, 0x57, 0x7b, 0x25, 0x8c, 0xd1, 0x8f, 0xb5,
0xe9, 0xb1, 0x41, 0x87, 0x62, 0x83, 0x17, 0x72, 0x61, 0x82, 0xec, 0x7a, 0x2d, 0x65, 0xe7, 0x2c,
0x1d, 0x59, 0xa4, 0xab, 0x5a, 0x56, 0x35, 0x3e, 0xd8, 0xe0, 0x7a, 0x0f, 0xde, 0x10, 0xb1, 0xbf,
0x62, 0xc1, 0xfd, 0x05, 0xe9, 0x65, 0x68, 0x75, 0xb7, 0xd8, 0x65, 0x80, 0x78, 0xe4, 0x50, 0x55,
0xc7, 0xaf, 0x08, 0xb0, 0xc0, 0xa2, 0x9f, 0x04, 0xe0, 0x26, 0x7e, 0xf6, 0xa4, 0x7c, 0xa9, 0x77,
0xfc, 0xba, 0x91, 0x76, 0x41, 0x8b, 0xcd, 0x57, 0x8f, 0xc8, 0x6b, 0xbc, 0xec, 0x5f, 0x29, 0xc3,
0x30, 0x7f, 0xf1, 0x7a, 0x0d, 0x46, 0xb7, 0x78, 0x32, 0xdb, 0x41, 0xf2, 0xe6, 0xa6, 0xc7, 0x11,
0x0e, 0xc0, 0xb2, 0x30, 0xba, 0x02, 0x27, 0x44, 0x9c, 0x4b, 0x8d, 0xf8, 0xce, 0x9e, 0x3c, 0xd5,
0xf2, 0x87, 0x25, 0x64, 0xd2, 0xf3, 0x13, 0xf5, 0x6e, 0x12, 0x9c, 0x57, 0x0e, 0xbd, 0xd2, 0x95,
0xc2, 0x8e, 0xa7, 0x01, 0x56, 0x3a, 0x70, 0x9f, 0x34, 0x76, 0x2f, 0xc1, 0x64, 0xbb, 0xeb, 0xfc,
0xae, 0x3d, 0x36, 0x6c, 0x9e, 0xd9, 0x4d, 0x5a, 0xe6, 0x55, 0xd0, 0x61, 0x3e, 0x14, 0xeb, 0x5b,
0x11, 0x89, 0xb7, 0x42, 0xdf, 0x15, 0x2f, 0x6b, 0xa6, 0x5e, 0x05, 0x19, 0x3c, 0xee, 0x2a, 0x41,
0xb9, 0x6c, 0x38, 0x9e, 0xdf, 0x89, 0x48, 0xca, 0x65, 0xc4, 0xe4, 0xb2, 0x96, 0xc1, 0xe3, 0xae,
0x12, 0x74, 0x1e, 0x9d, 0x12, 0xcf, 0x32, 0xca, 0xe8, 0x67, 0xe5, 0x2a, 0x32, 0x2a, 0xfd, 0xdb,
0x7b, 0x64, 0xe4, 0x10, 0x57, 0xfe, 0xea, 0x61, 0x47, 0xed, 0xc1, 0x2f, 0xe1, 0xd9, 0x2e, 0xb9,
0xdc, 0xc9, 0xe3, 0x80, 0x7f, 0x62, 0xc1, 0x89, 0x1c, 0xf7, 0x31, 0x2e, 0xaa, 0x36, 0xbd, 0x38,
0x51, 0xef, 0x19, 0x68, 0xa2, 0x8a, 0xc3, 0xb1, 0xa2, 0xa0, 0xeb, 0x81, 0x0b, 0xc3, 0xac, 0x00,
0x14, 0x2e, 0x1f, 0x02, 0x7b, 0x34, 0x01, 0x88, 0xce, 0xc2, 0x50, 0x27, 0x26, 0x91, 0x7c, 0x51,
0x4f, 0xca, 0x6f, 0x66, 0x11, 0x64, 0x18, 0xaa, 0x51, 0x6e, 0x2a, 0x63, 0x9c, 0xa6, 0x51, 0x72,
0x73, 0x1c, 0xc7, 0xd9, 0x5f, 0x2e, 0xc3, 0x74, 0xc6, 0x01, 0x94, 0x36, 0x64, 0x27, 0x0c, 0xbc,
0x24, 0x54, 0x19, 0xd4, 0x78, 0xc2, 0x08, 0xd2, 0xde, 0xba, 0x22, 0xe0, 0x58, 0x51, 0xa0, 0x47,
0xe5, 0x53, 0xab, 0xd9, 0x77, 0x1a, 0x96, 0x6b, 0xc6, 0x6b, 0xab, 0x83, 0x3e, 0xb8, 0xf2, 0x08,
0x0c, 0xb5, 0x43, 0xf5, 0x0e, 0xb6, 0x1a, 0x4f, 0xbc, 0x5c, 0x6b, 0x84, 0xa1, 0x8f, 0x19, 0x12,
0x7d, 0x4c, 0x7c, 0x7d, 0xe6, 0xbe, 0x02, 0x3b, 0x6e, 0x18, 0x6b, 0x5d, 0xf0, 0x38, 0x8c, 0x6e,
0x93, 0xbd, 0xc8, 0x0b, 0x36, 0xb3, 0xb7, 0x35, 0x97, 0x38, 0x18, 0x4b, 0xbc, 0x99, 0xb0, 0x7c,
0xf4, 0x9e, 0xbc, 0x99, 0x32, 0xd6, 0x77, 0x57, 0xfb, 0x2d, 0x0b, 0xa6, 0x59, 0xb6, 0x52, 0x11,
0x67, 0xef, 0x85, 0xc1, 0x31, 0xe8, 0x09, 0x8f, 0xc0, 0x70, 0x44, 0x2b, 0xcd, 0x3e, 0x84, 0xc0,
0x5a, 0x82, 0x39, 0x0e, 0x3d, 0x08, 0x43, 0xac, 0x09, 0x74, 0xf0, 0x26, 0x78, 0xbe, 0xf2, 0x9a,
0x93, 0x38, 0x98, 0x41, 0x59, 0xc0, 0x13, 0x26, 0x6d, 0xdf, 0xe3, 0x8d, 0x4e, 0xcd, 0xad, 0x1f,
0x8e, 0x80, 0xa7, 0xdc, 0xa6, 0xbd, 0xbf, 0x80, 0xa7, 0x7c, 0x96, 0xbd, 0x75, 0xf0, 0xff, 0x5e,
0x82, 0x33, 0xb9, 0xe5, 0xd2, 0x9b, 0xdd, 0x35, 0xe3, 0x66, 0xf7, 0x7c, 0xe6, 0x66, 0xd7, 0xee,
0x5d, 0xfa, 0xee, 0xdc, 0xf5, 0xe6, 0x5f, 0xc1, 0x96, 0x8f, 0xf1, 0x0a, 0x76, 0x68, 0x50, 0x35,
0x65, 0xb8, 0x8f, 0x9a, 0xf2, 0x6d, 0x0b, 0x4e, 0xe7, 0x76, 0xd9, 0x87, 0x24, 0xc2, 0x2c, 0xb7,
0x6d, 0x05, 0x67, 0x88, 0x1f, 0x96, 0x0a, 0xbe, 0x85, 0x9d, 0x26, 0xce, 0x51, 0x39, 0xc3, 0x90,
0xb1, 0x50, 0xbb, 0x26, 0xb8, 0x8c, 0xe1, 0x30, 0xac, 0xb0, 0xc8, 0xd3, 0x62, 0xb5, 0x78, 0xd3,
0x5e, 0x3a, 0xd2, 0x92, 0x59, 0x30, 0xad, 0xe3, 0x7a, 0x52, 0x80, 0x6c, 0xdc, 0xd6, 0x15, 0xed,
0x04, 0x58, 0x1e, 0xfc, 0x04, 0x38, 0x91, 0x7f, 0xfa, 0x43, 0x4b, 0x30, 0xbd, 0xe3, 0x05, 0xec,
0x35, 0x53, 0x53, 0xef, 0x51, 0x01, 0xae, 0x57, 0x4c, 0x34, 0xce, 0xd2, 0xcf, 0xbd, 0x04, 0x93,
0x77, 0x6e, 0xb2, 0xfa, 0x6e, 0x19, 0x1e, 0xe8, 0xb1, 0xec, 0xb9, 0xac, 0x37, 0xc6, 0x40, 0x93,
0xf5, 0x5d, 0xe3, 0xd0, 0x80, 0x93, 0x1b, 0x1d, 0xdf, 0xdf, 0x63, 0x5e, 0x4e, 0xc4, 0x95, 0x14,
0x42, 0x31, 0x51, 0xa9, 0x88, 0xd7, 0x72, 0x68, 0x70, 0x6e, 0x49, 0xf4, 0x2a, 0xa0, 0xf0, 0x26,
0x4b, 0x8f, 0xeb, 0xa6, 0xa9, 0x0e, 0x58, 0xc7, 0x97, 0xd3, 0xc5, 0x78, 0xad, 0x8b, 0x02, 0xe7,
0x94, 0xa2, 0x1a, 0x26, 0x7b, 0x83, 0x5d, 0x35, 0x2b, 0xa3, 0x61, 0x62, 0x1d, 0x89, 0x4d, 0x5a,
0x74, 0x01, 0x66, 0x9d, 0x5d, 0xc7, 0xe3, 0xa9, 0xaf, 0x24, 0x03, 0xae, 0x62, 0x2a, 0x43, 0xd1,
0x52, 0x96, 0x00, 0x77, 0x97, 0x41, 0x1b, 0x86, 0x95, 0x8f, 0x67, 0xde, 0x3f, 0x3f, 0xf0, 0x6c,
0x1d, 0xd8, 0xee, 0x67, 0xff, 0x27, 0x8b, 0x6e, 0x5f, 0x39, 0xcf, 0x67, 0xd2, 0x7e, 0x50, 0xf6,
0x2b, 0x2d, 0xce, 0x4c, 0xf5, 0xc3, 0x8a, 0x8e, 0xc4, 0x26, 0x2d, 0x9f, 0x10, 0x71, 0xea, 0x64,
0x6d, 0xe8, 0x89, 0x22, 0x30, 0x53, 0x51, 0xa0, 0x37, 0x60, 0xd4, 0xf5, 0x76, 0xbd, 0x38, 0x8c,
0xc4, 0x62, 0x39, 0xea, 0xb3, 0xd1, 0x4a, 0x0e, 0xd6, 0x38, 0x1b, 0x2c, 0xf9, 0xd9, 0x5f, 0x2e,
0xc1, 0xa4, 0xac, 0xf1, 0xb5, 0x4e, 0x98, 0x38, 0xc7, 0xb0, 0x2d, 0x5f, 0x30, 0xb6, 0xe5, 0x8f,
0xf5, 0x8a, 0x4e, 0x65, 0x4d, 0x2a, 0xdc, 0x8e, 0xaf, 0x65, 0xb6, 0xe3, 0xc7, 0xfa, 0xb3, 0xea,
0xbd, 0x0d, 0xff, 0xae, 0x05, 0xb3, 0x06, 0xfd, 0x31, 0xec, 0x06, 0x6b, 0xe6, 0x6e, 0xf0, 0x70,
0xdf, 0x6f, 0x28, 0xd8, 0x05, 0xbe, 0x56, 0xca, 0xb4, 0x9d, 0x49, 0xff, 0x77, 0x61, 0x68, 0xcb,
0x89, 0xdc, 0x5e, 0x09, 0x1c, 0xbb, 0x0a, 0x2d, 0x5c, 0x74, 0x22, 0x97, 0xcb, 0xf0, 0xa7, 0xd4,
0xcb, 0x5e, 0x4e, 0xe4, 0xf6, 0x8d, 0x29, 0x60, 0x55, 0xa1, 0x17, 0x61, 0x24, 0x6e, 0x85, 0x6d,
0xe5, 0x7b, 0x79, 0x96, 0xbf, 0xfa, 0x45, 0x21, 0x87, 0xfb, 0xf3, 0xc8, 0xac, 0x8e, 0x82, 0xb1,
0xa0, 0x9f, 0xdb, 0x84, 0x8a, 0xaa, 0xfa, 0x9e, 0x7a, 0x95, 0xff, 0x51, 0x19, 0x4e, 0xe4, 0xcc,
0x0b, 0x14, 0x1b, 0xbd, 0xf5, 0xcc, 0x80, 0xd3, 0xe9, 0x7d, 0xf6, 0x57, 0xcc, 0x4e, 0x2c, 0xae,
0x18, 0xff, 0x81, 0x2b, 0xbd, 0x1e, 0x93, 0x6c, 0xa5, 0x14, 0xd4, 0xbf, 0x52, 0x5a, 0xd9, 0xb1,
0x75, 0x35, 0xad, 0x48, 0xb5, 0xf4, 0x9e, 0x8e, 0xe9, 0x9f, 0x95, 0xe1, 0x64, 0x5e, 0x50, 0x3b,
0xfa, 0x99, 0xcc, 0x73, 0x10, 0xcf, 0x0d, 0x1a, 0x0e, 0xcf, 0xdf, 0x88, 0x10, 0xb9, 0x62, 0x16,
0xcc, 0x07, 0x22, 0xfa, 0x76, 0xb3, 0xa8, 0x93, 0x05, 0xf9, 0x44, 0xfc, 0x19, 0x0f, 0xb9, 0xc4,
0x3f, 0x31, 0x70, 0x03, 0xc4, 0xfb, 0x1f, 0x71, 0x26, 0xc8, 0x47, 0x82, 0xfb, 0x07, 0xf9, 0xc8,
0x9a, 0xe7, 0x3c, 0x18, 0xd7, 0xbe, 0xe6, 0x9e, 0x8e, 0xf8, 0x36, 0xdd, 0x51, 0xb4, 0x76, 0xdf,
0xd3, 0x51, 0xff, 0x8a, 0x05, 0x19, 0x3f, 0x29, 0x65, 0xff, 0xb0, 0x0a, 0xed, 0x1f, 0x67, 0x61,
0x28, 0x0a, 0x7d, 0x92, 0x7d, 0x21, 0x00, 0x87, 0x3e, 0xc1, 0x0c, 0xa3, 0x9e, 0xf1, 0x2d, 0x17,
0x3d, 0xe3, 0x4b, 0x8f, 0xc6, 0x3e, 0xd9, 0x25, 0xd2, 0x1a, 0xa1, 0x64, 0xf2, 0x65, 0x0a, 0xc4,
0x1c, 0x67, 0xff, 0xc6, 0x10, 0x9c, 0xc8, 0x09, 0x69, 0xa3, 0x07, 0x95, 0x4d, 0x27, 0x21, 0xb7,
0x9c, 0xbd, 0x6c, 0xd6, 0xd2, 0x0b, 0x1c, 0x8c, 0x25, 0x9e, 0xf9, 0x72, 0xf2, 0xc4, 0x67, 0x19,
0x1b, 0x91, 0xc8, 0x77, 0x26, 0xb0, 0xf7, 0xea, 0x65, 0xd7, 0xf3, 0x00, 0x71, 0xec, 0xaf, 0x06,
0x54, 0xf9, 0x72, 0x85, 0xa7, 0x68, 0x9a, 0x25, 0xaf, 0x79, 0x59, 0x60, 0xb0, 0x46, 0x85, 0x6a,
0x30, 0xd3, 0x8e, 0xc2, 0x84, 0xdb, 0xdd, 0x6a, 0xdc, 0x47, 0x61, 0xd8, 0x0c, 0x4e, 0x6a, 0x64,
0xf0, 0xb8, 0xab, 0x04, 0x7a, 0x1e, 0xc6, 0x45, 0xc0, 0x52, 0x23, 0x0c, 0x7d, 0x61, 0xa5, 0x51,
0x37, 0xde, 0xcd, 0x14, 0x85, 0x75, 0x3a, 0xad, 0x18, 0x33, 0xe6, 0x8d, 0xe6, 0x16, 0xe3, 0x06,
0x3d, 0x8d, 0x2e, 0x93, 0xdb, 0x62, 0x6c, 0xa0, 0xdc, 0x16, 0xa9, 0xdd, 0xaa, 0x32, 0xf0, 0xfd,
0x05, 0xf4, 0xb5, 0xf4, 0x7c, 0xa3, 0x0c, 0x23, 0x7c, 0x28, 0x8e, 0x41, 0x15, 0x5b, 0x13, 0xb6,
0x9b, 0x1e, 0x19, 0x05, 0x78, 0x5b, 0x16, 0x6a, 0x4e, 0xe2, 0x70, 0x31, 0xa4, 0x56, 0x43, 0x6a,
0xe5, 0x41, 0x0b, 0xc6, 0x7a, 0x99, 0xcb, 0x18, 0x27, 0x80, 0xf3, 0xd0, 0x56, 0xcf, 0xdb, 0x00,
0x31, 0x7b, 0x5d, 0x94, 0xf2, 0x10, 0x19, 0x50, 0x9f, 0xe8, 0x51, 0x7b, 0x53, 0x11, 0xf3, 0x36,
0xa4, 0x53, 0x50, 0x21, 0xb0, 0xc6, 0x71, 0xee, 0x05, 0xa8, 0x28, 0xe2, 0x7e, 0x27, 0xb9, 0x09,
0x5d, 0x78, 0x7d, 0x0a, 0xa6, 0x33, 0x75, 0x1d, 0xe9, 0x20, 0xf8, 0xdb, 0x16, 0x4c, 0xf3, 0x26,
0xaf, 0x06, 0xbb, 0x62, 0xb1, 0xbf, 0x07, 0x27, 0xfd, 0x9c, 0x45, 0x27, 0x46, 0x74, 0xf0, 0x45,
0xaa, 0x0e, 0x7e, 0x79, 0x58, 0x9c, 0x5b, 0x07, 0x3d, 0xfc, 0xf3, 0x77, 0x91, 0x1d, 0x5f, 0x78,
0x20, 0x4f, 0xf0, 0xcc, 0xd0, 0x1c, 0x86, 0x15, 0xd6, 0xfe, 0x9e, 0x05, 0xb3, 0x5d, 0xaf, 0xea,
0x7f, 0xa0, 0x6d, 0x17, 0x89, 0xaf, 0x4b, 0x05, 0x89, 0xaf, 0xf5, 0x4f, 0x2b, 0xf7, 0xfc, 0xb4,
0x5f, 0xb3, 0x40, 0xcc, 0xc0, 0x63, 0x50, 0xe7, 0x3f, 0x6d, 0xaa, 0xf3, 0x73, 0xc5, 0x93, 0xba,
0x40, 0x8f, 0xff, 0x0b, 0x0b, 0x66, 0x38, 0x41, 0x7a, 0x79, 0xf1, 0x81, 0x8e, 0xc3, 0x20, 0xaf,
0xb1, 0xa8, 0xe7, 0x2f, 0xf3, 0x3f, 0xca, 0x18, 0xac, 0xa1, 0x9e, 0x83, 0xe5, 0xca, 0x05, 0x74,
0x84, 0x57, 0x86, 0x8e, 0x9c, 0xab, 0xcd, 0xfe, 0x53, 0x0b, 0x10, 0xaf, 0x26, 0xfb, 0x20, 0x35,
0xdf, 0xfa, 0xb4, 0x03, 0x7d, 0x2a, 0x6a, 0x14, 0x06, 0x6b, 0x54, 0x77, 0xa5, 0x7b, 0x32, 0x37,
0x50, 0xe5, 0xfe, 0x37, 0x50, 0x47, 0xe8, 0xd1, 0xbf, 0x31, 0x04, 0x59, 0x77, 0x47, 0x74, 0x03,
0x26, 0x5a, 0x4e, 0xdb, 0xb9, 0xe9, 0xf9, 0x5e, 0xe2, 0x91, 0xb8, 0xd7, 0xd5, 0xf5, 0x8a, 0x46,
0x27, 0xae, 0x7b, 0x34, 0x08, 0x36, 0xf8, 0xa0, 0x05, 0x80, 0x76, 0xe4, 0xed, 0x7a, 0x3e, 0xd9,
0x64, 0x27, 0x1a, 0x16, 0xf3, 0xc0, 0xef, 0x63, 0x25, 0x14, 0x6b, 0x14, 0x39, 0x3e, 0xf2, 0xe5,
0x7b, 0xe7, 0x23, 0x3f, 0x74, 0x44, 0x1f, 0xf9, 0xe1, 0x81, 0x7c, 0xe4, 0x31, 0xdc, 0x27, 0xf7,
0x6e, 0xfa, 0x7f, 0xcd, 0xf3, 0x89, 0x50, 0xd8, 0x78, 0x24, 0xc4, 0xdc, 0xc1, 0xfe, 0xfc, 0x7d,
0x38, 0x97, 0x02, 0x17, 0x94, 0x44, 0x3f, 0x09, 0x55, 0xc7, 0xf7, 0xc3, 0x5b, 0xaa, 0xd7, 0x56,
0xe3, 0x96, 0xe3, 0xa7, 0xa9, 0x4b, 0xc7, 0x96, 0x1f, 0x3c, 0xd8, 0x9f, 0xaf, 0x2e, 0x15, 0xd0,
0xe0, 0xc2, 0xd2, 0xf6, 0x36, 0x9c, 0x68, 0x92, 0x48, 0x3e, 0x5c, 0xa6, 0x96, 0xd8, 0x3a, 0x54,
0xa2, 0x8c, 0x50, 0x19, 0x28, 0x5c, 0x5e, 0x4b, 0x18, 0x26, 0x85, 0x48, 0xca, 0xc8, 0xfe, 0x73,
0x0b, 0x46, 0x85, 0x0b, 0xe5, 0x31, 0xe8, 0x32, 0x4b, 0x86, 0x59, 0x69, 0x3e, 0x5f, 0xf0, 0xb2,
0xc6, 0x14, 0x1a, 0x94, 0xea, 0x19, 0x83, 0xd2, 0xc3, 0xbd, 0x98, 0xf4, 0x36, 0x25, 0xfd, 0x62,
0x19, 0xa6, 0x4c, 0xf7, 0xd1, 0x63, 0xe8, 0x82, 0xab, 0x30, 0x1a, 0x0b, 0x5f, 0xe5, 0x52, 0xb1,
0xcf, 0x5b, 0x76, 0x10, 0xd3, 0x9b, 0x71, 0xe1, 0x9d, 0x2c, 0x99, 0xe4, 0x3a, 0x41, 0x97, 0xef,
0xa1, 0x13, 0x74, 0x3f, 0x0f, 0xde, 0xa1, 0xbb, 0xe1, 0xc1, 0x6b, 0x7f, 0x93, 0x09, 0x7f, 0x1d,
0x7e, 0x0c, 0x7a, 0xc1, 0x05, 0x73, 0x9b, 0xb0, 0x7b, 0xcc, 0x2c, 0xd1, 0xa8, 0x02, 0xfd, 0xe0,
0x9f, 0x58, 0x30, 0x2e, 0x08, 0x8f, 0xa1, 0xd9, 0x9f, 0x31, 0x9b, 0xfd, 0x40, 0x8f, 0x66, 0x17,
0xb4, 0xf7, 0xef, 0x96, 0x54, 0x7b, 0x1b, 0x61, 0x94, 0x0c, 0x94, 0xca, 0x7a, 0x8c, 0x9e, 0x06,
0xc3, 0x56, 0xe8, 0x8b, 0xcd, 0xfc, 0xc1, 0x34, 0x18, 0x8e, 0xc3, 0x0f, 0xb5, 0xdf, 0x58, 0x51,
0xb3, 0x58, 0xad, 0x30, 0x4a, 0xc4, 0x06, 0x9a, 0xc6, 0x6a, 0x85, 0x51, 0x82, 0x19, 0x06, 0xb9,
0x00, 0xe9, 0x8b, 0xee, 0x22, 0x7a, 0xb4, 0x78, 0x15, 0x76, 0x12, 0xcf, 0x5f, 0xf0, 0x82, 0x24,
0x4e, 0xa2, 0x85, 0x7a, 0x90, 0x5c, 0x8b, 0xf8, 0xd9, 0x40, 0x8b, 0x6e, 0x53, 0xbc, 0xb0, 0xc6,
0x57, 0x86, 0x57, 0xb0, 0x3a, 0x86, 0xcd, 0xfb, 0x9e, 0xab, 0x02, 0x8e, 0x15, 0x85, 0xfd, 0x02,
0x93, 0xc9, 0xac, 0x83, 0x8e, 0x16, 0x78, 0xf6, 0x9d, 0x31, 0xd5, 0xb5, 0xcc, 0xd8, 0x5b, 0xd3,
0xc3, 0xdb, 0x7a, 0x8b, 0x40, 0x5a, 0xb1, 0xee, 0x4a, 0x9c, 0xc6, 0xc0, 0xa1, 0xcf, 0x76, 0x5d,
0x03, 0x3e, 0xdd, 0x47, 0x96, 0x1e, 0xe1, 0xe2, 0x8f, 0x65, 0xe6, 0x63, 0x19, 0xcc, 0xea, 0x8d,
0x6c, 0xb2, 0xf1, 0x15, 0x89, 0xc0, 0x29, 0x0d, 0x5a, 0x14, 0x27, 0x4b, 0x6e, 0x66, 0x79, 0x20,
0x73, 0xb2, 0x94, 0x9f, 0xaf, 0x1d, 0x2d, 0x9f, 0x81, 0x71, 0xf5, 0x80, 0x4b, 0x83, 0xbf, 0x83,
0x51, 0xe1, 0xba, 0xd4, 0x6a, 0x0a, 0xc6, 0x3a, 0x0d, 0x5a, 0x87, 0xe9, 0x98, 0xbf, 0x2e, 0x23,
0x23, 0x1e, 0x84, 0xdd, 0xe0, 0x89, 0xcc, 0xdb, 0xf1, 0x12, 0x7d, 0xc8, 0x40, 0x7c, 0xb1, 0xca,
0x18, 0x89, 0x2c, 0x0b, 0xf4, 0x0a, 0x4c, 0xf9, 0xfa, 0x2b, 0x9b, 0x0d, 0x61, 0x56, 0x50, 0xae,
0x5c, 0xc6, 0x1b, 0x9c, 0x0d, 0x9c, 0xa1, 0xa6, 0x4a, 0x80, 0x0e, 0x11, 0x09, 0x74, 0x9c, 0x60,
0x93, 0xc4, 0xe2, 0xf9, 0x09, 0xa6, 0x04, 0x5c, 0x2e, 0xa0, 0xc1, 0x85, 0xa5, 0xd1, 0x8b, 0x30,
0x21, 0x3f, 0x5f, 0x8b, 0x00, 0x4a, 0x1d, 0x06, 0x35, 0x1c, 0x36, 0x28, 0xd1, 0x2d, 0x38, 0x25,
0xff, 0xaf, 0x47, 0xce, 0xc6, 0x86, 0xd7, 0x12, 0x01, 0x58, 0xe3, 0x8c, 0xc5, 0x92, 0xf4, 0x9e,
0x5e, 0xcd, 0x23, 0x3a, 0xdc, 0x9f, 0x3f, 0x2b, 0x7a, 0x2d, 0x17, 0xcf, 0x06, 0x31, 0x9f, 0x3f,
0xba, 0x02, 0x27, 0xb6, 0x88, 0xe3, 0x27, 0x5b, 0x2b, 0x5b, 0xa4, 0xb5, 0x2d, 0x17, 0x11, 0x8b,
0x2b, 0xd2, 0xdc, 0xec, 0x2e, 0x76, 0x93, 0xe0, 0xbc, 0x72, 0xe8, 0x2d, 0xa8, 0xb6, 0x3b, 0x37,
0x7d, 0x2f, 0xde, 0xba, 0x1a, 0x26, 0xec, 0xc6, 0x52, 0xbd, 0x7f, 0x22, 0x02, 0x90, 0x54, 0x4c,
0x55, 0xa3, 0x80, 0x0e, 0x17, 0x72, 0x40, 0xef, 0xc1, 0xa9, 0xcc, 0x64, 0xe0, 0x4f, 0xea, 0x88,
0x40, 0xa5, 0xc7, 0xf3, 0x97, 0x53, 0x4e, 0x01, 0x1e, 0x16, 0x97, 0x8b, 0xc2, 0xf9, 0x55, 0xbc,
0xbf, 0x7b, 0xec, 0x77, 0x69, 0x61, 0x4d, 0xbb, 0x41, 0x9f, 0x83, 0x09, 0x7d, 0x16, 0x89, 0x0d,
0xe6, 0xd1, 0x7e, 0x2f, 0xca, 0x0a, 0xdd, 0x48, 0xcd, 0x28, 0x1d, 0x87, 0x0d, 0x8e, 0x36, 0x81,
0xfc, 0xef, 0x43, 0x97, 0x61, 0xac, 0xe5, 0x7b, 0x24, 0x48, 0xea, 0x8d, 0x5e, 0x81, 0xb3, 0x2b,
0x82, 0x46, 0x74, 0x98, 0xc8, 0xdf, 0xc4, 0x61, 0x58, 0x71, 0xb0, 0x7f, 0xbf, 0x04, 0xf3, 0x7d,
0x52, 0x78, 0x65, 0x6c, 0x80, 0xd6, 0x40, 0x36, 0xc0, 0x25, 0xf9, 0x9a, 0xcb, 0xd5, 0xcc, 0xf9,
0x33, 0xf3, 0x52, 0x4b, 0x7a, 0x0a, 0xcd, 0xd2, 0x0f, 0xec, 0xfe, 0xa6, 0x9b, 0x11, 0x87, 0xfa,
0x7a, 0x01, 0x36, 0x74, 0x7b, 0xf0, 0xf0, 0xe0, 0x1a, 0x7d, 0xa1, 0x29, 0xd8, 0xfe, 0x66, 0x09,
0x4e, 0xa9, 0x2e, 0xfc, 0xf1, 0xed, 0xb8, 0xeb, 0xdd, 0x1d, 0x77, 0x17, 0x0c, 0xe9, 0xf6, 0x35,
0x18, 0x69, 0xee, 0xc5, 0xad, 0xc4, 0x1f, 0x40, 0x01, 0x7a, 0xc4, 0x58, 0xa0, 0xe9, 0x36, 0xcd,
0x1e, 0x64, 0x13, 0xeb, 0xd5, 0xfe, 0xab, 0x16, 0x4c, 0xaf, 0xaf, 0x34, 0x9a, 0x61, 0x6b, 0x9b,
0x24, 0x4b, 0xdc, 0x4c, 0x84, 0x85, 0xfe, 0x63, 0xdd, 0xa1, 0x5e, 0x93, 0xa7, 0x31, 0x9d, 0x85,
0xa1, 0xad, 0x30, 0x4e, 0xb2, 0x97, 0x25, 0x17, 0xc3, 0x38, 0xc1, 0x0c, 0x63, 0xff, 0xb1, 0x05,
0xc3, 0xec, 0x0d, 0xb2, 0x7e, 0x6f, 0xd5, 0x0d, 0xf2, 0x5d, 0xe8, 0x79, 0x18, 0x21, 0x1b, 0x1b,
0xa4, 0x95, 0x88, 0x51, 0x95, 0x11, 0x39, 0x23, 0xab, 0x0c, 0x4a, 0x37, 0x7d, 0x56, 0x19, 0xff,
0x8b, 0x05, 0x31, 0xfa, 0x2c, 0x54, 0x12, 0x6f, 0x87, 0x2c, 0xb9, 0xae, 0xb8, 0xa7, 0x38, 0x9a,
0x4b, 0x9a, 0x52, 0x42, 0xd6, 0x25, 0x13, 0x9c, 0xf2, 0xb3, 0x7f, 0xbe, 0x04, 0x90, 0x46, 0xee,
0xf5, 0xfb, 0xcc, 0xe5, 0xae, 0x27, 0xf9, 0x1e, 0xcd, 0x79, 0x92, 0x0f, 0xa5, 0x0c, 0x73, 0x1e,
0xe4, 0x53, 0x5d, 0x55, 0x1e, 0xa8, 0xab, 0x86, 0x8e, 0xd2, 0x55, 0x2b, 0x30, 0x9b, 0x46, 0x1e,
0x9a, 0x61, 0xd8, 0x2c, 0x5d, 0xef, 0x7a, 0x16, 0x89, 0xbb, 0xe9, 0xed, 0x2f, 0x59, 0x20, 0xdc,
0x94, 0x07, 0x98, 0xd0, 0x6f, 0xca, 0xd7, 0xb3, 0x8c, 0xbc, 0x82, 0x67, 0x8b, 0xfd, 0xb6, 0x45,
0x36, 0x41, 0xb5, 0x81, 0x18, 0x39, 0x04, 0x0d, 0x5e, 0xf6, 0xef, 0x5a, 0x30, 0xce, 0xd1, 0x2c,
0x67, 0xdd, 0x00, 0xad, 0x39, 0x52, 0xb2, 0x67, 0xf6, 0xb0, 0x14, 0x65, 0xac, 0x72, 0x02, 0xeb,
0x0f, 0x4b, 0x49, 0x04, 0x4e, 0x69, 0xd0, 0xe3, 0x30, 0x1a, 0x77, 0x6e, 0x32, 0xf2, 0x8c, 0xa7,
0x72, 0x93, 0x83, 0xb1, 0xc4, 0xd3, 0x79, 0x35, 0x93, 0x75, 0x54, 0x47, 0x17, 0x61, 0x84, 0x8b,
0x0d, 0xb1, 0x8c, 0x7b, 0xdc, 0xca, 0x68, 0xee, 0xed, 0xc0, 0x5f, 0x42, 0x67, 0xe2, 0x46, 0x94,
0x47, 0x6f, 0xc1, 0xb8, 0x1b, 0xde, 0x0a, 0x6e, 0x39, 0x91, 0xbb, 0xd4, 0xa8, 0x8b, 0x5e, 0xcf,
0xd5, 0x3e, 0x6a, 0x29, 0x99, 0xee, 0x32, 0xcf, 0x2c, 0x90, 0x29, 0x0a, 0xeb, 0xec, 0xd0, 0x3a,
0x4b, 0x86, 0xc2, 0xdf, 0x67, 0xed, 0xe5, 0x80, 0xa3, 0x9e, 0x74, 0xd5, 0x38, 0x4f, 0x8a, 0x8c,
0x29, 0xe2, 0x75, 0xd7, 0x94, 0x91, 0xfd, 0x85, 0x13, 0x60, 0x8c, 0xb6, 0x91, 0x92, 0xd9, 0xba,
0x4b, 0x29, 0x99, 0x31, 0x8c, 0x91, 0x9d, 0x76, 0xb2, 0x57, 0xf3, 0xa2, 0x5e, 0x39, 0xf2, 0x57,
0x05, 0x4d, 0x37, 0x4f, 0x89, 0xc1, 0x8a, 0x4f, 0x7e, 0xde, 0xec, 0xf2, 0x07, 0x98, 0x37, 0x7b,
0xe8, 0x18, 0xf3, 0x66, 0x5f, 0x85, 0xd1, 0x4d, 0x2f, 0xc1, 0xa4, 0x1d, 0x8a, 0x2d, 0x33, 0x77,
0x26, 0x5c, 0xe0, 0x24, 0xdd, 0xd9, 0x5d, 0x05, 0x02, 0x4b, 0x26, 0xe8, 0x55, 0xb5, 0x06, 0x46,
0x8a, 0x35, 0xce, 0x6e, 0x03, 0x7e, 0xee, 0x2a, 0x10, 0x79, 0xb2, 0x47, 0xef, 0x34, 0x4f, 0xb6,
0xca, 0x73, 0x3d, 0xf6, 0xfe, 0xf2, 0x5c, 0x1b, 0x79, 0xc0, 0x2b, 0x77, 0x2f, 0x0f, 0xf8, 0x97,
0x2c, 0x38, 0xd5, 0xce, 0x4b, 0x89, 0x2f, 0x32, 0x56, 0x3f, 0x3f, 0xf0, 0xd3, 0x00, 0x46, 0x85,
0xec, 0xe8, 0x91, 0x4b, 0x86, 0xf3, 0xab, 0x93, 0x09, 0xc5, 0xc7, 0xef, 0x34, 0xa1, 0xf8, 0xbd,
0x49, 0x6d, 0x9d, 0xa6, 0x17, 0x9f, 0x7c, 0xdf, 0xe9, 0xc5, 0x5f, 0x55, 0xe9, 0xc5, 0x7b, 0xa4,
0x9c, 0xe0, 0xc9, 0xc3, 0xfb, 0x26, 0x15, 0xd7, 0x12, 0x83, 0x4f, 0xdf, 0x8d, 0xc4, 0xe0, 0x6f,
0x9b, 0xc2, 0x9e, 0x67, 0xa9, 0x7e, 0xb2, 0x8f, 0xb0, 0x37, 0xf8, 0xf6, 0x16, 0xf7, 0x3c, 0x09,
0xfa, 0xec, 0x1d, 0x25, 0x41, 0xbf, 0xa1, 0xa7, 0x17, 0x47, 0x7d, 0xf2, 0x67, 0x53, 0xa2, 0x01,
0x93, 0x8a, 0xdf, 0xd0, 0xb7, 0xa0, 0x13, 0xc5, 0x7c, 0xd5, 0x4e, 0xd3, 0xcd, 0x37, 0x6f, 0x13,
0xea, 0x4e, 0x56, 0x7e, 0xf2, 0x78, 0x92, 0x95, 0x9f, 0xba, 0xeb, 0xc9, 0xca, 0xef, 0x3b, 0x86,
0x64, 0xe5, 0xf7, 0x7f, 0xa0, 0xc9, 0xca, 0xab, 0xf7, 0x36, 0x59, 0xf9, 0xe9, 0xbb, 0x91, 0xac,
0xfc, 0x06, 0x54, 0xda, 0x32, 0x96, 0xb1, 0x3a, 0x57, 0x3c, 0x24, 0xb9, 0x01, 0x8f, 0x7c, 0x48,
0x14, 0x0a, 0xa7, 0xac, 0x28, 0xdf, 0x34, 0x79, 0xf9, 0x03, 0x3d, 0x8c, 0x4b, 0x79, 0xc7, 0xf6,
0x1e, 0x29, 0xcb, 0xff, 0x5a, 0x09, 0xce, 0xf4, 0x9e, 0xd7, 0xe9, 0x99, 0xbf, 0x91, 0xda, 0xa8,
0x33, 0x67, 0x7e, 0xa6, 0x74, 0x69, 0x54, 0x03, 0x07, 0x7c, 0x5f, 0x80, 0x59, 0xe5, 0xd2, 0xe5,
0x7b, 0xad, 0x3d, 0xed, 0xbd, 0x21, 0x15, 0x25, 0xd0, 0xcc, 0x12, 0xe0, 0xee, 0x32, 0x68, 0x09,
0xa6, 0x0d, 0x60, 0xbd, 0x26, 0x54, 0x72, 0x65, 0x64, 0x68, 0x9a, 0x68, 0x9c, 0xa5, 0xb7, 0xbf,
0x66, 0xc1, 0xfd, 0x05, 0x19, 0x4c, 0x07, 0x8e, 0x67, 0xde, 0x80, 0xe9, 0xb6, 0x59, 0xb4, 0x4f,
0xda, 0x03, 0x23, 0x4f, 0xaa, 0x6a, 0x6b, 0x06, 0x81, 0xb3, 0x4c, 0x97, 0xcf, 0x7d, 0xeb, 0xfb,
0x67, 0x3e, 0xf2, 0x87, 0xdf, 0x3f, 0xf3, 0x91, 0xef, 0x7d, 0xff, 0xcc, 0x47, 0xfe, 0xd2, 0xc1,
0x19, 0xeb, 0x5b, 0x07, 0x67, 0xac, 0x3f, 0x3c, 0x38, 0x63, 0x7d, 0xef, 0xe0, 0x8c, 0xf5, 0x27,
0x07, 0x67, 0xac, 0x9f, 0xff, 0xc1, 0x99, 0x8f, 0xbc, 0x59, 0xda, 0x7d, 0xe6, 0xff, 0x05, 0x00,
0x00, 0xff, 0xff, 0xa5, 0x3e, 0x76, 0x4b, 0x79, 0xce, 0x00, 0x00,
}

View File

@ -2351,6 +2351,12 @@ message PersistentVolumeSpec {
// means that this volume does not belong to any StorageClass.
// +optional
optional string storageClassName = 6;
// A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
// simply fail if one is invalid.
// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
// +optional
repeated string mountOptions = 7;
}
// PersistentVolumeStatus is the current status of a persistent volume.

View File

@ -7081,7 +7081,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) {
} else {
yysep2 := !z.EncBinary()
yy2arr2 := z.EncBasicHandle().StructToArray
var yyq2 [26]bool
var yyq2 [27]bool
_, _, _ = yysep2, yyq2, yy2arr2
const yyr2 bool = false
yyq2[0] = len(x.Capacity) != 0
@ -7110,9 +7110,10 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) {
yyq2[23] = x.ClaimRef != nil
yyq2[24] = x.PersistentVolumeReclaimPolicy != ""
yyq2[25] = x.StorageClassName != ""
yyq2[26] = len(x.MountOptions) != 0
var yynn2 int
if yyr2 || yy2arr2 {
r.EncodeArrayStart(26)
r.EncodeArrayStart(27)
} else {
yynn2 = 0
for _, b := range yyq2 {
@ -8019,6 +8020,39 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) {
}
}
}
if yyr2 || yy2arr2 {
z.EncSendContainerState(codecSelfer_containerArrayElem1234)
if yyq2[26] {
if x.MountOptions == nil {
r.EncodeNil()
} else {
yym82 := z.EncBinary()
_ = yym82
if false {
} else {
z.F.EncSliceStringV(x.MountOptions, false, e)
}
}
} else {
r.EncodeNil()
}
} else {
if yyq2[26] {
z.EncSendContainerState(codecSelfer_containerMapKey1234)
r.EncodeString(codecSelferC_UTF81234, string("mountOptions"))
z.EncSendContainerState(codecSelfer_containerMapValue1234)
if x.MountOptions == nil {
r.EncodeNil()
} else {
yym83 := z.EncBinary()
_ = yym83
if false {
} else {
z.F.EncSliceStringV(x.MountOptions, false, e)
}
}
}
}
if yyr2 || yy2arr2 {
z.EncSendContainerState(codecSelfer_containerArrayEnd1234)
} else {
@ -8423,6 +8457,18 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode
*((*string)(yyv30)) = r.DecodeString()
}
}
case "mountOptions":
if r.TryDecodeAsNil() {
x.MountOptions = nil
} else {
yyv32 := &x.MountOptions
yym33 := z.DecBinary()
_ = yym33
if false {
} else {
z.F.DecSliceStringX(yyv32, false, d)
}
}
default:
z.DecStructFieldNotFound(-1, yys3)
} // end switch yys3
@ -8434,16 +8480,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
var h codecSelfer1234
z, r := codec1978.GenHelperDecoder(d)
_, _, _ = h, z, r
var yyj32 int
var yyb32 bool
var yyhl32 bool = l >= 0
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
var yyj34 int
var yyb34 bool
var yyhl34 bool = l >= 0
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8451,19 +8497,19 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if r.TryDecodeAsNil() {
x.Capacity = nil
} else {
yyv33 := &x.Capacity
yyv33.CodecDecodeSelf(d)
yyv35 := &x.Capacity
yyv35.CodecDecodeSelf(d)
}
if x.PersistentVolumeSource.GCEPersistentDisk == nil {
x.PersistentVolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8481,13 +8527,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.AWSElasticBlockStore == nil {
x.PersistentVolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8505,13 +8551,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.HostPath == nil {
x.PersistentVolumeSource.HostPath = new(HostPathVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8529,13 +8575,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.Glusterfs == nil {
x.PersistentVolumeSource.Glusterfs = new(GlusterfsVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8553,13 +8599,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.NFS == nil {
x.PersistentVolumeSource.NFS = new(NFSVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8577,13 +8623,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.RBD == nil {
x.PersistentVolumeSource.RBD = new(RBDVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8601,13 +8647,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.ISCSI == nil {
x.PersistentVolumeSource.ISCSI = new(ISCSIVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8625,13 +8671,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.Cinder == nil {
x.PersistentVolumeSource.Cinder = new(CinderVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8649,13 +8695,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.CephFS == nil {
x.PersistentVolumeSource.CephFS = new(CephFSPersistentVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8673,13 +8719,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.FC == nil {
x.PersistentVolumeSource.FC = new(FCVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8697,13 +8743,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.Flocker == nil {
x.PersistentVolumeSource.Flocker = new(FlockerVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8721,13 +8767,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.FlexVolume == nil {
x.PersistentVolumeSource.FlexVolume = new(FlexVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8745,13 +8791,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.AzureFile == nil {
x.PersistentVolumeSource.AzureFile = new(AzureFilePersistentVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8769,13 +8815,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.VsphereVolume == nil {
x.PersistentVolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8793,13 +8839,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.Quobyte == nil {
x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8817,13 +8863,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.AzureDisk == nil {
x.PersistentVolumeSource.AzureDisk = new(AzureDiskVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8841,13 +8887,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.PhotonPersistentDisk == nil {
x.PersistentVolumeSource.PhotonPersistentDisk = new(PhotonPersistentDiskVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8865,13 +8911,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.PortworxVolume == nil {
x.PersistentVolumeSource.PortworxVolume = new(PortworxVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8889,13 +8935,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.ScaleIO == nil {
x.PersistentVolumeSource.ScaleIO = new(ScaleIOVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8913,13 +8959,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.Local == nil {
x.PersistentVolumeSource.Local = new(LocalVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8937,13 +8983,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if x.PersistentVolumeSource.StorageOS == nil {
x.PersistentVolumeSource.StorageOS = new(StorageOSPersistentVolumeSource)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8958,13 +9004,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
}
x.StorageOS.CodecDecodeSelf(d)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -8972,21 +9018,21 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if r.TryDecodeAsNil() {
x.AccessModes = nil
} else {
yyv55 := &x.AccessModes
yym56 := z.DecBinary()
_ = yym56
yyv57 := &x.AccessModes
yym58 := z.DecBinary()
_ = yym58
if false {
} else {
h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv55), d)
h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv57), d)
}
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -9001,13 +9047,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
}
x.ClaimRef.CodecDecodeSelf(d)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -9015,16 +9061,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if r.TryDecodeAsNil() {
x.PersistentVolumeReclaimPolicy = ""
} else {
yyv58 := &x.PersistentVolumeReclaimPolicy
yyv58.CodecDecodeSelf(d)
yyv60 := &x.PersistentVolumeReclaimPolicy
yyv60.CodecDecodeSelf(d)
}
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
@ -9032,26 +9078,48 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco
if r.TryDecodeAsNil() {
x.StorageClassName = ""
} else {
yyv59 := &x.StorageClassName
yym60 := z.DecBinary()
_ = yym60
yyv61 := &x.StorageClassName
yym62 := z.DecBinary()
_ = yym62
if false {
} else {
*((*string)(yyv59)) = r.DecodeString()
*((*string)(yyv61)) = r.DecodeString()
}
}
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb34 = r.CheckBreak()
}
if yyb34 {
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
return
}
z.DecSendContainerState(codecSelfer_containerArrayElem1234)
if r.TryDecodeAsNil() {
x.MountOptions = nil
} else {
yyv63 := &x.MountOptions
yym64 := z.DecBinary()
_ = yym64
if false {
} else {
z.F.DecSliceStringX(yyv63, false, d)
}
}
for {
yyj32++
if yyhl32 {
yyb32 = yyj32 > l
yyj34++
if yyhl34 {
yyb34 = yyj34 > l
} else {
yyb32 = r.CheckBreak()
yyb34 = r.CheckBreak()
}
if yyb32 {
if yyb34 {
break
}
z.DecSendContainerState(codecSelfer_containerArrayElem1234)
z.DecStructFieldNotFound(yyj32-1, "")
z.DecStructFieldNotFound(yyj34-1, "")
}
z.DecSendContainerState(codecSelfer_containerArrayEnd1234)
}
@ -71857,7 +71925,7 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code
yyrg1 := len(yyv1) > 0
yyv21 := yyv1
yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 552)
yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 576)
if yyrt1 {
if yyrl1 <= cap(yyv1) {
yyv1 = yyv1[:yyrl1]

View File

@ -519,6 +519,11 @@ type PersistentVolumeSpec struct {
// means that this volume does not belong to any StorageClass.
// +optional
StorageClassName string `json:"storageClassName,omitempty" protobuf:"bytes,6,opt,name=storageClassName"`
// A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
// simply fail if one is invalid.
// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
// +optional
MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,7,opt,name=mountOptions"`
}
// PersistentVolumeReclaimPolicy describes a policy for end-of-life maintenance of persistent volumes.

View File

@ -1212,6 +1212,7 @@ var map_PersistentVolumeSpec = map[string]string{
"claimRef": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding",
"persistentVolumeReclaimPolicy": "What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming",
"storageClassName": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
"mountOptions": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
}
func (PersistentVolumeSpec) SwaggerDoc() map[string]string {

View File

@ -3870,6 +3870,11 @@ func (in *PersistentVolumeSpec) DeepCopyInto(out *PersistentVolumeSpec) {
**out = **in
}
}
if in.MountOptions != nil {
in, out := &in.MountOptions, &out.MountOptions
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}