From 3a1054e1be8e9f1afdb814084636518f45daa83c Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Thu, 27 Oct 2022 09:47:32 +0530 Subject: [PATCH 1/2] partial Revert "use go v1.18 and update dependencies" This reverts commit 150c9d9ed3cb0cb4b9ea90e0a95888e5894eb038 partially. It keep the go.mod module version to 1.18 but leave old versions of genproto. --- go.mod | 13 +++++------ go.sum | 70 ++++++++++++++++++++++++++++++++++++++++------------------ 2 files changed, 55 insertions(+), 28 deletions(-) diff --git a/go.mod b/go.mod index df655884..436c0587 100644 --- a/go.mod +++ b/go.mod @@ -3,14 +3,13 @@ module github.com/container-storage-interface/spec go 1.18 require ( - github.com/golang/protobuf v1.5.2 - google.golang.org/grpc v1.49.0 + github.com/golang/protobuf v1.3.2 + google.golang.org/grpc v1.26.0 ) require ( - golang.org/x/net v0.0.0-20220921203646-d300de134e69 // indirect - golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect - golang.org/x/text v0.3.7 // indirect - google.golang.org/genproto v0.0.0-20220921223823-23cae91e6737 // indirect - google.golang.org/protobuf v1.28.1 // indirect + golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect + golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a // indirect + golang.org/x/text v0.3.0 // indirect + google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect ) diff --git a/go.sum b/go.sum index 876cbb3f..fdc9375d 100644 --- a/go.sum +++ b/go.sum @@ -1,21 +1,49 @@ -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ= -golang.org/x/net v0.0.0-20220921203646-d300de134e69 h1:hUJpGDpnfwdJW8iNypFjmSY0sCBEL+spFTZ2eO+Sfps= -golang.org/x/net v0.0.0-20220921203646-d300de134e69/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 h1:h+EGohizhe9XlX18rfpa8k8RAc5XyaeamM+0VHRd4lc= -golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= -google.golang.org/genproto v0.0.0-20220921223823-23cae91e6737 h1:K1zaaMdYBXRyX+cwFnxj7M6zwDyumLQMZ5xqwGvjreQ= -google.golang.org/genproto v0.0.0-20220921223823-23cae91e6737/go.mod h1:2r/26NEF3bFmT3eC3aZreahSal0C3Shl8Gi6vyDYqOQ= -google.golang.org/grpc v1.49.0 h1:WTLtQzmQori5FUH25Pq4WT22oCsv8USpQ+F6rqtsmxw= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/google/go-cmp v0.2.0 h1:+dTQ8DZQJz0Mb/HjFlkptS1FeQ4cWSnN941F8aEG4SQ= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a h1:1BGLXjeY4akVXGgbC9HugT3Jv3hCI0z56oJR5vAMgBU= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 h1:gSJIx1SDwno+2ElGhA4+qG2zF97qiUzTM+rQ0klBOcE= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.26.0 h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= From 778978094f6babbc5c0f6c7332557e3fc9dd98a5 Mon Sep 17 00:00:00 2001 From: Xing Yang Date: Mon, 31 Oct 2022 13:57:53 -0400 Subject: [PATCH 2/2] Revert "Promote GetVolume and VolumeCondition to GA" --- csi.proto | 24 ++- lib/go/csi/csi.pb.go | 479 ++++++++++++++++++++++--------------------- spec.md | 24 ++- 3 files changed, 278 insertions(+), 249 deletions(-) diff --git a/csi.proto b/csi.proto index dd63ca68..53ae6df5 100644 --- a/csi.proto +++ b/csi.proto @@ -97,7 +97,9 @@ service Controller { returns (ControllerExpandVolumeResponse) {} rpc ControllerGetVolume (ControllerGetVolumeRequest) - returns (ControllerGetVolumeResponse) {} + returns (ControllerGetVolumeResponse) { + option (alpha_method) = true; + } } service Node { @@ -882,7 +884,7 @@ message ListVolumesResponse { // This field is OPTIONAL. // This field MUST be specified if the // VOLUME_CONDITION controller capability is supported. - VolumeCondition volume_condition = 2; + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message Entry { @@ -906,12 +908,16 @@ message ListVolumesResponse { string next_token = 2; } message ControllerGetVolumeRequest { + option (alpha_message) = true; + // The ID of the volume to fetch current volume information for. // This field is REQUIRED. string volume_id = 1; } message ControllerGetVolumeResponse { + option (alpha_message) = true; + message VolumeStatus{ // A list of all the `node_id` of nodes that this volume is // controller published on. @@ -1056,12 +1062,14 @@ message ControllerServiceCapability { // If for some reason Controller and Node Plugins report // misaligned volume conditions, CO SHALL assume the worst case // is the truth. - VOLUME_CONDITION = 11; + // Note that, for alpha, `VolumeCondition` is intended be + // informative for humans only, not for automation. + VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; // Indicates the SP supports the ControllerGetVolume RPC. // This enables COs to, for example, fetch per volume // condition after a volume is provisioned. - GET_VOLUME = 12; + GET_VOLUME = 12 [(alpha_enum_value) = true]; // Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or // SINGLE_NODE_MULTI_WRITER access modes. @@ -1432,7 +1440,7 @@ message NodeGetVolumeStatsResponse { // This field is OPTIONAL. // This field MUST be specified if the VOLUME_CONDITION node // capability is supported. - VolumeCondition volume_condition = 2; + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message VolumeUsage { @@ -1459,6 +1467,8 @@ message VolumeUsage { // VolumeCondition represents the current condition of a volume. message VolumeCondition { + option (alpha_message) = true; + // Normal volumes are available for use and operating optimally. // An abnormal volume does not meet these criteria. // This field is REQUIRED. @@ -1499,7 +1509,9 @@ message NodeServiceCapability { // If for some reason Node and Controller Plugins report // misaligned volume conditions, CO SHALL assume the worst case // is the truth. - VOLUME_CONDITION = 4; + // Note that, for alpha, `VolumeCondition` is intended to be + // informative for humans only, not for automation. + VOLUME_CONDITION = 4 [(alpha_enum_value) = true]; // Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or // SINGLE_NODE_MULTI_WRITER access modes. diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index a6da2b15..d889edb2 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -230,6 +230,8 @@ const ( // If for some reason Controller and Node Plugins report // misaligned volume conditions, CO SHALL assume the worst case // is the truth. + // Note that, for alpha, `VolumeCondition` is intended be + // informative for humans only, not for automation. ControllerServiceCapability_RPC_VOLUME_CONDITION ControllerServiceCapability_RPC_Type = 11 // Indicates the SP supports the ControllerGetVolume RPC. // This enables COs to, for example, fetch per volume @@ -336,6 +338,8 @@ const ( // If for some reason Node and Controller Plugins report // misaligned volume conditions, CO SHALL assume the worst case // is the truth. + // Note that, for alpha, `VolumeCondition` is intended to be + // informative for humans only, not for automation. NodeServiceCapability_RPC_VOLUME_CONDITION NodeServiceCapability_RPC_Type = 4 // Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or // SINGLE_NODE_MULTI_WRITER access modes. @@ -5056,244 +5060,245 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3781 bytes of a gzipped FileDescriptorProto + // 3796 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x23, 0x47, - 0x76, 0x6a, 0xfe, 0x24, 0x3d, 0x4a, 0x1a, 0xaa, 0xf4, 0x19, 0x4e, 0x4b, 0x1a, 0x69, 0x7a, 0x3c, - 0x5e, 0x79, 0x3c, 0xc3, 0x59, 0x6b, 0x6d, 0x23, 0x96, 0xc7, 0x59, 0x93, 0x14, 0x47, 0xe2, 0x8e, - 0x44, 0xca, 0x4d, 0x6a, 0xbc, 0x33, 0x89, 0xd1, 0xd3, 0x22, 0x4b, 0x9c, 0x86, 0xc9, 0x6e, 0xba, - 0xbb, 0xa9, 0x48, 0x7b, 0x49, 0x90, 0x9c, 0x82, 0x3d, 0x04, 0xc8, 0x25, 0xbe, 0xc5, 0x48, 0x02, - 0xe4, 0x92, 0xc5, 0x1e, 0x82, 0x20, 0xc7, 0x00, 0x41, 0x72, 0xd9, 0x43, 0x90, 0x5b, 0x82, 0x5c, - 0xf6, 0x10, 0x20, 0x01, 0x36, 0x08, 0xe0, 0x43, 0x4e, 0x39, 0x05, 0x5d, 0x55, 0xdd, 0xec, 0x3f, - 0xc9, 0x91, 0x06, 0x0e, 0xb0, 0x27, 0xb1, 0x5f, 0xbd, 0xf7, 0xea, 0x55, 0xd5, 0x7b, 0xaf, 0xde, - 0xa7, 0x04, 0x1f, 0x74, 0x14, 0xf3, 0xd5, 0xe0, 0xb4, 0xd0, 0xd2, 0x7a, 0x8f, 0x5a, 0x9a, 0x6a, - 0xca, 0x8a, 0x8a, 0xf5, 0x87, 0x86, 0xa9, 0xe9, 0x72, 0x07, 0x3f, 0x54, 0x54, 0x13, 0xeb, 0x67, - 0x72, 0x0b, 0x3f, 0x32, 0xfa, 0xb8, 0xf5, 0xa8, 0x65, 0x28, 0x85, 0xbe, 0xae, 0x99, 0x1a, 0xca, - 0x58, 0x3f, 0xcf, 0xdf, 0xe3, 0xb7, 0x3a, 0x9a, 0xd6, 0xe9, 0xe2, 0x47, 0x04, 0x7a, 0x3a, 0x38, - 0x7b, 0xd4, 0xc6, 0x46, 0x4b, 0x57, 0xfa, 0xa6, 0xa6, 0x53, 0x4c, 0x7e, 0xd3, 0x8f, 0x61, 0x2a, - 0x3d, 0x6c, 0x98, 0x72, 0xaf, 0xcf, 0x10, 0x6e, 0xfb, 0x11, 0x7e, 0x47, 0x97, 0xfb, 0x7d, 0xac, - 0x1b, 0x74, 0x5c, 0x58, 0x85, 0xe5, 0x7d, 0x6c, 0x1e, 0x77, 0x07, 0x1d, 0x45, 0xad, 0xaa, 0x67, - 0x9a, 0x88, 0xbf, 0x1a, 0x60, 0xc3, 0x14, 0xfe, 0x95, 0x83, 0x15, 0xdf, 0x80, 0xd1, 0xd7, 0x54, - 0x03, 0x23, 0x04, 0x29, 0x55, 0xee, 0xe1, 0x3c, 0xb7, 0xc5, 0x6d, 0xcf, 0x8a, 0xe4, 0x37, 0xba, - 0x07, 0x0b, 0xe7, 0x58, 0x6d, 0x6b, 0xba, 0x74, 0x8e, 0x75, 0x43, 0xd1, 0xd4, 0x7c, 0x82, 0x8c, - 0xce, 0x53, 0xe8, 0x33, 0x0a, 0x44, 0xfb, 0x30, 0xd3, 0x93, 0x55, 0xe5, 0x0c, 0x1b, 0x66, 0x3e, - 0xb9, 0x95, 0xdc, 0xce, 0xee, 0xbc, 0x5b, 0xa0, 0x4b, 0x2d, 0x84, 0xce, 0x55, 0x38, 0x62, 0xd8, - 0x15, 0xd5, 0xd4, 0x2f, 0x45, 0x87, 0x98, 0xff, 0x18, 0xe6, 0x3d, 0x43, 0x28, 0x07, 0xc9, 0x2f, - 0xf1, 0x25, 0x93, 0xc9, 0xfa, 0x89, 0x96, 0x21, 0x7d, 0x2e, 0x77, 0x07, 0x98, 0x49, 0x42, 0x3f, - 0x76, 0x13, 0xbf, 0xc1, 0x09, 0xb7, 0x61, 0xdd, 0x99, 0xad, 0x2c, 0xf7, 0xe5, 0x53, 0xa5, 0xab, - 0x98, 0x0a, 0x36, 0xec, 0xa5, 0x7f, 0x01, 0x1b, 0x11, 0xe3, 0x6c, 0x07, 0x1e, 0xc3, 0x5c, 0xcb, - 0x05, 0xcf, 0x73, 0x64, 0x29, 0x79, 0x7b, 0x29, 0x3e, 0xca, 0x4b, 0xd1, 0x83, 0x2d, 0xfc, 0x53, - 0x12, 0x72, 0x7e, 0x14, 0xf4, 0x18, 0xa6, 0x0d, 0xac, 0x9f, 0x2b, 0x2d, 0xba, 0xaf, 0xd9, 0x9d, - 0xad, 0x28, 0x6e, 0x85, 0x06, 0xc5, 0x3b, 0x98, 0x12, 0x6d, 0x12, 0x74, 0x02, 0xb9, 0x73, 0xad, - 0x3b, 0xe8, 0x61, 0x09, 0x5f, 0xf4, 0x65, 0xd5, 0x39, 0x80, 0xec, 0xce, 0x76, 0x24, 0x9b, 0x67, - 0x84, 0xa0, 0x62, 0xe3, 0x1f, 0x4c, 0x89, 0x37, 0xce, 0xbd, 0x20, 0xfe, 0x4f, 0x38, 0x98, 0x66, - 0xb3, 0xa1, 0x8f, 0x20, 0x65, 0x5e, 0xf6, 0xa9, 0x74, 0x0b, 0x3b, 0xf7, 0x46, 0x49, 0x57, 0x68, - 0x5e, 0xf6, 0xb1, 0x48, 0x48, 0x84, 0xcf, 0x20, 0x65, 0x7d, 0xa1, 0x2c, 0x4c, 0x9f, 0xd4, 0x9e, - 0xd6, 0xea, 0x9f, 0xd7, 0x72, 0x53, 0x68, 0x15, 0x50, 0xb9, 0x5e, 0x6b, 0x8a, 0xf5, 0xc3, 0xc3, - 0x8a, 0x28, 0x35, 0x2a, 0xe2, 0xb3, 0x6a, 0xb9, 0x92, 0xe3, 0xd0, 0x5b, 0xb0, 0xf5, 0xac, 0x7e, - 0x78, 0x72, 0x54, 0x91, 0x8a, 0xe5, 0x72, 0xa5, 0xd1, 0xa8, 0x96, 0xaa, 0x87, 0xd5, 0xe6, 0x73, - 0xa9, 0x5c, 0xaf, 0x35, 0x9a, 0x62, 0xb1, 0x5a, 0x6b, 0x36, 0x72, 0x09, 0xfe, 0xf7, 0x39, 0xb8, - 0xe1, 0x5b, 0x00, 0x2a, 0x7a, 0x24, 0x7c, 0x38, 0xee, 0xc2, 0xdd, 0x92, 0x3e, 0x08, 0x93, 0x14, - 0x20, 0x53, 0xaf, 0x1d, 0x56, 0x6b, 0x96, 0x74, 0x59, 0x98, 0xae, 0x3f, 0x79, 0x42, 0x3e, 0x12, - 0xa5, 0x0c, 0x9d, 0x50, 0x58, 0x80, 0xb9, 0x63, 0x5d, 0x3b, 0xc5, 0xb6, 0xfe, 0x14, 0x61, 0x9e, - 0x7d, 0x33, 0x7d, 0xf9, 0x3e, 0xa4, 0x75, 0x2c, 0xb7, 0x2f, 0xd9, 0xd1, 0xf2, 0x05, 0x6a, 0x93, - 0x05, 0xdb, 0x26, 0x0b, 0x25, 0x4d, 0xeb, 0x3e, 0xb3, 0xf4, 0x53, 0xa4, 0x88, 0xc2, 0xb7, 0x29, - 0x58, 0x2a, 0xeb, 0x58, 0x36, 0x31, 0x95, 0x96, 0xb1, 0x0e, 0xb5, 0xbd, 0xc7, 0xb0, 0x60, 0xe9, - 0x57, 0x4b, 0x31, 0x2f, 0x25, 0x5d, 0x56, 0x3b, 0x98, 0x1d, 0xfd, 0x8a, 0xbd, 0x03, 0x65, 0x36, - 0x2a, 0x5a, 0x83, 0xe2, 0x7c, 0xcb, 0xfd, 0x89, 0xaa, 0xb0, 0xc4, 0x54, 0xc7, 0xa3, 0xd2, 0x49, - 0xaf, 0x4a, 0x53, 0x29, 0x5c, 0x2a, 0x8d, 0xce, 0xbd, 0x10, 0x05, 0x1b, 0xe8, 0x29, 0x40, 0x5f, - 0xd6, 0xe5, 0x1e, 0x36, 0xb1, 0x6e, 0xe4, 0x53, 0x5e, 0xfb, 0x0e, 0x59, 0x4d, 0xe1, 0xd8, 0xc1, - 0xa6, 0xf6, 0xed, 0x22, 0x47, 0xfb, 0x96, 0x41, 0xb4, 0x74, 0x6c, 0x1a, 0xf9, 0x34, 0xe1, 0xb4, - 0x1d, 0xc7, 0xa9, 0x41, 0x51, 0x09, 0x9b, 0x52, 0xf2, 0xeb, 0x12, 0x27, 0xda, 0xd4, 0xa8, 0x0e, - 0x2b, 0xf6, 0x02, 0x35, 0xd5, 0xc4, 0xaa, 0x29, 0x19, 0xda, 0x40, 0x6f, 0xe1, 0x7c, 0x86, 0xec, - 0xd2, 0x9a, 0x6f, 0x89, 0x14, 0xa7, 0x41, 0x50, 0x44, 0xb6, 0x35, 0x1e, 0x20, 0x7a, 0x01, 0xbc, - 0xdc, 0x6a, 0x61, 0xc3, 0x50, 0xe8, 0x5e, 0x48, 0x3a, 0xfe, 0x6a, 0xa0, 0xe8, 0xb8, 0x87, 0x55, - 0xd3, 0xc8, 0x4f, 0x7b, 0xb9, 0x36, 0xb5, 0xbe, 0xd6, 0xd5, 0x3a, 0x97, 0xe2, 0x10, 0x47, 0xbc, - 0xe5, 0x21, 0x77, 0x8d, 0x18, 0xfc, 0x27, 0x70, 0xc3, 0xb7, 0x29, 0x93, 0x78, 0x36, 0x7e, 0x17, - 0xe6, 0xdc, 0x3b, 0x31, 0x91, 0x57, 0xfc, 0x69, 0x02, 0x96, 0x42, 0xf6, 0x00, 0x1d, 0xc0, 0x8c, - 0xa1, 0xca, 0x7d, 0xe3, 0x95, 0x66, 0x32, 0xfd, 0xbd, 0x1f, 0xb3, 0x65, 0x85, 0x06, 0xc3, 0xa5, - 0x9f, 0x07, 0x53, 0xa2, 0x43, 0x8d, 0x4a, 0x90, 0xa1, 0xfb, 0xe9, 0xf7, 0x4d, 0x61, 0x7c, 0x28, - 0xcc, 0xe1, 0xc2, 0x28, 0xf9, 0xf7, 0x60, 0xc1, 0x3b, 0x03, 0xda, 0x84, 0xac, 0x3d, 0x83, 0xa4, - 0xb4, 0xd9, 0x5a, 0xc1, 0x06, 0x55, 0xdb, 0xfc, 0xbb, 0x30, 0xe7, 0x66, 0x86, 0xd6, 0x60, 0x96, - 0x29, 0x84, 0x83, 0x3e, 0x43, 0x01, 0xd5, 0xb6, 0x63, 0xd3, 0xbf, 0x09, 0xcb, 0x5e, 0x3d, 0x63, - 0xa6, 0xfc, 0xb6, 0xb3, 0x06, 0xba, 0x17, 0x0b, 0xde, 0x35, 0xd8, 0x72, 0x0a, 0x7f, 0x9a, 0x86, - 0x9c, 0xdf, 0x68, 0xd0, 0x63, 0x48, 0x9f, 0x76, 0xb5, 0xd6, 0x97, 0x8c, 0xf6, 0xad, 0x28, 0xeb, - 0x2a, 0x94, 0x2c, 0x2c, 0x0a, 0x3d, 0x98, 0x12, 0x29, 0x91, 0x45, 0xdd, 0xd3, 0x06, 0xaa, 0xc9, - 0x76, 0x2f, 0x9a, 0xfa, 0xc8, 0xc2, 0x1a, 0x52, 0x13, 0x22, 0xb4, 0x07, 0x59, 0xaa, 0x76, 0x52, - 0x4f, 0x6b, 0xe3, 0x7c, 0x92, 0xf0, 0xb8, 0x1b, 0xc9, 0xa3, 0x48, 0x70, 0x8f, 0xb4, 0x36, 0x16, - 0x41, 0x76, 0x7e, 0xf3, 0xf3, 0x90, 0x75, 0xc9, 0xc6, 0x0f, 0x20, 0xeb, 0x9a, 0x0c, 0xdd, 0x84, - 0xe9, 0x33, 0x43, 0x72, 0x9c, 0xf0, 0xac, 0x98, 0x39, 0x33, 0x88, 0x3f, 0xdd, 0x84, 0x2c, 0x91, - 0x42, 0x3a, 0xeb, 0xca, 0x1d, 0x23, 0x9f, 0xd8, 0x4a, 0x5a, 0x67, 0x44, 0x40, 0x4f, 0x2c, 0x08, - 0x7a, 0x00, 0xcc, 0xa1, 0x48, 0x14, 0xaf, 0xa3, 0x6b, 0x83, 0x3e, 0x11, 0x72, 0x56, 0x64, 0x57, - 0x1b, 0x99, 0x68, 0xdf, 0x82, 0xf3, 0x7f, 0x9d, 0x00, 0x18, 0x0a, 0x88, 0x1e, 0x43, 0x8a, 0xac, - 0x89, 0x3a, 0xfe, 0xed, 0x31, 0xd6, 0x54, 0x20, 0x0b, 0x23, 0x54, 0xc2, 0x7f, 0x70, 0x90, 0x22, - 0x6c, 0xfc, 0xd7, 0x53, 0xa3, 0x5a, 0xdb, 0x3f, 0xac, 0x48, 0xb5, 0xfa, 0x5e, 0x45, 0xfa, 0x5c, - 0xac, 0x36, 0x2b, 0x62, 0x8e, 0x43, 0x6b, 0x70, 0xd3, 0x0d, 0x17, 0x2b, 0xc5, 0xbd, 0x8a, 0x28, - 0xd5, 0x6b, 0x87, 0xcf, 0x73, 0x09, 0xc4, 0xc3, 0xea, 0xd1, 0xc9, 0x61, 0xb3, 0x1a, 0x1c, 0x4b, - 0xa2, 0x75, 0xc8, 0xbb, 0xc6, 0x18, 0x0f, 0xc6, 0x36, 0x65, 0xb1, 0x75, 0x8d, 0xd2, 0x9f, 0x6c, - 0x30, 0x8d, 0x04, 0xb8, 0xe5, 0x9e, 0xd3, 0x4b, 0x9b, 0xe1, 0x93, 0xdf, 0x94, 0x38, 0x74, 0x07, - 0xf2, 0x6e, 0x1c, 0x0f, 0x87, 0x69, 0x82, 0x52, 0x9a, 0x77, 0x34, 0x80, 0x68, 0xf8, 0xe7, 0x30, - 0xef, 0xb9, 0x18, 0xac, 0x18, 0x8e, 0x79, 0xb2, 0xb6, 0x74, 0x7a, 0x69, 0x92, 0xb8, 0x86, 0xdb, - 0x4e, 0x8a, 0xf3, 0x36, 0xb4, 0x64, 0x01, 0xad, 0xb3, 0xec, 0x2a, 0x3d, 0xc5, 0x64, 0x38, 0x09, - 0x82, 0x03, 0x04, 0x44, 0x10, 0x84, 0x5f, 0x26, 0x20, 0xc3, 0x14, 0xe2, 0x9e, 0xeb, 0x6a, 0xf2, - 0xb0, 0xb4, 0xa1, 0x94, 0xa5, 0xc7, 0x22, 0x13, 0x5e, 0x8b, 0x44, 0x07, 0xb0, 0xe0, 0xf6, 0xdf, - 0x17, 0x76, 0xe4, 0x78, 0xc7, 0x7b, 0xce, 0x6e, 0x27, 0x72, 0xc1, 0xe2, 0xc5, 0xf9, 0x73, 0x37, - 0x0c, 0x95, 0x60, 0xc1, 0x77, 0x05, 0xa4, 0x46, 0x5f, 0x01, 0xf3, 0x2d, 0x8f, 0x37, 0x2c, 0xc2, - 0x92, 0xed, 0xbd, 0xbb, 0x58, 0x32, 0x99, 0x77, 0x67, 0x57, 0x54, 0x2e, 0xe0, 0xf5, 0xd1, 0x10, - 0xd9, 0x86, 0xf1, 0x9f, 0x02, 0x0a, 0xca, 0x3a, 0x91, 0xab, 0x1e, 0xc0, 0x52, 0xc8, 0xbd, 0x82, - 0x0a, 0x30, 0x4b, 0x8e, 0xca, 0x50, 0x4c, 0xcc, 0x62, 0xd2, 0xa0, 0x44, 0x43, 0x14, 0x0b, 0xbf, - 0xaf, 0xe3, 0x33, 0xac, 0xeb, 0xb8, 0x4d, 0x6c, 0x32, 0x14, 0xdf, 0x41, 0x11, 0xfe, 0x80, 0x83, - 0x19, 0x1b, 0x8e, 0x76, 0x61, 0xc6, 0xc0, 0x1d, 0x7a, 0xe7, 0xd1, 0xb9, 0x6e, 0xfb, 0x69, 0x0b, - 0x0d, 0x86, 0xc0, 0xa2, 0x77, 0x1b, 0xdf, 0x8a, 0xde, 0x3d, 0x43, 0x13, 0x2d, 0xfe, 0x6f, 0x39, - 0x58, 0xda, 0xc3, 0x5d, 0xec, 0x0f, 0x8d, 0xe2, 0xdc, 0xba, 0x3b, 0x9a, 0x48, 0x78, 0xa3, 0x89, - 0x10, 0x56, 0x31, 0xd1, 0xc4, 0x95, 0x6e, 0xd8, 0x55, 0x58, 0xf6, 0xce, 0x46, 0xef, 0x14, 0xe1, - 0xbf, 0x93, 0x70, 0xdb, 0xd2, 0x05, 0x5d, 0xeb, 0x76, 0xb1, 0x7e, 0x3c, 0x38, 0xed, 0x2a, 0xc6, - 0xab, 0x09, 0x16, 0x77, 0x13, 0xa6, 0x55, 0xad, 0xed, 0x32, 0x9e, 0x8c, 0xf5, 0x59, 0x6d, 0xa3, - 0x0a, 0x2c, 0xfa, 0x63, 0xbb, 0x4b, 0xe6, 0xf9, 0xa3, 0x23, 0xbb, 0xdc, 0xb9, 0xff, 0xda, 0xe2, - 0x61, 0xc6, 0x8a, 0x4a, 0x35, 0xb5, 0x7b, 0x49, 0x2c, 0x66, 0x46, 0x74, 0xbe, 0x91, 0xe8, 0x0f, - 0xd3, 0x7e, 0xe0, 0x84, 0x69, 0xb1, 0x2b, 0x8a, 0x8b, 0xd8, 0x5e, 0x06, 0x2c, 0x3e, 0x43, 0x58, - 0x7f, 0x34, 0x26, 0xeb, 0x91, 0x9e, 0xe0, 0x2a, 0xa7, 0x78, 0x0d, 0xe6, 0xfb, 0x0b, 0x0e, 0x36, - 0x23, 0x97, 0xc0, 0xe2, 0x8c, 0x36, 0xdc, 0xe8, 0xd3, 0x01, 0x67, 0x13, 0xa8, 0x95, 0x7d, 0x3c, - 0x72, 0x13, 0x58, 0xea, 0xcc, 0xa0, 0x9e, 0x6d, 0x58, 0xe8, 0x7b, 0x80, 0x7c, 0x11, 0x96, 0x42, - 0xd0, 0x26, 0x5a, 0xcc, 0xaf, 0x38, 0xd8, 0x1a, 0x8a, 0x72, 0xa2, 0xf6, 0xaf, 0x4f, 0x7d, 0x9b, - 0x43, 0xdd, 0xa2, 0x2e, 0xff, 0x83, 0xe0, 0xda, 0xc3, 0x27, 0x7c, 0x53, 0x16, 0x7c, 0x17, 0xee, - 0xc4, 0x4c, 0xcd, 0xcc, 0xf9, 0x97, 0x29, 0xb8, 0xf3, 0x4c, 0xee, 0x2a, 0x6d, 0x27, 0x7a, 0x0c, - 0x29, 0x32, 0xc4, 0x6f, 0x49, 0x2b, 0x60, 0x01, 0xd4, 0x6b, 0x3d, 0x76, 0xac, 0x76, 0x14, 0xff, - 0x31, 0xae, 0xc3, 0x6b, 0xcc, 0xfc, 0x9e, 0x87, 0x64, 0x7e, 0x1f, 0x8d, 0x2f, 0x6b, 0x5c, 0x1e, - 0x78, 0xe2, 0x77, 0x30, 0x1f, 0x8e, 0xcf, 0x37, 0x46, 0x0b, 0xae, 0x6c, 0xc5, 0xdf, 0x65, 0xaa, - 0xf6, 0xf7, 0x29, 0x10, 0xe2, 0x56, 0xcf, 0x7c, 0x88, 0x08, 0xb3, 0x2d, 0x4d, 0x3d, 0x53, 0xf4, - 0x1e, 0x6e, 0xb3, 0x94, 0xe3, 0xfd, 0x71, 0x36, 0x8f, 0x39, 0x90, 0xb2, 0x4d, 0x2b, 0x0e, 0xd9, - 0xa0, 0x3c, 0x4c, 0xf7, 0xb0, 0x61, 0xc8, 0x1d, 0x5b, 0x2c, 0xfb, 0x93, 0xff, 0x59, 0x12, 0x66, - 0x1d, 0x12, 0xa4, 0x06, 0x34, 0x98, 0xba, 0xaf, 0xfd, 0xd7, 0x11, 0xe0, 0xf5, 0x95, 0x39, 0xf1, - 0x1a, 0xca, 0xdc, 0xf6, 0x28, 0x33, 0x35, 0x87, 0xbd, 0xd7, 0x12, 0x3b, 0x46, 0xaf, 0xbf, 0x73, - 0x05, 0x14, 0x7e, 0x1b, 0xd0, 0xa1, 0x62, 0xb0, 0xd4, 0xcd, 0x71, 0x4b, 0x56, 0xa6, 0x26, 0x5f, - 0x48, 0x58, 0x35, 0x75, 0x85, 0x85, 0xeb, 0x69, 0x11, 0x7a, 0xf2, 0x45, 0x85, 0x42, 0xac, 0x90, - 0xde, 0x30, 0x65, 0xdd, 0x54, 0xd4, 0x8e, 0x64, 0x6a, 0x5f, 0x62, 0xa7, 0xd2, 0x6b, 0x43, 0x9b, - 0x16, 0x50, 0xf8, 0xcf, 0x04, 0x2c, 0x79, 0xd8, 0x33, 0x9d, 0xfc, 0x18, 0xa6, 0x87, 0xbc, 0x3d, - 0x61, 0x7c, 0x08, 0x76, 0x81, 0x6e, 0x9b, 0x4d, 0x81, 0x36, 0x00, 0x54, 0x7c, 0x61, 0x7a, 0xe6, - 0x9d, 0xb5, 0x20, 0x64, 0x4e, 0xfe, 0xf7, 0x38, 0x27, 0xd3, 0x37, 0x65, 0x73, 0x40, 0xb2, 0x4a, - 0xe6, 0xa2, 0x71, 0x5b, 0x62, 0x77, 0x0c, 0x9d, 0x77, 0x56, 0xcc, 0x39, 0x23, 0x35, 0x72, 0xdb, - 0x18, 0xa8, 0xe4, 0x14, 0x51, 0x5b, 0x9a, 0xda, 0x56, 0xcc, 0x61, 0x11, 0xf5, 0x66, 0x20, 0x41, - 0xa0, 0xc3, 0x76, 0xc5, 0xd4, 0x01, 0xf0, 0x5f, 0x41, 0x9a, 0x9e, 0xc4, 0x98, 0x75, 0x02, 0xf4, - 0x29, 0x64, 0x0c, 0x22, 0xac, 0xbf, 0x26, 0x12, 0xb6, 0x1d, 0xee, 0xc5, 0x89, 0x8c, 0x4e, 0xf8, - 0x08, 0xf8, 0xe1, 0x9d, 0xb4, 0x8f, 0xcd, 0xf1, 0x6f, 0x5e, 0xe1, 0x8f, 0x13, 0xb0, 0x16, 0x4a, - 0x3b, 0x59, 0xb1, 0x03, 0x1d, 0xf8, 0x16, 0xf1, 0xfd, 0xe0, 0x3d, 0x1d, 0x60, 0x1e, 0xba, 0x98, - 0xff, 0x07, 0x47, 0x28, 0xfc, 0x2c, 0x01, 0x68, 0x1f, 0x9b, 0x4e, 0x6e, 0xcc, 0x36, 0x32, 0xc2, - 0xc1, 0x70, 0xaf, 0xe1, 0x60, 0x7e, 0xe4, 0x71, 0x30, 0xd4, 0x45, 0xdd, 0x77, 0xf5, 0x41, 0x7c, - 0x53, 0xc7, 0x5e, 0x8f, 0x11, 0xf9, 0x28, 0x0d, 0xf2, 0xc7, 0xcb, 0x47, 0xaf, 0xe8, 0x47, 0xfe, - 0x9d, 0x83, 0x25, 0x8f, 0xd0, 0x4c, 0x79, 0x1e, 0x02, 0x92, 0xcf, 0x65, 0xa5, 0x2b, 0x5b, 0x82, - 0xd9, 0xf9, 0x3e, 0xcb, 0xff, 0x17, 0x9d, 0x11, 0x9b, 0x0c, 0x3d, 0x85, 0xa5, 0x9e, 0x7c, 0xa1, - 0xf4, 0x06, 0x3d, 0x89, 0xed, 0xb3, 0xa1, 0xfc, 0xc4, 0xae, 0x14, 0xae, 0x05, 0x2a, 0xe6, 0x55, - 0xd5, 0xfc, 0xf0, 0x7d, 0x5a, 0x32, 0x5f, 0x64, 0x74, 0x4c, 0x6f, 0x94, 0x9f, 0x60, 0x74, 0x0c, - 0x4b, 0x3d, 0x45, 0x0d, 0x30, 0x4b, 0x8e, 0x64, 0x56, 0x4a, 0x7e, 0x53, 0xe2, 0xc4, 0x45, 0x46, - 0x3c, 0xe4, 0x28, 0x08, 0xee, 0x28, 0x97, 0x2d, 0xd7, 0xdf, 0x37, 0xea, 0xba, 0xa3, 0xc3, 0x00, - 0x0e, 0xdb, 0x96, 0xfd, 0xd0, 0xde, 0xd1, 0xdd, 0xa0, 0xc5, 0xb0, 0x46, 0x4a, 0x64, 0x1b, 0xe9, - 0x7f, 0x92, 0x6e, 0xe3, 0x0d, 0x60, 0xa3, 0x8f, 0x21, 0xa9, 0xf7, 0x5b, 0xcc, 0x72, 0xbf, 0x37, - 0x06, 0xff, 0x82, 0x78, 0x5c, 0x3e, 0x98, 0x12, 0x2d, 0x2a, 0xfe, 0x8f, 0x92, 0x90, 0x14, 0x8f, - 0xcb, 0xe8, 0x53, 0x4f, 0x4f, 0xe5, 0xc1, 0x98, 0x5c, 0xdc, 0x2d, 0x95, 0x7f, 0x4c, 0x84, 0xf5, - 0x54, 0xf2, 0xb0, 0x5c, 0x16, 0x2b, 0xc5, 0x66, 0x45, 0xda, 0xab, 0x1c, 0x56, 0x9a, 0x15, 0x89, - 0xf6, 0x7c, 0x72, 0x1c, 0x5a, 0x87, 0xfc, 0xf1, 0x49, 0xe9, 0xb0, 0xda, 0x38, 0x90, 0x4e, 0x6a, - 0xf6, 0x2f, 0x36, 0x9a, 0x40, 0x39, 0x98, 0x3b, 0xac, 0x36, 0x9a, 0x0c, 0xd0, 0xc8, 0x25, 0x2d, - 0xc8, 0x7e, 0xa5, 0x29, 0x95, 0x8b, 0xc7, 0xc5, 0x72, 0xb5, 0xf9, 0x3c, 0x97, 0x42, 0x3c, 0xac, - 0x7a, 0x79, 0x37, 0x6a, 0xc5, 0xe3, 0xc6, 0x41, 0xbd, 0x99, 0x4b, 0x23, 0x04, 0x0b, 0x84, 0xde, - 0x06, 0x35, 0x72, 0x19, 0x8b, 0x43, 0xf9, 0xb0, 0x5e, 0x73, 0x64, 0x98, 0x46, 0xcb, 0x90, 0xb3, - 0x67, 0x16, 0x2b, 0xc5, 0x3d, 0x52, 0xc1, 0x9b, 0x41, 0x8b, 0x30, 0x5f, 0xf9, 0xf1, 0x71, 0xb1, - 0xb6, 0x67, 0x23, 0xce, 0xa2, 0x2d, 0x58, 0x77, 0x8b, 0x23, 0x31, 0xaa, 0xca, 0x1e, 0xa9, 0xc2, - 0x35, 0x72, 0x60, 0xb1, 0x62, 0xed, 0xac, 0x72, 0xbd, 0xb6, 0x57, 0x6d, 0x56, 0xeb, 0xb5, 0x5c, - 0x16, 0x2d, 0x00, 0x58, 0x42, 0x33, 0x3e, 0x73, 0xb1, 0xd5, 0xbb, 0x79, 0x5a, 0xbd, 0xb3, 0x0b, - 0xd3, 0xbf, 0x4a, 0xc0, 0x0a, 0xad, 0x4c, 0xdb, 0x75, 0x70, 0xdb, 0x43, 0x6d, 0x43, 0x8e, 0x96, - 0xb5, 0x24, 0xbf, 0xc7, 0x5f, 0xa0, 0xf0, 0x67, 0x76, 0x7a, 0x61, 0x77, 0x91, 0x12, 0xae, 0x2e, - 0x52, 0xd5, 0x9f, 0x6c, 0xdd, 0xf7, 0xf6, 0x5b, 0x7c, 0xb3, 0xc5, 0xe5, 0xef, 0x47, 0x21, 0xd9, - 0xc0, 0xc3, 0x78, 0x6e, 0x71, 0x91, 0xd2, 0x55, 0x92, 0xf5, 0x2b, 0xfa, 0xb6, 0x27, 0xb0, 0xea, - 0x97, 0x97, 0x99, 0xf1, 0x83, 0x40, 0x57, 0xc4, 0x71, 0xb6, 0x0e, 0xae, 0x83, 0x21, 0xfc, 0x0b, - 0x07, 0x33, 0x36, 0xd8, 0x8a, 0x62, 0x2c, 0x6f, 0xe4, 0x29, 0x88, 0xce, 0x5a, 0x10, 0xa7, 0xbe, - 0xea, 0xee, 0x67, 0x24, 0xfc, 0xfd, 0x8c, 0xd0, 0x73, 0x4e, 0x86, 0x9e, 0xf3, 0x0f, 0x61, 0xbe, - 0x65, 0x89, 0xaf, 0x68, 0xaa, 0x64, 0x2a, 0x3d, 0xbb, 0xde, 0x19, 0xec, 0x3f, 0x36, 0xed, 0x47, - 0x03, 0xe2, 0x9c, 0x4d, 0x60, 0x81, 0xd0, 0x16, 0xcc, 0x91, 0x7e, 0xa4, 0x64, 0x6a, 0xd2, 0xc0, - 0xc0, 0xf9, 0x34, 0xa9, 0xfe, 0x00, 0x81, 0x35, 0xb5, 0x13, 0x03, 0x0b, 0x7f, 0xc7, 0xc1, 0x0a, - 0x2d, 0x6a, 0xf9, 0xd5, 0x71, 0x54, 0x5f, 0xc6, 0xad, 0x71, 0xbe, 0x3b, 0x30, 0x94, 0xe1, 0x9b, - 0xca, 0xe9, 0xf3, 0xb0, 0xea, 0x9f, 0x8f, 0x25, 0xf2, 0x3f, 0x4f, 0xc0, 0xb2, 0x15, 0x86, 0xd9, - 0x03, 0xd7, 0x1d, 0x24, 0x4f, 0x70, 0x92, 0xbe, 0xcd, 0x4c, 0x05, 0x36, 0xf3, 0xc0, 0x9f, 0x26, - 0xbf, 0xe3, 0x0e, 0x24, 0xfd, 0x2b, 0x78, 0x53, 0x7b, 0xf9, 0x57, 0x1c, 0xac, 0xf8, 0xe6, 0x63, - 0xf6, 0xf2, 0x89, 0x3f, 0xee, 0xbf, 0x1b, 0x21, 0xdf, 0x6b, 0x45, 0xfe, 0x1f, 0xd8, 0x61, 0xf7, - 0x64, 0x66, 0xf9, 0xcf, 0x09, 0xd8, 0x18, 0x5e, 0x65, 0xe4, 0x45, 0x40, 0x7b, 0x82, 0xc2, 0xd5, - 0xd5, 0x1a, 0xef, 0x9f, 0xf9, 0x1d, 0xee, 0x4e, 0xf0, 0x76, 0x0d, 0x11, 0x29, 0xce, 0xf1, 0x86, - 0xd6, 0x7b, 0x53, 0x93, 0xd6, 0x7b, 0xaf, 0xa4, 0x01, 0xbf, 0xeb, 0x2e, 0x65, 0x7b, 0xc5, 0x67, - 0x9a, 0x30, 0x66, 0x4f, 0xe8, 0x43, 0xb8, 0x49, 0xc2, 0x7d, 0xe7, 0x41, 0x8b, 0xdd, 0x66, 0xa7, - 0x2e, 0x71, 0x46, 0x5c, 0xb1, 0x86, 0x9d, 0x57, 0x1c, 0xac, 0x0f, 0xd2, 0x16, 0xbe, 0x4d, 0xc1, - 0xaa, 0x95, 0x0e, 0x34, 0x4c, 0xb9, 0x33, 0x49, 0x87, 0xe0, 0xb7, 0x82, 0x05, 0xd7, 0x84, 0xf7, - 0x58, 0xc2, 0xb9, 0x8e, 0x53, 0x67, 0x45, 0x05, 0x58, 0x32, 0x4c, 0xb9, 0x43, 0xdc, 0x81, 0xac, - 0x77, 0xb0, 0x29, 0xf5, 0x65, 0xf3, 0x15, 0xb3, 0xf5, 0x45, 0x36, 0xd4, 0x24, 0x23, 0xc7, 0xb2, - 0xf9, 0xea, 0x9a, 0x0e, 0x12, 0xfd, 0xc8, 0xef, 0x14, 0xde, 0x1d, 0xb1, 0x96, 0x18, 0xdd, 0xfa, - 0x71, 0x44, 0x51, 0xfe, 0xbd, 0x11, 0x2c, 0x47, 0x17, 0xe3, 0xaf, 0x5e, 0x84, 0xfe, 0x8e, 0xeb, - 0xf9, 0xb7, 0xe0, 0x66, 0x60, 0xf1, 0xec, 0x0a, 0xe9, 0x40, 0xde, 0x1a, 0x3a, 0x51, 0x8d, 0x09, - 0xd5, 0x31, 0x42, 0x63, 0x12, 0x11, 0x1a, 0x23, 0xac, 0xc1, 0xad, 0x90, 0x89, 0x98, 0x14, 0x7f, - 0x93, 0xa6, 0x62, 0x4c, 0xde, 0x5a, 0xfa, 0x22, 0xca, 0x2a, 0xde, 0x77, 0x1f, 0x7b, 0x68, 0x17, - 0xe6, 0x4d, 0xd8, 0xc5, 0x26, 0x64, 0xdd, 0x78, 0xec, 0x1a, 0x34, 0x47, 0x18, 0x4e, 0xfa, 0x4a, - 0x1d, 0xaf, 0x8c, 0xaf, 0xe3, 0x75, 0x38, 0x34, 0xaa, 0x69, 0x6f, 0x68, 0x1b, 0xb9, 0x15, 0x31, - 0x66, 0xf5, 0x22, 0x60, 0x56, 0x33, 0xde, 0x36, 0x5a, 0x24, 0xd3, 0x5f, 0x03, 0xc3, 0x62, 0x4a, - 0x1d, 0xda, 0xdf, 0x12, 0x5e, 0x00, 0x4f, 0x35, 0x7e, 0xf2, 0x8e, 0x93, 0x4f, 0x8d, 0x12, 0x7e, - 0x35, 0x12, 0x36, 0x60, 0x2d, 0x94, 0x37, 0x9b, 0xfa, 0x0f, 0x39, 0x2a, 0x98, 0x53, 0xd4, 0x6a, - 0x98, 0xb2, 0x69, 0x8c, 0x3b, 0x35, 0x1b, 0x74, 0x4f, 0x4d, 0x41, 0x44, 0x83, 0x27, 0x34, 0x09, - 0xe1, 0xa7, 0x1c, 0xdd, 0x07, 0xbf, 0x2c, 0xec, 0xb6, 0x7d, 0x07, 0xd2, 0x03, 0x52, 0xad, 0xa7, - 0x51, 0xd7, 0x92, 0xd7, 0x08, 0x4e, 0xac, 0x21, 0x91, 0x62, 0x5c, 0x4b, 0xf1, 0xec, 0xe7, 0x1c, - 0x64, 0x5d, 0xac, 0xd1, 0x3a, 0xcc, 0x3a, 0xa5, 0x1e, 0x3b, 0xd5, 0x71, 0x00, 0xd6, 0xc9, 0x9b, - 0x9a, 0x29, 0x77, 0xd9, 0x23, 0x12, 0xfa, 0x61, 0x65, 0xa7, 0x03, 0x03, 0xd3, 0x48, 0x38, 0x29, - 0x92, 0xdf, 0xe8, 0x01, 0xa4, 0x06, 0xaa, 0x62, 0x12, 0x8b, 0x5f, 0xf0, 0x9b, 0x32, 0x99, 0xaa, - 0x70, 0xa2, 0x2a, 0xa6, 0x48, 0xb0, 0x84, 0xfb, 0x90, 0xb2, 0xbe, 0xbc, 0x25, 0x87, 0x59, 0x48, - 0x97, 0x9e, 0x37, 0x2b, 0x8d, 0x1c, 0x87, 0x00, 0x32, 0x55, 0x9a, 0xa0, 0x27, 0x84, 0x7d, 0xfb, - 0x21, 0xa9, 0xb3, 0x08, 0xcb, 0xfa, 0xe5, 0x53, 0x55, 0xd3, 0x7b, 0x72, 0x97, 0xc8, 0x3c, 0x23, - 0x3a, 0xdf, 0xd1, 0xfd, 0x0f, 0x61, 0xdd, 0x39, 0x87, 0xb0, 0xda, 0xd0, 0x4b, 0xaa, 0x51, 0x51, - 0x55, 0xa1, 0x62, 0x68, 0x55, 0x68, 0xc3, 0x73, 0xb7, 0x8e, 0xa8, 0x07, 0xfd, 0x43, 0x02, 0x56, - 0x42, 0xf1, 0xd0, 0x07, 0xee, 0x4a, 0xd0, 0x9d, 0x58, 0x9e, 0xee, 0x1a, 0xd0, 0x7f, 0x71, 0xb4, - 0x06, 0xb4, 0xeb, 0xa9, 0x01, 0xbd, 0x3d, 0x92, 0xde, 0x5d, 0xfd, 0xf9, 0x4b, 0x2e, 0xa2, 0xfa, - 0xd3, 0x68, 0x16, 0xf7, 0x2b, 0xd2, 0x49, 0x8d, 0xfe, 0x75, 0xaa, 0x3f, 0xcb, 0x90, 0x1b, 0x16, - 0x46, 0xa4, 0x46, 0xb3, 0xd8, 0x6c, 0xe4, 0x12, 0xc1, 0xca, 0x4b, 0x32, 0xb4, 0xae, 0x92, 0x8a, - 0xad, 0xa3, 0xa4, 0xe9, 0x43, 0xa9, 0x55, 0x40, 0x8c, 0xf0, 0xa8, 0x7e, 0x52, 0x6b, 0x4a, 0xfb, - 0x62, 0xfd, 0xe4, 0x38, 0x97, 0x71, 0xea, 0x2b, 0xcb, 0x80, 0xd8, 0x41, 0xb9, 0x5f, 0xc3, 0xff, - 0x19, 0x07, 0x4b, 0x1e, 0x30, 0x3b, 0x37, 0x57, 0xef, 0x9a, 0xf3, 0xf4, 0xae, 0x1f, 0xc1, 0xb2, - 0x95, 0x22, 0x52, 0xfb, 0x30, 0xa4, 0x3e, 0xd6, 0x49, 0xf5, 0x9a, 0x69, 0xfa, 0x62, 0x4f, 0xbe, - 0x60, 0xc5, 0xfd, 0x63, 0xac, 0x5b, 0x8c, 0xaf, 0xa1, 0x90, 0x2b, 0x7c, 0x9d, 0xa4, 0x81, 0xc8, - 0xc4, 0x89, 0xcc, 0x48, 0xa7, 0x14, 0xcc, 0x74, 0x92, 0x13, 0x64, 0x3a, 0x11, 0x2e, 0x2d, 0x35, - 0x51, 0xf4, 0x3b, 0xf9, 0x25, 0x5e, 0x1b, 0x5e, 0xd4, 0x34, 0x54, 0x7d, 0xe0, 0x56, 0xdd, 0x91, - 0xa9, 0x55, 0xe6, 0xeb, 0x12, 0xf7, 0xcd, 0x75, 0x25, 0xc6, 0x45, 0x1a, 0x80, 0x5d, 0x21, 0x21, - 0xda, 0xf9, 0x5f, 0x0e, 0x66, 0xaa, 0x6d, 0xac, 0x9a, 0x74, 0x6d, 0xf3, 0x9e, 0x7f, 0x98, 0x40, - 0xeb, 0x11, 0xff, 0x47, 0x41, 0x16, 0xc6, 0x6f, 0xc4, 0xfe, 0x97, 0x85, 0x30, 0x85, 0xce, 0x5c, - 0xff, 0xec, 0xe1, 0xe9, 0x55, 0xbc, 0x15, 0xa0, 0x0c, 0xf1, 0x6e, 0xfc, 0xbd, 0x11, 0x58, 0xce, - 0x3c, 0x1f, 0x42, 0x9a, 0x3c, 0x8d, 0x47, 0xcb, 0xce, 0xf3, 0x7c, 0xd7, 0xcb, 0x79, 0x7e, 0xc5, - 0x07, 0xb5, 0xe9, 0x76, 0x7e, 0x31, 0x0b, 0x30, 0xcc, 0x2b, 0xd1, 0x53, 0x98, 0x73, 0xbf, 0xce, - 0x45, 0x6b, 0x31, 0x6f, 0xc3, 0xf9, 0xf5, 0xf0, 0x41, 0x47, 0xa6, 0xa7, 0x30, 0xe7, 0x7e, 0x96, - 0x35, 0x64, 0x16, 0xf2, 0x34, 0x6c, 0xc8, 0x2c, 0xf4, 0x25, 0xd7, 0x14, 0xea, 0xc2, 0xcd, 0x88, - 0x87, 0x39, 0xe8, 0xed, 0xf1, 0x9e, 0x2f, 0xf1, 0xdf, 0x1b, 0xf3, 0x85, 0x8f, 0x30, 0x85, 0x74, - 0xb8, 0x15, 0xf9, 0x1e, 0x05, 0x6d, 0x8f, 0xfb, 0x5a, 0x86, 0x7f, 0x67, 0x0c, 0x4c, 0x67, 0xce, - 0x01, 0xf0, 0xd1, 0x4d, 0x70, 0xf4, 0xce, 0xd8, 0xaf, 0x33, 0xf8, 0xfb, 0xe3, 0xf7, 0xd4, 0x85, - 0x29, 0x74, 0x00, 0x59, 0x57, 0x4b, 0x14, 0xf1, 0xa1, 0x7d, 0x52, 0xca, 0x78, 0x2d, 0xa6, 0x87, - 0x4a, 0x39, 0xb9, 0xfa, 0x55, 0x43, 0x4e, 0xc1, 0xce, 0xdb, 0x90, 0x53, 0x48, 0x83, 0xcb, 0xbf, - 0xfd, 0xbe, 0xab, 0x3d, 0x6c, 0xfb, 0xc3, 0x63, 0x83, 0xb0, 0xed, 0x8f, 0x88, 0x13, 0x84, 0x29, - 0xf4, 0x19, 0x2c, 0x78, 0x4b, 0xd2, 0x68, 0x23, 0xb6, 0xb4, 0xce, 0xdf, 0x8e, 0x1a, 0x76, 0xb3, - 0xf4, 0x56, 0x40, 0x87, 0x2c, 0x43, 0x2b, 0xb1, 0x43, 0x96, 0x11, 0x85, 0xd3, 0x29, 0xcb, 0x3f, - 0x79, 0xea, 0x7a, 0x43, 0xff, 0x14, 0x56, 0x8e, 0x1c, 0xfa, 0xa7, 0xd0, 0x62, 0xa0, 0x30, 0x85, - 0x14, 0x58, 0x0d, 0x2f, 0x2b, 0xa1, 0x7b, 0x63, 0x55, 0xcd, 0xf8, 0xb7, 0x47, 0xa1, 0x39, 0x53, - 0xbd, 0x84, 0xa5, 0x90, 0xb6, 0x35, 0x12, 0x62, 0x7b, 0xda, 0x74, 0x92, 0xbb, 0x63, 0xf4, 0xbd, - 0x85, 0xa9, 0x9d, 0x7f, 0x4b, 0x43, 0x8a, 0xdc, 0xf9, 0x4d, 0xb8, 0xe1, 0x2b, 0x1c, 0xa0, 0xdb, - 0xf1, 0xe5, 0x14, 0x7e, 0x33, 0x72, 0xdc, 0x59, 0xc0, 0x0b, 0x58, 0x0c, 0x94, 0x02, 0xd0, 0x96, - 0x9b, 0x2e, 0xac, 0x1c, 0xc1, 0xdf, 0x89, 0xc1, 0xf0, 0xf3, 0xf6, 0x3a, 0xb6, 0xad, 0x51, 0xb9, - 0xaa, 0x97, 0x77, 0x94, 0x33, 0x7b, 0x49, 0x43, 0x2c, 0xbf, 0x1b, 0x13, 0xbc, 0x72, 0x85, 0x3a, - 0xb0, 0xbb, 0xb1, 0x38, 0xce, 0x0c, 0x5f, 0x38, 0xb1, 0x9d, 0x2b, 0x55, 0x42, 0x1e, 0xe1, 0x42, - 0x53, 0x3a, 0x5e, 0x88, 0x43, 0x71, 0xd8, 0x7f, 0x0e, 0x39, 0xff, 0x25, 0x8f, 0x36, 0x47, 0xc4, - 0x1c, 0xfc, 0x56, 0x34, 0x82, 0x7f, 0x67, 0xfc, 0x1e, 0xc6, 0x2f, 0x55, 0x98, 0x6f, 0xb9, 0x1b, - 0x8b, 0xe3, 0xf6, 0x89, 0xae, 0xf0, 0x76, 0xe8, 0x13, 0x83, 0xa1, 0xf0, 0xd0, 0x27, 0x86, 0xc4, - 0xc3, 0xc2, 0xd4, 0xee, 0x63, 0x00, 0xb9, 0xdb, 0x7f, 0x25, 0x4b, 0x58, 0x1d, 0xf4, 0xd0, 0x7a, - 0xa0, 0xd5, 0x54, 0x51, 0x07, 0xbd, 0x7a, 0xdf, 0xca, 0xb3, 0x8c, 0xfc, 0x5f, 0xcc, 0x90, 0xec, - 0x6a, 0x96, 0x10, 0x58, 0x03, 0xbb, 0x87, 0x90, 0x1b, 0x52, 0x4b, 0x24, 0x7e, 0x42, 0x77, 0x42, - 0x79, 0x90, 0x76, 0xbd, 0x8f, 0xd1, 0x82, 0xc3, 0x88, 0x8c, 0xee, 0x7e, 0x02, 0xd0, 0x32, 0x14, - 0x89, 0x06, 0x70, 0x68, 0x23, 0xc0, 0xe7, 0x89, 0x82, 0xbb, 0x6d, 0x9b, 0xc7, 0x9f, 0x33, 0x61, - 0x5a, 0x86, 0x42, 0xc3, 0xbc, 0xdd, 0x1f, 0x42, 0x96, 0x0a, 0x73, 0x66, 0xe1, 0x8d, 0xa2, 0x67, - 0x32, 0xd0, 0xd5, 0x93, 0x91, 0xdd, 0x0a, 0xcc, 0x53, 0x06, 0x2c, 0x47, 0x44, 0x9b, 0x01, 0x16, - 0x47, 0x74, 0xc4, 0xc7, 0x64, 0x8e, 0x90, 0xb1, 0xb1, 0xdd, 0x12, 0xcc, 0xd9, 0x6c, 0xcc, 0x57, - 0x5a, 0x1b, 0xdd, 0x0e, 0xe1, 0x62, 0x0d, 0xf8, 0x98, 0x64, 0x19, 0x13, 0x6b, 0x68, 0x28, 0x8a, - 0xfd, 0x2f, 0xa3, 0x41, 0x51, 0x58, 0x32, 0x17, 0x2a, 0x0a, 0x1b, 0x2b, 0xa5, 0x5f, 0x24, 0x5b, - 0x86, 0x72, 0x9a, 0x21, 0x44, 0x3f, 0xf8, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, 0x95, 0xe0, - 0x2b, 0xdf, 0x3c, 0x00, 0x00, + 0x76, 0x6a, 0xfe, 0x24, 0x3d, 0x4a, 0x1a, 0xaa, 0x28, 0x69, 0x38, 0x2d, 0x69, 0xa4, 0xe9, 0xf1, + 0x78, 0xe5, 0xf1, 0x0c, 0x67, 0xad, 0xb5, 0x8d, 0x58, 0x1e, 0xef, 0x9a, 0xa4, 0x38, 0x12, 0x77, + 0x28, 0x52, 0x6e, 0x52, 0x33, 0x3b, 0x93, 0x18, 0xed, 0x16, 0x59, 0xe2, 0x34, 0x4c, 0x76, 0xd3, + 0xdd, 0x4d, 0x45, 0xda, 0x4b, 0x82, 0x04, 0x39, 0x04, 0xb9, 0xe4, 0xb6, 0xce, 0x29, 0x8b, 0x24, + 0xc7, 0x5d, 0xec, 0x21, 0x08, 0x72, 0x0c, 0x90, 0x5b, 0x02, 0xe4, 0x73, 0x4b, 0x90, 0xcb, 0x1e, + 0x02, 0xe4, 0x60, 0x24, 0x80, 0xcf, 0x39, 0x04, 0x41, 0x57, 0x55, 0x37, 0xfb, 0xcb, 0xcf, 0x48, + 0x03, 0x1f, 0xf6, 0x24, 0xf6, 0xab, 0xf7, 0x5e, 0xbd, 0xaa, 0x7a, 0xef, 0xd5, 0xfb, 0x94, 0xe0, + 0x83, 0x8e, 0x62, 0xbe, 0x1a, 0x9c, 0xe6, 0x5b, 0x5a, 0xef, 0x51, 0x4b, 0x53, 0x4d, 0x59, 0x51, + 0xb1, 0xfe, 0xd0, 0x30, 0x35, 0x5d, 0xee, 0xe0, 0x87, 0x8a, 0x6a, 0x62, 0xfd, 0x4c, 0x6e, 0xe1, + 0x47, 0x46, 0x1f, 0xb7, 0x1e, 0xb5, 0x0c, 0x25, 0xdf, 0xd7, 0x35, 0x53, 0x43, 0x29, 0xeb, 0xe7, + 0xf9, 0x7b, 0xfc, 0x76, 0x47, 0xd3, 0x3a, 0x5d, 0xfc, 0x88, 0x40, 0x4f, 0x07, 0x67, 0x8f, 0xda, + 0xd8, 0x68, 0xe9, 0x4a, 0xdf, 0xd4, 0x74, 0x8a, 0xc9, 0x6f, 0xf9, 0x31, 0x4c, 0xa5, 0x87, 0x0d, + 0x53, 0xee, 0xf5, 0x19, 0xc2, 0x6d, 0x3f, 0xc2, 0xef, 0xea, 0x72, 0xbf, 0x8f, 0x75, 0x83, 0x8e, + 0x0b, 0x6b, 0xb0, 0x72, 0x80, 0xcd, 0xe3, 0xee, 0xa0, 0xa3, 0xa8, 0x15, 0xf5, 0x4c, 0x13, 0xf1, + 0x57, 0x03, 0x6c, 0x98, 0xc2, 0xbf, 0x73, 0xb0, 0xea, 0x1b, 0x30, 0xfa, 0x9a, 0x6a, 0x60, 0x84, + 0x20, 0xa1, 0xca, 0x3d, 0x9c, 0xe3, 0xb6, 0xb9, 0x9d, 0x79, 0x91, 0xfc, 0x46, 0xf7, 0x60, 0xe9, + 0x1c, 0xab, 0x6d, 0x4d, 0x97, 0xce, 0xb1, 0x6e, 0x28, 0x9a, 0x9a, 0x8b, 0x91, 0xd1, 0x45, 0x0a, + 0x7d, 0x46, 0x81, 0xe8, 0x00, 0xe6, 0x7a, 0xb2, 0xaa, 0x9c, 0x61, 0xc3, 0xcc, 0xc5, 0xb7, 0xe3, + 0x3b, 0xe9, 0xdd, 0x77, 0xf3, 0x74, 0xa9, 0xf9, 0xd0, 0xb9, 0xf2, 0x47, 0x0c, 0xbb, 0xac, 0x9a, + 0xfa, 0xa5, 0xe8, 0x10, 0xf3, 0x1f, 0xc3, 0xa2, 0x67, 0x08, 0x65, 0x20, 0xfe, 0x25, 0xbe, 0x64, + 0x32, 0x59, 0x3f, 0xd1, 0x0a, 0x24, 0xcf, 0xe5, 0xee, 0x00, 0x33, 0x49, 0xe8, 0xc7, 0x5e, 0xec, + 0xb7, 0x38, 0xe1, 0x36, 0x6c, 0x38, 0xb3, 0x95, 0xe4, 0xbe, 0x7c, 0xaa, 0x74, 0x15, 0x53, 0xc1, + 0x86, 0xbd, 0xf4, 0xcf, 0x61, 0x33, 0x62, 0x9c, 0xed, 0xc0, 0x63, 0x58, 0x68, 0xb9, 0xe0, 0x39, + 0x8e, 0x2c, 0x25, 0x67, 0x2f, 0xc5, 0x47, 0x79, 0x29, 0x7a, 0xb0, 0x85, 0x7f, 0x8e, 0x43, 0xc6, + 0x8f, 0x82, 0x1e, 0xc3, 0xac, 0x81, 0xf5, 0x73, 0xa5, 0x45, 0xf7, 0x35, 0xbd, 0xbb, 0x1d, 0xc5, + 0x2d, 0xdf, 0xa0, 0x78, 0x87, 0x33, 0xa2, 0x4d, 0x82, 0x4e, 0x20, 0x73, 0xae, 0x75, 0x07, 0x3d, + 0x2c, 0xe1, 0x8b, 0xbe, 0xac, 0x3a, 0x07, 0x90, 0xde, 0xdd, 0x89, 0x64, 0xf3, 0x8c, 0x10, 0x94, + 0x6d, 0xfc, 0xc3, 0x19, 0xf1, 0xc6, 0xb9, 0x17, 0xc4, 0xff, 0x8c, 0x83, 0x59, 0x36, 0x1b, 0xfa, + 0x08, 0x12, 0xe6, 0x65, 0x9f, 0x4a, 0xb7, 0xb4, 0x7b, 0x6f, 0x9c, 0x74, 0xf9, 0xe6, 0x65, 0x1f, + 0x8b, 0x84, 0x44, 0xf8, 0x0c, 0x12, 0xd6, 0x17, 0x4a, 0xc3, 0xec, 0x49, 0xed, 0x69, 0xad, 0xfe, + 0xbc, 0x96, 0x99, 0x41, 0x6b, 0x80, 0x4a, 0xf5, 0x5a, 0x53, 0xac, 0x57, 0xab, 0x65, 0x51, 0x6a, + 0x94, 0xc5, 0x67, 0x95, 0x52, 0x39, 0xc3, 0xa1, 0xb7, 0x60, 0xfb, 0x59, 0xbd, 0x7a, 0x72, 0x54, + 0x96, 0x0a, 0xa5, 0x52, 0xb9, 0xd1, 0xa8, 0x14, 0x2b, 0xd5, 0x4a, 0xf3, 0x85, 0x54, 0xaa, 0xd7, + 0x1a, 0x4d, 0xb1, 0x50, 0xa9, 0x35, 0x1b, 0x99, 0x18, 0xff, 0x07, 0x1c, 0xdc, 0xf0, 0x2d, 0x00, + 0x15, 0x3c, 0x12, 0x3e, 0x9c, 0x74, 0xe1, 0x6e, 0x49, 0x1f, 0x84, 0x49, 0x0a, 0x90, 0xaa, 0xd7, + 0xaa, 0x95, 0x9a, 0x25, 0x5d, 0x1a, 0x66, 0xeb, 0x4f, 0x9e, 0x90, 0x8f, 0x58, 0x31, 0x45, 0x27, + 0x14, 0x96, 0x60, 0xe1, 0x58, 0xd7, 0x4e, 0xb1, 0xad, 0x3f, 0x05, 0x58, 0x64, 0xdf, 0x4c, 0x5f, + 0xbe, 0x0f, 0x49, 0x1d, 0xcb, 0xed, 0x4b, 0x76, 0xb4, 0x7c, 0x9e, 0xda, 0x64, 0xde, 0xb6, 0xc9, + 0x7c, 0x51, 0xd3, 0xba, 0xcf, 0x2c, 0xfd, 0x14, 0x29, 0xa2, 0xf0, 0x6d, 0x02, 0xb2, 0x25, 0x1d, + 0xcb, 0x26, 0xa6, 0xd2, 0x32, 0xd6, 0xa1, 0xb6, 0xf7, 0x18, 0x96, 0x2c, 0xfd, 0x6a, 0x29, 0xe6, + 0xa5, 0xa4, 0xcb, 0x6a, 0x07, 0xb3, 0xa3, 0x5f, 0xb5, 0x77, 0xa0, 0xc4, 0x46, 0x45, 0x6b, 0x50, + 0x5c, 0x6c, 0xb9, 0x3f, 0x51, 0x05, 0xb2, 0x4c, 0x75, 0x3c, 0x2a, 0x1d, 0xf7, 0xaa, 0x34, 0x95, + 0xc2, 0xa5, 0xd2, 0xe8, 0xdc, 0x0b, 0x51, 0xb0, 0x81, 0x9e, 0x02, 0xf4, 0x65, 0x5d, 0xee, 0x61, + 0x13, 0xeb, 0x46, 0x2e, 0xe1, 0xb5, 0xef, 0x90, 0xd5, 0xe4, 0x8f, 0x1d, 0x6c, 0x6a, 0xdf, 0x2e, + 0x72, 0x74, 0x60, 0x19, 0x44, 0x4b, 0xc7, 0xa6, 0x91, 0x4b, 0x12, 0x4e, 0x3b, 0xa3, 0x38, 0x35, + 0x28, 0x2a, 0x61, 0x53, 0x8c, 0x7f, 0x5d, 0xe4, 0x44, 0x9b, 0x1a, 0xd5, 0x61, 0xd5, 0x5e, 0xa0, + 0xa6, 0x9a, 0x58, 0x35, 0x25, 0x43, 0x1b, 0xe8, 0x2d, 0x9c, 0x4b, 0x91, 0x5d, 0x5a, 0xf7, 0x2d, + 0x91, 0xe2, 0x34, 0x08, 0x8a, 0xc8, 0xb6, 0xc6, 0x03, 0x44, 0x2f, 0x81, 0x97, 0x5b, 0x2d, 0x6c, + 0x18, 0x0a, 0xdd, 0x0b, 0x49, 0xc7, 0x5f, 0x0d, 0x14, 0x1d, 0xf7, 0xb0, 0x6a, 0x1a, 0xb9, 0x59, + 0x2f, 0xd7, 0xa6, 0xd6, 0xd7, 0xba, 0x5a, 0xe7, 0x52, 0x1c, 0xe2, 0x88, 0xb7, 0x3c, 0xe4, 0xae, + 0x11, 0x83, 0xff, 0x04, 0x6e, 0xf8, 0x36, 0x65, 0x1a, 0xcf, 0xc6, 0xef, 0xc1, 0x82, 0x7b, 0x27, + 0xa6, 0xf2, 0x8a, 0x7f, 0x12, 0x83, 0x6c, 0xc8, 0x1e, 0xa0, 0x43, 0x98, 0x33, 0x54, 0xb9, 0x6f, + 0xbc, 0xd2, 0x4c, 0xa6, 0xbf, 0xf7, 0x47, 0x6c, 0x59, 0xbe, 0xc1, 0x70, 0xe9, 0xe7, 0xe1, 0x8c, + 0xe8, 0x50, 0xa3, 0x22, 0xa4, 0xe8, 0x7e, 0xfa, 0x7d, 0x53, 0x18, 0x1f, 0x0a, 0x73, 0xb8, 0x30, + 0x4a, 0xfe, 0x3d, 0x58, 0xf2, 0xce, 0x80, 0xb6, 0x20, 0x6d, 0xcf, 0x20, 0x29, 0x6d, 0xb6, 0x56, + 0xb0, 0x41, 0x95, 0x36, 0xff, 0x2e, 0x2c, 0xb8, 0x99, 0xa1, 0x75, 0x98, 0x67, 0x0a, 0xe1, 0xa0, + 0xcf, 0x51, 0x40, 0xa5, 0xed, 0xd8, 0xf4, 0x0f, 0x61, 0xc5, 0xab, 0x67, 0xcc, 0x94, 0xdf, 0x76, + 0xd6, 0x40, 0xf7, 0x62, 0xc9, 0xbb, 0x06, 0x5b, 0x4e, 0xe1, 0xcf, 0x93, 0x90, 0xf1, 0x1b, 0x0d, + 0x7a, 0x0c, 0xc9, 0xd3, 0xae, 0xd6, 0xfa, 0x92, 0xd1, 0xbe, 0x15, 0x65, 0x5d, 0xf9, 0xa2, 0x85, + 0x45, 0xa1, 0x87, 0x33, 0x22, 0x25, 0xb2, 0xa8, 0x7b, 0xda, 0x40, 0x35, 0xd9, 0xee, 0x45, 0x53, + 0x1f, 0x59, 0x58, 0x43, 0x6a, 0x42, 0x84, 0xf6, 0x21, 0x4d, 0xd5, 0x4e, 0xea, 0x69, 0x6d, 0x9c, + 0x8b, 0x13, 0x1e, 0x77, 0x23, 0x79, 0x14, 0x08, 0xee, 0x91, 0xd6, 0xc6, 0x22, 0xc8, 0xce, 0x6f, + 0x7e, 0x11, 0xd2, 0x2e, 0xd9, 0xf8, 0x01, 0xa4, 0x5d, 0x93, 0xa1, 0x9b, 0x30, 0x7b, 0x66, 0x48, + 0x8e, 0x13, 0x9e, 0x17, 0x53, 0x67, 0x06, 0xf1, 0xa7, 0x5b, 0x90, 0x26, 0x52, 0x48, 0x67, 0x5d, + 0xb9, 0x63, 0xe4, 0x62, 0xdb, 0x71, 0xeb, 0x8c, 0x08, 0xe8, 0x89, 0x05, 0x41, 0x0f, 0x80, 0x39, + 0x14, 0x89, 0xe2, 0x75, 0x74, 0x6d, 0xd0, 0x27, 0x42, 0xce, 0x8b, 0xec, 0x6a, 0x23, 0x13, 0x1d, + 0x58, 0x70, 0xfe, 0xaf, 0x63, 0x00, 0x43, 0x01, 0xd1, 0x63, 0x48, 0x90, 0x35, 0x51, 0xc7, 0xbf, + 0x33, 0xc1, 0x9a, 0xf2, 0x64, 0x61, 0x84, 0x4a, 0xf8, 0x2f, 0x0e, 0x12, 0x84, 0x8d, 0xff, 0x7a, + 0x6a, 0x54, 0x6a, 0x07, 0xd5, 0xb2, 0x54, 0xab, 0xef, 0x97, 0xa5, 0xe7, 0x62, 0xa5, 0x59, 0x16, + 0x33, 0x1c, 0x5a, 0x87, 0x9b, 0x6e, 0xb8, 0x58, 0x2e, 0xec, 0x97, 0x45, 0xa9, 0x5e, 0xab, 0xbe, + 0xc8, 0xc4, 0x10, 0x0f, 0x6b, 0x47, 0x27, 0xd5, 0x66, 0x25, 0x38, 0x16, 0x47, 0x1b, 0x90, 0x73, + 0x8d, 0x31, 0x1e, 0x8c, 0x6d, 0xc2, 0x62, 0xeb, 0x1a, 0xa5, 0x3f, 0xd9, 0x60, 0x12, 0x09, 0x70, + 0xcb, 0x3d, 0xa7, 0x97, 0x36, 0xc5, 0xc7, 0x7f, 0x5e, 0xe4, 0xd0, 0x1d, 0xc8, 0xb9, 0x71, 0x3c, + 0x1c, 0x66, 0x09, 0x4a, 0x71, 0xd1, 0xd1, 0x00, 0xa2, 0xe1, 0xcf, 0x61, 0xd1, 0x73, 0x31, 0x58, + 0x31, 0x1c, 0xf3, 0x64, 0x6d, 0xe9, 0xf4, 0xd2, 0x24, 0x71, 0x0d, 0xb7, 0x13, 0x17, 0x17, 0x6d, + 0x68, 0xd1, 0x02, 0x5a, 0x67, 0xd9, 0x55, 0x7a, 0x8a, 0xc9, 0x70, 0x62, 0x04, 0x07, 0x08, 0x88, + 0x20, 0x08, 0xbf, 0x8e, 0x41, 0x8a, 0x29, 0xc4, 0x3d, 0xd7, 0xd5, 0xe4, 0x61, 0x69, 0x43, 0x29, + 0x4b, 0x8f, 0x45, 0xc6, 0xbc, 0x16, 0x89, 0x0e, 0x61, 0xc9, 0xed, 0xbf, 0x2f, 0xec, 0xc8, 0xf1, + 0x8e, 0xf7, 0x9c, 0xdd, 0x4e, 0xe4, 0x82, 0xc5, 0x8b, 0x8b, 0xe7, 0x6e, 0x18, 0x2a, 0xc2, 0x92, + 0xef, 0x0a, 0x48, 0x8c, 0xbf, 0x02, 0x16, 0x5b, 0x1e, 0x6f, 0x58, 0x80, 0xac, 0xed, 0xbd, 0xbb, + 0x58, 0x32, 0x99, 0x77, 0x67, 0x57, 0x54, 0x26, 0xe0, 0xf5, 0xd1, 0x10, 0xd9, 0x86, 0xf1, 0x9f, + 0x02, 0x0a, 0xca, 0x3a, 0x95, 0xab, 0x1e, 0x40, 0x36, 0xe4, 0x5e, 0x41, 0x79, 0x98, 0x27, 0x47, + 0x65, 0x28, 0x26, 0x66, 0x31, 0x69, 0x50, 0xa2, 0x21, 0x8a, 0x85, 0xdf, 0xd7, 0xf1, 0x19, 0xd6, + 0x75, 0xdc, 0x26, 0x36, 0x19, 0x8a, 0xef, 0xa0, 0x08, 0x7f, 0xc8, 0xc1, 0x9c, 0x0d, 0x47, 0x7b, + 0x30, 0x67, 0xe0, 0x0e, 0xbd, 0xf3, 0xe8, 0x5c, 0xb7, 0xfd, 0xb4, 0xf9, 0x06, 0x43, 0x60, 0xd1, + 0xbb, 0x8d, 0x6f, 0x45, 0xef, 0x9e, 0xa1, 0xa9, 0x16, 0xff, 0xb7, 0x1c, 0x64, 0xf7, 0x71, 0x17, + 0xfb, 0x43, 0xa3, 0x51, 0x6e, 0xdd, 0x1d, 0x4d, 0xc4, 0xbc, 0xd1, 0x44, 0x08, 0xab, 0x11, 0xd1, + 0xc4, 0x95, 0x6e, 0xd8, 0x35, 0x58, 0xf1, 0xce, 0x46, 0xef, 0x14, 0xe1, 0x7f, 0xe2, 0x70, 0xdb, + 0xd2, 0x05, 0x5d, 0xeb, 0x76, 0xb1, 0x7e, 0x3c, 0x38, 0xed, 0x2a, 0xc6, 0xab, 0x29, 0x16, 0x77, + 0x13, 0x66, 0x55, 0xad, 0xed, 0x32, 0x9e, 0x94, 0xf5, 0x59, 0x69, 0xa3, 0x32, 0x2c, 0xfb, 0x63, + 0xbb, 0x4b, 0xe6, 0xf9, 0xa3, 0x23, 0xbb, 0xcc, 0xb9, 0xff, 0xda, 0xe2, 0x61, 0xce, 0x8a, 0x4a, + 0x35, 0xb5, 0x7b, 0x49, 0x2c, 0x66, 0x4e, 0x74, 0xbe, 0x91, 0xe8, 0x0f, 0xd3, 0x7e, 0xe0, 0x84, + 0x69, 0x23, 0x57, 0x34, 0x2a, 0x62, 0xfb, 0x22, 0x60, 0xf1, 0x29, 0xc2, 0xfa, 0xa3, 0x09, 0x59, + 0x8f, 0xf5, 0x04, 0x57, 0x39, 0xc5, 0x6b, 0x30, 0xdf, 0x7f, 0xe4, 0x60, 0x2b, 0x72, 0x09, 0x2c, + 0xce, 0x68, 0xc3, 0x8d, 0x3e, 0x1d, 0x70, 0x36, 0x81, 0x5a, 0xd9, 0xc7, 0x63, 0x37, 0x81, 0xa5, + 0xce, 0x0c, 0xea, 0xd9, 0x86, 0xa5, 0xbe, 0x07, 0xc8, 0x17, 0x20, 0x1b, 0x82, 0x36, 0xd5, 0x62, + 0xbe, 0xe1, 0x60, 0x7b, 0x28, 0xca, 0x89, 0xda, 0xbf, 0x3e, 0xf5, 0x6d, 0x0e, 0x75, 0x8b, 0xba, + 0xfc, 0x0f, 0x82, 0x6b, 0x0f, 0x9f, 0xf0, 0x4d, 0x59, 0xf0, 0x5d, 0xb8, 0x33, 0x62, 0x6a, 0x66, + 0xce, 0xbf, 0x4e, 0xc0, 0x9d, 0x67, 0x72, 0x57, 0x69, 0x3b, 0xd1, 0x63, 0x48, 0x91, 0x61, 0xf4, + 0x96, 0xb4, 0x02, 0x16, 0x40, 0xbd, 0xd6, 0x63, 0xc7, 0x6a, 0xc7, 0xf1, 0x9f, 0xe0, 0x3a, 0xbc, + 0xc6, 0xcc, 0xef, 0x45, 0x48, 0xe6, 0xf7, 0xd1, 0xe4, 0xb2, 0x8e, 0xca, 0x03, 0x4f, 0xfc, 0x0e, + 0xe6, 0xc3, 0xc9, 0xf9, 0x8e, 0xd0, 0x82, 0x2b, 0x5b, 0xf1, 0x77, 0x99, 0xaa, 0xfd, 0x7d, 0x02, + 0x84, 0x51, 0xab, 0x67, 0x3e, 0x44, 0x84, 0xf9, 0x96, 0xa6, 0x9e, 0x29, 0x7a, 0x0f, 0xb7, 0x59, + 0xca, 0xf1, 0xfe, 0x24, 0x9b, 0xc7, 0x1c, 0x48, 0xc9, 0xa6, 0x15, 0x87, 0x6c, 0x50, 0x0e, 0x66, + 0x7b, 0xd8, 0x30, 0xe4, 0x8e, 0x2d, 0x96, 0xfd, 0xc9, 0xff, 0x32, 0x0e, 0xf3, 0x0e, 0x09, 0x52, + 0x03, 0x1a, 0x4c, 0xdd, 0xd7, 0xc1, 0xeb, 0x08, 0xf0, 0xfa, 0xca, 0x1c, 0x7b, 0x0d, 0x65, 0x6e, + 0x7b, 0x94, 0x99, 0x9a, 0xc3, 0xfe, 0x6b, 0x89, 0x3d, 0x42, 0xaf, 0xbf, 0x73, 0x05, 0x14, 0x7e, + 0x07, 0x50, 0x55, 0x31, 0x58, 0xea, 0xe6, 0xb8, 0x25, 0x2b, 0x53, 0x93, 0x2f, 0x24, 0xac, 0x9a, + 0xba, 0xc2, 0xc2, 0xf5, 0xa4, 0x08, 0x3d, 0xf9, 0xa2, 0x4c, 0x21, 0x56, 0x48, 0x6f, 0x98, 0xb2, + 0x6e, 0x2a, 0x6a, 0x47, 0x32, 0xb5, 0x2f, 0xb1, 0x53, 0xe9, 0xb5, 0xa1, 0x4d, 0x0b, 0x28, 0xfc, + 0x77, 0x0c, 0xb2, 0x1e, 0xf6, 0x4c, 0x27, 0x3f, 0x86, 0xd9, 0x21, 0x6f, 0x4f, 0x18, 0x1f, 0x82, + 0x9d, 0xa7, 0xdb, 0x66, 0x53, 0xa0, 0x4d, 0x00, 0x15, 0x5f, 0x98, 0x9e, 0x79, 0xe7, 0x2d, 0x08, + 0x99, 0x93, 0xff, 0x23, 0xce, 0xc9, 0xf4, 0x4d, 0xd9, 0x1c, 0x90, 0xac, 0x92, 0xb9, 0x68, 0xdc, + 0x96, 0xd8, 0x1d, 0x43, 0xe7, 0x9d, 0x17, 0x33, 0xce, 0x48, 0x8d, 0xdc, 0x36, 0x06, 0x3a, 0x70, + 0x8a, 0xa8, 0x2d, 0x4d, 0x6d, 0x2b, 0xe6, 0xb0, 0x88, 0x7a, 0x33, 0x90, 0x20, 0xd0, 0xe1, 0xa2, + 0x95, 0x57, 0xd9, 0x65, 0x53, 0x07, 0xca, 0x7f, 0x05, 0x49, 0x7a, 0x1c, 0x13, 0x16, 0x0b, 0xd0, + 0xa7, 0x90, 0x32, 0x88, 0xc4, 0xfe, 0xc2, 0x48, 0xd8, 0x9e, 0xb8, 0x57, 0x28, 0x32, 0x3a, 0xe1, + 0x87, 0xc0, 0x0f, 0x2f, 0xa6, 0x03, 0x6c, 0x4e, 0x7e, 0xfd, 0xee, 0x59, 0x6b, 0x10, 0x7e, 0x16, + 0x83, 0xf5, 0x50, 0x06, 0xd3, 0x95, 0x3d, 0xd0, 0xa1, 0x6f, 0x25, 0xdf, 0x0f, 0xde, 0xd8, 0x01, + 0xe6, 0xa1, 0x2b, 0xe2, 0x7f, 0xff, 0x6a, 0x87, 0x59, 0x9c, 0xfa, 0x30, 0x03, 0xe7, 0x48, 0x77, + 0xe6, 0x97, 0x31, 0x40, 0x07, 0xd8, 0x74, 0x52, 0x65, 0xb6, 0xa5, 0x11, 0xfe, 0x86, 0x7b, 0x0d, + 0x7f, 0xf3, 0x63, 0x8f, 0xbf, 0xa1, 0x1e, 0xeb, 0xbe, 0xab, 0x2d, 0xe2, 0x9b, 0x7a, 0xe4, 0x6d, + 0x19, 0x91, 0x9e, 0xd2, 0x98, 0x7f, 0xb2, 0xf4, 0xf4, 0x8a, 0x6e, 0xe5, 0x3f, 0x39, 0xc8, 0x7a, + 0x84, 0x66, 0x1a, 0xf4, 0x10, 0x90, 0x7c, 0x2e, 0x2b, 0x5d, 0xd9, 0x12, 0xcc, 0x4e, 0xff, 0x59, + 0x39, 0x60, 0xd9, 0x19, 0xb1, 0xc9, 0xd0, 0x53, 0xc8, 0xf6, 0xe4, 0x0b, 0xa5, 0x37, 0xe8, 0x49, + 0x6c, 0x9f, 0x0d, 0xe5, 0xa7, 0x76, 0xe1, 0x70, 0x3d, 0x50, 0x40, 0xaf, 0xa8, 0xe6, 0x87, 0xef, + 0xd3, 0x0a, 0xfa, 0x32, 0xa3, 0x63, 0xca, 0xa3, 0xfc, 0x14, 0xa3, 0x63, 0xc8, 0xf6, 0x14, 0x35, + 0xc0, 0x2c, 0x3e, 0x96, 0x19, 0x35, 0xf0, 0x65, 0x46, 0x3c, 0xe4, 0x28, 0x08, 0xee, 0xa0, 0x97, + 0x2d, 0xd7, 0xdf, 0x46, 0xea, 0xba, 0x83, 0xc5, 0x00, 0x0e, 0xdb, 0x96, 0x83, 0xd0, 0x56, 0xd2, + 0xdd, 0xa0, 0xd9, 0xb0, 0xbe, 0x4a, 0x64, 0x57, 0xe9, 0xff, 0xe2, 0x6e, 0x0b, 0x0e, 0x60, 0xa3, + 0x8f, 0x21, 0xae, 0xf7, 0x5b, 0xcc, 0x7c, 0xbf, 0x37, 0x01, 0xff, 0xbc, 0x78, 0x5c, 0x3a, 0x9c, + 0x11, 0x2d, 0x2a, 0xfe, 0xcf, 0xe2, 0x10, 0x17, 0x8f, 0x4b, 0xe8, 0x53, 0x4f, 0x8b, 0xe5, 0xc1, + 0x84, 0x5c, 0xdc, 0x1d, 0x96, 0x7f, 0x89, 0x85, 0xb5, 0x58, 0x72, 0xb0, 0x52, 0x12, 0xcb, 0x85, + 0x66, 0x59, 0xda, 0x2f, 0x57, 0xcb, 0xcd, 0xb2, 0x44, 0x5b, 0x40, 0x19, 0x0e, 0x6d, 0x40, 0xee, + 0xf8, 0xa4, 0x58, 0xad, 0x34, 0x0e, 0xa5, 0x93, 0x9a, 0xfd, 0x8b, 0x8d, 0xc6, 0x50, 0x06, 0x16, + 0xaa, 0x95, 0x46, 0x93, 0x01, 0x1a, 0x99, 0xb8, 0x05, 0x39, 0x28, 0x37, 0xa5, 0x52, 0xe1, 0xb8, + 0x50, 0xaa, 0x34, 0x5f, 0x64, 0x12, 0x88, 0x87, 0x35, 0x2f, 0xef, 0x46, 0xad, 0x70, 0xdc, 0x38, + 0xac, 0x37, 0x33, 0x49, 0x84, 0x60, 0x89, 0xd0, 0xdb, 0xa0, 0x46, 0x26, 0x65, 0x71, 0x28, 0x55, + 0xeb, 0x35, 0x47, 0x86, 0x59, 0xb4, 0x02, 0x19, 0x7b, 0x66, 0xb1, 0x5c, 0xd8, 0x27, 0x05, 0xbd, + 0x39, 0xb4, 0x0c, 0x8b, 0xe5, 0x9f, 0x1c, 0x17, 0x6a, 0xfb, 0x36, 0xe2, 0x3c, 0xda, 0x86, 0x0d, + 0xb7, 0x38, 0x12, 0xa3, 0x2a, 0xef, 0x93, 0xa2, 0x5c, 0x23, 0x03, 0xe8, 0x16, 0x64, 0x58, 0x77, + 0xab, 0x54, 0xaf, 0xed, 0x57, 0x9a, 0x95, 0x7a, 0x2d, 0x93, 0xa6, 0x15, 0xbc, 0x2c, 0x80, 0x25, + 0x39, 0x63, 0xb6, 0x30, 0xbe, 0xac, 0xb7, 0x48, 0xcb, 0x7a, 0x76, 0xc5, 0xfa, 0x9b, 0x18, 0xac, + 0xd2, 0x92, 0xb5, 0x5d, 0x20, 0xb7, 0x7d, 0xd5, 0x0e, 0x64, 0x68, 0xbd, 0x4b, 0xf2, 0xdf, 0x02, + 0x4b, 0x14, 0xfe, 0xcc, 0xce, 0x3b, 0xec, 0xf6, 0x52, 0xcc, 0xd5, 0x5e, 0xaa, 0xf8, 0xb3, 0xb0, + 0xfb, 0xde, 0x46, 0x8c, 0x6f, 0xb6, 0x51, 0x89, 0xfd, 0x51, 0x48, 0x9a, 0xf0, 0x70, 0x34, 0xb7, + 0x51, 0x21, 0xd4, 0x55, 0xb2, 0xf8, 0x2b, 0x7a, 0xb9, 0x27, 0xb0, 0xe6, 0x97, 0x97, 0x19, 0xf4, + 0x83, 0x40, 0xbb, 0xc4, 0x71, 0xbb, 0x0e, 0xae, 0x83, 0x21, 0xfc, 0x1b, 0x07, 0x73, 0x36, 0xd8, + 0x0a, 0x6f, 0x2c, 0xbf, 0xe4, 0xa9, 0x94, 0xce, 0x5b, 0x10, 0xa7, 0xf0, 0xea, 0x6e, 0x74, 0xc4, + 0xfc, 0x8d, 0x8e, 0xd0, 0x73, 0x8e, 0x87, 0x9e, 0xf3, 0x8f, 0x60, 0xb1, 0x65, 0x89, 0xaf, 0x68, + 0xaa, 0x64, 0x2a, 0x3d, 0xbb, 0x10, 0x1a, 0x6c, 0x4c, 0x36, 0xed, 0xd7, 0x04, 0xe2, 0x82, 0x4d, + 0x60, 0x81, 0xd0, 0x36, 0x2c, 0x90, 0x46, 0xa5, 0x64, 0x6a, 0xd2, 0xc0, 0xc0, 0xb9, 0x24, 0x29, + 0x0b, 0x01, 0x81, 0x35, 0xb5, 0x13, 0x03, 0x0b, 0x7f, 0xc7, 0xc1, 0x2a, 0xad, 0x76, 0xf9, 0xd5, + 0x71, 0x5c, 0xc3, 0xc6, 0xad, 0x71, 0xbe, 0xdb, 0x30, 0x94, 0xe1, 0x9b, 0x4a, 0xf6, 0x73, 0xb0, + 0xe6, 0x9f, 0x8f, 0x65, 0xf8, 0xbf, 0x8a, 0xc1, 0x8a, 0x15, 0x9a, 0xd9, 0x03, 0xd7, 0x1d, 0x3d, + 0x4f, 0x71, 0x92, 0xbe, 0xcd, 0x4c, 0x04, 0x36, 0xf3, 0xd0, 0x9f, 0x3f, 0xbf, 0xe3, 0x0e, 0x2e, + 0xfd, 0x2b, 0x78, 0x53, 0x7b, 0xf9, 0x0b, 0x0e, 0x56, 0x7d, 0xf3, 0x31, 0x7b, 0xf9, 0xc4, 0x9f, + 0x10, 0xdc, 0x8d, 0x90, 0xef, 0xb5, 0x52, 0x82, 0x0f, 0xec, 0x50, 0x7c, 0x3a, 0xb3, 0xfc, 0xd7, + 0x18, 0x6c, 0x0e, 0x2f, 0x35, 0xf2, 0x54, 0xa0, 0x3d, 0x45, 0x45, 0xeb, 0x6a, 0x1d, 0xf9, 0xcf, + 0xfc, 0x0e, 0x77, 0x37, 0x78, 0xcf, 0x86, 0x88, 0x34, 0xca, 0xf1, 0x86, 0x16, 0x82, 0x13, 0xd3, + 0x16, 0x82, 0xaf, 0xa4, 0x01, 0xbf, 0xe7, 0xae, 0x71, 0x7b, 0xc5, 0x67, 0x9a, 0x30, 0x61, 0xb3, + 0xe8, 0x43, 0xb8, 0x49, 0xa2, 0x7f, 0xe7, 0xa5, 0x8b, 0xdd, 0x7f, 0xa7, 0x2e, 0x71, 0x4e, 0x5c, + 0xb5, 0x86, 0x9d, 0xe7, 0x1d, 0xac, 0x41, 0xd2, 0x16, 0xbe, 0x4d, 0xc0, 0x9a, 0x95, 0x1d, 0x34, + 0x4c, 0xb9, 0x33, 0x4d, 0xeb, 0xe0, 0xb7, 0x83, 0x95, 0xd8, 0x98, 0xf7, 0x58, 0xc2, 0xb9, 0x4e, + 0x52, 0x80, 0x45, 0x79, 0xc8, 0x1a, 0xa6, 0xdc, 0x21, 0xee, 0x40, 0xd6, 0x3b, 0xd8, 0x94, 0xfa, + 0xb2, 0xf9, 0x8a, 0xd9, 0xfa, 0x32, 0x1b, 0x6a, 0x92, 0x91, 0x63, 0xd9, 0x7c, 0x75, 0x4d, 0x07, + 0x89, 0x7e, 0xec, 0x77, 0x0a, 0xef, 0x8e, 0x59, 0xcb, 0x08, 0xdd, 0xfa, 0x49, 0x44, 0xb5, 0xfe, + 0xbd, 0x31, 0x2c, 0xc7, 0x57, 0xe9, 0xaf, 0x5e, 0x9d, 0xfe, 0x8e, 0x0b, 0xfd, 0xb7, 0xe0, 0x66, + 0x60, 0xf1, 0xec, 0x0a, 0xe9, 0x40, 0xce, 0x1a, 0x3a, 0x51, 0x8d, 0x29, 0xd5, 0x31, 0x42, 0x63, + 0x62, 0x11, 0x1a, 0x23, 0xac, 0xc3, 0xad, 0x90, 0x89, 0x98, 0x14, 0x7f, 0x93, 0xa4, 0x62, 0x4c, + 0xdf, 0x73, 0xfa, 0x3c, 0xca, 0x2a, 0xde, 0x77, 0x1f, 0x7b, 0x68, 0x7b, 0xe6, 0x4d, 0xd8, 0xc5, + 0x16, 0xa4, 0xdd, 0x78, 0xec, 0x1a, 0x34, 0xc7, 0x18, 0x4e, 0xf2, 0x4a, 0xad, 0xb0, 0x94, 0xaf, + 0x15, 0x56, 0x1d, 0x1a, 0xd5, 0xac, 0x37, 0xb4, 0x8d, 0xdc, 0x8a, 0x11, 0x66, 0xf5, 0x32, 0x60, + 0x56, 0x73, 0xde, 0xfe, 0x5a, 0x24, 0xd3, 0xdf, 0x00, 0xc3, 0x62, 0x4a, 0x1d, 0xda, 0xf8, 0x12, + 0x5e, 0x02, 0x4f, 0x35, 0x7e, 0xfa, 0x56, 0x94, 0x4f, 0x8d, 0x62, 0x7e, 0x35, 0x12, 0x36, 0x61, + 0x3d, 0x94, 0x37, 0x9b, 0xfa, 0x8f, 0x39, 0x2a, 0x98, 0x53, 0xe3, 0x6a, 0x98, 0xb2, 0x69, 0x4c, + 0x3a, 0x35, 0x1b, 0x74, 0x4f, 0x4d, 0x41, 0x44, 0x83, 0xa7, 0x34, 0x09, 0xe1, 0x4f, 0x39, 0xba, + 0x0f, 0x7e, 0x59, 0xd8, 0x6d, 0xfb, 0x0e, 0x24, 0x07, 0xa4, 0x8c, 0x4f, 0xa3, 0xae, 0xac, 0xd7, + 0x08, 0x4e, 0xac, 0x21, 0x91, 0x62, 0x5c, 0x5b, 0x61, 0x54, 0xf8, 0x15, 0x07, 0x69, 0x17, 0x7f, + 0xb4, 0x01, 0xf3, 0x4e, 0xe5, 0xc7, 0xce, 0x77, 0x1c, 0x80, 0x75, 0xfc, 0xa6, 0x66, 0xca, 0x5d, + 0xf6, 0xc4, 0x84, 0x7e, 0x58, 0x29, 0xea, 0xc0, 0xc0, 0x34, 0x1c, 0x8e, 0x8b, 0xe4, 0x37, 0x7a, + 0x00, 0x89, 0x81, 0xaa, 0x98, 0xc4, 0xec, 0x97, 0xfc, 0xf6, 0x4c, 0xa6, 0xca, 0x9f, 0xa8, 0x8a, + 0x29, 0x12, 0x2c, 0xe1, 0x3e, 0x24, 0xac, 0x2f, 0x6f, 0x05, 0x62, 0x1e, 0x92, 0xc5, 0x17, 0xcd, + 0x72, 0x23, 0xc3, 0x21, 0x80, 0x54, 0x85, 0xe6, 0xeb, 0x31, 0xa1, 0x6a, 0x3f, 0x33, 0x75, 0x16, + 0x61, 0xb9, 0x00, 0xf9, 0x54, 0xd5, 0xf4, 0x9e, 0xdc, 0x25, 0x32, 0xcf, 0x89, 0xce, 0x77, 0x74, + 0x77, 0x84, 0xd6, 0x12, 0x37, 0x9c, 0x13, 0x09, 0xab, 0x17, 0x7d, 0x41, 0x75, 0x2b, 0xaa, 0x52, + 0x54, 0x08, 0xad, 0x14, 0x6d, 0x7a, 0x6e, 0xd9, 0x31, 0x35, 0xa2, 0x7f, 0x88, 0xc1, 0x6a, 0x28, + 0x1e, 0xfa, 0xc0, 0x5d, 0x1d, 0xba, 0x33, 0x92, 0xa7, 0xbb, 0x2e, 0xf4, 0x2d, 0x47, 0xeb, 0x42, + 0x7b, 0x9e, 0xba, 0xd0, 0xdb, 0x63, 0xe9, 0xdd, 0x15, 0xa1, 0x5f, 0x70, 0x11, 0x15, 0xa1, 0x46, + 0xb3, 0x70, 0x50, 0x96, 0x4e, 0x6a, 0xf4, 0xaf, 0x53, 0x11, 0x5a, 0x81, 0xcc, 0xb0, 0x4e, 0x22, + 0x35, 0x9a, 0x85, 0x66, 0x23, 0x13, 0x0b, 0x56, 0x63, 0xe2, 0xa1, 0xb5, 0x96, 0xc4, 0xf8, 0xb2, + 0x4a, 0x92, 0xa2, 0xac, 0x01, 0x62, 0xd4, 0x47, 0xf5, 0x93, 0x5a, 0x53, 0x3a, 0x10, 0xeb, 0x27, + 0xc7, 0x99, 0x94, 0x53, 0x6e, 0x59, 0x01, 0xc4, 0x4e, 0xcb, 0xfd, 0x6a, 0xfe, 0x2f, 0x38, 0xc8, + 0x7a, 0xc0, 0xec, 0xf0, 0x5c, 0x3d, 0x6e, 0xce, 0xd3, 0xe3, 0x7e, 0x04, 0x2b, 0x56, 0xc6, 0x48, + 0x2d, 0xc5, 0x90, 0xfa, 0x58, 0x27, 0xb5, 0x6d, 0xa6, 0xf3, 0xcb, 0x3d, 0xf9, 0x82, 0xd5, 0xff, + 0x8f, 0xb1, 0x6e, 0x31, 0xbe, 0x86, 0x0a, 0xaf, 0xf0, 0x75, 0x9c, 0xc6, 0x25, 0x53, 0xe7, 0x35, + 0x63, 0x7d, 0x54, 0x30, 0xf1, 0x89, 0x4f, 0x91, 0xf8, 0x44, 0x78, 0xb8, 0xc4, 0x54, 0xc1, 0xf0, + 0xf4, 0x77, 0x7a, 0x6d, 0x78, 0x6f, 0xd3, 0xc8, 0xf5, 0x81, 0x5b, 0x7f, 0xc7, 0x66, 0x5a, 0xa9, + 0xaf, 0x8b, 0xdc, 0xcf, 0xaf, 0x2b, 0x4f, 0x2e, 0xd0, 0x78, 0xec, 0x0a, 0xf9, 0xd1, 0xee, 0xff, + 0x72, 0x30, 0x57, 0x69, 0x63, 0xd5, 0xa4, 0x6b, 0x5b, 0xf4, 0xfc, 0x63, 0x05, 0xda, 0x88, 0xf8, + 0x7f, 0x0b, 0xb2, 0x30, 0x7e, 0x73, 0xe4, 0x7f, 0x63, 0x08, 0x33, 0xe8, 0xcc, 0xf5, 0x4f, 0x21, + 0x9e, 0x26, 0xc6, 0x5b, 0x01, 0xca, 0x10, 0x17, 0xc7, 0xdf, 0x1b, 0x83, 0xe5, 0xcc, 0xf3, 0x21, + 0x24, 0xc9, 0x13, 0x7a, 0xb4, 0xe2, 0x3c, 0xe3, 0x77, 0xbd, 0xb0, 0xe7, 0x57, 0x7d, 0x50, 0x9b, + 0x6e, 0xf7, 0x9f, 0xe6, 0x01, 0x86, 0x69, 0x26, 0x7a, 0x0a, 0x0b, 0xee, 0x57, 0xbc, 0x68, 0x7d, + 0xc4, 0x1b, 0x72, 0x7e, 0x23, 0x7c, 0xd0, 0x91, 0xe9, 0x29, 0x2c, 0xb8, 0x9f, 0x6f, 0x0d, 0x99, + 0x85, 0x3c, 0x21, 0x1b, 0x32, 0x0b, 0x7d, 0xf1, 0x35, 0x83, 0xba, 0x70, 0x33, 0xe2, 0x01, 0x0f, + 0x7a, 0x7b, 0xb2, 0x67, 0x4e, 0xfc, 0xf7, 0x26, 0x7c, 0x09, 0x24, 0xcc, 0x20, 0x1d, 0x6e, 0x45, + 0xbe, 0x5b, 0x41, 0x3b, 0x93, 0xbe, 0xaa, 0xe1, 0xdf, 0x99, 0x00, 0xd3, 0x99, 0x73, 0x00, 0x7c, + 0x74, 0xb3, 0x1c, 0xbd, 0x33, 0xf1, 0x2b, 0x0e, 0xfe, 0xfe, 0xe4, 0xbd, 0x77, 0x61, 0x06, 0x1d, + 0x42, 0xda, 0xd5, 0x35, 0x45, 0x7c, 0x68, 0x2b, 0x95, 0x32, 0x5e, 0x1f, 0xd1, 0x66, 0xa5, 0x9c, + 0x5c, 0x8d, 0xac, 0x21, 0xa7, 0x60, 0x4b, 0x6e, 0xc8, 0x29, 0xa4, 0xf3, 0xe5, 0xdf, 0x7e, 0xdf, + 0xfd, 0x1e, 0xb6, 0xfd, 0xe1, 0x01, 0x42, 0xd8, 0xf6, 0x47, 0x04, 0x0b, 0xc2, 0x0c, 0xfa, 0x0c, + 0x96, 0xbc, 0x15, 0x6a, 0xb4, 0x39, 0xb2, 0xd2, 0xce, 0xdf, 0x8e, 0x1a, 0x76, 0xb3, 0xf4, 0x16, + 0x44, 0x87, 0x2c, 0x43, 0x0b, 0xb3, 0x43, 0x96, 0x11, 0x75, 0xd4, 0x19, 0xcb, 0x3f, 0x79, 0xca, + 0x7c, 0x43, 0xff, 0x14, 0x56, 0x9d, 0x1c, 0xfa, 0xa7, 0xd0, 0xda, 0xa0, 0x30, 0x83, 0x14, 0x58, + 0x0b, 0xaf, 0x32, 0xa1, 0x7b, 0x13, 0x15, 0xd1, 0xf8, 0xb7, 0xc7, 0xa1, 0x39, 0x53, 0xb5, 0x20, + 0x1b, 0xd2, 0xd4, 0x46, 0xc2, 0xc8, 0x8e, 0x37, 0x9d, 0xe4, 0xee, 0x04, 0x5d, 0x71, 0xc1, 0x8a, + 0x42, 0x76, 0xff, 0x23, 0x09, 0x09, 0x72, 0xed, 0x37, 0xe1, 0x86, 0xaf, 0x94, 0x80, 0x6e, 0x8f, + 0x2e, 0xb0, 0xf0, 0x5b, 0x91, 0xe3, 0xce, 0x1a, 0x5e, 0xc2, 0x72, 0xa0, 0x38, 0x80, 0xb6, 0xdd, + 0x74, 0x61, 0x05, 0x0a, 0xfe, 0xce, 0x08, 0x0c, 0x3f, 0x6f, 0xaf, 0x6f, 0xdb, 0x1e, 0x97, 0xbd, + 0x7a, 0x79, 0x47, 0xf9, 0xb3, 0x2f, 0x68, 0x94, 0xe5, 0xf7, 0x64, 0x82, 0x57, 0xae, 0x50, 0x1f, + 0x76, 0x77, 0x24, 0x8e, 0x33, 0xc3, 0xe7, 0x4e, 0x78, 0xe7, 0x4a, 0x9e, 0x90, 0x47, 0xb8, 0xd0, + 0x24, 0x8f, 0x17, 0x46, 0xa1, 0x38, 0xec, 0x9f, 0x43, 0xc6, 0x7f, 0xcf, 0xa3, 0xad, 0x31, 0x61, + 0x07, 0xbf, 0x1d, 0x8d, 0xe0, 0xdf, 0x19, 0xbf, 0x93, 0xf1, 0x4b, 0x15, 0xe6, 0x5e, 0xee, 0x8e, + 0xc4, 0x71, 0xbb, 0x45, 0x57, 0x84, 0x3b, 0x74, 0x8b, 0xc1, 0x68, 0x78, 0xe8, 0x16, 0x43, 0x42, + 0x62, 0x61, 0x66, 0xef, 0x31, 0x80, 0xdc, 0xed, 0xbf, 0x92, 0x25, 0xac, 0x0e, 0x7a, 0x68, 0x23, + 0xd0, 0x7c, 0x2a, 0xab, 0x83, 0x5e, 0xbd, 0x6f, 0x25, 0x5d, 0x46, 0xee, 0xaf, 0xe6, 0x48, 0xaa, + 0x35, 0x4f, 0x08, 0xac, 0x81, 0xbd, 0x2a, 0x64, 0x86, 0xd4, 0x12, 0x09, 0xa1, 0xd0, 0x9d, 0x50, + 0x1e, 0xa4, 0x95, 0xef, 0x63, 0xb4, 0xe4, 0x30, 0x22, 0xa3, 0x7b, 0x9f, 0x00, 0xb4, 0x0c, 0x45, + 0xa2, 0x31, 0x1c, 0xda, 0x0c, 0xf0, 0x79, 0xa2, 0xe0, 0x6e, 0xdb, 0xe6, 0xf1, 0x97, 0x4c, 0x98, + 0x96, 0xa1, 0xd0, 0x48, 0x6f, 0xef, 0x47, 0x90, 0xa6, 0xc2, 0x9c, 0x59, 0x78, 0xe3, 0xe8, 0x99, + 0x0c, 0x74, 0xf5, 0x64, 0x64, 0xaf, 0x0c, 0x8b, 0x94, 0x01, 0x4b, 0x18, 0xd1, 0x56, 0x80, 0xc5, + 0x11, 0x1d, 0xf1, 0x31, 0x59, 0x20, 0x64, 0x6c, 0x6c, 0xaf, 0x08, 0x0b, 0x36, 0x1b, 0xf3, 0x95, + 0xd6, 0x46, 0xb7, 0x43, 0xb8, 0x58, 0x03, 0x3e, 0x26, 0x69, 0xc6, 0xc4, 0x1a, 0x1a, 0x8a, 0x62, + 0xff, 0x77, 0x69, 0x50, 0x14, 0x96, 0xd4, 0x85, 0x8a, 0xc2, 0xc6, 0x8a, 0xc9, 0x97, 0xf1, 0x96, + 0xa1, 0x9c, 0xa6, 0x08, 0xd1, 0x0f, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x6f, 0x0a, 0xad, 0x10, + 0x0a, 0x3d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/spec.md b/spec.md index 8f513211..512097f6 100644 --- a/spec.md +++ b/spec.md @@ -378,7 +378,9 @@ service Controller { returns (ControllerExpandVolumeResponse) {} rpc ControllerGetVolume (ControllerGetVolumeRequest) - returns (ControllerGetVolumeResponse) {} + returns (ControllerGetVolumeResponse) { + option (alpha_method) = true; + } } service Node { @@ -1487,7 +1489,7 @@ message ListVolumesResponse { // This field is OPTIONAL. // This field MUST be specified if the // VOLUME_CONDITION controller capability is supported. - VolumeCondition volume_condition = 2; + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message Entry { @@ -1537,12 +1539,16 @@ If the volume does not exist any more, `ControllerGetVolume` should return gRPC ```protobuf message ControllerGetVolumeRequest { + option (alpha_message) = true; + // The ID of the volume to fetch current volume information for. // This field is REQUIRED. string volume_id = 1; } message ControllerGetVolumeResponse { + option (alpha_message) = true; + message VolumeStatus{ // A list of all the `node_id` of nodes that this volume is // controller published on. @@ -1716,12 +1722,14 @@ message ControllerServiceCapability { // If for some reason Controller and Node Plugins report // misaligned volume conditions, CO SHALL assume the worst case // is the truth. - VOLUME_CONDITION = 11; + // Note that, for alpha, `VolumeCondition` is intended be + // informative for humans only, not for automation. + VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; // Indicates the SP supports the ControllerGetVolume RPC. // This enables COs to, for example, fetch per volume // condition after a volume is provisioned. - GET_VOLUME = 12; + GET_VOLUME = 12 [(alpha_enum_value) = true]; // Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or // SINGLE_NODE_MULTI_WRITER access modes. @@ -2456,7 +2464,7 @@ message NodeGetVolumeStatsResponse { // This field is OPTIONAL. // This field MUST be specified if the VOLUME_CONDITION node // capability is supported. - VolumeCondition volume_condition = 2; + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message VolumeUsage { @@ -2483,6 +2491,8 @@ message VolumeUsage { // VolumeCondition represents the current condition of a volume. message VolumeCondition { + option (alpha_message) = true; + // Normal volumes are available for use and operating optimally. // An abnormal volume does not meet these criteria. // This field is REQUIRED. @@ -2542,7 +2552,9 @@ message NodeServiceCapability { // If for some reason Node and Controller Plugins report // misaligned volume conditions, CO SHALL assume the worst case // is the truth. - VOLUME_CONDITION = 4; + // Note that, for alpha, `VolumeCondition` is intended to be + // informative for humans only, not for automation. + VOLUME_CONDITION = 4 [(alpha_enum_value) = true]; // Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or // SINGLE_NODE_MULTI_WRITER access modes.