diff --git a/lib/adapter/adapters.go b/lib/adapter/adapters.go index 5a15ca7a..29aea2a2 100644 --- a/lib/adapter/adapters.go +++ b/lib/adapter/adapters.go @@ -61,8 +61,13 @@ type Action struct { // MintTokenResult is returned by the MintToken() method. type MintTokenResult struct { - Account string - Token string + // A set of credential information like "account" and "access_token", or whatever + // may apply for the given target service. + Credentials map[string]string + // A set of metadata labels about the result to provide context to the client application. + Labels map[string]string + // The type of token, if applicable, that was able to be generated, which may vary from + // the TokenFormat requested in the Action depending on service requirements. TokenFormat string } diff --git a/lib/adapter/gatekeeper_adapter.go b/lib/adapter/gatekeeper_adapter.go index f3c4a9f5..e831d042 100644 --- a/lib/adapter/gatekeeper_adapter.go +++ b/lib/adapter/gatekeeper_adapter.go @@ -152,8 +152,10 @@ func (a *GatekeeperAdapter) MintToken(ctx context.Context, input *Action) (*Mint return nil, err } return &MintTokenResult{ - Account: input.Identity.Subject, - Token: token, + Credentials: map[string]string{ + "account": input.Identity.Subject, + "access_token": token, + }, TokenFormat: "base64", }, nil } diff --git a/lib/adapter/gatekeeper_adapter_test.go b/lib/adapter/gatekeeper_adapter_test.go index 488d3ef8..1430416a 100644 --- a/lib/adapter/gatekeeper_adapter_test.go +++ b/lib/adapter/gatekeeper_adapter_test.go @@ -113,7 +113,7 @@ func TestGatekeeperAdapter(t *testing.T) { if test.fail != (err != nil) { t.Fatalf("test %q error mismatch: want error %v, got error %v", test.name, test.fail, err) } - if err == nil && len(result.Token) == 0 { + if err == nil && (len(result.Credentials) == 0 || len(result.Credentials["access_token"]) == 0) { t.Errorf("test %q token mismatch: want non-empty, got empty", test.name) } } diff --git a/lib/adapter/saw_adapter.go b/lib/adapter/saw_adapter.go index 3c7e2f04..7b0cb73a 100644 --- a/lib/adapter/saw_adapter.go +++ b/lib/adapter/saw_adapter.go @@ -101,8 +101,10 @@ func (a *SawAdapter) MintToken(ctx context.Context, input *Action) (*MintTokenRe return nil, fmt.Errorf("SAW minting token: %v", err) } return &MintTokenResult{ - Account: result.Account, - Token: result.Token, + Credentials: map[string]string{ + "account": result.Account, + "access_token": result.Token, + }, TokenFormat: result.Format, }, nil } diff --git a/lib/dam/config_test.go b/lib/dam/config_test.go index eb89a622..ceba5ee7 100644 --- a/lib/dam/config_test.go +++ b/lib/dam/config_test.go @@ -47,8 +47,8 @@ func TestConfigHandlers(t *testing.T) { role := `{"roleCategories":["metadata"],"policyBasis":{"AcceptedTermsAndPolicies":true,"ResearcherStatus":true}}` roles := `{"discovery":` + role + `}` - beacon := `{"serviceTemplate":"beacon",*,"contentTypes":["application/bam"],"roles":` + roles + `,"ui":{"description":"Search data from Beacon Discovery","label":"Beacon Discovery"},"interfaces":{"http:beacon":{"uri":["https://gatekeeper-cafe-variome.staging.dnastack.com/beacon/query"]}}}` - views := `{"beacon":` + beacon + `,"gcs_read":{"serviceTemplate":"gcs",*,"contentTypes":["application/bam"],"roles":{"viewer":{"roleCategories":["list","metadata","read"],"policyBasis":{"AcceptedTermsAndPolicies":true,"ResearcherStatus":true}}},"ui":{"description":"GCS File Read","label":"File Read"},"interfaces":{"gcp:gs":{"uri":["gs://ga4gh-apis-controlled-access"]},"http:gcp:gs":{"uri":["https://www.googleapis.com/storage/v1/b/ga4gh-apis-controlled-access"]}}}}` + beacon := `{"serviceTemplate":"beacon",*,"contentTypes":["application/bam"],"roles":` + roles + `,"ui":{"description":"Search data from Beacon Discovery","label":"Beacon Discovery"},"interfaces":{"http:beacon":{"uri":["https://gatekeeper-cafe-variome.staging.dnastack.com/beacon/query"],"labels":{*}}}}` + views := `{"beacon":` + beacon + `,"gcs_read":{"serviceTemplate":"gcs",*,"contentTypes":["application/bam"],"roles":{"viewer":{"roleCategories":["list","metadata","read"],"policyBasis":{"AcceptedTermsAndPolicies":true,"ResearcherStatus":true}}},"ui":{"description":"GCS File Read","label":"File Read"},"interfaces":{"gcp:gs":{"uri":["gs://ga4gh-apis-controlled-access"],"labels":{*}},"http:gcp:gs":{"uri":["https://www.googleapis.com/storage/v1/b/ga4gh-apis-controlled-access"],"labels":{*}}}}}` resource := `{"views":` + views + `,"maxTokenTtl":"1h","ui":{"applyUrl":"http://apply.ga4gh-apis.org","description":"Google demo of GA4GH APIs","imageUrl":"https://info.ga4gh-apis.org/images/image.jpg","infoUrl":"http://info.ga4gh-apis.org","label":"GA4GH APIs","troubleshootUrl":"http://troubleshoot.ga4gh-apis.org"}}` tests := []test.HandlerTest{ diff --git a/lib/dam/dam.go b/lib/dam/dam.go index f41c3f58..5d5f49f6 100644 --- a/lib/dam/dam.go +++ b/lib/dam/dam.go @@ -779,7 +779,8 @@ func makeViewInterfaces(srcView *pb.View, srcRes *pb.Resource, cfg *pb.DamConfig if err != nil { return out } - cliMap := make(map[string]map[string]bool) + // Map of .... + cliMap := make(map[string]map[string]map[string]string) for _, entry := range entries { st, ok := cfg.ServiceTemplates[entry.View.ServiceTemplate] if !ok { @@ -793,7 +794,7 @@ func makeViewInterfaces(srcView *pb.View, srcRes *pb.Resource, cfg *pb.DamConfig for client, uriFmt := range st.Interfaces { uriMap, ok := cliMap[client] if !ok { - uriMap = make(map[string]bool) + uriMap = make(map[string]map[string]string) cliMap[client] = uriMap } for k, v := range vars { @@ -801,7 +802,17 @@ func makeViewInterfaces(srcView *pb.View, srcRes *pb.Resource, cfg *pb.DamConfig } if !hasItemVariable(uriFmt) { // Accept this string that has no more variables to replace. - uriMap[uriFmt] = true + uriMap[uriFmt] = srcView.Labels + if len(item.Labels) > 0 { + // Merge label lists for this item, with item.Labels overriding any view.Labels. + labels := make(map[string]string) + for k, v := range srcView.Labels { + labels[k] = v + } + for k, v := range item.Labels { + labels[k] = v + } + } } } } @@ -810,8 +821,11 @@ func makeViewInterfaces(srcView *pb.View, srcRes *pb.Resource, cfg *pb.DamConfig vi := &pb.Interface{ Uri: []string{}, } - for uri := range v { + for uri, labels := range v { vi.Uri = append(vi.Uri, uri) + if len(labels) > 0 { + vi.Labels = labels + } } sort.Strings(vi.Uri) out[k] = vi diff --git a/lib/dam/token_flow.go b/lib/dam/token_flow.go index c020252d..bfc80552 100644 --- a/lib/dam/token_flow.go +++ b/lib/dam/token_flow.go @@ -105,7 +105,7 @@ func responseKeyFile(r *http.Request) bool { return httputil.QueryParam(r, "response_type") == "key-file-type" } -func (s *Service) generateResourceToken(ctx context.Context, clientID, resourceName, viewName, role string, ttl time.Duration, useKeyFile bool, id *ga4gh.Identity, cfg *pb.DamConfig, res *pb.Resource, view *pb.View) (*pb.ResourceTokens_ResourceToken, int, error) { +func (s *Service) generateResourceToken(ctx context.Context, clientID, resourceName, viewName, role string, ttl time.Duration, useKeyFile bool, id *ga4gh.Identity, cfg *pb.DamConfig, res *pb.Resource, view *pb.View) (*pb.ResourceResults_ResourceAccess, int, error) { sRole, err := adapter.ResolveServiceRole(role, view, res, cfg) if err != nil { return nil, http.StatusInternalServerError, err @@ -149,23 +149,20 @@ func (s *Service) generateResourceToken(ctx context.Context, clientID, resourceN return nil, http.StatusServiceUnavailable, err } - if !useKeyFile { - return &pb.ResourceTokens_ResourceToken{ - Account: result.Account, - AccessToken: result.Token, - ExpiresIn: uint32(ttl.Seconds()), - Platform: adapt.Platform(), - // TODO: remove these older fields - Name: resourceName, - View: makeView(viewName, view, res, cfg, s.hidePolicyBasis, s.adapters), - Ttl: timeutil.TTLString(ttl), + if httputil.IsJSON(result.TokenFormat) && result.Credentials != nil { + return &pb.ResourceResults_ResourceAccess{ + Credentials: map[string]string{"key_file": result.Credentials["json"]}, }, http.StatusOK, nil } - - if httputil.IsJSON(result.TokenFormat) { - return &pb.ResourceTokens_ResourceToken{KeyFile: result.Token}, http.StatusOK, nil + if useKeyFile { + return nil, http.StatusBadRequest, fmt.Errorf("adapter cannot create key file format") } - return nil, http.StatusBadRequest, fmt.Errorf("adapter cannot create key file format") + + return &pb.ResourceResults_ResourceAccess{ + Credentials: result.Credentials, + Labels: result.Labels, + ExpiresIn: uint32(ttl.Seconds()), + }, http.StatusOK, nil } func (s *Service) oauthConf(brokerName string, broker *pb.TrustedIssuer, clientSecret string, scopes []string) *oauth2.Config { @@ -520,9 +517,9 @@ func (s *Service) ResourceTokens(w http.ResponseWriter, r *http.Request) { ctx := r.Context() keyFile := false - out := &pb.ResourceTokens{ - Resources: make(map[string]*pb.ResourceTokens_Descriptor), - Access: make(map[string]*pb.ResourceTokens_ResourceToken), + out := &pb.ResourceResults{ + Resources: make(map[string]*pb.ResourceResults_ResourceDescriptor), + Access: make(map[string]*pb.ResourceResults_ResourceAccess), EpochSeconds: uint32(time.Now().Unix()), } for i, r := range state.Resources { @@ -538,25 +535,33 @@ func (s *Service) ResourceTokens(w http.ResponseWriter, r *http.Request) { return } - tok, status, err := s.generateResourceToken(ctx, state.ClientId, r.Resource, r.View, r.Role, time.Duration(state.Ttl), keyFile, id, cfg, res, view) + result, status, err := s.generateResourceToken(ctx, state.ClientId, r.Resource, r.View, r.Role, time.Duration(state.Ttl), keyFile, id, cfg, res, view) if err != nil { httputil.WriteError(w, status, err) return } access := strconv.Itoa(i) - out.Resources[r.Url] = &pb.ResourceTokens_Descriptor{ - Interfaces: makeViewInterfaces(view, res, cfg, s.adapters), + interMap := map[string]*pb.ResourceResults_InterfaceEntry{} + for k, v := range makeViewInterfaces(view, res, cfg, s.adapters) { + entry := &pb.ResourceResults_InterfaceEntry{} + interMap[k] = entry + for _, uri := range v.Uri { + entry.Items = append(entry.Items, &pb.ResourceResults_ResourceInterface{Uri: uri, Labels: v.Labels}) + } + } + + out.Resources[r.Url] = &pb.ResourceResults_ResourceDescriptor{ + Interfaces: interMap, Permissions: makeRoleCategories(view, r.Role, cfg), Access: access, } - // TODO: remove these fields when no longer needed for the older interface - tok.Name = "" - tok.View = nil - tok.Ttl = "" - out.Access[access] = tok + out.Access[access] = &pb.ResourceResults_ResourceAccess{ + Credentials: result.Credentials, + Labels: result.Labels, + } } - httputil.WriteProtoResp(w, out) + httputil.WriteRPCResp(w, out, nil) } func (s *Service) resourceTokenState(stateID string, tx storage.Tx) (*pb.ResourceTokenRequestState, *ga4gh.Identity, error) { diff --git a/pages/damdemo/test.html b/pages/damdemo/test.html index 5e835efd..4f641df9 100644 --- a/pages/damdemo/test.html +++ b/pages/damdemo/test.html @@ -318,20 +318,23 @@ var res = cart.resources[name]; var paths = []; var btnClass = ""; - for (var i in res.interfaces) { - for (var uri in res.interfaces[i].uri) { - var p = res.interfaces[i].uri[uri]; - if (i == "http:gcp:gs") { + for (var interName in res.interfaces) { + var list = res.interfaces[interName].items + for (var idx = 0; idx < list.length; idx++) { + var inter = list[idx]; + var path = inter.uri + if (interName == "http:gcp:gs") { var num = browsePaths.length; browsePaths.push({ - url: p, + url: path, + labels: inter.labels, access: res.access }); - p = `${escapeHTML(p)}`; + path = `${escapeHTML(path)}`; } else { - p = escapeHTML(p); + path = escapeHTML(path); } - paths.push(p); + paths.push(path); } } html += `${escapeHTML(name)}${paths.join(", ")}${escapeHTML(res.permissions.join(", "))}`; @@ -355,7 +358,12 @@ } function browseDataset(index) { var entry = browsePaths[index]; - var token = cart.access[entry.access].access_token; + var creds = cart.access[entry.access] && cart.access[entry.access].credentials; + if (!creds) { + displayError("missing credentials", "", JSON.stringify(cart.access[entry.access], undefined, 2)); + return; + } + var token = creds.access_token; var url = entry.url.length ? entry.url+"/o/" + "?access_token=" + token : ""; if (!url) { return; diff --git a/proto/dam/v1/dam_service.pb.go b/proto/dam/v1/dam_service.pb.go index b8ad6c2e..d0699f73 100644 --- a/proto/dam/v1/dam_service.pb.go +++ b/proto/dam/v1/dam_service.pb.go @@ -535,10 +535,11 @@ func (m *View_Item) GetLabels() map[string]string { } type Interface struct { - Uri []string `protobuf:"bytes,1,rep,name=uri,proto3" json:"uri,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Uri []string `protobuf:"bytes,1,rep,name=uri,proto3" json:"uri,omitempty"` + Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *Interface) Reset() { *m = Interface{} } @@ -573,6 +574,13 @@ func (m *Interface) GetUri() []string { return nil } +func (m *Interface) GetLabels() map[string]string { + if m != nil { + return m.Labels + } + return nil +} + type Resource struct { Umbrella string `protobuf:"bytes,1,opt,name=umbrella,proto3" json:"umbrella,omitempty"` Views map[string]*View `protobuf:"bytes,2,rep,name=views,proto3" json:"views,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` @@ -4058,247 +4066,287 @@ func (m *AuthCode) GetEpochSeconds() int64 { return 0 } -type ResourceTokens struct { - Resources map[string]*ResourceTokens_Descriptor `protobuf:"bytes,1,rep,name=resources,proto3" json:"resources,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - Access map[string]*ResourceTokens_ResourceToken `protobuf:"bytes,2,rep,name=access,proto3" json:"access,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - EpochSeconds uint32 `protobuf:"varint,3,opt,name=epoch_seconds,json=epochSeconds,proto3" json:"epoch_seconds,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +// ResourceResults is the output from a ResourceTokens request. +type ResourceResults struct { + // Maps a key (fully-qualified resource/view/role/interface URL) to + // descriptors. + Resources map[string]*ResourceResults_ResourceDescriptor `protobuf:"bytes,1,rep,name=resources,proto3" json:"resources,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Maps an access key name from the resource descriptor to access information + // for the user. + Access map[string]*ResourceResults_ResourceAccess `protobuf:"bytes,2,rep,name=access,proto3" json:"access,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Time of the request to map OIDC "expires_in" or other credential info to a + // time-of-request value. + EpochSeconds uint32 `protobuf:"varint,3,opt,name=epoch_seconds,json=epochSeconds,proto3" json:"epoch_seconds,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResourceTokens) Reset() { *m = ResourceTokens{} } -func (m *ResourceTokens) String() string { return proto.CompactTextString(m) } -func (*ResourceTokens) ProtoMessage() {} -func (*ResourceTokens) Descriptor() ([]byte, []int) { +func (m *ResourceResults) Reset() { *m = ResourceResults{} } +func (m *ResourceResults) String() string { return proto.CompactTextString(m) } +func (*ResourceResults) ProtoMessage() {} +func (*ResourceResults) Descriptor() ([]byte, []int) { return fileDescriptor_b1b3693f36078fb7, []int{68} } -func (m *ResourceTokens) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ResourceTokens.Unmarshal(m, b) +func (m *ResourceResults) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceResults.Unmarshal(m, b) } -func (m *ResourceTokens) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ResourceTokens.Marshal(b, m, deterministic) +func (m *ResourceResults) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceResults.Marshal(b, m, deterministic) } -func (m *ResourceTokens) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceTokens.Merge(m, src) +func (m *ResourceResults) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceResults.Merge(m, src) } -func (m *ResourceTokens) XXX_Size() int { - return xxx_messageInfo_ResourceTokens.Size(m) +func (m *ResourceResults) XXX_Size() int { + return xxx_messageInfo_ResourceResults.Size(m) } -func (m *ResourceTokens) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceTokens.DiscardUnknown(m) +func (m *ResourceResults) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceResults.DiscardUnknown(m) } -var xxx_messageInfo_ResourceTokens proto.InternalMessageInfo +var xxx_messageInfo_ResourceResults proto.InternalMessageInfo -func (m *ResourceTokens) GetResources() map[string]*ResourceTokens_Descriptor { +func (m *ResourceResults) GetResources() map[string]*ResourceResults_ResourceDescriptor { if m != nil { return m.Resources } return nil } -func (m *ResourceTokens) GetAccess() map[string]*ResourceTokens_ResourceToken { +func (m *ResourceResults) GetAccess() map[string]*ResourceResults_ResourceAccess { if m != nil { return m.Access } return nil } -func (m *ResourceTokens) GetEpochSeconds() uint32 { +func (m *ResourceResults) GetEpochSeconds() uint32 { if m != nil { return m.EpochSeconds } return 0 } -type ResourceTokens_Descriptor struct { - Interfaces map[string]*Interface `protobuf:"bytes,1,rep,name=interfaces,proto3" json:"interfaces,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - Access string `protobuf:"bytes,2,opt,name=access,proto3" json:"access,omitempty"` - Permissions []string `protobuf:"bytes,3,rep,name=permissions,proto3" json:"permissions,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +// ResourceDescriptor contains metadata about resource, not specific to the +// user's request execept for an "access" key to link how to access the +// resource. +type ResourceResults_ResourceDescriptor struct { + // Maps an interface name (example: "http:gcp:gs") to metadata about the + // resource. + Interfaces map[string]*ResourceResults_InterfaceEntry `protobuf:"bytes,1,rep,name=interfaces,proto3" json:"interfaces,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Returns the access key into ResourceResults.Access map for how to access + // this resource. + Access string `protobuf:"bytes,2,opt,name=access,proto3" json:"access,omitempty"` + // A list of DAM Role Categories related to the access level that has been + // granted. + Permissions []string `protobuf:"bytes,3,rep,name=permissions,proto3" json:"permissions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResourceTokens_Descriptor) Reset() { *m = ResourceTokens_Descriptor{} } -func (m *ResourceTokens_Descriptor) String() string { return proto.CompactTextString(m) } -func (*ResourceTokens_Descriptor) ProtoMessage() {} -func (*ResourceTokens_Descriptor) Descriptor() ([]byte, []int) { +func (m *ResourceResults_ResourceDescriptor) Reset() { *m = ResourceResults_ResourceDescriptor{} } +func (m *ResourceResults_ResourceDescriptor) String() string { return proto.CompactTextString(m) } +func (*ResourceResults_ResourceDescriptor) ProtoMessage() {} +func (*ResourceResults_ResourceDescriptor) Descriptor() ([]byte, []int) { return fileDescriptor_b1b3693f36078fb7, []int{68, 0} } -func (m *ResourceTokens_Descriptor) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ResourceTokens_Descriptor.Unmarshal(m, b) +func (m *ResourceResults_ResourceDescriptor) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceResults_ResourceDescriptor.Unmarshal(m, b) } -func (m *ResourceTokens_Descriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ResourceTokens_Descriptor.Marshal(b, m, deterministic) +func (m *ResourceResults_ResourceDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceResults_ResourceDescriptor.Marshal(b, m, deterministic) } -func (m *ResourceTokens_Descriptor) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceTokens_Descriptor.Merge(m, src) +func (m *ResourceResults_ResourceDescriptor) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceResults_ResourceDescriptor.Merge(m, src) } -func (m *ResourceTokens_Descriptor) XXX_Size() int { - return xxx_messageInfo_ResourceTokens_Descriptor.Size(m) +func (m *ResourceResults_ResourceDescriptor) XXX_Size() int { + return xxx_messageInfo_ResourceResults_ResourceDescriptor.Size(m) } -func (m *ResourceTokens_Descriptor) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceTokens_Descriptor.DiscardUnknown(m) +func (m *ResourceResults_ResourceDescriptor) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceResults_ResourceDescriptor.DiscardUnknown(m) } -var xxx_messageInfo_ResourceTokens_Descriptor proto.InternalMessageInfo +var xxx_messageInfo_ResourceResults_ResourceDescriptor proto.InternalMessageInfo -func (m *ResourceTokens_Descriptor) GetInterfaces() map[string]*Interface { +func (m *ResourceResults_ResourceDescriptor) GetInterfaces() map[string]*ResourceResults_InterfaceEntry { if m != nil { return m.Interfaces } return nil } -func (m *ResourceTokens_Descriptor) GetAccess() string { +func (m *ResourceResults_ResourceDescriptor) GetAccess() string { if m != nil { return m.Access } return "" } -func (m *ResourceTokens_Descriptor) GetPermissions() []string { +func (m *ResourceResults_ResourceDescriptor) GetPermissions() []string { if m != nil { return m.Permissions } return nil } -// Extends: -// https://openid.net/specs/openid-connect-core-1_0.html#TokenResponse -type ResourceTokens_ResourceToken struct { - Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"` - AccessToken string `protobuf:"bytes,2,opt,name=access_token,proto3" json:"access_token,omitempty"` - TokenType string `protobuf:"bytes,3,opt,name=token_type,proto3" json:"token_type,omitempty"` - RefreshToken string `protobuf:"bytes,4,opt,name=refresh_token,json=access_token,proto3" json:"refresh_token,omitempty"` - ExpiresIn uint32 `protobuf:"varint,5,opt,name=expires_in,proto3" json:"expires_in,omitempty"` - IdToken string `protobuf:"bytes,6,opt,name=id_token,proto3" json:"id_token,omitempty"` - KeyFile string `protobuf:"bytes,7,opt,name=key_file,proto3" json:"key_file,omitempty"` - Platform string `protobuf:"bytes,8,opt,name=platform,proto3" json:"platform,omitempty"` - Name string `protobuf:"bytes,9,opt,name=name,proto3" json:"name,omitempty"` // Deprecated: Do not use. - View *View `protobuf:"bytes,10,opt,name=view,proto3" json:"view,omitempty"` // Deprecated: Do not use. - Ttl string `protobuf:"bytes,11,opt,name=ttl,proto3" json:"ttl,omitempty"` // Deprecated: Do not use. - Token string `protobuf:"bytes,12,opt,name=token,proto3" json:"token,omitempty"` // Deprecated: Do not use. - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +// A map placeholder to store a list of ResourceInterface items. +type ResourceResults_InterfaceEntry struct { + // Metadata about the resource item, including a URI to the resource item. + // A single resource can be consisted of multiple resource items. + Items []*ResourceResults_ResourceInterface `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResourceTokens_ResourceToken) Reset() { *m = ResourceTokens_ResourceToken{} } -func (m *ResourceTokens_ResourceToken) String() string { return proto.CompactTextString(m) } -func (*ResourceTokens_ResourceToken) ProtoMessage() {} -func (*ResourceTokens_ResourceToken) Descriptor() ([]byte, []int) { +func (m *ResourceResults_InterfaceEntry) Reset() { *m = ResourceResults_InterfaceEntry{} } +func (m *ResourceResults_InterfaceEntry) String() string { return proto.CompactTextString(m) } +func (*ResourceResults_InterfaceEntry) ProtoMessage() {} +func (*ResourceResults_InterfaceEntry) Descriptor() ([]byte, []int) { return fileDescriptor_b1b3693f36078fb7, []int{68, 1} } -func (m *ResourceTokens_ResourceToken) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ResourceTokens_ResourceToken.Unmarshal(m, b) +func (m *ResourceResults_InterfaceEntry) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceResults_InterfaceEntry.Unmarshal(m, b) } -func (m *ResourceTokens_ResourceToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ResourceTokens_ResourceToken.Marshal(b, m, deterministic) +func (m *ResourceResults_InterfaceEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceResults_InterfaceEntry.Marshal(b, m, deterministic) } -func (m *ResourceTokens_ResourceToken) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceTokens_ResourceToken.Merge(m, src) +func (m *ResourceResults_InterfaceEntry) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceResults_InterfaceEntry.Merge(m, src) } -func (m *ResourceTokens_ResourceToken) XXX_Size() int { - return xxx_messageInfo_ResourceTokens_ResourceToken.Size(m) +func (m *ResourceResults_InterfaceEntry) XXX_Size() int { + return xxx_messageInfo_ResourceResults_InterfaceEntry.Size(m) } -func (m *ResourceTokens_ResourceToken) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceTokens_ResourceToken.DiscardUnknown(m) +func (m *ResourceResults_InterfaceEntry) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceResults_InterfaceEntry.DiscardUnknown(m) } -var xxx_messageInfo_ResourceTokens_ResourceToken proto.InternalMessageInfo +var xxx_messageInfo_ResourceResults_InterfaceEntry proto.InternalMessageInfo -func (m *ResourceTokens_ResourceToken) GetAccount() string { +func (m *ResourceResults_InterfaceEntry) GetItems() []*ResourceResults_ResourceInterface { if m != nil { - return m.Account + return m.Items } - return "" + return nil } -func (m *ResourceTokens_ResourceToken) GetAccessToken() string { - if m != nil { - return m.AccessToken - } - return "" +// ResourceInterface contains metadata about a resource's interface, such as +// what bucket the data lives in by URL. +type ResourceResults_ResourceInterface struct { + // An identifier or locator for the resource. + Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"` + // A map of metadata key/value pairs about the resource, taken from the view + // and item config. + Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResourceTokens_ResourceToken) GetTokenType() string { - if m != nil { - return m.TokenType - } - return "" +func (m *ResourceResults_ResourceInterface) Reset() { *m = ResourceResults_ResourceInterface{} } +func (m *ResourceResults_ResourceInterface) String() string { return proto.CompactTextString(m) } +func (*ResourceResults_ResourceInterface) ProtoMessage() {} +func (*ResourceResults_ResourceInterface) Descriptor() ([]byte, []int) { + return fileDescriptor_b1b3693f36078fb7, []int{68, 2} } -func (m *ResourceTokens_ResourceToken) GetRefreshToken() string { - if m != nil { - return m.RefreshToken - } - return "" +func (m *ResourceResults_ResourceInterface) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceResults_ResourceInterface.Unmarshal(m, b) } - -func (m *ResourceTokens_ResourceToken) GetExpiresIn() uint32 { - if m != nil { - return m.ExpiresIn - } - return 0 +func (m *ResourceResults_ResourceInterface) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceResults_ResourceInterface.Marshal(b, m, deterministic) +} +func (m *ResourceResults_ResourceInterface) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceResults_ResourceInterface.Merge(m, src) } +func (m *ResourceResults_ResourceInterface) XXX_Size() int { + return xxx_messageInfo_ResourceResults_ResourceInterface.Size(m) +} +func (m *ResourceResults_ResourceInterface) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceResults_ResourceInterface.DiscardUnknown(m) +} + +var xxx_messageInfo_ResourceResults_ResourceInterface proto.InternalMessageInfo -func (m *ResourceTokens_ResourceToken) GetIdToken() string { +func (m *ResourceResults_ResourceInterface) GetUri() string { if m != nil { - return m.IdToken + return m.Uri } return "" } -func (m *ResourceTokens_ResourceToken) GetKeyFile() string { +func (m *ResourceResults_ResourceInterface) GetLabels() map[string]string { if m != nil { - return m.KeyFile + return m.Labels } - return "" + return nil } -func (m *ResourceTokens_ResourceToken) GetPlatform() string { - if m != nil { - return m.Platform - } - return "" +// ResourceAccess contains access tokens or other user-specific or +// request-specific results. +type ResourceResults_ResourceAccess struct { + // Maps of credentials. Example: {"account": "user1@example.com", + // "access_token": "ya..."}. + Credentials map[string]string `protobuf:"bytes,1,rep,name=credentials,proto3" json:"credentials,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // A map of metadata key/value pairs about the resource, taken from the view + // and item config. + Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Based on the OIDC /token response spec, this is the number of seconds + // until access expires. + ExpiresIn uint32 `protobuf:"varint,3,opt,name=expires_in,proto3" json:"expires_in,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -// Deprecated: Do not use. -func (m *ResourceTokens_ResourceToken) GetName() string { - if m != nil { - return m.Name - } - return "" +func (m *ResourceResults_ResourceAccess) Reset() { *m = ResourceResults_ResourceAccess{} } +func (m *ResourceResults_ResourceAccess) String() string { return proto.CompactTextString(m) } +func (*ResourceResults_ResourceAccess) ProtoMessage() {} +func (*ResourceResults_ResourceAccess) Descriptor() ([]byte, []int) { + return fileDescriptor_b1b3693f36078fb7, []int{68, 3} } -// Deprecated: Do not use. -func (m *ResourceTokens_ResourceToken) GetView() *View { +func (m *ResourceResults_ResourceAccess) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceResults_ResourceAccess.Unmarshal(m, b) +} +func (m *ResourceResults_ResourceAccess) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceResults_ResourceAccess.Marshal(b, m, deterministic) +} +func (m *ResourceResults_ResourceAccess) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceResults_ResourceAccess.Merge(m, src) +} +func (m *ResourceResults_ResourceAccess) XXX_Size() int { + return xxx_messageInfo_ResourceResults_ResourceAccess.Size(m) +} +func (m *ResourceResults_ResourceAccess) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceResults_ResourceAccess.DiscardUnknown(m) +} + +var xxx_messageInfo_ResourceResults_ResourceAccess proto.InternalMessageInfo + +func (m *ResourceResults_ResourceAccess) GetCredentials() map[string]string { if m != nil { - return m.View + return m.Credentials } return nil } -// Deprecated: Do not use. -func (m *ResourceTokens_ResourceToken) GetTtl() string { +func (m *ResourceResults_ResourceAccess) GetLabels() map[string]string { if m != nil { - return m.Ttl + return m.Labels } - return "" + return nil } -// Deprecated: Do not use. -func (m *ResourceTokens_ResourceToken) GetToken() string { +func (m *ResourceResults_ResourceAccess) GetExpiresIn() uint32 { if m != nil { - return m.Token + return m.ExpiresIn } - return "" + return 0 } func init() { @@ -4329,6 +4377,7 @@ func init() { proto.RegisterMapType((map[string]string)(nil), "dam.v1.View.Item.ArgsEntry") proto.RegisterMapType((map[string]string)(nil), "dam.v1.View.Item.LabelsEntry") proto.RegisterType((*Interface)(nil), "dam.v1.Interface") + proto.RegisterMapType((map[string]string)(nil), "dam.v1.Interface.LabelsEntry") proto.RegisterType((*Resource)(nil), "dam.v1.Resource") proto.RegisterMapType((map[string]string)(nil), "dam.v1.Resource.UiEntry") proto.RegisterMapType((map[string]*View)(nil), "dam.v1.Resource.ViewsEntry") @@ -4434,281 +4483,287 @@ func init() { proto.RegisterType((*ResourceTokenRequestState)(nil), "dam.v1.ResourceTokenRequestState") proto.RegisterType((*ResourceTokenRequestState_Resource)(nil), "dam.v1.ResourceTokenRequestState.Resource") proto.RegisterType((*AuthCode)(nil), "dam.v1.AuthCode") - proto.RegisterType((*ResourceTokens)(nil), "dam.v1.ResourceTokens") - proto.RegisterMapType((map[string]*ResourceTokens_ResourceToken)(nil), "dam.v1.ResourceTokens.AccessEntry") - proto.RegisterMapType((map[string]*ResourceTokens_Descriptor)(nil), "dam.v1.ResourceTokens.ResourcesEntry") - proto.RegisterType((*ResourceTokens_Descriptor)(nil), "dam.v1.ResourceTokens.Descriptor") - proto.RegisterMapType((map[string]*Interface)(nil), "dam.v1.ResourceTokens.Descriptor.InterfacesEntry") - proto.RegisterType((*ResourceTokens_ResourceToken)(nil), "dam.v1.ResourceTokens.ResourceToken") + proto.RegisterType((*ResourceResults)(nil), "dam.v1.ResourceResults") + proto.RegisterMapType((map[string]*ResourceResults_ResourceAccess)(nil), "dam.v1.ResourceResults.AccessEntry") + proto.RegisterMapType((map[string]*ResourceResults_ResourceDescriptor)(nil), "dam.v1.ResourceResults.ResourcesEntry") + proto.RegisterType((*ResourceResults_ResourceDescriptor)(nil), "dam.v1.ResourceResults.ResourceDescriptor") + proto.RegisterMapType((map[string]*ResourceResults_InterfaceEntry)(nil), "dam.v1.ResourceResults.ResourceDescriptor.InterfacesEntry") + proto.RegisterType((*ResourceResults_InterfaceEntry)(nil), "dam.v1.ResourceResults.InterfaceEntry") + proto.RegisterType((*ResourceResults_ResourceInterface)(nil), "dam.v1.ResourceResults.ResourceInterface") + proto.RegisterMapType((map[string]string)(nil), "dam.v1.ResourceResults.ResourceInterface.LabelsEntry") + proto.RegisterType((*ResourceResults_ResourceAccess)(nil), "dam.v1.ResourceResults.ResourceAccess") + proto.RegisterMapType((map[string]string)(nil), "dam.v1.ResourceResults.ResourceAccess.CredentialsEntry") + proto.RegisterMapType((map[string]string)(nil), "dam.v1.ResourceResults.ResourceAccess.LabelsEntry") } func init() { proto.RegisterFile("proto/dam/v1/dam_service.proto", fileDescriptor_b1b3693f36078fb7) } var fileDescriptor_b1b3693f36078fb7 = []byte{ - // 4239 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x3b, 0x4b, 0x6f, 0x1c, 0x47, - 0x7a, 0xe9, 0xe1, 0x63, 0x66, 0xbe, 0x79, 0x90, 0x2c, 0x52, 0xd2, 0xa8, 0xf5, 0x30, 0x35, 0x92, - 0xac, 0x97, 0x45, 0x5a, 0x72, 0x0c, 0xf9, 0xb1, 0xb6, 0x21, 0x91, 0x92, 0x4c, 0x7b, 0x25, 0x73, - 0x9b, 0x94, 0xe0, 0x78, 0x8d, 0x6d, 0x34, 0xa7, 0x8b, 0xc3, 0x5e, 0xf5, 0x74, 0xcf, 0x56, 0xf7, - 0x50, 0x1a, 0x20, 0x01, 0x12, 0xe4, 0x10, 0x04, 0x7b, 0xdd, 0x7f, 0x11, 0xc4, 0x40, 0x80, 0x5c, - 0xf6, 0x94, 0x00, 0x39, 0xe4, 0x94, 0x20, 0xc8, 0x25, 0xa7, 0x1c, 0xb2, 0x39, 0x26, 0x87, 0x20, - 0x48, 0x4e, 0xb9, 0x04, 0xf5, 0xec, 0xaa, 0xee, 0x1e, 0x3e, 0xec, 0x49, 0xf6, 0x22, 0x4d, 0x7d, - 0xf5, 0x7d, 0x5f, 0x7f, 0x55, 0xf5, 0xbd, 0xab, 0x08, 0x97, 0x87, 0x24, 0x4e, 0xe3, 0x75, 0xdf, - 0x1b, 0xac, 0x1f, 0xde, 0xa3, 0xff, 0xb9, 0x09, 0x26, 0x87, 0x41, 0x0f, 0xaf, 0xb1, 0x09, 0x34, - 0xef, 0x7b, 0x83, 0xb5, 0xc3, 0x7b, 0xf6, 0x45, 0x8e, 0xd7, 0x8b, 0x07, 0x83, 0x38, 0xa2, 0xa8, - 0xfc, 0x17, 0xc7, 0xb2, 0xaf, 0xe4, 0x67, 0x63, 0x6f, 0x94, 0x1e, 0xf4, 0xc2, 0x00, 0x47, 0xa9, - 0x40, 0x11, 0x1f, 0x1a, 0x92, 0xb8, 0x87, 0x93, 0x84, 0xe2, 0x88, 0x9f, 0x7c, 0xbe, 0xfb, 0xf7, - 0x0d, 0xa8, 0x6f, 0x7a, 0x83, 0x8d, 0x38, 0xda, 0x0f, 0xfa, 0xa8, 0x03, 0xd5, 0x43, 0x4c, 0x92, - 0x20, 0x8e, 0x3a, 0xd6, 0xaa, 0x75, 0xb3, 0xee, 0xc8, 0x21, 0xb2, 0xa1, 0x46, 0xf0, 0x61, 0xc0, - 0xa6, 0x2a, 0xab, 0xd6, 0xcd, 0x19, 0x47, 0x8d, 0xd1, 0x5b, 0xd0, 0xa0, 0x22, 0x04, 0xa9, 0x9b, - 0x06, 0x03, 0xdc, 0x99, 0x59, 0xb5, 0x6e, 0x5a, 0x0e, 0x70, 0xd0, 0x6e, 0x30, 0xc0, 0xe8, 0x39, - 0x2c, 0xa4, 0x64, 0x94, 0xa4, 0xd8, 0x77, 0x83, 0x24, 0x19, 0x61, 0x92, 0x74, 0x66, 0x57, 0x67, - 0x6e, 0x36, 0xee, 0x5f, 0x5f, 0xe3, 0xeb, 0x5c, 0x53, 0x22, 0xac, 0xed, 0x72, 0xc4, 0x2d, 0x8e, - 0xf7, 0x38, 0x4a, 0xc9, 0xd8, 0x69, 0xa7, 0x06, 0x50, 0xe7, 0x97, 0xc4, 0x23, 0xd2, 0xc3, 0x49, - 0x67, 0xee, 0x18, 0x7e, 0x3b, 0x1c, 0xcf, 0xe4, 0x27, 0x80, 0xe8, 0x63, 0xa8, 0x0d, 0xe3, 0x30, - 0xe8, 0x05, 0x38, 0xe9, 0xcc, 0x33, 0x46, 0x6f, 0x15, 0x19, 0x6d, 0x0b, 0x0c, 0xce, 0x42, 0x11, - 0xa0, 0x4f, 0xa1, 0x4e, 0xb0, 0x14, 0xa3, 0xca, 0xa8, 0x57, 0x8b, 0xd4, 0x8e, 0x44, 0xe1, 0xe4, - 0x19, 0x09, 0xfa, 0x00, 0xaa, 0xfc, 0xc4, 0x92, 0x4e, 0x8d, 0x51, 0x5f, 0x2e, 0x52, 0x6f, 0x70, - 0x04, 0x4e, 0x2b, 0xd1, 0xd1, 0x2e, 0x2c, 0x09, 0xad, 0x71, 0x53, 0x3c, 0x18, 0x86, 0x5e, 0x8a, - 0x93, 0x4e, 0x9d, 0xf1, 0xb8, 0x51, 0xe4, 0xb1, 0xc3, 0x51, 0x77, 0x25, 0x26, 0x67, 0xb6, 0x98, - 0xe4, 0xc0, 0xe8, 0x33, 0x80, 0xc3, 0x20, 0xf1, 0xdc, 0x74, 0x3c, 0xc4, 0x49, 0x07, 0x26, 0x2d, - 0xe8, 0x65, 0x90, 0x78, 0xbb, 0x14, 0x45, 0x2c, 0xe8, 0x50, 0x8e, 0xd1, 0xe7, 0xd0, 0x4a, 0x71, - 0x92, 0xba, 0x43, 0x4c, 0x92, 0x38, 0xf2, 0x92, 0x4e, 0x83, 0xf1, 0xb8, 0x5a, 0x72, 0x36, 0x38, - 0x49, 0xb7, 0x05, 0x16, 0x67, 0xd3, 0x4c, 0x35, 0x10, 0x5a, 0x87, 0x6a, 0x3c, 0x4c, 0x83, 0x38, - 0x4a, 0x3a, 0xcd, 0x55, 0xeb, 0x66, 0xe3, 0xfe, 0x19, 0xc9, 0x83, 0x33, 0xf8, 0x8a, 0x4f, 0x3a, - 0x12, 0x0b, 0xdd, 0x82, 0xca, 0x28, 0xe8, 0xb4, 0xd8, 0xf7, 0xce, 0x17, 0xbf, 0xf7, 0x22, 0xe0, - 0x5f, 0xa9, 0x8c, 0x02, 0xfb, 0x6b, 0x58, 0x2e, 0x51, 0x35, 0xb4, 0x08, 0x33, 0xaf, 0xf0, 0x58, - 0x68, 0x3f, 0xfd, 0x89, 0xee, 0xc0, 0xdc, 0xa1, 0x17, 0x8e, 0x30, 0x53, 0x7b, 0x4d, 0x04, 0x83, - 0xda, 0xe1, 0x38, 0x1f, 0x55, 0x3e, 0xb0, 0x34, 0xce, 0xba, 0xd2, 0x9d, 0x9e, 0x33, 0xa7, 0xd6, - 0x39, 0x7f, 0x09, 0x2d, 0x43, 0x0b, 0x4b, 0x78, 0x5e, 0x33, 0x79, 0xb6, 0x25, 0x4f, 0x46, 0x37, - 0xd6, 0x99, 0x3d, 0x87, 0xb6, 0xa9, 0x94, 0x25, 0xdc, 0xde, 0x36, 0xb9, 0x2d, 0x4a, 0x6e, 0x92, - 0x50, 0xe7, 0xf7, 0x05, 0x34, 0x75, 0x35, 0x3d, 0x89, 0x6c, 0xc2, 0x99, 0x71, 0x32, 0x9d, 0xd7, - 0xb7, 0x70, 0xa6, 0x54, 0x5d, 0x4b, 0x98, 0xde, 0x35, 0x99, 0x9e, 0x93, 0x22, 0xe6, 0xe8, 0x73, - 0x2b, 0x37, 0xb5, 0xf7, 0x14, 0x2b, 0x97, 0x84, 0x3a, 0xbf, 0x5d, 0x58, 0x2a, 0x68, 0x72, 0x09, - 0xcb, 0x5b, 0x26, 0xcb, 0x65, 0xb9, 0x7c, 0x8d, 0x56, 0xe7, 0xfa, 0x3e, 0x54, 0x85, 0xbe, 0x96, - 0xf0, 0x5a, 0xd1, 0x79, 0xd5, 0x35, 0xb2, 0xee, 0x2f, 0x2b, 0xd0, 0x32, 0x54, 0x13, 0x9d, 0x85, - 0x79, 0xee, 0x75, 0x05, 0x03, 0x31, 0x42, 0x37, 0xa8, 0x17, 0xf5, 0xa2, 0x84, 0x6e, 0x8f, 0x3b, - 0x4a, 0x82, 0xa8, 0x2f, 0xb8, 0xb5, 0x15, 0xf8, 0x05, 0x85, 0xa2, 0x0b, 0x50, 0xe7, 0x2e, 0xc7, - 0x0d, 0x7c, 0xe6, 0xdd, 0xeb, 0x4e, 0x8d, 0x03, 0xb6, 0x7c, 0x74, 0x1e, 0x6a, 0x34, 0xe8, 0xb8, - 0x23, 0x12, 0x76, 0x66, 0x79, 0xcc, 0xa0, 0xe3, 0x17, 0x24, 0xa4, 0x74, 0x69, 0xfc, 0x0a, 0x47, - 0x6c, 0x6e, 0x8e, 0xd3, 0x31, 0x00, 0x9d, 0xbc, 0xcb, 0x4c, 0x95, 0x7b, 0xdb, 0x4b, 0xa5, 0x36, - 0x65, 0x98, 0xeb, 0xf7, 0xdc, 0x8d, 0xef, 0x2c, 0xb5, 0x1b, 0xdc, 0x9c, 0x68, 0x88, 0x93, 0xce, - 0xda, 0x5a, 0x9d, 0xa1, 0xe2, 0x4a, 0x47, 0x7c, 0xc9, 0x70, 0x7c, 0x15, 0x36, 0xa9, 0xb9, 0x35, - 0x2e, 0xf0, 0x4c, 0xa9, 0xc0, 0x9c, 0xf7, 0x34, 0x04, 0xfe, 0x87, 0x0a, 0xcc, 0x73, 0x5b, 0x45, - 0x77, 0x60, 0xde, 0x8b, 0xc6, 0x6e, 0xbc, 0xcf, 0x04, 0x6d, 0xdc, 0x5f, 0x51, 0xf6, 0x12, 0x47, - 0x7e, 0x40, 0x1d, 0xde, 0x0e, 0x4e, 0x9d, 0x39, 0x2f, 0x1a, 0x7f, 0xb5, 0x8f, 0xbe, 0x81, 0x95, - 0x43, 0x8f, 0x04, 0xde, 0x5e, 0x88, 0x5d, 0x1f, 0xef, 0x07, 0x51, 0xc0, 0xfd, 0x66, 0xc5, 0x0c, - 0x07, 0x9c, 0xf5, 0xda, 0x4b, 0x81, 0xba, 0x99, 0x61, 0x72, 0xc9, 0x97, 0x0f, 0x8b, 0x33, 0xe8, - 0x6d, 0x6d, 0xe5, 0x67, 0x73, 0x9c, 0xf4, 0x25, 0xff, 0x0c, 0x3a, 0x93, 0x18, 0x97, 0xec, 0xc1, - 0x3b, 0xa6, 0x39, 0x28, 0xc6, 0x92, 0xc5, 0x93, 0x98, 0x0c, 0xbc, 0x74, 0x0a, 0x16, 0xf1, 0xdf, - 0xf3, 0x30, 0xfb, 0x32, 0xc0, 0xaf, 0xd1, 0x2d, 0x58, 0xcc, 0xc7, 0x4b, 0xc1, 0x61, 0x21, 0x17, - 0x05, 0xd1, 0xbb, 0x30, 0x1f, 0x7a, 0x7b, 0x38, 0x94, 0x1b, 0xd8, 0xc9, 0xec, 0x1f, 0xbf, 0x5e, - 0xfb, 0x31, 0x9b, 0xe2, 0x0b, 0x17, 0x78, 0xe8, 0x2a, 0xb4, 0x7a, 0x71, 0x94, 0x52, 0x2b, 0xe1, - 0x0a, 0x34, 0xc3, 0x14, 0xa8, 0x29, 0x80, 0x52, 0x87, 0xe6, 0x48, 0x1c, 0x62, 0x99, 0xfe, 0x9c, - 0x33, 0xb8, 0x3a, 0x74, 0x86, 0x33, 0xe5, 0x58, 0xe8, 0x0a, 0x34, 0x7d, 0xbc, 0xef, 0x8d, 0xc2, - 0xd4, 0xa5, 0x00, 0x61, 0x43, 0x0d, 0x01, 0xa3, 0xf8, 0xe8, 0x06, 0xcc, 0x05, 0x29, 0x1e, 0xc8, - 0xbc, 0x65, 0xc9, 0xe0, 0xb8, 0x95, 0xe2, 0x81, 0xc3, 0xe7, 0xd1, 0x35, 0x76, 0x88, 0x55, 0xa1, - 0x49, 0x3a, 0x96, 0x76, 0x84, 0xe8, 0x19, 0x2c, 0xf7, 0xe2, 0xc1, 0x70, 0xc4, 0x52, 0xb5, 0x28, - 0xc5, 0x64, 0xdf, 0xa3, 0x96, 0xc2, 0x13, 0x93, 0x6b, 0x06, 0xd9, 0x86, 0xc0, 0xdb, 0x52, 0x68, - 0x9c, 0x0d, 0x64, 0x74, 0xf6, 0x6f, 0x2c, 0x98, 0xa5, 0x42, 0xa0, 0x75, 0x98, 0xf5, 0x48, 0x3f, - 0x11, 0x9a, 0x7c, 0xa1, 0x20, 0xe5, 0xda, 0x43, 0xd2, 0x17, 0xf4, 0x0c, 0x11, 0xbd, 0x9f, 0x3b, - 0x80, 0x4b, 0x45, 0x92, 0x92, 0x53, 0xb0, 0x1f, 0x40, 0x5d, 0x71, 0x3a, 0x8d, 0x92, 0xd8, 0x1f, - 0x42, 0x43, 0xe3, 0xf7, 0xff, 0x45, 0xfa, 0x05, 0x40, 0x76, 0xea, 0xa7, 0x8a, 0x42, 0xf8, 0x35, - 0x25, 0xfc, 0xe1, 0xd6, 0x61, 0x7f, 0x0d, 0xe7, 0x26, 0x9c, 0x64, 0x09, 0x9b, 0x1b, 0xa6, 0x3c, - 0x4a, 0xdb, 0x14, 0xa5, 0x6e, 0x77, 0x97, 0xa0, 0xae, 0xe0, 0x94, 0xd7, 0x88, 0x04, 0xc2, 0xe5, - 0xd2, 0x9f, 0xdd, 0xbf, 0xae, 0x40, 0x4d, 0xe6, 0x11, 0xb4, 0xbc, 0x18, 0x0d, 0xf6, 0x08, 0x0e, - 0x43, 0x4f, 0x7c, 0x4f, 0x8d, 0xd1, 0x3d, 0x98, 0x3b, 0x0c, 0xf0, 0x6b, 0xa9, 0x09, 0x17, 0xf2, - 0x49, 0x08, 0xdb, 0x0d, 0x69, 0x38, 0x0c, 0x93, 0x3a, 0x79, 0x99, 0x53, 0x73, 0x33, 0x54, 0x39, - 0x73, 0x17, 0x5a, 0x03, 0xef, 0x8d, 0xcb, 0xe3, 0x52, 0x9a, 0xca, 0x98, 0xd5, 0x18, 0x78, 0x6f, - 0x76, 0x29, 0x6c, 0x37, 0x0d, 0xd1, 0x4d, 0x66, 0x2a, 0x73, 0xa6, 0xe1, 0xab, 0xaf, 0xe9, 0x1e, - 0xef, 0x09, 0x40, 0xf6, 0xf1, 0x92, 0xfd, 0xea, 0x9a, 0xfb, 0xd5, 0x34, 0xce, 0xef, 0x87, 0x7b, - 0xb6, 0xbf, 0x99, 0x81, 0x85, 0x5c, 0x9e, 0x43, 0x7d, 0x86, 0x74, 0x72, 0x91, 0x37, 0x90, 0x0e, - 0xae, 0x21, 0x60, 0xcf, 0xbd, 0x01, 0x46, 0x4f, 0x41, 0xb3, 0xd1, 0x7c, 0x84, 0xc8, 0xf1, 0x5b, - 0x3b, 0xc2, 0xbc, 0xd1, 0x53, 0x68, 0xc9, 0x6f, 0x71, 0xb7, 0xc6, 0x63, 0xc4, 0xad, 0x49, 0xbc, - 0xc4, 0xb8, 0xe8, 0xe8, 0xd6, 0xd9, 0x8e, 0xcf, 0x9a, 0xa5, 0x57, 0x9e, 0x5a, 0xdf, 0xf8, 0x4f, - 0x60, 0xe1, 0x78, 0x6d, 0x9d, 0xac, 0xf4, 0xbb, 0xb0, 0x54, 0x90, 0xe5, 0x24, 0x19, 0x9b, 0x29, - 0xd9, 0x74, 0x2c, 0xb0, 0xfb, 0x1f, 0x15, 0x68, 0x68, 0x1c, 0xd1, 0xd3, 0xec, 0x04, 0x35, 0x9f, - 0x79, 0xad, 0xe4, 0xe3, 0xf2, 0x77, 0xe6, 0x3c, 0xe5, 0x39, 0x53, 0x08, 0x5a, 0x83, 0x65, 0xdf, - 0x1b, 0xb0, 0xa3, 0x71, 0x7b, 0x5e, 0x8a, 0xfb, 0x31, 0x09, 0x54, 0x66, 0xb3, 0xe4, 0x7b, 0x03, - 0xca, 0x63, 0x43, 0x4d, 0xa0, 0x3b, 0x5a, 0x9c, 0xbf, 0x50, 0xf6, 0x39, 0xfd, 0x04, 0xae, 0x01, - 0x64, 0x5f, 0xa7, 0x39, 0x26, 0x5b, 0x90, 0xe4, 0x2e, 0x46, 0xf6, 0xcf, 0x60, 0x31, 0x2f, 0x63, - 0xc9, 0xde, 0xfc, 0xae, 0xb9, 0xcf, 0x97, 0x8f, 0x5e, 0xea, 0x14, 0xb6, 0xfc, 0xcf, 0x66, 0xa0, - 0x26, 0x7d, 0x28, 0x7a, 0xa0, 0x55, 0xff, 0x25, 0xf1, 0x89, 0x7d, 0x9d, 0xfe, 0x10, 0x25, 0x54, - 0x56, 0xf9, 0xbf, 0x0b, 0x1d, 0x15, 0x2c, 0xcb, 0x37, 0xb9, 0x4d, 0xcc, 0x1d, 0x7e, 0x01, 0x67, - 0x14, 0x05, 0x63, 0x33, 0x76, 0xf7, 0xbc, 0x24, 0x28, 0x18, 0x8e, 0xfa, 0xae, 0x74, 0xcd, 0xfc, - 0xdb, 0x8f, 0x28, 0xae, 0x38, 0xe8, 0x61, 0x06, 0xb1, 0x7f, 0x65, 0x71, 0x3f, 0x24, 0x12, 0x47, - 0x04, 0xb3, 0x9a, 0xe9, 0xb3, 0xdf, 0xe8, 0x43, 0x11, 0x80, 0x2b, 0x66, 0x9f, 0xa4, 0x64, 0x81, - 0xf9, 0x50, 0xfc, 0xfd, 0x63, 0xea, 0x13, 0xe8, 0x4c, 0x92, 0xff, 0x38, 0x3e, 0x35, 0xe3, 0xb4, - 0x66, 0xa1, 0x65, 0x14, 0xfc, 0xe8, 0x3d, 0x38, 0x4b, 0xb0, 0xe7, 0xbb, 0x71, 0x14, 0x8e, 0xdd, - 0x81, 0x97, 0xa4, 0x98, 0xb8, 0x04, 0x7b, 0xe1, 0x80, 0x31, 0xac, 0x39, 0xcb, 0x74, 0xf6, 0xab, - 0x28, 0x1c, 0x3f, 0x63, 0x73, 0x0e, 0x9d, 0x42, 0x77, 0x01, 0xbd, 0x3e, 0x08, 0x52, 0x1c, 0x06, - 0xac, 0x73, 0xc4, 0xf0, 0x95, 0x35, 0x68, 0x33, 0x0c, 0x3b, 0x41, 0x5b, 0xd0, 0xed, 0xf7, 0x86, - 0xee, 0xc0, 0x8b, 0xbc, 0x3e, 0xf6, 0xdd, 0x57, 0x78, 0x9c, 0xb8, 0x34, 0x74, 0x10, 0xfc, 0x8b, - 0x11, 0x66, 0x1c, 0x68, 0xf8, 0xe0, 0xe5, 0xd0, 0xa5, 0x7e, 0x6f, 0xf8, 0x8c, 0x23, 0x7e, 0x89, - 0xc7, 0xc9, 0x33, 0xef, 0x8d, 0x23, 0xb1, 0x68, 0x40, 0xf9, 0x14, 0x2e, 0x16, 0x58, 0x0d, 0x31, - 0x71, 0xbd, 0x5e, 0x2f, 0x1e, 0x45, 0x29, 0x8b, 0x41, 0x73, 0x4e, 0xc7, 0x64, 0xb2, 0x8d, 0xc9, - 0x43, 0x3e, 0x8f, 0x3e, 0x81, 0x0b, 0x94, 0x5e, 0x79, 0x05, 0x0e, 0x76, 0x87, 0x24, 0xfe, 0x39, - 0xee, 0xa5, 0x22, 0x2d, 0xa4, 0xe4, 0xd2, 0x48, 0x38, 0xc2, 0x36, 0x9f, 0x47, 0xbf, 0x07, 0x2b, - 0x4a, 0xeb, 0x7c, 0x9c, 0xf4, 0x48, 0x30, 0x4c, 0x63, 0x22, 0x53, 0xc6, 0xb5, 0xd2, 0x9e, 0x8a, - 0xd2, 0xbc, 0xcd, 0x8c, 0x40, 0x68, 0x9e, 0xc6, 0x02, 0xbd, 0x0f, 0xe7, 0xa8, 0x64, 0x81, 0x37, - 0x70, 0xf7, 0x82, 0x30, 0x0c, 0xa2, 0xbe, 0x92, 0xaa, 0xca, 0xa4, 0x5a, 0xe9, 0xf7, 0x86, 0x5b, - 0xde, 0xe0, 0x11, 0x9f, 0x14, 0x12, 0xd9, 0xdf, 0x64, 0x9a, 0x91, 0xe7, 0x5f, 0xa2, 0x19, 0x37, - 0x4d, 0xf7, 0x80, 0x64, 0x1d, 0x94, 0x91, 0xea, 0xda, 0xf2, 0x8a, 0x9a, 0x36, 0x2f, 0xda, 0x44, - 0x24, 0x2f, 0xa4, 0xf0, 0x7c, 0x76, 0x1a, 0xe5, 0xda, 0xdf, 0xce, 0xa9, 0x48, 0x92, 0x49, 0x43, - 0xb3, 0x19, 0x1a, 0xb2, 0xf6, 0x63, 0x32, 0x90, 0xd9, 0x8c, 0x1c, 0xa3, 0x6f, 0xb3, 0xa6, 0x9d, - 0xac, 0xb5, 0xa4, 0x55, 0xae, 0xe7, 0xfc, 0x5e, 0xc6, 0x51, 0x42, 0x64, 0x6d, 0x94, 0x6b, 0xde, - 0x29, 0x30, 0xda, 0x81, 0x36, 0x4d, 0xf7, 0x35, 0xd6, 0xdc, 0xb3, 0xbc, 0x33, 0x99, 0x35, 0xcd, - 0xa5, 0x73, 0x7c, 0x5b, 0x81, 0x0e, 0x43, 0x9b, 0x00, 0x43, 0x12, 0x0f, 0x31, 0x49, 0x03, 0x56, - 0xba, 0x58, 0x25, 0xe1, 0x48, 0x63, 0xb8, 0xad, 0x70, 0x1d, 0x8d, 0x0e, 0xdd, 0xd3, 0x0a, 0xfe, - 0x2b, 0x93, 0xa9, 0xf5, 0x43, 0xf9, 0x7d, 0x80, 0x8c, 0x19, 0xcd, 0x6c, 0x82, 0xc4, 0xf5, 0xfa, - 0x7d, 0x82, 0xfb, 0xb2, 0x74, 0xab, 0x39, 0x8d, 0x20, 0x79, 0x28, 0x41, 0xe8, 0x36, 0x2c, 0xf5, - 0xbc, 0xc8, 0xdd, 0xc3, 0x19, 0x9a, 0x2f, 0xfc, 0xc9, 0x42, 0xcf, 0x8b, 0x1e, 0x61, 0x85, 0xea, - 0xa3, 0xb7, 0xa0, 0x91, 0x04, 0x51, 0x3f, 0xc4, 0x2e, 0x5d, 0x2d, 0x33, 0xe4, 0x9a, 0x03, 0x1c, - 0x44, 0xf7, 0xc4, 0xfe, 0xa9, 0x6a, 0x42, 0x99, 0xdb, 0x33, 0x95, 0x5a, 0xf6, 0x6b, 0x40, 0xc5, - 0x8d, 0xff, 0x6d, 0x56, 0xc9, 0xff, 0x6a, 0x41, 0xdb, 0x64, 0x4a, 0x83, 0x3a, 0xc1, 0x7d, 0xfc, - 0x66, 0x28, 0x1b, 0x47, 0x7c, 0x44, 0xd5, 0x9b, 0x37, 0x5c, 0xbd, 0x50, 0x6c, 0xae, 0x1a, 0xa3, - 0x35, 0x2d, 0x87, 0xb8, 0x5c, 0x2e, 0xac, 0x51, 0x70, 0x22, 0x98, 0xa5, 0xe5, 0xb2, 0x48, 0xc3, - 0xd9, 0x6f, 0xd4, 0x85, 0x26, 0x7e, 0x33, 0xc4, 0x24, 0x18, 0xe0, 0x28, 0xf5, 0x78, 0xeb, 0xa8, - 0xe6, 0x18, 0xb0, 0xef, 0xbb, 0xca, 0x2a, 0xcc, 0x31, 0xf7, 0xde, 0xfd, 0xce, 0x02, 0xb4, 0xed, - 0x25, 0xc9, 0x30, 0x26, 0xe9, 0xae, 0x68, 0x77, 0xc5, 0x84, 0xc6, 0x08, 0xea, 0x2a, 0xbd, 0x34, - 0xd8, 0xa3, 0x8a, 0x21, 0x2e, 0x2b, 0x78, 0xd5, 0xb2, 0x94, 0xcd, 0xc8, 0x8b, 0x88, 0xfb, 0x9a, - 0x7f, 0xe9, 0xaa, 0xce, 0x48, 0x81, 0xed, 0x34, 0x3c, 0xcd, 0x22, 0xb4, 0x9f, 0xe2, 0x74, 0x2b, - 0xda, 0x8f, 0x45, 0x68, 0xe9, 0xfe, 0xc6, 0x82, 0x05, 0x05, 0x4a, 0x86, 0x71, 0x94, 0xe0, 0xd2, - 0xd0, 0x6f, 0x43, 0x4d, 0xdc, 0xe2, 0xc8, 0x68, 0xa7, 0xc6, 0xe8, 0x12, 0x40, 0x92, 0x7a, 0x44, - 0xbb, 0xb9, 0x99, 0x71, 0xea, 0x0c, 0xc2, 0x2e, 0x6e, 0x3a, 0x50, 0x1d, 0xc4, 0xfe, 0x48, 0x76, - 0x2c, 0xea, 0x8e, 0x1c, 0x8a, 0x8c, 0x7d, 0xce, 0xcc, 0xd8, 0x73, 0xd2, 0x4c, 0x63, 0xd9, 0xf7, - 0xa0, 0xc9, 0x0e, 0x4c, 0x2c, 0x1a, 0x5d, 0x81, 0x59, 0x66, 0xae, 0x16, 0x33, 0x87, 0x56, 0x56, - 0x9d, 0x51, 0x1c, 0x36, 0xd5, 0x5d, 0x80, 0x96, 0x20, 0xe1, 0x62, 0x74, 0x9f, 0xc2, 0xf2, 0x53, - 0x9c, 0xaa, 0x66, 0xb7, 0x64, 0x75, 0x16, 0xe6, 0xf7, 0x83, 0x30, 0xcd, 0xfa, 0xa2, 0x7c, 0x44, - 0x17, 0x1d, 0x44, 0xbd, 0x70, 0xe4, 0x4b, 0x71, 0xe4, 0xb0, 0xfb, 0x17, 0x16, 0xac, 0x98, 0x9c, - 0xc4, 0xb6, 0x6f, 0xe9, 0x77, 0x40, 0x3c, 0x87, 0xbc, 0xa3, 0x6d, 0x4a, 0x81, 0x60, 0xf2, 0x75, - 0xd0, 0xb4, 0xdb, 0xf2, 0xdd, 0x33, 0x6c, 0xf1, 0x4f, 0x42, 0x2f, 0x65, 0x95, 0xaa, 0x54, 0x9e, - 0xbf, 0xac, 0xb3, 0xa5, 0x68, 0x70, 0xb1, 0x94, 0x4f, 0x64, 0xb5, 0x6d, 0x99, 0x75, 0x61, 0x19, - 0x72, 0xb1, 0xf2, 0xb6, 0xff, 0xa7, 0x0a, 0x35, 0x89, 0x87, 0xae, 0x42, 0x4b, 0x2e, 0xcc, 0x1d, - 0x7a, 0xe9, 0x81, 0x58, 0x43, 0x53, 0x02, 0xb7, 0xbd, 0xf4, 0xc0, 0x28, 0xfd, 0x2b, 0xb9, 0xd2, - 0x5f, 0x67, 0xc0, 0xf4, 0x7a, 0xc6, 0x64, 0xc0, 0xca, 0xd9, 0x0b, 0x50, 0xa7, 0xdf, 0xe6, 0x08, - 0xdc, 0x8f, 0xd4, 0x28, 0x40, 0x4e, 0xb2, 0xd4, 0x9c, 0x4d, 0x8a, 0x1e, 0x34, 0x05, 0xb0, 0xc9, - 0xeb, 0xd0, 0x56, 0xd5, 0x2c, 0xc7, 0x98, 0x67, 0x18, 0x2d, 0x05, 0x65, 0x68, 0x57, 0x21, 0x03, - 0xb8, 0x23, 0x12, 0x88, 0xd4, 0xa6, 0xa9, 0x80, 0x2f, 0x48, 0x40, 0xa3, 0x93, 0xde, 0xff, 0xeb, - 0xd4, 0x78, 0xdd, 0xad, 0xb5, 0xff, 0xd0, 0x96, 0xea, 0x69, 0xf1, 0x4b, 0xba, 0x7b, 0x47, 0xee, - 0xad, 0x84, 0x94, 0x76, 0x1b, 0xf3, 0x55, 0x3e, 0x14, 0xab, 0x7c, 0x3d, 0x09, 0x69, 0xe4, 0x92, - 0x90, 0x5b, 0xb0, 0x28, 0x7f, 0xcb, 0xac, 0x92, 0xdd, 0xb0, 0xd5, 0x9d, 0x05, 0x09, 0x17, 0xa1, - 0xaf, 0xd8, 0x30, 0x69, 0x15, 0x1b, 0x26, 0x2f, 0xa1, 0xa1, 0x8e, 0x69, 0x14, 0x74, 0xda, 0x6c, - 0x75, 0xef, 0x9f, 0x6c, 0x75, 0x52, 0x67, 0xa5, 0xaf, 0x00, 0xa2, 0x00, 0xe8, 0x0b, 0xa8, 0xb2, - 0x93, 0x1d, 0x05, 0x9d, 0x85, 0xd3, 0xec, 0x18, 0xfd, 0x47, 0xf2, 0x9b, 0x3f, 0x64, 0x03, 0xca, - 0x8b, 0x29, 0xc2, 0x28, 0xe8, 0x2c, 0x9e, 0x86, 0x17, 0xad, 0x8e, 0x14, 0x2f, 0xc2, 0x06, 0xe8, - 0x06, 0x2c, 0xe4, 0xeb, 0xbd, 0xa5, 0xb2, 0x7a, 0xef, 0x87, 0xb4, 0x06, 0x3f, 0x81, 0x85, 0xdc, - 0xd6, 0x9c, 0xb6, 0x29, 0xa9, 0xed, 0xc2, 0x69, 0x49, 0xb5, 0x45, 0x9f, 0x8a, 0xd4, 0x3d, 0xa6, - 0x1f, 0xf6, 0xb1, 0xe9, 0xb8, 0xae, 0x9f, 0xe8, 0x08, 0x74, 0x6f, 0xb6, 0x02, 0x48, 0xf3, 0xa7, - 0xd2, 0x99, 0xfd, 0xd4, 0x70, 0xf0, 0xca, 0x95, 0xbd, 0x03, 0x35, 0xa9, 0x4c, 0x22, 0x5e, 0x14, - 0x3d, 0xa5, 0xc2, 0xa0, 0xe1, 0xc0, 0xeb, 0xf5, 0x70, 0xa2, 0x5a, 0x18, 0x7c, 0xd4, 0x5d, 0x62, - 0x51, 0xd6, 0x70, 0x9e, 0x7f, 0x6e, 0xc1, 0x62, 0x06, 0x13, 0x5f, 0xfb, 0xd0, 0x74, 0x9c, 0x57, - 0xb5, 0xb5, 0x1d, 0xe3, 0x34, 0x27, 0x7d, 0x7a, 0x5a, 0xed, 0x45, 0x91, 0x3b, 0x30, 0xa8, 0x58, - 0xc1, 0x97, 0x6a, 0x51, 0x4a, 0xfe, 0x55, 0x98, 0xa5, 0xd2, 0x88, 0x9d, 0x32, 0x79, 0xb1, 0x99, - 0x89, 0x3b, 0xc4, 0x43, 0x8c, 0x6c, 0x25, 0xa8, 0x5d, 0xfa, 0x35, 0x8f, 0x96, 0x1a, 0x3c, 0x0b, - 0x31, 0xbc, 0x5d, 0x58, 0x0c, 0x31, 0x05, 0xe4, 0x92, 0x5b, 0x91, 0x49, 0xbb, 0x35, 0xc5, 0x66, - 0xba, 0xd0, 0x33, 0x35, 0x23, 0x56, 0xb4, 0x63, 0x2c, 0x54, 0xad, 0xe7, 0x1a, 0xcc, 0xb2, 0xeb, - 0x19, 0x6b, 0x02, 0x5f, 0x36, 0x3b, 0x71, 0xf7, 0x5e, 0xb2, 0xa3, 0x60, 0xbe, 0x54, 0xcb, 0x4c, - 0x08, 0x4e, 0x47, 0x24, 0xca, 0x12, 0x6f, 0x3a, 0x42, 0xe7, 0xa1, 0xe6, 0x7b, 0xa9, 0xe7, 0x8e, - 0x12, 0x95, 0x9a, 0xd0, 0xf1, 0x8b, 0x84, 0xf5, 0xd7, 0xb3, 0x76, 0x04, 0xfd, 0xd9, 0x3d, 0x07, - 0x67, 0x28, 0x5f, 0x9c, 0x50, 0xc3, 0x18, 0x85, 0xa9, 0x3a, 0x97, 0x7f, 0xaf, 0xc2, 0xd9, 0xfc, - 0x8c, 0x58, 0xc9, 0xf7, 0x7b, 0xff, 0x73, 0x11, 0xea, 0x34, 0x7d, 0x4c, 0x52, 0x6f, 0x30, 0x14, - 0xaf, 0x7f, 0x32, 0x00, 0xfa, 0x1c, 0x6a, 0xea, 0x25, 0xc8, 0xac, 0x59, 0x8c, 0x96, 0x4b, 0xb1, - 0x66, 0x3e, 0x09, 0x51, 0xd4, 0xe8, 0xc7, 0xc0, 0x9e, 0x87, 0xb8, 0x84, 0xe3, 0x8b, 0xec, 0xf3, - 0xd6, 0x31, 0xdc, 0x32, 0x98, 0xd3, 0x48, 0xb3, 0x79, 0xf4, 0x29, 0x34, 0x07, 0xb1, 0x1f, 0xec, - 0x07, 0x3d, 0x8f, 0xd6, 0x2e, 0x2c, 0xf4, 0x37, 0xee, 0xdb, 0x66, 0x37, 0xe4, 0x99, 0x86, 0xe1, - 0x18, 0xf8, 0x74, 0x47, 0xf0, 0x1b, 0xdc, 0x1b, 0xd1, 0x12, 0xb3, 0xca, 0x1a, 0x38, 0x6a, 0x4c, - 0x0f, 0x70, 0xe8, 0x25, 0x09, 0xf6, 0x59, 0x1a, 0x30, 0xe7, 0x88, 0x11, 0xf5, 0x9c, 0x98, 0x90, - 0x98, 0x74, 0xea, 0xdc, 0x73, 0xb2, 0x81, 0xfd, 0x6b, 0x8b, 0x26, 0xb9, 0x3f, 0xc7, 0xbd, 0x14, - 0xfb, 0x2f, 0x83, 0xc4, 0xe3, 0xe7, 0xef, 0x25, 0xb1, 0x76, 0xfe, 0x74, 0x44, 0xc9, 0xf7, 0x03, - 0x1c, 0xfa, 0xd2, 0xf1, 0xb2, 0x01, 0x5a, 0x05, 0xd5, 0x92, 0xa1, 0xeb, 0x98, 0x91, 0x97, 0x84, - 0x0a, 0xc4, 0x33, 0x24, 0x71, 0xb3, 0x9d, 0x65, 0x48, 0xa2, 0x47, 0x72, 0x16, 0xe6, 0x85, 0x8f, - 0xe4, 0xe9, 0x91, 0x18, 0x65, 0x5e, 0x7e, 0x5e, 0xf3, 0xf2, 0xa8, 0x0d, 0x95, 0xbd, 0xb1, 0x48, - 0x80, 0x2a, 0x7b, 0x63, 0xfb, 0xef, 0x2a, 0x00, 0xd9, 0x0e, 0x97, 0xd6, 0x1f, 0x6c, 0x35, 0x74, - 0x56, 0x88, 0x2d, 0x46, 0x9a, 0x41, 0xcc, 0xe8, 0x06, 0x81, 0x76, 0xa1, 0x1e, 0xc5, 0xae, 0x98, - 0xe2, 0x1a, 0xf3, 0xe0, 0xc4, 0x67, 0xbc, 0xf6, 0x3c, 0x7e, 0xc8, 0x28, 0x85, 0xf2, 0x44, 0x62, - 0x88, 0x1c, 0x68, 0x13, 0xb1, 0xc7, 0x2e, 0x5d, 0xbb, 0x54, 0x9f, 0x3b, 0xc7, 0xb0, 0xd6, 0x0f, - 0xc6, 0x69, 0x11, 0x6d, 0x94, 0x64, 0xc7, 0x39, 0xaf, 0x1f, 0xe7, 0xc7, 0xd0, 0x32, 0x84, 0x38, - 0x55, 0x04, 0xdd, 0x86, 0xd6, 0x74, 0xdf, 0x91, 0xd0, 0xf8, 0x25, 0x72, 0x39, 0xe5, 0x01, 0xbe, - 0xb3, 0x54, 0x5b, 0x3e, 0xb3, 0xfd, 0x47, 0x50, 0x13, 0xa9, 0xa0, 0x74, 0xcc, 0x6f, 0xe7, 0xba, - 0x34, 0xd9, 0xa6, 0x48, 0x80, 0xd8, 0x64, 0x49, 0x67, 0xbf, 0x84, 0x96, 0x31, 0x55, 0x22, 0xfd, - 0xba, 0x29, 0xfd, 0xf9, 0x89, 0x9d, 0x20, 0x7d, 0x0d, 0x17, 0xc1, 0x2e, 0x56, 0xd5, 0x6a, 0x39, - 0xff, 0x69, 0xc1, 0x85, 0xd2, 0x69, 0xb1, 0xb2, 0x18, 0x56, 0x86, 0x62, 0xda, 0x4d, 0xb3, 0x79, - 0xb1, 0xca, 0x1f, 0x4d, 0xae, 0xdb, 0x35, 0x97, 0x54, 0x9c, 0x13, 0x0f, 0x26, 0x86, 0xc5, 0x19, - 0x7b, 0x0f, 0x3a, 0x93, 0x08, 0x4a, 0x76, 0xe4, 0x5d, 0x73, 0x47, 0xec, 0xc9, 0xf2, 0xe8, 0x5b, - 0x62, 0x43, 0x67, 0x33, 0x7f, 0x83, 0x23, 0x37, 0xe4, 0x4f, 0xa9, 0x43, 0xc9, 0x66, 0x98, 0xbe, - 0xc5, 0xc4, 0x17, 0x95, 0xee, 0x9c, 0xc3, 0x07, 0xe8, 0x1d, 0xad, 0x7b, 0x71, 0x51, 0x65, 0x46, - 0x1a, 0xdd, 0x34, 0x0a, 0xf8, 0x7f, 0xb1, 0xe0, 0x7c, 0x89, 0xa0, 0xe2, 0x68, 0x0e, 0xca, 0xaf, - 0xa8, 0xf8, 0xc9, 0x7c, 0xa0, 0xbd, 0xe0, 0x2b, 0xa7, 0x2f, 0xce, 0x70, 0x79, 0x8b, 0x97, 0x5b, - 0xf6, 0x37, 0x70, 0xb6, 0x1c, 0xb9, 0x64, 0x35, 0xb7, 0xcd, 0x13, 0x59, 0x29, 0xdb, 0x1b, 0x7d, - 0x8d, 0x1d, 0x15, 0x50, 0xa5, 0xed, 0xca, 0x93, 0xf8, 0xa7, 0x0a, 0x9c, 0x2b, 0x4c, 0xa9, 0xa6, - 0x41, 0x16, 0x18, 0xf9, 0x82, 0xef, 0xe6, 0x7c, 0x51, 0x9e, 0x64, 0x62, 0x64, 0xfc, 0x16, 0x16, - 0x92, 0xd4, 0x8b, 0x7c, 0x8f, 0xf8, 0x6e, 0x2f, 0xf4, 0x82, 0x81, 0x6c, 0x29, 0xbf, 0x77, 0x1c, - 0xc7, 0x1d, 0x41, 0xb6, 0xc1, 0xa8, 0xc4, 0xf3, 0xd8, 0xc4, 0x00, 0x4e, 0xdf, 0x27, 0xd9, 0x0f, - 0x61, 0xb9, 0xe4, 0xc3, 0xa7, 0xd2, 0xab, 0x8b, 0x60, 0x3f, 0xf2, 0x7a, 0xaf, 0xfa, 0x24, 0x1e, - 0x45, 0xfe, 0x36, 0x7f, 0xd3, 0x9c, 0x59, 0xc0, 0x5f, 0x59, 0x70, 0xa1, 0x74, 0x5a, 0xec, 0xfd, - 0x36, 0xd4, 0x87, 0x12, 0x28, 0x36, 0xff, 0xbe, 0xdc, 0xaa, 0x23, 0xe8, 0xd6, 0x14, 0x44, 0xf4, - 0x6d, 0x14, 0x13, 0xfb, 0x39, 0xb4, 0xcd, 0xc9, 0x93, 0x64, 0xa0, 0xf2, 0x2d, 0xb6, 0xa0, 0xcc, - 0xd9, 0x77, 0x41, 0x10, 0xb9, 0xba, 0xa7, 0x70, 0xbe, 0x64, 0x4e, 0x2c, 0xed, 0x36, 0x54, 0x05, - 0x5b, 0x95, 0x90, 0xe6, 0x3f, 0x23, 0x11, 0xba, 0x0b, 0xd0, 0x62, 0x89, 0xa7, 0xe2, 0xfc, 0x19, - 0xb4, 0x25, 0x40, 0xb0, 0xbb, 0x0b, 0xf3, 0xac, 0xf6, 0x97, 0xdb, 0x74, 0x46, 0x1d, 0x2d, 0x85, - 0x3e, 0xc3, 0xa9, 0x47, 0x53, 0x50, 0x47, 0x20, 0x75, 0xdb, 0xd0, 0xd4, 0x53, 0xd9, 0xee, 0x8f, - 0xc4, 0x17, 0x14, 0xbf, 0x3b, 0x30, 0xc7, 0x50, 0x85, 0x70, 0x13, 0xd8, 0x71, 0x9c, 0xee, 0x1f, - 0xce, 0x00, 0x2a, 0x26, 0x62, 0x46, 0x32, 0x6a, 0xe5, 0x92, 0xd1, 0x9f, 0xe4, 0x5f, 0x1f, 0x57, - 0xcc, 0x9c, 0xb3, 0xc8, 0xee, 0xd8, 0x67, 0xc8, 0xe7, 0xa0, 0xea, 0x93, 0xb1, 0x4b, 0x46, 0x91, - 0xb8, 0x25, 0x98, 0xf7, 0xc9, 0xd8, 0x19, 0x45, 0xf6, 0x2f, 0x60, 0x59, 0x20, 0x19, 0xe2, 0x65, - 0x89, 0x8d, 0x65, 0x24, 0x36, 0x97, 0x00, 0x3c, 0xdf, 0x77, 0x8d, 0x2a, 0xa0, 0xee, 0xf9, 0xbe, - 0xc8, 0x50, 0x58, 0xb3, 0x6b, 0x10, 0x1f, 0x62, 0xd7, 0x48, 0x8b, 0x9a, 0x1c, 0xc8, 0x91, 0xec, - 0xf8, 0x64, 0x6f, 0x4d, 0x37, 0x4d, 0x4d, 0x5b, 0x3b, 0x62, 0xf5, 0x25, 0x2b, 0xc8, 0xd5, 0x8e, - 0x9c, 0x48, 0xb5, 0x53, 0x0f, 0xe5, 0x6d, 0xac, 0x2c, 0x57, 0xae, 0x1b, 0x3d, 0xd9, 0xa5, 0xc2, - 0xbb, 0x6b, 0xde, 0x97, 0x2d, 0x24, 0xdc, 0x95, 0xd3, 0x25, 0xdc, 0xdd, 0x3f, 0x80, 0x33, 0x4a, - 0x12, 0xbd, 0xfc, 0xa7, 0xf5, 0x97, 0xf6, 0xfd, 0x62, 0x8d, 0x3f, 0x9d, 0xcf, 0x8f, 0x60, 0x89, - 0xe3, 0x68, 0x75, 0x34, 0x2d, 0x9a, 0xb5, 0x4f, 0xe7, 0x8a, 0xe6, 0xa9, 0x7c, 0xf6, 0x4f, 0x2c, - 0xb0, 0x39, 0x92, 0xf9, 0xe0, 0x5c, 0x08, 0x70, 0xcb, 0x10, 0x60, 0xc2, 0xe3, 0xf4, 0xff, 0x23, - 0x49, 0x76, 0x8c, 0x53, 0x38, 0x5a, 0x92, 0x9d, 0x69, 0x1e, 0xc5, 0x18, 0x96, 0x39, 0x8e, 0x78, - 0x92, 0x21, 0x24, 0xe8, 0x1a, 0x12, 0xe4, 0x9f, 0xbe, 0x4f, 0xe7, 0xd3, 0x7f, 0x64, 0xc1, 0x8a, - 0xf9, 0xc7, 0x07, 0x47, 0x2f, 0xdf, 0xc4, 0x9d, 0xb2, 0x21, 0xa8, 0xc7, 0xe8, 0x47, 0x1b, 0x82, - 0x42, 0x9b, 0xce, 0xe7, 0x7f, 0x69, 0xc1, 0x45, 0x8e, 0x94, 0x7f, 0x63, 0x2f, 0xc4, 0xb8, 0x63, - 0x88, 0x31, 0xf1, 0x45, 0xfe, 0x74, 0xa4, 0xf9, 0x63, 0x0b, 0x3a, 0x42, 0x2b, 0xb5, 0x5c, 0x43, - 0x48, 0x72, 0xc3, 0x90, 0xa4, 0x34, 0x2b, 0x99, 0x8e, 0x14, 0xff, 0x38, 0x07, 0xe7, 0xa5, 0xbf, - 0xd1, 0xe3, 0xdf, 0x4e, 0xea, 0xa5, 0x18, 0x7d, 0x26, 0x2e, 0x39, 0x9b, 0xab, 0xd6, 0xcd, 0x76, - 0x56, 0x71, 0x4e, 0x24, 0xe0, 0xc1, 0x90, 0x1f, 0x19, 0xbb, 0x11, 0xfd, 0xbc, 0x78, 0xbf, 0x74, - 0xfb, 0x78, 0x2e, 0xca, 0x01, 0x6a, 0x7f, 0x6d, 0xf4, 0x96, 0xfe, 0x96, 0x9f, 0x25, 0x55, 0x8f, - 0x2a, 0x1d, 0x4b, 0x7b, 0xcf, 0xdf, 0x81, 0xb9, 0x84, 0x52, 0xf3, 0x3e, 0x02, 0x9b, 0xe4, 0x00, - 0x1a, 0xd6, 0xf6, 0x48, 0xfc, 0x0a, 0x13, 0xd1, 0x42, 0x10, 0x23, 0x74, 0x99, 0x46, 0x63, 0x3f, - 0x20, 0xea, 0x29, 0x0a, 0xe7, 0x28, 0x61, 0xb2, 0x35, 0x35, 0xcf, 0x02, 0x35, 0xfd, 0x89, 0x6e, - 0xc3, 0x12, 0x11, 0xd1, 0xc4, 0x7d, 0x85, 0xc7, 0xee, 0x7e, 0x10, 0x62, 0xd6, 0x53, 0xa8, 0x39, - 0x0b, 0x72, 0xe2, 0x4b, 0x3c, 0x7e, 0x12, 0x84, 0x18, 0x5d, 0x84, 0x7a, 0xef, 0xc0, 0x0b, 0x43, - 0x1c, 0xf5, 0xe5, 0xa5, 0x4a, 0x06, 0xd0, 0xfe, 0xb6, 0xa1, 0x6e, 0xfc, 0x6d, 0x43, 0x07, 0xaa, - 0xc9, 0x68, 0x8f, 0xbd, 0x43, 0xe1, 0x57, 0x23, 0x72, 0x48, 0xa3, 0x2c, 0x1e, 0xc6, 0xbd, 0x03, - 0x37, 0xc1, 0xbd, 0x38, 0xf2, 0x13, 0x76, 0x37, 0x32, 0xe3, 0x34, 0x19, 0x70, 0x87, 0xc3, 0x68, - 0xda, 0xc9, 0x9f, 0x13, 0xf1, 0xcb, 0x0e, 0x3e, 0x40, 0x97, 0x01, 0x02, 0x1f, 0x47, 0x69, 0xc0, - 0xde, 0x41, 0xb4, 0x59, 0x74, 0xd6, 0x20, 0xf6, 0xaf, 0x2c, 0xed, 0x45, 0xab, 0x62, 0x61, 0xe9, - 0x2c, 0x6c, 0xad, 0x25, 0x2d, 0x2e, 0xbb, 0x54, 0x03, 0x1a, 0x89, 0x06, 0x2c, 0x6f, 0xe0, 0xf0, - 0x96, 0x2b, 0x12, 0xad, 0x45, 0x71, 0x3d, 0xce, 0x1a, 0x89, 0x17, 0xa1, 0xae, 0x6e, 0x9e, 0x44, - 0xcf, 0x26, 0x03, 0xf0, 0x87, 0xb6, 0xa1, 0xe8, 0x48, 0xd0, 0x9f, 0xdd, 0x07, 0x50, 0x57, 0xfa, - 0x84, 0x16, 0xa0, 0xf1, 0xe2, 0xf9, 0xce, 0xf6, 0xe3, 0x8d, 0xad, 0x27, 0x5b, 0x8f, 0x37, 0x17, - 0x7f, 0x07, 0x35, 0xa0, 0xba, 0xf9, 0x70, 0xf7, 0xe1, 0xce, 0xe3, 0xdd, 0x45, 0x0b, 0x35, 0xa1, - 0xf6, 0xf8, 0xf9, 0xe6, 0xf6, 0x57, 0x5b, 0xcf, 0x77, 0x17, 0x2b, 0xdd, 0x7d, 0xa8, 0x3d, 0x1c, - 0xa5, 0x07, 0x1b, 0xb1, 0x8f, 0x4d, 0xbd, 0xb1, 0x4a, 0xf4, 0x66, 0x45, 0xea, 0x8d, 0xc8, 0xd4, - 0xb9, 0xce, 0x14, 0x76, 0x7b, 0xa6, 0xb8, 0xdb, 0xdd, 0x7f, 0xae, 0x66, 0x77, 0x9e, 0x3c, 0xfb, - 0x44, 0x1b, 0x45, 0x85, 0xbf, 0x5e, 0xaa, 0xf0, 0xc9, 0x11, 0x7f, 0x59, 0xf7, 0x91, 0xd1, 0x71, - 0xd5, 0x6e, 0xe8, 0x73, 0x1c, 0xf4, 0x86, 0x91, 0xcc, 0xd5, 0x4a, 0x05, 0x6f, 0x99, 0x82, 0xdb, - 0xff, 0x66, 0x01, 0x68, 0xcf, 0x7e, 0x7e, 0x62, 0xbc, 0xab, 0xb5, 0xcc, 0x5b, 0xa6, 0xdc, 0x37, - 0xf5, 0x07, 0x38, 0x47, 0xbc, 0xb0, 0xd5, 0x9b, 0xc6, 0x96, 0x96, 0x4a, 0xae, 0x42, 0x63, 0x88, - 0xc9, 0x20, 0x48, 0xf8, 0xb5, 0x3e, 0xcf, 0x14, 0x75, 0x90, 0xbd, 0x7d, 0x92, 0x17, 0xb2, 0xa7, - 0x79, 0xcf, 0x6d, 0xff, 0x57, 0x05, 0x5a, 0xc6, 0x2a, 0xa8, 0x95, 0xc9, 0x27, 0x6c, 0xa2, 0x5d, - 0x2c, 0x86, 0xa8, 0x0b, 0x4d, 0x2e, 0x29, 0xbf, 0x38, 0x14, 0xd2, 0x1b, 0x30, 0x6a, 0x4e, 0xe2, - 0x56, 0x91, 0xfa, 0x46, 0xae, 0xf5, 0x1a, 0x84, 0xe7, 0xc3, 0xfb, 0x04, 0x27, 0x07, 0x82, 0xc9, - 0x6c, 0x39, 0x13, 0xfc, 0x66, 0x18, 0x10, 0x9c, 0xb8, 0x41, 0xc4, 0xac, 0xa1, 0xe5, 0x68, 0x10, - 0x6a, 0x70, 0x81, 0x2f, 0xe8, 0xb9, 0x4d, 0xa8, 0x31, 0x9d, 0x33, 0xbc, 0x4f, 0xdd, 0x51, 0x63, - 0xe3, 0xf6, 0xb4, 0x96, 0xbb, 0x3d, 0x3d, 0x2b, 0x9a, 0x9c, 0x75, 0x65, 0x06, 0xbc, 0xd1, 0x79, - 0x4d, 0x18, 0x30, 0x14, 0x93, 0x41, 0x8e, 0xc5, 0x4c, 0x7a, 0x85, 0xbb, 0xc3, 0x86, 0x22, 0x66, - 0x2e, 0xb1, 0x23, 0xcb, 0xa2, 0x66, 0xe6, 0x76, 0x19, 0xc0, 0x76, 0x4f, 0xf0, 0x20, 0xe0, 0x81, - 0x79, 0x8e, 0x57, 0x8e, 0x55, 0x3a, 0xf3, 0xd2, 0xae, 0x71, 0x74, 0xb7, 0xf2, 0x23, 0x93, 0xfb, - 0xb5, 0x63, 0x0c, 0x91, 0x07, 0xa2, 0xec, 0x03, 0x8f, 0x9c, 0x6f, 0xb6, 0xfb, 0x41, 0x7a, 0x30, - 0xda, 0xa3, 0xf1, 0x77, 0xfd, 0x69, 0x1c, 0xf7, 0x43, 0xbc, 0x11, 0xc6, 0x23, 0x7f, 0x5b, 0xec, - 0xe8, 0xfa, 0x01, 0xf6, 0xc2, 0xf4, 0xa0, 0xe7, 0x11, 0x7c, 0x77, 0x1f, 0xfb, 0x98, 0x78, 0x29, - 0xf6, 0xef, 0xf2, 0x73, 0xbe, 0x2b, 0x9b, 0x8b, 0xeb, 0xfa, 0x9f, 0x4c, 0xef, 0xcd, 0xb3, 0xd1, - 0x7b, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x04, 0x73, 0xcf, 0xe0, 0x49, 0x3d, 0x00, 0x00, + // 4252 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x3b, 0x4d, 0x6f, 0x1c, 0x47, + 0x76, 0xe9, 0x21, 0x39, 0x1f, 0x6f, 0x38, 0x43, 0xb2, 0x48, 0x49, 0xa3, 0x16, 0x25, 0xd3, 0x23, + 0xd9, 0xfa, 0xb2, 0x86, 0x96, 0x1c, 0x41, 0xf6, 0xfa, 0x2b, 0x12, 0x29, 0xc9, 0xb4, 0x57, 0x32, + 0x77, 0x48, 0x09, 0x5e, 0xad, 0xb1, 0x8d, 0xe2, 0x74, 0x71, 0xd8, 0xab, 0x9e, 0xee, 0xd9, 0xee, + 0x1e, 0x4a, 0x03, 0x24, 0x40, 0x82, 0x1c, 0x82, 0x60, 0x0f, 0x41, 0x80, 0xfd, 0x17, 0x41, 0x1c, + 0x04, 0xc8, 0x65, 0x4f, 0x09, 0x90, 0x43, 0x4e, 0x09, 0x82, 0xbd, 0xe4, 0x9c, 0xcd, 0x35, 0x87, + 0x20, 0x48, 0x4e, 0xb9, 0x04, 0xf5, 0xd9, 0x55, 0xdd, 0x3d, 0xfc, 0x90, 0x27, 0x9b, 0x0b, 0xd9, + 0xf5, 0xea, 0xbd, 0x57, 0xaf, 0xaa, 0x5e, 0xbd, 0xaf, 0xaa, 0x81, 0x4b, 0xc3, 0x28, 0x4c, 0xc2, + 0x75, 0x17, 0x0f, 0xd6, 0x0f, 0x6f, 0xd3, 0x7f, 0x4e, 0x4c, 0xa2, 0x43, 0xaf, 0x47, 0x3a, 0xac, + 0x03, 0x95, 0x5d, 0x3c, 0xe8, 0x1c, 0xde, 0xb6, 0x57, 0x39, 0x5e, 0x2f, 0x1c, 0x0c, 0xc2, 0x80, + 0xa2, 0xf2, 0x2f, 0x8e, 0x65, 0xbf, 0x9d, 0xed, 0x0d, 0xf1, 0x28, 0x39, 0xe8, 0xf9, 0x1e, 0x09, + 0x12, 0x81, 0x22, 0x06, 0x1a, 0x46, 0x61, 0x8f, 0xc4, 0x31, 0xc5, 0x11, 0x9f, 0xbc, 0xbf, 0xfd, + 0x4f, 0x75, 0xa8, 0x6d, 0xe2, 0xc1, 0x46, 0x18, 0xec, 0x7b, 0x7d, 0xd4, 0x82, 0xca, 0x21, 0x89, + 0x62, 0x2f, 0x0c, 0x5a, 0xd6, 0x9a, 0x75, 0xad, 0xd6, 0x95, 0x4d, 0x64, 0x43, 0x35, 0x22, 0x87, + 0x1e, 0xeb, 0x2a, 0xad, 0x59, 0xd7, 0x66, 0xba, 0xaa, 0x8d, 0xde, 0x82, 0x3a, 0x15, 0xc1, 0x4b, + 0x9c, 0xc4, 0x1b, 0x90, 0xd6, 0xcc, 0x9a, 0x75, 0xcd, 0xea, 0x02, 0x07, 0xed, 0x7a, 0x03, 0x82, + 0x9e, 0xc2, 0x42, 0x12, 0x8d, 0xe2, 0x84, 0xb8, 0x8e, 0x17, 0xc7, 0x23, 0x12, 0xc5, 0xad, 0xd9, + 0xb5, 0x99, 0x6b, 0xf5, 0x3b, 0xef, 0x74, 0xf8, 0x3c, 0x3b, 0x4a, 0x84, 0xce, 0x2e, 0x47, 0xdc, + 0xe2, 0x78, 0x0f, 0x83, 0x24, 0x1a, 0x77, 0x9b, 0x89, 0x01, 0xd4, 0xf9, 0xc5, 0xe1, 0x28, 0xea, + 0x91, 0xb8, 0x35, 0x77, 0x0c, 0xbf, 0x1d, 0x8e, 0x67, 0xf2, 0x13, 0x40, 0xf4, 0x31, 0x54, 0x87, + 0xa1, 0xef, 0xf5, 0x3c, 0x12, 0xb7, 0xca, 0x8c, 0xd1, 0x5b, 0x79, 0x46, 0xdb, 0x02, 0x83, 0xb3, + 0x50, 0x04, 0xe8, 0x33, 0xa8, 0x45, 0x44, 0x8a, 0x51, 0x61, 0xd4, 0x6b, 0x79, 0xea, 0xae, 0x44, + 0xe1, 0xe4, 0x29, 0x09, 0xfa, 0x10, 0x2a, 0x7c, 0xc7, 0xe2, 0x56, 0x95, 0x51, 0x5f, 0xca, 0x53, + 0x6f, 0x70, 0x04, 0x4e, 0x2b, 0xd1, 0xd1, 0x2e, 0x2c, 0x09, 0xad, 0x71, 0x12, 0x32, 0x18, 0xfa, + 0x38, 0x21, 0x71, 0xab, 0xc6, 0x78, 0x5c, 0xcd, 0xf3, 0xd8, 0xe1, 0xa8, 0xbb, 0x12, 0x93, 0x33, + 0x5b, 0x8c, 0x33, 0x60, 0xf4, 0x39, 0xc0, 0xa1, 0x17, 0x63, 0x27, 0x19, 0x0f, 0x49, 0xdc, 0x82, + 0x49, 0x13, 0x7a, 0xee, 0xc5, 0x78, 0x97, 0xa2, 0x88, 0x09, 0x1d, 0xca, 0x36, 0xfa, 0x02, 0x1a, + 0x09, 0x89, 0x13, 0x67, 0x48, 0xa2, 0x38, 0x0c, 0x70, 0xdc, 0xaa, 0x33, 0x1e, 0x97, 0x0b, 0xf6, + 0x86, 0xc4, 0xc9, 0xb6, 0xc0, 0xe2, 0x6c, 0xe6, 0x13, 0x0d, 0x84, 0xd6, 0xa1, 0x12, 0x0e, 0x13, + 0x2f, 0x0c, 0xe2, 0xd6, 0xfc, 0x9a, 0x75, 0xad, 0x7e, 0xe7, 0x8c, 0xe4, 0xc1, 0x19, 0x7c, 0xcd, + 0x3b, 0xbb, 0x12, 0x0b, 0x5d, 0x87, 0xd2, 0xc8, 0x6b, 0x35, 0xd8, 0x78, 0xe7, 0xf3, 0xe3, 0x3d, + 0xf3, 0xf8, 0x28, 0xa5, 0x91, 0x67, 0x7f, 0x03, 0xcb, 0x05, 0xaa, 0x86, 0x16, 0x61, 0xe6, 0x25, + 0x19, 0x0b, 0xed, 0xa7, 0x9f, 0xe8, 0x26, 0xcc, 0x1d, 0x62, 0x7f, 0x44, 0x98, 0xda, 0x6b, 0x22, + 0x18, 0xd4, 0x5d, 0x8e, 0xf3, 0x83, 0xd2, 0x87, 0x96, 0xc6, 0x59, 0x57, 0xba, 0xd3, 0x73, 0xe6, + 0xd4, 0x3a, 0xe7, 0xaf, 0xa0, 0x61, 0x68, 0x61, 0x01, 0xcf, 0x2b, 0x26, 0xcf, 0xa6, 0xe4, 0xc9, + 0xe8, 0xc6, 0x3a, 0xb3, 0xa7, 0xd0, 0x34, 0x95, 0xb2, 0x80, 0xdb, 0xbb, 0x26, 0xb7, 0x45, 0xc9, + 0x4d, 0x12, 0xea, 0xfc, 0xbe, 0x84, 0x79, 0x5d, 0x4d, 0x4f, 0x22, 0x9b, 0x30, 0x66, 0x9c, 0x4c, + 0xe7, 0xf5, 0x2d, 0x9c, 0x29, 0x54, 0xd7, 0x02, 0xa6, 0xb7, 0x4c, 0xa6, 0xe7, 0xa4, 0x88, 0x19, + 0xfa, 0xcc, 0xcc, 0x4d, 0xed, 0x3d, 0xc5, 0xcc, 0x25, 0xa1, 0xce, 0x6f, 0x17, 0x96, 0x72, 0x9a, + 0x5c, 0xc0, 0xf2, 0xba, 0xc9, 0x72, 0x59, 0x4e, 0x5f, 0xa3, 0xd5, 0xb9, 0xde, 0x85, 0x8a, 0xd0, + 0xd7, 0x02, 0x5e, 0x2b, 0x3a, 0xaf, 0x9a, 0x46, 0xd6, 0xfe, 0x45, 0x09, 0x1a, 0x86, 0x6a, 0xa2, + 0xb3, 0x50, 0xe6, 0x56, 0x57, 0x30, 0x10, 0x2d, 0x74, 0x95, 0x5a, 0x51, 0x1c, 0xc4, 0x74, 0x79, + 0x9c, 0x51, 0xec, 0x05, 0x7d, 0xc1, 0xad, 0xa9, 0xc0, 0xcf, 0x28, 0x14, 0x5d, 0x80, 0x1a, 0x37, + 0x39, 0x8e, 0xe7, 0x32, 0xeb, 0x5e, 0xeb, 0x56, 0x39, 0x60, 0xcb, 0x45, 0xe7, 0xa1, 0x4a, 0x9d, + 0x8e, 0x33, 0x8a, 0xfc, 0xd6, 0x2c, 0xf7, 0x19, 0xb4, 0xfd, 0x2c, 0xf2, 0x29, 0x5d, 0x12, 0xbe, + 0x24, 0x01, 0xeb, 0x9b, 0xe3, 0x74, 0x0c, 0x40, 0x3b, 0x6f, 0xb1, 0xa3, 0xca, 0xad, 0xed, 0xc5, + 0xc2, 0x33, 0x65, 0x1c, 0xd7, 0x37, 0x5c, 0x8d, 0xef, 0x2c, 0xb5, 0x1a, 0xfc, 0x38, 0x51, 0x17, + 0x27, 0x8d, 0xb5, 0xb5, 0x36, 0x43, 0xc5, 0x95, 0x86, 0xf8, 0xa2, 0x61, 0xf8, 0x4a, 0xac, 0x53, + 0x33, 0x6b, 0x5c, 0xe0, 0x99, 0x42, 0x81, 0x39, 0xef, 0x69, 0x08, 0xfc, 0xcf, 0x25, 0x28, 0xf3, + 0xb3, 0x8a, 0x6e, 0x42, 0x19, 0x07, 0x63, 0x27, 0xdc, 0x67, 0x82, 0xd6, 0xef, 0xac, 0xa8, 0xf3, + 0x12, 0x06, 0xae, 0x47, 0x0d, 0xde, 0x0e, 0x49, 0xba, 0x73, 0x38, 0x18, 0x7f, 0xbd, 0x8f, 0x5e, + 0xc0, 0xca, 0x21, 0x8e, 0x3c, 0xbc, 0xe7, 0x13, 0xc7, 0x25, 0xfb, 0x5e, 0xe0, 0x71, 0xbb, 0x59, + 0x32, 0xdd, 0x01, 0x67, 0xdd, 0x79, 0x2e, 0x50, 0x37, 0x53, 0x4c, 0x2e, 0xf9, 0xf2, 0x61, 0xbe, + 0x07, 0xbd, 0xab, 0xcd, 0xfc, 0x6c, 0x86, 0x93, 0x3e, 0xe5, 0x9f, 0x42, 0x6b, 0x12, 0xe3, 0x82, + 0x35, 0x78, 0xcf, 0x3c, 0x0e, 0x8a, 0xb1, 0x64, 0xf1, 0x28, 0x8c, 0x06, 0x38, 0x99, 0xc2, 0x89, + 0xf8, 0xef, 0x32, 0xcc, 0x3e, 0xf7, 0xc8, 0x2b, 0x74, 0x1d, 0x16, 0xb3, 0xfe, 0x52, 0x70, 0x58, + 0xc8, 0x78, 0x41, 0xf4, 0x3e, 0x94, 0x7d, 0xbc, 0x47, 0x7c, 0xb9, 0x80, 0xad, 0xf4, 0xfc, 0x93, + 0x57, 0x9d, 0x1f, 0xb2, 0x2e, 0x3e, 0x71, 0x81, 0x87, 0x2e, 0x43, 0xa3, 0x17, 0x06, 0x09, 0x3d, + 0x25, 0x5c, 0x81, 0x66, 0x98, 0x02, 0xcd, 0x0b, 0xa0, 0xd4, 0xa1, 0xb9, 0x28, 0xf4, 0x89, 0x0c, + 0x7f, 0xce, 0x19, 0x5c, 0xbb, 0xb4, 0x87, 0x33, 0xe5, 0x58, 0xe8, 0x6d, 0x98, 0x77, 0xc9, 0x3e, + 0x1e, 0xf9, 0x89, 0x43, 0x01, 0xe2, 0x0c, 0xd5, 0x05, 0x8c, 0xe2, 0xa3, 0xab, 0x30, 0xe7, 0x25, + 0x64, 0x20, 0xe3, 0x96, 0x25, 0x83, 0xe3, 0x56, 0x42, 0x06, 0x5d, 0xde, 0x8f, 0xae, 0xb0, 0x4d, + 0xac, 0x08, 0x4d, 0xd2, 0xb1, 0xb4, 0x2d, 0x44, 0x4f, 0x60, 0xb9, 0x17, 0x0e, 0x86, 0x23, 0x16, + 0xaa, 0x05, 0x09, 0x89, 0xf6, 0x31, 0x3d, 0x29, 0x3c, 0x30, 0xb9, 0x62, 0x90, 0x6d, 0x08, 0xbc, + 0x2d, 0x85, 0xc6, 0xd9, 0x40, 0x4a, 0x67, 0xff, 0xc6, 0x82, 0x59, 0x2a, 0x04, 0x5a, 0x87, 0x59, + 0x1c, 0xf5, 0x63, 0xa1, 0xc9, 0x17, 0x72, 0x52, 0x76, 0xee, 0x47, 0x7d, 0x41, 0xcf, 0x10, 0xd1, + 0xdd, 0xcc, 0x06, 0x5c, 0xcc, 0x93, 0x14, 0xec, 0x82, 0x7d, 0x0f, 0x6a, 0x8a, 0xd3, 0x69, 0x94, + 0xc4, 0xfe, 0x08, 0xea, 0x1a, 0xbf, 0xdf, 0x16, 0xe9, 0x97, 0x00, 0xe9, 0xae, 0x9f, 0xca, 0x0b, + 0x91, 0x57, 0x94, 0xf0, 0xfb, 0x9f, 0x0e, 0xfb, 0x1b, 0x38, 0x37, 0x61, 0x27, 0x0b, 0xd8, 0x5c, + 0x35, 0xe5, 0x51, 0xda, 0xa6, 0x28, 0xf5, 0x73, 0xf7, 0x67, 0x16, 0xd4, 0x54, 0x07, 0x65, 0x36, + 0x8a, 0x3c, 0x61, 0x73, 0xe9, 0xe7, 0xe4, 0x2d, 0x56, 0x44, 0x85, 0x5b, 0xfc, 0xe6, 0xcb, 0xdd, + 0xfe, 0xbb, 0x12, 0x54, 0x65, 0xe8, 0x42, 0x33, 0x9a, 0xd1, 0x60, 0x2f, 0x22, 0xbe, 0x8f, 0x05, + 0xb5, 0x6a, 0xa3, 0xdb, 0x30, 0x77, 0xe8, 0x91, 0x57, 0x52, 0xb2, 0x0b, 0xd9, 0xb8, 0x87, 0x6d, + 0x80, 0x3c, 0xab, 0x0c, 0x93, 0xfa, 0x15, 0x19, 0xc6, 0xf3, 0x93, 0xaf, 0xc2, 0xf4, 0x36, 0x34, + 0x06, 0xf8, 0xb5, 0xc3, 0x5d, 0x61, 0x92, 0x48, 0x37, 0x59, 0x1f, 0xe0, 0xd7, 0xbb, 0x14, 0xb6, + 0x9b, 0xf8, 0xe8, 0x1a, 0x3b, 0x9d, 0x73, 0xa6, 0xad, 0x51, 0xa3, 0xe9, 0x46, 0xf6, 0x11, 0x40, + 0x3a, 0x78, 0xc1, 0xec, 0xdb, 0xe6, 0x16, 0xcd, 0x1b, 0x2a, 0xf3, 0xfd, 0x8d, 0xe9, 0xdf, 0xcf, + 0xc0, 0x42, 0x26, 0xb4, 0xa2, 0x66, 0x4a, 0xda, 0xd5, 0x00, 0x0f, 0xa4, 0x4d, 0xad, 0x0b, 0xd8, + 0x53, 0x3c, 0x20, 0xe8, 0x31, 0x68, 0x66, 0x21, 0xeb, 0x94, 0x32, 0xfc, 0x3a, 0x47, 0x58, 0x14, + 0xf4, 0x18, 0x1a, 0x72, 0x2c, 0x6e, 0x49, 0xb9, 0x5b, 0xba, 0x3e, 0x89, 0x97, 0x68, 0xe7, 0x6d, + 0xeb, 0x3a, 0x5b, 0xf1, 0x59, 0x33, 0xdb, 0xcb, 0x52, 0xeb, 0x0b, 0xff, 0x29, 0x2c, 0x1c, 0x7f, + 0x40, 0x26, 0x9f, 0xb3, 0x5d, 0x58, 0xca, 0xc9, 0x72, 0x92, 0x20, 0xd1, 0x94, 0x6c, 0x3a, 0x87, + 0xbe, 0xfd, 0x1f, 0x25, 0xa8, 0x6b, 0x1c, 0xd1, 0xe3, 0x74, 0x07, 0x35, 0x33, 0x7d, 0xa5, 0x60, + 0x70, 0xf9, 0x9d, 0xda, 0x6b, 0xb9, 0xcf, 0x14, 0x82, 0x3a, 0xb0, 0xec, 0xe2, 0x01, 0xdb, 0x1a, + 0xa7, 0x87, 0x13, 0xd2, 0x0f, 0x23, 0x4f, 0x05, 0x53, 0x4b, 0x2e, 0x1e, 0x50, 0x1e, 0x1b, 0xaa, + 0x03, 0xdd, 0xd4, 0x42, 0x8b, 0x0b, 0x45, 0xc3, 0xe9, 0x3b, 0x70, 0x05, 0x20, 0x1d, 0x9d, 0x86, + 0xb5, 0x6c, 0x42, 0x92, 0xbb, 0x68, 0xd9, 0x3f, 0x85, 0xc5, 0xac, 0x8c, 0x05, 0x6b, 0xf3, 0xbb, + 0xe6, 0x3a, 0x5f, 0x3a, 0x7a, 0xaa, 0x53, 0x58, 0xf2, 0xbf, 0x98, 0x81, 0xaa, 0x34, 0xdb, 0xe8, + 0x9e, 0x56, 0x70, 0x28, 0x70, 0x89, 0x6c, 0x74, 0xfa, 0x21, 0xb2, 0xb6, 0xb4, 0xd8, 0xf0, 0x3e, + 0xb4, 0x94, 0x7f, 0x2e, 0x5e, 0xe4, 0x66, 0x64, 0xae, 0xf0, 0x33, 0x38, 0xa3, 0x28, 0x18, 0x9b, + 0xb1, 0xb3, 0x87, 0x63, 0x2f, 0x77, 0x70, 0xd4, 0xb8, 0xd2, 0x1b, 0xf0, 0xb1, 0x1f, 0x50, 0x5c, + 0xb1, 0xd1, 0xc3, 0x14, 0x62, 0xff, 0xd2, 0xe2, 0x76, 0x48, 0xc4, 0xaa, 0x08, 0x66, 0xb5, 0xa3, + 0xcf, 0xbe, 0xd1, 0x47, 0xc2, 0xe7, 0x97, 0xcc, 0xd2, 0x4c, 0xc1, 0x04, 0xb3, 0xde, 0xff, 0xcd, + 0xdd, 0xf8, 0x23, 0x68, 0x4d, 0x92, 0xff, 0x38, 0x3e, 0x55, 0x63, 0xb7, 0x66, 0xa1, 0x61, 0xd4, + 0x18, 0xd0, 0x07, 0x70, 0x36, 0x22, 0xd8, 0x75, 0xc2, 0xc0, 0x1f, 0x3b, 0x03, 0x1c, 0x27, 0x24, + 0x72, 0x22, 0x82, 0xfd, 0x01, 0x63, 0x58, 0xed, 0x2e, 0xd3, 0xde, 0xaf, 0x03, 0x7f, 0xfc, 0x84, + 0xf5, 0x75, 0x69, 0x17, 0xba, 0x05, 0xe8, 0xd5, 0x81, 0x97, 0x10, 0xdf, 0x63, 0xc5, 0x2a, 0x86, + 0xaf, 0x4e, 0x83, 0xd6, 0xc3, 0xb0, 0x63, 0xb4, 0x05, 0xed, 0x7e, 0x6f, 0xe8, 0x0c, 0x70, 0x80, + 0xfb, 0xc4, 0x75, 0x5e, 0x92, 0x71, 0xec, 0x50, 0xd7, 0x11, 0x91, 0x9f, 0x8f, 0x08, 0xe3, 0x40, + 0xdd, 0x07, 0xcf, 0xc0, 0x2e, 0xf6, 0x7b, 0xc3, 0x27, 0x1c, 0xf1, 0x2b, 0x32, 0x8e, 0x9f, 0xe0, + 0xd7, 0x5d, 0x89, 0x45, 0x1d, 0xca, 0x67, 0xb0, 0x9a, 0x63, 0x35, 0x24, 0x91, 0x83, 0x7b, 0xbd, + 0x70, 0x14, 0x24, 0xcc, 0x07, 0xcd, 0x75, 0x5b, 0x26, 0x93, 0x6d, 0x12, 0xdd, 0xe7, 0xfd, 0xe8, + 0x53, 0xb8, 0x40, 0xe9, 0x95, 0x55, 0xe0, 0x60, 0x67, 0x18, 0x85, 0x3f, 0x23, 0xbd, 0x44, 0x44, + 0xa2, 0x94, 0x5c, 0x1e, 0x12, 0x8e, 0xb0, 0xcd, 0xfb, 0xd1, 0x8f, 0x61, 0x45, 0x69, 0x9d, 0x4b, + 0xe2, 0x5e, 0xe4, 0x0d, 0x93, 0x30, 0x92, 0x51, 0x6a, 0xa7, 0xb0, 0x8c, 0xa3, 0x34, 0x6f, 0x33, + 0x25, 0x10, 0x9a, 0xa7, 0xb1, 0x40, 0x77, 0xe1, 0x1c, 0x95, 0xcc, 0xc3, 0x03, 0x67, 0xcf, 0xf3, + 0x7d, 0x2f, 0xe8, 0x2b, 0xa9, 0x2a, 0x4c, 0xaa, 0x95, 0x7e, 0x6f, 0xb8, 0x85, 0x07, 0x0f, 0x78, + 0xa7, 0x90, 0xc8, 0x7e, 0x91, 0x6a, 0x46, 0x96, 0x7f, 0x81, 0x66, 0x5c, 0x33, 0xcd, 0x03, 0x92, + 0xa9, 0x57, 0x4a, 0xaa, 0x6b, 0xcb, 0x4b, 0x7a, 0xb4, 0x79, 0x9e, 0x28, 0x3c, 0x79, 0x2e, 0x6b, + 0xe0, 0xbd, 0xd3, 0xc8, 0x10, 0xff, 0x61, 0x4e, 0x79, 0x92, 0x54, 0x1a, 0x1a, 0xcd, 0x50, 0x97, + 0xb5, 0x1f, 0x46, 0x03, 0x19, 0xcd, 0xc8, 0x36, 0xfa, 0x36, 0xad, 0x13, 0xca, 0xf4, 0x4e, 0x9e, + 0xca, 0xf5, 0x8c, 0xdd, 0x4b, 0x39, 0x4a, 0x88, 0x4c, 0xc7, 0x32, 0xf5, 0x42, 0x05, 0x46, 0x3b, + 0xd0, 0xa4, 0x19, 0x86, 0xc6, 0x9a, 0x5b, 0x96, 0xf7, 0x26, 0xb3, 0xa6, 0xe1, 0x7b, 0x86, 0x6f, + 0xc3, 0xd3, 0x61, 0x68, 0x13, 0x60, 0x18, 0x85, 0x43, 0x12, 0x25, 0x1e, 0xcb, 0x96, 0xac, 0x02, + 0x77, 0xa4, 0x31, 0xdc, 0x56, 0xb8, 0x5d, 0x8d, 0x0e, 0xdd, 0xd6, 0x6a, 0x0c, 0x6f, 0x4f, 0xa6, + 0xd6, 0x37, 0xe5, 0xf7, 0x01, 0x52, 0x66, 0x34, 0xb2, 0xf1, 0x62, 0x07, 0xf7, 0xfb, 0x11, 0xe9, + 0xcb, 0x6c, 0xb1, 0xda, 0xad, 0x7b, 0xf1, 0x7d, 0x09, 0x42, 0x37, 0x60, 0xa9, 0x87, 0x03, 0x67, + 0x8f, 0xa4, 0x68, 0xae, 0xb0, 0x27, 0x0b, 0x3d, 0x1c, 0x3c, 0x20, 0x0a, 0xd5, 0x45, 0x6f, 0x41, + 0x3d, 0xf6, 0x82, 0xbe, 0x4f, 0x1c, 0x3a, 0x5b, 0x76, 0x90, 0xab, 0x5d, 0xe0, 0x20, 0xba, 0x26, + 0xf6, 0x4f, 0x54, 0xdd, 0xcb, 0x5c, 0x9e, 0xa9, 0xa4, 0xcf, 0xdf, 0x00, 0xca, 0x2f, 0xfc, 0xff, + 0x67, 0x62, 0xfe, 0x6f, 0x16, 0x34, 0x4d, 0xa6, 0xd4, 0xa9, 0x47, 0xa4, 0x4f, 0x5e, 0x0f, 0x65, + 0xad, 0x8a, 0xb7, 0xa8, 0x7a, 0xf3, 0x1a, 0x2f, 0xf6, 0xc5, 0xe2, 0xaa, 0x36, 0xea, 0x68, 0x31, + 0xc4, 0xa5, 0x62, 0x61, 0x8d, 0x1c, 0x17, 0xc1, 0x2c, 0xcd, 0xd0, 0x45, 0x18, 0xce, 0xbe, 0x51, + 0x1b, 0xe6, 0xc9, 0xeb, 0x21, 0x89, 0xbc, 0x01, 0x09, 0x12, 0xcc, 0xab, 0x55, 0xd5, 0xae, 0x01, + 0x7b, 0xd3, 0x59, 0x56, 0x60, 0x8e, 0x99, 0xf7, 0xf6, 0x77, 0x16, 0xa0, 0x6d, 0x1c, 0xc7, 0xc3, + 0x30, 0x4a, 0x76, 0x45, 0x85, 0x2d, 0x8c, 0xa8, 0x8f, 0xa0, 0xa6, 0x12, 0x27, 0xde, 0x1e, 0x55, + 0x0c, 0x71, 0x3f, 0xc2, 0xf3, 0xa4, 0xa5, 0xb4, 0x47, 0xde, 0x7d, 0xdc, 0xd1, 0xec, 0x4b, 0x5b, + 0x15, 0x63, 0x72, 0x6c, 0xa7, 0x61, 0x69, 0x16, 0xa1, 0xf9, 0x98, 0x24, 0x5b, 0xc1, 0x7e, 0x28, + 0x5c, 0x4b, 0xfb, 0x37, 0x16, 0x2c, 0x28, 0x50, 0x3c, 0x0c, 0x83, 0x98, 0x14, 0xba, 0x7e, 0x1b, + 0xaa, 0xe2, 0xe2, 0x48, 0x7a, 0x3b, 0xd5, 0x46, 0x17, 0x01, 0xe2, 0x04, 0x47, 0xda, 0x65, 0xd1, + 0x4c, 0xb7, 0xc6, 0x20, 0xec, 0xae, 0xa8, 0x05, 0x95, 0x41, 0xe8, 0x8e, 0x64, 0x91, 0xa4, 0xd6, + 0x95, 0x4d, 0x11, 0xb1, 0xcf, 0x99, 0x11, 0x7b, 0x46, 0x9a, 0x69, 0x4c, 0xfb, 0x36, 0xcc, 0xb3, + 0x0d, 0x13, 0x93, 0x46, 0x6f, 0xc3, 0x2c, 0x3b, 0xae, 0x16, 0x3b, 0x0e, 0x8d, 0x34, 0x3b, 0xa3, + 0x38, 0xac, 0xab, 0xbd, 0x00, 0x0d, 0x41, 0xc2, 0xc5, 0x68, 0x3f, 0x86, 0xe5, 0xc7, 0x24, 0x51, + 0xf5, 0x75, 0xc9, 0xea, 0x2c, 0x94, 0xf7, 0x3d, 0x3f, 0x49, 0x4b, 0xb1, 0xbc, 0x45, 0x27, 0xed, + 0x05, 0x3d, 0x7f, 0xe4, 0x4a, 0x71, 0x64, 0xb3, 0xfd, 0xd7, 0x16, 0xac, 0x98, 0x9c, 0xc4, 0xb2, + 0x6f, 0xe9, 0xd7, 0x4e, 0x3c, 0x86, 0xbc, 0xa9, 0x2d, 0x4a, 0x8e, 0x60, 0xf2, 0x0d, 0xd4, 0xb4, + 0x6f, 0x02, 0xda, 0x67, 0xd8, 0xe4, 0x1f, 0xf9, 0x38, 0x61, 0x99, 0xaa, 0x54, 0x9e, 0xbf, 0xa9, + 0xb1, 0xa9, 0x68, 0x70, 0x31, 0x95, 0x4f, 0x65, 0xb6, 0x6d, 0x99, 0x79, 0x61, 0x11, 0x72, 0x3e, + 0xf3, 0xb6, 0xff, 0xa7, 0x02, 0x55, 0x89, 0x87, 0x2e, 0x43, 0x43, 0x4e, 0xcc, 0x19, 0xe2, 0xe4, + 0x40, 0xcc, 0x61, 0x5e, 0x02, 0xb7, 0x71, 0x72, 0x60, 0xa4, 0xfe, 0xa5, 0x4c, 0xea, 0xaf, 0x33, + 0x60, 0x7a, 0x3d, 0x63, 0x32, 0x60, 0xe9, 0xec, 0x05, 0xa8, 0xd1, 0xb1, 0x39, 0x02, 0xb7, 0x23, + 0x55, 0x0a, 0x90, 0x9d, 0x2c, 0x34, 0x67, 0x9d, 0xa2, 0xec, 0x4d, 0x01, 0xac, 0xf3, 0x1d, 0x68, + 0xaa, 0x6c, 0x96, 0x63, 0x94, 0x19, 0x46, 0x43, 0x41, 0x19, 0xda, 0x65, 0x48, 0x01, 0xce, 0x28, + 0xf2, 0x44, 0x68, 0x33, 0xaf, 0x80, 0xcf, 0x22, 0x8f, 0x7a, 0x27, 0xbd, 0xe4, 0xd8, 0xaa, 0xf2, + 0xbc, 0x5b, 0xab, 0x38, 0xa2, 0x2d, 0x55, 0x63, 0xe1, 0xf7, 0x82, 0xb7, 0x8f, 0x5c, 0x5b, 0x09, + 0x29, 0x2c, 0x70, 0x66, 0xb3, 0x7c, 0xc8, 0x67, 0xf9, 0x7a, 0x10, 0x52, 0xcf, 0x04, 0x21, 0xd7, + 0x61, 0x51, 0x7e, 0xcb, 0xa8, 0x92, 0x5d, 0xea, 0xd5, 0xba, 0x0b, 0x12, 0x2e, 0x5c, 0x5f, 0xbe, + 0x60, 0xd2, 0xc8, 0x17, 0x4c, 0x9e, 0x43, 0x5d, 0x6d, 0xd3, 0xc8, 0x6b, 0x35, 0xd9, 0xec, 0xee, + 0x9e, 0x6c, 0x76, 0x52, 0x67, 0xa5, 0xad, 0x80, 0x48, 0x01, 0xd0, 0x97, 0x50, 0x61, 0x3b, 0x3b, + 0xf2, 0x5a, 0x0b, 0xa7, 0x59, 0x31, 0xfa, 0x47, 0xf2, 0x2b, 0x1f, 0xb2, 0x06, 0xe5, 0xc5, 0x14, + 0x61, 0xe4, 0xb5, 0x16, 0x4f, 0xc3, 0x8b, 0x66, 0x47, 0x8a, 0x57, 0xc4, 0x1a, 0xe8, 0x2a, 0x2c, + 0x64, 0xf3, 0xbd, 0xa5, 0xa2, 0x7c, 0xef, 0xfb, 0x54, 0x23, 0x3f, 0x85, 0x85, 0xcc, 0xd2, 0x9c, + 0xb6, 0x0e, 0xaa, 0xad, 0xc2, 0x69, 0x49, 0xb5, 0x49, 0x9f, 0x8a, 0xd4, 0x39, 0xa6, 0x1e, 0xf6, + 0xb1, 0x69, 0xb8, 0xde, 0x39, 0xd1, 0x16, 0xe8, 0xd6, 0x6c, 0x05, 0x90, 0x66, 0x4f, 0xa5, 0x31, + 0xfb, 0x89, 0x61, 0xe0, 0x95, 0x29, 0x7b, 0x0f, 0xaa, 0x52, 0x99, 0x84, 0xbf, 0xc8, 0x5b, 0x4a, + 0x85, 0x41, 0xdd, 0x01, 0xee, 0xf5, 0x48, 0xac, 0x4a, 0x18, 0xbc, 0xd5, 0x5e, 0x62, 0x5e, 0xd6, + 0x30, 0x9e, 0x7f, 0x69, 0xc1, 0x62, 0x0a, 0x13, 0xa3, 0x7d, 0x64, 0x1a, 0xce, 0xcb, 0xda, 0xdc, + 0x8e, 0x31, 0x9a, 0x93, 0x86, 0x9e, 0x56, 0x79, 0x51, 0xc4, 0x0e, 0x0c, 0x2a, 0x66, 0xf0, 0x95, + 0x9a, 0x94, 0x92, 0x7f, 0x0d, 0x66, 0xa9, 0x34, 0x62, 0xa5, 0x4c, 0x5e, 0xac, 0x67, 0xe2, 0x0a, + 0x71, 0x17, 0x23, 0x4b, 0x09, 0x6a, 0x95, 0x7e, 0xc5, 0xbd, 0xa5, 0x06, 0x4f, 0x5d, 0x0c, 0x2f, + 0x17, 0xe6, 0x5d, 0x4c, 0x0e, 0xb9, 0xe0, 0x22, 0x66, 0xd2, 0x6a, 0x4d, 0xb1, 0x7e, 0x2f, 0xf4, + 0x4c, 0xf5, 0x88, 0x19, 0xed, 0x18, 0x13, 0x55, 0xf3, 0xb9, 0x02, 0xb3, 0xec, 0x46, 0xc8, 0x9a, + 0xc0, 0x97, 0xf5, 0x4e, 0x5c, 0xbd, 0xe7, 0x6c, 0x2b, 0x98, 0x2d, 0xd5, 0x22, 0x93, 0x88, 0x24, + 0xa3, 0x28, 0x48, 0x03, 0x6f, 0xda, 0x42, 0xe7, 0xa1, 0xea, 0xe2, 0x04, 0x3b, 0xa3, 0x58, 0x85, + 0x26, 0xb4, 0xfd, 0x2c, 0x66, 0x15, 0xfd, 0xb4, 0x1c, 0x41, 0x3f, 0xdb, 0xe7, 0xe0, 0x0c, 0xe5, + 0x4b, 0x62, 0x7a, 0x30, 0x46, 0x7e, 0xa2, 0xf6, 0xe5, 0xdf, 0x2b, 0x70, 0x36, 0xdb, 0x23, 0x66, + 0xf2, 0x66, 0x4f, 0x8e, 0x56, 0xa1, 0x46, 0xc3, 0xc7, 0x38, 0xc1, 0x83, 0xa1, 0x78, 0x70, 0x94, + 0x02, 0xd0, 0x17, 0x50, 0x55, 0x8f, 0x4f, 0x66, 0xcd, 0x64, 0xb4, 0x58, 0x8a, 0x8e, 0xf9, 0x0a, + 0x45, 0x51, 0xa3, 0x1f, 0x02, 0x7b, 0x91, 0xe2, 0x44, 0x1c, 0x5f, 0x44, 0x9f, 0xd7, 0x8f, 0xe1, + 0x96, 0xc2, 0xba, 0xf5, 0x24, 0xed, 0x47, 0x9f, 0xc1, 0xfc, 0x20, 0x74, 0xbd, 0x7d, 0xaf, 0x87, + 0x69, 0xee, 0xc2, 0x5c, 0x7f, 0xfd, 0x8e, 0x6d, 0x56, 0x43, 0x9e, 0x68, 0x18, 0x5d, 0x03, 0x9f, + 0xae, 0x08, 0x79, 0x4d, 0x7a, 0x23, 0x9a, 0x62, 0x56, 0x58, 0x01, 0x47, 0xb5, 0xe9, 0x06, 0x0e, + 0x71, 0x1c, 0x13, 0x97, 0x85, 0x01, 0x73, 0x5d, 0xd1, 0xa2, 0x96, 0x93, 0x44, 0x51, 0x18, 0xb5, + 0x6a, 0xdc, 0x72, 0xb2, 0x86, 0xfd, 0x2b, 0x8b, 0x06, 0xb9, 0x3f, 0x23, 0xbd, 0x84, 0xb8, 0xcf, + 0xbd, 0x18, 0xf3, 0xfd, 0xc7, 0x71, 0xa8, 0xed, 0x3f, 0x6d, 0x51, 0xf2, 0x7d, 0x8f, 0xf8, 0xae, + 0x34, 0xbc, 0xac, 0x81, 0xd6, 0x40, 0x95, 0x64, 0xe8, 0x3c, 0x66, 0xe4, 0xbd, 0xa4, 0x02, 0xf1, + 0x08, 0x49, 0x5c, 0xa6, 0xa7, 0x11, 0x92, 0xa8, 0x91, 0x9c, 0x85, 0xb2, 0xb0, 0x91, 0x3c, 0x3c, + 0x12, 0xad, 0xd4, 0xca, 0x97, 0x35, 0x2b, 0x8f, 0x9a, 0x50, 0xda, 0x1b, 0x8b, 0x00, 0xa8, 0xb4, + 0x37, 0xb6, 0xff, 0xb1, 0x04, 0x90, 0xae, 0x70, 0x61, 0xfe, 0xc1, 0x66, 0x43, 0x7b, 0x85, 0xd8, + 0xa2, 0xa5, 0x1d, 0x88, 0x19, 0xfd, 0x40, 0xa0, 0x5d, 0xa8, 0x05, 0xa1, 0x23, 0xba, 0xb8, 0xc6, + 0xdc, 0x3b, 0xf1, 0x1e, 0x77, 0x9e, 0x86, 0xf7, 0x19, 0xa5, 0x50, 0x9e, 0x40, 0x34, 0x51, 0x17, + 0x9a, 0x91, 0x58, 0x63, 0x87, 0xce, 0x5d, 0xaa, 0xcf, 0xcd, 0x63, 0x58, 0xeb, 0x1b, 0xd3, 0x6d, + 0x44, 0x5a, 0x2b, 0x4e, 0xb7, 0xb3, 0xac, 0x6f, 0xe7, 0xc7, 0xd0, 0x30, 0x84, 0x38, 0x95, 0x07, + 0xdd, 0x86, 0xc6, 0x74, 0x9f, 0xae, 0x50, 0xff, 0x25, 0x62, 0x39, 0x65, 0x01, 0xbe, 0xb3, 0x54, + 0x59, 0x3e, 0x3d, 0xfb, 0x0f, 0xa0, 0x2a, 0x42, 0x41, 0x69, 0x98, 0xdf, 0xcd, 0x54, 0x69, 0xd2, + 0x45, 0x91, 0x00, 0xb1, 0xc8, 0x92, 0xce, 0x7e, 0x0e, 0x0d, 0xa3, 0xab, 0x40, 0xfa, 0x75, 0x53, + 0xfa, 0xf3, 0x13, 0x2b, 0x41, 0xfa, 0x1c, 0x56, 0xc1, 0xce, 0x67, 0xd5, 0x6a, 0x3a, 0xff, 0x69, + 0xc1, 0x85, 0xc2, 0x6e, 0x31, 0xb3, 0x10, 0x56, 0x86, 0xa2, 0xdb, 0x49, 0xd2, 0x7e, 0x31, 0xcb, + 0x4f, 0x26, 0xe7, 0xed, 0x9a, 0x49, 0xca, 0xf7, 0x89, 0x37, 0x1a, 0xc3, 0x7c, 0x8f, 0xbd, 0x07, + 0xad, 0x49, 0x04, 0x05, 0x2b, 0xf2, 0xbe, 0xb9, 0x22, 0xf6, 0x64, 0x79, 0xf4, 0x25, 0xb1, 0xa1, + 0xb5, 0x99, 0xbd, 0xc1, 0x91, 0x0b, 0xf2, 0xa7, 0xd4, 0xa0, 0xa4, 0x3d, 0x4c, 0xdf, 0xc2, 0xc8, + 0x15, 0x99, 0xee, 0x5c, 0x97, 0x37, 0xd0, 0x7b, 0x5a, 0xf5, 0x62, 0x55, 0x45, 0x46, 0x1a, 0xdd, + 0x34, 0x12, 0xf8, 0x7f, 0xb5, 0xe0, 0x7c, 0x81, 0xa0, 0x62, 0x6b, 0x0e, 0x8a, 0xaf, 0xa8, 0xf8, + 0xce, 0x7c, 0xa8, 0x3d, 0x1a, 0x2c, 0xa6, 0xcf, 0xf7, 0x70, 0x79, 0xf3, 0x97, 0x5b, 0xf6, 0x0b, + 0x38, 0x5b, 0x8c, 0x5c, 0x30, 0x9b, 0x1b, 0xe6, 0x8e, 0xac, 0x14, 0xad, 0x8d, 0x3e, 0xc7, 0x96, + 0x72, 0xa8, 0xf2, 0xec, 0xca, 0x9d, 0xf8, 0x97, 0x12, 0x9c, 0xcb, 0x75, 0xa9, 0xa2, 0x41, 0xea, + 0x18, 0xf9, 0x84, 0x6f, 0x65, 0x6c, 0x51, 0x96, 0x64, 0xa2, 0x67, 0xfc, 0x16, 0x16, 0xe2, 0x04, + 0x07, 0x2e, 0x8e, 0x5c, 0xa7, 0xe7, 0x63, 0x6f, 0x20, 0x4b, 0xca, 0x1f, 0x1c, 0xc7, 0x71, 0x47, + 0x90, 0x6d, 0x30, 0x2a, 0xf1, 0x22, 0x37, 0x36, 0x80, 0xd3, 0xb7, 0x49, 0xf6, 0x7d, 0x58, 0x2e, + 0x18, 0xf8, 0x54, 0x7a, 0xb5, 0x0a, 0xf6, 0x03, 0xdc, 0x7b, 0xd9, 0x8f, 0xc2, 0x51, 0xe0, 0x6e, + 0xf3, 0x67, 0xd4, 0xe9, 0x09, 0xf8, 0x5b, 0x0b, 0x2e, 0x14, 0x76, 0x8b, 0xb5, 0xdf, 0x86, 0xda, + 0x50, 0x02, 0xc5, 0xe2, 0xdf, 0x91, 0x4b, 0x75, 0x04, 0x5d, 0x47, 0x41, 0x44, 0xdd, 0x46, 0x31, + 0xb1, 0x9f, 0x42, 0xd3, 0xec, 0x3c, 0x49, 0x04, 0x2a, 0x9f, 0x7f, 0x0b, 0xca, 0xcc, 0xf9, 0xce, + 0x09, 0x22, 0x67, 0xf7, 0x18, 0xce, 0x17, 0xf4, 0x89, 0xa9, 0xdd, 0x80, 0x8a, 0x60, 0xab, 0x02, + 0xd2, 0xec, 0x30, 0x12, 0xa1, 0xbd, 0x00, 0x0d, 0x16, 0x78, 0x2a, 0xce, 0x9f, 0x43, 0x53, 0x02, + 0x04, 0xbb, 0x5b, 0x50, 0x66, 0xb9, 0xbf, 0x5c, 0xa6, 0x33, 0x6a, 0x6b, 0x29, 0xf4, 0x09, 0x49, + 0x30, 0x0d, 0x41, 0xbb, 0x02, 0xa9, 0xdd, 0x84, 0x79, 0x3d, 0x94, 0x6d, 0x7f, 0x22, 0x46, 0x50, + 0xfc, 0x6e, 0xc2, 0x1c, 0x43, 0x15, 0xc2, 0x4d, 0x60, 0xc7, 0x71, 0xda, 0x7f, 0x38, 0x03, 0x28, + 0x1f, 0x88, 0x19, 0xc1, 0xa8, 0x95, 0x09, 0x46, 0x7f, 0x94, 0x7d, 0xf0, 0x5c, 0x32, 0x63, 0xce, + 0x3c, 0xbb, 0x63, 0x5f, 0x3e, 0x9f, 0x83, 0x8a, 0x1b, 0x8d, 0x9d, 0x68, 0x14, 0x88, 0x5b, 0x82, + 0xb2, 0x1b, 0x8d, 0xbb, 0xa3, 0xc0, 0xfe, 0x39, 0x2c, 0x0b, 0x24, 0x43, 0xbc, 0x34, 0xb0, 0xb1, + 0x8c, 0xc0, 0xe6, 0x22, 0x00, 0x76, 0x5d, 0xc7, 0xc8, 0x02, 0x6a, 0xd8, 0x75, 0x45, 0x84, 0xc2, + 0x8a, 0x5d, 0x83, 0xf0, 0x90, 0x38, 0x46, 0x58, 0x34, 0xcf, 0x81, 0x1c, 0xc9, 0x0e, 0x4f, 0xf6, + 0xbc, 0x75, 0xd3, 0xd4, 0xb4, 0xce, 0x11, 0xb3, 0x2f, 0x98, 0x41, 0x26, 0x77, 0xe4, 0x44, 0xaa, + 0x9c, 0x7a, 0x28, 0x6f, 0x63, 0x65, 0xba, 0xf2, 0x8e, 0x51, 0x93, 0x5d, 0xca, 0x3d, 0xf5, 0xe6, + 0x75, 0xd9, 0x5c, 0xc0, 0x5d, 0x3a, 0x5d, 0xc0, 0xdd, 0xfe, 0x03, 0x38, 0xa3, 0x24, 0xd1, 0xd3, + 0x7f, 0x9a, 0x7f, 0x69, 0xe3, 0xe7, 0x73, 0xfc, 0xe9, 0x0c, 0x3f, 0x82, 0x25, 0x8e, 0xa3, 0xe5, + 0xd1, 0x34, 0x69, 0xd6, 0x86, 0xce, 0x24, 0xcd, 0x53, 0x19, 0xf6, 0x4f, 0x2c, 0xb0, 0x39, 0x92, + 0xf9, 0xc6, 0x5d, 0x08, 0x70, 0xdd, 0x10, 0x60, 0xc2, 0x7b, 0xf8, 0xff, 0x23, 0x49, 0x76, 0x8c, + 0x5d, 0x38, 0x5a, 0x92, 0x9d, 0x69, 0x6e, 0xc5, 0x18, 0x96, 0x39, 0x8e, 0x78, 0x92, 0x21, 0x24, + 0x68, 0x1b, 0x12, 0x64, 0x5f, 0xdb, 0x4f, 0x67, 0xe8, 0x3f, 0xb2, 0x60, 0xc5, 0xfc, 0xbd, 0xc3, + 0xd1, 0xd3, 0x37, 0x71, 0xa7, 0x7c, 0x10, 0xd4, 0xfb, 0xf7, 0xa3, 0x0f, 0x82, 0x42, 0x9b, 0xce, + 0xf0, 0xbf, 0xb0, 0x60, 0x95, 0x23, 0x65, 0x9f, 0xf5, 0x0b, 0x31, 0x6e, 0x1a, 0x62, 0x4c, 0xfc, + 0x11, 0xc0, 0x74, 0xa4, 0xf9, 0x63, 0x0b, 0x5a, 0x42, 0x2b, 0xb5, 0x58, 0x43, 0x48, 0x72, 0xd5, + 0x90, 0xa4, 0x30, 0x2a, 0x99, 0x8e, 0x14, 0xbf, 0x9e, 0x83, 0xf3, 0xd2, 0xde, 0xe8, 0xfe, 0x6f, + 0x27, 0xc1, 0x09, 0x41, 0x9f, 0x8b, 0x4b, 0xce, 0xf9, 0x35, 0xeb, 0x5a, 0x33, 0xcd, 0x38, 0x27, + 0x12, 0x70, 0x67, 0xc8, 0xb7, 0x8c, 0xdd, 0x88, 0x7e, 0x91, 0xbf, 0x5f, 0xba, 0x71, 0x3c, 0x17, + 0x65, 0x00, 0xb5, 0x1f, 0x38, 0xbd, 0xa5, 0xff, 0x7c, 0x80, 0x05, 0x55, 0x0f, 0x4a, 0x2d, 0x4b, + 0xfb, 0x09, 0x41, 0x0b, 0xe6, 0x62, 0x4a, 0xcd, 0xeb, 0x08, 0xac, 0x93, 0x03, 0xa8, 0x5b, 0xdb, + 0x8b, 0xc2, 0x97, 0x24, 0x12, 0x25, 0x04, 0xd1, 0x42, 0x97, 0xa8, 0x37, 0x76, 0xbd, 0x48, 0x3d, + 0x45, 0xe1, 0x1c, 0x25, 0x4c, 0x96, 0xa6, 0xca, 0xcc, 0x51, 0xd3, 0x4f, 0x74, 0x03, 0x96, 0x22, + 0xe1, 0x4d, 0x9c, 0x97, 0x64, 0xec, 0xec, 0x7b, 0x3e, 0x61, 0x35, 0x85, 0x6a, 0x77, 0x41, 0x76, + 0x7c, 0x45, 0xc6, 0x8f, 0x3c, 0x9f, 0xa0, 0x55, 0xa8, 0xf5, 0x0e, 0xb0, 0xef, 0x93, 0xa0, 0x2f, + 0x2f, 0x55, 0x52, 0x80, 0xf6, 0x73, 0x8a, 0x9a, 0xf1, 0x73, 0x8a, 0x16, 0x54, 0xe2, 0xd1, 0x1e, + 0x7b, 0x87, 0xc2, 0xaf, 0x46, 0x64, 0x93, 0x7a, 0x59, 0x32, 0x0c, 0x7b, 0x07, 0x4e, 0x4c, 0x7a, + 0x61, 0xe0, 0xc6, 0xec, 0x6e, 0x64, 0xa6, 0x3b, 0xcf, 0x80, 0x3b, 0x1c, 0x46, 0xc3, 0x4e, 0xfe, + 0x9c, 0x88, 0x5f, 0x76, 0xf0, 0x06, 0xba, 0x04, 0xe0, 0xb9, 0x24, 0x48, 0x3c, 0xf6, 0x0e, 0xa2, + 0xc9, 0xbc, 0xb3, 0x06, 0xb1, 0x7f, 0x69, 0x69, 0x2f, 0x5a, 0x15, 0x0b, 0x4b, 0x67, 0x61, 0x6b, + 0x25, 0x69, 0x71, 0xd9, 0xa5, 0x0a, 0xd0, 0x48, 0x14, 0x60, 0x79, 0x01, 0x87, 0x97, 0x5c, 0x91, + 0x28, 0x2d, 0x8a, 0xeb, 0x71, 0x56, 0x48, 0x5c, 0x85, 0x9a, 0xba, 0x79, 0x12, 0x35, 0x9b, 0x14, + 0xc0, 0x9f, 0xf6, 0xfa, 0xa2, 0x22, 0x41, 0x3f, 0xdb, 0xf7, 0xa0, 0xa6, 0xf4, 0x09, 0x2d, 0x40, + 0xfd, 0xd9, 0xd3, 0x9d, 0xed, 0x87, 0x1b, 0x5b, 0x8f, 0xb6, 0x1e, 0x6e, 0x2e, 0xfe, 0x0e, 0xaa, + 0x43, 0x65, 0xf3, 0xfe, 0xee, 0xfd, 0x9d, 0x87, 0xbb, 0x8b, 0x16, 0x9a, 0x87, 0xea, 0xc3, 0xa7, + 0x9b, 0xdb, 0x5f, 0x6f, 0x3d, 0xdd, 0x5d, 0x2c, 0xb5, 0xf7, 0xa1, 0x7a, 0x7f, 0x94, 0x1c, 0x6c, + 0x84, 0x2e, 0x31, 0xf5, 0xc6, 0x2a, 0xd0, 0x9b, 0x15, 0xa9, 0x37, 0x22, 0x52, 0xe7, 0x3a, 0x93, + 0x5b, 0xed, 0x99, 0xfc, 0x6a, 0xb7, 0xff, 0xab, 0x96, 0xde, 0x75, 0xc8, 0xea, 0xdc, 0x66, 0x5e, + 0xe3, 0xdf, 0xcd, 0x39, 0x76, 0x8e, 0x7b, 0xc4, 0xcf, 0xf9, 0x3e, 0x36, 0x6a, 0xae, 0x5a, 0x51, + 0x3e, 0xcb, 0x42, 0xaf, 0x19, 0xc9, 0x70, 0xad, 0x50, 0xf6, 0x86, 0x29, 0xbb, 0xfd, 0xe7, 0x25, + 0x40, 0x92, 0x99, 0xf6, 0x02, 0xe8, 0x85, 0xf1, 0xc4, 0x96, 0xcb, 0xff, 0x83, 0xe3, 0xe4, 0xd7, + 0x1f, 0xe5, 0x1c, 0xf1, 0xea, 0x56, 0x2f, 0x24, 0x5b, 0x5a, 0x78, 0xb9, 0x06, 0xf5, 0x21, 0x89, + 0x06, 0x5e, 0xcc, 0xaf, 0xfa, 0x79, 0xf4, 0xa8, 0x83, 0x6c, 0x72, 0x92, 0x57, 0xb3, 0x9f, 0x98, + 0xa1, 0xe3, 0xc4, 0x55, 0x57, 0x9c, 0xe4, 0x55, 0x86, 0xca, 0xee, 0x7e, 0x04, 0x4d, 0xb3, 0x13, + 0x7d, 0x2e, 0x7f, 0x18, 0x61, 0x99, 0x25, 0xdb, 0x49, 0x2b, 0xa1, 0x3d, 0x61, 0x67, 0x74, 0xf6, + 0x5f, 0x59, 0xb0, 0x94, 0xeb, 0x4c, 0x9f, 0xb1, 0x5b, 0xf2, 0x19, 0xfb, 0x93, 0xcc, 0x33, 0xf6, + 0xbb, 0x27, 0x1e, 0x69, 0xca, 0xcf, 0xdb, 0xed, 0x5f, 0x97, 0xd2, 0x8b, 0x7c, 0x11, 0xe0, 0xff, + 0x18, 0xea, 0xbd, 0x88, 0x30, 0x7b, 0x81, 0x7d, 0xb9, 0x16, 0xf7, 0x8e, 0x93, 0x90, 0x13, 0x77, + 0x36, 0x52, 0x4a, 0xf1, 0x0e, 0x4f, 0xe3, 0x85, 0xbe, 0xcc, 0xcc, 0xfb, 0xce, 0x09, 0xb9, 0x16, + 0xdd, 0x2d, 0x5f, 0x02, 0x20, 0xaf, 0x87, 0x5e, 0x44, 0x62, 0xc7, 0x0b, 0x84, 0xd2, 0x6b, 0x10, + 0xfb, 0x33, 0x58, 0xcc, 0x0a, 0xf3, 0xdb, 0xfa, 0x89, 0xc6, 0xc1, 0x09, 0x1e, 0x47, 0xfc, 0x9e, + 0xa9, 0xbf, 0x37, 0x4e, 0x7e, 0xea, 0xf4, 0x91, 0x30, 0xd4, 0x8f, 0x2e, 0xe1, 0x9e, 0xf4, 0x98, + 0x98, 0x0b, 0xae, 0x0d, 0xf1, 0xa0, 0xfb, 0x62, 0xbb, 0xef, 0x25, 0x07, 0xa3, 0x3d, 0x1a, 0x96, + 0xac, 0x3f, 0x0e, 0xc3, 0xbe, 0x4f, 0x36, 0xfc, 0x70, 0xe4, 0x6e, 0x8b, 0x2b, 0xf8, 0xf5, 0x03, + 0x82, 0xfd, 0xe4, 0xa0, 0x87, 0x23, 0x72, 0x6b, 0x9f, 0xb8, 0x24, 0xc2, 0x09, 0x71, 0x6f, 0xf1, + 0xd3, 0x7e, 0x4b, 0xd6, 0x5c, 0xd7, 0xf5, 0x1f, 0xaf, 0xef, 0x95, 0x59, 0xeb, 0x83, 0xff, 0x0d, + 0x00, 0x00, 0xff, 0xff, 0x39, 0xbb, 0x72, 0xdc, 0xd3, 0x3e, 0x00, 0x00, } diff --git a/proto/dam/v1/dam_service.proto b/proto/dam/v1/dam_service.proto index 8c3be0a8..1b518953 100644 --- a/proto/dam/v1/dam_service.proto +++ b/proto/dam/v1/dam_service.proto @@ -80,6 +80,7 @@ message View { message Interface { repeated string uri = 1; + map labels = 2; } message Resource { @@ -449,29 +450,58 @@ message AuthCode { int64 epoch_seconds = 3; } -message ResourceTokens { - message Descriptor { - map interfaces = 1; +// ResourceResults is the output from a ResourceTokens request. +message ResourceResults { + // ResourceDescriptor contains metadata about resource, not specific to the + // user's request execept for an "access" key to link how to access the + // resource. + message ResourceDescriptor { + // Maps an interface name (example: "http:gcp:gs") to metadata about the + // resource. + map interfaces = 1; + // Returns the access key into ResourceResults.Access map for how to access + // this resource. string access = 2; + // A list of DAM Role Categories related to the access level that has been + // granted. repeated string permissions = 3; } - // Extends: - // https://openid.net/specs/openid-connect-core-1_0.html#TokenResponse - message ResourceToken { - string account = 1; - string access_token = 2 [json_name = "access_token"]; - string token_type = 3 [json_name = "token_type"]; - string refresh_token = 4 [json_name = "access_token"]; - uint32 expires_in = 5 [json_name = "expires_in"]; - string id_token = 6 [json_name = "id_token"]; - string key_file = 7 [json_name = "key_file"]; - string platform = 8; - string name = 9 [deprecated = true]; - View view = 10 [deprecated = true]; - string ttl = 11 [deprecated = true]; - string token = 12 [deprecated = true]; + // A map placeholder to store a list of ResourceInterface items. + message InterfaceEntry { + // Metadata about the resource item, including a URI to the resource item. + // A single resource can be consisted of multiple resource items. + repeated ResourceInterface items = 1; + } + // ResourceInterface contains metadata about a resource's interface, such as + // what bucket the data lives in by URL. + message ResourceInterface { + // An identifier or locator for the resource. + string uri = 1; + // A map of metadata key/value pairs about the resource, taken from the view + // and item config. + map labels = 2; + } + // ResourceAccess contains access tokens or other user-specific or + // request-specific results. + message ResourceAccess { + // Maps of credentials. Example: {"account": "user1@example.com", + // "access_token": "ya..."}. + map credentials = 1; + // A map of metadata key/value pairs about the resource, taken from the view + // and item config. + map labels = 2; + // Based on the OIDC /token response spec, this is the number of seconds + // until access expires. + uint32 expires_in = 3 [json_name = "expires_in"]; } - map resources = 1; - map access = 2; + + // Maps a key (fully-qualified resource/view/role/interface URL) to + // descriptors. + map resources = 1; + // Maps an access key name from the resource descriptor to access information + // for the user. + map access = 2; + // Time of the request to map OIDC "expires_in" or other credential info to a + // time-of-request value. uint32 epoch_seconds = 3; }