From ee32cf35d7d3d287924bceba96b910fde3b37be2 Mon Sep 17 00:00:00 2001 From: Ibrahim Jarif Date: Wed, 22 Apr 2020 12:37:44 +0530 Subject: [PATCH] Update badger to commit cddf7c03451c (#5216) This PR updates badger to latest version https://github.com/dgraph-io/badger/commit/cddf7c03451c . This PR also changes the following things. 1. Removes the second argument from `watermark.Init()` function. The second parameter was removed Init() function by commit https://github.com/dgraph-io/badger/commit/09dd2e1a4195dbd801ffd09292aa8c9da31e25fc 2. go.mod and go.sum updates 3. Change `pb.KV` in `pb.proto` to use `badgerpb2.KV` instead of `badgerpb2.KV`. The protobuf package was renamed from `pb` to `badgr.pb2` https://github.com/dgraph-io/badger/commit/cddf7c03451c91e7a9c9df4121d16e1a56937786. NOTE - I've updated badger using `go get -u ... ` command. All the changes in go.mod file except badger are a side effect of badger update. Following new commits are being added from badger ``` git log 91c31ebe8c22...cddf7c03451c --oneline ``` ``` cddf7c0 Proto: Rename dgraph.badger.v2.pb to badgerpb2 (#1314) fd693e4 Support entry version in Write batch (#1310) f9332eb Disable go 1.11 builds on travis (#1306) 09dd2e1 Replace EventLog with Logger (#1203) 4f6763c Add leveled logging (#1249) 30eeec2 Update issue template (#1295) 8097259 Proto: make badger/v2 compatible with v1 (#1293) 2e708d9 Fail fast if cgo is disabled and compression is ZSTD (#1284) 6e032c0 Fix race condition in DoesNotHave (#1287) fa94030 Fix Sequence generates duplicate values (#1281) 69f35b3 Add go_package in .proto (#1282) 5f48d42 Disable eventlogging by default (#1285) 4b539b9 Update Project Status in readme.md (#1274) ``` (cherry picked from commit 7b37ddba6d98a5d5e49ecd1e6d76295fba18ddec) --- conn/node.go | 2 +- dgraph/cmd/zero/oracle.go | 2 +- go.mod | 14 +- go.sum | 39 ++- posting/index.go | 1 - protos/pb.proto | 24 +- protos/pb/pb.pb.go | 534 +++++++++++++++++------------------ wiki/content/deploy/index.md | 18 +- 8 files changed, 324 insertions(+), 310 deletions(-) diff --git a/conn/node.go b/conn/node.go index dd2ef1c24ef..df34386e7ee 100644 --- a/conn/node.go +++ b/conn/node.go @@ -139,7 +139,7 @@ func NewNode(rc *pb.RaftContext, store *raftwal.DiskStorage) *Node { peers: make(map[uint64]string), requestCh: make(chan linReadReq, 100), } - n.Applied.Init(nil, true) + n.Applied.Init(nil) // This should match up to the Applied index set above. n.Applied.SetDoneUntil(n.Cfg.Applied) glog.Infof("Setting raft.Config to: %+v\n", n.Cfg) diff --git a/dgraph/cmd/zero/oracle.go b/dgraph/cmd/zero/oracle.go index 92389618ded..98eaa3b5eec 100644 --- a/dgraph/cmd/zero/oracle.go +++ b/dgraph/cmd/zero/oracle.go @@ -61,7 +61,7 @@ func (o *Oracle) Init() { o.keyCommit = make(map[string]uint64) o.subscribers = make(map[int]chan pb.OracleDelta) o.updates = make(chan *pb.OracleDelta, 100000) // Keeping 1 second worth of updates. - o.doneUntil.Init(nil, true) + o.doneUntil.Init(nil) go o.sendDeltasToSubscribers() } diff --git a/go.mod b/go.mod index 87a8eb6b003..11b6c671ad3 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/99designs/gqlgen v0.11.0 github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1 // indirect github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08 - github.com/DataDog/zstd v1.4.4 // indirect + github.com/DataDog/zstd v1.4.5 // indirect github.com/OneOfOne/xxhash v1.2.5 // indirect github.com/beorn7/perks v1.0.0 // indirect github.com/blevesearch/bleve v0.0.0-20181114232033-e1f5e6cdcd76 @@ -16,11 +16,11 @@ require ( github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f // indirect github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d // indirect github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd - github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200316175624-91c31ebe8c22 + github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200421062606-cddf7c03451c github.com/dgraph-io/dgo/v2 v2.2.1-0.20200319183917-53c7d5bc32a7 github.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3 github.com/dgrijalva/jwt-go v3.2.0+incompatible - github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b + github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1 github.com/dustin/go-humanize v1.0.0 github.com/getsentry/sentry-go v0.5.1 @@ -29,7 +29,7 @@ require ( github.com/gogo/protobuf v1.3.1 github.com/golang/geo v0.0.0-20170810003146-31fb0106dc4a github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b - github.com/golang/protobuf v1.3.3 + github.com/golang/protobuf v1.4.0 github.com/golang/snappy v0.0.1 github.com/google/codesearch v1.0.0 github.com/google/go-cmp v0.4.0 @@ -38,7 +38,7 @@ require ( github.com/mitchellh/panicwrap v1.0.0 github.com/paulmach/go.geojson v0.0.0-20170327170536-40612a87147b github.com/philhofer/fwd v1.0.0 // indirect - github.com/pkg/errors v0.8.1 + github.com/pkg/errors v0.9.1 github.com/pkg/profile v1.2.1 github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect @@ -56,8 +56,8 @@ require ( go.etcd.io/etcd v0.0.0-20190228193606-a943ad0ee4c9 go.opencensus.io v0.21.0 golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 - golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 - golang.org/x/sys v0.0.0-20200116001909-b77594299b42 + golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e + golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f golang.org/x/text v0.3.2 google.golang.org/genproto v0.0.0-20190516172635-bb713bdc0e52 // indirect google.golang.org/grpc v1.23.0 diff --git a/go.sum b/go.sum index 0689241cd79..61ca8fcb321 100644 --- a/go.sum +++ b/go.sum @@ -18,8 +18,8 @@ github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1/go.mod h1:LButx github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08 h1:5btKvK+N+FpW0EEgvxq7LWcUEwIRLsL4IwIo0u+Qlhs= github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08/go.mod h1:gMGUEe16aZh0QN941HgDjwrdjU4iTthPoz2/AtDRADE= github.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/DataDog/zstd v1.4.4 h1:+IawcoXhCBylN7ccwdwf8LOH2jKq7NavGpEPanrlTzE= -github.com/DataDog/zstd v1.4.4/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= @@ -76,8 +76,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgraph-io/badger v1.6.0 h1:DshxFxZWXUcO0xX476VJC07Xsr6ZCBVRHKZ93Oh7Evo= github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= -github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200316175624-91c31ebe8c22 h1:X2g/STOldw/iNkdP9BHI/8zHe4N/Lkp8Z4jLyywtnCI= -github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200316175624-91c31ebe8c22/go.mod h1:3KY8+bsP8wI0OEnQJAKpd4wIJW/Mm32yw2j/9FUVnIM= +github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200421062606-cddf7c03451c h1:IXsBFBQ0g5JlPfu+3HotLmkej2xgyrkKceWmFlXSYIQ= +github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200421062606-cddf7c03451c/go.mod h1:3KY8+bsP8wI0OEnQJAKpd4wIJW/Mm32yw2j/9FUVnIM= github.com/dgraph-io/dgo/v2 v2.2.1-0.20200319183917-53c7d5bc32a7 h1:9oFXHEReyRIB291rbdGwRk1PYegGO2XBtZ8muXPKqPA= github.com/dgraph-io/dgo/v2 v2.2.1-0.20200319183917-53c7d5bc32a7/go.mod h1:LJCkLxm5fUMcU+yb8gHFjHt7ChgNuz3YnQQ6MQkmscI= github.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3 h1:MQLRM35Pp0yAyBYksjbj1nZI/w6eyRY/mWoM1sFf4kU= @@ -85,8 +85,8 @@ github.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3/go.mod h1:KP github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= -github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b h1:SeiGBzKrEtuDddnBABHkp4kq9sBGE9nuYmk6FPTg0zg= -github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= +github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 h1:fAjc9m62+UWV/WAFKLNi6ZS0675eEUC9y3AlwSbQu1Y= +github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1 h1:RSnSk6/ViWmqng/mNcPztSPgr6/4EVDxMmBH/a0w/6I= github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1/go.mod h1:MlkUQveSLEDbIgq2r1e++tSf0zfzU9mQpa9Qkczl+9Y= github.com/dgryski/trifles v0.0.0-20190318185328-a8d75aae118c h1:TUuUh0Xgj97tLMNtWtNvI9mIV6isjEb9lBMNv+77IGM= @@ -142,8 +142,12 @@ github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfb github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I= -github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0 h1:oOuy+ugB+P/kBdUnG5QaMXSIyJ1q38wWSojYCb3z5VQ= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= @@ -152,6 +156,8 @@ github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a/go.mod h1:lNA+9X1NB3Z github.com/google/codesearch v1.0.0 h1:z4h5JoHkUS+GqxqPDrldC3Y0Qq0vHAGgaDEW5pWU/ys= github.com/google/codesearch v1.0.0/go.mod h1:qCnXDFnak/trCmLaE50kgPte3AX9jSeruZexWEOivi0= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= @@ -271,8 +277,9 @@ github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1 h1:F++O52m40owAmADcojzM+9gyjmMOY/T4oYJkgFDH8RE= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -410,8 +417,8 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 h1:efeOvDhwQ29Dj3SdAV/MJf8oukgn+8D8WgaCaRMchF8= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -433,8 +440,10 @@ golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f h1:gWF768j/LaZugp8dyS4UwsslYCYz9XgFxvlgsn0n9H8= +golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -473,6 +482,12 @@ google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3 google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0 h1:AzbTB6ux+okLTzP8Ru1Xs41C303zdcfEht7MQnYJt5A= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0 h1:qdOKuR/EIArgaWNjetjgTzgVTAZ+S/WXVrq9HW9zimw= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= gopkg.in/DataDog/dd-trace-go.v1 v1.13.1 h1:oTzOClfuudNhW9Skkp2jxjqYO92uDKXqKLbiuPA13Rk= gopkg.in/DataDog/dd-trace-go.v1 v1.13.1/go.mod h1:DVp8HmDh8PuTu2Z0fVVlBsyWaC++fzwVCaGWylTe3tg= gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= diff --git a/posting/index.go b/posting/index.go index 022ce2bd11d..6e98e97ba2b 100644 --- a/posting/index.go +++ b/posting/index.go @@ -556,7 +556,6 @@ func (r *rebuilder) Run(ctx context.Context) error { WithNumVersionsToKeep(math.MaxInt64). WithLogger(&x.ToGlog{}). WithCompression(options.None). - WithEventLogging(false). WithLogRotatesToFlush(10). WithMaxCacheSize(50) // TODO(Aman): Disable cache altogether diff --git a/protos/pb.proto b/protos/pb.proto index 2daadd0f8cb..d65bbc1dd36 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -263,19 +263,19 @@ message Snapshot { } message Proposal { - Mutations mutations = 2; - repeated KV kv = 4; - MembershipState state = 5; - string clean_predicate = 6; // Delete the predicate which was moved to other group. - string key = 7; - OracleDelta delta = 8; - Snapshot snapshot = 9; // Used to tell the group when to take snapshot. - uint64 index = 10; // Used to store Raft index, in raft.Ready. - uint64 expected_checksum = 11; // Block an operation until membership reaches this checksum. + Mutations mutations = 2; + repeated badgerpb2.KV kv = 4; + MembershipState state = 5; + string clean_predicate = 6; // Delete the predicate which was moved to other group. + string key = 7; + OracleDelta delta = 8; + Snapshot snapshot = 9; // Used to tell the group when to take snapshot. + uint64 index = 10; // Used to store Raft index, in raft.Ready. + uint64 expected_checksum = 11; // Block an operation until membership reaches this checksum. } message KVS { - repeated pb.KV kv = 1; + repeated badgerpb2.KV kv = 1; // done used to indicate if the stream of KVS is over. bool done = 2; } @@ -514,7 +514,7 @@ service Worker { rpc Export (ExportRequest) returns (Status) {} rpc ReceivePredicate(stream KVS) returns (api.Payload) {} rpc MovePredicate(MovePredicatePayload) returns (api.Payload) {} - rpc Subscribe(SubscriptionRequest) returns (stream pb.KVList) {} + rpc Subscribe(SubscriptionRequest) returns (stream badgerpb2.KVList) {} } message SubscriptionRequest { @@ -522,7 +522,7 @@ message SubscriptionRequest { } message SubscriptionResponse { - pb.KVList kvs = 1; + badgerpb2.KVList kvs = 1; } message Num { diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index 5db883b1ecd..a458adfe219 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -4582,273 +4582,273 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 4245 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x7a, 0x3b, 0x6c, 0x1c, 0x57, - 0x77, 0xb0, 0x66, 0xf6, 0x35, 0x73, 0x76, 0x97, 0x5a, 0x8d, 0x65, 0x79, 0x4d, 0xdb, 0x22, 0x3d, - 0xb6, 0x6c, 0xfa, 0x21, 0x4a, 0xa6, 0xfd, 0xe3, 0xff, 0x6c, 0x20, 0x40, 0xf8, 0x58, 0xc9, 0xb4, - 0x28, 0x92, 0xdf, 0xdd, 0xa5, 0x9c, 0xcf, 0x45, 0x16, 0xc3, 0x99, 0xcb, 0xe5, 0x7c, 0x9c, 0x9d, - 0x99, 0xcc, 0x9d, 0x65, 0x96, 0xae, 0x12, 0x04, 0x49, 0x95, 0x54, 0x69, 0xbe, 0x2a, 0x49, 0x9d, - 0x26, 0x40, 0xaa, 0x20, 0x45, 0xaa, 0x14, 0x49, 0xaa, 0xf4, 0x01, 0x94, 0xc0, 0x49, 0x25, 0x20, - 0x55, 0x80, 0xd4, 0xc1, 0x39, 0xf7, 0xce, 0x6b, 0xb5, 0x92, 0xec, 0x0f, 0xf8, 0xaa, 0xbd, 0xe7, - 0x71, 0x5f, 0xe7, 0x9c, 0x7b, 0x5e, 0xb3, 0x60, 0xc4, 0xa7, 0x9b, 0x71, 0x12, 0xa5, 0x91, 0xa5, - 0xc7, 0xa7, 0xab, 0xa6, 0x13, 0xfb, 0x12, 0x5c, 0xfd, 0x70, 0xe2, 0xa7, 0xe7, 0xb3, 0xd3, 0x4d, - 0x37, 0x9a, 0xde, 0xf3, 0x26, 0x89, 0x13, 0x9f, 0xdf, 0xf5, 0xa3, 0x7b, 0xa7, 0x8e, 0x37, 0xe1, - 0xc9, 0xbd, 0xf8, 0xf4, 0x5e, 0x36, 0x6f, 0xf5, 0x6e, 0x89, 0x71, 0x12, 0x4d, 0xa2, 0x7b, 0x84, - 0x3e, 0x9d, 0x9d, 0x11, 0x44, 0x00, 0x8d, 0x24, 0xbb, 0xbd, 0x0a, 0xf5, 0x03, 0x5f, 0xa4, 0x96, - 0x05, 0xf5, 0x99, 0xef, 0x89, 0xbe, 0xb6, 0x5e, 0xdb, 0x68, 0x32, 0x1a, 0xdb, 0x8f, 0xc1, 0x1c, - 0x39, 0xe2, 0xe2, 0x89, 0x13, 0xcc, 0xb8, 0xd5, 0x83, 0xda, 0xa5, 0x13, 0xf4, 0xb5, 0x75, 0x6d, - 0xa3, 0xc3, 0x70, 0x68, 0x6d, 0x82, 0x71, 0xe9, 0x04, 0xe3, 0xf4, 0x2a, 0xe6, 0x7d, 0x7d, 0x5d, - 0xdb, 0x58, 0xd9, 0x7a, 0x6d, 0x33, 0x3e, 0xdd, 0x3c, 0x8e, 0x44, 0xea, 0x87, 0x93, 0xcd, 0x27, - 0x4e, 0x30, 0xba, 0x8a, 0x39, 0x6b, 0x5d, 0xca, 0x81, 0x7d, 0x04, 0xed, 0x61, 0xe2, 0x3e, 0x98, - 0x85, 0x6e, 0xea, 0x47, 0x21, 0xee, 0x18, 0x3a, 0x53, 0x4e, 0x2b, 0x9a, 0x8c, 0xc6, 0x88, 0x73, - 0x92, 0x89, 0xe8, 0xd7, 0xd6, 0x6b, 0x88, 0xc3, 0xb1, 0xd5, 0x87, 0x96, 0x2f, 0x76, 0xa3, 0x59, - 0x98, 0xf6, 0xeb, 0xeb, 0xda, 0x86, 0xc1, 0x32, 0xd0, 0xfe, 0xcb, 0x1a, 0x34, 0x7e, 0x3e, 0xe3, - 0xc9, 0x15, 0xcd, 0x4b, 0xd3, 0x24, 0x5b, 0x0b, 0xc7, 0xd6, 0x4d, 0x68, 0x04, 0x4e, 0x38, 0x11, - 0x7d, 0x9d, 0x16, 0x93, 0x80, 0xf5, 0x16, 0x98, 0xce, 0x59, 0xca, 0x93, 0xf1, 0xcc, 0xf7, 0xfa, - 0xb5, 0x75, 0x6d, 0xa3, 0xc9, 0x0c, 0x42, 0x9c, 0xf8, 0x9e, 0xf5, 0x26, 0x18, 0x5e, 0x34, 0x76, - 0xcb, 0x7b, 0x79, 0x11, 0xed, 0x65, 0xbd, 0x07, 0xc6, 0xcc, 0xf7, 0xc6, 0x81, 0x2f, 0xd2, 0x7e, - 0x63, 0x5d, 0xdb, 0x68, 0x6f, 0x19, 0x78, 0x59, 0x94, 0x1d, 0x6b, 0xcd, 0x7c, 0x8f, 0x84, 0xf8, - 0x31, 0x18, 0x22, 0x71, 0xc7, 0x67, 0xb3, 0xd0, 0xed, 0x37, 0x89, 0xe9, 0x3a, 0x32, 0x95, 0x6e, - 0xcd, 0x5a, 0x42, 0x02, 0x78, 0xad, 0x84, 0x5f, 0xf2, 0x44, 0xf0, 0x7e, 0x4b, 0x6e, 0xa5, 0x40, - 0xeb, 0x3e, 0xb4, 0xcf, 0x1c, 0x97, 0xa7, 0xe3, 0xd8, 0x49, 0x9c, 0x69, 0xdf, 0x28, 0x16, 0x7a, - 0x80, 0xe8, 0x63, 0xc4, 0x0a, 0x06, 0x67, 0x39, 0x60, 0x7d, 0x0e, 0x5d, 0x82, 0xc4, 0xf8, 0xcc, - 0x0f, 0x52, 0x9e, 0xf4, 0x4d, 0x9a, 0xb3, 0x42, 0x73, 0x08, 0x33, 0x4a, 0x38, 0x67, 0x1d, 0xc9, - 0x24, 0x31, 0xd6, 0x3b, 0x00, 0x7c, 0x1e, 0x3b, 0xa1, 0x37, 0x76, 0x82, 0xa0, 0x0f, 0x74, 0x06, - 0x53, 0x62, 0xb6, 0x83, 0xc0, 0x7a, 0x03, 0xcf, 0xe7, 0x78, 0xe3, 0x54, 0xf4, 0xbb, 0xeb, 0xda, - 0x46, 0x9d, 0x35, 0x11, 0x1c, 0x09, 0x94, 0xab, 0xeb, 0xb8, 0xe7, 0xbc, 0xbf, 0xb2, 0xae, 0x6d, - 0x34, 0x98, 0x04, 0x10, 0x7b, 0xe6, 0x27, 0x22, 0xed, 0x5f, 0x97, 0x58, 0x02, 0xec, 0x2d, 0x30, - 0xc9, 0x7a, 0x48, 0x3a, 0x77, 0xa0, 0x79, 0x89, 0x80, 0x34, 0xb2, 0xf6, 0x56, 0x17, 0x8f, 0x97, - 0x1b, 0x18, 0x53, 0x44, 0xfb, 0x36, 0x18, 0x07, 0x4e, 0x38, 0xc9, 0xac, 0x12, 0xd5, 0x46, 0x13, - 0x4c, 0x46, 0x63, 0xfb, 0x57, 0x3a, 0x34, 0x19, 0x17, 0xb3, 0x20, 0xb5, 0x3e, 0x04, 0x40, 0xa5, - 0x4c, 0x9d, 0x34, 0xf1, 0xe7, 0x6a, 0xd5, 0x42, 0x2d, 0xe6, 0xcc, 0xf7, 0x1e, 0x13, 0xc9, 0xba, - 0x0f, 0x1d, 0x5a, 0x3d, 0x63, 0xd5, 0x8b, 0x03, 0xe4, 0xe7, 0x63, 0x6d, 0x62, 0x51, 0x33, 0x6e, - 0x41, 0x93, 0xec, 0x40, 0xda, 0x62, 0x97, 0x29, 0xc8, 0xba, 0x03, 0x2b, 0x7e, 0x98, 0xa2, 0x9e, - 0xdc, 0x74, 0xec, 0x71, 0x91, 0x19, 0x4a, 0x37, 0xc7, 0xee, 0x71, 0x91, 0x5a, 0x9f, 0x81, 0x14, - 0x76, 0xb6, 0x61, 0x83, 0x36, 0x5c, 0xc9, 0x95, 0x28, 0xe4, 0x8e, 0xc4, 0xa3, 0x76, 0xbc, 0x0b, - 0x6d, 0xbc, 0x5f, 0x36, 0xa3, 0x49, 0x33, 0x3a, 0x74, 0x1b, 0x25, 0x0e, 0x06, 0xc8, 0xa0, 0xd8, - 0x51, 0x34, 0x68, 0x8c, 0xd2, 0x78, 0x68, 0x6c, 0x0f, 0xa0, 0x71, 0x94, 0x78, 0x3c, 0x59, 0xfa, - 0x1e, 0x2c, 0xa8, 0x7b, 0x5c, 0xb8, 0xf4, 0x54, 0x0d, 0x46, 0xe3, 0xe2, 0x8d, 0xd4, 0x4a, 0x6f, - 0xc4, 0xfe, 0x0b, 0x0d, 0xda, 0xc3, 0x28, 0x49, 0x1f, 0x73, 0x21, 0x9c, 0x09, 0xb7, 0xd6, 0xa0, - 0x11, 0xe1, 0xb2, 0x4a, 0xc2, 0x26, 0x9e, 0x89, 0xf6, 0x61, 0x12, 0xbf, 0xa0, 0x07, 0xfd, 0xc5, - 0x7a, 0x40, 0xdb, 0xa1, 0xd7, 0x55, 0x53, 0xb6, 0x43, 0x6f, 0xeb, 0x16, 0x34, 0xa3, 0xb3, 0x33, - 0xc1, 0xa5, 0x2c, 0x1b, 0x4c, 0x41, 0x2f, 0x34, 0x41, 0xfb, 0xff, 0x01, 0xe0, 0xf9, 0x7e, 0xa2, - 0x15, 0xd8, 0xe7, 0xd0, 0x66, 0xce, 0x59, 0xba, 0x1b, 0x85, 0x29, 0x9f, 0xa7, 0xd6, 0x0a, 0xe8, - 0xbe, 0x47, 0x22, 0x6a, 0x32, 0xdd, 0xf7, 0xf0, 0x70, 0x93, 0x24, 0x9a, 0xc5, 0x24, 0xa1, 0x2e, - 0x93, 0x00, 0x89, 0xd2, 0xf3, 0x12, 0x3a, 0x31, 0x8a, 0xd2, 0xf3, 0x12, 0x6b, 0x0d, 0xda, 0x22, - 0x74, 0x62, 0x71, 0x1e, 0xa5, 0x78, 0xb8, 0x3a, 0x1d, 0x0e, 0x32, 0xd4, 0x48, 0xd8, 0xff, 0xad, - 0x43, 0xf3, 0x31, 0x9f, 0x9e, 0xf2, 0xe4, 0xb9, 0x5d, 0xee, 0x83, 0x41, 0x0b, 0x8f, 0x7d, 0x4f, - 0x6e, 0xb4, 0xf3, 0xfa, 0xb3, 0xa7, 0x6b, 0x37, 0x08, 0xb7, 0xef, 0x7d, 0x1a, 0x4d, 0xfd, 0x94, - 0x4f, 0xe3, 0xf4, 0x8a, 0xb5, 0x14, 0x6a, 0xe9, 0x09, 0x6e, 0x41, 0x33, 0xe0, 0x0e, 0xea, 0x44, - 0x9a, 0x9f, 0x82, 0xac, 0xbb, 0xd0, 0x72, 0xa6, 0x63, 0x8f, 0x3b, 0x1e, 0x79, 0x29, 0x63, 0xe7, - 0xe6, 0xb3, 0xa7, 0x6b, 0x3d, 0x67, 0xba, 0xc7, 0x9d, 0xf2, 0xda, 0x4d, 0x89, 0xb1, 0xbe, 0x44, - 0x9b, 0x13, 0xe9, 0x78, 0x16, 0x7b, 0x4e, 0xca, 0xc9, 0x67, 0xd5, 0x77, 0xfa, 0xcf, 0x9e, 0xae, - 0xdd, 0x44, 0xf4, 0x09, 0x61, 0x4b, 0xd3, 0xa0, 0xc0, 0x5a, 0xfb, 0x70, 0xc3, 0x0d, 0x66, 0x02, - 0x5d, 0xa9, 0x1f, 0x9e, 0x45, 0xe3, 0x28, 0x0c, 0xae, 0x48, 0x4d, 0xc6, 0xce, 0x3b, 0xcf, 0x9e, - 0xae, 0xbd, 0xa9, 0x88, 0xfb, 0xe1, 0x59, 0x74, 0x14, 0x06, 0x57, 0xa5, 0x55, 0xae, 0x2f, 0x90, - 0xac, 0xdf, 0x86, 0x95, 0xb3, 0x28, 0x71, 0xf9, 0x38, 0x17, 0xcc, 0x0a, 0xad, 0xb3, 0xfa, 0xec, - 0xe9, 0xda, 0x2d, 0xa2, 0x3c, 0x7c, 0x4e, 0x3a, 0x9d, 0x32, 0xde, 0xfe, 0x3b, 0x1d, 0x1a, 0x34, - 0xb6, 0xee, 0x43, 0x6b, 0x4a, 0x82, 0xcf, 0xbc, 0xcc, 0x2d, 0xb4, 0x04, 0xa2, 0x6d, 0x4a, 0x8d, - 0x88, 0x41, 0x98, 0x26, 0x57, 0x2c, 0x63, 0xc3, 0x19, 0xa9, 0x73, 0x1a, 0xf0, 0x54, 0x28, 0xcb, - 0x2d, 0xcd, 0x18, 0x49, 0x82, 0x9a, 0xa1, 0xd8, 0x16, 0xd5, 0x5f, 0x5b, 0x54, 0xbf, 0xb5, 0x0a, - 0x86, 0x7b, 0xce, 0xdd, 0x0b, 0x31, 0x9b, 0x2a, 0xe3, 0xc8, 0xe1, 0xd5, 0x07, 0xd0, 0x29, 0x9f, - 0x03, 0xe3, 0xea, 0x05, 0xbf, 0x22, 0x03, 0xa9, 0x33, 0x1c, 0x5a, 0xeb, 0xd0, 0x20, 0x4f, 0x44, - 0xe6, 0xd1, 0xde, 0x02, 0x3c, 0x8e, 0x9c, 0xc2, 0x24, 0xe1, 0x2b, 0xfd, 0x67, 0x1a, 0xae, 0x53, - 0x3e, 0x5d, 0x79, 0x1d, 0xf3, 0xc5, 0xeb, 0xc8, 0x29, 0xa5, 0x75, 0xec, 0x08, 0x5a, 0x07, 0xbe, - 0xcb, 0x43, 0x41, 0xd1, 0x77, 0x26, 0x78, 0xee, 0x35, 0x70, 0x8c, 0x57, 0x99, 0x3a, 0xf3, 0xc3, - 0xc8, 0xe3, 0x82, 0xd6, 0xa9, 0xb3, 0x1c, 0x46, 0x1a, 0x9f, 0xc7, 0x7e, 0x72, 0x35, 0x92, 0x42, - 0xa8, 0xb1, 0x1c, 0xc6, 0xf0, 0xc6, 0x43, 0xdc, 0xcc, 0xcb, 0x22, 0xa9, 0x02, 0xed, 0xbf, 0xaa, - 0x41, 0xe7, 0x3b, 0x9e, 0x44, 0xc7, 0x49, 0x14, 0x47, 0xc2, 0x09, 0xac, 0xed, 0xaa, 0x38, 0xa5, - 0xda, 0xd6, 0xf1, 0xb4, 0x65, 0xb6, 0xcd, 0x61, 0x2e, 0x5f, 0xa9, 0x8e, 0xb2, 0xc0, 0x6d, 0x68, - 0x4a, 0x75, 0x2e, 0x91, 0x99, 0xa2, 0x20, 0x8f, 0x54, 0x20, 0x9d, 0xb5, 0x2a, 0x0f, 0x45, 0xb1, - 0x6e, 0x03, 0x4c, 0x9d, 0xf9, 0x01, 0x77, 0x04, 0xdf, 0xf7, 0xb2, 0x77, 0x5d, 0x60, 0x94, 0x34, - 0x46, 0xf3, 0x70, 0x24, 0xe8, 0x7d, 0x49, 0x69, 0x10, 0x6c, 0xbd, 0x0d, 0xe6, 0xd4, 0x99, 0xa3, - 0x83, 0xd9, 0xf7, 0xe4, 0x4b, 0x62, 0x05, 0xc2, 0x7a, 0x17, 0x6a, 0xe9, 0x3c, 0x24, 0x6f, 0x8d, - 0xc1, 0x1c, 0x13, 0xbb, 0xd1, 0x3c, 0x54, 0xae, 0x88, 0x21, 0x2d, 0xd3, 0xa0, 0x51, 0x68, 0xb0, - 0x07, 0x35, 0xd7, 0xf7, 0x28, 0x9a, 0x9b, 0x0c, 0x87, 0xd6, 0x1d, 0x68, 0x05, 0x52, 0x5b, 0x14, - 0xb1, 0xdb, 0x5b, 0x6d, 0xe9, 0xe8, 0x08, 0xc5, 0x32, 0xda, 0xea, 0x6f, 0xc1, 0xf5, 0x05, 0x71, - 0x95, 0xed, 0xa3, 0x2b, 0x57, 0xbf, 0x59, 0xb6, 0x8f, 0x7a, 0xd9, 0x26, 0xfe, 0xbd, 0x06, 0xd7, - 0x95, 0x91, 0x9e, 0xfb, 0xf1, 0x30, 0xc5, 0xf7, 0xde, 0x87, 0x16, 0x79, 0x6b, 0x65, 0x1f, 0x75, - 0x96, 0x81, 0xd6, 0xff, 0x87, 0x26, 0x3d, 0xdc, 0xec, 0xfd, 0xac, 0x15, 0xc2, 0xcf, 0xa7, 0xcb, - 0xf7, 0xa4, 0x34, 0xa7, 0xd8, 0xad, 0x2f, 0xa0, 0xf1, 0x3d, 0x4f, 0x22, 0x19, 0x7d, 0xda, 0x5b, - 0xb7, 0x97, 0xcd, 0x43, 0x13, 0x50, 0xd3, 0x24, 0xf3, 0x6f, 0x50, 0x47, 0xef, 0x63, 0xbc, 0x99, - 0x46, 0x97, 0xdc, 0xeb, 0xb7, 0xe8, 0x44, 0x65, 0x33, 0xca, 0x48, 0x99, 0x52, 0x8c, 0xa5, 0x4a, - 0x31, 0x5f, 0xa2, 0x94, 0x3d, 0x68, 0x97, 0xa4, 0xb0, 0x44, 0x21, 0x6b, 0xd5, 0x07, 0x6b, 0xe6, - 0x7e, 0xa8, 0xfc, 0xee, 0xf7, 0x00, 0x0a, 0x99, 0xfc, 0xba, 0xde, 0xc3, 0xfe, 0x43, 0x0d, 0xae, - 0xef, 0x46, 0x61, 0xc8, 0x29, 0x2b, 0x95, 0x1a, 0x2e, 0x1e, 0x91, 0xf6, 0xc2, 0x47, 0xf4, 0x11, - 0x34, 0x04, 0x32, 0xab, 0xd5, 0x5f, 0x5b, 0xa2, 0x32, 0x26, 0x39, 0xd0, 0x4b, 0x4e, 0x9d, 0xf9, - 0x38, 0xe6, 0xa1, 0xe7, 0x87, 0x93, 0xcc, 0x4b, 0x4e, 0x9d, 0xf9, 0xb1, 0xc4, 0xd8, 0xff, 0xa0, - 0x01, 0x7c, 0xcd, 0x9d, 0x20, 0x3d, 0xc7, 0x48, 0x80, 0x7a, 0xf3, 0x43, 0x91, 0x3a, 0xa1, 0x9b, - 0xd5, 0x04, 0x39, 0x8c, 0xc6, 0x87, 0x61, 0x8f, 0x0b, 0xe9, 0x84, 0x4c, 0x96, 0x81, 0x18, 0x08, - 0x71, 0xbb, 0x99, 0x50, 0xe1, 0x51, 0x41, 0x45, 0x30, 0xaf, 0x13, 0x5a, 0x05, 0xf3, 0x3e, 0xb4, - 0x30, 0xc7, 0xf6, 0xa3, 0x90, 0x4c, 0xc3, 0x64, 0x19, 0x88, 0xeb, 0xcc, 0xe2, 0xd4, 0x9f, 0xca, - 0x20, 0x58, 0x63, 0x0a, 0xc2, 0x53, 0x61, 0xd0, 0x1b, 0xb8, 0xe7, 0x11, 0x3d, 0xde, 0x1a, 0xcb, - 0x61, 0xfb, 0x0f, 0x74, 0x68, 0x4a, 0x07, 0x52, 0x89, 0xea, 0xda, 0x8f, 0x8a, 0xea, 0x6f, 0x83, - 0x19, 0x27, 0xdc, 0xf3, 0xdd, 0x4c, 0x9a, 0x26, 0x2b, 0x10, 0x94, 0x4e, 0x63, 0x80, 0xa3, 0x5b, - 0x19, 0x4c, 0x02, 0x88, 0x15, 0xb1, 0xe3, 0x72, 0x75, 0x12, 0x09, 0xe0, 0xd1, 0xa5, 0x6d, 0x92, - 0x4d, 0x1a, 0x4c, 0x41, 0xd6, 0xe7, 0x60, 0x52, 0xfa, 0x44, 0x91, 0xd9, 0xa4, 0x88, 0x7a, 0xeb, - 0xd9, 0xd3, 0x35, 0x0b, 0x91, 0x0b, 0x21, 0xd9, 0xc8, 0x70, 0x98, 0x40, 0xe0, 0x64, 0x74, 0xc4, - 0x40, 0xd9, 0x00, 0x25, 0x10, 0x88, 0x1a, 0x89, 0x72, 0x02, 0x21, 0x31, 0xf6, 0x5f, 0xeb, 0xd0, - 0xd9, 0xf3, 0x13, 0xee, 0xa6, 0xdc, 0x1b, 0x78, 0x13, 0x3a, 0x0c, 0x0f, 0x53, 0x3f, 0xbd, 0x52, - 0x29, 0x8f, 0x82, 0xf2, 0x8c, 0x54, 0xaf, 0x56, 0x68, 0xd2, 0x54, 0x6b, 0x54, 0x54, 0x4a, 0xc0, - 0xda, 0x02, 0x90, 0xb9, 0x3a, 0x15, 0x96, 0xf5, 0x17, 0x17, 0x96, 0x26, 0xb1, 0xe1, 0x10, 0x0b, - 0x37, 0x39, 0xc7, 0x97, 0x79, 0x4f, 0x93, 0xaa, 0xce, 0x19, 0xba, 0x03, 0x4a, 0x71, 0x4f, 0x79, - 0x40, 0x7a, 0xa5, 0x14, 0xf7, 0x94, 0x07, 0x79, 0x61, 0xd1, 0x92, 0xc7, 0xc1, 0xb1, 0xf5, 0x1e, - 0xe8, 0x51, 0x4c, 0x32, 0x54, 0x1b, 0x96, 0x2f, 0xb6, 0x79, 0x14, 0x33, 0x3d, 0x8a, 0xf1, 0x91, - 0xc8, 0x2a, 0xaa, 0x6f, 0x2a, 0x17, 0x81, 0xae, 0x9c, 0x72, 0x7a, 0xa6, 0x28, 0xf6, 0x2d, 0xd0, - 0x8f, 0x62, 0xab, 0x05, 0xb5, 0xe1, 0x60, 0xd4, 0xbb, 0x86, 0x83, 0xbd, 0xc1, 0x41, 0x4f, 0xb3, - 0x7f, 0xd0, 0xc1, 0x7c, 0x3c, 0x4b, 0x1d, 0x7c, 0x72, 0x02, 0xcf, 0x5c, 0x35, 0x99, 0xc2, 0x36, - 0xde, 0x04, 0x43, 0xa4, 0x4e, 0x42, 0xe1, 0x50, 0x3a, 0xe7, 0x16, 0xc1, 0x23, 0x61, 0x7d, 0x00, - 0x0d, 0xee, 0x4d, 0x78, 0xe6, 0x33, 0x7b, 0x8b, 0xe7, 0x64, 0x92, 0x6c, 0x6d, 0x40, 0x53, 0xb8, - 0xe7, 0x7c, 0xea, 0xf4, 0xeb, 0x05, 0xe3, 0x90, 0x30, 0x32, 0x81, 0x63, 0x8a, 0x6e, 0xbd, 0x0f, - 0x0d, 0x94, 0xb4, 0x50, 0x15, 0x07, 0xd5, 0x28, 0x28, 0x54, 0xc5, 0x26, 0x89, 0x68, 0x17, 0x5e, - 0x12, 0xc5, 0xe3, 0x28, 0x26, 0x99, 0xad, 0x6c, 0xdd, 0xa4, 0xa7, 0x9f, 0xdd, 0x66, 0x73, 0x2f, - 0x89, 0xe2, 0xa3, 0x98, 0x35, 0x3d, 0xfa, 0xc5, 0xe2, 0x92, 0xd8, 0xa5, 0x7e, 0xa5, 0xaf, 0x34, - 0x11, 0x23, 0x9b, 0x09, 0x1b, 0x60, 0x4c, 0x79, 0xea, 0x78, 0x4e, 0xea, 0x28, 0x97, 0xd9, 0x91, - 0x9e, 0x44, 0xe2, 0x58, 0x4e, 0xb5, 0xef, 0x41, 0x53, 0x2e, 0x6d, 0x19, 0x50, 0x3f, 0x3c, 0x3a, - 0x1c, 0x48, 0x81, 0x6e, 0x1f, 0x1c, 0xf4, 0x34, 0x44, 0xed, 0x6d, 0x8f, 0xb6, 0x7b, 0x3a, 0x8e, - 0x46, 0xbf, 0x38, 0x1e, 0xf4, 0x6a, 0xf6, 0xbf, 0x68, 0x60, 0x64, 0xeb, 0x58, 0x5f, 0x01, 0xe0, - 0x9b, 0x1a, 0x9f, 0xfb, 0x61, 0x9e, 0x59, 0xbc, 0x55, 0xde, 0x69, 0xf3, 0x38, 0xe1, 0xde, 0xd7, - 0x48, 0x95, 0x31, 0x86, 0x9e, 0x20, 0xc1, 0xab, 0x43, 0x58, 0xa9, 0x12, 0x97, 0xa4, 0x58, 0x9f, - 0x94, 0x9d, 0xed, 0xca, 0xd6, 0xeb, 0x95, 0xa5, 0x71, 0x26, 0x19, 0x6a, 0xc9, 0xef, 0xde, 0x05, - 0x23, 0x43, 0x5b, 0x6d, 0x68, 0xed, 0x0d, 0x1e, 0x6c, 0x9f, 0x1c, 0xa0, 0x91, 0x00, 0x34, 0x87, - 0xfb, 0x87, 0x0f, 0x0f, 0x06, 0xf2, 0x5a, 0x07, 0xfb, 0xc3, 0x51, 0x4f, 0xb7, 0xff, 0x5c, 0x03, - 0x23, 0x0b, 0xe4, 0xd6, 0x47, 0x18, 0x81, 0x29, 0x5f, 0x50, 0x0e, 0x9a, 0x7a, 0x02, 0xa5, 0x8a, - 0x86, 0x65, 0x74, 0x34, 0x7a, 0x3f, 0xf4, 0xf8, 0x3c, 0x0b, 0xed, 0x04, 0x94, 0xeb, 0xa9, 0x5a, - 0xa5, 0xa4, 0xc7, 0xd2, 0x30, 0x0a, 0xb9, 0xca, 0xd4, 0x68, 0x4c, 0x36, 0xe8, 0x87, 0x2e, 0x79, - 0x82, 0x86, 0xb2, 0x41, 0x84, 0x47, 0xc2, 0xfe, 0x67, 0x1d, 0x8c, 0x3c, 0x7b, 0xfb, 0x04, 0xcc, - 0x69, 0x66, 0x05, 0x2a, 0x2a, 0x74, 0x2b, 0xa6, 0xc1, 0x0a, 0xba, 0x75, 0x0b, 0xf4, 0x8b, 0x4b, - 0x65, 0x91, 0x4d, 0xe4, 0x7a, 0xf4, 0x84, 0xe9, 0x17, 0x97, 0x45, 0x58, 0x69, 0xbc, 0x32, 0xac, - 0x7c, 0x08, 0xd7, 0xdd, 0x80, 0x3b, 0xe1, 0xb8, 0xf0, 0x9e, 0xf2, 0x65, 0xaf, 0x10, 0xfa, 0x38, - 0x77, 0xa1, 0x4a, 0x5b, 0xad, 0x42, 0x5b, 0x77, 0xa0, 0xe1, 0xf1, 0x20, 0x75, 0xca, 0x2d, 0x95, - 0xa3, 0xc4, 0x71, 0x03, 0xbe, 0x87, 0x68, 0x26, 0xa9, 0x68, 0x9c, 0x59, 0x6a, 0x59, 0x36, 0xce, - 0x4c, 0x0f, 0x2c, 0xa7, 0x16, 0x62, 0x86, 0xb2, 0x98, 0x3f, 0x81, 0x1b, 0x7c, 0x1e, 0xd3, 0x8b, - 0x1c, 0xe7, 0x65, 0x40, 0x9b, 0x38, 0x7a, 0x19, 0x61, 0x57, 0xe1, 0xed, 0xcf, 0xa0, 0xf6, 0xe8, - 0xc9, 0x50, 0x09, 0x46, 0x7b, 0x4e, 0x30, 0x99, 0x66, 0xf4, 0x42, 0x33, 0xf6, 0xff, 0xd6, 0xa0, - 0xa5, 0x7c, 0x21, 0x5e, 0x72, 0x96, 0x97, 0x97, 0x38, 0xac, 0x66, 0x75, 0xb9, 0x53, 0x2d, 0xf7, - 0xea, 0x6a, 0xaf, 0xee, 0xd5, 0x59, 0x5f, 0x41, 0x27, 0x96, 0xb4, 0xb2, 0x1b, 0x7e, 0xa3, 0x3c, - 0x47, 0xfd, 0xd2, 0xbc, 0x76, 0x5c, 0x00, 0x68, 0x39, 0xd4, 0xc8, 0x48, 0x9d, 0x09, 0xe9, 0xb3, - 0xc3, 0x5a, 0x08, 0x8f, 0x9c, 0xc9, 0x0b, 0x9c, 0xf1, 0x8f, 0xf0, 0xa9, 0x58, 0x46, 0x47, 0x71, - 0xbf, 0x43, 0x7e, 0x12, 0xfd, 0x70, 0xd9, 0x45, 0x76, 0xab, 0x2e, 0xf2, 0x2d, 0x30, 0xdd, 0x68, - 0x3a, 0xf5, 0x89, 0xb6, 0xa2, 0xca, 0x2f, 0x42, 0x8c, 0x84, 0xfd, 0x27, 0x1a, 0xb4, 0xd4, 0x6d, - 0x9f, 0x7b, 0x80, 0x3b, 0xfb, 0x87, 0xdb, 0xec, 0x17, 0x3d, 0x0d, 0x1d, 0xcc, 0xfe, 0xe1, 0xa8, - 0xa7, 0x5b, 0x26, 0x34, 0x1e, 0x1c, 0x1c, 0x6d, 0x8f, 0x7a, 0x35, 0x7c, 0x94, 0x3b, 0x47, 0x47, - 0x07, 0xbd, 0xba, 0xd5, 0x01, 0x63, 0x6f, 0x7b, 0x34, 0x18, 0xed, 0x3f, 0x1e, 0xf4, 0x1a, 0xc8, - 0xfb, 0x70, 0x70, 0xd4, 0x6b, 0xe2, 0xe0, 0x64, 0x7f, 0xaf, 0xd7, 0x42, 0xfa, 0xf1, 0xf6, 0x70, - 0xf8, 0xed, 0x11, 0xdb, 0xeb, 0x19, 0xf4, 0xb0, 0x47, 0x6c, 0xff, 0xf0, 0x61, 0xcf, 0xc4, 0xf1, - 0xd1, 0xce, 0x37, 0x83, 0xdd, 0x51, 0x0f, 0xec, 0xcf, 0xa0, 0x5d, 0x92, 0x20, 0xce, 0x66, 0x83, - 0x07, 0xbd, 0x6b, 0xb8, 0xe5, 0x93, 0xed, 0x83, 0x13, 0xf4, 0x03, 0x2b, 0x00, 0x34, 0x1c, 0x1f, - 0x6c, 0x1f, 0x3e, 0xec, 0xe9, 0xf6, 0xcf, 0xc1, 0x38, 0xf1, 0xbd, 0x9d, 0x20, 0x72, 0x2f, 0xd0, - 0x30, 0x4e, 0x1d, 0xc1, 0x55, 0xe6, 0x47, 0x63, 0x8c, 0xbd, 0x64, 0xc1, 0x42, 0xe9, 0x5e, 0x41, - 0x28, 0xab, 0x70, 0x36, 0x1d, 0x53, 0x7f, 0xb7, 0x26, 0x23, 0x4d, 0x38, 0x9b, 0x9e, 0xf8, 0x9e, - 0xb0, 0x0f, 0xa1, 0x75, 0xe2, 0x7b, 0xc7, 0x8e, 0x7b, 0x81, 0x2e, 0xfb, 0x14, 0x97, 0x1e, 0x0b, - 0xff, 0x7b, 0xae, 0x22, 0x92, 0x49, 0x98, 0xa1, 0xff, 0x3d, 0xb7, 0xde, 0x87, 0x26, 0x01, 0x59, - 0x96, 0x4f, 0x6f, 0x22, 0x3b, 0x0e, 0x53, 0x34, 0xfb, 0x4f, 0xb5, 0xfc, 0x5a, 0xd4, 0xc0, 0x5b, - 0x83, 0x7a, 0xec, 0xb8, 0x17, 0xca, 0x61, 0xb5, 0xd5, 0x1c, 0xdc, 0x8f, 0x11, 0xc1, 0xfa, 0x10, - 0x0c, 0x65, 0x3b, 0xd9, 0xc2, 0xed, 0x92, 0x91, 0xb1, 0x9c, 0x58, 0xd5, 0x6a, 0xad, 0xaa, 0x55, - 0xca, 0x02, 0xe3, 0xc0, 0xa7, 0x5e, 0x4c, 0x0d, 0x1d, 0x9b, 0x84, 0xec, 0x2f, 0x00, 0x8a, 0x9e, - 0xe9, 0x12, 0xff, 0x7d, 0x13, 0x1a, 0x4e, 0xe0, 0x3b, 0x59, 0x56, 0x29, 0x01, 0xfb, 0x10, 0xda, - 0xa5, 0x4e, 0x2b, 0x8a, 0xcf, 0x09, 0x82, 0xf1, 0x05, 0xbf, 0x12, 0x34, 0xd7, 0x60, 0x2d, 0x27, - 0x08, 0x1e, 0xf1, 0x2b, 0x81, 0xb1, 0x53, 0x36, 0x69, 0xf5, 0x85, 0xfe, 0x1e, 0x4d, 0x65, 0x92, - 0x68, 0x7f, 0x0a, 0x4d, 0xd9, 0xf4, 0x2b, 0x59, 0xba, 0xf6, 0xc2, 0xec, 0xe1, 0x4b, 0x75, 0x66, - 0x6a, 0x11, 0x5a, 0x9f, 0xa8, 0x66, 0xb0, 0x90, 0xad, 0x67, 0xad, 0xa8, 0x4b, 0x24, 0x93, 0xea, - 0x03, 0x13, 0xb3, 0xbd, 0x07, 0xc6, 0x4b, 0xdb, 0xeb, 0x4a, 0x00, 0x7a, 0x21, 0x80, 0x25, 0x0d, - 0x77, 0xfb, 0x97, 0x00, 0x45, 0xd3, 0x58, 0x3d, 0x3c, 0xb9, 0x0a, 0x3e, 0xbc, 0x8f, 0xc1, 0x70, - 0xcf, 0xfd, 0xc0, 0x4b, 0x78, 0x58, 0xb9, 0x75, 0xd1, 0x66, 0xce, 0xe9, 0xd6, 0x3a, 0xd4, 0xa9, - 0x17, 0x5e, 0x2b, 0xbc, 0x68, 0xde, 0x08, 0x27, 0x8a, 0x3d, 0x87, 0xae, 0x4c, 0x4a, 0x18, 0xff, - 0xbd, 0x19, 0x17, 0xe9, 0xcb, 0xb2, 0xa2, 0xdb, 0x32, 0x98, 0x93, 0x77, 0xcf, 0xba, 0xfa, 0x25, - 0x0c, 0x1a, 0xc1, 0x99, 0xcf, 0x03, 0x2f, 0xbb, 0x8d, 0x82, 0x50, 0xc9, 0x32, 0xc1, 0xa9, 0xcb, - 0x26, 0x27, 0x01, 0xf6, 0x1f, 0xe9, 0x00, 0x72, 0xeb, 0xc3, 0xc8, 0xe3, 0xd5, 0x74, 0x5c, 0x5b, - 0x4c, 0xc7, 0x2d, 0xa8, 0xe7, 0x9f, 0x39, 0x4c, 0x46, 0xe3, 0xc2, 0xf9, 0xab, 0x14, 0x5d, 0x3a, - 0xff, 0xb7, 0xc1, 0x4c, 0xa3, 0x0b, 0x1e, 0xfa, 0xdf, 0x53, 0x6f, 0x0e, 0x37, 0x2c, 0x10, 0xe5, - 0xa6, 0x7f, 0xa3, 0xda, 0xf4, 0xcf, 0x3b, 0xa3, 0x4d, 0xb9, 0x9a, 0xec, 0x8c, 0x2e, 0x69, 0xf2, - 0xca, 0x4a, 0x45, 0xf0, 0x24, 0xcd, 0xd2, 0x7d, 0x09, 0xe5, 0x29, 0xad, 0xa9, 0x78, 0x31, 0xa5, - 0x5d, 0x83, 0x76, 0x18, 0x8d, 0xdd, 0x28, 0x3c, 0x0b, 0x7c, 0x37, 0x55, 0x4d, 0x7e, 0x08, 0xa3, - 0x5d, 0x85, 0xb1, 0xbf, 0x82, 0x4e, 0x26, 0x7f, 0xea, 0xa5, 0x7e, 0x9c, 0xa7, 0x8d, 0x5a, 0xa1, - 0xdb, 0x42, 0x4c, 0x3b, 0x7a, 0x5f, 0xcb, 0x12, 0x47, 0xfb, 0x7f, 0x6a, 0xd9, 0x64, 0xd5, 0x12, - 0x7c, 0xb9, 0x0c, 0xab, 0x79, 0xbd, 0xfe, 0xa3, 0xf2, 0xfa, 0x9f, 0x81, 0xe9, 0x51, 0x72, 0xeb, - 0x5f, 0x66, 0x71, 0x6b, 0x75, 0x31, 0x91, 0x55, 0xe9, 0xaf, 0x7f, 0xc9, 0x59, 0xc1, 0xfc, 0x0a, - 0x3d, 0xe4, 0xd2, 0x6e, 0x2c, 0x93, 0x76, 0xf3, 0xd7, 0x94, 0xf6, 0xbb, 0xd0, 0x09, 0xa3, 0x70, - 0x1c, 0xce, 0x82, 0x00, 0xab, 0x42, 0x25, 0xee, 0x76, 0x18, 0x85, 0x87, 0x0a, 0x65, 0x7d, 0x0c, - 0x37, 0xca, 0x2c, 0xf2, 0x51, 0xb7, 0x89, 0xef, 0x7a, 0x89, 0x8f, 0x9e, 0xfe, 0x06, 0xf4, 0xa2, - 0xd3, 0x5f, 0x72, 0x37, 0x25, 0x89, 0x8d, 0xe9, 0x35, 0x77, 0x64, 0xaa, 0x23, 0xf1, 0x28, 0xa2, - 0x43, 0x7c, 0xd7, 0x0b, 0x6a, 0xee, 0x3e, 0xa7, 0xe6, 0x2f, 0xc1, 0xcc, 0xa5, 0x54, 0x4a, 0xa4, - 0x4d, 0x68, 0xec, 0x1f, 0xee, 0x0d, 0x7e, 0xa7, 0xa7, 0x61, 0x2c, 0x64, 0x83, 0x27, 0x03, 0x36, - 0x1c, 0xf4, 0x74, 0x8c, 0x53, 0x7b, 0x83, 0x83, 0xc1, 0x68, 0xd0, 0xab, 0x7d, 0x53, 0x37, 0x5a, - 0x3d, 0x83, 0x1a, 0x7b, 0x81, 0xef, 0xfa, 0xa9, 0x3d, 0x04, 0x28, 0xaa, 0x03, 0xf4, 0xca, 0xc5, - 0xe1, 0x54, 0xd5, 0x9e, 0x66, 0xc7, 0xda, 0xc8, 0x1f, 0xa4, 0xfe, 0xa2, 0x1a, 0x44, 0xd2, 0xed, - 0x2d, 0x30, 0x1f, 0x3b, 0xf1, 0xd7, 0xb2, 0x87, 0x7d, 0x07, 0x56, 0x62, 0x27, 0x49, 0x7d, 0x74, - 0x13, 0x99, 0xd7, 0xad, 0x6d, 0x74, 0x58, 0x37, 0xc7, 0xa2, 0xef, 0xb5, 0x4f, 0xc0, 0x78, 0xec, - 0xc4, 0xcf, 0x65, 0xe6, 0x9d, 0xbc, 0x75, 0x36, 0x53, 0x1d, 0x76, 0x95, 0x18, 0xdd, 0x81, 0x96, - 0x0a, 0x26, 0xca, 0x1f, 0x55, 0x02, 0x4d, 0x46, 0xb3, 0xff, 0x56, 0x83, 0x9b, 0x8f, 0xa3, 0x4b, - 0x9e, 0x27, 0x92, 0xc7, 0xce, 0x55, 0x10, 0x39, 0xde, 0x2b, 0xac, 0xfb, 0x1d, 0x00, 0x11, 0xcd, - 0xa8, 0x89, 0x9d, 0x35, 0xf6, 0x99, 0x29, 0x31, 0x0f, 0xd5, 0x97, 0x45, 0x2e, 0x52, 0x22, 0xaa, - 0x10, 0x8c, 0x30, 0x92, 0x5e, 0x87, 0x66, 0x3a, 0x0f, 0x8b, 0xef, 0x08, 0x8d, 0x94, 0x5a, 0x55, - 0x4b, 0xb3, 0xc8, 0xc6, 0x0b, 0xb2, 0xc8, 0x5d, 0x30, 0x47, 0x73, 0x6a, 0xe3, 0xcc, 0x44, 0x25, - 0x35, 0xd2, 0x5e, 0x92, 0x1a, 0xe9, 0x0b, 0xa9, 0xd1, 0x7f, 0x69, 0xd0, 0x2e, 0xa5, 0xc3, 0xd6, - 0xbb, 0x50, 0x4f, 0xe7, 0x61, 0xf5, 0x6b, 0x5d, 0xb6, 0x09, 0x23, 0x12, 0x5a, 0xfc, 0xd4, 0x99, - 0x8f, 0x1d, 0x21, 0xfc, 0x49, 0xc8, 0x3d, 0xb5, 0x64, 0x7b, 0xea, 0xcc, 0xb7, 0x15, 0xca, 0x3a, - 0x80, 0xeb, 0xd2, 0xa1, 0x67, 0x97, 0xc8, 0x4a, 0xd7, 0xf7, 0x16, 0xd2, 0x6f, 0xd9, 0xea, 0xca, - 0xae, 0xa4, 0xea, 0xb1, 0x95, 0x49, 0x05, 0xb9, 0xba, 0x0d, 0xaf, 0x2d, 0x61, 0xfb, 0x49, 0xcd, - 0xcd, 0x35, 0xe8, 0x8e, 0xe6, 0xe1, 0xc8, 0x9f, 0x72, 0x91, 0x3a, 0xd3, 0x98, 0x52, 0x4b, 0x15, - 0x90, 0xeb, 0x4c, 0x4f, 0x85, 0xfd, 0x01, 0x74, 0x8e, 0x39, 0x4f, 0x18, 0x17, 0x71, 0x14, 0xca, - 0xb4, 0x4a, 0xb5, 0x98, 0x64, 0xf4, 0x57, 0x90, 0xfd, 0xbb, 0x60, 0x62, 0xf1, 0xb5, 0xe3, 0xa4, - 0xee, 0xf9, 0x4f, 0x29, 0xce, 0x3e, 0x80, 0x56, 0x2c, 0x6d, 0x4a, 0xd5, 0x4b, 0x1d, 0xca, 0x02, - 0x94, 0x9d, 0xb1, 0x8c, 0x68, 0x7f, 0x06, 0xaf, 0x0d, 0x67, 0xa7, 0xc2, 0x4d, 0xfc, 0x98, 0x22, - 0xa6, 0x8a, 0x90, 0xab, 0x60, 0xc4, 0x09, 0x3f, 0xf3, 0xe7, 0x3c, 0x7b, 0x18, 0x39, 0x6c, 0x7f, - 0x01, 0x37, 0xab, 0x53, 0xd4, 0x15, 0xde, 0x86, 0xda, 0xc5, 0xa5, 0x28, 0xf7, 0xf5, 0x1e, 0x3d, - 0xa1, 0xaf, 0x63, 0x88, 0xb6, 0x19, 0xd4, 0x0e, 0x67, 0xd3, 0xf2, 0x17, 0xfe, 0xba, 0xfc, 0xc2, - 0xff, 0x56, 0xb9, 0x83, 0x24, 0x4b, 0x90, 0xa2, 0x53, 0xf4, 0x36, 0x98, 0x67, 0x51, 0xf2, 0xfb, - 0x4e, 0xe2, 0x71, 0x4f, 0xc5, 0xc0, 0x02, 0x61, 0x7f, 0x07, 0xed, 0xcc, 0x04, 0xf6, 0x3d, 0xfa, - 0x1c, 0x40, 0x36, 0xb8, 0xef, 0x55, 0x4c, 0x52, 0xf6, 0x67, 0x78, 0xe8, 0xed, 0x67, 0xb6, 0x23, - 0x81, 0xea, 0xce, 0xaa, 0x8b, 0x9b, 0xed, 0x6c, 0x3f, 0x80, 0x4e, 0x56, 0x8c, 0x61, 0xb1, 0x4d, - 0x56, 0x1d, 0xf8, 0x3c, 0x2c, 0x59, 0xbc, 0x21, 0x11, 0xa3, 0x6a, 0x9b, 0x45, 0xaf, 0x24, 0x14, - 0xf6, 0x26, 0x34, 0xd5, 0x93, 0xb1, 0xa0, 0xee, 0x46, 0x9e, 0x7c, 0xd6, 0x0d, 0x46, 0x63, 0x14, - 0xc7, 0x54, 0x4c, 0xb2, 0x64, 0x69, 0x2a, 0x26, 0xf6, 0xdf, 0xeb, 0xd0, 0xdd, 0x71, 0xdc, 0x8b, - 0x59, 0x9c, 0xe9, 0xa2, 0x54, 0x51, 0x6b, 0x95, 0x8a, 0xba, 0x5c, 0x3d, 0xeb, 0x95, 0xea, 0xb9, - 0x72, 0xa0, 0x5a, 0x35, 0xc3, 0x79, 0x03, 0x5a, 0xb3, 0xd0, 0x9f, 0x67, 0xbe, 0xc0, 0x64, 0x4d, - 0x04, 0x47, 0xc2, 0x5a, 0x87, 0x36, 0xba, 0x0b, 0x3f, 0xa4, 0x3a, 0x5a, 0xf5, 0x2e, 0xcb, 0x28, - 0xf4, 0x3f, 0x8e, 0xeb, 0x72, 0x21, 0xd0, 0x63, 0xaa, 0xf2, 0xca, 0x94, 0x98, 0x47, 0xfc, 0x8a, - 0xdc, 0x13, 0x77, 0x13, 0x9e, 0x8e, 0x8b, 0x9a, 0xd8, 0x94, 0x18, 0x24, 0xbf, 0x07, 0x5d, 0xc1, - 0x85, 0x40, 0x87, 0x4b, 0x41, 0x52, 0x75, 0x6c, 0x3a, 0x0a, 0x39, 0x42, 0x1c, 0x2a, 0xdc, 0x09, - 0xa3, 0xf0, 0x6a, 0x1a, 0xcd, 0x84, 0x8a, 0x7b, 0x05, 0x62, 0x21, 0x3b, 0x83, 0xc5, 0xec, 0xcc, - 0x4e, 0xa1, 0x3b, 0x98, 0xc7, 0xf4, 0xd5, 0xf6, 0x95, 0x99, 0x5e, 0x49, 0xac, 0x7a, 0x45, 0xac, - 0x25, 0x01, 0xd5, 0x54, 0x9b, 0x56, 0x0a, 0x08, 0x73, 0xbf, 0x28, 0x99, 0x3a, 0x69, 0x26, 0x38, - 0x09, 0xd9, 0x7f, 0xa6, 0x83, 0x29, 0x55, 0x86, 0xd7, 0xfc, 0x48, 0xa5, 0x71, 0x5a, 0xd1, 0xad, - 0xc9, 0x89, 0x9b, 0x8f, 0xf8, 0x15, 0xa5, 0x1f, 0x32, 0xbb, 0x5b, 0xd6, 0xaf, 0x54, 0x31, 0x45, - 0x16, 0x1f, 0x14, 0x53, 0xde, 0x02, 0x53, 0xba, 0x5a, 0xc4, 0xab, 0x2f, 0x7d, 0x84, 0x38, 0xf1, - 0xe9, 0xbb, 0x6d, 0xca, 0x93, 0xa9, 0xd2, 0x16, 0x8d, 0xab, 0x69, 0x5e, 0x57, 0x25, 0x1e, 0xf6, - 0x39, 0xb4, 0xd4, 0xee, 0x18, 0x87, 0x4f, 0x0e, 0x1f, 0x1d, 0x1e, 0x7d, 0x7b, 0xd8, 0xbb, 0x96, - 0xf7, 0xb7, 0xb4, 0x22, 0x52, 0xeb, 0xe5, 0x48, 0x5d, 0x43, 0xfc, 0xee, 0xd1, 0xc9, 0xe1, 0xa8, - 0x57, 0xb7, 0xba, 0x60, 0xd2, 0x70, 0xcc, 0x06, 0x4f, 0x7a, 0x0d, 0xaa, 0x3b, 0x77, 0xbf, 0x1e, - 0x3c, 0xde, 0xee, 0x35, 0xf3, 0xee, 0x58, 0xcb, 0xfe, 0x63, 0x0d, 0x6e, 0xc8, 0x2b, 0x97, 0xab, - 0xb4, 0xf2, 0x9f, 0x7f, 0xea, 0xf2, 0xcf, 0x3f, 0xbf, 0xd9, 0xc2, 0x6c, 0xeb, 0x1f, 0x35, 0xa8, - 0xa3, 0x73, 0xb4, 0xee, 0x82, 0xf9, 0x35, 0x77, 0x92, 0xf4, 0x94, 0x3b, 0xa9, 0x55, 0x71, 0x84, - 0xab, 0x94, 0x7b, 0x16, 0x1f, 0x08, 0xec, 0x6b, 0xf7, 0x35, 0x6b, 0x53, 0x7e, 0xc2, 0xcf, 0xfe, - 0x99, 0xd0, 0xcd, 0x9c, 0x2c, 0x39, 0xe1, 0xd5, 0xca, 0x7c, 0xfb, 0xda, 0x06, 0xf1, 0x7f, 0x13, - 0xf9, 0xe1, 0xae, 0xfc, 0xe2, 0x6c, 0x2d, 0x3a, 0xe5, 0xc5, 0x19, 0xd6, 0x5d, 0x68, 0xee, 0x0b, - 0xf4, 0xfe, 0xcf, 0xb3, 0x52, 0xf6, 0x52, 0x0e, 0x0c, 0xf6, 0xb5, 0xad, 0xbf, 0xa9, 0x41, 0xfd, - 0x3b, 0x9e, 0x44, 0xd6, 0xa7, 0xd0, 0x52, 0x9f, 0x53, 0xac, 0xd2, 0x67, 0x93, 0x55, 0xca, 0x6f, - 0x17, 0xbe, 0xb3, 0xd0, 0x2e, 0x3d, 0x99, 0x00, 0x15, 0x3d, 0x2e, 0xab, 0xf8, 0xda, 0xf3, 0xdc, - 0xa1, 0xbe, 0x84, 0xde, 0x30, 0x4d, 0xb8, 0x33, 0x2d, 0xb1, 0x57, 0x45, 0xb5, 0xac, 0x61, 0x46, - 0xf2, 0xfa, 0x04, 0x9a, 0x32, 0xc4, 0x2e, 0x4c, 0x58, 0xec, 0x7d, 0x11, 0xf3, 0x87, 0xd0, 0x1e, - 0x9e, 0x47, 0xb3, 0xc0, 0x1b, 0xf2, 0xe4, 0x92, 0x5b, 0xa5, 0x0f, 0xa4, 0xab, 0xa5, 0xb1, 0x7d, - 0xcd, 0xda, 0x00, 0x90, 0xce, 0xfd, 0x04, 0x2d, 0xa5, 0x85, 0xb4, 0xc3, 0xd9, 0x54, 0x2e, 0x5a, - 0xf2, 0xfa, 0x92, 0xb3, 0x14, 0x69, 0x5f, 0xc6, 0xf9, 0x39, 0x74, 0x77, 0xc9, 0x6a, 0x8e, 0x92, - 0xed, 0xd3, 0x28, 0x49, 0xad, 0xc5, 0x8f, 0xa4, 0xab, 0x8b, 0x08, 0xfb, 0x9a, 0x75, 0x1f, 0x8c, - 0x51, 0x72, 0x25, 0xf9, 0x6f, 0xa8, 0x04, 0xa5, 0xd8, 0x6f, 0xc9, 0x2d, 0xb7, 0xfe, 0xad, 0x06, - 0xcd, 0x6f, 0xa3, 0xe4, 0x82, 0x27, 0x58, 0xeb, 0x50, 0x93, 0x52, 0x99, 0x51, 0xde, 0xb0, 0x5c, - 0xb6, 0xd1, 0xfb, 0x60, 0x92, 0x50, 0x46, 0x8e, 0xb8, 0x90, 0xaa, 0xa2, 0x3f, 0x9e, 0x49, 0xb9, - 0xc8, 0xda, 0x89, 0xf4, 0xba, 0x22, 0x15, 0x95, 0xf7, 0x6c, 0x2b, 0x9d, 0xc3, 0xd5, 0x96, 0x8c, - 0xbc, 0x43, 0x34, 0xcd, 0xfb, 0x1a, 0xba, 0xa3, 0xa1, 0xbc, 0x29, 0x32, 0x15, 0x7f, 0xb8, 0x91, - 0x96, 0x5f, 0xfc, 0xc3, 0xc5, 0xbe, 0x66, 0xdd, 0x83, 0xa6, 0x4c, 0x9c, 0xe5, 0x35, 0x2b, 0x35, - 0xf3, 0x6a, 0xaf, 0x8c, 0x52, 0x13, 0x3e, 0x82, 0xa6, 0x7c, 0xe7, 0x72, 0x42, 0x25, 0x6c, 0xc9, - 0x53, 0xcb, 0xd0, 0x27, 0x59, 0xa5, 0x67, 0x96, 0xac, 0x15, 0x2f, 0xbd, 0xc0, 0x7a, 0x17, 0x7a, - 0x8c, 0xbb, 0xdc, 0x2f, 0xa5, 0xc7, 0x56, 0x76, 0xa9, 0x25, 0xaf, 0xef, 0x4b, 0xe8, 0x56, 0x52, - 0x69, 0xab, 0x4f, 0x82, 0x5e, 0x92, 0x5d, 0x3f, 0x67, 0xf3, 0x5f, 0x80, 0xa9, 0x32, 0x99, 0x53, - 0x6e, 0x51, 0xdf, 0x71, 0x49, 0x2e, 0xb4, 0x5a, 0x4a, 0x65, 0xd0, 0x82, 0x77, 0x7a, 0xff, 0xf4, - 0xc3, 0x6d, 0xed, 0x5f, 0x7f, 0xb8, 0xad, 0xfd, 0xc7, 0x0f, 0xb7, 0xb5, 0x5f, 0xfd, 0xe7, 0xed, - 0x6b, 0xa7, 0x4d, 0xfa, 0x9b, 0xe3, 0xe7, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xa7, 0xd4, 0x0f, - 0x13, 0x59, 0x29, 0x00, 0x00, + // 4253 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0x4d, 0x6f, 0x1b, 0xd7, + 0x76, 0x9e, 0xe1, 0xd7, 0xcc, 0x21, 0x29, 0xd3, 0x13, 0x3f, 0x87, 0x51, 0x12, 0x4b, 0x99, 0xc4, + 0x89, 0xf2, 0x61, 0xd9, 0x51, 0x5e, 0xd1, 0x24, 0x0f, 0x05, 0xaa, 0x0f, 0xda, 0x51, 0x2c, 0x4b, + 0x7a, 0x97, 0x94, 0xd3, 0x97, 0x45, 0x89, 0xd1, 0xcc, 0x15, 0x35, 0x4f, 0xc3, 0x99, 0xe9, 0xdc, + 0xa1, 0x4a, 0x65, 0xd5, 0xa2, 0x68, 0x57, 0xed, 0xaa, 0x9b, 0xb7, 0x6a, 0xbb, 0xee, 0xa6, 0x40, + 0x57, 0x45, 0x17, 0x5d, 0x75, 0x51, 0x74, 0xf5, 0x7e, 0x81, 0x5b, 0xa4, 0x5d, 0x19, 0xe8, 0xaa, + 0x40, 0xd7, 0xc5, 0x39, 0xf7, 0xce, 0x17, 0x4d, 0xdb, 0xc9, 0x03, 0xde, 0x8a, 0xf7, 0x7c, 0xdc, + 0xaf, 0x73, 0xce, 0x3d, 0x5f, 0x43, 0x30, 0xe2, 0xd3, 0xcd, 0x38, 0x89, 0xd2, 0xc8, 0xd2, 0xe3, + 0xd3, 0x55, 0xd3, 0x89, 0x7d, 0x09, 0xae, 0x7e, 0x30, 0xf1, 0xd3, 0xf3, 0xd9, 0xe9, 0xa6, 0x1b, + 0x4d, 0xef, 0x79, 0x93, 0xc4, 0x89, 0xcf, 0xef, 0xfa, 0xd1, 0xbd, 0x53, 0xc7, 0x9b, 0xf0, 0xe4, + 0x5e, 0x7c, 0x7a, 0x2f, 0x9b, 0xb7, 0x7a, 0xb7, 0xc4, 0x38, 0x89, 0x26, 0xd1, 0x3d, 0x42, 0x9f, + 0xce, 0xce, 0x08, 0x22, 0x80, 0x46, 0x92, 0xdd, 0x5e, 0x85, 0xfa, 0x81, 0x2f, 0x52, 0xcb, 0x82, + 0xfa, 0xcc, 0xf7, 0x44, 0x5f, 0x5b, 0xaf, 0x6d, 0x34, 0x19, 0x8d, 0xed, 0xc7, 0x60, 0x8e, 0x1c, + 0x71, 0xf1, 0xc4, 0x09, 0x66, 0xdc, 0xea, 0x41, 0xed, 0xd2, 0x09, 0xfa, 0xda, 0xba, 0xb6, 0xd1, + 0x61, 0x38, 0xb4, 0x36, 0xc1, 0xb8, 0x74, 0x82, 0x71, 0x7a, 0x15, 0xf3, 0xbe, 0xbe, 0xae, 0x6d, + 0xac, 0x6c, 0xbd, 0xb6, 0x19, 0x9f, 0x6e, 0x1e, 0x47, 0x22, 0xf5, 0xc3, 0xc9, 0xe6, 0x13, 0x27, + 0x18, 0x5d, 0xc5, 0x9c, 0xb5, 0x2e, 0xe5, 0xc0, 0x3e, 0x82, 0xf6, 0x30, 0x71, 0x1f, 0xcc, 0x42, + 0x37, 0xf5, 0xa3, 0x10, 0x77, 0x0c, 0x9d, 0x29, 0xa7, 0x15, 0x4d, 0x46, 0x63, 0xc4, 0x39, 0xc9, + 0x44, 0xf4, 0x6b, 0xeb, 0x35, 0xc4, 0xe1, 0xd8, 0xea, 0x43, 0xcb, 0x17, 0xbb, 0xd1, 0x2c, 0x4c, + 0xfb, 0xf5, 0x75, 0x6d, 0xc3, 0x60, 0x19, 0x68, 0xff, 0x6d, 0x0d, 0x1a, 0x3f, 0x9f, 0xf1, 0xe4, + 0x8a, 0xe6, 0xa5, 0x69, 0x92, 0xad, 0x85, 0x63, 0xeb, 0x26, 0x34, 0x02, 0x27, 0x9c, 0x88, 0xbe, + 0x4e, 0x8b, 0x49, 0xc0, 0x7a, 0x13, 0x4c, 0xe7, 0x2c, 0xe5, 0xc9, 0x78, 0xe6, 0x7b, 0xfd, 0xda, + 0xba, 0xb6, 0xd1, 0x64, 0x06, 0x21, 0x4e, 0x7c, 0xcf, 0x7a, 0x03, 0x0c, 0x2f, 0x1a, 0xbb, 0xe5, + 0xbd, 0xbc, 0x88, 0xf6, 0xb2, 0xde, 0x05, 0x63, 0xe6, 0x7b, 0xe3, 0xc0, 0x17, 0x69, 0xbf, 0xb1, + 0xae, 0x6d, 0xb4, 0xb7, 0x0c, 0xbc, 0x2c, 0xca, 0x8e, 0xb5, 0x66, 0xbe, 0x47, 0x42, 0xfc, 0x08, + 0x0c, 0x91, 0xb8, 0xe3, 0xb3, 0x59, 0xe8, 0xf6, 0x9b, 0xc4, 0x74, 0x1d, 0x99, 0x4a, 0xb7, 0x66, + 0x2d, 0x21, 0x01, 0xbc, 0x56, 0xc2, 0x2f, 0x79, 0x22, 0x78, 0xbf, 0x25, 0xb7, 0x52, 0xa0, 0x75, + 0x1f, 0xda, 0x67, 0x8e, 0xcb, 0xd3, 0x71, 0xec, 0x24, 0xce, 0xb4, 0x6f, 0x14, 0x0b, 0x3d, 0x40, + 0xf4, 0x31, 0x62, 0x05, 0x83, 0xb3, 0x1c, 0xb0, 0x3e, 0x83, 0x2e, 0x41, 0x62, 0x7c, 0xe6, 0x07, + 0x29, 0x4f, 0xfa, 0x26, 0xcd, 0x59, 0xa1, 0x39, 0x84, 0x19, 0x25, 0x9c, 0xb3, 0x8e, 0x64, 0x92, + 0x18, 0xeb, 0x6d, 0x00, 0x3e, 0x8f, 0x9d, 0xd0, 0x1b, 0x3b, 0x41, 0xd0, 0x07, 0x3a, 0x83, 0x29, + 0x31, 0xdb, 0x41, 0x60, 0xbd, 0x8e, 0xe7, 0x73, 0xbc, 0x71, 0x2a, 0xfa, 0xdd, 0x75, 0x6d, 0xa3, + 0xce, 0x9a, 0x08, 0x8e, 0x04, 0xca, 0xd5, 0x75, 0xdc, 0x73, 0xde, 0x5f, 0x59, 0xd7, 0x36, 0x1a, + 0x4c, 0x02, 0x88, 0x3d, 0xf3, 0x13, 0x91, 0xf6, 0xaf, 0x4b, 0x2c, 0x01, 0xf6, 0x16, 0x98, 0x64, + 0x3d, 0x24, 0x9d, 0x3b, 0xd0, 0xbc, 0x44, 0x40, 0x1a, 0x59, 0x7b, 0xab, 0x8b, 0xc7, 0xcb, 0x0d, + 0x8c, 0x29, 0xa2, 0x7d, 0x1b, 0x8c, 0x03, 0x27, 0x9c, 0x64, 0x56, 0x89, 0x6a, 0xa3, 0x09, 0x26, + 0xa3, 0xb1, 0xfd, 0x2b, 0x1d, 0x9a, 0x8c, 0x8b, 0x59, 0x90, 0x5a, 0x1f, 0x00, 0xa0, 0x52, 0xa6, + 0x4e, 0x9a, 0xf8, 0x73, 0xb5, 0x6a, 0xa1, 0x16, 0x73, 0xe6, 0x7b, 0x8f, 0x89, 0x64, 0xdd, 0x87, + 0x0e, 0xad, 0x9e, 0xb1, 0xea, 0xc5, 0x01, 0xf2, 0xf3, 0xb1, 0x36, 0xb1, 0xa8, 0x19, 0xb7, 0xa0, + 0x49, 0x76, 0x20, 0x6d, 0xb1, 0xcb, 0x14, 0x64, 0xdd, 0x81, 0x15, 0x3f, 0x4c, 0x51, 0x4f, 0x6e, + 0x3a, 0xf6, 0xb8, 0xc8, 0x0c, 0xa5, 0x9b, 0x63, 0xf7, 0xb8, 0x48, 0xad, 0x4f, 0x41, 0x0a, 0x3b, + 0xdb, 0xb0, 0x41, 0x1b, 0xae, 0xe4, 0x4a, 0x14, 0x72, 0x47, 0xe2, 0x51, 0x3b, 0xde, 0x85, 0x36, + 0xde, 0x2f, 0x9b, 0xd1, 0xa4, 0x19, 0x1d, 0xba, 0x8d, 0x12, 0x07, 0x03, 0x64, 0x50, 0xec, 0x28, + 0x1a, 0x34, 0x46, 0x69, 0x3c, 0x34, 0xb6, 0x07, 0xd0, 0x38, 0x4a, 0x3c, 0x9e, 0x2c, 0x7d, 0x0f, + 0x16, 0xd4, 0x3d, 0x2e, 0x5c, 0x7a, 0xaa, 0x06, 0xa3, 0x71, 0xf1, 0x46, 0x6a, 0xa5, 0x37, 0x62, + 0xff, 0x8d, 0x06, 0xed, 0x61, 0x94, 0xa4, 0x8f, 0xb9, 0x10, 0xce, 0x84, 0x5b, 0x6b, 0xd0, 0x88, + 0x70, 0x59, 0x25, 0x61, 0x13, 0xcf, 0x44, 0xfb, 0x30, 0x89, 0x5f, 0xd0, 0x83, 0xfe, 0x62, 0x3d, + 0xa0, 0xed, 0xd0, 0xeb, 0xaa, 0x29, 0xdb, 0xa1, 0xb7, 0x75, 0x0b, 0x9a, 0xd1, 0xd9, 0x99, 0xe0, + 0x52, 0x96, 0x0d, 0xa6, 0xa0, 0x17, 0x9a, 0xa0, 0xfd, 0x3b, 0x00, 0x78, 0xbe, 0x1f, 0x69, 0x05, + 0xf6, 0x39, 0xb4, 0x99, 0x73, 0x96, 0xee, 0x46, 0x61, 0xca, 0xe7, 0xa9, 0xb5, 0x02, 0xba, 0xef, + 0x91, 0x88, 0x9a, 0x4c, 0xf7, 0x3d, 0x3c, 0xdc, 0x24, 0x89, 0x66, 0x31, 0x49, 0xa8, 0xcb, 0x24, + 0x40, 0xa2, 0xf4, 0xbc, 0x84, 0x4e, 0x8c, 0xa2, 0xf4, 0xbc, 0xc4, 0x5a, 0x83, 0xb6, 0x08, 0x9d, + 0x58, 0x9c, 0x47, 0x29, 0x1e, 0xae, 0x4e, 0x87, 0x83, 0x0c, 0x35, 0x12, 0xf6, 0xff, 0xe8, 0xd0, + 0x7c, 0xcc, 0xa7, 0xa7, 0x3c, 0x79, 0x6e, 0x97, 0xfb, 0x60, 0xd0, 0xc2, 0x63, 0xdf, 0x93, 0x1b, + 0xed, 0xfc, 0xe4, 0xd9, 0xd3, 0xb5, 0x1b, 0x84, 0xdb, 0xf7, 0x3e, 0x89, 0xa6, 0x7e, 0xca, 0xa7, + 0x71, 0x7a, 0xc5, 0x5a, 0x0a, 0xb5, 0xf4, 0x04, 0xb7, 0xa0, 0x19, 0x70, 0x07, 0x75, 0x22, 0xcd, + 0x4f, 0x41, 0xd6, 0x5d, 0x68, 0x39, 0xd3, 0xb1, 0xc7, 0x1d, 0x8f, 0xbc, 0x94, 0xb1, 0x73, 0xf3, + 0xd9, 0xd3, 0xb5, 0x9e, 0x33, 0xdd, 0xe3, 0x4e, 0x79, 0xed, 0xa6, 0xc4, 0x58, 0x5f, 0xa0, 0xcd, + 0x89, 0x74, 0x3c, 0x8b, 0x3d, 0x27, 0xe5, 0xe4, 0xb3, 0xea, 0x3b, 0xfd, 0x67, 0x4f, 0xd7, 0x6e, + 0x22, 0xfa, 0x84, 0xb0, 0xa5, 0x69, 0x50, 0x60, 0xad, 0x7d, 0xb8, 0xe1, 0x06, 0x33, 0x81, 0xae, + 0xd4, 0x0f, 0xcf, 0xa2, 0x71, 0x14, 0x06, 0x57, 0xa4, 0x26, 0x63, 0xe7, 0xed, 0x67, 0x4f, 0xd7, + 0xde, 0x50, 0xc4, 0xfd, 0xf0, 0x2c, 0x3a, 0x0a, 0x83, 0xab, 0xd2, 0x2a, 0xd7, 0x17, 0x48, 0xd6, + 0xef, 0xc3, 0xca, 0x59, 0x94, 0xb8, 0x7c, 0x9c, 0x0b, 0x66, 0x85, 0xd6, 0x59, 0x7d, 0xf6, 0x74, + 0xed, 0x16, 0x51, 0x1e, 0x3e, 0x27, 0x9d, 0x4e, 0x19, 0x6f, 0xff, 0x93, 0x0e, 0x0d, 0x1a, 0x5b, + 0xf7, 0xa1, 0x35, 0x25, 0xc1, 0x67, 0x5e, 0xe6, 0x16, 0x5a, 0x02, 0xd1, 0x36, 0xa5, 0x46, 0xc4, + 0x20, 0x4c, 0x93, 0x2b, 0x96, 0xb1, 0xe1, 0x8c, 0xd4, 0x39, 0x0d, 0x78, 0x2a, 0x94, 0xe5, 0x96, + 0x66, 0x8c, 0x24, 0x41, 0xcd, 0x50, 0x6c, 0x8b, 0xea, 0xaf, 0x2d, 0xaa, 0xdf, 0x5a, 0x05, 0xc3, + 0x3d, 0xe7, 0xee, 0x85, 0x98, 0x4d, 0x95, 0x71, 0xe4, 0xf0, 0xea, 0x03, 0xe8, 0x94, 0xcf, 0x81, + 0x71, 0xf5, 0x82, 0x5f, 0x91, 0x81, 0xd4, 0x19, 0x0e, 0xad, 0x75, 0x68, 0x90, 0x27, 0x22, 0xf3, + 0x68, 0x6f, 0x01, 0x1e, 0x47, 0x4e, 0x61, 0x92, 0xf0, 0xa5, 0xfe, 0xb9, 0x86, 0xeb, 0x94, 0x4f, + 0x57, 0x5e, 0xc7, 0x7c, 0xf1, 0x3a, 0x72, 0x4a, 0x69, 0x1d, 0x3b, 0x82, 0xd6, 0x81, 0xef, 0xf2, + 0x50, 0x50, 0xf4, 0x9d, 0x09, 0x9e, 0x7b, 0x0d, 0x1c, 0xe3, 0x55, 0xa6, 0xce, 0xfc, 0x30, 0xf2, + 0xb8, 0xa0, 0x75, 0xea, 0x2c, 0x87, 0x91, 0xc6, 0xe7, 0xb1, 0x9f, 0x5c, 0x8d, 0xa4, 0x10, 0x6a, + 0x2c, 0x87, 0x31, 0xbc, 0xf1, 0x10, 0x37, 0xf3, 0xb2, 0x48, 0xaa, 0x40, 0xfb, 0xef, 0x6a, 0xd0, + 0xf9, 0x96, 0x27, 0xd1, 0x71, 0x12, 0xc5, 0x91, 0x70, 0x02, 0x6b, 0xbb, 0x2a, 0x4e, 0xa9, 0xb6, + 0x75, 0x3c, 0x6d, 0x99, 0x6d, 0x73, 0x98, 0xcb, 0x57, 0xaa, 0xa3, 0x2c, 0x70, 0x1b, 0x9a, 0x52, + 0x9d, 0x4b, 0x64, 0xa6, 0x28, 0xc8, 0x23, 0x15, 0x48, 0x67, 0xad, 0xca, 0x43, 0x51, 0xac, 0xdb, + 0x00, 0x53, 0x67, 0x7e, 0xc0, 0x1d, 0xc1, 0xf7, 0xbd, 0xec, 0x5d, 0x17, 0x18, 0x25, 0x8d, 0xd1, + 0x3c, 0x1c, 0x09, 0x7a, 0x5f, 0x52, 0x1a, 0x04, 0x5b, 0x6f, 0x81, 0x39, 0x75, 0xe6, 0xe8, 0x60, + 0xf6, 0x3d, 0xf9, 0x92, 0x58, 0x81, 0xb0, 0xde, 0x81, 0x5a, 0x3a, 0x0f, 0xc9, 0x5b, 0x63, 0x30, + 0xc7, 0xc4, 0x6e, 0x34, 0x0f, 0x95, 0x2b, 0x62, 0x48, 0xcb, 0x34, 0x68, 0x14, 0x1a, 0xec, 0x41, + 0xcd, 0xf5, 0x3d, 0x8a, 0xe6, 0x26, 0xc3, 0xa1, 0x75, 0x07, 0x5a, 0x81, 0xd4, 0x16, 0x45, 0xec, + 0xf6, 0x56, 0x5b, 0x3a, 0x3a, 0x42, 0xb1, 0x8c, 0xb6, 0xfa, 0x7b, 0x70, 0x7d, 0x41, 0x5c, 0x65, + 0xfb, 0xe8, 0xca, 0xd5, 0x6f, 0x96, 0xed, 0xa3, 0x5e, 0xb6, 0x89, 0xff, 0xa8, 0xc1, 0x75, 0x65, + 0xa4, 0xe7, 0x7e, 0x3c, 0x4c, 0xf1, 0xbd, 0xf7, 0xa1, 0x45, 0xde, 0x5a, 0xd9, 0x47, 0x9d, 0x65, + 0xa0, 0xf5, 0xbb, 0xd0, 0xa4, 0x87, 0x9b, 0xbd, 0x9f, 0xb5, 0x42, 0xf8, 0xf9, 0x74, 0xf9, 0x9e, + 0x94, 0xe6, 0x14, 0xbb, 0xf5, 0x53, 0x68, 0x7c, 0xc7, 0x93, 0x48, 0x46, 0x9f, 0xf6, 0xd6, 0xed, + 0x65, 0xf3, 0xd0, 0x04, 0xd4, 0x34, 0xc9, 0xfc, 0x5b, 0xd4, 0xd1, 0x7b, 0x18, 0x6f, 0xa6, 0xd1, + 0x25, 0xf7, 0xfa, 0x2d, 0x3a, 0x51, 0xd9, 0x8c, 0x32, 0x52, 0xa6, 0x14, 0x63, 0xa9, 0x52, 0xcc, + 0x97, 0x28, 0x65, 0x0f, 0xda, 0x25, 0x29, 0x2c, 0x51, 0xc8, 0x5a, 0xf5, 0xc1, 0x9a, 0xb9, 0x1f, + 0x2a, 0xbf, 0xfb, 0x3d, 0x80, 0x42, 0x26, 0xbf, 0xa9, 0xf7, 0xb0, 0xff, 0x54, 0x83, 0xeb, 0xbb, + 0x51, 0x18, 0x72, 0xca, 0x4a, 0xa5, 0x86, 0x8b, 0x47, 0xa4, 0xbd, 0xf0, 0x11, 0x7d, 0x08, 0x0d, + 0x81, 0xcc, 0x6a, 0xf5, 0xd7, 0x96, 0xa8, 0x8c, 0x49, 0x0e, 0xf4, 0x92, 0x53, 0x67, 0x3e, 0x8e, + 0x79, 0xe8, 0xf9, 0xe1, 0x24, 0xf3, 0x92, 0x53, 0x67, 0x7e, 0x2c, 0x31, 0xf6, 0xbf, 0x68, 0x00, + 0x5f, 0x71, 0x27, 0x48, 0xcf, 0x31, 0x12, 0xa0, 0xde, 0xfc, 0x50, 0xa4, 0x4e, 0xe8, 0x66, 0x35, + 0x41, 0x0e, 0xa3, 0xf1, 0x61, 0xd8, 0xe3, 0x42, 0x3a, 0x21, 0x93, 0x65, 0x20, 0x06, 0x42, 0xdc, + 0x6e, 0x26, 0x54, 0x78, 0x54, 0x50, 0x11, 0xcc, 0xeb, 0x84, 0x56, 0xc1, 0xbc, 0x0f, 0x2d, 0xcc, + 0xb1, 0xfd, 0x28, 0x24, 0xd3, 0x30, 0x59, 0x06, 0xe2, 0x3a, 0xb3, 0x38, 0xf5, 0xa7, 0x32, 0x08, + 0xd6, 0x98, 0x82, 0xf0, 0x54, 0x18, 0xf4, 0x06, 0xee, 0x79, 0x44, 0x8f, 0xb7, 0xc6, 0x72, 0xd8, + 0xfe, 0x13, 0x1d, 0x9a, 0xd2, 0x81, 0x54, 0xa2, 0xba, 0xf6, 0x83, 0xa2, 0xfa, 0x5b, 0x60, 0xc6, + 0x09, 0xf7, 0x7c, 0x37, 0x93, 0xa6, 0xc9, 0x0a, 0x04, 0xa5, 0xd3, 0x18, 0xe0, 0xe8, 0x56, 0x06, + 0x93, 0x00, 0x62, 0x45, 0xec, 0xb8, 0x5c, 0x9d, 0x44, 0x02, 0x78, 0x74, 0x69, 0x9b, 0x64, 0x93, + 0x06, 0x53, 0x90, 0xf5, 0x19, 0x98, 0x94, 0x3e, 0x51, 0x64, 0x36, 0x29, 0xa2, 0xde, 0x7a, 0xf6, + 0x74, 0xcd, 0x42, 0xe4, 0x42, 0x48, 0x36, 0x32, 0x1c, 0x26, 0x10, 0x38, 0x19, 0x1d, 0x31, 0x50, + 0x36, 0x40, 0x09, 0x04, 0xa2, 0x46, 0xa2, 0x9c, 0x40, 0x48, 0x8c, 0xfd, 0xf7, 0x3a, 0x74, 0xf6, + 0xfc, 0x84, 0xbb, 0x29, 0xf7, 0x06, 0xde, 0x84, 0x0e, 0xc3, 0xc3, 0xd4, 0x4f, 0xaf, 0x54, 0xca, + 0xa3, 0xa0, 0x3c, 0x23, 0xd5, 0xab, 0x15, 0x9a, 0x34, 0xd5, 0x1a, 0x15, 0x95, 0x12, 0xb0, 0xb6, + 0x00, 0x64, 0xae, 0x4e, 0x85, 0x65, 0xfd, 0xc5, 0x85, 0xa5, 0x49, 0x6c, 0x38, 0xc4, 0xc2, 0x4d, + 0xce, 0xf1, 0x65, 0xde, 0xd3, 0xa4, 0xaa, 0x73, 0x86, 0xee, 0x80, 0x52, 0xdc, 0x53, 0x1e, 0x90, + 0x5e, 0x29, 0xc5, 0x3d, 0xe5, 0x41, 0x5e, 0x58, 0xb4, 0xe4, 0x71, 0x70, 0x6c, 0xbd, 0x0b, 0x7a, + 0x14, 0x93, 0x0c, 0xd5, 0x86, 0xe5, 0x8b, 0x6d, 0x1e, 0xc5, 0x4c, 0x8f, 0x62, 0x7c, 0x24, 0xb2, + 0x8a, 0xea, 0x9b, 0xca, 0x45, 0xa0, 0x2b, 0xa7, 0x9c, 0x9e, 0x29, 0x8a, 0x7d, 0x0b, 0xf4, 0xa3, + 0xd8, 0x6a, 0x41, 0x6d, 0x38, 0x18, 0xf5, 0xae, 0xe1, 0x60, 0x6f, 0x70, 0xd0, 0xd3, 0xec, 0xef, + 0x75, 0x30, 0x1f, 0xcf, 0x52, 0x07, 0x9f, 0x9c, 0xc0, 0x33, 0x57, 0x4d, 0xa6, 0xb0, 0x8d, 0x37, + 0xc0, 0x10, 0xa9, 0x93, 0x50, 0x38, 0x94, 0xce, 0xb9, 0x45, 0xf0, 0x48, 0x58, 0xef, 0x43, 0x83, + 0x7b, 0x13, 0x9e, 0xf9, 0xcc, 0xde, 0xe2, 0x39, 0x99, 0x24, 0x5b, 0x1b, 0xd0, 0x14, 0xee, 0x39, + 0x9f, 0x3a, 0xfd, 0x7a, 0xc1, 0x38, 0x24, 0x8c, 0x4c, 0xe0, 0x98, 0xa2, 0x5b, 0xef, 0x41, 0x03, + 0x25, 0x2d, 0x54, 0xc5, 0x41, 0x35, 0x0a, 0x0a, 0x55, 0xb1, 0x49, 0x22, 0xda, 0x85, 0x97, 0x44, + 0xf1, 0x38, 0x8a, 0x49, 0x66, 0x2b, 0x5b, 0x37, 0xe9, 0xe9, 0x67, 0xb7, 0xd9, 0xdc, 0x4b, 0xa2, + 0xf8, 0x28, 0x66, 0x4d, 0x8f, 0x7e, 0xb1, 0xb8, 0x24, 0x76, 0xa9, 0x5f, 0xe9, 0x2b, 0x4d, 0xc4, + 0xc8, 0x66, 0xc2, 0x06, 0x18, 0x53, 0x9e, 0x3a, 0x9e, 0x93, 0x3a, 0xca, 0x65, 0x76, 0xa4, 0x27, + 0x91, 0x38, 0x96, 0x53, 0xed, 0x7b, 0xd0, 0x94, 0x4b, 0x5b, 0x06, 0xd4, 0x0f, 0x8f, 0x0e, 0x07, + 0x52, 0xa0, 0xdb, 0x07, 0x07, 0x3d, 0x0d, 0x51, 0x7b, 0xdb, 0xa3, 0xed, 0x9e, 0x8e, 0xa3, 0xd1, + 0x2f, 0x8e, 0x07, 0xbd, 0x9a, 0xfd, 0xef, 0x1a, 0x18, 0xd9, 0x3a, 0xd6, 0x97, 0x00, 0xf8, 0xa6, + 0xc6, 0xe7, 0x7e, 0x98, 0x67, 0x16, 0x6f, 0x96, 0x77, 0xda, 0x3c, 0x4e, 0xb8, 0xf7, 0x15, 0x52, + 0x65, 0x8c, 0xa1, 0x27, 0x48, 0xf0, 0xea, 0x10, 0x56, 0xaa, 0xc4, 0x25, 0x29, 0xd6, 0xc7, 0x65, + 0x67, 0xbb, 0xb2, 0xf5, 0x93, 0xca, 0xd2, 0x38, 0x93, 0x0c, 0xb5, 0xe4, 0x77, 0xef, 0x82, 0x91, + 0xa1, 0xad, 0x36, 0xb4, 0xf6, 0x06, 0x0f, 0xb6, 0x4f, 0x0e, 0xd0, 0x48, 0x00, 0x9a, 0xc3, 0xfd, + 0xc3, 0x87, 0x07, 0x03, 0x79, 0xad, 0x83, 0xfd, 0xe1, 0xa8, 0xa7, 0xdb, 0x7f, 0xad, 0x81, 0x91, + 0x05, 0x72, 0xeb, 0x43, 0x8c, 0xc0, 0x94, 0x2f, 0x28, 0x07, 0x4d, 0x3d, 0x81, 0x52, 0x45, 0xc3, + 0x32, 0x3a, 0x1a, 0xbd, 0x1f, 0x7a, 0x7c, 0x9e, 0x85, 0x76, 0x02, 0xca, 0xf5, 0x54, 0xad, 0x52, + 0xd2, 0x63, 0x69, 0x18, 0x85, 0x5c, 0x65, 0x6a, 0x34, 0x26, 0x1b, 0xf4, 0x43, 0x97, 0x3c, 0x41, + 0x43, 0xd9, 0x20, 0xc2, 0x23, 0x61, 0xff, 0x5a, 0x07, 0x23, 0xcf, 0xde, 0x3e, 0x06, 0x73, 0x9a, + 0x59, 0x81, 0x8a, 0x0a, 0xdd, 0x8a, 0x69, 0xb0, 0x82, 0x6e, 0xbd, 0x0d, 0xfa, 0xc5, 0xa5, 0xb2, + 0xc8, 0xee, 0xa6, 0xec, 0x5e, 0xc5, 0xa7, 0x5b, 0x9b, 0x8f, 0x9e, 0x30, 0xfd, 0xe2, 0xb2, 0x88, + 0x2e, 0x8d, 0x57, 0x46, 0x97, 0x0f, 0xe0, 0xba, 0x1b, 0x70, 0x27, 0x1c, 0x17, 0x4e, 0x54, 0x3e, + 0xf0, 0x15, 0x42, 0x1f, 0xe7, 0x9e, 0x54, 0x29, 0xad, 0x55, 0x28, 0xed, 0x0e, 0x34, 0x3c, 0x1e, + 0xa4, 0x4e, 0xb9, 0xb3, 0x72, 0x94, 0x38, 0x6e, 0xc0, 0xf7, 0x10, 0xcd, 0x24, 0x15, 0x6d, 0x34, + 0xcb, 0x30, 0xcb, 0x36, 0x9a, 0xa9, 0x83, 0xe5, 0xd4, 0x42, 0xda, 0x50, 0x96, 0xf6, 0xc7, 0x70, + 0x83, 0xcf, 0x63, 0x7a, 0x98, 0xe3, 0xbc, 0x1a, 0x68, 0x13, 0x47, 0x2f, 0x23, 0xec, 0x2a, 0xbc, + 0xfd, 0x39, 0xd4, 0x1e, 0x3d, 0x19, 0x2a, 0xf9, 0x68, 0x2f, 0x92, 0x4f, 0xa6, 0x27, 0xbd, 0xd0, + 0x93, 0xfd, 0x7f, 0x35, 0x68, 0x29, 0xcf, 0x88, 0x77, 0x9d, 0xe5, 0xc5, 0x26, 0x0e, 0xab, 0x39, + 0x5e, 0xee, 0x62, 0xcb, 0x9d, 0xbb, 0xda, 0xab, 0x3b, 0x77, 0xd6, 0x97, 0xd0, 0x89, 0x25, 0xad, + 0xec, 0x94, 0x5f, 0x2f, 0xcf, 0x51, 0xbf, 0x34, 0xaf, 0x1d, 0x17, 0x00, 0xda, 0x11, 0xb5, 0x35, + 0x52, 0x67, 0x42, 0x6a, 0xed, 0xb0, 0x16, 0xc2, 0x23, 0x67, 0xf2, 0x02, 0xd7, 0xfc, 0x03, 0x3c, + 0x2c, 0x16, 0xd5, 0x51, 0xdc, 0xef, 0x90, 0xd7, 0x44, 0xaf, 0x5c, 0x76, 0x98, 0xdd, 0xaa, 0xc3, + 0x7c, 0x13, 0x4c, 0x37, 0x9a, 0x4e, 0x7d, 0xa2, 0xad, 0xa8, 0x62, 0x8c, 0x10, 0x23, 0x61, 0xff, + 0x85, 0x06, 0x2d, 0x75, 0xdb, 0xe7, 0x9e, 0xe3, 0xce, 0xfe, 0xe1, 0x36, 0xfb, 0x45, 0x4f, 0x43, + 0x77, 0xb3, 0x7f, 0x38, 0xea, 0xe9, 0x96, 0x09, 0x8d, 0x07, 0x07, 0x47, 0xdb, 0xa3, 0x5e, 0x0d, + 0x9f, 0xe8, 0xce, 0xd1, 0xd1, 0x41, 0xaf, 0x6e, 0x75, 0xc0, 0xd8, 0xdb, 0x1e, 0x0d, 0x46, 0xfb, + 0x8f, 0x07, 0xbd, 0x06, 0xf2, 0x3e, 0x1c, 0x1c, 0xf5, 0x9a, 0x38, 0x38, 0xd9, 0xdf, 0xeb, 0xb5, + 0x90, 0x7e, 0xbc, 0x3d, 0x1c, 0x7e, 0x73, 0xc4, 0xf6, 0x7a, 0x06, 0x3d, 0xf3, 0x11, 0xdb, 0x3f, + 0x7c, 0xd8, 0x33, 0x71, 0x7c, 0xb4, 0xf3, 0xf5, 0x60, 0x77, 0xd4, 0x03, 0xfb, 0x53, 0x68, 0x97, + 0x24, 0x88, 0xb3, 0xd9, 0xe0, 0x41, 0xef, 0x1a, 0x6e, 0xf9, 0x64, 0xfb, 0xe0, 0x04, 0xbd, 0xc2, + 0x0a, 0x00, 0x0d, 0xc7, 0x07, 0xdb, 0x87, 0x0f, 0x7b, 0xba, 0xfd, 0x73, 0x30, 0x4e, 0x7c, 0x6f, + 0x27, 0x88, 0xdc, 0x0b, 0x34, 0x8c, 0x53, 0x47, 0x70, 0x95, 0x07, 0xd2, 0x18, 0x23, 0x31, 0x19, + 0xb2, 0x50, 0xba, 0x57, 0x10, 0xca, 0x2a, 0x9c, 0x4d, 0xc7, 0xd4, 0xed, 0xad, 0xc9, 0xb8, 0x13, + 0xce, 0xa6, 0x27, 0xbe, 0x27, 0xec, 0x43, 0x68, 0x9d, 0xf8, 0xde, 0xb1, 0xe3, 0x5e, 0xa0, 0x03, + 0x3f, 0xc5, 0xa5, 0xc7, 0xc2, 0xff, 0x8e, 0xab, 0xf8, 0x64, 0x12, 0x66, 0xe8, 0x7f, 0xc7, 0xad, + 0xf7, 0xa0, 0x49, 0x40, 0x96, 0xf3, 0xd3, 0xd3, 0xc8, 0x8e, 0xc3, 0x14, 0xcd, 0xfe, 0x4b, 0x2d, + 0xbf, 0x16, 0xb5, 0xf3, 0xd6, 0xa0, 0x1e, 0x3b, 0xee, 0x85, 0x72, 0x5f, 0x6d, 0x35, 0x07, 0xf7, + 0x63, 0x44, 0xb0, 0x3e, 0x00, 0x43, 0xd9, 0x4e, 0xb6, 0x70, 0xbb, 0x64, 0x64, 0x2c, 0x27, 0x56, + 0xb5, 0x5a, 0xab, 0x6a, 0x95, 0x72, 0xc2, 0x38, 0xf0, 0xa9, 0x33, 0x53, 0x43, 0x37, 0x27, 0x21, + 0xfb, 0xa7, 0x00, 0x45, 0x07, 0x75, 0x89, 0x37, 0xbf, 0x09, 0x0d, 0x27, 0xf0, 0x9d, 0x2c, 0xc7, + 0x94, 0x80, 0x7d, 0x08, 0xed, 0x52, 0xdf, 0x15, 0xc5, 0xe7, 0x04, 0xc1, 0xf8, 0x82, 0x5f, 0x09, + 0x9a, 0x6b, 0xb0, 0x96, 0x13, 0x04, 0x8f, 0xf8, 0x95, 0xc0, 0x48, 0x2a, 0x5b, 0xb6, 0xfa, 0x42, + 0xb7, 0x8f, 0xa6, 0x32, 0x49, 0xb4, 0x3f, 0x81, 0xa6, 0x6c, 0x01, 0x96, 0x2c, 0x5d, 0x7b, 0x61, + 0x2e, 0xf1, 0x85, 0x3a, 0x33, 0x35, 0x0c, 0xad, 0x8f, 0x55, 0x6b, 0x58, 0xc8, 0x46, 0xb4, 0x56, + 0x54, 0x29, 0x92, 0x49, 0x75, 0x85, 0x89, 0xd9, 0xde, 0x03, 0xe3, 0xa5, 0xcd, 0x76, 0x25, 0x00, + 0xbd, 0x10, 0xc0, 0x92, 0xf6, 0xbb, 0xfd, 0x4b, 0x80, 0xa2, 0x85, 0xac, 0x1e, 0x9e, 0x5c, 0x05, + 0x1f, 0xde, 0x47, 0x60, 0xb8, 0xe7, 0x7e, 0xe0, 0x25, 0x3c, 0xac, 0xdc, 0xba, 0x68, 0x3a, 0xe7, + 0x74, 0x6b, 0x1d, 0xea, 0xd4, 0x19, 0xaf, 0x15, 0xce, 0x34, 0x6f, 0x8b, 0x13, 0xc5, 0x9e, 0x43, + 0x57, 0xa6, 0x28, 0x8c, 0xff, 0xd1, 0x8c, 0x8b, 0xf4, 0x65, 0x39, 0xd2, 0x6d, 0x19, 0xda, 0xc9, + 0xc9, 0x67, 0x3d, 0xfe, 0x12, 0x06, 0x8d, 0xe0, 0xcc, 0xe7, 0x81, 0x97, 0xdd, 0x46, 0x41, 0xa8, + 0x64, 0x99, 0xee, 0xd4, 0x65, 0xcb, 0x93, 0x00, 0xfb, 0xcf, 0x74, 0x00, 0xb9, 0xf5, 0x61, 0xe4, + 0xf1, 0x6a, 0x72, 0xae, 0x2d, 0x26, 0xe7, 0x16, 0xd4, 0xf3, 0x8f, 0x1e, 0x26, 0xa3, 0x71, 0x11, + 0x03, 0x54, 0xc2, 0x2e, 0x63, 0xc0, 0x5b, 0x60, 0xa6, 0xd1, 0x05, 0x0f, 0xfd, 0xef, 0xa8, 0x53, + 0x87, 0x1b, 0x16, 0x88, 0xf2, 0x27, 0x80, 0x46, 0xf5, 0x13, 0x40, 0xde, 0x27, 0x6d, 0xca, 0xd5, + 0x64, 0x9f, 0x74, 0x49, 0xcb, 0x57, 0xd6, 0x2d, 0x82, 0x27, 0x69, 0x96, 0xfc, 0x4b, 0x28, 0x4f, + 0x70, 0x4d, 0xc5, 0x8b, 0x09, 0xee, 0x1a, 0xb4, 0xc3, 0x68, 0xec, 0x46, 0xe1, 0x59, 0xe0, 0xbb, + 0xa9, 0x6a, 0xf9, 0x43, 0x18, 0xed, 0x2a, 0x8c, 0xfd, 0x25, 0x74, 0x32, 0xf9, 0x53, 0x67, 0xf5, + 0xa3, 0x3c, 0x89, 0xd4, 0x0a, 0xdd, 0x16, 0x62, 0xda, 0xd1, 0xfb, 0x5a, 0x96, 0x46, 0xda, 0xff, + 0x5b, 0xcb, 0x26, 0xab, 0x06, 0xe1, 0xcb, 0x65, 0x58, 0xcd, 0xf2, 0xf5, 0x1f, 0x94, 0xe5, 0x7f, + 0x0e, 0xa6, 0x47, 0xa9, 0xae, 0x7f, 0x99, 0xc5, 0xad, 0xd5, 0xc5, 0xb4, 0x56, 0x25, 0xc3, 0xfe, + 0x25, 0x67, 0x05, 0xf3, 0x2b, 0xf4, 0x90, 0x4b, 0xbb, 0xb1, 0x4c, 0xda, 0xcd, 0xdf, 0x50, 0xda, + 0xef, 0x40, 0x27, 0x8c, 0xc2, 0x71, 0x38, 0x0b, 0x02, 0xac, 0x11, 0x95, 0xb8, 0xdb, 0x61, 0x14, + 0x1e, 0x2a, 0x94, 0xf5, 0x11, 0xdc, 0x28, 0xb3, 0xc8, 0x47, 0xdd, 0x26, 0xbe, 0xeb, 0x25, 0x3e, + 0x7a, 0xfa, 0x1b, 0xd0, 0x8b, 0x4e, 0x7f, 0xc9, 0xdd, 0x94, 0x24, 0x36, 0xa6, 0xd7, 0xdc, 0x91, + 0x19, 0x8f, 0xc4, 0xa3, 0x88, 0x0e, 0xf1, 0x5d, 0x2f, 0xa8, 0xb9, 0xfb, 0x9c, 0x9a, 0xbf, 0x00, + 0x33, 0x97, 0x52, 0x29, 0xad, 0x36, 0xa1, 0xb1, 0x7f, 0xb8, 0x37, 0xf8, 0x83, 0x9e, 0x86, 0xb1, + 0x90, 0x0d, 0x9e, 0x0c, 0xd8, 0x70, 0xd0, 0xd3, 0x31, 0x4e, 0xed, 0x0d, 0x0e, 0x06, 0xa3, 0x41, + 0xaf, 0xf6, 0x75, 0xdd, 0x68, 0xf5, 0x0c, 0x6a, 0xf3, 0x05, 0xbe, 0xeb, 0xa7, 0xf6, 0x10, 0xa0, + 0xa8, 0x15, 0xd0, 0x2b, 0x17, 0x87, 0x53, 0x35, 0x7c, 0x9a, 0x1d, 0x6b, 0x23, 0x7f, 0x90, 0xfa, + 0x8b, 0x2a, 0x12, 0x49, 0xb7, 0xb7, 0xc0, 0x7c, 0xec, 0xc4, 0x5f, 0xc9, 0x8e, 0xf6, 0x1d, 0x58, + 0x89, 0x9d, 0x24, 0xf5, 0xd1, 0x4d, 0x64, 0x5e, 0xb7, 0xb6, 0xd1, 0x61, 0xdd, 0x1c, 0x8b, 0xbe, + 0xd7, 0x3e, 0x01, 0xe3, 0xb1, 0x13, 0x3f, 0x97, 0xa7, 0x77, 0xf2, 0x46, 0xda, 0x4c, 0xf5, 0xdb, + 0x55, 0x62, 0x74, 0x07, 0x5a, 0x2a, 0x98, 0x28, 0x7f, 0x54, 0x09, 0x34, 0x19, 0xcd, 0xfe, 0x47, + 0x0d, 0x6e, 0x3e, 0x8e, 0x2e, 0x79, 0x9e, 0x4f, 0x1e, 0x3b, 0x57, 0x41, 0xe4, 0x78, 0xaf, 0xb0, + 0xee, 0xb7, 0x01, 0x44, 0x34, 0xa3, 0x96, 0x76, 0xd6, 0xe6, 0x67, 0xa6, 0xc4, 0x3c, 0x54, 0xdf, + 0x19, 0xb9, 0x48, 0x89, 0xa8, 0x42, 0x30, 0xc2, 0x48, 0xfa, 0x09, 0x34, 0xd3, 0x79, 0x58, 0x7c, + 0x55, 0x68, 0xa4, 0xd4, 0xb8, 0x5a, 0x9a, 0x4c, 0x36, 0x5e, 0x90, 0x4c, 0xee, 0x82, 0x39, 0x9a, + 0x53, 0x53, 0x67, 0x26, 0x2a, 0xa9, 0x91, 0xf6, 0x92, 0xd4, 0x48, 0x5f, 0x48, 0x8d, 0xfe, 0x5b, + 0x83, 0x76, 0x29, 0x2b, 0xb6, 0xde, 0x81, 0x7a, 0x3a, 0x0f, 0xab, 0xdf, 0xee, 0xb2, 0x4d, 0x18, + 0x91, 0xd0, 0xe2, 0xa7, 0xce, 0x7c, 0xec, 0x08, 0xe1, 0x4f, 0x42, 0xee, 0xa9, 0x25, 0xdb, 0x53, + 0x67, 0xbe, 0xad, 0x50, 0xd6, 0x01, 0x5c, 0x97, 0x0e, 0x3d, 0xbb, 0x44, 0x56, 0xc8, 0xbe, 0xbb, + 0x90, 0x85, 0xcb, 0xc6, 0x57, 0x76, 0x25, 0x55, 0x9d, 0xad, 0x4c, 0x2a, 0xc8, 0xd5, 0x6d, 0x78, + 0x6d, 0x09, 0xdb, 0x8f, 0x6a, 0x75, 0xae, 0x41, 0x77, 0x34, 0x0f, 0x47, 0xfe, 0x94, 0x8b, 0xd4, + 0x99, 0xc6, 0x94, 0x5a, 0xaa, 0x80, 0x5c, 0x67, 0x7a, 0x2a, 0xec, 0xf7, 0xa1, 0x73, 0xcc, 0x79, + 0xc2, 0xb8, 0x88, 0xa3, 0x50, 0xa6, 0x55, 0xaa, 0xe1, 0x24, 0xa3, 0xbf, 0x82, 0xec, 0x3f, 0x04, + 0x13, 0x4b, 0xb1, 0x1d, 0x27, 0x75, 0xcf, 0x7f, 0x4c, 0xa9, 0xf6, 0x3e, 0xb4, 0x62, 0x69, 0x53, + 0xaa, 0x7a, 0xea, 0x50, 0x16, 0xa0, 0xec, 0x8c, 0x65, 0x44, 0xfb, 0x53, 0x78, 0x6d, 0x38, 0x3b, + 0x15, 0x6e, 0xe2, 0xc7, 0x14, 0x31, 0x55, 0x84, 0x5c, 0x05, 0x23, 0x4e, 0xf8, 0x99, 0x3f, 0xe7, + 0xd9, 0xc3, 0xc8, 0x61, 0xfb, 0x67, 0x70, 0xb3, 0x3a, 0x45, 0x5d, 0xe1, 0x5d, 0xa8, 0x5d, 0x5c, + 0x0a, 0x75, 0xb2, 0x1b, 0x95, 0x32, 0x83, 0x3e, 0x99, 0x21, 0xd5, 0x66, 0x50, 0x3b, 0x9c, 0x4d, + 0xcb, 0x9f, 0xfd, 0xeb, 0xf2, 0xb3, 0xff, 0x9b, 0xe5, 0xb6, 0x92, 0xac, 0x44, 0x8a, 0xf6, 0xd1, + 0x5b, 0x60, 0x9e, 0x45, 0xc9, 0x1f, 0x3b, 0x89, 0xc7, 0x3d, 0x15, 0x0a, 0x0b, 0x84, 0xfd, 0x2d, + 0xb4, 0x33, 0x4b, 0xd8, 0xf7, 0xe8, 0x1b, 0x01, 0x99, 0xe2, 0xbe, 0x57, 0xb1, 0x4c, 0xd9, 0xb4, + 0xe1, 0xa1, 0xb7, 0x9f, 0x99, 0x90, 0x04, 0xaa, 0x3b, 0xab, 0xd6, 0x6e, 0xb6, 0xb3, 0xfd, 0x00, + 0x3a, 0x59, 0x69, 0x86, 0x15, 0x38, 0x19, 0x77, 0xe0, 0xf3, 0xb0, 0x64, 0xf8, 0x86, 0x44, 0x8c, + 0xaa, 0xbd, 0x17, 0xbd, 0x92, 0x57, 0xd8, 0x9b, 0xd0, 0x54, 0x2f, 0xc7, 0x82, 0xba, 0x1b, 0x79, + 0xf2, 0x75, 0x37, 0x18, 0x8d, 0x51, 0x1c, 0x53, 0x31, 0xc9, 0x72, 0xa6, 0xa9, 0x98, 0xd8, 0xff, + 0xac, 0x43, 0x77, 0xc7, 0x71, 0x2f, 0x66, 0x71, 0xa6, 0x92, 0x52, 0x99, 0xad, 0x55, 0xca, 0xec, + 0x72, 0x49, 0xad, 0x57, 0x4a, 0xea, 0xca, 0x81, 0x6a, 0xd5, 0x44, 0xe7, 0x75, 0x68, 0xcd, 0x42, + 0x7f, 0x9e, 0xb9, 0x04, 0x93, 0x35, 0x11, 0x1c, 0x09, 0x6b, 0x1d, 0xda, 0xe8, 0x35, 0xfc, 0x90, + 0x8a, 0x6b, 0xd5, 0xd0, 0x2c, 0xa3, 0xd0, 0x0d, 0x39, 0xae, 0xcb, 0x85, 0x40, 0xc7, 0xa9, 0xaa, + 0x2c, 0x53, 0x62, 0x1e, 0xf1, 0x2b, 0xf2, 0x52, 0xdc, 0x4d, 0x78, 0x3a, 0x2e, 0x2a, 0x64, 0x53, + 0x62, 0x90, 0xfc, 0x2e, 0x74, 0x05, 0x17, 0x02, 0xfd, 0x2e, 0xc5, 0x4a, 0xd5, 0xc6, 0xe9, 0x28, + 0xe4, 0x08, 0x71, 0xa8, 0x70, 0x27, 0x8c, 0xc2, 0xab, 0x69, 0x34, 0x13, 0x2a, 0xfc, 0x15, 0x88, + 0x85, 0x24, 0x0d, 0x16, 0x93, 0x34, 0x3b, 0x85, 0xee, 0x60, 0x1e, 0xd3, 0xa7, 0xdc, 0x57, 0x26, + 0x7c, 0x25, 0xb1, 0xea, 0x15, 0xb1, 0x96, 0x04, 0x54, 0x53, 0xbd, 0x5b, 0x29, 0x20, 0x4c, 0x01, + 0xa3, 0x64, 0xea, 0xa4, 0x99, 0xe0, 0x24, 0x64, 0xff, 0x95, 0x0e, 0xa6, 0x54, 0x19, 0x5e, 0xf3, + 0x43, 0x95, 0xcd, 0x69, 0x45, 0x0b, 0x27, 0x27, 0x6e, 0x3e, 0xe2, 0x57, 0x94, 0x85, 0xc8, 0x24, + 0x6f, 0x59, 0x13, 0x53, 0x85, 0x16, 0x59, 0x83, 0x50, 0x68, 0x79, 0x13, 0x4c, 0xe9, 0x71, 0x11, + 0xaf, 0x3e, 0xff, 0x11, 0xe2, 0xc4, 0xa7, 0x8f, 0xb9, 0x29, 0x4f, 0xa6, 0x4a, 0x5b, 0x34, 0xae, + 0x66, 0x7b, 0x5d, 0x95, 0x7f, 0xd8, 0xe7, 0xd0, 0x52, 0xbb, 0x63, 0x38, 0x3e, 0x39, 0x7c, 0x74, + 0x78, 0xf4, 0xcd, 0x61, 0xef, 0x5a, 0xde, 0xf4, 0xd2, 0x8a, 0x80, 0xad, 0x97, 0x03, 0x76, 0x0d, + 0xf1, 0xbb, 0x47, 0x27, 0x87, 0xa3, 0x5e, 0xdd, 0xea, 0x82, 0x49, 0xc3, 0x31, 0x1b, 0x3c, 0xe9, + 0x35, 0xa8, 0xfc, 0xdc, 0xfd, 0x6a, 0xf0, 0x78, 0xbb, 0xd7, 0xcc, 0x5b, 0x66, 0x2d, 0xfb, 0xcf, + 0x35, 0xb8, 0x21, 0xaf, 0x5c, 0x2e, 0xd6, 0xca, 0xff, 0x08, 0xaa, 0xcb, 0x7f, 0x04, 0xfd, 0x76, + 0xeb, 0xb3, 0xad, 0x7f, 0xd5, 0xa0, 0x8e, 0x3e, 0xd2, 0xba, 0x0b, 0xe6, 0x57, 0xdc, 0x49, 0xd2, + 0x53, 0xee, 0xa4, 0x56, 0xc5, 0x1f, 0xae, 0x52, 0x0a, 0x5a, 0x7c, 0x35, 0xb0, 0xaf, 0xdd, 0xd7, + 0xac, 0x4d, 0xf9, 0x5d, 0x3f, 0xfb, 0xbb, 0x42, 0x37, 0xf3, 0xb5, 0xe4, 0x8b, 0x57, 0x2b, 0xf3, + 0xed, 0x6b, 0x1b, 0xc4, 0xff, 0x75, 0xe4, 0x87, 0xbb, 0xf2, 0x33, 0xb4, 0xb5, 0xe8, 0x9b, 0x17, + 0x67, 0x58, 0x77, 0xa1, 0xb9, 0x2f, 0x30, 0x08, 0x3c, 0xcf, 0x4a, 0x49, 0x4c, 0x39, 0x3e, 0xd8, + 0xd7, 0xb6, 0xfe, 0xa1, 0x06, 0xf5, 0x6f, 0x79, 0x12, 0x59, 0x9f, 0x40, 0x4b, 0x7d, 0x63, 0xb1, + 0x4a, 0xdf, 0x52, 0x56, 0x29, 0xcd, 0x5d, 0xf8, 0xf8, 0x42, 0xbb, 0xf4, 0x64, 0x1e, 0x54, 0x74, + 0xbc, 0xac, 0xe2, 0x13, 0xd0, 0x73, 0x87, 0xfa, 0x02, 0x7a, 0xc3, 0x34, 0xe1, 0xce, 0xb4, 0xc4, + 0x5e, 0x15, 0xd5, 0xb2, 0xf6, 0x19, 0xc9, 0xeb, 0x63, 0x68, 0xca, 0x48, 0xbb, 0x30, 0x61, 0xb1, + 0x13, 0x46, 0xcc, 0x1f, 0x40, 0x7b, 0x78, 0x1e, 0xcd, 0x02, 0x6f, 0xc8, 0x93, 0x4b, 0x6e, 0x95, + 0xbe, 0x9a, 0xae, 0x96, 0xc6, 0xf6, 0x35, 0x6b, 0x03, 0x40, 0x3a, 0xf7, 0x13, 0xb4, 0x94, 0x16, + 0xd2, 0x0e, 0x67, 0x53, 0xb9, 0x68, 0xc9, 0xeb, 0x4b, 0xce, 0x52, 0xc0, 0x7d, 0x19, 0xe7, 0x67, + 0xd0, 0xdd, 0x25, 0xab, 0x39, 0x4a, 0xb6, 0x4f, 0xa3, 0x24, 0xb5, 0x16, 0xbf, 0x9c, 0xae, 0x2e, + 0x22, 0xec, 0x6b, 0xd6, 0x7d, 0x30, 0x46, 0xc9, 0x95, 0xe4, 0xbf, 0xa1, 0xf2, 0x94, 0x62, 0xbf, + 0x25, 0xb7, 0xdc, 0xfa, 0xbe, 0x06, 0xcd, 0x6f, 0xa2, 0xe4, 0x82, 0x27, 0x58, 0xf2, 0x50, 0xe7, + 0x52, 0x99, 0x51, 0xde, 0xc5, 0x5c, 0xb6, 0xd1, 0x7b, 0x60, 0x92, 0x50, 0x46, 0x8e, 0xb8, 0x90, + 0xaa, 0xa2, 0x7f, 0xa3, 0x49, 0xb9, 0xc8, 0x12, 0x8a, 0xf4, 0xba, 0x22, 0x15, 0x95, 0x37, 0x72, + 0x2b, 0x7d, 0xc4, 0x55, 0xba, 0xff, 0xa3, 0x27, 0x43, 0x34, 0xcd, 0xfb, 0x1a, 0xba, 0xa3, 0xa1, + 0xbc, 0x29, 0x32, 0x15, 0xff, 0xc2, 0x91, 0x96, 0x5f, 0xfc, 0xed, 0xc5, 0xbe, 0x66, 0xdd, 0x83, + 0xa6, 0xcc, 0x9f, 0xe5, 0x35, 0x2b, 0xa5, 0xf3, 0x6a, 0xaf, 0x8c, 0x52, 0x13, 0x3e, 0x84, 0xa6, + 0x7c, 0xe7, 0x72, 0x42, 0x25, 0x6c, 0xc9, 0x53, 0xcb, 0xd0, 0x27, 0x59, 0xa5, 0x67, 0x96, 0xac, + 0x15, 0x2f, 0xbd, 0xc0, 0x7a, 0x17, 0x7a, 0x8c, 0xbb, 0xdc, 0x2f, 0x65, 0xc9, 0x56, 0x76, 0xa9, + 0x25, 0xaf, 0xef, 0x0b, 0xe8, 0x56, 0x32, 0x6a, 0xab, 0x4f, 0x82, 0x5e, 0x92, 0x64, 0x3f, 0x67, + 0xf3, 0x3f, 0x03, 0x53, 0x25, 0x34, 0xa7, 0xdc, 0xa2, 0xf6, 0xe3, 0x92, 0x94, 0x68, 0xf5, 0xf9, + 0x8c, 0x06, 0x0d, 0x79, 0xa7, 0xf7, 0x6f, 0xdf, 0xdf, 0xd6, 0x7e, 0xfd, 0xfd, 0x6d, 0xed, 0x3f, + 0xbf, 0xbf, 0xad, 0xfd, 0xea, 0xbf, 0x6e, 0x5f, 0x3b, 0x6d, 0xd2, 0x5f, 0x20, 0x3f, 0xfb, 0xff, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xaa, 0xb0, 0x6f, 0x75, 0x29, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/wiki/content/deploy/index.md b/wiki/content/deploy/index.md index a5c9a0b9e9c..4e9272b1d1f 100644 --- a/wiki/content/deploy/index.md +++ b/wiki/content/deploy/index.md @@ -2006,15 +2006,15 @@ The disk metrics let you track the disk activity of the Dgraph process. Dgraph d directly with the filesystem. Instead it relies on [Badger](https://github.com/dgraph-io/badger) to read from and write to disk. - Metrics | Description - ------- | ----------- - `badger_disk_reads_total` | Total count of disk reads in Badger. - `badger_disk_writes_total` | Total count of disk writes in Badger. - `badger_gets_total` | Total count of calls to Badger's `get`. - `badger_memtable_gets_total` | Total count of memtable accesses to Badger's `get`. - `badger_puts_total` | Total count of calls to Badger's `put`. - `badger_read_bytes` | Total bytes read from Badger. - `badger_written_bytes` | Total bytes written to Badger. + Metrics | Description + ------- | ----------- + `badger_v2_disk_reads_total` | Total count of disk reads in Badger. + `badger_v2_disk_writes_total` | Total count of disk writes in Badger. + `badger_v2_gets_total` | Total count of calls to Badger's `get`. + `badger_v2_memtable_gets_total` | Total count of memtable accesses to Badger's `get`. + `badger_v2_puts_total` | Total count of calls to Badger's `put`. + `badger_v2_read_bytes` | Total bytes read from Badger. + `badger_v2_written_bytes` | Total bytes written to Badger. ### Memory Metrics